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