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 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 6 | #include <common.h> |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 7 | #include <dm.h> |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 8 | #include <hwspinlock.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 11 | #include <asm/arch/gpio.h> |
| 12 | #include <asm/gpio.h> |
| 13 | #include <asm/io.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 14 | #include <dm/device_compat.h> |
Patrice Chotard | 7385826 | 2019-07-30 19:16:10 +0200 | [diff] [blame] | 15 | #include <dm/lists.h> |
| 16 | #include <dm/pinctrl.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 17 | #include <linux/bitops.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 18 | #include <linux/err.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 19 | #include <linux/libfdt.h> |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 20 | |
Vikas Manocha | 58fb3c8 | 2017-04-10 15:03:04 -0700 | [diff] [blame] | 21 | #define MAX_PINS_ONE_IP 70 |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 22 | #define MODE_BITS_MASK 3 |
| 23 | #define OSPEED_MASK 3 |
| 24 | #define PUPD_MASK 3 |
| 25 | #define OTYPE_MSK 1 |
| 26 | #define AFR_MASK 0xF |
| 27 | |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 28 | struct stm32_pinctrl_priv { |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 29 | struct hwspinlock hws; |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 30 | int pinctrl_ngpios; |
| 31 | struct list_head gpio_dev; |
| 32 | }; |
| 33 | |
| 34 | struct stm32_gpio_bank { |
| 35 | struct udevice *gpio_dev; |
| 36 | struct list_head list; |
| 37 | }; |
| 38 | |
Benjamin Gaignard | 075b018 | 2018-11-27 13:49:53 +0100 | [diff] [blame] | 39 | #ifndef CONFIG_SPL_BUILD |
| 40 | |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 41 | static char pin_name[PINNAME_SIZE]; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 42 | #define PINMUX_MODE_COUNT 5 |
| 43 | static const char * const pinmux_mode[PINMUX_MODE_COUNT] = { |
| 44 | "gpio input", |
| 45 | "gpio output", |
| 46 | "analog", |
| 47 | "unknown", |
| 48 | "alt function", |
| 49 | }; |
| 50 | |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 51 | static const char * const pinmux_bias[] = { |
| 52 | [STM32_GPIO_PUPD_NO] = "", |
| 53 | [STM32_GPIO_PUPD_UP] = "pull-up", |
| 54 | [STM32_GPIO_PUPD_DOWN] = "pull-down", |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | static const char * const pinmux_input[] = { |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 58 | [STM32_GPIO_OTYPE_PP] = "push-pull", |
| 59 | [STM32_GPIO_OTYPE_OD] = "open-drain", |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 60 | }; |
| 61 | |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 62 | static int stm32_pinctrl_get_af(struct udevice *dev, unsigned int offset) |
| 63 | { |
| 64 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 65 | struct stm32_gpio_regs *regs = priv->regs; |
| 66 | u32 af; |
| 67 | u32 alt_shift = (offset % 8) * 4; |
| 68 | u32 alt_index = offset / 8; |
| 69 | |
| 70 | af = (readl(®s->afr[alt_index]) & |
| 71 | GENMASK(alt_shift + 3, alt_shift)) >> alt_shift; |
| 72 | |
| 73 | return af; |
| 74 | } |
| 75 | |
Patrice Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 76 | static int stm32_populate_gpio_dev_list(struct udevice *dev) |
| 77 | { |
| 78 | struct stm32_pinctrl_priv *priv = dev_get_priv(dev); |
| 79 | struct udevice *gpio_dev; |
| 80 | struct udevice *child; |
| 81 | struct stm32_gpio_bank *gpio_bank; |
| 82 | int ret; |
| 83 | |
| 84 | /* |
| 85 | * parse pin-controller sub-nodes (ie gpio bank nodes) and fill |
| 86 | * a list with all gpio device reference which belongs to the |
| 87 | * current pin-controller. This list is used to find pin_name and |
| 88 | * pin muxing |
| 89 | */ |
| 90 | list_for_each_entry(child, &dev->child_head, sibling_node) { |
| 91 | ret = uclass_get_device_by_name(UCLASS_GPIO, child->name, |
| 92 | &gpio_dev); |
| 93 | if (ret < 0) |
| 94 | continue; |
| 95 | |
| 96 | gpio_bank = malloc(sizeof(*gpio_bank)); |
| 97 | if (!gpio_bank) { |
| 98 | dev_err(dev, "Not enough memory\n"); |
| 99 | return -ENOMEM; |
| 100 | } |
| 101 | |
| 102 | gpio_bank->gpio_dev = gpio_dev; |
| 103 | list_add_tail(&gpio_bank->list, &priv->gpio_dev); |
| 104 | } |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 109 | static int stm32_pinctrl_get_pins_count(struct udevice *dev) |
| 110 | { |
| 111 | struct stm32_pinctrl_priv *priv = dev_get_priv(dev); |
| 112 | struct gpio_dev_priv *uc_priv; |
| 113 | struct stm32_gpio_bank *gpio_bank; |
| 114 | |
| 115 | /* |
| 116 | * if get_pins_count has already been executed once on this |
| 117 | * pin-controller, no need to run it again |
| 118 | */ |
| 119 | if (priv->pinctrl_ngpios) |
| 120 | return priv->pinctrl_ngpios; |
| 121 | |
Patrice Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 122 | if (list_empty(&priv->gpio_dev)) |
| 123 | stm32_populate_gpio_dev_list(dev); |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 124 | /* |
| 125 | * walk through all banks to retrieve the pin-controller |
| 126 | * pins number |
| 127 | */ |
| 128 | list_for_each_entry(gpio_bank, &priv->gpio_dev, list) { |
| 129 | uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev); |
| 130 | |
| 131 | priv->pinctrl_ngpios += uc_priv->gpio_count; |
| 132 | } |
| 133 | |
| 134 | return priv->pinctrl_ngpios; |
| 135 | } |
| 136 | |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 137 | static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev, |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 138 | unsigned int selector, |
| 139 | unsigned int *idx) |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 140 | { |
| 141 | struct stm32_pinctrl_priv *priv = dev_get_priv(dev); |
| 142 | struct stm32_gpio_bank *gpio_bank; |
| 143 | struct gpio_dev_priv *uc_priv; |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 144 | int pin_count = 0; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 145 | |
Patrice Chotard | 0435504 | 2018-12-03 10:52:50 +0100 | [diff] [blame] | 146 | if (list_empty(&priv->gpio_dev)) |
| 147 | stm32_populate_gpio_dev_list(dev); |
| 148 | |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 149 | /* look up for the bank which owns the requested pin */ |
| 150 | list_for_each_entry(gpio_bank, &priv->gpio_dev, list) { |
| 151 | uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev); |
| 152 | |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 153 | if (selector < (pin_count + uc_priv->gpio_count)) { |
| 154 | /* |
| 155 | * we found the bank, convert pin selector to |
| 156 | * gpio bank index |
| 157 | */ |
| 158 | *idx = stm32_offset_to_index(gpio_bank->gpio_dev, |
| 159 | selector - pin_count); |
Patrick Delaunay | 91ca91e | 2019-06-21 15:26:52 +0200 | [diff] [blame] | 160 | if (IS_ERR_VALUE(*idx)) |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 161 | return NULL; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 162 | |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 163 | return gpio_bank->gpio_dev; |
| 164 | } |
| 165 | pin_count += uc_priv->gpio_count; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | return NULL; |
| 169 | } |
| 170 | |
| 171 | static const char *stm32_pinctrl_get_pin_name(struct udevice *dev, |
| 172 | unsigned int selector) |
| 173 | { |
| 174 | struct gpio_dev_priv *uc_priv; |
| 175 | struct udevice *gpio_dev; |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 176 | unsigned int gpio_idx; |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 177 | |
| 178 | /* look up for the bank which owns the requested pin */ |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 179 | gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx); |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 180 | if (!gpio_dev) { |
| 181 | snprintf(pin_name, PINNAME_SIZE, "Error"); |
| 182 | } else { |
| 183 | uc_priv = dev_get_uclass_priv(gpio_dev); |
| 184 | |
| 185 | snprintf(pin_name, PINNAME_SIZE, "%s%d", |
| 186 | uc_priv->bank_name, |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 187 | gpio_idx); |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | return pin_name; |
| 191 | } |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 192 | |
| 193 | static int stm32_pinctrl_get_pin_muxing(struct udevice *dev, |
| 194 | unsigned int selector, |
| 195 | char *buf, |
| 196 | int size) |
| 197 | { |
| 198 | struct udevice *gpio_dev; |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 199 | struct stm32_gpio_priv *priv; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 200 | const char *label; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 201 | int mode; |
| 202 | int af_num; |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 203 | unsigned int gpio_idx; |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 204 | u32 pupd, otype; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 205 | |
| 206 | /* look up for the bank which owns the requested pin */ |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 207 | gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx); |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 208 | |
| 209 | if (!gpio_dev) |
| 210 | return -ENODEV; |
| 211 | |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 212 | mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label); |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 213 | dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n", |
| 214 | selector, gpio_idx, mode); |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 215 | priv = dev_get_priv(gpio_dev); |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 216 | pupd = (readl(&priv->regs->pupdr) >> (gpio_idx * 2)) & PUPD_MASK; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 217 | |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 218 | |
| 219 | switch (mode) { |
| 220 | case GPIOF_UNKNOWN: |
| 221 | /* should never happen */ |
| 222 | return -EINVAL; |
| 223 | case GPIOF_UNUSED: |
| 224 | snprintf(buf, size, "%s", pinmux_mode[mode]); |
| 225 | break; |
| 226 | case GPIOF_FUNC: |
Patrice Chotard | 530b63c | 2018-12-03 10:52:54 +0100 | [diff] [blame] | 227 | af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx); |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 228 | snprintf(buf, size, "%s %d %s", pinmux_mode[mode], af_num, |
| 229 | pinmux_bias[pupd]); |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 230 | break; |
| 231 | case GPIOF_OUTPUT: |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 232 | snprintf(buf, size, "%s %s %s", |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 233 | pinmux_mode[mode], pinmux_bias[pupd], |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 234 | label ? label : ""); |
| 235 | break; |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 236 | case GPIOF_INPUT: |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 237 | otype = (readl(&priv->regs->otyper) >> gpio_idx) & OTYPE_MSK; |
Patrick Delaunay | b305dbc | 2020-10-28 10:49:07 +0100 | [diff] [blame] | 238 | snprintf(buf, size, "%s %s %s %s", |
Patrick Delaunay | da7a0bb | 2020-06-04 14:30:33 +0200 | [diff] [blame] | 239 | pinmux_mode[mode], pinmux_input[otype], |
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) |
| 259 | debug("%s: hwspinlock_get_by_index may have failed (%d)\n", |
| 260 | __func__, ret); |
| 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; |
| 308 | debug("%s: GPIO:port= %d, pin= %d\n", __func__, gpio_dsc->port, |
| 309 | gpio_dsc->pin); |
| 310 | |
| 311 | return 0; |
| 312 | } |
| 313 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 314 | static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn, |
| 315 | ofnode node) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 316 | { |
| 317 | gpio_fn &= 0x00FF; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 318 | gpio_ctl->af = 0; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 319 | |
| 320 | switch (gpio_fn) { |
| 321 | case 0: |
| 322 | gpio_ctl->mode = STM32_GPIO_MODE_IN; |
| 323 | break; |
| 324 | case 1 ... 16: |
| 325 | gpio_ctl->mode = STM32_GPIO_MODE_AF; |
| 326 | gpio_ctl->af = gpio_fn - 1; |
| 327 | break; |
| 328 | case 17: |
| 329 | gpio_ctl->mode = STM32_GPIO_MODE_AN; |
| 330 | break; |
| 331 | default: |
| 332 | gpio_ctl->mode = STM32_GPIO_MODE_OUT; |
| 333 | break; |
| 334 | } |
| 335 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 336 | gpio_ctl->speed = ofnode_read_u32_default(node, "slew-rate", 0); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 337 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 338 | if (ofnode_read_bool(node, "drive-open-drain")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 339 | gpio_ctl->otype = STM32_GPIO_OTYPE_OD; |
| 340 | else |
| 341 | gpio_ctl->otype = STM32_GPIO_OTYPE_PP; |
| 342 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 343 | if (ofnode_read_bool(node, "bias-pull-up")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 344 | gpio_ctl->pupd = STM32_GPIO_PUPD_UP; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 345 | else if (ofnode_read_bool(node, "bias-pull-down")) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 346 | gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN; |
| 347 | else |
| 348 | gpio_ctl->pupd = STM32_GPIO_PUPD_NO; |
| 349 | |
| 350 | debug("%s: gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n", |
| 351 | __func__, gpio_fn, gpio_ctl->speed, gpio_ctl->otype, |
| 352 | gpio_ctl->pupd); |
| 353 | |
| 354 | return 0; |
| 355 | } |
| 356 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 357 | static int stm32_pinctrl_config(ofnode node) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 358 | { |
Vikas Manocha | 58fb3c8 | 2017-04-10 15:03:04 -0700 | [diff] [blame] | 359 | u32 pin_mux[MAX_PINS_ONE_IP]; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 360 | int rv, len; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 361 | ofnode subnode; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 362 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 363 | /* |
| 364 | * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for |
| 365 | * usart1) of pin controller phandle "pinctrl-0" |
| 366 | * */ |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 367 | ofnode_for_each_subnode(subnode, node) { |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 368 | struct stm32_gpio_dsc gpio_dsc; |
| 369 | struct stm32_gpio_ctl gpio_ctl; |
| 370 | int i; |
| 371 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 372 | rv = ofnode_read_size(subnode, "pinmux"); |
| 373 | if (rv < 0) |
| 374 | return rv; |
| 375 | len = rv / sizeof(pin_mux[0]); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 376 | debug("%s: no of pinmux entries= %d\n", __func__, len); |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 377 | if (len > MAX_PINS_ONE_IP) |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 378 | return -EINVAL; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 379 | rv = ofnode_read_u32_array(subnode, "pinmux", pin_mux, len); |
| 380 | if (rv < 0) |
| 381 | return rv; |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 382 | for (i = 0; i < len; i++) { |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 383 | struct gpio_desc desc; |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 384 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 385 | debug("%s: pinmux = %x\n", __func__, *(pin_mux + i)); |
| 386 | prep_gpio_dsc(&gpio_dsc, *(pin_mux + i)); |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 387 | prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), subnode); |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 388 | rv = uclass_get_device_by_seq(UCLASS_GPIO, |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 389 | gpio_dsc.port, |
| 390 | &desc.dev); |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 391 | if (rv) |
| 392 | return rv; |
| 393 | desc.offset = gpio_dsc.pin; |
| 394 | rv = stm32_gpio_config(&desc, &gpio_ctl); |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 395 | debug("%s: rv = %d\n\n", __func__, rv); |
| 396 | if (rv) |
| 397 | return rv; |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | return 0; |
| 402 | } |
| 403 | |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 404 | static int stm32_pinctrl_bind(struct udevice *dev) |
| 405 | { |
| 406 | ofnode node; |
| 407 | const char *name; |
| 408 | int ret; |
| 409 | |
| 410 | dev_for_each_subnode(node, dev) { |
| 411 | debug("%s: bind %s\n", __func__, ofnode_get_name(node)); |
| 412 | |
| 413 | ofnode_get_property(node, "gpio-controller", &ret); |
| 414 | if (ret < 0) |
| 415 | continue; |
| 416 | /* Get the name of each gpio node */ |
| 417 | name = ofnode_get_name(node); |
| 418 | if (!name) |
| 419 | return -EINVAL; |
| 420 | |
| 421 | /* Bind each gpio node */ |
| 422 | ret = device_bind_driver_to_node(dev, "gpio_stm32", |
| 423 | name, node, NULL); |
| 424 | if (ret) |
| 425 | return ret; |
| 426 | |
| 427 | debug("%s: bind %s\n", __func__, name); |
| 428 | } |
| 429 | |
| 430 | return 0; |
| 431 | } |
| 432 | |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 433 | #if CONFIG_IS_ENABLED(PINCTRL_FULL) |
| 434 | static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config) |
| 435 | { |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 436 | return stm32_pinctrl_config(dev_ofnode(config)); |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 437 | } |
| 438 | #else /* PINCTRL_FULL */ |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 439 | static int stm32_pinctrl_set_state_simple(struct udevice *dev, |
| 440 | struct udevice *periph) |
| 441 | { |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 442 | const fdt32_t *list; |
| 443 | uint32_t phandle; |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 444 | ofnode config_node; |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 445 | int size, i, ret; |
| 446 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 447 | list = ofnode_get_property(dev_ofnode(periph), "pinctrl-0", &size); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 448 | if (!list) |
| 449 | return -EINVAL; |
| 450 | |
| 451 | debug("%s: periph->name = %s\n", __func__, periph->name); |
| 452 | |
| 453 | size /= sizeof(*list); |
| 454 | for (i = 0; i < size; i++) { |
| 455 | phandle = fdt32_to_cpu(*list++); |
| 456 | |
Patrick Delaunay | d3bfad2 | 2020-09-09 17:50:14 +0200 | [diff] [blame] | 457 | config_node = ofnode_get_by_phandle(phandle); |
| 458 | if (!ofnode_valid(config_node)) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 459 | pr_err("prop pinctrl-0 index %d invalid phandle\n", i); |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 460 | return -EINVAL; |
| 461 | } |
| 462 | |
| 463 | ret = stm32_pinctrl_config(config_node); |
| 464 | if (ret) |
| 465 | return ret; |
| 466 | } |
| 467 | |
| 468 | return 0; |
| 469 | } |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 470 | #endif /* PINCTRL_FULL */ |
Christophe Kerello | ad0376e | 2017-06-20 17:04:18 +0200 | [diff] [blame] | 471 | |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 472 | static struct pinctrl_ops stm32_pinctrl_ops = { |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 473 | #if CONFIG_IS_ENABLED(PINCTRL_FULL) |
| 474 | .set_state = stm32_pinctrl_set_state, |
| 475 | #else /* PINCTRL_FULL */ |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 476 | .set_state_simple = stm32_pinctrl_set_state_simple, |
Christophe Kerello | bb44b96 | 2017-06-20 17:04:19 +0200 | [diff] [blame] | 477 | #endif /* PINCTRL_FULL */ |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 478 | #ifndef CONFIG_SPL_BUILD |
Patrice Chotard | 4ff1c20 | 2018-10-24 14:10:19 +0200 | [diff] [blame] | 479 | .get_pin_name = stm32_pinctrl_get_pin_name, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 480 | .get_pins_count = stm32_pinctrl_get_pins_count, |
Patrice Chotard | b42d938 | 2018-10-24 14:10:20 +0200 | [diff] [blame] | 481 | .get_pin_muxing = stm32_pinctrl_get_pin_muxing, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 482 | #endif |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 483 | }; |
| 484 | |
| 485 | static const struct udevice_id stm32_pinctrl_ids[] = { |
Patrice Chotard | 98693c2 | 2017-12-12 09:49:35 +0100 | [diff] [blame] | 486 | { .compatible = "st,stm32f429-pinctrl" }, |
| 487 | { .compatible = "st,stm32f469-pinctrl" }, |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 488 | { .compatible = "st,stm32f746-pinctrl" }, |
Patrice Chotard | dd18df4 | 2018-12-11 14:49:18 +0100 | [diff] [blame] | 489 | { .compatible = "st,stm32f769-pinctrl" }, |
Patrice Chotard | 092e72c | 2017-09-13 18:00:04 +0200 | [diff] [blame] | 490 | { .compatible = "st,stm32h743-pinctrl" }, |
Patrick Delaunay | 8aeba62 | 2018-03-12 10:46:13 +0100 | [diff] [blame] | 491 | { .compatible = "st,stm32mp157-pinctrl" }, |
| 492 | { .compatible = "st,stm32mp157-z-pinctrl" }, |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 493 | { } |
| 494 | }; |
| 495 | |
| 496 | U_BOOT_DRIVER(pinctrl_stm32) = { |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 497 | .name = "pinctrl_stm32", |
| 498 | .id = UCLASS_PINCTRL, |
| 499 | .of_match = stm32_pinctrl_ids, |
| 500 | .ops = &stm32_pinctrl_ops, |
Patrice Chotard | 158abbf | 2019-06-21 15:39:23 +0200 | [diff] [blame] | 501 | .bind = stm32_pinctrl_bind, |
Patrice Chotard | 8f651ca | 2018-10-24 14:10:18 +0200 | [diff] [blame] | 502 | .probe = stm32_pinctrl_probe, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 503 | .priv_auto = sizeof(struct stm32_pinctrl_priv), |
Vikas Manocha | 94d5308 | 2017-02-12 10:25:49 -0800 | [diff] [blame] | 504 | }; |