blob: 7e66c30f859c8cc9a2d87307d8c16b7f8c27de3d [file] [log] [blame]
Samuel Hollandb799eab2021-08-12 20:09:43 -05001// SPDX-License-Identifier: GPL-2.0
2
3#include <clk.h>
4#include <dm.h>
5#include <dm/device-internal.h>
6#include <dm/lists.h>
7#include <dm/pinctrl.h>
8#include <errno.h>
9#include <malloc.h>
10
11#include <asm/gpio.h>
12
13extern U_BOOT_DRIVER(gpio_sunxi);
14
Samuel Holland29babfd2021-08-16 23:56:47 -050015/*
16 * This structure implements a simplified view of the possible pinmux settings:
17 * Each mux value is assumed to be the same for a given function, across the
18 * pins in each group (almost universally true, with same rare exceptions not
19 * relevant to U-Boot), but also across different ports (not true in many
20 * cases). We ignore the first problem, and work around the latter by just
21 * supporting one particular port for a each function. This works fine for all
22 * board configurations so far. If this would need to be revisited, we could
23 * add a "u8 port;" below and match that, with 0 encoding the "don't care" case.
24 */
25struct sunxi_pinctrl_function {
26 const char name[sizeof("gpio_out")];
27 u8 mux;
28};
29
Samuel Hollandb799eab2021-08-12 20:09:43 -050030struct sunxi_pinctrl_desc {
Samuel Holland29babfd2021-08-16 23:56:47 -050031 const struct sunxi_pinctrl_function *functions;
32 u8 num_functions;
Samuel Hollandb799eab2021-08-12 20:09:43 -050033 u8 first_bank;
34 u8 num_banks;
35};
36
37struct sunxi_pinctrl_plat {
38 struct sunxi_gpio __iomem *base;
39};
40
Samuel Holland29babfd2021-08-16 23:56:47 -050041static int sunxi_pinctrl_get_pins_count(struct udevice *dev)
42{
43 const struct sunxi_pinctrl_desc *desc = dev_get_priv(dev);
44
45 return desc->num_banks * SUNXI_GPIOS_PER_BANK;
46}
47
48static const char *sunxi_pinctrl_get_pin_name(struct udevice *dev,
49 uint pin_selector)
50{
51 const struct sunxi_pinctrl_desc *desc = dev_get_priv(dev);
52 static char pin_name[sizeof("PN31")];
53
54 snprintf(pin_name, sizeof(pin_name), "P%c%d",
55 pin_selector / SUNXI_GPIOS_PER_BANK + desc->first_bank + 'A',
56 pin_selector % SUNXI_GPIOS_PER_BANK);
57
58 return pin_name;
59}
60
61static int sunxi_pinctrl_get_functions_count(struct udevice *dev)
62{
63 const struct sunxi_pinctrl_desc *desc = dev_get_priv(dev);
64
65 return desc->num_functions;
66}
67
68static const char *sunxi_pinctrl_get_function_name(struct udevice *dev,
69 uint func_selector)
70{
71 const struct sunxi_pinctrl_desc *desc = dev_get_priv(dev);
72
73 return desc->functions[func_selector].name;
74}
75
76static int sunxi_pinctrl_pinmux_set(struct udevice *dev, uint pin_selector,
77 uint func_selector)
78{
79 const struct sunxi_pinctrl_desc *desc = dev_get_priv(dev);
80 struct sunxi_pinctrl_plat *plat = dev_get_plat(dev);
81 int bank = pin_selector / SUNXI_GPIOS_PER_BANK;
82 int pin = pin_selector % SUNXI_GPIOS_PER_BANK;
83
84 debug("set mux: %-4s => %s (%d)\n",
85 sunxi_pinctrl_get_pin_name(dev, pin_selector),
86 sunxi_pinctrl_get_function_name(dev, func_selector),
87 desc->functions[func_selector].mux);
88
89 sunxi_gpio_set_cfgbank(plat->base + bank, pin,
90 desc->functions[func_selector].mux);
91
92 return 0;
93}
94
Samuel Holland50c195e2021-08-28 21:10:47 -050095static const struct pinconf_param sunxi_pinctrl_pinconf_params[] = {
96 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
97 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 2 },
98 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
99 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 10 },
100};
101
102static int sunxi_pinctrl_pinconf_set_pull(struct sunxi_pinctrl_plat *plat,
103 uint bank, uint pin, uint bias)
104{
105 struct sunxi_gpio *regs = &plat->base[bank];
106
107 sunxi_gpio_set_pull_bank(regs, pin, bias);
108
109 return 0;
110}
111
112static int sunxi_pinctrl_pinconf_set_drive(struct sunxi_pinctrl_plat *plat,
113 uint bank, uint pin, uint drive)
114{
115 struct sunxi_gpio *regs = &plat->base[bank];
116
117 if (drive < 10 || drive > 40)
118 return -EINVAL;
119
120 /* Convert mA to the register value, rounding down. */
121 sunxi_gpio_set_drv_bank(regs, pin, drive / 10 - 1);
122
123 return 0;
124}
125
126static int sunxi_pinctrl_pinconf_set(struct udevice *dev, uint pin_selector,
127 uint param, uint val)
128{
129 struct sunxi_pinctrl_plat *plat = dev_get_plat(dev);
130 int bank = pin_selector / SUNXI_GPIOS_PER_BANK;
131 int pin = pin_selector % SUNXI_GPIOS_PER_BANK;
132
133 switch (param) {
134 case PIN_CONFIG_BIAS_DISABLE:
135 case PIN_CONFIG_BIAS_PULL_DOWN:
136 case PIN_CONFIG_BIAS_PULL_UP:
137 return sunxi_pinctrl_pinconf_set_pull(plat, bank, pin, val);
138 case PIN_CONFIG_DRIVE_STRENGTH:
139 return sunxi_pinctrl_pinconf_set_drive(plat, bank, pin, val);
140 }
141
142 return -EINVAL;
143}
144
Samuel Hollandd4b38822021-08-17 00:52:00 -0500145static int sunxi_pinctrl_get_pin_muxing(struct udevice *dev, uint pin_selector,
146 char *buf, int size)
147{
148 struct sunxi_pinctrl_plat *plat = dev_get_plat(dev);
149 int bank = pin_selector / SUNXI_GPIOS_PER_BANK;
150 int pin = pin_selector % SUNXI_GPIOS_PER_BANK;
151 int mux = sunxi_gpio_get_cfgbank(plat->base + bank, pin);
152
153 switch (mux) {
154 case SUNXI_GPIO_INPUT:
155 strlcpy(buf, "gpio input", size);
156 break;
157 case SUNXI_GPIO_OUTPUT:
158 strlcpy(buf, "gpio output", size);
159 break;
160 case SUNXI_GPIO_DISABLE:
161 strlcpy(buf, "disabled", size);
162 break;
163 default:
164 snprintf(buf, size, "function %d", mux);
165 break;
166 }
167
168 return 0;
169}
170
Samuel Hollandb799eab2021-08-12 20:09:43 -0500171static const struct pinctrl_ops sunxi_pinctrl_ops = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500172 .get_pins_count = sunxi_pinctrl_get_pins_count,
173 .get_pin_name = sunxi_pinctrl_get_pin_name,
174 .get_functions_count = sunxi_pinctrl_get_functions_count,
175 .get_function_name = sunxi_pinctrl_get_function_name,
176 .pinmux_set = sunxi_pinctrl_pinmux_set,
Samuel Holland50c195e2021-08-28 21:10:47 -0500177 .pinconf_num_params = ARRAY_SIZE(sunxi_pinctrl_pinconf_params),
178 .pinconf_params = sunxi_pinctrl_pinconf_params,
179 .pinconf_set = sunxi_pinctrl_pinconf_set,
Samuel Hollandb799eab2021-08-12 20:09:43 -0500180 .set_state = pinctrl_generic_set_state,
Samuel Hollandd4b38822021-08-17 00:52:00 -0500181 .get_pin_muxing = sunxi_pinctrl_get_pin_muxing,
Samuel Hollandb799eab2021-08-12 20:09:43 -0500182};
183
184static int sunxi_pinctrl_bind(struct udevice *dev)
185{
186 struct sunxi_pinctrl_plat *plat = dev_get_plat(dev);
187 struct sunxi_pinctrl_desc *desc;
188 struct sunxi_gpio_plat *gpio_plat;
189 struct udevice *gpio_dev;
190 int i, ret;
191
192 desc = (void *)dev_get_driver_data(dev);
193 if (!desc)
194 return -EINVAL;
195 dev_set_priv(dev, desc);
196
197 plat->base = dev_read_addr_ptr(dev);
198
199 ret = device_bind_driver_to_node(dev, "gpio_sunxi", dev->name,
200 dev_ofnode(dev), &gpio_dev);
201 if (ret)
202 return ret;
203
204 for (i = 0; i < desc->num_banks; ++i) {
205 gpio_plat = malloc(sizeof(*gpio_plat));
206 if (!gpio_plat)
207 return -ENOMEM;
208
209 gpio_plat->regs = plat->base + i;
210 gpio_plat->bank_name[0] = 'P';
211 gpio_plat->bank_name[1] = 'A' + desc->first_bank + i;
212 gpio_plat->bank_name[2] = '\0';
213
214 ret = device_bind(gpio_dev, DM_DRIVER_REF(gpio_sunxi),
215 gpio_plat->bank_name, gpio_plat,
216 ofnode_null(), NULL);
217 if (ret)
218 return ret;
219 }
220
221 return 0;
222}
223
224static int sunxi_pinctrl_probe(struct udevice *dev)
225{
226 struct clk *apb_clk;
227
228 apb_clk = devm_clk_get(dev, "apb");
229 if (!IS_ERR(apb_clk))
230 clk_enable(apb_clk);
231
232 return 0;
233}
234
Samuel Holland29babfd2021-08-16 23:56:47 -0500235static const struct sunxi_pinctrl_function suniv_f1c100s_pinctrl_functions[] = {
236 { "gpio_in", 0 },
237 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500238 { "i2c0", 3 }, /* PE11-PE12 */
239 { "i2c1", 3 }, /* PD5-PD6 */
Samuel Holland7570c542021-08-28 16:51:03 -0500240 { "mmc0", 2 }, /* PF0-PF5 */
241 { "mmc1", 3 }, /* PC0-PC2 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500242#if IS_ENABLED(CONFIG_UART0_PORT_F)
243 { "uart0", 3 }, /* PF2-PF4 */
244#else
245 { "uart0", 5 }, /* PE0-PE1 */
246#endif
Samuel Holland29babfd2021-08-16 23:56:47 -0500247};
248
Samuel Hollandb799eab2021-08-12 20:09:43 -0500249static const struct sunxi_pinctrl_desc __maybe_unused suniv_f1c100s_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500250 .functions = suniv_f1c100s_pinctrl_functions,
251 .num_functions = ARRAY_SIZE(suniv_f1c100s_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500252 .first_bank = SUNXI_GPIO_A,
253 .num_banks = 6,
254};
255
Samuel Holland29babfd2021-08-16 23:56:47 -0500256static const struct sunxi_pinctrl_function sun4i_a10_pinctrl_functions[] = {
Samuel Hollandfcdbbd62021-08-28 13:21:36 -0500257 { "emac", 2 }, /* PA0-PA17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500258 { "gpio_in", 0 },
259 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500260 { "i2c0", 2 }, /* PB0-PB1 */
261 { "i2c1", 2 }, /* PB18-PB19 */
Samuel Holland7570c542021-08-28 16:51:03 -0500262 { "mmc0", 2 }, /* PF0-PF5 */
263#if IS_ENABLED(CONFIG_MMC1_PINS_PH)
264 { "mmc1", 5 }, /* PH22-PH27 */
265#else
266 { "mmc1", 4 }, /* PG0-PG5 */
267#endif
268 { "mmc2", 3 }, /* PC6-PC15 */
269 { "mmc3", 2 }, /* PI4-PI9 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500270#if IS_ENABLED(CONFIG_UART0_PORT_F)
271 { "uart0", 4 }, /* PF2-PF4 */
272#else
273 { "uart0", 2 }, /* PB22-PB23 */
274#endif
Samuel Holland29babfd2021-08-16 23:56:47 -0500275};
276
Samuel Hollandb799eab2021-08-12 20:09:43 -0500277static const struct sunxi_pinctrl_desc __maybe_unused sun4i_a10_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500278 .functions = sun4i_a10_pinctrl_functions,
279 .num_functions = ARRAY_SIZE(sun4i_a10_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500280 .first_bank = SUNXI_GPIO_A,
281 .num_banks = 9,
282};
283
Samuel Holland29babfd2021-08-16 23:56:47 -0500284static const struct sunxi_pinctrl_function sun5i_a13_pinctrl_functions[] = {
Samuel Hollandfcdbbd62021-08-28 13:21:36 -0500285 { "emac", 2 }, /* PA0-PA17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500286 { "gpio_in", 0 },
287 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500288 { "i2c0", 2 }, /* PB0-PB1 */
289 { "i2c1", 2 }, /* PB15-PB16 */
Samuel Holland7570c542021-08-28 16:51:03 -0500290 { "mmc0", 2 }, /* PF0-PF5 */
291 { "mmc1", 2 }, /* PG3-PG8 */
292 { "mmc2", 3 }, /* PC6-PC15 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500293#if IS_ENABLED(CONFIG_UART0_PORT_F)
294 { "uart0", 4 }, /* PF2-PF4 */
295#else
296 { "uart0", 2 }, /* PB19-PB20 */
297#endif
298 { "uart1", 4 }, /* PG3-PG4 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500299};
300
Samuel Hollandb799eab2021-08-12 20:09:43 -0500301static const struct sunxi_pinctrl_desc __maybe_unused sun5i_a13_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500302 .functions = sun5i_a13_pinctrl_functions,
303 .num_functions = ARRAY_SIZE(sun5i_a13_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500304 .first_bank = SUNXI_GPIO_A,
305 .num_banks = 7,
306};
307
Samuel Holland29babfd2021-08-16 23:56:47 -0500308static const struct sunxi_pinctrl_function sun6i_a31_pinctrl_functions[] = {
Samuel Holland7a936442021-08-28 13:13:52 -0500309 { "gmac", 2 }, /* PA0-PA27 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500310 { "gpio_in", 0 },
311 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500312 { "i2c0", 2 }, /* PH14-PH15 */
313 { "i2c1", 2 }, /* PH16-PH17 */
Samuel Holland7570c542021-08-28 16:51:03 -0500314 { "mmc0", 2 }, /* PF0-PF5 */
315 { "mmc1", 2 }, /* PG0-PG5 */
316 { "mmc2", 3 }, /* PC6-PC15, PC24 */
317 { "mmc3", 4 }, /* PC6-PC15, PC24 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500318#if IS_ENABLED(CONFIG_UART0_PORT_F)
319 { "uart0", 3 }, /* PF2-PF4 */
320#else
321 { "uart0", 2 }, /* PH20-PH21 */
322#endif
Samuel Holland29babfd2021-08-16 23:56:47 -0500323};
324
Samuel Hollandb799eab2021-08-12 20:09:43 -0500325static const struct sunxi_pinctrl_desc __maybe_unused sun6i_a31_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500326 .functions = sun6i_a31_pinctrl_functions,
327 .num_functions = ARRAY_SIZE(sun6i_a31_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500328 .first_bank = SUNXI_GPIO_A,
329 .num_banks = 8,
330};
331
Samuel Holland29babfd2021-08-16 23:56:47 -0500332static const struct sunxi_pinctrl_function sun6i_a31_r_pinctrl_functions[] = {
333 { "gpio_in", 0 },
334 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500335 { "s_i2c", 2 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500336 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500337};
338
Samuel Hollandb799eab2021-08-12 20:09:43 -0500339static const struct sunxi_pinctrl_desc __maybe_unused sun6i_a31_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500340 .functions = sun6i_a31_r_pinctrl_functions,
341 .num_functions = ARRAY_SIZE(sun6i_a31_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500342 .first_bank = SUNXI_GPIO_L,
343 .num_banks = 2,
344};
345
Samuel Holland29babfd2021-08-16 23:56:47 -0500346static const struct sunxi_pinctrl_function sun7i_a20_pinctrl_functions[] = {
Samuel Hollandfcdbbd62021-08-28 13:21:36 -0500347 { "emac", 2 }, /* PA0-PA17 */
Samuel Holland7a936442021-08-28 13:13:52 -0500348 { "gmac", 5 }, /* PA0-PA17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500349 { "gpio_in", 0 },
350 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500351 { "i2c0", 2 }, /* PB0-PB1 */
352 { "i2c1", 2 }, /* PB18-PB19 */
Samuel Holland7570c542021-08-28 16:51:03 -0500353 { "mmc0", 2 }, /* PF0-PF5 */
354#if IS_ENABLED(CONFIG_MMC1_PINS_PH)
355 { "mmc1", 5 }, /* PH22-PH27 */
356#else
357 { "mmc1", 4 }, /* PG0-PG5 */
358#endif
359 { "mmc2", 3 }, /* PC5-PC15, PC24 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500360#if IS_ENABLED(CONFIG_UART0_PORT_F)
361 { "uart0", 4 }, /* PF2-PF4 */
362#else
363 { "uart0", 2 }, /* PB22-PB23 */
364#endif
Samuel Holland29babfd2021-08-16 23:56:47 -0500365};
366
Samuel Hollandb799eab2021-08-12 20:09:43 -0500367static const struct sunxi_pinctrl_desc __maybe_unused sun7i_a20_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500368 .functions = sun7i_a20_pinctrl_functions,
369 .num_functions = ARRAY_SIZE(sun7i_a20_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500370 .first_bank = SUNXI_GPIO_A,
371 .num_banks = 9,
372};
373
Samuel Holland29babfd2021-08-16 23:56:47 -0500374static const struct sunxi_pinctrl_function sun8i_a23_pinctrl_functions[] = {
375 { "gpio_in", 0 },
376 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500377 { "i2c0", 2 }, /* PH2-PH3 */
378 { "i2c1", 2 }, /* PH4-PH5 */
Samuel Holland7570c542021-08-28 16:51:03 -0500379 { "mmc0", 2 }, /* PF0-PF5 */
380 { "mmc1", 2 }, /* PG0-PG5 */
381 { "mmc2", 3 }, /* PC5-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500382#if IS_ENABLED(CONFIG_UART0_PORT_F)
383 { "uart0", 3 }, /* PF2-PF4 */
384#endif
385 { "uart1", 2 }, /* PG6-PG7 */
386 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500387};
388
Samuel Hollandb799eab2021-08-12 20:09:43 -0500389static const struct sunxi_pinctrl_desc __maybe_unused sun8i_a23_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500390 .functions = sun8i_a23_pinctrl_functions,
391 .num_functions = ARRAY_SIZE(sun8i_a23_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500392 .first_bank = SUNXI_GPIO_A,
393 .num_banks = 8,
394};
395
Samuel Holland29babfd2021-08-16 23:56:47 -0500396static const struct sunxi_pinctrl_function sun8i_a23_r_pinctrl_functions[] = {
397 { "gpio_in", 0 },
398 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500399 { "s_i2c", 3 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500400 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500401};
402
Samuel Hollandb799eab2021-08-12 20:09:43 -0500403static const struct sunxi_pinctrl_desc __maybe_unused sun8i_a23_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500404 .functions = sun8i_a23_r_pinctrl_functions,
405 .num_functions = ARRAY_SIZE(sun8i_a23_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500406 .first_bank = SUNXI_GPIO_L,
407 .num_banks = 1,
408};
409
Samuel Holland29babfd2021-08-16 23:56:47 -0500410static const struct sunxi_pinctrl_function sun8i_a33_pinctrl_functions[] = {
411 { "gpio_in", 0 },
412 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500413 { "i2c0", 2 }, /* PH2-PH3 */
414 { "i2c1", 2 }, /* PH4-PH5 */
Samuel Holland7570c542021-08-28 16:51:03 -0500415 { "mmc0", 2 }, /* PF0-PF5 */
416 { "mmc1", 2 }, /* PG0-PG5 */
417 { "mmc2", 3 }, /* PC5-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500418#if IS_ENABLED(CONFIG_UART0_PORT_F)
419 { "uart0", 3 }, /* PF2-PF4 */
420#else
421 { "uart0", 3 }, /* PB0-PB1 */
422#endif
423 { "uart1", 2 }, /* PG6-PG7 */
424 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500425};
426
Samuel Hollandb799eab2021-08-12 20:09:43 -0500427static const struct sunxi_pinctrl_desc __maybe_unused sun8i_a33_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500428 .functions = sun8i_a33_pinctrl_functions,
429 .num_functions = ARRAY_SIZE(sun8i_a33_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500430 .first_bank = SUNXI_GPIO_A,
431 .num_banks = 8,
432};
433
Samuel Holland29babfd2021-08-16 23:56:47 -0500434static const struct sunxi_pinctrl_function sun8i_a83t_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500435 { "gmac", 4 }, /* PD2-PD23 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500436 { "gpio_in", 0 },
437 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500438 { "i2c0", 2 }, /* PH0-PH1 */
439 { "i2c1", 2 }, /* PH2-PH3 */
Samuel Holland7570c542021-08-28 16:51:03 -0500440 { "mmc0", 2 }, /* PF0-PF5 */
441 { "mmc1", 2 }, /* PG0-PG5 */
442 { "mmc2", 3 }, /* PC5-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500443#if IS_ENABLED(CONFIG_UART0_PORT_F)
444 { "uart0", 3 }, /* PF2-PF4 */
445#else
446 { "uart0", 2 }, /* PB9-PB10 */
447#endif
448 { "uart1", 2 }, /* PG6-PG7 */
449 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500450};
451
Samuel Hollandb799eab2021-08-12 20:09:43 -0500452static const struct sunxi_pinctrl_desc __maybe_unused sun8i_a83t_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500453 .functions = sun8i_a83t_pinctrl_functions,
454 .num_functions = ARRAY_SIZE(sun8i_a83t_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500455 .first_bank = SUNXI_GPIO_A,
456 .num_banks = 8,
457};
458
Samuel Holland29babfd2021-08-16 23:56:47 -0500459static const struct sunxi_pinctrl_function sun8i_a83t_r_pinctrl_functions[] = {
460 { "gpio_in", 0 },
461 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500462 { "s_i2c", 2 }, /* PL8-PL9 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500463 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500464};
465
Samuel Hollandb799eab2021-08-12 20:09:43 -0500466static const struct sunxi_pinctrl_desc __maybe_unused sun8i_a83t_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500467 .functions = sun8i_a83t_r_pinctrl_functions,
468 .num_functions = ARRAY_SIZE(sun8i_a83t_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500469 .first_bank = SUNXI_GPIO_L,
470 .num_banks = 1,
471};
472
Samuel Holland29babfd2021-08-16 23:56:47 -0500473static const struct sunxi_pinctrl_function sun8i_h3_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500474 { "emac", 2 }, /* PD0-PD17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500475 { "gpio_in", 0 },
476 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500477 { "i2c0", 2 }, /* PA11-PA12 */
478 { "i2c1", 3 }, /* PA18-PA19 */
Samuel Holland7570c542021-08-28 16:51:03 -0500479 { "mmc0", 2 }, /* PF0-PF5 */
480 { "mmc1", 2 }, /* PG0-PG5 */
481 { "mmc2", 3 }, /* PC5-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500482#if IS_ENABLED(CONFIG_UART0_PORT_F)
483 { "uart0", 3 }, /* PF2-PF4 */
484#else
485 { "uart0", 2 }, /* PA4-PA5 */
486#endif
487 { "uart1", 2 }, /* PG6-PG7 */
488 { "uart2", 2 }, /* PA0-PA1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500489};
490
Samuel Hollandb799eab2021-08-12 20:09:43 -0500491static const struct sunxi_pinctrl_desc __maybe_unused sun8i_h3_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500492 .functions = sun8i_h3_pinctrl_functions,
493 .num_functions = ARRAY_SIZE(sun8i_h3_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500494 .first_bank = SUNXI_GPIO_A,
495 .num_banks = 7,
496};
497
Samuel Holland29babfd2021-08-16 23:56:47 -0500498static const struct sunxi_pinctrl_function sun8i_h3_r_pinctrl_functions[] = {
499 { "gpio_in", 0 },
500 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500501 { "s_i2c", 2 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500502 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500503};
504
Samuel Hollandb799eab2021-08-12 20:09:43 -0500505static const struct sunxi_pinctrl_desc __maybe_unused sun8i_h3_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500506 .functions = sun8i_h3_r_pinctrl_functions,
507 .num_functions = ARRAY_SIZE(sun8i_h3_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500508 .first_bank = SUNXI_GPIO_L,
509 .num_banks = 1,
510};
511
Samuel Holland29babfd2021-08-16 23:56:47 -0500512static const struct sunxi_pinctrl_function sun8i_v3s_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500513 { "emac", 4 }, /* PD0-PD17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500514 { "gpio_in", 0 },
515 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500516 { "i2c0", 2 }, /* PB6-PB7 */
517 { "i2c1", 2 }, /* PB8-PB9 */
Samuel Holland7570c542021-08-28 16:51:03 -0500518 { "mmc0", 2 }, /* PF0-PF5 */
519 { "mmc1", 2 }, /* PG0-PG5 */
520 { "mmc2", 2 }, /* PC0-PC10 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500521#if IS_ENABLED(CONFIG_UART0_PORT_F)
522 { "uart0", 3 }, /* PF2-PF4 */
523#else
524 { "uart0", 3 }, /* PB8-PB9 */
525#endif
526 { "uart1", 2 }, /* PG6-PG7 */
527 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500528};
529
Samuel Hollandb799eab2021-08-12 20:09:43 -0500530static const struct sunxi_pinctrl_desc __maybe_unused sun8i_v3s_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500531 .functions = sun8i_v3s_pinctrl_functions,
532 .num_functions = ARRAY_SIZE(sun8i_v3s_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500533 .first_bank = SUNXI_GPIO_A,
534 .num_banks = 7,
535};
536
Samuel Holland29babfd2021-08-16 23:56:47 -0500537static const struct sunxi_pinctrl_function sun9i_a80_pinctrl_functions[] = {
Samuel Holland7a936442021-08-28 13:13:52 -0500538 { "gmac", 2 }, /* PA0-PA17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500539 { "gpio_in", 0 },
540 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500541 { "i2c0", 2 }, /* PH0-PH1 */
542 { "i2c1", 2 }, /* PH2-PH3 */
Samuel Holland7570c542021-08-28 16:51:03 -0500543 { "mmc0", 2 }, /* PF0-PF5 */
544 { "mmc1", 2 }, /* PG0-PG5 */
545 { "mmc2", 3 }, /* PC6-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500546#if IS_ENABLED(CONFIG_UART0_PORT_F)
547 { "uart0", 4 }, /* PF2-PF4 */
548#else
549 { "uart0", 2 }, /* PH12-PH13 */
550#endif
Samuel Holland29babfd2021-08-16 23:56:47 -0500551};
552
Samuel Hollandb799eab2021-08-12 20:09:43 -0500553static const struct sunxi_pinctrl_desc __maybe_unused sun9i_a80_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500554 .functions = sun9i_a80_pinctrl_functions,
555 .num_functions = ARRAY_SIZE(sun9i_a80_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500556 .first_bank = SUNXI_GPIO_A,
557 .num_banks = 8,
558};
559
Samuel Holland29babfd2021-08-16 23:56:47 -0500560static const struct sunxi_pinctrl_function sun9i_a80_r_pinctrl_functions[] = {
561 { "gpio_in", 0 },
562 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500563 { "s_i2c0", 2 }, /* PN0-PN1 */
564 { "s_i2c1", 3 }, /* PM8-PM9 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500565 { "s_uart", 3 }, /* PL0-PL1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500566};
567
Samuel Hollandb799eab2021-08-12 20:09:43 -0500568static const struct sunxi_pinctrl_desc __maybe_unused sun9i_a80_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500569 .functions = sun9i_a80_r_pinctrl_functions,
570 .num_functions = ARRAY_SIZE(sun9i_a80_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500571 .first_bank = SUNXI_GPIO_L,
572 .num_banks = 3,
573};
574
Samuel Holland29babfd2021-08-16 23:56:47 -0500575static const struct sunxi_pinctrl_function sun50i_a64_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500576 { "emac", 4 }, /* PD8-PD23 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500577 { "gpio_in", 0 },
578 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500579 { "i2c0", 2 }, /* PH0-PH1 */
580 { "i2c1", 2 }, /* PH2-PH3 */
Samuel Holland7570c542021-08-28 16:51:03 -0500581 { "mmc0", 2 }, /* PF0-PF5 */
582 { "mmc1", 2 }, /* PG0-PG5 */
583 { "mmc2", 3 }, /* PC1-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500584#if IS_ENABLED(CONFIG_UART0_PORT_F)
585 { "uart0", 3 }, /* PF2-PF4 */
586#else
587 { "uart0", 4 }, /* PB8-PB9 */
588#endif
589 { "uart1", 2 }, /* PG6-PG7 */
590 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500591};
592
Samuel Hollandb799eab2021-08-12 20:09:43 -0500593static const struct sunxi_pinctrl_desc __maybe_unused sun50i_a64_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500594 .functions = sun50i_a64_pinctrl_functions,
595 .num_functions = ARRAY_SIZE(sun50i_a64_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500596 .first_bank = SUNXI_GPIO_A,
597 .num_banks = 8,
598};
599
Samuel Holland29babfd2021-08-16 23:56:47 -0500600static const struct sunxi_pinctrl_function sun50i_a64_r_pinctrl_functions[] = {
601 { "gpio_in", 0 },
602 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500603 { "s_i2c", 2 }, /* PL8-PL9 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500604 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500605};
606
Samuel Hollandb799eab2021-08-12 20:09:43 -0500607static const struct sunxi_pinctrl_desc __maybe_unused sun50i_a64_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500608 .functions = sun50i_a64_r_pinctrl_functions,
609 .num_functions = ARRAY_SIZE(sun50i_a64_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500610 .first_bank = SUNXI_GPIO_L,
611 .num_banks = 1,
612};
613
Samuel Holland29babfd2021-08-16 23:56:47 -0500614static const struct sunxi_pinctrl_function sun50i_h5_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500615 { "emac", 2 }, /* PD0-PD17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500616 { "gpio_in", 0 },
617 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500618 { "i2c0", 2 }, /* PA11-PA12 */
619 { "i2c1", 3 }, /* PA18-PA19 */
Samuel Holland7570c542021-08-28 16:51:03 -0500620 { "mmc0", 2 }, /* PF0-PF5 */
621 { "mmc1", 2 }, /* PG0-PG5 */
622 { "mmc2", 3 }, /* PC1-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500623#if IS_ENABLED(CONFIG_UART0_PORT_F)
624 { "uart0", 3 }, /* PF2-PF4 */
625#else
626 { "uart0", 2 }, /* PA4-PA5 */
627#endif
628 { "uart1", 2 }, /* PG6-PG7 */
629 { "uart2", 2 }, /* PA0-PA1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500630};
631
Samuel Hollandb799eab2021-08-12 20:09:43 -0500632static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h5_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500633 .functions = sun50i_h5_pinctrl_functions,
634 .num_functions = ARRAY_SIZE(sun50i_h5_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500635 .first_bank = SUNXI_GPIO_A,
636 .num_banks = 7,
637};
638
Samuel Holland29babfd2021-08-16 23:56:47 -0500639static const struct sunxi_pinctrl_function sun50i_h6_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500640 { "emac", 5 }, /* PD0-PD20 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500641 { "gpio_in", 0 },
642 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500643 { "i2c0", 2 }, /* PD25-PD26 */
644 { "i2c1", 4 }, /* PH5-PH6 */
Samuel Holland7570c542021-08-28 16:51:03 -0500645 { "mmc0", 2 }, /* PF0-PF5 */
646 { "mmc1", 2 }, /* PG0-PG5 */
647 { "mmc2", 3 }, /* PC1-PC14 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500648#if IS_ENABLED(CONFIG_UART0_PORT_F)
649 { "uart0", 3 }, /* PF2-PF4 */
650#else
651 { "uart0", 2 }, /* PH0-PH1 */
652#endif
653 { "uart1", 2 }, /* PG6-PG7 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500654};
655
Samuel Hollandb799eab2021-08-12 20:09:43 -0500656static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h6_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500657 .functions = sun50i_h6_pinctrl_functions,
658 .num_functions = ARRAY_SIZE(sun50i_h6_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500659 .first_bank = SUNXI_GPIO_A,
660 .num_banks = 8,
661};
662
Samuel Holland29babfd2021-08-16 23:56:47 -0500663static const struct sunxi_pinctrl_function sun50i_h6_r_pinctrl_functions[] = {
664 { "gpio_in", 0 },
665 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500666 { "s_i2c", 3 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500667 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500668};
669
Samuel Hollandb799eab2021-08-12 20:09:43 -0500670static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h6_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500671 .functions = sun50i_h6_r_pinctrl_functions,
672 .num_functions = ARRAY_SIZE(sun50i_h6_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500673 .first_bank = SUNXI_GPIO_L,
674 .num_banks = 2,
675};
676
Samuel Holland29babfd2021-08-16 23:56:47 -0500677static const struct sunxi_pinctrl_function sun50i_h616_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500678 { "emac0", 2 }, /* PI0-PI16 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500679 { "gpio_in", 0 },
680 { "gpio_out", 1 },
Samuel Holland7570c542021-08-28 16:51:03 -0500681 { "mmc0", 2 }, /* PF0-PF5 */
682 { "mmc1", 2 }, /* PG0-PG5 */
683 { "mmc2", 3 }, /* PC0-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500684#if IS_ENABLED(CONFIG_UART0_PORT_F)
685 { "uart0", 3 }, /* PF2-PF4 */
686#else
687 { "uart0", 2 }, /* PH0-PH1 */
688#endif
689 { "uart1", 2 }, /* PG6-PG7 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500690};
691
Samuel Hollandb799eab2021-08-12 20:09:43 -0500692static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h616_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500693 .functions = sun50i_h616_pinctrl_functions,
694 .num_functions = ARRAY_SIZE(sun50i_h616_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500695 .first_bank = SUNXI_GPIO_A,
696 .num_banks = 9,
697};
698
Samuel Holland29babfd2021-08-16 23:56:47 -0500699static const struct sunxi_pinctrl_function sun50i_h616_r_pinctrl_functions[] = {
700 { "gpio_in", 0 },
701 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500702 { "s_i2c", 3 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500703 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500704};
705
Samuel Hollandb799eab2021-08-12 20:09:43 -0500706static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h616_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500707 .functions = sun50i_h616_r_pinctrl_functions,
708 .num_functions = ARRAY_SIZE(sun50i_h616_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500709 .first_bank = SUNXI_GPIO_L,
710 .num_banks = 1,
711};
712
713static const struct udevice_id sunxi_pinctrl_ids[] = {
714#ifdef CONFIG_PINCTRL_SUNIV_F1C100S
715 {
716 .compatible = "allwinner,suniv-f1c100s-pinctrl",
717 .data = (ulong)&suniv_f1c100s_pinctrl_desc,
718 },
719#endif
720#ifdef CONFIG_PINCTRL_SUN4I_A10
721 {
722 .compatible = "allwinner,sun4i-a10-pinctrl",
723 .data = (ulong)&sun4i_a10_pinctrl_desc,
724 },
725#endif
726#ifdef CONFIG_PINCTRL_SUN5I_A13
727 {
728 .compatible = "allwinner,sun5i-a10s-pinctrl",
729 .data = (ulong)&sun5i_a13_pinctrl_desc,
730 },
731 {
732 .compatible = "allwinner,sun5i-a13-pinctrl",
733 .data = (ulong)&sun5i_a13_pinctrl_desc,
734 },
735#endif
736#ifdef CONFIG_PINCTRL_SUN6I_A31
737 {
738 .compatible = "allwinner,sun6i-a31-pinctrl",
739 .data = (ulong)&sun6i_a31_pinctrl_desc,
740 },
741 {
742 .compatible = "allwinner,sun6i-a31s-pinctrl",
743 .data = (ulong)&sun6i_a31_pinctrl_desc,
744 },
745#endif
746#ifdef CONFIG_PINCTRL_SUN6I_A31_R
747 {
748 .compatible = "allwinner,sun6i-a31-r-pinctrl",
749 .data = (ulong)&sun6i_a31_r_pinctrl_desc,
750 },
751#endif
752#ifdef CONFIG_PINCTRL_SUN7I_A20
753 {
754 .compatible = "allwinner,sun7i-a20-pinctrl",
755 .data = (ulong)&sun7i_a20_pinctrl_desc,
756 },
757#endif
758#ifdef CONFIG_PINCTRL_SUN8I_A23
759 {
760 .compatible = "allwinner,sun8i-a23-pinctrl",
761 .data = (ulong)&sun8i_a23_pinctrl_desc,
762 },
763#endif
764#ifdef CONFIG_PINCTRL_SUN8I_A23_R
765 {
766 .compatible = "allwinner,sun8i-a23-r-pinctrl",
767 .data = (ulong)&sun8i_a23_r_pinctrl_desc,
768 },
769#endif
770#ifdef CONFIG_PINCTRL_SUN8I_A33
771 {
772 .compatible = "allwinner,sun8i-a33-pinctrl",
773 .data = (ulong)&sun8i_a33_pinctrl_desc,
774 },
775#endif
776#ifdef CONFIG_PINCTRL_SUN8I_A83T
777 {
778 .compatible = "allwinner,sun8i-a83t-pinctrl",
779 .data = (ulong)&sun8i_a83t_pinctrl_desc,
780 },
781#endif
782#ifdef CONFIG_PINCTRL_SUN8I_A83T_R
783 {
784 .compatible = "allwinner,sun8i-a83t-r-pinctrl",
785 .data = (ulong)&sun8i_a83t_r_pinctrl_desc,
786 },
787#endif
788#ifdef CONFIG_PINCTRL_SUN8I_H3
789 {
790 .compatible = "allwinner,sun8i-h3-pinctrl",
791 .data = (ulong)&sun8i_h3_pinctrl_desc,
792 },
793#endif
794#ifdef CONFIG_PINCTRL_SUN8I_H3_R
795 {
796 .compatible = "allwinner,sun8i-h3-r-pinctrl",
797 .data = (ulong)&sun8i_h3_r_pinctrl_desc,
798 },
799#endif
800#ifdef CONFIG_PINCTRL_SUN7I_A20
801 {
802 .compatible = "allwinner,sun8i-r40-pinctrl",
803 .data = (ulong)&sun7i_a20_pinctrl_desc,
804 },
805#endif
806#ifdef CONFIG_PINCTRL_SUN8I_V3S
807 {
808 .compatible = "allwinner,sun8i-v3-pinctrl",
809 .data = (ulong)&sun8i_v3s_pinctrl_desc,
810 },
811 {
812 .compatible = "allwinner,sun8i-v3s-pinctrl",
813 .data = (ulong)&sun8i_v3s_pinctrl_desc,
814 },
815#endif
816#ifdef CONFIG_PINCTRL_SUN9I_A80
817 {
818 .compatible = "allwinner,sun9i-a80-pinctrl",
819 .data = (ulong)&sun9i_a80_pinctrl_desc,
820 },
821#endif
822#ifdef CONFIG_PINCTRL_SUN9I_A80_R
823 {
824 .compatible = "allwinner,sun9i-a80-r-pinctrl",
825 .data = (ulong)&sun9i_a80_r_pinctrl_desc,
826 },
827#endif
828#ifdef CONFIG_PINCTRL_SUN50I_A64
829 {
830 .compatible = "allwinner,sun50i-a64-pinctrl",
831 .data = (ulong)&sun50i_a64_pinctrl_desc,
832 },
833#endif
834#ifdef CONFIG_PINCTRL_SUN50I_A64_R
835 {
836 .compatible = "allwinner,sun50i-a64-r-pinctrl",
837 .data = (ulong)&sun50i_a64_r_pinctrl_desc,
838 },
839#endif
840#ifdef CONFIG_PINCTRL_SUN50I_H5
841 {
842 .compatible = "allwinner,sun50i-h5-pinctrl",
843 .data = (ulong)&sun50i_h5_pinctrl_desc,
844 },
845#endif
846#ifdef CONFIG_PINCTRL_SUN50I_H6
847 {
848 .compatible = "allwinner,sun50i-h6-pinctrl",
849 .data = (ulong)&sun50i_h6_pinctrl_desc,
850 },
851#endif
852#ifdef CONFIG_PINCTRL_SUN50I_H6_R
853 {
854 .compatible = "allwinner,sun50i-h6-r-pinctrl",
855 .data = (ulong)&sun50i_h6_r_pinctrl_desc,
856 },
857#endif
858#ifdef CONFIG_PINCTRL_SUN50I_H616
859 {
860 .compatible = "allwinner,sun50i-h616-pinctrl",
861 .data = (ulong)&sun50i_h616_pinctrl_desc,
862 },
863#endif
864#ifdef CONFIG_PINCTRL_SUN50I_H616_R
865 {
866 .compatible = "allwinner,sun50i-h616-r-pinctrl",
867 .data = (ulong)&sun50i_h616_r_pinctrl_desc,
868 },
869#endif
870 {}
871};
872
873U_BOOT_DRIVER(sunxi_pinctrl) = {
874 .name = "sunxi-pinctrl",
875 .id = UCLASS_PINCTRL,
876 .of_match = sunxi_pinctrl_ids,
877 .bind = sunxi_pinctrl_bind,
878 .probe = sunxi_pinctrl_probe,
879 .plat_auto = sizeof(struct sunxi_pinctrl_plat),
880 .ops = &sunxi_pinctrl_ops,
881};