blob: 30d8879dbd3730fb853ed106f8cc8c9e76d1b8c4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Ian Campbellb2765ec2014-05-05 11:52:24 +01002/*
3 * (C) Copyright 2007-2012
4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
5 * Tom Cubie <tangliang@allwinnertech.com>
Andre Przywara82d307c2022-09-06 10:36:38 +01006 *
7 * Definitions that are shared between the Allwinner pinctrl and GPIO drivers,
8 * also used by some non-DM SPL code directly.
Ian Campbellb2765ec2014-05-05 11:52:24 +01009 */
10
11#ifndef _SUNXI_GPIO_H
12#define _SUNXI_GPIO_H
13
14#include <linux/types.h>
Andre Przywara1191f382022-09-06 11:50:54 +010015
16#if defined(CONFIG_MACH_SUN9I)
17#define SUNXI_PIO_BASE 0x06000800
18#define SUNXI_R_PIO_BASE 0x08002c00
19#elif defined(CONFIG_SUN50I_GEN_H6)
20#define SUNXI_PIO_BASE 0x0300b000
21#define SUNXI_R_PIO_BASE 0x07022000
22#else
23#define SUNXI_PIO_BASE 0x01c20800
24#define SUNXI_R_PIO_BASE 0x01f02c00
25#endif
Ian Campbellb2765ec2014-05-05 11:52:24 +010026
27/*
28 * sunxi has 9 banks of gpio, they are:
29 * PA0 - PA17 | PB0 - PB23 | PC0 - PC24
30 * PD0 - PD27 | PE0 - PE31 | PF0 - PF5
31 * PG0 - PG9 | PH0 - PH27 | PI0 - PI12
32 */
33
34#define SUNXI_GPIO_A 0
35#define SUNXI_GPIO_B 1
36#define SUNXI_GPIO_C 2
37#define SUNXI_GPIO_D 3
38#define SUNXI_GPIO_E 4
39#define SUNXI_GPIO_F 5
40#define SUNXI_GPIO_G 6
41#define SUNXI_GPIO_H 7
42#define SUNXI_GPIO_I 8
Hans de Goede0ee72682014-10-22 16:47:45 +080043
44/*
Hans de Goede0ee72682014-10-22 16:47:45 +080045 * sun6i/sun8i and later SoCs have an additional GPIO controller (R_PIO)
46 * at a different register offset.
47 *
48 * sun6i has 2 banks:
49 * PL0 - PL8 | PM0 - PM7
50 *
51 * sun8i has 1 bank:
52 * PL0 - PL11
Hans de Goede8760c912015-01-26 16:46:43 +010053 *
54 * sun9i has 3 banks:
55 * PL0 - PL9 | PM0 - PM15 | PN0 - PN1
Hans de Goede0ee72682014-10-22 16:47:45 +080056 */
57#define SUNXI_GPIO_L 11
58#define SUNXI_GPIO_M 12
Hans de Goede8760c912015-01-26 16:46:43 +010059#define SUNXI_GPIO_N 13
Hans de Goede0ee72682014-10-22 16:47:45 +080060
Icenowy Zheng112c8862019-04-24 13:44:12 +080061#define SUN50I_H6_GPIO_POW_MOD_SEL 0x340
62#define SUN50I_H6_GPIO_POW_MOD_VAL 0x348
63
Samuel Hollande93ea432021-09-11 16:50:49 -050064#define SUNXI_GPIOS_PER_BANK 32
Ian Campbellb2765ec2014-05-05 11:52:24 +010065
66#define SUNXI_GPIO_NEXT(__gpio) \
Samuel Hollande93ea432021-09-11 16:50:49 -050067 ((__gpio##_START) + SUNXI_GPIOS_PER_BANK)
Ian Campbellb2765ec2014-05-05 11:52:24 +010068
69enum sunxi_gpio_number {
70 SUNXI_GPIO_A_START = 0,
71 SUNXI_GPIO_B_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_A),
72 SUNXI_GPIO_C_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_B),
73 SUNXI_GPIO_D_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_C),
74 SUNXI_GPIO_E_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_D),
75 SUNXI_GPIO_F_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_E),
76 SUNXI_GPIO_G_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_F),
77 SUNXI_GPIO_H_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_G),
78 SUNXI_GPIO_I_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_H),
Hans de Goede0ee72682014-10-22 16:47:45 +080079 SUNXI_GPIO_L_START = 352,
80 SUNXI_GPIO_M_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_L),
Hans de Goede8760c912015-01-26 16:46:43 +010081 SUNXI_GPIO_N_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_M),
Hans de Goede1fc9c4a2014-12-24 19:34:38 +010082 SUNXI_GPIO_AXP0_START = 1024,
Ian Campbellb2765ec2014-05-05 11:52:24 +010083};
84
85/* SUNXI GPIO number definitions */
86#define SUNXI_GPA(_nr) (SUNXI_GPIO_A_START + (_nr))
87#define SUNXI_GPB(_nr) (SUNXI_GPIO_B_START + (_nr))
88#define SUNXI_GPC(_nr) (SUNXI_GPIO_C_START + (_nr))
89#define SUNXI_GPD(_nr) (SUNXI_GPIO_D_START + (_nr))
90#define SUNXI_GPE(_nr) (SUNXI_GPIO_E_START + (_nr))
91#define SUNXI_GPF(_nr) (SUNXI_GPIO_F_START + (_nr))
92#define SUNXI_GPG(_nr) (SUNXI_GPIO_G_START + (_nr))
93#define SUNXI_GPH(_nr) (SUNXI_GPIO_H_START + (_nr))
94#define SUNXI_GPI(_nr) (SUNXI_GPIO_I_START + (_nr))
Hans de Goede0ee72682014-10-22 16:47:45 +080095#define SUNXI_GPL(_nr) (SUNXI_GPIO_L_START + (_nr))
96#define SUNXI_GPM(_nr) (SUNXI_GPIO_M_START + (_nr))
Hans de Goede8760c912015-01-26 16:46:43 +010097#define SUNXI_GPN(_nr) (SUNXI_GPIO_N_START + (_nr))
Ian Campbellb2765ec2014-05-05 11:52:24 +010098
Hans de Goede1fc9c4a2014-12-24 19:34:38 +010099#define SUNXI_GPAXP0(_nr) (SUNXI_GPIO_AXP0_START + (_nr))
100
Ian Campbellb2765ec2014-05-05 11:52:24 +0100101/* GPIO pin function config */
102#define SUNXI_GPIO_INPUT 0
103#define SUNXI_GPIO_OUTPUT 1
104
Jens Kuskef9770722015-11-17 15:12:58 +0100105#define SUN8I_H3_GPA_UART0 2
Angelo Dureghello47263bd2021-10-09 14:18:59 +0200106#define SUN8I_H3_GPA_UART2 2
Ian Campbellb2765ec2014-05-05 11:52:24 +0100107
Hans de Goede663ae652016-08-19 15:25:41 +0200108#define SUN4I_GPB_PWM 2
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200109#define SUN4I_GPB_TWI0 2
110#define SUN4I_GPB_TWI1 2
111#define SUN5I_GPB_TWI1 2
Icenowy Zheng365951a2020-10-26 22:19:34 +0800112#define SUN8I_V3S_GPB_TWI0 2
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100113#define SUN4I_GPB_UART0 2
114#define SUN5I_GPB_UART0 2
Laurent Itti20dfe002015-05-05 17:02:00 -0700115#define SUN8I_GPB_UART2 2
Chen-Yu Tsai28b71922015-06-23 19:57:25 +0800116#define SUN8I_A33_GPB_UART0 3
vishnupatekar133bfbe2015-11-29 01:07:20 +0800117#define SUN8I_A83T_GPB_UART0 2
Icenowy Zheng52e61882017-04-08 15:30:12 +0800118#define SUN8I_V3S_GPB_UART0 3
Siarhei Siamashka26c50fb2016-03-29 17:29:10 +0200119#define SUN50I_GPB_UART0 4
Ian Campbellb2765ec2014-05-05 11:52:24 +0100120
Karol Gugala7bea8932015-07-23 14:33:01 +0200121#define SUNXI_GPC_NAND 2
Siarhei Siamashka6f3ea202016-06-07 14:28:34 +0300122#define SUNXI_GPC_SPI0 3
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100123#define SUNXI_GPC_SDC2 3
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100124#define SUN6I_GPC_SDC3 4
Siarhei Siamashka6f3ea202016-06-07 14:28:34 +0300125#define SUN50I_GPC_SPI0 4
Jesse Taubeea3cbc62022-02-11 19:32:34 -0500126#define SUNIV_GPC_SPI0 2
Ian Campbellb2765ec2014-05-05 11:52:24 +0100127
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100128#define SUNXI_GPD_LCD0 2
129#define SUNXI_GPD_LVDS0 3
Ian Campbellb2765ec2014-05-05 11:52:24 +0100130
Icenowy Zheng015051d2022-01-29 10:23:03 -0500131#define SUNIV_GPE_UART0 5
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100132
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100133#define SUNXI_GPF_SDC0 2
134#define SUNXI_GPF_UART0 4
135#define SUN8I_GPF_UART0 3
Ian Campbellb2765ec2014-05-05 11:52:24 +0100136
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100137#define SUN4I_GPG_SDC1 4
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100138#define SUN5I_GPG_SDC1 2
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100139#define SUN6I_GPG_SDC1 2
140#define SUN8I_GPG_SDC1 2
Tobias Schramm6892a562021-02-15 00:19:58 +0100141#define SUN8I_GPG_UART1 2
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100142#define SUN5I_GPG_UART1 4
Hans de Goede7e68a1b2014-12-21 16:28:32 +0100143
Hans de Goede663ae652016-08-19 15:25:41 +0200144#define SUN6I_GPH_PWM 2
145#define SUN8I_GPH_PWM 2
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100146#define SUN4I_GPH_SDC1 5
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200147#define SUN6I_GPH_TWI0 2
148#define SUN8I_GPH_TWI0 2
Stefan Mavrodievcabe9922019-01-08 12:04:30 +0200149#define SUN50I_GPH_TWI0 2
Paul Kocialkowski0a3ec0a2015-04-10 23:09:52 +0200150#define SUN6I_GPH_TWI1 2
151#define SUN8I_GPH_TWI1 2
Stefan Mavrodievcabe9922019-01-08 12:04:30 +0200152#define SUN50I_GPH_TWI1 2
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100153#define SUN6I_GPH_UART0 2
Hans de Goede7bfe2bb2015-01-13 19:25:06 +0100154#define SUN9I_GPH_UART0 2
Icenowy Zhenga78bb072018-07-21 16:20:28 +0800155#define SUN50I_H6_GPH_UART0 2
Jernej Skrabec30efb9d2021-01-11 21:11:41 +0100156#define SUN50I_H616_GPH_UART0 2
Ian Campbellb2765ec2014-05-05 11:52:24 +0100157
Paul Kocialkowskid390d8c2015-03-22 18:12:23 +0100158#define SUNXI_GPI_SDC3 2
Ian Campbellb2765ec2014-05-05 11:52:24 +0100159
Hans de Goede7c590382014-12-13 10:25:14 +0100160#define SUN6I_GPL0_R_P2WI_SCK 3
161#define SUN6I_GPL1_R_P2WI_SDA 3
Oliver Schinagl4f9a0082013-07-25 14:07:42 +0200162
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100163#define SUN8I_GPL_R_RSB 2
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100164#define SUN8I_H3_GPL_R_TWI 2
165#define SUN8I_A23_GPL_R_TWI 3
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100166#define SUN8I_GPL_R_UART 2
Vasily Khoruzhick6f4c3442018-11-05 20:24:30 -0800167#define SUN50I_GPL_R_TWI 2
Jernej Skrabec7de8eb02021-01-11 21:11:42 +0100168#define SUN50I_H616_GPL_R_TWI 3
Chen-Yu Tsai6ee63882014-10-22 16:47:47 +0800169
Paul Kocialkowskiae358a42015-03-22 18:12:22 +0100170#define SUN9I_GPN_R_RSB 3
Hans de Goede8760c912015-01-26 16:46:43 +0100171
Andre Przywaraf6ad5102022-09-06 12:12:50 +0100172#ifdef CONFIG_SUNXI_NEW_PINCTRL
173 #define SUNXI_PINCTRL_BANK_SIZE 0x30
174 #define SUNXI_GPIO_DISABLE 0xf
175#else
176 #define SUNXI_PINCTRL_BANK_SIZE 0x24
177 #define SUNXI_GPIO_DISABLE 0x7
178#endif
179
Ian Campbellb2765ec2014-05-05 11:52:24 +0100180/* GPIO pin pull-up/down config */
181#define SUNXI_GPIO_PULL_DISABLE 0
182#define SUNXI_GPIO_PULL_UP 1
183#define SUNXI_GPIO_PULL_DOWN 2
184
Paul Kocialkowski6604a132015-03-22 18:07:09 +0100185/* Virtual AXP0 GPIOs */
Hans de Goede08607d12015-04-22 11:31:22 +0200186#define SUNXI_GPIO_AXP0_PREFIX "AXP0-"
Hans de Goede08607d12015-04-22 11:31:22 +0200187#define SUNXI_GPIO_AXP0_VBUS_ENABLE 5
188#define SUNXI_GPIO_AXP0_GPIO_COUNT 6
Paul Kocialkowski6604a132015-03-22 18:07:09 +0100189
Samuel Hollande3095022021-08-12 20:09:43 -0500190struct sunxi_gpio_plat {
Andre Przywara841ebfb32022-09-05 18:12:39 +0100191 void *regs;
Samuel Hollande3095022021-08-12 20:09:43 -0500192 char bank_name[3];
193};
194
Andre Przywara82d307c2022-09-06 10:36:38 +0100195/* prototypes for the non-DM GPIO/pinctrl functions, used in the SPL */
Andre Przywara841ebfb32022-09-05 18:12:39 +0100196void sunxi_gpio_set_cfgbank(void *bank_base, int pin_offset, u32 val);
Simon Glassd8624532014-10-30 20:25:47 -0600197void sunxi_gpio_set_cfgpin(u32 pin, u32 val);
Andre Przywara841ebfb32022-09-05 18:12:39 +0100198int sunxi_gpio_get_cfgbank(void *bank_base, int pin_offset);
Ian Campbellb2765ec2014-05-05 11:52:24 +0100199int sunxi_gpio_get_cfgpin(u32 pin);
Samuel Holland41abadc2021-10-20 23:52:54 -0500200void sunxi_gpio_set_drv(u32 pin, u32 val);
Andre Przywara841ebfb32022-09-05 18:12:39 +0100201void sunxi_gpio_set_drv_bank(void *bank_base, u32 pin_offset, u32 val);
Samuel Holland41abadc2021-10-20 23:52:54 -0500202void sunxi_gpio_set_pull(u32 pin, u32 val);
Andre Przywara841ebfb32022-09-05 18:12:39 +0100203void sunxi_gpio_set_pull_bank(void *bank_base, int pin_offset, u32 val);
Ian Campbellaf471472014-06-05 19:00:15 +0100204int sunxi_name_to_gpio(const char *name);
Ian Campbellb2765ec2014-05-05 11:52:24 +0100205
Hans de Goede3ae1d132015-04-25 17:25:14 +0200206#if !defined CONFIG_SPL_BUILD && defined CONFIG_AXP_GPIO
207int axp_gpio_init(void);
208#else
209static inline int axp_gpio_init(void) { return 0; }
210#endif
211
Ian Campbellb2765ec2014-05-05 11:52:24 +0100212#endif /* _SUNXI_GPIO_H */