Patrick Delaunay | 10bccd0 | 2020-09-09 17:50:15 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2017-2020 STMicroelectronics - All Rights Reserved |
| 4 | */ |
| 5 | |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 6 | #define LOG_CATEGORY UCLASS_PINCTRL |
| 7 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 8 | #include <common.h> |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 9 | #include <dm.h> |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 10 | #include <hwspinlock.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 12 | #include <malloc.h> |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 13 | #include <asm/arch/gpio.h> |
| 14 | #include <asm/gpio.h> |
| 15 | #include <asm/io.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 16 | #include <dm/device_compat.h> |
Patrice Chotard | 7385826 | 2019-07-30 19:16:10 +0200 | [diff] [blame] | 17 | #include <dm/lists.h> |
| 18 | #include <dm/pinctrl.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 19 | #include <linux/bitops.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 20 | #include <linux/err.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 21 | #include <linux/libfdt.h> |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 22 | |
Vikas Manocha | 58fb3c8 | 2017-04-10 15:03:04 -0700 | [diff] [blame] | 23 | #define MAX_PINS_ONE_IP 70 |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 24 | #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 Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 30 | struct stm32_pinctrl_priv { |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 31 | struct hwspinlock hws; |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 32 | int pinctrl_ngpios; |
| 33 | struct list_head gpio_dev; |
| 34 | }; |
| 35 | |
| 36 | struct stm32_gpio_bank { |
| 37 | struct udevice *gpio_dev; |
| 38 | struct list_head list; |
| 39 | }; |
| 40 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 41 | #ifndef CONFIG_SPL_BUILD |
| 42 | |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 43 | static char pin_name[PINNAME_SIZE]; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 44 | #define PINMUX_MODE_COUNT 5 |
| 45 | static const char * const pinmux_mode[PINMUX_MODE_COUNT] = { |
| 46 | "gpio input", |
| 47 | "gpio output", |
| 48 | "analog", |
| 49 | "unknown", |
| 50 | "alt function", |
| 51 | }; |
| 52 | |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 53 | static 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 Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
Patrick Delaunay | 1da4269 | 2021-01-21 17:39:07 +0100 | [diff] [blame] | 59 | static const char * const pinmux_otype[] = { |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 60 | [STM32_GPIO_OTYPE_PP] = "push-pull", |
| 61 | [STM32_GPIO_OTYPE_OD] = "open-drain", |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 62 | }; |
| 63 | |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 64 | static 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(®s->afr[alt_index]) & |
| 73 | GENMASK(alt_shift + 3, alt_shift)) >> alt_shift; |
| 74 | |
| 75 | return af; |
| 76 | } |
| 77 | |
Patrice Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 78 | static 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 Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 111 | static 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 Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 124 | if (list_empty(&priv->gpio_dev)) |
| 125 | stm32_populate_gpio_dev_list(dev); |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 126 | /* |
| 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 Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 139 | static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev, |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 140 | unsigned int selector, |
| 141 | unsigned int *idx) |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 142 | { |
| 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 Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 146 | int pin_count = 0; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 147 | |
Patrice Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 148 | if (list_empty(&priv->gpio_dev)) |
| 149 | stm32_populate_gpio_dev_list(dev); |
| 150 | |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 151 | /* 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 Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 155 | 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 Delaunay | 91ca91e | 2019-06-21 15:26:52 +0200 | [diff] [blame] | 162 | if (IS_ERR_VALUE(*idx)) |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 163 | return NULL; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 164 | |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 165 | return gpio_bank->gpio_dev; |
| 166 | } |
| 167 | pin_count += uc_priv->gpio_count; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | return NULL; |
| 171 | } |
| 172 | |
| 173 | static 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 Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 178 | unsigned int gpio_idx; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 179 | |
| 180 | /* look up for the bank which owns the requested pin */ |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 181 | gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx); |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 182 | 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 Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 189 | gpio_idx); |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | return pin_name; |
| 193 | } |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 194 | |
| 195 | static 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 Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 201 | struct stm32_gpio_priv *priv; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 202 | const char *label; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 203 | int mode; |
| 204 | int af_num; |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 205 | unsigned int gpio_idx; |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 206 | u32 pupd, otype; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 207 | |
| 208 | /* look up for the bank which owns the requested pin */ |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 209 | gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx); |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 210 | |
| 211 | if (!gpio_dev) |
| 212 | return -ENODEV; |
| 213 | |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 214 | mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label); |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 215 | dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n", |
| 216 | selector, gpio_idx, mode); |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 217 | priv = dev_get_priv(gpio_dev); |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 218 | pupd = (readl(&priv->regs->pupdr) >> (gpio_idx * 2)) & PUPD_MASK; |
Patrick Delaunay | 1da4269 | 2021-01-21 17:39:07 +0100 | [diff] [blame] | 219 | otype = (readl(&priv->regs->otyper) >> gpio_idx) & OTYPE_MSK; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 220 | |
| 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 Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 229 | af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx); |
Patrick Delaunay | 1da4269 | 2021-01-21 17:39:07 +0100 | [diff] [blame] | 230 | snprintf(buf, size, "%s %d %s %s", pinmux_mode[mode], af_num, |
| 231 | pinmux_otype[otype], pinmux_bias[pupd]); |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 232 | break; |
| 233 | case GPIOF_OUTPUT: |
Patrick Delaunay | 1da4269 | 2021-01-21 17:39:07 +0100 | [diff] [blame] | 234 | snprintf(buf, size, "%s %s %s %s", |
| 235 | pinmux_mode[mode], pinmux_otype[otype], |
| 236 | pinmux_bias[pupd], label ? label : ""); |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 237 | break; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 238 | case GPIOF_INPUT: |
Patrick Delaunay | 1da4269 | 2021-01-21 17:39:07 +0100 | [diff] [blame] | 239 | snprintf(buf, size, "%s %s %s", pinmux_mode[mode], |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 240 | pinmux_bias[pupd], label ? label : ""); |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 241 | break; |
| 242 | } |
| 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 247 | #endif |
| 248 | |
Patrick Delaunay | 91ca91e | 2019-06-21 15:26:52 +0200 | [diff] [blame] | 249 | static int stm32_pinctrl_probe(struct udevice *dev) |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 250 | { |
| 251 | struct stm32_pinctrl_priv *priv = dev_get_priv(dev); |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 252 | int ret; |
| 253 | |
| 254 | INIT_LIST_HEAD(&priv->gpio_dev); |
| 255 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 256 | /* hwspinlock property is optional, just log the error */ |
| 257 | ret = hwspinlock_get_by_index(dev, 0, &priv->hws); |
| 258 | if (ret) |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 259 | dev_dbg(dev, "hwspinlock_get_by_index may have failed (%d)\n", |
| 260 | ret); |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 261 | |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 262 | return 0; |
| 263 | } |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 264 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 265 | static int stm32_gpio_config(struct gpio_desc *desc, |
| 266 | const struct stm32_gpio_ctl *ctl) |
| 267 | { |
| 268 | struct stm32_gpio_priv *priv = dev_get_priv(desc->dev); |
| 269 | struct stm32_gpio_regs *regs = priv->regs; |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 270 | struct stm32_pinctrl_priv *ctrl_priv; |
| 271 | int ret; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 272 | u32 index; |
| 273 | |
| 274 | if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 || |
| 275 | ctl->pupd > 2 || ctl->speed > 3) |
| 276 | return -EINVAL; |
| 277 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 278 | ctrl_priv = dev_get_priv(dev_get_parent(desc->dev)); |
| 279 | ret = hwspinlock_lock_timeout(&ctrl_priv->hws, 10); |
| 280 | if (ret == -ETIME) { |
| 281 | dev_err(desc->dev, "HWSpinlock timeout\n"); |
| 282 | return ret; |
| 283 | } |
| 284 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 285 | index = (desc->offset & 0x07) * 4; |
| 286 | clrsetbits_le32(®s->afr[desc->offset >> 3], AFR_MASK << index, |
| 287 | ctl->af << index); |
| 288 | |
| 289 | index = desc->offset * 2; |
| 290 | clrsetbits_le32(®s->moder, MODE_BITS_MASK << index, |
| 291 | ctl->mode << index); |
| 292 | clrsetbits_le32(®s->ospeedr, OSPEED_MASK << index, |
| 293 | ctl->speed << index); |
| 294 | clrsetbits_le32(®s->pupdr, PUPD_MASK << index, ctl->pupd << index); |
| 295 | |
| 296 | index = desc->offset; |
| 297 | clrsetbits_le32(®s->otyper, OTYPE_MSK << index, ctl->otype << index); |
| 298 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 299 | hwspinlock_unlock(&ctrl_priv->hws); |
| 300 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 301 | return 0; |
| 302 | } |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 303 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 304 | static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin) |
| 305 | { |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 306 | gpio_dsc->port = (port_pin & 0x1F000) >> 12; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 307 | gpio_dsc->pin = (port_pin & 0x0F00) >> 8; |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 308 | log_debug("GPIO:port= %d, pin= %d\n", gpio_dsc->port, gpio_dsc->pin); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 309 | |
| 310 | return 0; |
| 311 | } |
| 312 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 313 | static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn, |
| 314 | ofnode node) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 315 | { |
| 316 | gpio_fn &= 0x00FF; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 317 | gpio_ctl->af = 0; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 318 | |
| 319 | switch (gpio_fn) { |
| 320 | case 0: |
| 321 | gpio_ctl->mode = STM32_GPIO_MODE_IN; |
| 322 | break; |
| 323 | case 1 ... 16: |
| 324 | gpio_ctl->mode = STM32_GPIO_MODE_AF; |
| 325 | gpio_ctl->af = gpio_fn - 1; |
| 326 | break; |
| 327 | case 17: |
| 328 | gpio_ctl->mode = STM32_GPIO_MODE_AN; |
| 329 | break; |
| 330 | default: |
| 331 | gpio_ctl->mode = STM32_GPIO_MODE_OUT; |
| 332 | break; |
| 333 | } |
| 334 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 335 | gpio_ctl->speed = ofnode_read_u32_default(node, "slew-rate", 0); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 336 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 337 | if (ofnode_read_bool(node, "drive-open-drain")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 338 | gpio_ctl->otype = STM32_GPIO_OTYPE_OD; |
| 339 | else |
| 340 | gpio_ctl->otype = STM32_GPIO_OTYPE_PP; |
| 341 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 342 | if (ofnode_read_bool(node, "bias-pull-up")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 343 | gpio_ctl->pupd = STM32_GPIO_PUPD_UP; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 344 | else if (ofnode_read_bool(node, "bias-pull-down")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 345 | gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN; |
| 346 | else |
| 347 | gpio_ctl->pupd = STM32_GPIO_PUPD_NO; |
| 348 | |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 349 | log_debug("gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n", |
| 350 | gpio_fn, gpio_ctl->speed, gpio_ctl->otype, |
| 351 | gpio_ctl->pupd); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 356 | static int stm32_pinctrl_config(ofnode node) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 357 | { |
Vikas Manocha | 58fb3c8 | 2017-04-10 15:03:04 -0700 | [diff] [blame] | 358 | u32 pin_mux[MAX_PINS_ONE_IP]; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 359 | int rv, len; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 360 | ofnode subnode; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 361 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 362 | /* |
| 363 | * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for |
| 364 | * usart1) of pin controller phandle "pinctrl-0" |
| 365 | * */ |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 366 | ofnode_for_each_subnode(subnode, node) { |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 367 | struct stm32_gpio_dsc gpio_dsc; |
| 368 | struct stm32_gpio_ctl gpio_ctl; |
| 369 | int i; |
| 370 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 371 | rv = ofnode_read_size(subnode, "pinmux"); |
| 372 | if (rv < 0) |
| 373 | return rv; |
| 374 | len = rv / sizeof(pin_mux[0]); |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 375 | log_debug("No of pinmux entries= %d\n", len); |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 376 | if (len > MAX_PINS_ONE_IP) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 377 | return -EINVAL; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 378 | rv = ofnode_read_u32_array(subnode, "pinmux", pin_mux, len); |
| 379 | if (rv < 0) |
| 380 | return rv; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 381 | for (i = 0; i < len; i++) { |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 382 | struct gpio_desc desc; |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 383 | |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 384 | log_debug("pinmux = %x\n", *(pin_mux + i)); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 385 | prep_gpio_dsc(&gpio_dsc, *(pin_mux + i)); |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 386 | prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), subnode); |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 387 | rv = uclass_get_device_by_seq(UCLASS_GPIO, |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 388 | gpio_dsc.port, |
| 389 | &desc.dev); |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 390 | if (rv) |
| 391 | return rv; |
| 392 | desc.offset = gpio_dsc.pin; |
| 393 | rv = stm32_gpio_config(&desc, &gpio_ctl); |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 394 | log_debug("rv = %d\n\n", rv); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 395 | if (rv) |
| 396 | return rv; |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 403 | static int stm32_pinctrl_bind(struct udevice *dev) |
| 404 | { |
| 405 | ofnode node; |
| 406 | const char *name; |
| 407 | int ret; |
| 408 | |
| 409 | dev_for_each_subnode(node, dev) { |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 410 | dev_dbg(dev, "bind %s\n", ofnode_get_name(node)); |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 411 | |
Patrick Delaunay | 4363aac | 2021-01-21 17:39:08 +0100 | [diff] [blame] | 412 | if (!ofnode_is_enabled(node)) |
| 413 | continue; |
| 414 | |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 415 | ofnode_get_property(node, "gpio-controller", &ret); |
| 416 | if (ret < 0) |
| 417 | continue; |
| 418 | /* Get the name of each gpio node */ |
| 419 | name = ofnode_get_name(node); |
| 420 | if (!name) |
| 421 | return -EINVAL; |
| 422 | |
| 423 | /* Bind each gpio node */ |
| 424 | ret = device_bind_driver_to_node(dev, "gpio_stm32", |
| 425 | name, node, NULL); |
| 426 | if (ret) |
| 427 | return ret; |
| 428 | |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 429 | dev_dbg(dev, "bind %s\n", name); |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | return 0; |
| 433 | } |
| 434 | |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 435 | #if CONFIG_IS_ENABLED(PINCTRL_FULL) |
| 436 | static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config) |
| 437 | { |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 438 | return stm32_pinctrl_config(dev_ofnode(config)); |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 439 | } |
| 440 | #else /* PINCTRL_FULL */ |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 441 | static int stm32_pinctrl_set_state_simple(struct udevice *dev, |
| 442 | struct udevice *periph) |
| 443 | { |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 444 | const fdt32_t *list; |
| 445 | uint32_t phandle; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 446 | ofnode config_node; |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 447 | int size, i, ret; |
| 448 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 449 | list = ofnode_get_property(dev_ofnode(periph), "pinctrl-0", &size); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 450 | if (!list) |
| 451 | return -EINVAL; |
| 452 | |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 453 | dev_dbg(dev, "periph->name = %s\n", periph->name); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 454 | |
| 455 | size /= sizeof(*list); |
| 456 | for (i = 0; i < size; i++) { |
| 457 | phandle = fdt32_to_cpu(*list++); |
| 458 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 459 | config_node = ofnode_get_by_phandle(phandle); |
| 460 | if (!ofnode_valid(config_node)) { |
Patrick Delaunay | 28b3e7b | 2020-11-06 19:01:32 +0100 | [diff] [blame] | 461 | dev_err(periph, |
| 462 | "prop pinctrl-0 index %d invalid phandle\n", i); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 463 | return -EINVAL; |
| 464 | } |
| 465 | |
| 466 | ret = stm32_pinctrl_config(config_node); |
| 467 | if (ret) |
| 468 | return ret; |
| 469 | } |
| 470 | |
| 471 | return 0; |
| 472 | } |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 473 | #endif /* PINCTRL_FULL */ |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 474 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 475 | static struct pinctrl_ops stm32_pinctrl_ops = { |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 476 | #if CONFIG_IS_ENABLED(PINCTRL_FULL) |
| 477 | .set_state = stm32_pinctrl_set_state, |
| 478 | #else /* PINCTRL_FULL */ |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 479 | .set_state_simple = stm32_pinctrl_set_state_simple, |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 480 | #endif /* PINCTRL_FULL */ |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 481 | #ifndef CONFIG_SPL_BUILD |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 482 | .get_pin_name = stm32_pinctrl_get_pin_name, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 483 | .get_pins_count = stm32_pinctrl_get_pins_count, |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 484 | .get_pin_muxing = stm32_pinctrl_get_pin_muxing, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 485 | #endif |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 486 | }; |
| 487 | |
| 488 | static const struct udevice_id stm32_pinctrl_ids[] = { |
Patrice Chotard | 98693c2 | 2017-12-12 09:49:35 +0100 | [diff] [blame] | 489 | { .compatible = "st,stm32f429-pinctrl" }, |
| 490 | { .compatible = "st,stm32f469-pinctrl" }, |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 491 | { .compatible = "st,stm32f746-pinctrl" }, |
Patrice Chotard | dd18df4 | 2018-12-11 14:49:18 +0100 | [diff] [blame] | 492 | { .compatible = "st,stm32f769-pinctrl" }, |
Patrice Chotard | 092e72c | 2017-09-13 18:00:04 +0200 | [diff] [blame] | 493 | { .compatible = "st,stm32h743-pinctrl" }, |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 494 | { .compatible = "st,stm32mp157-pinctrl" }, |
| 495 | { .compatible = "st,stm32mp157-z-pinctrl" }, |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 496 | { } |
| 497 | }; |
| 498 | |
| 499 | U_BOOT_DRIVER(pinctrl_stm32) = { |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 500 | .name = "pinctrl_stm32", |
| 501 | .id = UCLASS_PINCTRL, |
| 502 | .of_match = stm32_pinctrl_ids, |
| 503 | .ops = &stm32_pinctrl_ops, |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 504 | .bind = stm32_pinctrl_bind, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 505 | .probe = stm32_pinctrl_probe, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 506 | .priv_auto = sizeof(struct stm32_pinctrl_priv), |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 507 | }; |