blob: b06da50b2cd54bc0b819b2b06c292b42406fe2a8 [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/gpio.h>
14#include <asm/io.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <dm/device_compat.h>
Patrice Chotarde16e8f42019-07-30 19:16:10 +020016#include <dm/lists.h>
17#include <dm/pinctrl.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060018#include <linux/bitops.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070019#include <linux/err.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060020#include <linux/libfdt.h>
Vikas Manocha07e9e412017-02-12 10:25:49 -080021
Patrick Delaunay7dccd892021-10-22 20:12:34 +020022#include "../gpio/stm32_gpio_priv.h"
23
Vikas Manocha40ddb3a2017-04-10 15:03:04 -070024#define MAX_PINS_ONE_IP 70
Vikas Manochaec8630a2017-04-10 15:02:57 -070025#define MODE_BITS_MASK 3
26#define OSPEED_MASK 3
27#define PUPD_MASK 3
28#define OTYPE_MSK 1
29#define AFR_MASK 0xF
30
Patrice Chotardaaf68e82018-10-24 14:10:18 +020031struct stm32_pinctrl_priv {
Benjamin Gaignard16f6f332018-11-27 13:49:53 +010032 struct hwspinlock hws;
Patrice Chotardaaf68e82018-10-24 14:10:18 +020033 int pinctrl_ngpios;
34 struct list_head gpio_dev;
35};
36
37struct stm32_gpio_bank {
38 struct udevice *gpio_dev;
39 struct list_head list;
40};
41
Benjamin Gaignard16f6f332018-11-27 13:49:53 +010042#ifndef CONFIG_SPL_BUILD
43
Patrice Chotard881e8672018-10-24 14:10:19 +020044static char pin_name[PINNAME_SIZE];
Patrice Chotard22663902022-04-22 09:38:29 +020045static const char * const pinmux_mode[GPIOF_COUNT] = {
46 [GPIOF_INPUT] = "gpio input",
47 [GPIOF_OUTPUT] = "gpio output",
48 [GPIOF_UNUSED] = "analog",
49 [GPIOF_UNKNOWN] = "unknown",
50 [GPIOF_FUNC] = "alt function",
Patrice Chotarda46fb392018-10-24 14:10:20 +020051};
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
Patrick Delaunay764d3ba2021-01-21 17:39:07 +010059static const char * const pinmux_otype[] = {
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 Chotard8f0c89c2023-03-27 09:46:41 +020064static const char * const pinmux_speed[] = {
65 [STM32_GPIO_SPEED_2M] = "Low speed",
66 [STM32_GPIO_SPEED_25M] = "Medium speed",
67 [STM32_GPIO_SPEED_50M] = "High speed",
68 [STM32_GPIO_SPEED_100M] = "Very-high speed",
69};
70
Patrice Chotarda46fb392018-10-24 14:10:20 +020071static int stm32_pinctrl_get_af(struct udevice *dev, unsigned int offset)
72{
73 struct stm32_gpio_priv *priv = dev_get_priv(dev);
74 struct stm32_gpio_regs *regs = priv->regs;
75 u32 af;
76 u32 alt_shift = (offset % 8) * 4;
77 u32 alt_index = offset / 8;
78
79 af = (readl(&regs->afr[alt_index]) &
80 GENMASK(alt_shift + 3, alt_shift)) >> alt_shift;
81
82 return af;
83}
84
Patrice Chotard7ef91082018-12-03 10:52:50 +010085static int stm32_populate_gpio_dev_list(struct udevice *dev)
86{
87 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
88 struct udevice *gpio_dev;
89 struct udevice *child;
90 struct stm32_gpio_bank *gpio_bank;
91 int ret;
92
93 /*
94 * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
95 * a list with all gpio device reference which belongs to the
96 * current pin-controller. This list is used to find pin_name and
97 * pin muxing
98 */
99 list_for_each_entry(child, &dev->child_head, sibling_node) {
100 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
101 &gpio_dev);
102 if (ret < 0)
103 continue;
104
105 gpio_bank = malloc(sizeof(*gpio_bank));
106 if (!gpio_bank) {
107 dev_err(dev, "Not enough memory\n");
108 return -ENOMEM;
109 }
110
111 gpio_bank->gpio_dev = gpio_dev;
112 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
113 }
114
115 return 0;
116}
117
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200118static int stm32_pinctrl_get_pins_count(struct udevice *dev)
119{
120 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
121 struct gpio_dev_priv *uc_priv;
122 struct stm32_gpio_bank *gpio_bank;
123
124 /*
125 * if get_pins_count has already been executed once on this
126 * pin-controller, no need to run it again
127 */
128 if (priv->pinctrl_ngpios)
129 return priv->pinctrl_ngpios;
130
Patrice Chotard7ef91082018-12-03 10:52:50 +0100131 if (list_empty(&priv->gpio_dev))
132 stm32_populate_gpio_dev_list(dev);
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200133 /*
134 * walk through all banks to retrieve the pin-controller
135 * pins number
136 */
137 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
138 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
139
140 priv->pinctrl_ngpios += uc_priv->gpio_count;
141 }
142
143 return priv->pinctrl_ngpios;
144}
145
Patrice Chotard881e8672018-10-24 14:10:19 +0200146static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev,
Patrice Chotard0b968002018-12-03 10:52:54 +0100147 unsigned int selector,
148 unsigned int *idx)
Patrice Chotard881e8672018-10-24 14:10:19 +0200149{
150 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
151 struct stm32_gpio_bank *gpio_bank;
152 struct gpio_dev_priv *uc_priv;
Patrice Chotard0b968002018-12-03 10:52:54 +0100153 int pin_count = 0;
Patrice Chotard881e8672018-10-24 14:10:19 +0200154
Patrice Chotard7ef91082018-12-03 10:52:50 +0100155 if (list_empty(&priv->gpio_dev))
156 stm32_populate_gpio_dev_list(dev);
157
Patrice Chotard881e8672018-10-24 14:10:19 +0200158 /* look up for the bank which owns the requested pin */
159 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
160 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
161
Patrice Chotard0b968002018-12-03 10:52:54 +0100162 if (selector < (pin_count + uc_priv->gpio_count)) {
163 /*
164 * we found the bank, convert pin selector to
165 * gpio bank index
166 */
Patrice Chotard5554a542022-04-22 09:38:31 +0200167 *idx = selector - pin_count;
Patrice Chotard881e8672018-10-24 14:10:19 +0200168
Patrice Chotard0b968002018-12-03 10:52:54 +0100169 return gpio_bank->gpio_dev;
170 }
171 pin_count += uc_priv->gpio_count;
Patrice Chotard881e8672018-10-24 14:10:19 +0200172 }
173
174 return NULL;
175}
176
177static const char *stm32_pinctrl_get_pin_name(struct udevice *dev,
178 unsigned int selector)
179{
180 struct gpio_dev_priv *uc_priv;
181 struct udevice *gpio_dev;
Patrice Chotard0b968002018-12-03 10:52:54 +0100182 unsigned int gpio_idx;
Patrice Chotard881e8672018-10-24 14:10:19 +0200183
184 /* look up for the bank which owns the requested pin */
Patrice Chotard0b968002018-12-03 10:52:54 +0100185 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotard881e8672018-10-24 14:10:19 +0200186 if (!gpio_dev) {
187 snprintf(pin_name, PINNAME_SIZE, "Error");
188 } else {
189 uc_priv = dev_get_uclass_priv(gpio_dev);
190
191 snprintf(pin_name, PINNAME_SIZE, "%s%d",
192 uc_priv->bank_name,
Patrice Chotard0b968002018-12-03 10:52:54 +0100193 gpio_idx);
Patrice Chotard881e8672018-10-24 14:10:19 +0200194 }
195
196 return pin_name;
197}
Patrice Chotarda46fb392018-10-24 14:10:20 +0200198
199static int stm32_pinctrl_get_pin_muxing(struct udevice *dev,
200 unsigned int selector,
201 char *buf,
202 int size)
203{
204 struct udevice *gpio_dev;
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200205 struct stm32_gpio_priv *priv;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200206 const char *label;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200207 int mode;
208 int af_num;
Patrice Chotard0b968002018-12-03 10:52:54 +0100209 unsigned int gpio_idx;
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200210 u32 pupd, otype;
Patrice Chotard8f0c89c2023-03-27 09:46:41 +0200211 u8 speed;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200212
213 /* look up for the bank which owns the requested pin */
Patrice Chotard0b968002018-12-03 10:52:54 +0100214 gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
Patrice Chotarda46fb392018-10-24 14:10:20 +0200215
216 if (!gpio_dev)
217 return -ENODEV;
218
Patrice Chotard0b968002018-12-03 10:52:54 +0100219 mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label);
Patrice Chotard0b968002018-12-03 10:52:54 +0100220 dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n",
221 selector, gpio_idx, mode);
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200222 priv = dev_get_priv(gpio_dev);
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100223 pupd = (readl(&priv->regs->pupdr) >> (gpio_idx * 2)) & PUPD_MASK;
Patrick Delaunay764d3ba2021-01-21 17:39:07 +0100224 otype = (readl(&priv->regs->otyper) >> gpio_idx) & OTYPE_MSK;
Patrice Chotard8f0c89c2023-03-27 09:46:41 +0200225 speed = (readl(&priv->regs->ospeedr) >> gpio_idx * 2) & OSPEED_MASK;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200226
227 switch (mode) {
228 case GPIOF_UNKNOWN:
Patrice Chotarda46fb392018-10-24 14:10:20 +0200229 case GPIOF_UNUSED:
230 snprintf(buf, size, "%s", pinmux_mode[mode]);
231 break;
232 case GPIOF_FUNC:
Patrice Chotard0b968002018-12-03 10:52:54 +0100233 af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx);
Patrice Chotard8f0c89c2023-03-27 09:46:41 +0200234 snprintf(buf, size, "%s %d %s %s %s", pinmux_mode[mode], af_num,
235 pinmux_otype[otype], pinmux_bias[pupd],
236 pinmux_speed[speed]);
Patrice Chotarda46fb392018-10-24 14:10:20 +0200237 break;
238 case GPIOF_OUTPUT:
Patrice Chotard8f0c89c2023-03-27 09:46:41 +0200239 snprintf(buf, size, "%s %s %s %s %s",
Patrick Delaunay764d3ba2021-01-21 17:39:07 +0100240 pinmux_mode[mode], pinmux_otype[otype],
Patrice Chotard8f0c89c2023-03-27 09:46:41 +0200241 pinmux_bias[pupd], label ? label : "",
242 pinmux_speed[speed]);
Patrick Delaunay8274fab2020-06-04 14:30:33 +0200243 break;
Patrice Chotarda46fb392018-10-24 14:10:20 +0200244 case GPIOF_INPUT:
Patrick Delaunay764d3ba2021-01-21 17:39:07 +0100245 snprintf(buf, size, "%s %s %s", pinmux_mode[mode],
Patrick Delaunay6347ed92020-10-28 10:49:07 +0100246 pinmux_bias[pupd], label ? label : "");
Patrice Chotarda46fb392018-10-24 14:10:20 +0200247 break;
248 }
249
250 return 0;
251}
252
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100253#endif
254
Patrick Delaunay4c11a112019-06-21 15:26:52 +0200255static int stm32_pinctrl_probe(struct udevice *dev)
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200256{
257 struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200258 int ret;
259
260 INIT_LIST_HEAD(&priv->gpio_dev);
261
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100262 /* hwspinlock property is optional, just log the error */
263 ret = hwspinlock_get_by_index(dev, 0, &priv->hws);
264 if (ret)
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100265 dev_dbg(dev, "hwspinlock_get_by_index may have failed (%d)\n",
266 ret);
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100267
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200268 return 0;
269}
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200270
Patrice Chotard866dfea2022-08-30 14:09:13 +0200271static int stm32_gpio_config(ofnode node,
272 struct gpio_desc *desc,
Vikas Manochaec8630a2017-04-10 15:02:57 -0700273 const struct stm32_gpio_ctl *ctl)
274{
275 struct stm32_gpio_priv *priv = dev_get_priv(desc->dev);
Patrice Chotard866dfea2022-08-30 14:09:13 +0200276 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(desc->dev);
Vikas Manochaec8630a2017-04-10 15:02:57 -0700277 struct stm32_gpio_regs *regs = priv->regs;
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100278 struct stm32_pinctrl_priv *ctrl_priv;
279 int ret;
Vikas Manochaec8630a2017-04-10 15:02:57 -0700280 u32 index;
281
282 if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 ||
283 ctl->pupd > 2 || ctl->speed > 3)
284 return -EINVAL;
285
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100286 ctrl_priv = dev_get_priv(dev_get_parent(desc->dev));
287 ret = hwspinlock_lock_timeout(&ctrl_priv->hws, 10);
288 if (ret == -ETIME) {
289 dev_err(desc->dev, "HWSpinlock timeout\n");
290 return ret;
291 }
292
Vikas Manochaec8630a2017-04-10 15:02:57 -0700293 index = (desc->offset & 0x07) * 4;
294 clrsetbits_le32(&regs->afr[desc->offset >> 3], AFR_MASK << index,
295 ctl->af << index);
296
297 index = desc->offset * 2;
298 clrsetbits_le32(&regs->moder, MODE_BITS_MASK << index,
299 ctl->mode << index);
300 clrsetbits_le32(&regs->ospeedr, OSPEED_MASK << index,
301 ctl->speed << index);
302 clrsetbits_le32(&regs->pupdr, PUPD_MASK << index, ctl->pupd << index);
303
304 index = desc->offset;
305 clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index);
306
Patrice Chotard866dfea2022-08-30 14:09:13 +0200307 uc_priv->name[desc->offset] = strdup(ofnode_get_name(node));
308
Benjamin Gaignard16f6f332018-11-27 13:49:53 +0100309 hwspinlock_unlock(&ctrl_priv->hws);
310
Vikas Manochaec8630a2017-04-10 15:02:57 -0700311 return 0;
312}
Patrick Delaunayd252d752018-03-12 10:46:13 +0100313
Vikas Manocha07e9e412017-02-12 10:25:49 -0800314static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin)
315{
Patrick Delaunayd252d752018-03-12 10:46:13 +0100316 gpio_dsc->port = (port_pin & 0x1F000) >> 12;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800317 gpio_dsc->pin = (port_pin & 0x0F00) >> 8;
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100318 log_debug("GPIO:port= %d, pin= %d\n", gpio_dsc->port, gpio_dsc->pin);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800319
320 return 0;
321}
322
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200323static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn,
324 ofnode node)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800325{
326 gpio_fn &= 0x00FF;
Vikas Manochaec8630a2017-04-10 15:02:57 -0700327 gpio_ctl->af = 0;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800328
329 switch (gpio_fn) {
330 case 0:
331 gpio_ctl->mode = STM32_GPIO_MODE_IN;
332 break;
333 case 1 ... 16:
334 gpio_ctl->mode = STM32_GPIO_MODE_AF;
335 gpio_ctl->af = gpio_fn - 1;
336 break;
337 case 17:
338 gpio_ctl->mode = STM32_GPIO_MODE_AN;
339 break;
340 default:
341 gpio_ctl->mode = STM32_GPIO_MODE_OUT;
342 break;
343 }
344
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200345 gpio_ctl->speed = ofnode_read_u32_default(node, "slew-rate", 0);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800346
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200347 if (ofnode_read_bool(node, "drive-open-drain"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800348 gpio_ctl->otype = STM32_GPIO_OTYPE_OD;
349 else
350 gpio_ctl->otype = STM32_GPIO_OTYPE_PP;
351
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200352 if (ofnode_read_bool(node, "bias-pull-up"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800353 gpio_ctl->pupd = STM32_GPIO_PUPD_UP;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200354 else if (ofnode_read_bool(node, "bias-pull-down"))
Vikas Manocha07e9e412017-02-12 10:25:49 -0800355 gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN;
356 else
357 gpio_ctl->pupd = STM32_GPIO_PUPD_NO;
358
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100359 log_debug("gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n",
360 gpio_fn, gpio_ctl->speed, gpio_ctl->otype,
361 gpio_ctl->pupd);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800362
363 return 0;
364}
365
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200366static int stm32_pinctrl_config(ofnode node)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800367{
Vikas Manocha40ddb3a2017-04-10 15:03:04 -0700368 u32 pin_mux[MAX_PINS_ONE_IP];
Vikas Manocha07e9e412017-02-12 10:25:49 -0800369 int rv, len;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200370 ofnode subnode;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800371
Vikas Manocha07e9e412017-02-12 10:25:49 -0800372 /*
373 * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for
374 * usart1) of pin controller phandle "pinctrl-0"
375 * */
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200376 ofnode_for_each_subnode(subnode, node) {
Vikas Manocha07e9e412017-02-12 10:25:49 -0800377 struct stm32_gpio_dsc gpio_dsc;
378 struct stm32_gpio_ctl gpio_ctl;
379 int i;
380
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200381 rv = ofnode_read_size(subnode, "pinmux");
382 if (rv < 0)
383 return rv;
384 len = rv / sizeof(pin_mux[0]);
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100385 log_debug("No of pinmux entries= %d\n", len);
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200386 if (len > MAX_PINS_ONE_IP)
Vikas Manocha07e9e412017-02-12 10:25:49 -0800387 return -EINVAL;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200388 rv = ofnode_read_u32_array(subnode, "pinmux", pin_mux, len);
389 if (rv < 0)
390 return rv;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800391 for (i = 0; i < len; i++) {
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700392 struct gpio_desc desc;
Patrick Delaunayd252d752018-03-12 10:46:13 +0100393
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100394 log_debug("pinmux = %x\n", *(pin_mux + i));
Vikas Manocha07e9e412017-02-12 10:25:49 -0800395 prep_gpio_dsc(&gpio_dsc, *(pin_mux + i));
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200396 prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), subnode);
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700397 rv = uclass_get_device_by_seq(UCLASS_GPIO,
Patrick Delaunayd252d752018-03-12 10:46:13 +0100398 gpio_dsc.port,
399 &desc.dev);
Vikas Manocha1a8fde72017-04-10 15:02:59 -0700400 if (rv)
401 return rv;
402 desc.offset = gpio_dsc.pin;
Patrice Chotard866dfea2022-08-30 14:09:13 +0200403 rv = stm32_gpio_config(node, &desc, &gpio_ctl);
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100404 log_debug("rv = %d\n\n", rv);
Vikas Manocha07e9e412017-02-12 10:25:49 -0800405 if (rv)
406 return rv;
407 }
Christophe Kerelloa466d212017-06-20 17:04:18 +0200408 }
409
410 return 0;
411}
412
Patrice Chotard05a93192019-06-21 15:39:23 +0200413static int stm32_pinctrl_bind(struct udevice *dev)
414{
415 ofnode node;
416 const char *name;
417 int ret;
418
419 dev_for_each_subnode(node, dev) {
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100420 dev_dbg(dev, "bind %s\n", ofnode_get_name(node));
Patrice Chotard05a93192019-06-21 15:39:23 +0200421
Patrick Delaunay13fd15c2021-01-21 17:39:08 +0100422 if (!ofnode_is_enabled(node))
423 continue;
424
Patrice Chotard05a93192019-06-21 15:39:23 +0200425 ofnode_get_property(node, "gpio-controller", &ret);
426 if (ret < 0)
427 continue;
428 /* Get the name of each gpio node */
429 name = ofnode_get_name(node);
430 if (!name)
431 return -EINVAL;
432
433 /* Bind each gpio node */
434 ret = device_bind_driver_to_node(dev, "gpio_stm32",
435 name, node, NULL);
436 if (ret)
437 return ret;
438
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100439 dev_dbg(dev, "bind %s\n", name);
Patrice Chotard05a93192019-06-21 15:39:23 +0200440 }
441
442 return 0;
443}
444
Christophe Kerellod6661552017-06-20 17:04:19 +0200445#if CONFIG_IS_ENABLED(PINCTRL_FULL)
446static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config)
447{
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200448 return stm32_pinctrl_config(dev_ofnode(config));
Christophe Kerellod6661552017-06-20 17:04:19 +0200449}
450#else /* PINCTRL_FULL */
Christophe Kerelloa466d212017-06-20 17:04:18 +0200451static int stm32_pinctrl_set_state_simple(struct udevice *dev,
452 struct udevice *periph)
453{
Christophe Kerelloa466d212017-06-20 17:04:18 +0200454 const fdt32_t *list;
455 uint32_t phandle;
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200456 ofnode config_node;
Christophe Kerelloa466d212017-06-20 17:04:18 +0200457 int size, i, ret;
458
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200459 list = ofnode_get_property(dev_ofnode(periph), "pinctrl-0", &size);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200460 if (!list)
461 return -EINVAL;
462
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100463 dev_dbg(dev, "periph->name = %s\n", periph->name);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200464
465 size /= sizeof(*list);
466 for (i = 0; i < size; i++) {
467 phandle = fdt32_to_cpu(*list++);
468
Patrick Delaunay11ec5972020-09-09 17:50:14 +0200469 config_node = ofnode_get_by_phandle(phandle);
470 if (!ofnode_valid(config_node)) {
Patrick Delaunay84a9a4e2020-11-06 19:01:32 +0100471 dev_err(periph,
472 "prop pinctrl-0 index %d invalid phandle\n", i);
Christophe Kerelloa466d212017-06-20 17:04:18 +0200473 return -EINVAL;
474 }
475
476 ret = stm32_pinctrl_config(config_node);
477 if (ret)
478 return ret;
Vikas Manocha07e9e412017-02-12 10:25:49 -0800479 }
480
481 return 0;
482}
Christophe Kerellod6661552017-06-20 17:04:19 +0200483#endif /* PINCTRL_FULL */
Vikas Manocha07e9e412017-02-12 10:25:49 -0800484
485static struct pinctrl_ops stm32_pinctrl_ops = {
Christophe Kerellod6661552017-06-20 17:04:19 +0200486#if CONFIG_IS_ENABLED(PINCTRL_FULL)
487 .set_state = stm32_pinctrl_set_state,
488#else /* PINCTRL_FULL */
Vikas Manocha07e9e412017-02-12 10:25:49 -0800489 .set_state_simple = stm32_pinctrl_set_state_simple,
Christophe Kerellod6661552017-06-20 17:04:19 +0200490#endif /* PINCTRL_FULL */
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200491#ifndef CONFIG_SPL_BUILD
Patrice Chotard881e8672018-10-24 14:10:19 +0200492 .get_pin_name = stm32_pinctrl_get_pin_name,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200493 .get_pins_count = stm32_pinctrl_get_pins_count,
Patrice Chotarda46fb392018-10-24 14:10:20 +0200494 .get_pin_muxing = stm32_pinctrl_get_pin_muxing,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200495#endif
Vikas Manocha07e9e412017-02-12 10:25:49 -0800496};
497
498static const struct udevice_id stm32_pinctrl_ids[] = {
Patrice Chotardb5652b72017-12-12 09:49:35 +0100499 { .compatible = "st,stm32f429-pinctrl" },
500 { .compatible = "st,stm32f469-pinctrl" },
Vikas Manocha07e9e412017-02-12 10:25:49 -0800501 { .compatible = "st,stm32f746-pinctrl" },
Patrice Chotard636768f2018-12-11 14:49:18 +0100502 { .compatible = "st,stm32f769-pinctrl" },
Patrice Chotard6502c472017-09-13 18:00:04 +0200503 { .compatible = "st,stm32h743-pinctrl" },
Patrick Delaunayd252d752018-03-12 10:46:13 +0100504 { .compatible = "st,stm32mp157-pinctrl" },
505 { .compatible = "st,stm32mp157-z-pinctrl" },
Patrick Delaunayfd65f0a2022-05-20 18:24:48 +0200506 { .compatible = "st,stm32mp135-pinctrl" },
Vikas Manocha07e9e412017-02-12 10:25:49 -0800507 { }
508};
509
510U_BOOT_DRIVER(pinctrl_stm32) = {
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200511 .name = "pinctrl_stm32",
512 .id = UCLASS_PINCTRL,
513 .of_match = stm32_pinctrl_ids,
514 .ops = &stm32_pinctrl_ops,
Patrice Chotard05a93192019-06-21 15:39:23 +0200515 .bind = stm32_pinctrl_bind,
Patrice Chotardaaf68e82018-10-24 14:10:18 +0200516 .probe = stm32_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700517 .priv_auto = sizeof(struct stm32_pinctrl_priv),
Vikas Manocha07e9e412017-02-12 10:25:49 -0800518};