Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 2 | /* |
Patrice Chotard | 3bc599c | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
| 4 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Patrick Delaunay | 6dd89d9 | 2020-11-06 19:01:33 +0100 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_GPIO |
| 8 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <clk.h> |
| 11 | #include <dm.h> |
| 12 | #include <fdtdec.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 14 | #include <asm/arch/gpio.h> |
| 15 | #include <asm/arch/stm32.h> |
| 16 | #include <asm/gpio.h> |
| 17 | #include <asm/io.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 18 | #include <dm/device_compat.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 19 | #include <linux/bitops.h> |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <linux/io.h> |
| 22 | |
Patrick Delaunay | 6af78d0 | 2020-10-02 14:08:54 +0200 | [diff] [blame] | 23 | #define STM32_GPIOS_PER_BANK 16 |
| 24 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 25 | #define MODE_BITS(gpio_pin) ((gpio_pin) * 2) |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 26 | #define MODE_BITS_MASK 3 |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 27 | #define BSRR_BIT(gpio_pin, value) BIT((gpio_pin) + (value ? 0 : 16)) |
| 28 | |
| 29 | #define PUPD_BITS(gpio_pin) ((gpio_pin) * 2) |
| 30 | #define PUPD_MASK 3 |
| 31 | |
| 32 | #define OTYPE_BITS(gpio_pin) (gpio_pin) |
| 33 | #define OTYPE_MSK 1 |
| 34 | |
| 35 | static void stm32_gpio_set_moder(struct stm32_gpio_regs *regs, |
| 36 | int idx, |
| 37 | int mode) |
| 38 | { |
| 39 | int bits_index; |
| 40 | int mask; |
| 41 | |
| 42 | bits_index = MODE_BITS(idx); |
| 43 | mask = MODE_BITS_MASK << bits_index; |
| 44 | |
| 45 | clrsetbits_le32(®s->moder, mask, mode << bits_index); |
| 46 | } |
| 47 | |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 48 | static int stm32_gpio_get_moder(struct stm32_gpio_regs *regs, int idx) |
| 49 | { |
| 50 | return (readl(®s->moder) >> MODE_BITS(idx)) & MODE_BITS_MASK; |
| 51 | } |
| 52 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 53 | static void stm32_gpio_set_otype(struct stm32_gpio_regs *regs, |
| 54 | int idx, |
| 55 | enum stm32_gpio_otype otype) |
| 56 | { |
| 57 | int bits; |
| 58 | |
| 59 | bits = OTYPE_BITS(idx); |
| 60 | clrsetbits_le32(®s->otyper, OTYPE_MSK << bits, otype << bits); |
| 61 | } |
| 62 | |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 63 | static enum stm32_gpio_otype stm32_gpio_get_otype(struct stm32_gpio_regs *regs, |
| 64 | int idx) |
| 65 | { |
| 66 | return (readl(®s->otyper) >> OTYPE_BITS(idx)) & OTYPE_MSK; |
| 67 | } |
| 68 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 69 | static void stm32_gpio_set_pupd(struct stm32_gpio_regs *regs, |
| 70 | int idx, |
| 71 | enum stm32_gpio_pupd pupd) |
| 72 | { |
| 73 | int bits; |
| 74 | |
| 75 | bits = PUPD_BITS(idx); |
| 76 | clrsetbits_le32(®s->pupdr, PUPD_MASK << bits, pupd << bits); |
| 77 | } |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 78 | |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 79 | static enum stm32_gpio_pupd stm32_gpio_get_pupd(struct stm32_gpio_regs *regs, |
| 80 | int idx) |
| 81 | { |
| 82 | return (readl(®s->pupdr) >> PUPD_BITS(idx)) & PUPD_MASK; |
| 83 | } |
| 84 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 85 | /* |
| 86 | * convert gpio offset to gpio index taking into account gpio holes |
| 87 | * into gpio bank |
| 88 | */ |
| 89 | int stm32_offset_to_index(struct udevice *dev, unsigned int offset) |
| 90 | { |
| 91 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
Patrick Delaunay | 99e14b2 | 2019-06-21 15:26:46 +0200 | [diff] [blame] | 92 | unsigned int idx = 0; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 93 | int i; |
| 94 | |
| 95 | for (i = 0; i < STM32_GPIOS_PER_BANK; i++) { |
| 96 | if (priv->gpio_range & BIT(i)) { |
| 97 | if (idx == offset) |
| 98 | return idx; |
| 99 | idx++; |
| 100 | } |
| 101 | } |
| 102 | /* shouldn't happen */ |
| 103 | return -EINVAL; |
| 104 | } |
| 105 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 106 | static int stm32_gpio_direction_input(struct udevice *dev, unsigned offset) |
| 107 | { |
| 108 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 109 | struct stm32_gpio_regs *regs = priv->regs; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 110 | int idx; |
| 111 | |
| 112 | idx = stm32_offset_to_index(dev, offset); |
| 113 | if (idx < 0) |
| 114 | return idx; |
| 115 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 116 | stm32_gpio_set_moder(regs, idx, STM32_GPIO_MODE_IN); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static int stm32_gpio_direction_output(struct udevice *dev, unsigned offset, |
| 122 | int value) |
| 123 | { |
| 124 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 125 | struct stm32_gpio_regs *regs = priv->regs; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 126 | int idx; |
| 127 | |
| 128 | idx = stm32_offset_to_index(dev, offset); |
| 129 | if (idx < 0) |
| 130 | return idx; |
| 131 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 132 | stm32_gpio_set_moder(regs, idx, STM32_GPIO_MODE_OUT); |
Patrice Chotard | 798cd70 | 2018-08-09 11:57:57 +0200 | [diff] [blame] | 133 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 134 | writel(BSRR_BIT(idx, value), ®s->bsrr); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 135 | |
| 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | static int stm32_gpio_get_value(struct udevice *dev, unsigned offset) |
| 140 | { |
| 141 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 142 | struct stm32_gpio_regs *regs = priv->regs; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 143 | int idx; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 144 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 145 | idx = stm32_offset_to_index(dev, offset); |
| 146 | if (idx < 0) |
| 147 | return idx; |
| 148 | |
| 149 | return readl(®s->idr) & BIT(idx) ? 1 : 0; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static int stm32_gpio_set_value(struct udevice *dev, unsigned offset, int value) |
| 153 | { |
| 154 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 155 | struct stm32_gpio_regs *regs = priv->regs; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 156 | int idx; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 157 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 158 | idx = stm32_offset_to_index(dev, offset); |
| 159 | if (idx < 0) |
| 160 | return idx; |
| 161 | |
| 162 | writel(BSRR_BIT(idx, value), ®s->bsrr); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 167 | static int stm32_gpio_get_function(struct udevice *dev, unsigned int offset) |
| 168 | { |
| 169 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 170 | struct stm32_gpio_regs *regs = priv->regs; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 171 | int bits_index; |
| 172 | int mask; |
| 173 | int idx; |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 174 | u32 mode; |
| 175 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 176 | idx = stm32_offset_to_index(dev, offset); |
| 177 | if (idx < 0) |
| 178 | return idx; |
| 179 | |
| 180 | bits_index = MODE_BITS(idx); |
| 181 | mask = MODE_BITS_MASK << bits_index; |
| 182 | |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 183 | mode = (readl(®s->moder) & mask) >> bits_index; |
| 184 | if (mode == STM32_GPIO_MODE_OUT) |
| 185 | return GPIOF_OUTPUT; |
| 186 | if (mode == STM32_GPIO_MODE_IN) |
| 187 | return GPIOF_INPUT; |
| 188 | if (mode == STM32_GPIO_MODE_AN) |
| 189 | return GPIOF_UNUSED; |
| 190 | |
| 191 | return GPIOF_FUNC; |
| 192 | } |
| 193 | |
Simon Glass | 13979fc | 2021-02-04 21:21:55 -0700 | [diff] [blame] | 194 | static int stm32_gpio_set_flags(struct udevice *dev, unsigned int offset, |
| 195 | ulong flags) |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 196 | { |
| 197 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 198 | struct stm32_gpio_regs *regs = priv->regs; |
| 199 | int idx; |
| 200 | |
| 201 | idx = stm32_offset_to_index(dev, offset); |
| 202 | if (idx < 0) |
| 203 | return idx; |
| 204 | |
| 205 | if (flags & GPIOD_IS_OUT) { |
Simon Glass | 7e0a96d | 2021-02-04 21:22:03 -0700 | [diff] [blame] | 206 | bool value = flags & GPIOD_IS_OUT_ACTIVE; |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 207 | |
| 208 | if (flags & GPIOD_OPEN_DRAIN) |
| 209 | stm32_gpio_set_otype(regs, idx, STM32_GPIO_OTYPE_OD); |
| 210 | else |
| 211 | stm32_gpio_set_otype(regs, idx, STM32_GPIO_OTYPE_PP); |
Simon Glass | 7e0a96d | 2021-02-04 21:22:03 -0700 | [diff] [blame] | 212 | |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 213 | stm32_gpio_set_moder(regs, idx, STM32_GPIO_MODE_OUT); |
| 214 | writel(BSRR_BIT(idx, value), ®s->bsrr); |
| 215 | |
| 216 | } else if (flags & GPIOD_IS_IN) { |
| 217 | stm32_gpio_set_moder(regs, idx, STM32_GPIO_MODE_IN); |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 218 | } |
Patrick Delaunay | 2c6df94 | 2020-10-28 10:49:08 +0100 | [diff] [blame] | 219 | if (flags & GPIOD_PULL_UP) |
| 220 | stm32_gpio_set_pupd(regs, idx, STM32_GPIO_PUPD_UP); |
| 221 | else if (flags & GPIOD_PULL_DOWN) |
| 222 | stm32_gpio_set_pupd(regs, idx, STM32_GPIO_PUPD_DOWN); |
Patrick Delaunay | f13ff88 | 2020-06-04 14:30:25 +0200 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
Simon Glass | 9648789 | 2021-02-04 21:21:56 -0700 | [diff] [blame] | 227 | static int stm32_gpio_get_flags(struct udevice *dev, unsigned int offset, |
| 228 | ulong *flagsp) |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 229 | { |
| 230 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
| 231 | struct stm32_gpio_regs *regs = priv->regs; |
| 232 | int idx; |
| 233 | ulong dir_flags = 0; |
| 234 | |
| 235 | idx = stm32_offset_to_index(dev, offset); |
| 236 | if (idx < 0) |
| 237 | return idx; |
| 238 | |
| 239 | switch (stm32_gpio_get_moder(regs, idx)) { |
| 240 | case STM32_GPIO_MODE_OUT: |
| 241 | dir_flags |= GPIOD_IS_OUT; |
| 242 | if (stm32_gpio_get_otype(regs, idx) == STM32_GPIO_OTYPE_OD) |
| 243 | dir_flags |= GPIOD_OPEN_DRAIN; |
| 244 | if (readl(®s->idr) & BIT(idx)) |
| 245 | dir_flags |= GPIOD_IS_OUT_ACTIVE; |
| 246 | break; |
| 247 | case STM32_GPIO_MODE_IN: |
| 248 | dir_flags |= GPIOD_IS_IN; |
Patrick Delaunay | 2c6df94 | 2020-10-28 10:49:08 +0100 | [diff] [blame] | 249 | break; |
| 250 | default: |
| 251 | break; |
| 252 | } |
| 253 | switch (stm32_gpio_get_pupd(regs, idx)) { |
| 254 | case STM32_GPIO_PUPD_UP: |
| 255 | dir_flags |= GPIOD_PULL_UP; |
| 256 | break; |
| 257 | case STM32_GPIO_PUPD_DOWN: |
| 258 | dir_flags |= GPIOD_PULL_DOWN; |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 259 | break; |
| 260 | default: |
| 261 | break; |
| 262 | } |
Simon Glass | 9648789 | 2021-02-04 21:21:56 -0700 | [diff] [blame] | 263 | *flagsp = dir_flags; |
Patrick Delaunay | 43efbb6 | 2020-06-04 14:30:26 +0200 | [diff] [blame] | 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 268 | static const struct dm_gpio_ops gpio_stm32_ops = { |
| 269 | .direction_input = stm32_gpio_direction_input, |
| 270 | .direction_output = stm32_gpio_direction_output, |
| 271 | .get_value = stm32_gpio_get_value, |
| 272 | .set_value = stm32_gpio_set_value, |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 273 | .get_function = stm32_gpio_get_function, |
Simon Glass | 13979fc | 2021-02-04 21:21:55 -0700 | [diff] [blame] | 274 | .set_flags = stm32_gpio_set_flags, |
Simon Glass | 9648789 | 2021-02-04 21:21:56 -0700 | [diff] [blame] | 275 | .get_flags = stm32_gpio_get_flags, |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 276 | }; |
| 277 | |
| 278 | static int gpio_stm32_probe(struct udevice *dev) |
| 279 | { |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 280 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
Patrick Delaunay | 15c8cbf | 2020-09-09 18:28:33 +0200 | [diff] [blame] | 281 | struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 282 | struct ofnode_phandle_args args; |
| 283 | const char *name; |
Patrice Chotard | 8b6d45a | 2018-12-03 10:52:53 +0100 | [diff] [blame] | 284 | struct clk clk; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 285 | fdt_addr_t addr; |
Patrick Delaunay | 15c8cbf | 2020-09-09 18:28:33 +0200 | [diff] [blame] | 286 | int ret, i; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 287 | |
Patrick Delaunay | d876eaf | 2018-03-12 10:46:07 +0100 | [diff] [blame] | 288 | addr = dev_read_addr(dev); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 289 | if (addr == FDT_ADDR_T_NONE) |
| 290 | return -EINVAL; |
| 291 | |
| 292 | priv->regs = (struct stm32_gpio_regs *)addr; |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 293 | |
Patrick Delaunay | d876eaf | 2018-03-12 10:46:07 +0100 | [diff] [blame] | 294 | name = dev_read_string(dev, "st,bank-name"); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 295 | if (!name) |
| 296 | return -EINVAL; |
| 297 | uc_priv->bank_name = name; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 298 | |
| 299 | i = 0; |
| 300 | ret = dev_read_phandle_with_args(dev, "gpio-ranges", |
| 301 | NULL, 3, i, &args); |
| 302 | |
Patrick Delaunay | cb08e84 | 2020-09-09 18:28:34 +0200 | [diff] [blame] | 303 | if (!ret && args.args_count < 3) |
| 304 | return -EINVAL; |
| 305 | |
Patrice Chotard | 39a8f0b | 2019-01-04 10:55:05 +0100 | [diff] [blame] | 306 | if (ret == -ENOENT) { |
| 307 | uc_priv->gpio_count = STM32_GPIOS_PER_BANK; |
| 308 | priv->gpio_range = GENMASK(STM32_GPIOS_PER_BANK - 1, 0); |
| 309 | } |
| 310 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 311 | while (ret != -ENOENT) { |
| 312 | priv->gpio_range |= GENMASK(args.args[2] + args.args[0] - 1, |
| 313 | args.args[0]); |
| 314 | |
| 315 | uc_priv->gpio_count += args.args[2]; |
| 316 | |
| 317 | ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3, |
| 318 | ++i, &args); |
Patrick Delaunay | cb08e84 | 2020-09-09 18:28:34 +0200 | [diff] [blame] | 319 | if (!ret && args.args_count < 3) |
| 320 | return -EINVAL; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | dev_dbg(dev, "addr = 0x%p bank_name = %s gpio_count = %d gpio_range = 0x%x\n", |
| 324 | (u32 *)priv->regs, uc_priv->bank_name, uc_priv->gpio_count, |
| 325 | priv->gpio_range); |
Patrick Delaunay | f17412e | 2020-04-22 14:29:17 +0200 | [diff] [blame] | 326 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 327 | ret = clk_get_by_index(dev, 0, &clk); |
| 328 | if (ret < 0) |
| 329 | return ret; |
| 330 | |
| 331 | ret = clk_enable(&clk); |
| 332 | |
| 333 | if (ret) { |
| 334 | dev_err(dev, "failed to enable clock\n"); |
| 335 | return ret; |
| 336 | } |
Patrick Delaunay | 6dd89d9 | 2020-11-06 19:01:33 +0100 | [diff] [blame] | 337 | dev_dbg(dev, "clock enabled\n"); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 338 | |
| 339 | return 0; |
| 340 | } |
| 341 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 342 | U_BOOT_DRIVER(gpio_stm32) = { |
| 343 | .name = "gpio_stm32", |
| 344 | .id = UCLASS_GPIO, |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 345 | .probe = gpio_stm32_probe, |
| 346 | .ops = &gpio_stm32_ops, |
Bin Meng | 695c499 | 2018-10-24 06:36:30 -0700 | [diff] [blame] | 347 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 348 | .priv_auto = sizeof(struct stm32_gpio_priv), |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 349 | }; |