1 // SPDX-License-Identifier: GPL-2.0+
3 * Pinctrl driver for STMicroelectronics STi SoCs
5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
6 * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
15 #include <asm/global_data.h>
17 #include <dm/pinctrl.h>
18 #include <linux/bug.h>
19 #include <linux/libfdt.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 #define MAX_STI_PINCONF_ENTRIES 7
31 /* User-frendly defines for Pin Direction */
32 /* oe = 0, pu = 0, od = 0 */
34 /* oe = 0, pu = 1, od = 0 */
36 /* oe = 1, pu = 0, od = 0 */
38 /* oe = 1, pu = 1, od = 0 */
39 #define OUT_PU (OE | PU)
40 /* oe = 1, pu = 0, od = 1 */
41 #define BIDIR (OE | OD)
42 /* oe = 1, pu = 1, od = 1 */
43 #define BIDIR_PU (OE | PU | OD)
45 struct sti_pinctrl_plat {
46 struct regmap *regmap;
57 * PIO alternative Function selector
59 void sti_alternate_select(struct udevice *dev, struct sti_pin_desc *pin_desc)
61 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
62 unsigned long sysconf, *sysconfreg;
63 int alt = pin_desc->alt;
64 int bank = pin_desc->bank;
65 int pin = pin_desc->pin;
67 sysconfreg = (unsigned long *)plat->regmap->ranges[0].start;
70 case 0 ... 5: /* in "SBC Bank" */
73 case 10 ... 20: /* in "FRONT Bank" */
74 sysconfreg += bank - 10;
76 case 30 ... 35: /* in "REAR Bank" */
77 sysconfreg += bank - 30;
79 case 40 ... 42: /* in "FLASH Bank" */
80 sysconfreg += bank - 40;
87 sysconf = readl(sysconfreg);
88 sysconf = bitfield_replace(sysconf, pin * 4, 3, alt);
89 writel(sysconf, sysconfreg);
92 /* pin configuration */
93 void sti_pin_configure(struct udevice *dev, struct sti_pin_desc *pin_desc)
95 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
97 int oe = 0, pu = 0, od = 0;
98 unsigned long *sysconfreg;
99 int bank = pin_desc->bank;
101 sysconfreg = (unsigned long *)plat->regmap->ranges[0].start + 40;
104 * NOTE: The PIO configuration for the PIO pins in the
105 * "FLASH Bank" are different from all the other banks!
106 * Specifically, the output-enable pin control register
107 * (SYS_CFG_3040) and the pull-up pin control register
108 * (SYS_CFG_3050), are both classed as being "reserved".
109 * Hence, we do not write to these registers to configure
110 * the OE and PU features for PIOs in this bank. However,
111 * the open-drain pin control register (SYS_CFG_3060)
112 * follows the style of the other banks, and so we can
113 * treat that register normally.
115 * Being pedantic, we should configure the PU and PD features
116 * in the "FLASH Bank" explicitly instead using the four
117 * SYS_CFG registers: 3080, 3081, 3085, and 3086. However, this
118 * would necessitate passing in the alternate function number
119 * to this function, and adding some horrible complexity here.
120 * Alternatively, we could just perform 4 32-bit "pokes" to
121 * these four SYS_CFG registers early in the initialization.
122 * In practice, these four SYS_CFG registers are correct
123 * after a reset, and U-Boot does not need to change them, so
124 * we (cheat and) rely on these registers being correct.
125 * WARNING: Please be aware of this (pragmatic) behaviour!
127 int flashss = 0; /* bool: PIO in the Flash Sub-System ? */
129 switch (pin_desc->dir) {
131 oe = 0; pu = 0; od = 0;
134 oe = 0; pu = 1; od = 0;
137 oe = 1; pu = 0; od = 0;
140 oe = 1; pu = 0; od = 1;
143 oe = 1; pu = 1; od = 1;
147 pr_err("%s invalid direction value: 0x%x\n",
148 __func__, pin_desc->dir);
154 case 0 ... 5: /* in "SBC Bank" */
155 sysconfreg += bank / 4;
157 case 10 ... 20: /* in "FRONT Bank" */
159 sysconfreg += bank / 4;
161 case 30 ... 35: /* in "REAR Bank" */
163 sysconfreg += bank / 4;
165 case 40 ... 42: /* in "FLASH Bank" */
167 sysconfreg += bank / 4;
168 flashss = 1; /* pin is in the Flash Sub-System */
175 bit = ((bank * 8) + pin_desc->pin) % 32;
178 * set the "Output Enable" pin control
179 * but, do nothing if in the flashSS
183 generic_set_bit(bit, sysconfreg);
185 generic_clear_bit(bit, sysconfreg);
188 sysconfreg += 10; /* skip to next set of syscfg registers */
191 * set the "Pull Up" pin control
192 * but, do nothing if in the FlashSS
197 generic_set_bit(bit, sysconfreg);
199 generic_clear_bit(bit, sysconfreg);
202 sysconfreg += 10; /* skip to next set of syscfg registers */
204 /* set the "Open Drain Enable" pin control */
206 generic_set_bit(bit, sysconfreg);
208 generic_clear_bit(bit, sysconfreg);
212 static int sti_pinctrl_set_state(struct udevice *dev, struct udevice *config)
214 struct fdtdec_phandle_args args;
215 const void *blob = gd->fdt_blob;
216 const char *prop_name;
217 int node = dev_of_offset(config);
218 int property_offset, prop_len;
219 int pinconf_node, ret, count;
220 const char *bank_name;
221 u32 cells[MAX_STI_PINCONF_ENTRIES];
223 struct sti_pin_desc pin_desc;
225 /* go to next node "st,pins" which contains the pins configuration */
226 pinconf_node = fdt_subnode_offset(blob, node, "st,pins");
229 * parse each pins configuration which looks like :
230 * pin_name = <bank_phandle pin_nb alt dir rt_type rt_delay rt_clk>
233 fdt_for_each_property_offset(property_offset, blob, pinconf_node) {
234 fdt_getprop_by_offset(blob, property_offset, &prop_name,
237 /* extract the bank of the pin description */
238 ret = fdtdec_parse_phandle_with_args(blob, pinconf_node,
239 prop_name, "#gpio-cells",
242 pr_err("Can't get the gpio bank phandle: %d\n", ret);
246 bank_name = fdt_getprop(blob, args.node, "st,bank-name",
249 pr_err("Can't find bank-name property %d\n", count);
253 pin_desc.bank = trailing_strtoln(bank_name, NULL);
255 count = fdtdec_get_int_array_count(blob, pinconf_node,
259 pr_err("Bad pin configuration array %d\n", count);
263 if (count > MAX_STI_PINCONF_ENTRIES) {
264 pr_err("Unsupported pinconf array count %d\n", count);
268 pin_desc.pin = cells[1];
269 pin_desc.alt = cells[2];
270 pin_desc.dir = cells[3];
272 sti_alternate_select(dev, &pin_desc);
273 sti_pin_configure(dev, &pin_desc);
279 static int sti_pinctrl_probe(struct udevice *dev)
281 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
282 struct udevice *syscon;
285 /* get corresponding syscon phandle */
286 err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
287 "st,syscfg", &syscon);
289 pr_err("unable to find syscon device\n");
293 plat->regmap = syscon_get_regmap(syscon);
295 pr_err("unable to find regmap\n");
302 static const struct udevice_id sti_pinctrl_ids[] = {
303 { .compatible = "st,stih407-sbc-pinctrl" },
304 { .compatible = "st,stih407-front-pinctrl" },
305 { .compatible = "st,stih407-rear-pinctrl" },
306 { .compatible = "st,stih407-flash-pinctrl" },
310 const struct pinctrl_ops sti_pinctrl_ops = {
311 .set_state = sti_pinctrl_set_state,
314 U_BOOT_DRIVER(pinctrl_sti) = {
315 .name = "pinctrl_sti",
316 .id = UCLASS_PINCTRL,
317 .of_match = sti_pinctrl_ids,
318 .ops = &sti_pinctrl_ops,
319 .probe = sti_pinctrl_probe,
320 .plat_auto = sizeof(struct sti_pinctrl_plat),
321 .ops = &sti_pinctrl_ops,