blob: a1f53a793b4deef5bedb77545843420cc805421f [file] [log] [blame]
Patrick Delaunay4b3f0122020-09-09 17:50:15 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2017-2020 STMicroelectronics - All Rights Reserved
4 */
5
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +01006#define LOG_CATEGORY UCLASS_PINCTRL
7
Vikas Manocha07e9e412017-02-12 10:25:49 -08008#include <common.h>
Vikas Manocha07e9e412017-02-12 10:25:49 -08009#include <dm.h>
Benjamin Gaignard16f6f332018-11-27 13:49:53 +010010#include <hwspinlock.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070012#include <malloc.h>
Vikas Manochaec8630a2017-04-10 15:02:57 -070013#include <asm/arch/gpio.h>
14#include <asm/gpio.h>
15#include <asm/io.h>
Simon Glass9bc15642020-02-03 07:36:16 -070016#include <dm/device_compat.h>
Patrice Chotarde16e8f42019-07-30 19:16:10 +020017#include <dm/lists.h>
18#include <dm/pinctrl.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060019#include <linux/bitops.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070020#include <linux/err.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060021#include <linux/libfdt.h>
Vikas Manocha07e9e412017-02-12 10:25:49 -080022
Vikas Manocha40ddb3a2017-04-10 15:03:04 -070023#define MAX_PINS_ONE_IP 70
Vikas Manochaec8630a2017-04-10 15:02:57 -070024#define MODE_BITS_MASK 3
25#define OSPEED_MASK 3
26#define PUPD_MASK 3
27#define OTYPE_MSK 1
28#define AFR_MASK 0xF
29
Patrice Chotardaaf68e82018-10-24 14:10:18 +020030struct stm32_pinctrl_priv {
Benjamin Gaignard16f6f332018-11-27 13:49:53 +010031 struct hwspinlock hws;
Patrice Chotardaaf68e82018-10-24 14:10:18 +020032 int pinctrl_ngpios;
33 struct list_head gpio_dev;
34};
35
36struct stm32_gpio_bank {
37 struct udevice *gpio_dev;
38 struct list_head list;
39};
40
Benjamin Gaignard16f6f332018-11-27 13:49:53 +010041#ifndef CONFIG_SPL_BUILD
42
Patrice Chotard881e8672018-10-24 14:10:19 +020043static char pin_name[PINNAME_SIZE];
Patrice Chotarda46fb392018-10-24 14:10:20 +020044#define PINMUX_MODE_COUNT 5
45static const char * const pinmux_mode[PINMUX_MODE_COUNT] = {
46 "gpio input",
47 "gpio output",
48 "analog",
49 "unknown",
50 "alt function",
51};
52
Patrick Delaunay6347ed92020-10-28 10:49:07 +010053static const char * const pinmux_bias[] = {
54 [STM32_GPIO_PUPD_NO] = "",
55 [STM32_GPIO_PUPD_UP] = "pull-up",
56 [STM32_GPIO_PUPD_DOWN] = "pull-down",
Patrick Delaunay8274fab2020-06-04 14:30:33 +020057};
58
59static const char * const pinmux_input[] = {
Patrick Delaunay6347ed92020-10-28 10:49:07 +010060 [STM32_GPIO_OTYPE_PP] = "push-pull",
61 [STM32_GPIO_OTYPE_OD] = "open-drain",
Patrick Delaunay8274fab2020-06-04 14:30:33 +020062};
63
Patrice Chotarda46fb392018-10-24 14:10:20 +020064static int stm32_pinctrl_get_af(struct udevice *dev, unsigned int offset)
65{
66 struct stm32_gpio_priv *priv = dev_get_priv(dev);
67 struct stm32_gpio_regs *regs = priv->regs;
68 u32 af;
69 u32 alt_shift = (offset % 8) * 4;
70 u32 alt_index = offset / 8;
71
72 af = (readl(&regs->afr[alt_index]) &
73 GENMASK(alt_shift + 3, alt_shift)) >> alt_shift;
74
75 return af;
76}
77
Patrice Chotard7ef91082018-12-03 10:52:50 +010078static int stm32_populate_gpio_dev_list(struct udevice *dev)
79{
80 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
81 struct udevice *gpio_dev;
82 struct udevice *child;
83 struct stm32_gpio_bank *gpio_bank;
84 int ret;
85
86 /*
87 * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
88 * a list with all gpio device reference which belongs to the
89 * current pin-controller. This list is used to find pin_name and
90 * pin muxing
91 */
92 list_for_each_entry(child, &dev->child_head, sibling_node) {
93 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
94 &gpio_dev);
95 if (ret < 0)
96 continue;
97
98 gpio_bank = malloc(sizeof(*gpio_bank));
99 if (!gpio_bank) {
100 dev_err(dev, "Not enough memory\n");
101 return -ENOMEM;
102 }
103
104 gpio_bank->gpio_dev = gpio_dev;
105 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
106 }
107
108 return 0;
109}
110
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200111static int stm32_pinctrl_get_pins_count(struct udevice *dev)
112{
113 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
114 struct gpio_dev_priv *uc_priv;
115 struct stm32_gpio_bank *gpio_bank;
116
117 /*
118 * if get_pins_count has already been executed once on this
119 * pin-controller, no need to run it again
120 */
121 if (priv->pinctrl_ngpios)
122 return priv->pinctrl_ngpios;
123
Patrice Chotard7ef91082018-12-03 10:52:50 +0100124 if (list_empty(&priv->gpio_dev))
125 stm32_populate_gpio_dev_list(dev);
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200126 /*
127 * walk through all banks to retrieve the pin-controller
128 * pins number
129 */
130 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
131 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
132
133 priv->pinctrl_ngpios += uc_priv->gpio_count;
134 }
135
136 return priv->pinctrl_ngpios;
137}
138
Patrice Chotard881e8672018-10-24 14:10:19 +0200139static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev,
Patrice Chotard0b968002018-12-03 10:52:54 +0100140 unsigned int selector,
141 unsigned int *idx)
Patrice Chotard881e8672018-10-24 14:10:19 +0200142{
143 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
144 struct stm32_gpio_bank *gpio_bank;
145 struct gpio_dev_priv *uc_priv;
Patrice Chotard0b968002018-12-03 10:52:54 +0100146 int pin_count = 0;
Patrice Chotard881e8672018-10-24 14:10:19 +0200147
Patrice Chotard7ef91082018-12-03 10:52:50 +0100148 if (list_empty(&priv->gpio_dev))
149 stm32_populate_gpio_dev_list(dev);
150
Patrice Chotard881e8672018-10-24 14:10:19 +0200151 /* look up for the bank which owns the requested pin */
152 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
153 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
154
Patrice Chotard0b968002018-12-03 10:52:54 +0100155 if (selector < (pin_count + uc_priv->gpio_count)) {
156 /*
157 * we found the bank, convert pin selector to
158 * gpio bank index
159 */
160 *idx = stm32_offset_to_index(gpio_bank->gpio_dev,
161 selector - pin_count);
Patrick Delaunay4c11a112019-06-21 15:26:52 +0200162 if (IS_ERR_VALUE(*idx))
Patrice Chotard0b968002018-12-03 10:52:54 +0100163 return NULL;
Patrice Chotard881e8672018-10-24 14:10:19 +0200164
Patrice Chotard0b968002018-12-03 10:52:54 +0100165 return gpio_bank->gpio_dev;
166 }
167 pin_count += uc_priv->gpio_count;
Patrice Chotard881e8672018-10-24 14:10:19 +0200168 }
169
170 return NULL;
171}
172
173static const char *stm32_pinctrl_get_pin_name(struct udevice *dev,
174 unsigned int selector)
175{
176 struct gpio_dev_priv *uc_priv;
177 struct udevice *gpio_dev;
Patrice Chotard0b968002018-12-03 10:52:54 +0100178 unsigned int gpio_idx;
Patrice Chotard881e8672018-10-24 14:10:19 +0200179
180 /* look up for the bank which owns the requested pin */
Patrice Chotard0b968002018-12-03 10:52:54 +0100181 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotard881e8672018-10-24 14:10:19 +0200182 if (!gpio_dev) {
183 snprintf(pin_name, PINNAME_SIZE, "Error");
184 } else {
185 uc_priv = dev_get_uclass_priv(gpio_dev);
186
187 snprintf(pin_name, PINNAME_SIZE, "%s%d",
188 uc_priv->bank_name,
Patrice Chotard0b968002018-12-03 10:52:54 +0100189 gpio_idx);
Patrice Chotard881e8672018-10-24 14:10:19 +0200190 }
191
192 return pin_name;
193}
Patrice Chotarda46fb392018-10-24 14:10:20 +0200194
195static int stm32_pinctrl_get_pin_muxing(struct udevice *dev,
196 unsigned int selector,
197 char *buf,
198 int size)
199{
200 struct udevice *gpio_dev;
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200201 struct stm32_gpio_priv *priv;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200202 const char *label;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200203 int mode;
204 int af_num;
Patrice Chotard0b968002018-12-03 10:52:54 +0100205 unsigned int gpio_idx;
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200206 u32 pupd, otype;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200207
208 /* look up for the bank which owns the requested pin */
Patrice Chotard0b968002018-12-03 10:52:54 +0100209 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotarda46fb392018-10-24 14:10:20 +0200210
211 if (!gpio_dev)
212 return -ENODEV;
213
Patrice Chotard0b968002018-12-03 10:52:54 +0100214 mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label);
Patrice Chotard0b968002018-12-03 10:52:54 +0100215 dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n",
216 selector, gpio_idx, mode);
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200217 priv = dev_get_priv(gpio_dev);
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100218 pupd = (readl(&priv->regs->pupdr) >> (gpio_idx * 2)) & PUPD_MASK;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200219
Patrice Chotarda46fb392018-10-24 14:10:20 +0200220
221 switch (mode) {
222 case GPIOF_UNKNOWN:
223 /* should never happen */
224 return -EINVAL;
225 case GPIOF_UNUSED:
226 snprintf(buf, size, "%s", pinmux_mode[mode]);
227 break;
228 case GPIOF_FUNC:
Patrice Chotard0b968002018-12-03 10:52:54 +0100229 af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx);
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100230 snprintf(buf, size, "%s %d %s", pinmux_mode[mode], af_num,
231 pinmux_bias[pupd]);
Patrice Chotarda46fb392018-10-24 14:10:20 +0200232 break;
233 case GPIOF_OUTPUT:
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200234 snprintf(buf, size, "%s %s %s",
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100235 pinmux_mode[mode], pinmux_bias[pupd],
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200236 label ? label : "");
237 break;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200238 case GPIOF_INPUT:
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200239 otype = (readl(&priv->regs->otyper) >> gpio_idx) & OTYPE_MSK;
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100240 snprintf(buf, size, "%s %s %s %s",
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200241 pinmux_mode[mode], pinmux_input[otype],
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100242 pinmux_bias[pupd], label ? label : "");
Patrice Chotarda46fb392018-10-24 14:10:20 +0200243 break;
244 }
245
246 return 0;
247}
248
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100249#endif
250
Patrick Delaunay4c11a112019-06-21 15:26:52 +0200251static int stm32_pinctrl_probe(struct udevice *dev)
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200252{
253 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200254 int ret;
255
256 INIT_LIST_HEAD(&priv->gpio_dev);
257
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100258 /* hwspinlock property is optional, just log the error */
259 ret = hwspinlock_get_by_index(dev, 0, &priv->hws);
260 if (ret)
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100261 dev_dbg(dev, "hwspinlock_get_by_index may have failed (%d)\n",
262 ret);
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100263
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200264 return 0;
265}
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200266
Vikas Manochaec8630a2017-04-10 15:02:57 -0700267static int stm32_gpio_config(struct gpio_desc *desc,
268 const struct stm32_gpio_ctl *ctl)
269{
270 struct stm32_gpio_priv *priv = dev_get_priv(desc->dev);
271 struct stm32_gpio_regs *regs = priv->regs;
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100272 struct stm32_pinctrl_priv *ctrl_priv;
273 int ret;
Vikas Manochaec8630a2017-04-10 15:02:57 -0700274 u32 index;
275
276 if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 ||
277 ctl->pupd > 2 || ctl->speed > 3)
278 return -EINVAL;
279
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100280 ctrl_priv = dev_get_priv(dev_get_parent(desc->dev));
281 ret = hwspinlock_lock_timeout(&ctrl_priv->hws, 10);
282 if (ret == -ETIME) {
283 dev_err(desc->dev, "HWSpinlock timeout\n");
284 return ret;
285 }
286
Vikas Manochaec8630a2017-04-10 15:02:57 -0700287 index = (desc->offset & 0x07) * 4;
288 clrsetbits_le32(&regs->afr[desc->offset >> 3], AFR_MASK << index,
289 ctl->af << index);
290
291 index = desc->offset * 2;
292 clrsetbits_le32(&regs->moder, MODE_BITS_MASK << index,
293 ctl->mode << index);
294 clrsetbits_le32(&regs->ospeedr, OSPEED_MASK << index,
295 ctl->speed << index);
296 clrsetbits_le32(&regs->pupdr, PUPD_MASK << index, ctl->pupd << index);
297
298 index = desc->offset;
299 clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index);
300
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100301 hwspinlock_unlock(&ctrl_priv->hws);
302
Vikas Manochaec8630a2017-04-10 15:02:57 -0700303 return 0;
304}
Patrick Delaunayd252d752018-03-12 10:46:13 +0100305
Vikas Manocha07e9e412017-02-12 10:25:49 -0800306static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin)
307{
Patrick Delaunayd252d752018-03-12 10:46:13 +0100308 gpio_dsc->port = (port_pin & 0x1F000) >> 12;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800309 gpio_dsc->pin = (port_pin & 0x0F00) >> 8;
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100310 log_debug("GPIO:port= %d, pin= %d\n", gpio_dsc->port, gpio_dsc->pin);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800311
312 return 0;
313}
314
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200315static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn,
316 ofnode node)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800317{
318 gpio_fn &= 0x00FF;
Vikas Manochaec8630a2017-04-10 15:02:57 -0700319 gpio_ctl->af = 0;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800320
321 switch (gpio_fn) {
322 case 0:
323 gpio_ctl->mode = STM32_GPIO_MODE_IN;
324 break;
325 case 1 ... 16:
326 gpio_ctl->mode = STM32_GPIO_MODE_AF;
327 gpio_ctl->af = gpio_fn - 1;
328 break;
329 case 17:
330 gpio_ctl->mode = STM32_GPIO_MODE_AN;
331 break;
332 default:
333 gpio_ctl->mode = STM32_GPIO_MODE_OUT;
334 break;
335 }
336
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200337 gpio_ctl->speed = ofnode_read_u32_default(node, "slew-rate", 0);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800338
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200339 if (ofnode_read_bool(node, "drive-open-drain"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800340 gpio_ctl->otype = STM32_GPIO_OTYPE_OD;
341 else
342 gpio_ctl->otype = STM32_GPIO_OTYPE_PP;
343
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200344 if (ofnode_read_bool(node, "bias-pull-up"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800345 gpio_ctl->pupd = STM32_GPIO_PUPD_UP;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200346 else if (ofnode_read_bool(node, "bias-pull-down"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800347 gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN;
348 else
349 gpio_ctl->pupd = STM32_GPIO_PUPD_NO;
350
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100351 log_debug("gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n",
352 gpio_fn, gpio_ctl->speed, gpio_ctl->otype,
353 gpio_ctl->pupd);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800354
355 return 0;
356}
357
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200358static int stm32_pinctrl_config(ofnode node)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800359{
Vikas Manocha40ddb3a2017-04-10 15:03:04 -0700360 u32 pin_mux[MAX_PINS_ONE_IP];
Vikas Manocha07e9e412017-02-12 10:25:49 -0800361 int rv, len;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200362 ofnode subnode;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800363
Vikas Manocha07e9e412017-02-12 10:25:49 -0800364 /*
365 * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for
366 * usart1) of pin controller phandle "pinctrl-0"
367 * */
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200368 ofnode_for_each_subnode(subnode, node) {
Vikas Manocha07e9e412017-02-12 10:25:49 -0800369 struct stm32_gpio_dsc gpio_dsc;
370 struct stm32_gpio_ctl gpio_ctl;
371 int i;
372
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200373 rv = ofnode_read_size(subnode, "pinmux");
374 if (rv < 0)
375 return rv;
376 len = rv / sizeof(pin_mux[0]);
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100377 log_debug("No of pinmux entries= %d\n", len);
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200378 if (len > MAX_PINS_ONE_IP)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800379 return -EINVAL;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200380 rv = ofnode_read_u32_array(subnode, "pinmux", pin_mux, len);
381 if (rv < 0)
382 return rv;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800383 for (i = 0; i < len; i++) {
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700384 struct gpio_desc desc;
Patrick Delaunayd252d752018-03-12 10:46:13 +0100385
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100386 log_debug("pinmux = %x\n", *(pin_mux + i));
Vikas Manocha07e9e412017-02-12 10:25:49 -0800387 prep_gpio_dsc(&gpio_dsc, *(pin_mux + i));
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200388 prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), subnode);
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700389 rv = uclass_get_device_by_seq(UCLASS_GPIO,
Patrick Delaunayd252d752018-03-12 10:46:13 +0100390 gpio_dsc.port,
391 &desc.dev);
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700392 if (rv)
393 return rv;
394 desc.offset = gpio_dsc.pin;
395 rv = stm32_gpio_config(&desc, &gpio_ctl);
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100396 log_debug("rv = %d\n\n", rv);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800397 if (rv)
398 return rv;
399 }
Christophe Kerelloa466d212017-06-20 17:04:18 +0200400 }
401
402 return 0;
403}
404
Patrice Chotard05a93192019-06-21 15:39:23 +0200405static int stm32_pinctrl_bind(struct udevice *dev)
406{
407 ofnode node;
408 const char *name;
409 int ret;
410
411 dev_for_each_subnode(node, dev) {
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100412 dev_dbg(dev, "bind %s\n", ofnode_get_name(node));
Patrice Chotard05a93192019-06-21 15:39:23 +0200413
414 ofnode_get_property(node, "gpio-controller", &ret);
415 if (ret < 0)
416 continue;
417 /* Get the name of each gpio node */
418 name = ofnode_get_name(node);
419 if (!name)
420 return -EINVAL;
421
422 /* Bind each gpio node */
423 ret = device_bind_driver_to_node(dev, "gpio_stm32",
424 name, node, NULL);
425 if (ret)
426 return ret;
427
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100428 dev_dbg(dev, "bind %s\n", name);
Patrice Chotard05a93192019-06-21 15:39:23 +0200429 }
430
431 return 0;
432}
433
Christophe Kerellod6661552017-06-20 17:04:19 +0200434#if CONFIG_IS_ENABLED(PINCTRL_FULL)
435static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config)
436{
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200437 return stm32_pinctrl_config(dev_ofnode(config));
Christophe Kerellod6661552017-06-20 17:04:19 +0200438}
439#else /* PINCTRL_FULL */
Christophe Kerelloa466d212017-06-20 17:04:18 +0200440static int stm32_pinctrl_set_state_simple(struct udevice *dev,
441 struct udevice *periph)
442{
Christophe Kerelloa466d212017-06-20 17:04:18 +0200443 const fdt32_t *list;
444 uint32_t phandle;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200445 ofnode config_node;
Christophe Kerelloa466d212017-06-20 17:04:18 +0200446 int size, i, ret;
447
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200448 list = ofnode_get_property(dev_ofnode(periph), "pinctrl-0", &size);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200449 if (!list)
450 return -EINVAL;
451
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100452 dev_dbg(dev, "periph->name = %s\n", periph->name);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200453
454 size /= sizeof(*list);
455 for (i = 0; i < size; i++) {
456 phandle = fdt32_to_cpu(*list++);
457
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200458 config_node = ofnode_get_by_phandle(phandle);
459 if (!ofnode_valid(config_node)) {
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100460 dev_err(periph,
461 "prop pinctrl-0 index %d invalid phandle\n", i);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200462 return -EINVAL;
463 }
464
465 ret = stm32_pinctrl_config(config_node);
466 if (ret)
467 return ret;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800468 }
469
470 return 0;
471}
Christophe Kerellod6661552017-06-20 17:04:19 +0200472#endif /* PINCTRL_FULL */
Vikas Manocha07e9e412017-02-12 10:25:49 -0800473
474static struct pinctrl_ops stm32_pinctrl_ops = {
Christophe Kerellod6661552017-06-20 17:04:19 +0200475#if CONFIG_IS_ENABLED(PINCTRL_FULL)
476 .set_state = stm32_pinctrl_set_state,
477#else /* PINCTRL_FULL */
Vikas Manocha07e9e412017-02-12 10:25:49 -0800478 .set_state_simple = stm32_pinctrl_set_state_simple,
Christophe Kerellod6661552017-06-20 17:04:19 +0200479#endif /* PINCTRL_FULL */
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200480#ifndef CONFIG_SPL_BUILD
Patrice Chotard881e8672018-10-24 14:10:19 +0200481 .get_pin_name = stm32_pinctrl_get_pin_name,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200482 .get_pins_count = stm32_pinctrl_get_pins_count,
Patrice Chotarda46fb392018-10-24 14:10:20 +0200483 .get_pin_muxing = stm32_pinctrl_get_pin_muxing,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200484#endif
Vikas Manocha07e9e412017-02-12 10:25:49 -0800485};
486
487static const struct udevice_id stm32_pinctrl_ids[] = {
Patrice Chotardb5652b72017-12-12 09:49:35 +0100488 { .compatible = "st,stm32f429-pinctrl" },
489 { .compatible = "st,stm32f469-pinctrl" },
Vikas Manocha07e9e412017-02-12 10:25:49 -0800490 { .compatible = "st,stm32f746-pinctrl" },
Patrice Chotard636768f2018-12-11 14:49:18 +0100491 { .compatible = "st,stm32f769-pinctrl" },
Patrice Chotard6502c472017-09-13 18:00:04 +0200492 { .compatible = "st,stm32h743-pinctrl" },
Patrick Delaunayd252d752018-03-12 10:46:13 +0100493 { .compatible = "st,stm32mp157-pinctrl" },
494 { .compatible = "st,stm32mp157-z-pinctrl" },
Vikas Manocha07e9e412017-02-12 10:25:49 -0800495 { }
496};
497
498U_BOOT_DRIVER(pinctrl_stm32) = {
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200499 .name = "pinctrl_stm32",
500 .id = UCLASS_PINCTRL,
501 .of_match = stm32_pinctrl_ids,
502 .ops = &stm32_pinctrl_ops,
Patrice Chotard05a93192019-06-21 15:39:23 +0200503 .bind = stm32_pinctrl_bind,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200504 .probe = stm32_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700505 .priv_auto = sizeof(struct stm32_pinctrl_priv),
Vikas Manocha07e9e412017-02-12 10:25:49 -0800506};