blob: b8ca452e83a59b2a695a1ae87668012733b8fd3f [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 Hollandaa4823c2021-08-28 15:52:52 -0500584 { "pwm", 2 }, /* PD22 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500585#if IS_ENABLED(CONFIG_UART0_PORT_F)
586 { "uart0", 3 }, /* PF2-PF4 */
587#else
588 { "uart0", 4 }, /* PB8-PB9 */
589#endif
590 { "uart1", 2 }, /* PG6-PG7 */
591 { "uart2", 2 }, /* PB0-PB1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500592};
593
Samuel Hollandb799eab2021-08-12 20:09:43 -0500594static const struct sunxi_pinctrl_desc __maybe_unused sun50i_a64_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500595 .functions = sun50i_a64_pinctrl_functions,
596 .num_functions = ARRAY_SIZE(sun50i_a64_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500597 .first_bank = SUNXI_GPIO_A,
598 .num_banks = 8,
599};
600
Samuel Holland29babfd2021-08-16 23:56:47 -0500601static const struct sunxi_pinctrl_function sun50i_a64_r_pinctrl_functions[] = {
602 { "gpio_in", 0 },
603 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500604 { "s_i2c", 2 }, /* PL8-PL9 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500605 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500606};
607
Samuel Hollandb799eab2021-08-12 20:09:43 -0500608static const struct sunxi_pinctrl_desc __maybe_unused sun50i_a64_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500609 .functions = sun50i_a64_r_pinctrl_functions,
610 .num_functions = ARRAY_SIZE(sun50i_a64_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500611 .first_bank = SUNXI_GPIO_L,
612 .num_banks = 1,
613};
614
Samuel Holland29babfd2021-08-16 23:56:47 -0500615static const struct sunxi_pinctrl_function sun50i_h5_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500616 { "emac", 2 }, /* PD0-PD17 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500617 { "gpio_in", 0 },
618 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500619 { "i2c0", 2 }, /* PA11-PA12 */
620 { "i2c1", 3 }, /* PA18-PA19 */
Samuel Holland7570c542021-08-28 16:51:03 -0500621 { "mmc0", 2 }, /* PF0-PF5 */
622 { "mmc1", 2 }, /* PG0-PG5 */
623 { "mmc2", 3 }, /* PC1-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500624#if IS_ENABLED(CONFIG_UART0_PORT_F)
625 { "uart0", 3 }, /* PF2-PF4 */
626#else
627 { "uart0", 2 }, /* PA4-PA5 */
628#endif
629 { "uart1", 2 }, /* PG6-PG7 */
630 { "uart2", 2 }, /* PA0-PA1 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500631};
632
Samuel Hollandb799eab2021-08-12 20:09:43 -0500633static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h5_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500634 .functions = sun50i_h5_pinctrl_functions,
635 .num_functions = ARRAY_SIZE(sun50i_h5_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500636 .first_bank = SUNXI_GPIO_A,
637 .num_banks = 7,
638};
639
Samuel Holland29babfd2021-08-16 23:56:47 -0500640static const struct sunxi_pinctrl_function sun50i_h6_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500641 { "emac", 5 }, /* PD0-PD20 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500642 { "gpio_in", 0 },
643 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500644 { "i2c0", 2 }, /* PD25-PD26 */
645 { "i2c1", 4 }, /* PH5-PH6 */
Samuel Holland7570c542021-08-28 16:51:03 -0500646 { "mmc0", 2 }, /* PF0-PF5 */
647 { "mmc1", 2 }, /* PG0-PG5 */
648 { "mmc2", 3 }, /* PC1-PC14 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500649#if IS_ENABLED(CONFIG_UART0_PORT_F)
650 { "uart0", 3 }, /* PF2-PF4 */
651#else
652 { "uart0", 2 }, /* PH0-PH1 */
653#endif
654 { "uart1", 2 }, /* PG6-PG7 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500655};
656
Samuel Hollandb799eab2021-08-12 20:09:43 -0500657static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h6_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500658 .functions = sun50i_h6_pinctrl_functions,
659 .num_functions = ARRAY_SIZE(sun50i_h6_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500660 .first_bank = SUNXI_GPIO_A,
661 .num_banks = 8,
662};
663
Samuel Holland29babfd2021-08-16 23:56:47 -0500664static const struct sunxi_pinctrl_function sun50i_h6_r_pinctrl_functions[] = {
665 { "gpio_in", 0 },
666 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500667 { "s_i2c", 3 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500668 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500669};
670
Samuel Hollandb799eab2021-08-12 20:09:43 -0500671static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h6_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500672 .functions = sun50i_h6_r_pinctrl_functions,
673 .num_functions = ARRAY_SIZE(sun50i_h6_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500674 .first_bank = SUNXI_GPIO_L,
675 .num_banks = 2,
676};
677
Samuel Holland29babfd2021-08-16 23:56:47 -0500678static const struct sunxi_pinctrl_function sun50i_h616_pinctrl_functions[] = {
Samuel Holland37b3de42021-08-28 13:34:29 -0500679 { "emac0", 2 }, /* PI0-PI16 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500680 { "gpio_in", 0 },
681 { "gpio_out", 1 },
Samuel Holland7570c542021-08-28 16:51:03 -0500682 { "mmc0", 2 }, /* PF0-PF5 */
683 { "mmc1", 2 }, /* PG0-PG5 */
684 { "mmc2", 3 }, /* PC0-PC16 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500685#if IS_ENABLED(CONFIG_UART0_PORT_F)
686 { "uart0", 3 }, /* PF2-PF4 */
687#else
688 { "uart0", 2 }, /* PH0-PH1 */
689#endif
690 { "uart1", 2 }, /* PG6-PG7 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500691};
692
Samuel Hollandb799eab2021-08-12 20:09:43 -0500693static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h616_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500694 .functions = sun50i_h616_pinctrl_functions,
695 .num_functions = ARRAY_SIZE(sun50i_h616_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500696 .first_bank = SUNXI_GPIO_A,
697 .num_banks = 9,
698};
699
Samuel Holland29babfd2021-08-16 23:56:47 -0500700static const struct sunxi_pinctrl_function sun50i_h616_r_pinctrl_functions[] = {
701 { "gpio_in", 0 },
702 { "gpio_out", 1 },
Samuel Holland4c8f11d2021-08-28 15:17:32 -0500703 { "s_i2c", 3 }, /* PL0-PL1 */
Samuel Holland470a7bd2021-08-28 13:00:45 -0500704 { "s_uart", 2 }, /* PL2-PL3 */
Samuel Holland29babfd2021-08-16 23:56:47 -0500705};
706
Samuel Hollandb799eab2021-08-12 20:09:43 -0500707static const struct sunxi_pinctrl_desc __maybe_unused sun50i_h616_r_pinctrl_desc = {
Samuel Holland29babfd2021-08-16 23:56:47 -0500708 .functions = sun50i_h616_r_pinctrl_functions,
709 .num_functions = ARRAY_SIZE(sun50i_h616_r_pinctrl_functions),
Samuel Hollandb799eab2021-08-12 20:09:43 -0500710 .first_bank = SUNXI_GPIO_L,
711 .num_banks = 1,
712};
713
714static const struct udevice_id sunxi_pinctrl_ids[] = {
715#ifdef CONFIG_PINCTRL_SUNIV_F1C100S
716 {
717 .compatible = "allwinner,suniv-f1c100s-pinctrl",
718 .data = (ulong)&suniv_f1c100s_pinctrl_desc,
719 },
720#endif
721#ifdef CONFIG_PINCTRL_SUN4I_A10
722 {
723 .compatible = "allwinner,sun4i-a10-pinctrl",
724 .data = (ulong)&sun4i_a10_pinctrl_desc,
725 },
726#endif
727#ifdef CONFIG_PINCTRL_SUN5I_A13
728 {
729 .compatible = "allwinner,sun5i-a10s-pinctrl",
730 .data = (ulong)&sun5i_a13_pinctrl_desc,
731 },
732 {
733 .compatible = "allwinner,sun5i-a13-pinctrl",
734 .data = (ulong)&sun5i_a13_pinctrl_desc,
735 },
736#endif
737#ifdef CONFIG_PINCTRL_SUN6I_A31
738 {
739 .compatible = "allwinner,sun6i-a31-pinctrl",
740 .data = (ulong)&sun6i_a31_pinctrl_desc,
741 },
742 {
743 .compatible = "allwinner,sun6i-a31s-pinctrl",
744 .data = (ulong)&sun6i_a31_pinctrl_desc,
745 },
746#endif
747#ifdef CONFIG_PINCTRL_SUN6I_A31_R
748 {
749 .compatible = "allwinner,sun6i-a31-r-pinctrl",
750 .data = (ulong)&sun6i_a31_r_pinctrl_desc,
751 },
752#endif
753#ifdef CONFIG_PINCTRL_SUN7I_A20
754 {
755 .compatible = "allwinner,sun7i-a20-pinctrl",
756 .data = (ulong)&sun7i_a20_pinctrl_desc,
757 },
758#endif
759#ifdef CONFIG_PINCTRL_SUN8I_A23
760 {
761 .compatible = "allwinner,sun8i-a23-pinctrl",
762 .data = (ulong)&sun8i_a23_pinctrl_desc,
763 },
764#endif
765#ifdef CONFIG_PINCTRL_SUN8I_A23_R
766 {
767 .compatible = "allwinner,sun8i-a23-r-pinctrl",
768 .data = (ulong)&sun8i_a23_r_pinctrl_desc,
769 },
770#endif
771#ifdef CONFIG_PINCTRL_SUN8I_A33
772 {
773 .compatible = "allwinner,sun8i-a33-pinctrl",
774 .data = (ulong)&sun8i_a33_pinctrl_desc,
775 },
776#endif
777#ifdef CONFIG_PINCTRL_SUN8I_A83T
778 {
779 .compatible = "allwinner,sun8i-a83t-pinctrl",
780 .data = (ulong)&sun8i_a83t_pinctrl_desc,
781 },
782#endif
783#ifdef CONFIG_PINCTRL_SUN8I_A83T_R
784 {
785 .compatible = "allwinner,sun8i-a83t-r-pinctrl",
786 .data = (ulong)&sun8i_a83t_r_pinctrl_desc,
787 },
788#endif
789#ifdef CONFIG_PINCTRL_SUN8I_H3
790 {
791 .compatible = "allwinner,sun8i-h3-pinctrl",
792 .data = (ulong)&sun8i_h3_pinctrl_desc,
793 },
794#endif
795#ifdef CONFIG_PINCTRL_SUN8I_H3_R
796 {
797 .compatible = "allwinner,sun8i-h3-r-pinctrl",
798 .data = (ulong)&sun8i_h3_r_pinctrl_desc,
799 },
800#endif
801#ifdef CONFIG_PINCTRL_SUN7I_A20
802 {
803 .compatible = "allwinner,sun8i-r40-pinctrl",
804 .data = (ulong)&sun7i_a20_pinctrl_desc,
805 },
806#endif
807#ifdef CONFIG_PINCTRL_SUN8I_V3S
808 {
809 .compatible = "allwinner,sun8i-v3-pinctrl",
810 .data = (ulong)&sun8i_v3s_pinctrl_desc,
811 },
812 {
813 .compatible = "allwinner,sun8i-v3s-pinctrl",
814 .data = (ulong)&sun8i_v3s_pinctrl_desc,
815 },
816#endif
817#ifdef CONFIG_PINCTRL_SUN9I_A80
818 {
819 .compatible = "allwinner,sun9i-a80-pinctrl",
820 .data = (ulong)&sun9i_a80_pinctrl_desc,
821 },
822#endif
823#ifdef CONFIG_PINCTRL_SUN9I_A80_R
824 {
825 .compatible = "allwinner,sun9i-a80-r-pinctrl",
826 .data = (ulong)&sun9i_a80_r_pinctrl_desc,
827 },
828#endif
829#ifdef CONFIG_PINCTRL_SUN50I_A64
830 {
831 .compatible = "allwinner,sun50i-a64-pinctrl",
832 .data = (ulong)&sun50i_a64_pinctrl_desc,
833 },
834#endif
835#ifdef CONFIG_PINCTRL_SUN50I_A64_R
836 {
837 .compatible = "allwinner,sun50i-a64-r-pinctrl",
838 .data = (ulong)&sun50i_a64_r_pinctrl_desc,
839 },
840#endif
841#ifdef CONFIG_PINCTRL_SUN50I_H5
842 {
843 .compatible = "allwinner,sun50i-h5-pinctrl",
844 .data = (ulong)&sun50i_h5_pinctrl_desc,
845 },
846#endif
847#ifdef CONFIG_PINCTRL_SUN50I_H6
848 {
849 .compatible = "allwinner,sun50i-h6-pinctrl",
850 .data = (ulong)&sun50i_h6_pinctrl_desc,
851 },
852#endif
853#ifdef CONFIG_PINCTRL_SUN50I_H6_R
854 {
855 .compatible = "allwinner,sun50i-h6-r-pinctrl",
856 .data = (ulong)&sun50i_h6_r_pinctrl_desc,
857 },
858#endif
859#ifdef CONFIG_PINCTRL_SUN50I_H616
860 {
861 .compatible = "allwinner,sun50i-h616-pinctrl",
862 .data = (ulong)&sun50i_h616_pinctrl_desc,
863 },
864#endif
865#ifdef CONFIG_PINCTRL_SUN50I_H616_R
866 {
867 .compatible = "allwinner,sun50i-h616-r-pinctrl",
868 .data = (ulong)&sun50i_h616_r_pinctrl_desc,
869 },
870#endif
871 {}
872};
873
874U_BOOT_DRIVER(sunxi_pinctrl) = {
875 .name = "sunxi-pinctrl",
876 .id = UCLASS_PINCTRL,
877 .of_match = sunxi_pinctrl_ids,
878 .bind = sunxi_pinctrl_bind,
879 .probe = sunxi_pinctrl_probe,
880 .plat_auto = sizeof(struct sunxi_pinctrl_plat),
881 .ops = &sunxi_pinctrl_ops,
882};