blob: d87249ad1be05615fe836a763eb5040a0d475fcf [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Patrice Chotard32cf0462017-02-21 13:37:10 +01002/*
3 * Pinctrl driver for STMicroelectronics STi SoCs
4 *
Patrice Chotard9e216242017-10-23 09:53:57 +02005 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
Patrice Chotard5d9950d2020-12-02 18:47:30 +01006 * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
Patrice Chotard32cf0462017-02-21 13:37:10 +01007 */
8
Patrice Chotard32cf0462017-02-21 13:37:10 +01009#include <bitfield.h>
10#include <dm.h>
11#include <errno.h>
12#include <regmap.h>
13#include <syscon.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Patrice Chotard32cf0462017-02-21 13:37:10 +010015#include <asm/io.h>
16#include <dm/pinctrl.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060017#include <linux/bug.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060018#include <linux/libfdt.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060019#include <linux/printk.h>
Patrice Chotard32cf0462017-02-21 13:37:10 +010020
21DECLARE_GLOBAL_DATA_PTR;
22
23#define MAX_STI_PINCONF_ENTRIES 7
24/* Output enable */
25#define OE (1 << 27)
26/* Pull Up */
27#define PU (1 << 26)
28/* Open Drain */
29#define OD (1 << 25)
30
31/* User-frendly defines for Pin Direction */
32 /* oe = 0, pu = 0, od = 0 */
33#define IN (0)
34 /* oe = 0, pu = 1, od = 0 */
35#define IN_PU (PU)
36 /* oe = 1, pu = 0, od = 0 */
37#define OUT (OE)
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)
44
Simon Glassb75b15b2020-12-03 16:55:23 -070045struct sti_pinctrl_plat {
Patrice Chotard32cf0462017-02-21 13:37:10 +010046 struct regmap *regmap;
47};
48
49struct sti_pin_desc {
50 unsigned char bank;
51 unsigned char pin;
52 unsigned char alt;
53 int dir;
54};
55
56/*
57 * PIO alternative Function selector
58 */
59void sti_alternate_select(struct udevice *dev, struct sti_pin_desc *pin_desc)
60{
Simon Glassb75b15b2020-12-03 16:55:23 -070061 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
Patrice Chotard32cf0462017-02-21 13:37:10 +010062 unsigned long sysconf, *sysconfreg;
63 int alt = pin_desc->alt;
64 int bank = pin_desc->bank;
65 int pin = pin_desc->pin;
66
Masahiro Yamada54c5ecb2018-04-19 12:14:01 +090067 sysconfreg = (unsigned long *)plat->regmap->ranges[0].start;
Patrice Chotard32cf0462017-02-21 13:37:10 +010068
69 switch (bank) {
70 case 0 ... 5: /* in "SBC Bank" */
71 sysconfreg += bank;
72 break;
73 case 10 ... 20: /* in "FRONT Bank" */
74 sysconfreg += bank - 10;
75 break;
76 case 30 ... 35: /* in "REAR Bank" */
77 sysconfreg += bank - 30;
78 break;
79 case 40 ... 42: /* in "FLASH Bank" */
80 sysconfreg += bank - 40;
81 break;
82 default:
83 BUG();
84 return;
85 }
86
87 sysconf = readl(sysconfreg);
88 sysconf = bitfield_replace(sysconf, pin * 4, 3, alt);
89 writel(sysconf, sysconfreg);
90}
91
92/* pin configuration */
93void sti_pin_configure(struct udevice *dev, struct sti_pin_desc *pin_desc)
94{
Simon Glassb75b15b2020-12-03 16:55:23 -070095 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
Patrice Chotard32cf0462017-02-21 13:37:10 +010096 int bit;
97 int oe = 0, pu = 0, od = 0;
98 unsigned long *sysconfreg;
99 int bank = pin_desc->bank;
100
Masahiro Yamada54c5ecb2018-04-19 12:14:01 +0900101 sysconfreg = (unsigned long *)plat->regmap->ranges[0].start + 40;
Patrice Chotard32cf0462017-02-21 13:37:10 +0100102
103 /*
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.
114 *
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!
126 */
127 int flashss = 0; /* bool: PIO in the Flash Sub-System ? */
128
129 switch (pin_desc->dir) {
130 case IN:
131 oe = 0; pu = 0; od = 0;
132 break;
133 case IN_PU:
134 oe = 0; pu = 1; od = 0;
135 break;
136 case OUT:
137 oe = 1; pu = 0; od = 0;
138 break;
139 case BIDIR:
140 oe = 1; pu = 0; od = 1;
141 break;
142 case BIDIR_PU:
143 oe = 1; pu = 1; od = 1;
144 break;
145
146 default:
Masahiro Yamada81e10422017-09-16 14:10:41 +0900147 pr_err("%s invalid direction value: 0x%x\n",
Patrice Chotard32cf0462017-02-21 13:37:10 +0100148 __func__, pin_desc->dir);
149 BUG();
150 break;
151 }
152
153 switch (bank) {
154 case 0 ... 5: /* in "SBC Bank" */
155 sysconfreg += bank / 4;
156 break;
157 case 10 ... 20: /* in "FRONT Bank" */
158 bank -= 10;
159 sysconfreg += bank / 4;
160 break;
161 case 30 ... 35: /* in "REAR Bank" */
162 bank -= 30;
163 sysconfreg += bank / 4;
164 break;
165 case 40 ... 42: /* in "FLASH Bank" */
166 bank -= 40;
167 sysconfreg += bank / 4;
168 flashss = 1; /* pin is in the Flash Sub-System */
169 break;
170 default:
171 BUG();
172 return;
173 }
174
175 bit = ((bank * 8) + pin_desc->pin) % 32;
176
177 /*
178 * set the "Output Enable" pin control
179 * but, do nothing if in the flashSS
180 */
181 if (!flashss) {
182 if (oe)
183 generic_set_bit(bit, sysconfreg);
184 else
185 generic_clear_bit(bit, sysconfreg);
186 }
187
188 sysconfreg += 10; /* skip to next set of syscfg registers */
189
190 /*
191 * set the "Pull Up" pin control
192 * but, do nothing if in the FlashSS
193 */
194
195 if (!flashss) {
196 if (pu)
197 generic_set_bit(bit, sysconfreg);
198 else
199 generic_clear_bit(bit, sysconfreg);
200 }
201
202 sysconfreg += 10; /* skip to next set of syscfg registers */
203
204 /* set the "Open Drain Enable" pin control */
205 if (od)
206 generic_set_bit(bit, sysconfreg);
207 else
208 generic_clear_bit(bit, sysconfreg);
209}
210
Patrice Chotard32cf0462017-02-21 13:37:10 +0100211static int sti_pinctrl_set_state(struct udevice *dev, struct udevice *config)
212{
213 struct fdtdec_phandle_args args;
214 const void *blob = gd->fdt_blob;
215 const char *prop_name;
216 int node = dev_of_offset(config);
217 int property_offset, prop_len;
218 int pinconf_node, ret, count;
219 const char *bank_name;
220 u32 cells[MAX_STI_PINCONF_ENTRIES];
221
222 struct sti_pin_desc pin_desc;
223
224 /* go to next node "st,pins" which contains the pins configuration */
225 pinconf_node = fdt_subnode_offset(blob, node, "st,pins");
226
227 /*
228 * parse each pins configuration which looks like :
229 * pin_name = <bank_phandle pin_nb alt dir rt_type rt_delay rt_clk>
230 */
231
232 fdt_for_each_property_offset(property_offset, blob, pinconf_node) {
233 fdt_getprop_by_offset(blob, property_offset, &prop_name,
234 &prop_len);
235
236 /* extract the bank of the pin description */
237 ret = fdtdec_parse_phandle_with_args(blob, pinconf_node,
238 prop_name, "#gpio-cells",
239 0, 0, &args);
240 if (ret < 0) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900241 pr_err("Can't get the gpio bank phandle: %d\n", ret);
Patrice Chotard32cf0462017-02-21 13:37:10 +0100242 return ret;
243 }
244
245 bank_name = fdt_getprop(blob, args.node, "st,bank-name",
246 &count);
247 if (count < 0) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900248 pr_err("Can't find bank-name property %d\n", count);
Patrice Chotard32cf0462017-02-21 13:37:10 +0100249 return -EINVAL;
250 }
251
252 pin_desc.bank = trailing_strtoln(bank_name, NULL);
253
254 count = fdtdec_get_int_array_count(blob, pinconf_node,
255 prop_name, cells,
256 ARRAY_SIZE(cells));
257 if (count < 0) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900258 pr_err("Bad pin configuration array %d\n", count);
Patrice Chotard32cf0462017-02-21 13:37:10 +0100259 return -EINVAL;
260 }
261
262 if (count > MAX_STI_PINCONF_ENTRIES) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900263 pr_err("Unsupported pinconf array count %d\n", count);
Patrice Chotard32cf0462017-02-21 13:37:10 +0100264 return -EINVAL;
265 }
266
267 pin_desc.pin = cells[1];
268 pin_desc.alt = cells[2];
269 pin_desc.dir = cells[3];
270
271 sti_alternate_select(dev, &pin_desc);
272 sti_pin_configure(dev, &pin_desc);
273 };
274
275 return 0;
276}
277
278static int sti_pinctrl_probe(struct udevice *dev)
279{
Simon Glassb75b15b2020-12-03 16:55:23 -0700280 struct sti_pinctrl_plat *plat = dev_get_plat(dev);
Patrice Chotard32cf0462017-02-21 13:37:10 +0100281 struct udevice *syscon;
282 int err;
283
284 /* get corresponding syscon phandle */
285 err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
286 "st,syscfg", &syscon);
287 if (err) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900288 pr_err("unable to find syscon device\n");
Patrice Chotard32cf0462017-02-21 13:37:10 +0100289 return err;
290 }
291
292 plat->regmap = syscon_get_regmap(syscon);
293 if (!plat->regmap) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900294 pr_err("unable to find regmap\n");
Patrice Chotard32cf0462017-02-21 13:37:10 +0100295 return -ENODEV;
296 }
297
298 return 0;
299}
300
301static const struct udevice_id sti_pinctrl_ids[] = {
302 { .compatible = "st,stih407-sbc-pinctrl" },
303 { .compatible = "st,stih407-front-pinctrl" },
304 { .compatible = "st,stih407-rear-pinctrl" },
305 { .compatible = "st,stih407-flash-pinctrl" },
306 { }
307};
308
309const struct pinctrl_ops sti_pinctrl_ops = {
310 .set_state = sti_pinctrl_set_state,
311};
312
313U_BOOT_DRIVER(pinctrl_sti) = {
314 .name = "pinctrl_sti",
315 .id = UCLASS_PINCTRL,
316 .of_match = sti_pinctrl_ids,
317 .ops = &sti_pinctrl_ops,
318 .probe = sti_pinctrl_probe,
Simon Glassb75b15b2020-12-03 16:55:23 -0700319 .plat_auto = sizeof(struct sti_pinctrl_plat),
Patrice Chotard32cf0462017-02-21 13:37:10 +0100320 .ops = &sti_pinctrl_ops,
321};