summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/mediatek
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pinctrl/mediatek')
-rw-r--r--drivers/pinctrl/mediatek/Kconfig10
-rw-r--r--drivers/pinctrl/mediatek/Makefile1
-rw-r--r--drivers/pinctrl/mediatek/mtk-eint.c5
-rw-r--r--drivers/pinctrl/mediatek/mtk-eint.h1
-rw-r--r--drivers/pinctrl/mediatek/pinctrl-airoha.c2355
-rw-r--r--drivers/pinctrl/mediatek/pinctrl-mt6878.c1478
-rw-r--r--drivers/pinctrl/mediatek/pinctrl-mt8189.c4
-rw-r--r--drivers/pinctrl/mediatek/pinctrl-mt8196.c6
-rw-r--r--drivers/pinctrl/mediatek/pinctrl-mtk-mt6878.h2248
9 files changed, 4966 insertions, 1142 deletions
diff --git a/drivers/pinctrl/mediatek/Kconfig b/drivers/pinctrl/mediatek/Kconfig
index 5b191e12a8aa..4819617d9368 100644
--- a/drivers/pinctrl/mediatek/Kconfig
+++ b/drivers/pinctrl/mediatek/Kconfig
@@ -181,6 +181,16 @@ config PINCTRL_MT6797
default ARM64 && ARCH_MEDIATEK
select PINCTRL_MTK_PARIS
+config PINCTRL_MT6878
+ bool "MediaTek MT6878 pin control"
+ depends on OF
+ depends on ARM64 || COMPILE_TEST
+ default ARM64 && ARCH_MEDIATEK
+ select PINCTRL_MTK_PARIS
+ help
+ Say yes here to support pin controller and gpio driver
+ on the MediaTek MT6878 SoC.
+
config PINCTRL_MT6893
bool "MediaTek Dimensity MT6893 pin control"
depends on OF
diff --git a/drivers/pinctrl/mediatek/Makefile b/drivers/pinctrl/mediatek/Makefile
index 5d4646939ba3..ae765bd99965 100644
--- a/drivers/pinctrl/mediatek/Makefile
+++ b/drivers/pinctrl/mediatek/Makefile
@@ -23,6 +23,7 @@ obj-$(CONFIG_PINCTRL_MT6765) += pinctrl-mt6765.o
obj-$(CONFIG_PINCTRL_MT6779) += pinctrl-mt6779.o
obj-$(CONFIG_PINCTRL_MT6795) += pinctrl-mt6795.o
obj-$(CONFIG_PINCTRL_MT6797) += pinctrl-mt6797.o
+obj-$(CONFIG_PINCTRL_MT6878) += pinctrl-mt6878.o
obj-$(CONFIG_PINCTRL_MT6893) += pinctrl-mt6893.o
obj-$(CONFIG_PINCTRL_MT7622) += pinctrl-mt7622.o
obj-$(CONFIG_PINCTRL_MT7623) += pinctrl-mt7623.o
diff --git a/drivers/pinctrl/mediatek/mtk-eint.c b/drivers/pinctrl/mediatek/mtk-eint.c
index 9f175c73613f..c8c5097c11c4 100644
--- a/drivers/pinctrl/mediatek/mtk-eint.c
+++ b/drivers/pinctrl/mediatek/mtk-eint.c
@@ -66,6 +66,11 @@ const unsigned int debounce_time_mt6795[] = {
};
EXPORT_SYMBOL_GPL(debounce_time_mt6795);
+const unsigned int debounce_time_mt6878[] = {
+ 156, 313, 625, 1250, 20000, 40000, 80000, 160000, 320000, 640000, 0
+};
+EXPORT_SYMBOL_GPL(debounce_time_mt6878);
+
static void __iomem *mtk_eint_get_offset(struct mtk_eint *eint,
unsigned int eint_num,
unsigned int offset)
diff --git a/drivers/pinctrl/mediatek/mtk-eint.h b/drivers/pinctrl/mediatek/mtk-eint.h
index fc31a4c0c77b..3cdd6f6310cd 100644
--- a/drivers/pinctrl/mediatek/mtk-eint.h
+++ b/drivers/pinctrl/mediatek/mtk-eint.h
@@ -52,6 +52,7 @@ struct mtk_eint_pin {
extern const unsigned int debounce_time_mt2701[];
extern const unsigned int debounce_time_mt6765[];
extern const unsigned int debounce_time_mt6795[];
+extern const unsigned int debounce_time_mt6878[];
struct mtk_eint;
diff --git a/drivers/pinctrl/mediatek/pinctrl-airoha.c b/drivers/pinctrl/mediatek/pinctrl-airoha.c
index f1cf2578fe42..995ba6175c95 100644
--- a/drivers/pinctrl/mediatek/pinctrl-airoha.c
+++ b/drivers/pinctrl/mediatek/pinctrl-airoha.c
@@ -30,15 +30,15 @@
#include "../pinconf.h"
#include "../pinmux.h"
-#define PINCTRL_PIN_GROUP(id) \
- PINCTRL_PINGROUP(#id, id##_pins, ARRAY_SIZE(id##_pins))
+#define PINCTRL_PIN_GROUP(id, table) \
+ PINCTRL_PINGROUP(id, table##_pins, ARRAY_SIZE(table##_pins))
-#define PINCTRL_FUNC_DESC(id) \
+#define PINCTRL_FUNC_DESC(id, table) \
{ \
- .desc = PINCTRL_PINFUNCTION(#id, id##_groups, \
- ARRAY_SIZE(id##_groups)), \
- .groups = id##_func_group, \
- .group_size = ARRAY_SIZE(id##_func_group), \
+ .desc = PINCTRL_PINFUNCTION(id, table##_groups, \
+ ARRAY_SIZE(table##_groups)),\
+ .groups = table##_func_group, \
+ .group_size = ARRAY_SIZE(table##_func_group), \
}
#define PINCTRL_CONF_DESC(p, offset, mask) \
@@ -70,6 +70,7 @@
#define GPIO_PCM_SPI_CS3_MODE_MASK BIT(20)
#define GPIO_PCM_SPI_CS2_MODE_P156_MASK BIT(19)
#define GPIO_PCM_SPI_CS2_MODE_P128_MASK BIT(18)
+#define AN7583_GPIO_PCM_SPI_CS2_MODE_MASK BIT(18)
#define GPIO_PCM_SPI_CS1_MODE_MASK BIT(17)
#define GPIO_PCM_SPI_MODE_MASK BIT(16)
#define GPIO_PCM2_MODE_MASK BIT(13)
@@ -127,6 +128,8 @@
/* CONF */
#define REG_I2C_SDA_E2 0x001c
+#define AN7583_I2C1_SCL_E2_MASK BIT(16)
+#define AN7583_I2C1_SDA_E2_MASK BIT(15)
#define SPI_MISO_E2_MASK BIT(14)
#define SPI_MOSI_E2_MASK BIT(13)
#define SPI_CLK_E2_MASK BIT(12)
@@ -134,12 +137,16 @@
#define PCIE2_RESET_E2_MASK BIT(10)
#define PCIE1_RESET_E2_MASK BIT(9)
#define PCIE0_RESET_E2_MASK BIT(8)
+#define AN7583_MDIO_0_E2_MASK BIT(5)
+#define AN7583_MDC_0_E2_MASK BIT(4)
#define UART1_RXD_E2_MASK BIT(3)
#define UART1_TXD_E2_MASK BIT(2)
#define I2C_SCL_E2_MASK BIT(1)
#define I2C_SDA_E2_MASK BIT(0)
#define REG_I2C_SDA_E4 0x0020
+#define AN7583_I2C1_SCL_E4_MASK BIT(16)
+#define AN7583_I2C1_SDA_E4_MASK BIT(15)
#define SPI_MISO_E4_MASK BIT(14)
#define SPI_MOSI_E4_MASK BIT(13)
#define SPI_CLK_E4_MASK BIT(12)
@@ -147,6 +154,8 @@
#define PCIE2_RESET_E4_MASK BIT(10)
#define PCIE1_RESET_E4_MASK BIT(9)
#define PCIE0_RESET_E4_MASK BIT(8)
+#define AN7583_MDIO_0_E4_MASK BIT(5)
+#define AN7583_MDC_0_E4_MASK BIT(4)
#define UART1_RXD_E4_MASK BIT(3)
#define UART1_TXD_E4_MASK BIT(2)
#define I2C_SCL_E4_MASK BIT(1)
@@ -158,6 +167,8 @@
#define REG_GPIO_H_E4 0x0030
#define REG_I2C_SDA_PU 0x0044
+#define AN7583_I2C1_SCL_PU_MASK BIT(16)
+#define AN7583_I2C1_SDA_PU_MASK BIT(15)
#define SPI_MISO_PU_MASK BIT(14)
#define SPI_MOSI_PU_MASK BIT(13)
#define SPI_CLK_PU_MASK BIT(12)
@@ -165,12 +176,16 @@
#define PCIE2_RESET_PU_MASK BIT(10)
#define PCIE1_RESET_PU_MASK BIT(9)
#define PCIE0_RESET_PU_MASK BIT(8)
+#define AN7583_MDIO_0_PU_MASK BIT(5)
+#define AN7583_MDC_0_PU_MASK BIT(4)
#define UART1_RXD_PU_MASK BIT(3)
#define UART1_TXD_PU_MASK BIT(2)
#define I2C_SCL_PU_MASK BIT(1)
#define I2C_SDA_PU_MASK BIT(0)
#define REG_I2C_SDA_PD 0x0048
+#define AN7583_I2C1_SDA_PD_MASK BIT(16)
+#define AN7583_I2C1_SCL_PD_MASK BIT(15)
#define SPI_MISO_PD_MASK BIT(14)
#define SPI_MOSI_PD_MASK BIT(13)
#define SPI_CLK_PD_MASK BIT(12)
@@ -178,6 +193,8 @@
#define PCIE2_RESET_PD_MASK BIT(10)
#define PCIE1_RESET_PD_MASK BIT(9)
#define PCIE0_RESET_PD_MASK BIT(8)
+#define AN7583_MDIO_0_PD_MASK BIT(5)
+#define AN7583_MDC_0_PD_MASK BIT(4)
#define UART1_RXD_PD_MASK BIT(3)
#define UART1_TXD_PD_MASK BIT(2)
#define I2C_SCL_PD_MASK BIT(1)
@@ -357,16 +374,46 @@ struct airoha_pinctrl_gpiochip {
u32 irq_type[AIROHA_NUM_PINS];
};
+struct airoha_pinctrl_confs_info {
+ const struct airoha_pinctrl_conf *confs;
+ unsigned int num_confs;
+};
+
+enum airoha_pinctrl_confs_type {
+ AIROHA_PINCTRL_CONFS_PULLUP,
+ AIROHA_PINCTRL_CONFS_PULLDOWN,
+ AIROHA_PINCTRL_CONFS_DRIVE_E2,
+ AIROHA_PINCTRL_CONFS_DRIVE_E4,
+ AIROHA_PINCTRL_CONFS_PCIE_RST_OD,
+
+ AIROHA_PINCTRL_CONFS_MAX,
+};
+
struct airoha_pinctrl {
struct pinctrl_dev *ctrl;
+ struct pinctrl_desc desc;
+ const struct pingroup *grps;
+ const struct airoha_pinctrl_func *funcs;
+ const struct airoha_pinctrl_confs_info *confs_info;
+
struct regmap *chip_scu;
struct regmap *regmap;
struct airoha_pinctrl_gpiochip gpiochip;
};
-static struct pinctrl_pin_desc airoha_pinctrl_pins[] = {
+struct airoha_pinctrl_match_data {
+ const struct pinctrl_pin_desc *pins;
+ const unsigned int num_pins;
+ const struct pingroup *grps;
+ const unsigned int num_grps;
+ const struct airoha_pinctrl_func *funcs;
+ const unsigned int num_funcs;
+ const struct airoha_pinctrl_confs_info confs_info[AIROHA_PINCTRL_CONFS_MAX];
+};
+
+static struct pinctrl_pin_desc en7581_pinctrl_pins[] = {
PINCTRL_PIN(0, "uart1_txd"),
PINCTRL_PIN(1, "uart1_rxd"),
PINCTRL_PIN(2, "i2c_scl"),
@@ -427,178 +474,391 @@ static struct pinctrl_pin_desc airoha_pinctrl_pins[] = {
PINCTRL_PIN(63, "pcie_reset2"),
};
-static const int pon_pins[] = { 49, 50, 51, 52, 53, 54 };
-static const int pon_tod_1pps_pins[] = { 46 };
-static const int gsw_tod_1pps_pins[] = { 46 };
-static const int sipo_pins[] = { 16, 17 };
-static const int sipo_rclk_pins[] = { 16, 17, 43 };
-static const int mdio_pins[] = { 14, 15 };
-static const int uart2_pins[] = { 48, 55 };
-static const int uart2_cts_rts_pins[] = { 46, 47 };
-static const int hsuart_pins[] = { 28, 29 };
-static const int hsuart_cts_rts_pins[] = { 26, 27 };
-static const int uart4_pins[] = { 38, 39 };
-static const int uart5_pins[] = { 18, 19 };
-static const int i2c0_pins[] = { 2, 3 };
-static const int i2c1_pins[] = { 14, 15 };
-static const int jtag_udi_pins[] = { 16, 17, 18, 19, 20 };
-static const int jtag_dfd_pins[] = { 16, 17, 18, 19, 20 };
-static const int i2s_pins[] = { 26, 27, 28, 29 };
-static const int pcm1_pins[] = { 22, 23, 24, 25 };
-static const int pcm2_pins[] = { 18, 19, 20, 21 };
-static const int spi_quad_pins[] = { 32, 33 };
-static const int spi_pins[] = { 4, 5, 6, 7 };
-static const int spi_cs1_pins[] = { 34 };
-static const int pcm_spi_pins[] = { 18, 19, 20, 21, 22, 23, 24, 25 };
-static const int pcm_spi_int_pins[] = { 14 };
-static const int pcm_spi_rst_pins[] = { 15 };
-static const int pcm_spi_cs1_pins[] = { 43 };
-static const int pcm_spi_cs2_pins[] = { 40 };
-static const int pcm_spi_cs2_p128_pins[] = { 40 };
-static const int pcm_spi_cs2_p156_pins[] = { 40 };
-static const int pcm_spi_cs3_pins[] = { 41 };
-static const int pcm_spi_cs4_pins[] = { 42 };
-static const int emmc_pins[] = { 4, 5, 6, 30, 31, 32, 33, 34, 35, 36, 37 };
-static const int pnand_pins[] = { 4, 5, 6, 7, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42 };
-static const int gpio0_pins[] = { 13 };
-static const int gpio1_pins[] = { 14 };
-static const int gpio2_pins[] = { 15 };
-static const int gpio3_pins[] = { 16 };
-static const int gpio4_pins[] = { 17 };
-static const int gpio5_pins[] = { 18 };
-static const int gpio6_pins[] = { 19 };
-static const int gpio7_pins[] = { 20 };
-static const int gpio8_pins[] = { 21 };
-static const int gpio9_pins[] = { 22 };
-static const int gpio10_pins[] = { 23 };
-static const int gpio11_pins[] = { 24 };
-static const int gpio12_pins[] = { 25 };
-static const int gpio13_pins[] = { 26 };
-static const int gpio14_pins[] = { 27 };
-static const int gpio15_pins[] = { 28 };
-static const int gpio16_pins[] = { 29 };
-static const int gpio17_pins[] = { 30 };
-static const int gpio18_pins[] = { 31 };
-static const int gpio19_pins[] = { 32 };
-static const int gpio20_pins[] = { 33 };
-static const int gpio21_pins[] = { 34 };
-static const int gpio22_pins[] = { 35 };
-static const int gpio23_pins[] = { 36 };
-static const int gpio24_pins[] = { 37 };
-static const int gpio25_pins[] = { 38 };
-static const int gpio26_pins[] = { 39 };
-static const int gpio27_pins[] = { 40 };
-static const int gpio28_pins[] = { 41 };
-static const int gpio29_pins[] = { 42 };
-static const int gpio30_pins[] = { 43 };
-static const int gpio31_pins[] = { 44 };
-static const int gpio33_pins[] = { 46 };
-static const int gpio34_pins[] = { 47 };
-static const int gpio35_pins[] = { 48 };
-static const int gpio36_pins[] = { 49 };
-static const int gpio37_pins[] = { 50 };
-static const int gpio38_pins[] = { 51 };
-static const int gpio39_pins[] = { 52 };
-static const int gpio40_pins[] = { 53 };
-static const int gpio41_pins[] = { 54 };
-static const int gpio42_pins[] = { 55 };
-static const int gpio43_pins[] = { 56 };
-static const int gpio44_pins[] = { 57 };
-static const int gpio45_pins[] = { 58 };
-static const int gpio46_pins[] = { 59 };
-static const int pcie_reset0_pins[] = { 61 };
-static const int pcie_reset1_pins[] = { 62 };
-static const int pcie_reset2_pins[] = { 63 };
-
-static const struct pingroup airoha_pinctrl_groups[] = {
- PINCTRL_PIN_GROUP(pon),
- PINCTRL_PIN_GROUP(pon_tod_1pps),
- PINCTRL_PIN_GROUP(gsw_tod_1pps),
- PINCTRL_PIN_GROUP(sipo),
- PINCTRL_PIN_GROUP(sipo_rclk),
- PINCTRL_PIN_GROUP(mdio),
- PINCTRL_PIN_GROUP(uart2),
- PINCTRL_PIN_GROUP(uart2_cts_rts),
- PINCTRL_PIN_GROUP(hsuart),
- PINCTRL_PIN_GROUP(hsuart_cts_rts),
- PINCTRL_PIN_GROUP(uart4),
- PINCTRL_PIN_GROUP(uart5),
- PINCTRL_PIN_GROUP(i2c0),
- PINCTRL_PIN_GROUP(i2c1),
- PINCTRL_PIN_GROUP(jtag_udi),
- PINCTRL_PIN_GROUP(jtag_dfd),
- PINCTRL_PIN_GROUP(i2s),
- PINCTRL_PIN_GROUP(pcm1),
- PINCTRL_PIN_GROUP(pcm2),
- PINCTRL_PIN_GROUP(spi),
- PINCTRL_PIN_GROUP(spi_quad),
- PINCTRL_PIN_GROUP(spi_cs1),
- PINCTRL_PIN_GROUP(pcm_spi),
- PINCTRL_PIN_GROUP(pcm_spi_int),
- PINCTRL_PIN_GROUP(pcm_spi_rst),
- PINCTRL_PIN_GROUP(pcm_spi_cs1),
- PINCTRL_PIN_GROUP(pcm_spi_cs2_p128),
- PINCTRL_PIN_GROUP(pcm_spi_cs2_p156),
- PINCTRL_PIN_GROUP(pcm_spi_cs2),
- PINCTRL_PIN_GROUP(pcm_spi_cs3),
- PINCTRL_PIN_GROUP(pcm_spi_cs4),
- PINCTRL_PIN_GROUP(emmc),
- PINCTRL_PIN_GROUP(pnand),
- PINCTRL_PIN_GROUP(gpio0),
- PINCTRL_PIN_GROUP(gpio1),
- PINCTRL_PIN_GROUP(gpio2),
- PINCTRL_PIN_GROUP(gpio3),
- PINCTRL_PIN_GROUP(gpio4),
- PINCTRL_PIN_GROUP(gpio5),
- PINCTRL_PIN_GROUP(gpio6),
- PINCTRL_PIN_GROUP(gpio7),
- PINCTRL_PIN_GROUP(gpio8),
- PINCTRL_PIN_GROUP(gpio9),
- PINCTRL_PIN_GROUP(gpio10),
- PINCTRL_PIN_GROUP(gpio11),
- PINCTRL_PIN_GROUP(gpio12),
- PINCTRL_PIN_GROUP(gpio13),
- PINCTRL_PIN_GROUP(gpio14),
- PINCTRL_PIN_GROUP(gpio15),
- PINCTRL_PIN_GROUP(gpio16),
- PINCTRL_PIN_GROUP(gpio17),
- PINCTRL_PIN_GROUP(gpio18),
- PINCTRL_PIN_GROUP(gpio19),
- PINCTRL_PIN_GROUP(gpio20),
- PINCTRL_PIN_GROUP(gpio21),
- PINCTRL_PIN_GROUP(gpio22),
- PINCTRL_PIN_GROUP(gpio23),
- PINCTRL_PIN_GROUP(gpio24),
- PINCTRL_PIN_GROUP(gpio25),
- PINCTRL_PIN_GROUP(gpio26),
- PINCTRL_PIN_GROUP(gpio27),
- PINCTRL_PIN_GROUP(gpio28),
- PINCTRL_PIN_GROUP(gpio29),
- PINCTRL_PIN_GROUP(gpio30),
- PINCTRL_PIN_GROUP(gpio31),
- PINCTRL_PIN_GROUP(gpio33),
- PINCTRL_PIN_GROUP(gpio34),
- PINCTRL_PIN_GROUP(gpio35),
- PINCTRL_PIN_GROUP(gpio36),
- PINCTRL_PIN_GROUP(gpio37),
- PINCTRL_PIN_GROUP(gpio38),
- PINCTRL_PIN_GROUP(gpio39),
- PINCTRL_PIN_GROUP(gpio40),
- PINCTRL_PIN_GROUP(gpio41),
- PINCTRL_PIN_GROUP(gpio42),
- PINCTRL_PIN_GROUP(gpio43),
- PINCTRL_PIN_GROUP(gpio44),
- PINCTRL_PIN_GROUP(gpio45),
- PINCTRL_PIN_GROUP(gpio46),
- PINCTRL_PIN_GROUP(pcie_reset0),
- PINCTRL_PIN_GROUP(pcie_reset1),
- PINCTRL_PIN_GROUP(pcie_reset2),
+static const int en7581_pon_pins[] = { 49, 50, 51, 52, 53, 54 };
+static const int en7581_pon_tod_1pps_pins[] = { 46 };
+static const int en7581_gsw_tod_1pps_pins[] = { 46 };
+static const int en7581_sipo_pins[] = { 16, 17 };
+static const int en7581_sipo_rclk_pins[] = { 16, 17, 43 };
+static const int en7581_mdio_pins[] = { 14, 15 };
+static const int en7581_uart2_pins[] = { 48, 55 };
+static const int en7581_uart2_cts_rts_pins[] = { 46, 47 };
+static const int en7581_hsuart_pins[] = { 28, 29 };
+static const int en7581_hsuart_cts_rts_pins[] = { 26, 27 };
+static const int en7581_uart4_pins[] = { 38, 39 };
+static const int en7581_uart5_pins[] = { 18, 19 };
+static const int en7581_i2c0_pins[] = { 2, 3 };
+static const int en7581_i2c1_pins[] = { 14, 15 };
+static const int en7581_jtag_udi_pins[] = { 16, 17, 18, 19, 20 };
+static const int en7581_jtag_dfd_pins[] = { 16, 17, 18, 19, 20 };
+static const int en7581_i2s_pins[] = { 26, 27, 28, 29 };
+static const int en7581_pcm1_pins[] = { 22, 23, 24, 25 };
+static const int en7581_pcm2_pins[] = { 18, 19, 20, 21 };
+static const int en7581_spi_quad_pins[] = { 32, 33 };
+static const int en7581_spi_pins[] = { 4, 5, 6, 7 };
+static const int en7581_spi_cs1_pins[] = { 34 };
+static const int en7581_pcm_spi_pins[] = { 18, 19, 20, 21, 22, 23, 24, 25 };
+static const int en7581_pcm_spi_int_pins[] = { 14 };
+static const int en7581_pcm_spi_rst_pins[] = { 15 };
+static const int en7581_pcm_spi_cs1_pins[] = { 43 };
+static const int en7581_pcm_spi_cs2_pins[] = { 40 };
+static const int en7581_pcm_spi_cs2_p128_pins[] = { 40 };
+static const int en7581_pcm_spi_cs2_p156_pins[] = { 40 };
+static const int en7581_pcm_spi_cs3_pins[] = { 41 };
+static const int en7581_pcm_spi_cs4_pins[] = { 42 };
+static const int en7581_emmc_pins[] = { 4, 5, 6, 30, 31, 32, 33, 34, 35, 36, 37 };
+static const int en7581_pnand_pins[] = { 4, 5, 6, 7, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42 };
+static const int en7581_gpio0_pins[] = { 13 };
+static const int en7581_gpio1_pins[] = { 14 };
+static const int en7581_gpio2_pins[] = { 15 };
+static const int en7581_gpio3_pins[] = { 16 };
+static const int en7581_gpio4_pins[] = { 17 };
+static const int en7581_gpio5_pins[] = { 18 };
+static const int en7581_gpio6_pins[] = { 19 };
+static const int en7581_gpio7_pins[] = { 20 };
+static const int en7581_gpio8_pins[] = { 21 };
+static const int en7581_gpio9_pins[] = { 22 };
+static const int en7581_gpio10_pins[] = { 23 };
+static const int en7581_gpio11_pins[] = { 24 };
+static const int en7581_gpio12_pins[] = { 25 };
+static const int en7581_gpio13_pins[] = { 26 };
+static const int en7581_gpio14_pins[] = { 27 };
+static const int en7581_gpio15_pins[] = { 28 };
+static const int en7581_gpio16_pins[] = { 29 };
+static const int en7581_gpio17_pins[] = { 30 };
+static const int en7581_gpio18_pins[] = { 31 };
+static const int en7581_gpio19_pins[] = { 32 };
+static const int en7581_gpio20_pins[] = { 33 };
+static const int en7581_gpio21_pins[] = { 34 };
+static const int en7581_gpio22_pins[] = { 35 };
+static const int en7581_gpio23_pins[] = { 36 };
+static const int en7581_gpio24_pins[] = { 37 };
+static const int en7581_gpio25_pins[] = { 38 };
+static const int en7581_gpio26_pins[] = { 39 };
+static const int en7581_gpio27_pins[] = { 40 };
+static const int en7581_gpio28_pins[] = { 41 };
+static const int en7581_gpio29_pins[] = { 42 };
+static const int en7581_gpio30_pins[] = { 43 };
+static const int en7581_gpio31_pins[] = { 44 };
+static const int en7581_gpio33_pins[] = { 46 };
+static const int en7581_gpio34_pins[] = { 47 };
+static const int en7581_gpio35_pins[] = { 48 };
+static const int en7581_gpio36_pins[] = { 49 };
+static const int en7581_gpio37_pins[] = { 50 };
+static const int en7581_gpio38_pins[] = { 51 };
+static const int en7581_gpio39_pins[] = { 52 };
+static const int en7581_gpio40_pins[] = { 53 };
+static const int en7581_gpio41_pins[] = { 54 };
+static const int en7581_gpio42_pins[] = { 55 };
+static const int en7581_gpio43_pins[] = { 56 };
+static const int en7581_gpio44_pins[] = { 57 };
+static const int en7581_gpio45_pins[] = { 58 };
+static const int en7581_gpio46_pins[] = { 59 };
+static const int en7581_pcie_reset0_pins[] = { 61 };
+static const int en7581_pcie_reset1_pins[] = { 62 };
+static const int en7581_pcie_reset2_pins[] = { 63 };
+
+static const struct pingroup en7581_pinctrl_groups[] = {
+ PINCTRL_PIN_GROUP("pon", en7581_pon),
+ PINCTRL_PIN_GROUP("pon_tod_1pps", en7581_pon_tod_1pps),
+ PINCTRL_PIN_GROUP("gsw_tod_1pps", en7581_gsw_tod_1pps),
+ PINCTRL_PIN_GROUP("sipo", en7581_sipo),
+ PINCTRL_PIN_GROUP("sipo_rclk", en7581_sipo_rclk),
+ PINCTRL_PIN_GROUP("mdio", en7581_mdio),
+ PINCTRL_PIN_GROUP("uart2", en7581_uart2),
+ PINCTRL_PIN_GROUP("uart2_cts_rts", en7581_uart2_cts_rts),
+ PINCTRL_PIN_GROUP("hsuart", en7581_hsuart),
+ PINCTRL_PIN_GROUP("hsuart_cts_rts", en7581_hsuart_cts_rts),
+ PINCTRL_PIN_GROUP("uart4", en7581_uart4),
+ PINCTRL_PIN_GROUP("uart5", en7581_uart5),
+ PINCTRL_PIN_GROUP("i2c0", en7581_i2c0),
+ PINCTRL_PIN_GROUP("i2c1", en7581_i2c1),
+ PINCTRL_PIN_GROUP("jtag_udi", en7581_jtag_udi),
+ PINCTRL_PIN_GROUP("jtag_dfd", en7581_jtag_dfd),
+ PINCTRL_PIN_GROUP("i2s", en7581_i2s),
+ PINCTRL_PIN_GROUP("pcm1", en7581_pcm1),
+ PINCTRL_PIN_GROUP("pcm2", en7581_pcm2),
+ PINCTRL_PIN_GROUP("spi", en7581_spi),
+ PINCTRL_PIN_GROUP("spi_quad", en7581_spi_quad),
+ PINCTRL_PIN_GROUP("spi_cs1", en7581_spi_cs1),
+ PINCTRL_PIN_GROUP("pcm_spi", en7581_pcm_spi),
+ PINCTRL_PIN_GROUP("pcm_spi_int", en7581_pcm_spi_int),
+ PINCTRL_PIN_GROUP("pcm_spi_rst", en7581_pcm_spi_rst),
+ PINCTRL_PIN_GROUP("pcm_spi_cs1", en7581_pcm_spi_cs1),
+ PINCTRL_PIN_GROUP("pcm_spi_cs2_p128", en7581_pcm_spi_cs2_p128),
+ PINCTRL_PIN_GROUP("pcm_spi_cs2_p156", en7581_pcm_spi_cs2_p156),
+ PINCTRL_PIN_GROUP("pcm_spi_cs2", en7581_pcm_spi_cs2),
+ PINCTRL_PIN_GROUP("pcm_spi_cs3", en7581_pcm_spi_cs3),
+ PINCTRL_PIN_GROUP("pcm_spi_cs4", en7581_pcm_spi_cs4),
+ PINCTRL_PIN_GROUP("emmc", en7581_emmc),
+ PINCTRL_PIN_GROUP("pnand", en7581_pnand),
+ PINCTRL_PIN_GROUP("gpio0", en7581_gpio0),
+ PINCTRL_PIN_GROUP("gpio1", en7581_gpio1),
+ PINCTRL_PIN_GROUP("gpio2", en7581_gpio2),
+ PINCTRL_PIN_GROUP("gpio3", en7581_gpio3),
+ PINCTRL_PIN_GROUP("gpio4", en7581_gpio4),
+ PINCTRL_PIN_GROUP("gpio5", en7581_gpio5),
+ PINCTRL_PIN_GROUP("gpio6", en7581_gpio6),
+ PINCTRL_PIN_GROUP("gpio7", en7581_gpio7),
+ PINCTRL_PIN_GROUP("gpio8", en7581_gpio8),
+ PINCTRL_PIN_GROUP("gpio9", en7581_gpio9),
+ PINCTRL_PIN_GROUP("gpio10", en7581_gpio10),
+ PINCTRL_PIN_GROUP("gpio11", en7581_gpio11),
+ PINCTRL_PIN_GROUP("gpio12", en7581_gpio12),
+ PINCTRL_PIN_GROUP("gpio13", en7581_gpio13),
+ PINCTRL_PIN_GROUP("gpio14", en7581_gpio14),
+ PINCTRL_PIN_GROUP("gpio15", en7581_gpio15),
+ PINCTRL_PIN_GROUP("gpio16", en7581_gpio16),
+ PINCTRL_PIN_GROUP("gpio17", en7581_gpio17),
+ PINCTRL_PIN_GROUP("gpio18", en7581_gpio18),
+ PINCTRL_PIN_GROUP("gpio19", en7581_gpio19),
+ PINCTRL_PIN_GROUP("gpio20", en7581_gpio20),
+ PINCTRL_PIN_GROUP("gpio21", en7581_gpio21),
+ PINCTRL_PIN_GROUP("gpio22", en7581_gpio22),
+ PINCTRL_PIN_GROUP("gpio23", en7581_gpio23),
+ PINCTRL_PIN_GROUP("gpio24", en7581_gpio24),
+ PINCTRL_PIN_GROUP("gpio25", en7581_gpio25),
+ PINCTRL_PIN_GROUP("gpio26", en7581_gpio26),
+ PINCTRL_PIN_GROUP("gpio27", en7581_gpio27),
+ PINCTRL_PIN_GROUP("gpio28", en7581_gpio28),
+ PINCTRL_PIN_GROUP("gpio29", en7581_gpio29),
+ PINCTRL_PIN_GROUP("gpio30", en7581_gpio30),
+ PINCTRL_PIN_GROUP("gpio31", en7581_gpio31),
+ PINCTRL_PIN_GROUP("gpio33", en7581_gpio33),
+ PINCTRL_PIN_GROUP("gpio34", en7581_gpio34),
+ PINCTRL_PIN_GROUP("gpio35", en7581_gpio35),
+ PINCTRL_PIN_GROUP("gpio36", en7581_gpio36),
+ PINCTRL_PIN_GROUP("gpio37", en7581_gpio37),
+ PINCTRL_PIN_GROUP("gpio38", en7581_gpio38),
+ PINCTRL_PIN_GROUP("gpio39", en7581_gpio39),
+ PINCTRL_PIN_GROUP("gpio40", en7581_gpio40),
+ PINCTRL_PIN_GROUP("gpio41", en7581_gpio41),
+ PINCTRL_PIN_GROUP("gpio42", en7581_gpio42),
+ PINCTRL_PIN_GROUP("gpio43", en7581_gpio43),
+ PINCTRL_PIN_GROUP("gpio44", en7581_gpio44),
+ PINCTRL_PIN_GROUP("gpio45", en7581_gpio45),
+ PINCTRL_PIN_GROUP("gpio46", en7581_gpio46),
+ PINCTRL_PIN_GROUP("pcie_reset0", en7581_pcie_reset0),
+ PINCTRL_PIN_GROUP("pcie_reset1", en7581_pcie_reset1),
+ PINCTRL_PIN_GROUP("pcie_reset2", en7581_pcie_reset2),
+};
+
+static struct pinctrl_pin_desc an7583_pinctrl_pins[] = {
+ PINCTRL_PIN(2, "gpio0"),
+ PINCTRL_PIN(3, "gpio1"),
+ PINCTRL_PIN(4, "gpio2"),
+ PINCTRL_PIN(5, "gpio3"),
+ PINCTRL_PIN(6, "gpio4"),
+ PINCTRL_PIN(7, "gpio5"),
+ PINCTRL_PIN(8, "gpio6"),
+ PINCTRL_PIN(9, "gpio7"),
+ PINCTRL_PIN(10, "gpio8"),
+ PINCTRL_PIN(11, "gpio9"),
+ PINCTRL_PIN(12, "gpio10"),
+ PINCTRL_PIN(13, "gpio11"),
+ PINCTRL_PIN(14, "gpio12"),
+ PINCTRL_PIN(15, "gpio13"),
+ PINCTRL_PIN(16, "gpio14"),
+ PINCTRL_PIN(17, "gpio15"),
+ PINCTRL_PIN(18, "gpio16"),
+ PINCTRL_PIN(19, "gpio17"),
+ PINCTRL_PIN(20, "gpio18"),
+ PINCTRL_PIN(21, "gpio19"),
+ PINCTRL_PIN(22, "gpio20"),
+ PINCTRL_PIN(23, "gpio21"),
+ PINCTRL_PIN(24, "gpio22"),
+ PINCTRL_PIN(25, "gpio23"),
+ PINCTRL_PIN(26, "gpio24"),
+ PINCTRL_PIN(27, "gpio25"),
+ PINCTRL_PIN(28, "gpio26"),
+ PINCTRL_PIN(29, "gpio27"),
+ PINCTRL_PIN(30, "gpio28"),
+ PINCTRL_PIN(31, "gpio29"),
+ PINCTRL_PIN(32, "gpio30"),
+ PINCTRL_PIN(33, "gpio31"),
+ PINCTRL_PIN(34, "gpio32"),
+ PINCTRL_PIN(35, "gpio33"),
+ PINCTRL_PIN(36, "gpio34"),
+ PINCTRL_PIN(37, "gpio35"),
+ PINCTRL_PIN(38, "gpio36"),
+ PINCTRL_PIN(39, "gpio37"),
+ PINCTRL_PIN(40, "gpio38"),
+ PINCTRL_PIN(41, "i2c0_scl"),
+ PINCTRL_PIN(42, "i2c0_sda"),
+ PINCTRL_PIN(43, "i2c1_scl"),
+ PINCTRL_PIN(44, "i2c1_sda"),
+ PINCTRL_PIN(45, "spi_clk"),
+ PINCTRL_PIN(46, "spi_cs"),
+ PINCTRL_PIN(47, "spi_mosi"),
+ PINCTRL_PIN(48, "spi_miso"),
+ PINCTRL_PIN(49, "uart_txd"),
+ PINCTRL_PIN(50, "uart_rxd"),
+ PINCTRL_PIN(51, "pcie_reset0"),
+ PINCTRL_PIN(52, "pcie_reset1"),
+ PINCTRL_PIN(53, "mdc_0"),
+ PINCTRL_PIN(54, "mdio_0"),
+};
+
+static const int an7583_pon_pins[] = { 15, 16, 17, 18, 19, 20 };
+static const int an7583_pon_tod_1pps_pins[] = { 32 };
+static const int an7583_gsw_tod_1pps_pins[] = { 32 };
+static const int an7583_sipo_pins[] = { 34, 35 };
+static const int an7583_sipo_rclk_pins[] = { 34, 35, 33 };
+static const int an7583_mdio_pins[] = { 43, 44 };
+static const int an7583_uart2_pins[] = { 34, 35 };
+static const int an7583_uart2_cts_rts_pins[] = { 32, 33 };
+static const int an7583_hsuart_pins[] = { 30, 31 };
+static const int an7583_hsuart_cts_rts_pins[] = { 28, 29 };
+static const int an7583_npu_uart_pins[] = { 7, 8 };
+static const int an7583_uart4_pins[] = { 7, 8 };
+static const int an7583_uart5_pins[] = { 23, 24 };
+static const int an7583_i2c0_pins[] = { 41, 42 };
+static const int an7583_i2c1_pins[] = { 43, 44 };
+static const int an7583_jtag_udi_pins[] = { 23, 24, 22, 25, 26 };
+static const int an7583_jtag_dfd_pins[] = { 23, 24, 22, 25, 26 };
+static const int an7583_pcm1_pins[] = { 10, 11, 12, 13, 14 };
+static const int an7583_pcm2_pins[] = { 28, 29, 30, 31, 24 };
+static const int an7583_spi_pins[] = { 28, 29, 30, 31 };
+static const int an7583_spi_quad_pins[] = { 25, 26 };
+static const int an7583_spi_cs1_pins[] = { 27 };
+static const int an7583_pcm_spi_pins[] = { 28, 29, 30, 31, 10, 11, 12, 13 };
+static const int an7583_pcm_spi_rst_pins[] = { 14 };
+static const int an7583_pcm_spi_cs1_pins[] = { 24 };
+static const int an7583_emmc_pins[] = { 7, 8, 9, 22, 23, 24, 25, 26, 45, 46, 47 };
+static const int an7583_pnand_pins[] = { 7, 8, 9, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 45, 46, 47, 48 };
+static const int an7583_gpio0_pins[] = { 2 };
+static const int an7583_gpio1_pins[] = { 3 };
+static const int an7583_gpio2_pins[] = { 4 };
+static const int an7583_gpio3_pins[] = { 5 };
+static const int an7583_gpio4_pins[] = { 6 };
+static const int an7583_gpio5_pins[] = { 7 };
+static const int an7583_gpio6_pins[] = { 8 };
+static const int an7583_gpio7_pins[] = { 9 };
+static const int an7583_gpio8_pins[] = { 10 };
+static const int an7583_gpio9_pins[] = { 11 };
+static const int an7583_gpio10_pins[] = { 12 };
+static const int an7583_gpio11_pins[] = { 13 };
+static const int an7583_gpio12_pins[] = { 14 };
+static const int an7583_gpio13_pins[] = { 15 };
+static const int an7583_gpio14_pins[] = { 16 };
+static const int an7583_gpio15_pins[] = { 17 };
+static const int an7583_gpio16_pins[] = { 18 };
+static const int an7583_gpio17_pins[] = { 19 };
+static const int an7583_gpio18_pins[] = { 20 };
+static const int an7583_gpio19_pins[] = { 21 };
+static const int an7583_gpio20_pins[] = { 22 };
+static const int an7583_gpio21_pins[] = { 24 };
+static const int an7583_gpio23_pins[] = { 25 };
+static const int an7583_gpio24_pins[] = { 26 };
+static const int an7583_gpio25_pins[] = { 27 };
+static const int an7583_gpio26_pins[] = { 28 };
+static const int an7583_gpio27_pins[] = { 29 };
+static const int an7583_gpio28_pins[] = { 30 };
+static const int an7583_gpio29_pins[] = { 31 };
+static const int an7583_gpio30_pins[] = { 32 };
+static const int an7583_gpio31_pins[] = { 33 };
+static const int an7583_gpio33_pins[] = { 35 };
+static const int an7583_gpio34_pins[] = { 36 };
+static const int an7583_gpio35_pins[] = { 37 };
+static const int an7583_gpio36_pins[] = { 38 };
+static const int an7583_gpio37_pins[] = { 39 };
+static const int an7583_gpio38_pins[] = { 40 };
+static const int an7583_gpio39_pins[] = { 41 };
+static const int an7583_gpio40_pins[] = { 42 };
+static const int an7583_gpio41_pins[] = { 43 };
+static const int an7583_gpio42_pins[] = { 44 };
+static const int an7583_gpio43_pins[] = { 45 };
+static const int an7583_gpio44_pins[] = { 46 };
+static const int an7583_gpio45_pins[] = { 47 };
+static const int an7583_gpio46_pins[] = { 48 };
+static const int an7583_gpio47_pins[] = { 49 };
+static const int an7583_gpio48_pins[] = { 50 };
+static const int an7583_pcie_reset0_pins[] = { 51 };
+static const int an7583_pcie_reset1_pins[] = { 52 };
+
+static const struct pingroup an7583_pinctrl_groups[] = {
+ PINCTRL_PIN_GROUP("pon", an7583_pon),
+ PINCTRL_PIN_GROUP("pon_tod_1pps", an7583_pon_tod_1pps),
+ PINCTRL_PIN_GROUP("gsw_tod_1pps", an7583_gsw_tod_1pps),
+ PINCTRL_PIN_GROUP("sipo", an7583_sipo),
+ PINCTRL_PIN_GROUP("sipo_rclk", an7583_sipo_rclk),
+ PINCTRL_PIN_GROUP("mdio", an7583_mdio),
+ PINCTRL_PIN_GROUP("uart2", an7583_uart2),
+ PINCTRL_PIN_GROUP("uart2_cts_rts", an7583_uart2_cts_rts),
+ PINCTRL_PIN_GROUP("hsuart", an7583_hsuart),
+ PINCTRL_PIN_GROUP("hsuart_cts_rts", an7583_hsuart_cts_rts),
+ PINCTRL_PIN_GROUP("npu_uart", an7583_npu_uart),
+ PINCTRL_PIN_GROUP("uart4", an7583_uart4),
+ PINCTRL_PIN_GROUP("uart5", an7583_uart5),
+ PINCTRL_PIN_GROUP("i2c0", an7583_i2c0),
+ PINCTRL_PIN_GROUP("i2c1", an7583_i2c1),
+ PINCTRL_PIN_GROUP("jtag_udi", an7583_jtag_udi),
+ PINCTRL_PIN_GROUP("jtag_dfd", an7583_jtag_dfd),
+ PINCTRL_PIN_GROUP("pcm1", an7583_pcm1),
+ PINCTRL_PIN_GROUP("pcm2", an7583_pcm2),
+ PINCTRL_PIN_GROUP("spi", an7583_spi),
+ PINCTRL_PIN_GROUP("spi_quad", an7583_spi_quad),
+ PINCTRL_PIN_GROUP("spi_cs1", an7583_spi_cs1),
+ PINCTRL_PIN_GROUP("pcm_spi", an7583_pcm_spi),
+ PINCTRL_PIN_GROUP("pcm_spi_rst", an7583_pcm_spi_rst),
+ PINCTRL_PIN_GROUP("pcm_spi_cs1", an7583_pcm_spi_cs1),
+ PINCTRL_PIN_GROUP("emmc", an7583_emmc),
+ PINCTRL_PIN_GROUP("pnand", an7583_pnand),
+ PINCTRL_PIN_GROUP("gpio0", an7583_gpio0),
+ PINCTRL_PIN_GROUP("gpio1", an7583_gpio1),
+ PINCTRL_PIN_GROUP("gpio2", an7583_gpio2),
+ PINCTRL_PIN_GROUP("gpio3", an7583_gpio3),
+ PINCTRL_PIN_GROUP("gpio4", an7583_gpio4),
+ PINCTRL_PIN_GROUP("gpio5", an7583_gpio5),
+ PINCTRL_PIN_GROUP("gpio6", an7583_gpio6),
+ PINCTRL_PIN_GROUP("gpio7", an7583_gpio7),
+ PINCTRL_PIN_GROUP("gpio8", an7583_gpio8),
+ PINCTRL_PIN_GROUP("gpio9", an7583_gpio9),
+ PINCTRL_PIN_GROUP("gpio10", an7583_gpio10),
+ PINCTRL_PIN_GROUP("gpio11", an7583_gpio11),
+ PINCTRL_PIN_GROUP("gpio12", an7583_gpio12),
+ PINCTRL_PIN_GROUP("gpio13", an7583_gpio13),
+ PINCTRL_PIN_GROUP("gpio14", an7583_gpio14),
+ PINCTRL_PIN_GROUP("gpio15", an7583_gpio15),
+ PINCTRL_PIN_GROUP("gpio16", an7583_gpio16),
+ PINCTRL_PIN_GROUP("gpio17", an7583_gpio17),
+ PINCTRL_PIN_GROUP("gpio18", an7583_gpio18),
+ PINCTRL_PIN_GROUP("gpio19", an7583_gpio19),
+ PINCTRL_PIN_GROUP("gpio20", an7583_gpio20),
+ PINCTRL_PIN_GROUP("gpio21", an7583_gpio21),
+ PINCTRL_PIN_GROUP("gpio23", an7583_gpio23),
+ PINCTRL_PIN_GROUP("gpio24", an7583_gpio24),
+ PINCTRL_PIN_GROUP("gpio25", an7583_gpio25),
+ PINCTRL_PIN_GROUP("gpio26", an7583_gpio26),
+ PINCTRL_PIN_GROUP("gpio27", an7583_gpio27),
+ PINCTRL_PIN_GROUP("gpio28", an7583_gpio28),
+ PINCTRL_PIN_GROUP("gpio29", an7583_gpio29),
+ PINCTRL_PIN_GROUP("gpio30", an7583_gpio30),
+ PINCTRL_PIN_GROUP("gpio31", an7583_gpio31),
+ PINCTRL_PIN_GROUP("gpio33", an7583_gpio33),
+ PINCTRL_PIN_GROUP("gpio34", an7583_gpio34),
+ PINCTRL_PIN_GROUP("gpio35", an7583_gpio35),
+ PINCTRL_PIN_GROUP("gpio36", an7583_gpio36),
+ PINCTRL_PIN_GROUP("gpio37", an7583_gpio37),
+ PINCTRL_PIN_GROUP("gpio38", an7583_gpio38),
+ PINCTRL_PIN_GROUP("gpio39", an7583_gpio39),
+ PINCTRL_PIN_GROUP("gpio40", an7583_gpio40),
+ PINCTRL_PIN_GROUP("gpio41", an7583_gpio41),
+ PINCTRL_PIN_GROUP("gpio42", an7583_gpio42),
+ PINCTRL_PIN_GROUP("gpio43", an7583_gpio43),
+ PINCTRL_PIN_GROUP("gpio44", an7583_gpio44),
+ PINCTRL_PIN_GROUP("gpio45", an7583_gpio45),
+ PINCTRL_PIN_GROUP("gpio46", an7583_gpio46),
+ PINCTRL_PIN_GROUP("gpio47", an7583_gpio47),
+ PINCTRL_PIN_GROUP("gpio48", an7583_gpio48),
+ PINCTRL_PIN_GROUP("pcie_reset0", an7583_pcie_reset0),
+ PINCTRL_PIN_GROUP("pcie_reset1", an7583_pcie_reset1),
};
static const char *const pon_groups[] = { "pon" };
static const char *const tod_1pps_groups[] = { "pon_tod_1pps", "gsw_tod_1pps" };
static const char *const sipo_groups[] = { "sipo", "sipo_rclk" };
static const char *const mdio_groups[] = { "mdio" };
+static const char *const an7583_mdio_groups[] = { "mdio" };
static const char *const uart_groups[] = { "uart2", "uart2_cts_rts", "hsuart",
"hsuart_cts_rts", "uart4",
"uart5" };
@@ -611,11 +871,16 @@ static const char *const pcm_spi_groups[] = { "pcm_spi", "pcm_spi_int",
"pcm_spi_cs2_p156",
"pcm_spi_cs2_p128",
"pcm_spi_cs3", "pcm_spi_cs4" };
+static const char *const an7583_pcm_spi_groups[] = { "pcm_spi", "pcm_spi_int",
+ "pcm_spi_rst", "pcm_spi_cs1",
+ "pcm_spi_cs2", "pcm_spi_cs3",
+ "pcm_spi_cs4" };
static const char *const i2s_groups[] = { "i2s" };
static const char *const emmc_groups[] = { "emmc" };
static const char *const pnand_groups[] = { "pnand" };
static const char *const pcie_reset_groups[] = { "pcie_reset0", "pcie_reset1",
"pcie_reset2" };
+static const char *const an7583_pcie_reset_groups[] = { "pcie_reset0", "pcie_reset1" };
static const char *const pwm_groups[] = { "gpio0", "gpio1",
"gpio2", "gpio3",
"gpio4", "gpio5",
@@ -654,6 +919,22 @@ static const char *const phy3_led1_groups[] = { "gpio43", "gpio44",
"gpio45", "gpio46" };
static const char *const phy4_led1_groups[] = { "gpio43", "gpio44",
"gpio45", "gpio46" };
+static const char *const an7583_phy1_led0_groups[] = { "gpio1", "gpio2",
+ "gpio3", "gpio4" };
+static const char *const an7583_phy2_led0_groups[] = { "gpio1", "gpio2",
+ "gpio3", "gpio4" };
+static const char *const an7583_phy3_led0_groups[] = { "gpio1", "gpio2",
+ "gpio3", "gpio4" };
+static const char *const an7583_phy4_led0_groups[] = { "gpio1", "gpio2",
+ "gpio3", "gpio4" };
+static const char *const an7583_phy1_led1_groups[] = { "gpio8", "gpio9",
+ "gpio10", "gpio11" };
+static const char *const an7583_phy2_led1_groups[] = { "gpio8", "gpio9",
+ "gpio10", "gpio11" };
+static const char *const an7583_phy3_led1_groups[] = { "gpio8", "gpio9",
+ "gpio10", "gpio11" };
+static const char *const an7583_phy4_led1_groups[] = { "gpio8", "gpio9",
+ "gpio10", "gpio11" };
static const struct airoha_pinctrl_func_group pon_func_group[] = {
{
@@ -731,6 +1012,25 @@ static const struct airoha_pinctrl_func_group mdio_func_group[] = {
},
};
+static const struct airoha_pinctrl_func_group an7583_mdio_func_group[] = {
+ {
+ .name = "mdio",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_PON_MODE,
+ GPIO_SGMII_MDIO_MODE_MASK,
+ GPIO_SGMII_MDIO_MODE_MASK
+ },
+ .regmap[1] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_MDC_IO_MASTER_MODE_MODE,
+ GPIO_MDC_IO_MASTER_MODE_MODE
+ },
+ .regmap_size = 2,
+ },
+};
+
static const struct airoha_pinctrl_func_group uart_func_group[] = {
{
.name = "uart2",
@@ -972,6 +1272,73 @@ static const struct airoha_pinctrl_func_group pcm_spi_func_group[] = {
},
};
+static const struct airoha_pinctrl_func_group an7583_pcm_spi_func_group[] = {
+ {
+ .name = "pcm_spi",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_SPI_MODE_MASK,
+ GPIO_PCM_SPI_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_int",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_INT_MODE_MASK,
+ GPIO_PCM_INT_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_rst",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_RESET_MODE_MASK,
+ GPIO_PCM_RESET_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_cs1",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_SPI_CS1_MODE_MASK,
+ GPIO_PCM_SPI_CS1_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_cs2",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ AN7583_GPIO_PCM_SPI_CS2_MODE_MASK,
+ AN7583_GPIO_PCM_SPI_CS2_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_cs3",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_SPI_CS3_MODE_MASK,
+ GPIO_PCM_SPI_CS3_MODE_MASK
+ },
+ .regmap_size = 1,
+ }, {
+ .name = "pcm_spi_cs4",
+ .regmap[0] = {
+ AIROHA_FUNC_MUX,
+ REG_GPIO_SPI_CS1_MODE,
+ GPIO_PCM_SPI_CS4_MODE_MASK,
+ GPIO_PCM_SPI_CS4_MODE_MASK
+ },
+ .regmap_size = 1,
+ },
+};
+
static const struct airoha_pinctrl_func_group i2s_func_group[] = {
{
.name = "i2s",
@@ -1042,946 +1409,364 @@ static const struct airoha_pinctrl_func_group pcie_reset_func_group[] = {
},
};
-/* PWM */
-static const struct airoha_pinctrl_func_group pwm_func_group[] = {
+static const struct airoha_pinctrl_func_group an7583_pcie_reset_func_group[] = {
{
- .name = "gpio0",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO0_FLASH_MODE_CFG,
- GPIO0_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio1",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO1_FLASH_MODE_CFG,
- GPIO1_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio2",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO2_FLASH_MODE_CFG,
- GPIO2_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio3",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO3_FLASH_MODE_CFG,
- GPIO3_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio4",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO4_FLASH_MODE_CFG,
- GPIO4_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio5",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO5_FLASH_MODE_CFG,
- GPIO5_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio6",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO6_FLASH_MODE_CFG,
- GPIO6_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio7",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO7_FLASH_MODE_CFG,
- GPIO7_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio8",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO8_FLASH_MODE_CFG,
- GPIO8_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio9",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO9_FLASH_MODE_CFG,
- GPIO9_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio10",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO10_FLASH_MODE_CFG,
- GPIO10_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio11",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO11_FLASH_MODE_CFG,
- GPIO11_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio12",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO12_FLASH_MODE_CFG,
- GPIO12_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio13",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO13_FLASH_MODE_CFG,
- GPIO13_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio14",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO14_FLASH_MODE_CFG,
- GPIO14_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio15",
- .regmap[0] = {
- AIROHA_FUNC_PWM_MUX,
- REG_GPIO_FLASH_MODE_CFG,
- GPIO15_FLASH_MODE_CFG,
- GPIO15_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio16",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO16_FLASH_MODE_CFG,
- GPIO16_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio17",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO17_FLASH_MODE_CFG,
- GPIO17_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio18",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO18_FLASH_MODE_CFG,
- GPIO18_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio19",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO19_FLASH_MODE_CFG,
- GPIO19_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio20",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO20_FLASH_MODE_CFG,
- GPIO20_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio21",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO21_FLASH_MODE_CFG,
- GPIO21_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio22",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO22_FLASH_MODE_CFG,
- GPIO22_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio23",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO23_FLASH_MODE_CFG,
- GPIO23_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio24",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO24_FLASH_MODE_CFG,
- GPIO24_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio25",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO25_FLASH_MODE_CFG,
- GPIO25_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio26",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO26_FLASH_MODE_CFG,
- GPIO26_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio27",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO27_FLASH_MODE_CFG,
- GPIO27_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio28",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO28_FLASH_MODE_CFG,
- GPIO28_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio29",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO29_FLASH_MODE_CFG,
- GPIO29_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio30",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO30_FLASH_MODE_CFG,
- GPIO30_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio31",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO31_FLASH_MODE_CFG,
- GPIO31_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio36",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO36_FLASH_MODE_CFG,
- GPIO36_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio37",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO37_FLASH_MODE_CFG,
- GPIO37_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio38",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO38_FLASH_MODE_CFG,
- GPIO38_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio39",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO39_FLASH_MODE_CFG,
- GPIO39_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio40",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO40_FLASH_MODE_CFG,
- GPIO40_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio41",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO41_FLASH_MODE_CFG,
- GPIO41_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio42",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO42_FLASH_MODE_CFG,
- GPIO42_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio43",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO43_FLASH_MODE_CFG,
- GPIO43_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio44",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO44_FLASH_MODE_CFG,
- GPIO44_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio45",
- .regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO45_FLASH_MODE_CFG,
- GPIO45_FLASH_MODE_CFG
- },
- .regmap_size = 1,
- }, {
- .name = "gpio46",
+ .name = "pcie_reset0",
.regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO46_FLASH_MODE_CFG,
- GPIO46_FLASH_MODE_CFG
+ AIROHA_FUNC_MUX,
+ REG_GPIO_PON_MODE,
+ GPIO_PCIE_RESET0_MASK,
+ GPIO_PCIE_RESET0_MASK
},
.regmap_size = 1,
}, {
- .name = "gpio47",
+ .name = "pcie_reset1",
.regmap[0] = {
- AIROHA_FUNC_PWM_EXT_MUX,
- REG_GPIO_FLASH_MODE_CFG_EXT,
- GPIO47_FLASH_MODE_CFG,
- GPIO47_FLASH_MODE_CFG
+ AIROHA_FUNC_MUX,
+ REG_GPIO_PON_MODE,
+ GPIO_PCIE_RESET1_MASK,
+ GPIO_PCIE_RESET1_MASK
},
.regmap_size = 1,
},
};
+/* PWM */
+#define AIROHA_PINCTRL_PWM(gpio, mux_val) \
+ { \
+ .name = (gpio), \
+ .regmap[0] = { \
+ AIROHA_FUNC_PWM_MUX, \
+ REG_GPIO_FLASH_MODE_CFG, \
+ (mux_val), \
+ (mux_val) \
+ }, \
+ .regmap_size = 1, \
+ } \
+
+#define AIROHA_PINCTRL_PWM_EXT(gpio, mux_val) \
+ { \
+ .name = (gpio), \
+ .regmap[0] = { \
+ AIROHA_FUNC_PWM_EXT_MUX, \
+ REG_GPIO_FLASH_MODE_CFG_EXT, \
+ (mux_val), \
+ (mux_val) \
+ }, \
+ .regmap_size = 1, \
+ } \
+
+static const struct airoha_pinctrl_func_group pwm_func_group[] = {
+ AIROHA_PINCTRL_PWM("gpio0", GPIO0_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio1", GPIO1_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio2", GPIO2_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio3", GPIO3_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio4", GPIO4_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio5", GPIO5_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio6", GPIO6_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio7", GPIO7_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio8", GPIO8_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio9", GPIO9_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio10", GPIO10_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio11", GPIO11_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio12", GPIO12_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio13", GPIO13_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio14", GPIO14_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM("gpio15", GPIO15_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio16", GPIO16_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio17", GPIO17_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio18", GPIO18_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio19", GPIO19_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio20", GPIO20_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio21", GPIO21_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio22", GPIO22_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio23", GPIO23_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio24", GPIO24_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio25", GPIO25_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio26", GPIO26_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio27", GPIO27_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio28", GPIO28_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio29", GPIO29_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio30", GPIO30_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio31", GPIO31_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio36", GPIO36_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio37", GPIO37_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio38", GPIO38_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio39", GPIO39_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio40", GPIO40_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio41", GPIO41_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio42", GPIO42_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio43", GPIO43_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio44", GPIO44_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio45", GPIO45_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio46", GPIO46_FLASH_MODE_CFG),
+ AIROHA_PINCTRL_PWM_EXT("gpio47", GPIO47_FLASH_MODE_CFG),
+};
+
+#define AIROHA_PINCTRL_PHY_LED0(gpio, mux_val, map_mask, map_val) \
+ { \
+ .name = (gpio), \
+ .regmap[0] = { \
+ AIROHA_FUNC_MUX, \
+ REG_GPIO_2ND_I2C_MODE, \
+ (mux_val), \
+ (mux_val), \
+ }, \
+ .regmap[1] = { \
+ AIROHA_FUNC_MUX, \
+ REG_LAN_LED0_MAPPING, \
+ (map_mask), \
+ (map_val), \
+ }, \
+ .regmap_size = 2, \
+ }
+
+#define AIROHA_PINCTRL_PHY_LED1(gpio, mux_val, map_mask, map_val) \
+ { \
+ .name = (gpio), \
+ .regmap[0] = { \
+ AIROHA_FUNC_MUX, \
+ REG_GPIO_2ND_I2C_MODE, \
+ (mux_val), \
+ (mux_val), \
+ }, \
+ .regmap[1] = { \
+ AIROHA_FUNC_MUX, \
+ REG_LAN_LED1_MAPPING, \
+ (map_mask), \
+ (map_val), \
+ }, \
+ .regmap_size = 2, \
+ }
+
static const struct airoha_pinctrl_func_group phy1_led0_func_group[] = {
- {
- .name = "gpio33",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED0_MODE_MASK,
- GPIO_LAN0_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio34",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED0_MODE_MASK,
- GPIO_LAN1_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio35",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED0_MODE_MASK,
- GPIO_LAN2_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio42",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED0_MODE_MASK,
- GPIO_LAN3_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED0("gpio33", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio34", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio35", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio42", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(0)),
};
static const struct airoha_pinctrl_func_group phy2_led0_func_group[] = {
- {
- .name = "gpio33",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED0_MODE_MASK,
- GPIO_LAN0_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio34",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED0_MODE_MASK,
- GPIO_LAN1_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio35",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED0_MODE_MASK,
- GPIO_LAN2_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio42",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED0_MODE_MASK,
- GPIO_LAN3_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED0("gpio33", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio34", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio35", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio42", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(1)),
};
static const struct airoha_pinctrl_func_group phy3_led0_func_group[] = {
- {
- .name = "gpio33",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED0_MODE_MASK,
- GPIO_LAN0_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio34",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED0_MODE_MASK,
- GPIO_LAN1_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio35",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED0_MODE_MASK,
- GPIO_LAN2_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio42",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED0_MODE_MASK,
- GPIO_LAN3_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED0("gpio33", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio34", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio35", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio42", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
};
static const struct airoha_pinctrl_func_group phy4_led0_func_group[] = {
- {
- .name = "gpio33",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED0_MODE_MASK,
- GPIO_LAN0_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio34",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED0_MODE_MASK,
- GPIO_LAN1_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio35",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED0_MODE_MASK,
- GPIO_LAN2_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio42",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED0_MODE_MASK,
- GPIO_LAN3_LED0_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED0_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED0("gpio33", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio34", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio35", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio42", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(3)),
};
static const struct airoha_pinctrl_func_group phy1_led1_func_group[] = {
- {
- .name = "gpio43",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED1_MODE_MASK,
- GPIO_LAN0_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio44",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED1_MODE_MASK,
- GPIO_LAN1_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio45",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED1_MODE_MASK,
- GPIO_LAN2_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio46",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED1_MODE_MASK,
- GPIO_LAN3_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(0)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED1("gpio43", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio44", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio45", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio46", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(0)),
};
static const struct airoha_pinctrl_func_group phy2_led1_func_group[] = {
- {
- .name = "gpio43",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED1_MODE_MASK,
- GPIO_LAN0_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio44",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED1_MODE_MASK,
- GPIO_LAN1_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio45",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED1_MODE_MASK,
- GPIO_LAN2_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio46",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED1_MODE_MASK,
- GPIO_LAN3_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(1)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED1("gpio43", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio44", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio45", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio46", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(1)),
};
static const struct airoha_pinctrl_func_group phy3_led1_func_group[] = {
- {
- .name = "gpio43",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED1_MODE_MASK,
- GPIO_LAN0_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio44",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED1_MODE_MASK,
- GPIO_LAN1_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio45",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED1_MODE_MASK,
- GPIO_LAN2_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio46",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED1_MODE_MASK,
- GPIO_LAN3_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(2)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED1("gpio43", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio44", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio45", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio46", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
};
static const struct airoha_pinctrl_func_group phy4_led1_func_group[] = {
- {
- .name = "gpio43",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN0_LED1_MODE_MASK,
- GPIO_LAN0_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN0_LED_MAPPING_MASK,
- LAN0_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio44",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN1_LED1_MODE_MASK,
- GPIO_LAN1_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN1_LED_MAPPING_MASK,
- LAN1_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio45",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN2_LED1_MODE_MASK,
- GPIO_LAN2_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN2_LED_MAPPING_MASK,
- LAN2_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- }, {
- .name = "gpio46",
- .regmap[0] = {
- AIROHA_FUNC_MUX,
- REG_GPIO_2ND_I2C_MODE,
- GPIO_LAN3_LED1_MODE_MASK,
- GPIO_LAN3_LED1_MODE_MASK
- },
- .regmap[1] = {
- AIROHA_FUNC_MUX,
- REG_LAN_LED1_MAPPING,
- LAN3_LED_MAPPING_MASK,
- LAN3_PHY_LED_MAP(3)
- },
- .regmap_size = 2,
- },
+ AIROHA_PINCTRL_PHY_LED1("gpio43", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio44", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio45", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio46", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy1_led0_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED0("gpio1", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio2", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio3", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED0("gpio4", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(0)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy2_led0_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED0("gpio1", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio2", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio3", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED0("gpio4", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(1)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy3_led0_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED0("gpio1", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio2", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio3", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED0("gpio4", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy4_led0_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED0("gpio1", GPIO_LAN0_LED0_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio2", GPIO_LAN1_LED0_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio3", GPIO_LAN2_LED0_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(3)),
+ AIROHA_PINCTRL_PHY_LED0("gpio4", GPIO_LAN3_LED0_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(3)),
};
-static const struct airoha_pinctrl_func airoha_pinctrl_funcs[] = {
- PINCTRL_FUNC_DESC(pon),
- PINCTRL_FUNC_DESC(tod_1pps),
- PINCTRL_FUNC_DESC(sipo),
- PINCTRL_FUNC_DESC(mdio),
- PINCTRL_FUNC_DESC(uart),
- PINCTRL_FUNC_DESC(i2c),
- PINCTRL_FUNC_DESC(jtag),
- PINCTRL_FUNC_DESC(pcm),
- PINCTRL_FUNC_DESC(spi),
- PINCTRL_FUNC_DESC(pcm_spi),
- PINCTRL_FUNC_DESC(i2s),
- PINCTRL_FUNC_DESC(emmc),
- PINCTRL_FUNC_DESC(pnand),
- PINCTRL_FUNC_DESC(pcie_reset),
- PINCTRL_FUNC_DESC(pwm),
- PINCTRL_FUNC_DESC(phy1_led0),
- PINCTRL_FUNC_DESC(phy2_led0),
- PINCTRL_FUNC_DESC(phy3_led0),
- PINCTRL_FUNC_DESC(phy4_led0),
- PINCTRL_FUNC_DESC(phy1_led1),
- PINCTRL_FUNC_DESC(phy2_led1),
- PINCTRL_FUNC_DESC(phy3_led1),
- PINCTRL_FUNC_DESC(phy4_led1),
-};
-
-static const struct airoha_pinctrl_conf airoha_pinctrl_pullup_conf[] = {
+static const struct airoha_pinctrl_func_group an7583_phy1_led1_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED1("gpio8", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio9", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio10", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(0)),
+ AIROHA_PINCTRL_PHY_LED1("gpio1", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(0)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy2_led1_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED1("gpio8", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio9", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio10", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(1)),
+ AIROHA_PINCTRL_PHY_LED1("gpio11", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(1)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy3_led1_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED1("gpio8", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio9", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio10", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio11", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
+};
+
+static const struct airoha_pinctrl_func_group an7583_phy4_led1_func_group[] = {
+ AIROHA_PINCTRL_PHY_LED1("gpio8", GPIO_LAN0_LED1_MODE_MASK,
+ LAN0_LED_MAPPING_MASK, LAN0_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio9", GPIO_LAN1_LED1_MODE_MASK,
+ LAN1_LED_MAPPING_MASK, LAN1_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio10", GPIO_LAN2_LED1_MODE_MASK,
+ LAN2_LED_MAPPING_MASK, LAN2_PHY_LED_MAP(2)),
+ AIROHA_PINCTRL_PHY_LED1("gpio11", GPIO_LAN3_LED1_MODE_MASK,
+ LAN3_LED_MAPPING_MASK, LAN3_PHY_LED_MAP(2)),
+};
+
+static const struct airoha_pinctrl_func en7581_pinctrl_funcs[] = {
+ PINCTRL_FUNC_DESC("pon", pon),
+ PINCTRL_FUNC_DESC("tod_1pps", tod_1pps),
+ PINCTRL_FUNC_DESC("sipo", sipo),
+ PINCTRL_FUNC_DESC("mdio", mdio),
+ PINCTRL_FUNC_DESC("uart", uart),
+ PINCTRL_FUNC_DESC("i2c", i2c),
+ PINCTRL_FUNC_DESC("jtag", jtag),
+ PINCTRL_FUNC_DESC("pcm", pcm),
+ PINCTRL_FUNC_DESC("spi", spi),
+ PINCTRL_FUNC_DESC("pcm_spi", pcm_spi),
+ PINCTRL_FUNC_DESC("i2s", i2s),
+ PINCTRL_FUNC_DESC("emmc", emmc),
+ PINCTRL_FUNC_DESC("pnand", pnand),
+ PINCTRL_FUNC_DESC("pcie_reset", pcie_reset),
+ PINCTRL_FUNC_DESC("pwm", pwm),
+ PINCTRL_FUNC_DESC("phy1_led0", phy1_led0),
+ PINCTRL_FUNC_DESC("phy2_led0", phy2_led0),
+ PINCTRL_FUNC_DESC("phy3_led0", phy3_led0),
+ PINCTRL_FUNC_DESC("phy4_led0", phy4_led0),
+ PINCTRL_FUNC_DESC("phy1_led1", phy1_led1),
+ PINCTRL_FUNC_DESC("phy2_led1", phy2_led1),
+ PINCTRL_FUNC_DESC("phy3_led1", phy3_led1),
+ PINCTRL_FUNC_DESC("phy4_led1", phy4_led1),
+};
+
+static const struct airoha_pinctrl_func an7583_pinctrl_funcs[] = {
+ PINCTRL_FUNC_DESC("pon", pon),
+ PINCTRL_FUNC_DESC("tod_1pps", tod_1pps),
+ PINCTRL_FUNC_DESC("sipo", sipo),
+ PINCTRL_FUNC_DESC("mdio", an7583_mdio),
+ PINCTRL_FUNC_DESC("uart", uart),
+ PINCTRL_FUNC_DESC("i2c", i2c),
+ PINCTRL_FUNC_DESC("jtag", jtag),
+ PINCTRL_FUNC_DESC("pcm", pcm),
+ PINCTRL_FUNC_DESC("spi", spi),
+ PINCTRL_FUNC_DESC("pcm_spi", an7583_pcm_spi),
+ PINCTRL_FUNC_DESC("emmc", emmc),
+ PINCTRL_FUNC_DESC("pnand", pnand),
+ PINCTRL_FUNC_DESC("pcie_reset", an7583_pcie_reset),
+ PINCTRL_FUNC_DESC("pwm", pwm),
+ PINCTRL_FUNC_DESC("phy1_led0", an7583_phy1_led0),
+ PINCTRL_FUNC_DESC("phy2_led0", an7583_phy2_led0),
+ PINCTRL_FUNC_DESC("phy3_led0", an7583_phy3_led0),
+ PINCTRL_FUNC_DESC("phy4_led0", an7583_phy4_led0),
+ PINCTRL_FUNC_DESC("phy1_led1", an7583_phy1_led1),
+ PINCTRL_FUNC_DESC("phy2_led1", an7583_phy2_led1),
+ PINCTRL_FUNC_DESC("phy3_led1", an7583_phy3_led1),
+ PINCTRL_FUNC_DESC("phy4_led1", an7583_phy4_led1),
+};
+
+static const struct airoha_pinctrl_conf en7581_pinctrl_pullup_conf[] = {
PINCTRL_CONF_DESC(0, REG_I2C_SDA_PU, UART1_TXD_PU_MASK),
PINCTRL_CONF_DESC(1, REG_I2C_SDA_PU, UART1_RXD_PU_MASK),
PINCTRL_CONF_DESC(2, REG_I2C_SDA_PU, I2C_SDA_PU_MASK),
@@ -2042,7 +1827,63 @@ static const struct airoha_pinctrl_conf airoha_pinctrl_pullup_conf[] = {
PINCTRL_CONF_DESC(63, REG_I2C_SDA_PU, PCIE2_RESET_PU_MASK),
};
-static const struct airoha_pinctrl_conf airoha_pinctrl_pulldown_conf[] = {
+static const struct airoha_pinctrl_conf an7583_pinctrl_pullup_conf[] = {
+ PINCTRL_CONF_DESC(2, REG_GPIO_L_PU, BIT(0)),
+ PINCTRL_CONF_DESC(3, REG_GPIO_L_PU, BIT(1)),
+ PINCTRL_CONF_DESC(4, REG_GPIO_L_PU, BIT(2)),
+ PINCTRL_CONF_DESC(5, REG_GPIO_L_PU, BIT(3)),
+ PINCTRL_CONF_DESC(6, REG_GPIO_L_PU, BIT(4)),
+ PINCTRL_CONF_DESC(7, REG_GPIO_L_PU, BIT(5)),
+ PINCTRL_CONF_DESC(8, REG_GPIO_L_PU, BIT(6)),
+ PINCTRL_CONF_DESC(9, REG_GPIO_L_PU, BIT(7)),
+ PINCTRL_CONF_DESC(10, REG_GPIO_L_PU, BIT(8)),
+ PINCTRL_CONF_DESC(11, REG_GPIO_L_PU, BIT(9)),
+ PINCTRL_CONF_DESC(12, REG_GPIO_L_PU, BIT(10)),
+ PINCTRL_CONF_DESC(13, REG_GPIO_L_PU, BIT(11)),
+ PINCTRL_CONF_DESC(14, REG_GPIO_L_PU, BIT(12)),
+ PINCTRL_CONF_DESC(15, REG_GPIO_L_PU, BIT(13)),
+ PINCTRL_CONF_DESC(16, REG_GPIO_L_PU, BIT(14)),
+ PINCTRL_CONF_DESC(17, REG_GPIO_L_PU, BIT(15)),
+ PINCTRL_CONF_DESC(18, REG_GPIO_L_PU, BIT(16)),
+ PINCTRL_CONF_DESC(19, REG_GPIO_L_PU, BIT(17)),
+ PINCTRL_CONF_DESC(20, REG_GPIO_L_PU, BIT(18)),
+ PINCTRL_CONF_DESC(21, REG_GPIO_L_PU, BIT(18)),
+ PINCTRL_CONF_DESC(22, REG_GPIO_L_PU, BIT(20)),
+ PINCTRL_CONF_DESC(23, REG_GPIO_L_PU, BIT(21)),
+ PINCTRL_CONF_DESC(24, REG_GPIO_L_PU, BIT(22)),
+ PINCTRL_CONF_DESC(25, REG_GPIO_L_PU, BIT(23)),
+ PINCTRL_CONF_DESC(26, REG_GPIO_L_PU, BIT(24)),
+ PINCTRL_CONF_DESC(27, REG_GPIO_L_PU, BIT(25)),
+ PINCTRL_CONF_DESC(28, REG_GPIO_L_PU, BIT(26)),
+ PINCTRL_CONF_DESC(29, REG_GPIO_L_PU, BIT(27)),
+ PINCTRL_CONF_DESC(30, REG_GPIO_L_PU, BIT(28)),
+ PINCTRL_CONF_DESC(31, REG_GPIO_L_PU, BIT(29)),
+ PINCTRL_CONF_DESC(32, REG_GPIO_L_PU, BIT(30)),
+ PINCTRL_CONF_DESC(33, REG_GPIO_L_PU, BIT(31)),
+ PINCTRL_CONF_DESC(34, REG_GPIO_H_PU, BIT(0)),
+ PINCTRL_CONF_DESC(35, REG_GPIO_H_PU, BIT(1)),
+ PINCTRL_CONF_DESC(36, REG_GPIO_H_PU, BIT(2)),
+ PINCTRL_CONF_DESC(37, REG_GPIO_H_PU, BIT(3)),
+ PINCTRL_CONF_DESC(38, REG_GPIO_H_PU, BIT(4)),
+ PINCTRL_CONF_DESC(39, REG_GPIO_H_PU, BIT(5)),
+ PINCTRL_CONF_DESC(40, REG_GPIO_H_PU, BIT(6)),
+ PINCTRL_CONF_DESC(41, REG_I2C_SDA_PU, I2C_SCL_PU_MASK),
+ PINCTRL_CONF_DESC(42, REG_I2C_SDA_PU, I2C_SDA_PU_MASK),
+ PINCTRL_CONF_DESC(43, REG_I2C_SDA_PU, AN7583_I2C1_SCL_PU_MASK),
+ PINCTRL_CONF_DESC(44, REG_I2C_SDA_PU, AN7583_I2C1_SDA_PU_MASK),
+ PINCTRL_CONF_DESC(45, REG_I2C_SDA_PU, SPI_CLK_PU_MASK),
+ PINCTRL_CONF_DESC(46, REG_I2C_SDA_PU, SPI_CS0_PU_MASK),
+ PINCTRL_CONF_DESC(47, REG_I2C_SDA_PU, SPI_MOSI_PU_MASK),
+ PINCTRL_CONF_DESC(48, REG_I2C_SDA_PU, SPI_MISO_PU_MASK),
+ PINCTRL_CONF_DESC(49, REG_I2C_SDA_PU, UART1_TXD_PU_MASK),
+ PINCTRL_CONF_DESC(50, REG_I2C_SDA_PU, UART1_RXD_PU_MASK),
+ PINCTRL_CONF_DESC(51, REG_I2C_SDA_PU, PCIE0_RESET_PU_MASK),
+ PINCTRL_CONF_DESC(52, REG_I2C_SDA_PU, PCIE1_RESET_PU_MASK),
+ PINCTRL_CONF_DESC(53, REG_I2C_SDA_PU, AN7583_MDC_0_PU_MASK),
+ PINCTRL_CONF_DESC(54, REG_I2C_SDA_PU, AN7583_MDIO_0_PU_MASK),
+};
+
+static const struct airoha_pinctrl_conf en7581_pinctrl_pulldown_conf[] = {
PINCTRL_CONF_DESC(0, REG_I2C_SDA_PD, UART1_TXD_PD_MASK),
PINCTRL_CONF_DESC(1, REG_I2C_SDA_PD, UART1_RXD_PD_MASK),
PINCTRL_CONF_DESC(2, REG_I2C_SDA_PD, I2C_SDA_PD_MASK),
@@ -2103,7 +1944,63 @@ static const struct airoha_pinctrl_conf airoha_pinctrl_pulldown_conf[] = {
PINCTRL_CONF_DESC(63, REG_I2C_SDA_PD, PCIE2_RESET_PD_MASK),
};
-static const struct airoha_pinctrl_conf airoha_pinctrl_drive_e2_conf[] = {
+static const struct airoha_pinctrl_conf an7583_pinctrl_pulldown_conf[] = {
+ PINCTRL_CONF_DESC(2, REG_GPIO_L_PD, BIT(0)),
+ PINCTRL_CONF_DESC(3, REG_GPIO_L_PD, BIT(1)),
+ PINCTRL_CONF_DESC(4, REG_GPIO_L_PD, BIT(2)),
+ PINCTRL_CONF_DESC(5, REG_GPIO_L_PD, BIT(3)),
+ PINCTRL_CONF_DESC(6, REG_GPIO_L_PD, BIT(4)),
+ PINCTRL_CONF_DESC(7, REG_GPIO_L_PD, BIT(5)),
+ PINCTRL_CONF_DESC(8, REG_GPIO_L_PD, BIT(6)),
+ PINCTRL_CONF_DESC(9, REG_GPIO_L_PD, BIT(7)),
+ PINCTRL_CONF_DESC(10, REG_GPIO_L_PD, BIT(8)),
+ PINCTRL_CONF_DESC(11, REG_GPIO_L_PD, BIT(9)),
+ PINCTRL_CONF_DESC(12, REG_GPIO_L_PD, BIT(10)),
+ PINCTRL_CONF_DESC(13, REG_GPIO_L_PD, BIT(11)),
+ PINCTRL_CONF_DESC(14, REG_GPIO_L_PD, BIT(12)),
+ PINCTRL_CONF_DESC(15, REG_GPIO_L_PD, BIT(13)),
+ PINCTRL_CONF_DESC(16, REG_GPIO_L_PD, BIT(14)),
+ PINCTRL_CONF_DESC(17, REG_GPIO_L_PD, BIT(15)),
+ PINCTRL_CONF_DESC(18, REG_GPIO_L_PD, BIT(16)),
+ PINCTRL_CONF_DESC(19, REG_GPIO_L_PD, BIT(17)),
+ PINCTRL_CONF_DESC(20, REG_GPIO_L_PD, BIT(18)),
+ PINCTRL_CONF_DESC(21, REG_GPIO_L_PD, BIT(18)),
+ PINCTRL_CONF_DESC(22, REG_GPIO_L_PD, BIT(20)),
+ PINCTRL_CONF_DESC(23, REG_GPIO_L_PD, BIT(21)),
+ PINCTRL_CONF_DESC(24, REG_GPIO_L_PD, BIT(22)),
+ PINCTRL_CONF_DESC(25, REG_GPIO_L_PD, BIT(23)),
+ PINCTRL_CONF_DESC(26, REG_GPIO_L_PD, BIT(24)),
+ PINCTRL_CONF_DESC(27, REG_GPIO_L_PD, BIT(25)),
+ PINCTRL_CONF_DESC(28, REG_GPIO_L_PD, BIT(26)),
+ PINCTRL_CONF_DESC(29, REG_GPIO_L_PD, BIT(27)),
+ PINCTRL_CONF_DESC(30, REG_GPIO_L_PD, BIT(28)),
+ PINCTRL_CONF_DESC(31, REG_GPIO_L_PD, BIT(29)),
+ PINCTRL_CONF_DESC(32, REG_GPIO_L_PD, BIT(30)),
+ PINCTRL_CONF_DESC(33, REG_GPIO_L_PD, BIT(31)),
+ PINCTRL_CONF_DESC(34, REG_GPIO_H_PD, BIT(0)),
+ PINCTRL_CONF_DESC(35, REG_GPIO_H_PD, BIT(1)),
+ PINCTRL_CONF_DESC(36, REG_GPIO_H_PD, BIT(2)),
+ PINCTRL_CONF_DESC(37, REG_GPIO_H_PD, BIT(3)),
+ PINCTRL_CONF_DESC(38, REG_GPIO_H_PD, BIT(4)),
+ PINCTRL_CONF_DESC(39, REG_GPIO_H_PD, BIT(5)),
+ PINCTRL_CONF_DESC(40, REG_GPIO_H_PD, BIT(6)),
+ PINCTRL_CONF_DESC(41, REG_I2C_SDA_PD, I2C_SCL_PD_MASK),
+ PINCTRL_CONF_DESC(42, REG_I2C_SDA_PD, I2C_SDA_PD_MASK),
+ PINCTRL_CONF_DESC(43, REG_I2C_SDA_PD, AN7583_I2C1_SCL_PD_MASK),
+ PINCTRL_CONF_DESC(44, REG_I2C_SDA_PD, AN7583_I2C1_SDA_PD_MASK),
+ PINCTRL_CONF_DESC(45, REG_I2C_SDA_PD, SPI_CLK_PD_MASK),
+ PINCTRL_CONF_DESC(46, REG_I2C_SDA_PD, SPI_CS0_PD_MASK),
+ PINCTRL_CONF_DESC(47, REG_I2C_SDA_PD, SPI_MOSI_PD_MASK),
+ PINCTRL_CONF_DESC(48, REG_I2C_SDA_PD, SPI_MISO_PD_MASK),
+ PINCTRL_CONF_DESC(49, REG_I2C_SDA_PD, UART1_TXD_PD_MASK),
+ PINCTRL_CONF_DESC(50, REG_I2C_SDA_PD, UART1_RXD_PD_MASK),
+ PINCTRL_CONF_DESC(51, REG_I2C_SDA_PD, PCIE0_RESET_PD_MASK),
+ PINCTRL_CONF_DESC(52, REG_I2C_SDA_PD, PCIE1_RESET_PD_MASK),
+ PINCTRL_CONF_DESC(53, REG_I2C_SDA_PD, AN7583_MDC_0_PD_MASK),
+ PINCTRL_CONF_DESC(54, REG_I2C_SDA_PD, AN7583_MDIO_0_PD_MASK),
+};
+
+static const struct airoha_pinctrl_conf en7581_pinctrl_drive_e2_conf[] = {
PINCTRL_CONF_DESC(0, REG_I2C_SDA_E2, UART1_TXD_E2_MASK),
PINCTRL_CONF_DESC(1, REG_I2C_SDA_E2, UART1_RXD_E2_MASK),
PINCTRL_CONF_DESC(2, REG_I2C_SDA_E2, I2C_SDA_E2_MASK),
@@ -2164,7 +2061,63 @@ static const struct airoha_pinctrl_conf airoha_pinctrl_drive_e2_conf[] = {
PINCTRL_CONF_DESC(63, REG_I2C_SDA_E2, PCIE2_RESET_E2_MASK),
};
-static const struct airoha_pinctrl_conf airoha_pinctrl_drive_e4_conf[] = {
+static const struct airoha_pinctrl_conf an7583_pinctrl_drive_e2_conf[] = {
+ PINCTRL_CONF_DESC(2, REG_GPIO_L_E2, BIT(0)),
+ PINCTRL_CONF_DESC(3, REG_GPIO_L_E2, BIT(1)),
+ PINCTRL_CONF_DESC(4, REG_GPIO_L_E2, BIT(2)),
+ PINCTRL_CONF_DESC(5, REG_GPIO_L_E2, BIT(3)),
+ PINCTRL_CONF_DESC(6, REG_GPIO_L_E2, BIT(4)),
+ PINCTRL_CONF_DESC(7, REG_GPIO_L_E2, BIT(5)),
+ PINCTRL_CONF_DESC(8, REG_GPIO_L_E2, BIT(6)),
+ PINCTRL_CONF_DESC(9, REG_GPIO_L_E2, BIT(7)),
+ PINCTRL_CONF_DESC(10, REG_GPIO_L_E2, BIT(8)),
+ PINCTRL_CONF_DESC(11, REG_GPIO_L_E2, BIT(9)),
+ PINCTRL_CONF_DESC(12, REG_GPIO_L_E2, BIT(10)),
+ PINCTRL_CONF_DESC(13, REG_GPIO_L_E2, BIT(11)),
+ PINCTRL_CONF_DESC(14, REG_GPIO_L_E2, BIT(12)),
+ PINCTRL_CONF_DESC(15, REG_GPIO_L_E2, BIT(13)),
+ PINCTRL_CONF_DESC(16, REG_GPIO_L_E2, BIT(14)),
+ PINCTRL_CONF_DESC(17, REG_GPIO_L_E2, BIT(15)),
+ PINCTRL_CONF_DESC(18, REG_GPIO_L_E2, BIT(16)),
+ PINCTRL_CONF_DESC(19, REG_GPIO_L_E2, BIT(17)),
+ PINCTRL_CONF_DESC(20, REG_GPIO_L_E2, BIT(18)),
+ PINCTRL_CONF_DESC(21, REG_GPIO_L_E2, BIT(18)),
+ PINCTRL_CONF_DESC(22, REG_GPIO_L_E2, BIT(20)),
+ PINCTRL_CONF_DESC(23, REG_GPIO_L_E2, BIT(21)),
+ PINCTRL_CONF_DESC(24, REG_GPIO_L_E2, BIT(22)),
+ PINCTRL_CONF_DESC(25, REG_GPIO_L_E2, BIT(23)),
+ PINCTRL_CONF_DESC(26, REG_GPIO_L_E2, BIT(24)),
+ PINCTRL_CONF_DESC(27, REG_GPIO_L_E2, BIT(25)),
+ PINCTRL_CONF_DESC(28, REG_GPIO_L_E2, BIT(26)),
+ PINCTRL_CONF_DESC(29, REG_GPIO_L_E2, BIT(27)),
+ PINCTRL_CONF_DESC(30, REG_GPIO_L_E2, BIT(28)),
+ PINCTRL_CONF_DESC(31, REG_GPIO_L_E2, BIT(29)),
+ PINCTRL_CONF_DESC(32, REG_GPIO_L_E2, BIT(30)),
+ PINCTRL_CONF_DESC(33, REG_GPIO_L_E2, BIT(31)),
+ PINCTRL_CONF_DESC(34, REG_GPIO_H_E2, BIT(0)),
+ PINCTRL_CONF_DESC(35, REG_GPIO_H_E2, BIT(1)),
+ PINCTRL_CONF_DESC(36, REG_GPIO_H_E2, BIT(2)),
+ PINCTRL_CONF_DESC(37, REG_GPIO_H_E2, BIT(3)),
+ PINCTRL_CONF_DESC(38, REG_GPIO_H_E2, BIT(4)),
+ PINCTRL_CONF_DESC(39, REG_GPIO_H_E2, BIT(5)),
+ PINCTRL_CONF_DESC(40, REG_GPIO_H_E2, BIT(6)),
+ PINCTRL_CONF_DESC(41, REG_I2C_SDA_E2, I2C_SCL_E2_MASK),
+ PINCTRL_CONF_DESC(42, REG_I2C_SDA_E2, I2C_SDA_E2_MASK),
+ PINCTRL_CONF_DESC(43, REG_I2C_SDA_E2, AN7583_I2C1_SCL_E2_MASK),
+ PINCTRL_CONF_DESC(44, REG_I2C_SDA_E2, AN7583_I2C1_SDA_E2_MASK),
+ PINCTRL_CONF_DESC(45, REG_I2C_SDA_E2, SPI_CLK_E2_MASK),
+ PINCTRL_CONF_DESC(46, REG_I2C_SDA_E2, SPI_CS0_E2_MASK),
+ PINCTRL_CONF_DESC(47, REG_I2C_SDA_E2, SPI_MOSI_E2_MASK),
+ PINCTRL_CONF_DESC(48, REG_I2C_SDA_E2, SPI_MISO_E2_MASK),
+ PINCTRL_CONF_DESC(49, REG_I2C_SDA_E2, UART1_TXD_E2_MASK),
+ PINCTRL_CONF_DESC(50, REG_I2C_SDA_E2, UART1_RXD_E2_MASK),
+ PINCTRL_CONF_DESC(51, REG_I2C_SDA_E2, PCIE0_RESET_E2_MASK),
+ PINCTRL_CONF_DESC(52, REG_I2C_SDA_E2, PCIE1_RESET_E2_MASK),
+ PINCTRL_CONF_DESC(53, REG_I2C_SDA_E2, AN7583_MDC_0_E2_MASK),
+ PINCTRL_CONF_DESC(54, REG_I2C_SDA_E2, AN7583_MDIO_0_E2_MASK),
+};
+
+static const struct airoha_pinctrl_conf en7581_pinctrl_drive_e4_conf[] = {
PINCTRL_CONF_DESC(0, REG_I2C_SDA_E4, UART1_TXD_E4_MASK),
PINCTRL_CONF_DESC(1, REG_I2C_SDA_E4, UART1_RXD_E4_MASK),
PINCTRL_CONF_DESC(2, REG_I2C_SDA_E4, I2C_SDA_E4_MASK),
@@ -2225,12 +2178,73 @@ static const struct airoha_pinctrl_conf airoha_pinctrl_drive_e4_conf[] = {
PINCTRL_CONF_DESC(63, REG_I2C_SDA_E4, PCIE2_RESET_E4_MASK),
};
-static const struct airoha_pinctrl_conf airoha_pinctrl_pcie_rst_od_conf[] = {
+static const struct airoha_pinctrl_conf an7583_pinctrl_drive_e4_conf[] = {
+ PINCTRL_CONF_DESC(2, REG_GPIO_L_E4, BIT(0)),
+ PINCTRL_CONF_DESC(3, REG_GPIO_L_E4, BIT(1)),
+ PINCTRL_CONF_DESC(4, REG_GPIO_L_E4, BIT(2)),
+ PINCTRL_CONF_DESC(5, REG_GPIO_L_E4, BIT(3)),
+ PINCTRL_CONF_DESC(6, REG_GPIO_L_E4, BIT(4)),
+ PINCTRL_CONF_DESC(7, REG_GPIO_L_E4, BIT(5)),
+ PINCTRL_CONF_DESC(8, REG_GPIO_L_E4, BIT(6)),
+ PINCTRL_CONF_DESC(9, REG_GPIO_L_E4, BIT(7)),
+ PINCTRL_CONF_DESC(10, REG_GPIO_L_E4, BIT(8)),
+ PINCTRL_CONF_DESC(11, REG_GPIO_L_E4, BIT(9)),
+ PINCTRL_CONF_DESC(12, REG_GPIO_L_E4, BIT(10)),
+ PINCTRL_CONF_DESC(13, REG_GPIO_L_E4, BIT(11)),
+ PINCTRL_CONF_DESC(14, REG_GPIO_L_E4, BIT(12)),
+ PINCTRL_CONF_DESC(15, REG_GPIO_L_E4, BIT(13)),
+ PINCTRL_CONF_DESC(16, REG_GPIO_L_E4, BIT(14)),
+ PINCTRL_CONF_DESC(17, REG_GPIO_L_E4, BIT(15)),
+ PINCTRL_CONF_DESC(18, REG_GPIO_L_E4, BIT(16)),
+ PINCTRL_CONF_DESC(19, REG_GPIO_L_E4, BIT(17)),
+ PINCTRL_CONF_DESC(20, REG_GPIO_L_E4, BIT(18)),
+ PINCTRL_CONF_DESC(21, REG_GPIO_L_E4, BIT(18)),
+ PINCTRL_CONF_DESC(22, REG_GPIO_L_E4, BIT(20)),
+ PINCTRL_CONF_DESC(23, REG_GPIO_L_E4, BIT(21)),
+ PINCTRL_CONF_DESC(24, REG_GPIO_L_E4, BIT(22)),
+ PINCTRL_CONF_DESC(25, REG_GPIO_L_E4, BIT(23)),
+ PINCTRL_CONF_DESC(26, REG_GPIO_L_E4, BIT(24)),
+ PINCTRL_CONF_DESC(27, REG_GPIO_L_E4, BIT(25)),
+ PINCTRL_CONF_DESC(28, REG_GPIO_L_E4, BIT(26)),
+ PINCTRL_CONF_DESC(29, REG_GPIO_L_E4, BIT(27)),
+ PINCTRL_CONF_DESC(30, REG_GPIO_L_E4, BIT(28)),
+ PINCTRL_CONF_DESC(31, REG_GPIO_L_E4, BIT(29)),
+ PINCTRL_CONF_DESC(32, REG_GPIO_L_E4, BIT(30)),
+ PINCTRL_CONF_DESC(33, REG_GPIO_L_E4, BIT(31)),
+ PINCTRL_CONF_DESC(34, REG_GPIO_H_E4, BIT(0)),
+ PINCTRL_CONF_DESC(35, REG_GPIO_H_E4, BIT(1)),
+ PINCTRL_CONF_DESC(36, REG_GPIO_H_E4, BIT(2)),
+ PINCTRL_CONF_DESC(37, REG_GPIO_H_E4, BIT(3)),
+ PINCTRL_CONF_DESC(38, REG_GPIO_H_E4, BIT(4)),
+ PINCTRL_CONF_DESC(39, REG_GPIO_H_E4, BIT(5)),
+ PINCTRL_CONF_DESC(40, REG_GPIO_H_E4, BIT(6)),
+ PINCTRL_CONF_DESC(41, REG_I2C_SDA_E4, I2C_SCL_E4_MASK),
+ PINCTRL_CONF_DESC(42, REG_I2C_SDA_E4, I2C_SDA_E4_MASK),
+ PINCTRL_CONF_DESC(43, REG_I2C_SDA_E4, AN7583_I2C1_SCL_E4_MASK),
+ PINCTRL_CONF_DESC(44, REG_I2C_SDA_E4, AN7583_I2C1_SDA_E4_MASK),
+ PINCTRL_CONF_DESC(45, REG_I2C_SDA_E4, SPI_CLK_E4_MASK),
+ PINCTRL_CONF_DESC(46, REG_I2C_SDA_E4, SPI_CS0_E4_MASK),
+ PINCTRL_CONF_DESC(47, REG_I2C_SDA_E4, SPI_MOSI_E4_MASK),
+ PINCTRL_CONF_DESC(48, REG_I2C_SDA_E4, SPI_MISO_E4_MASK),
+ PINCTRL_CONF_DESC(49, REG_I2C_SDA_E4, UART1_TXD_E4_MASK),
+ PINCTRL_CONF_DESC(50, REG_I2C_SDA_E4, UART1_RXD_E4_MASK),
+ PINCTRL_CONF_DESC(51, REG_I2C_SDA_E4, PCIE0_RESET_E4_MASK),
+ PINCTRL_CONF_DESC(52, REG_I2C_SDA_E4, PCIE1_RESET_E4_MASK),
+ PINCTRL_CONF_DESC(53, REG_I2C_SDA_E4, AN7583_MDC_0_E4_MASK),
+ PINCTRL_CONF_DESC(54, REG_I2C_SDA_E4, AN7583_MDIO_0_E4_MASK),
+};
+
+static const struct airoha_pinctrl_conf en7581_pinctrl_pcie_rst_od_conf[] = {
PINCTRL_CONF_DESC(61, REG_PCIE_RESET_OD, PCIE0_RESET_OD_MASK),
PINCTRL_CONF_DESC(62, REG_PCIE_RESET_OD, PCIE1_RESET_OD_MASK),
PINCTRL_CONF_DESC(63, REG_PCIE_RESET_OD, PCIE2_RESET_OD_MASK),
};
+static const struct airoha_pinctrl_conf an7583_pinctrl_pcie_rst_od_conf[] = {
+ PINCTRL_CONF_DESC(51, REG_PCIE_RESET_OD, PCIE0_RESET_OD_MASK),
+ PINCTRL_CONF_DESC(52, REG_PCIE_RESET_OD, PCIE1_RESET_OD_MASK),
+};
+
static int airoha_convert_pin_to_reg_offset(struct pinctrl_dev *pctrl_dev,
struct pinctrl_gpio_range *range,
int pin)
@@ -2395,7 +2409,7 @@ static const struct irq_chip airoha_gpio_irq_chip = {
};
static int airoha_pinctrl_add_gpiochip(struct airoha_pinctrl *pinctrl,
- struct platform_device *pdev)
+ struct platform_device *pdev)
{
struct airoha_pinctrl_gpiochip *chip = &pinctrl->gpiochip;
struct gpio_chip *gc = &chip->chip;
@@ -2430,7 +2444,7 @@ static int airoha_pinctrl_add_gpiochip(struct airoha_pinctrl *pinctrl,
return irq;
err = devm_request_irq(dev, irq, airoha_irq_handler, IRQF_SHARED,
- dev_name(dev), pinctrl);
+ dev_name(dev), pinctrl);
if (err) {
dev_err(dev, "error requesting irq %d: %d\n", irq, err);
return err;
@@ -2494,8 +2508,8 @@ static int airoha_pinmux_set_mux(struct pinctrl_dev *pctrl_dev,
}
static int airoha_pinmux_set_direction(struct pinctrl_dev *pctrl_dev,
- struct pinctrl_gpio_range *range,
- unsigned int p, bool input)
+ struct pinctrl_gpio_range *range,
+ unsigned int p, bool input)
{
struct airoha_pinctrl *pinctrl = pinctrl_dev_get_drvdata(pctrl_dev);
u32 mask, index;
@@ -2546,12 +2560,17 @@ airoha_pinctrl_get_conf_reg(const struct airoha_pinctrl_conf *conf,
}
static int airoha_pinctrl_get_conf(struct airoha_pinctrl *pinctrl,
- const struct airoha_pinctrl_conf *conf,
- int conf_size, int pin, u32 *val)
+ enum airoha_pinctrl_confs_type conf_type,
+ int pin, u32 *val)
{
+ const struct airoha_pinctrl_confs_info *confs_info;
const struct airoha_pinctrl_reg *reg;
- reg = airoha_pinctrl_get_conf_reg(conf, conf_size, pin);
+ confs_info = &pinctrl->confs_info[conf_type];
+
+ reg = airoha_pinctrl_get_conf_reg(confs_info->confs,
+ confs_info->num_confs,
+ pin);
if (!reg)
return -EINVAL;
@@ -2564,62 +2583,57 @@ static int airoha_pinctrl_get_conf(struct airoha_pinctrl *pinctrl,
}
static int airoha_pinctrl_set_conf(struct airoha_pinctrl *pinctrl,
- const struct airoha_pinctrl_conf *conf,
- int conf_size, int pin, u32 val)
+ enum airoha_pinctrl_confs_type conf_type,
+ int pin, u32 val)
{
+ const struct airoha_pinctrl_confs_info *confs_info;
const struct airoha_pinctrl_reg *reg = NULL;
- reg = airoha_pinctrl_get_conf_reg(conf, conf_size, pin);
+ confs_info = &pinctrl->confs_info[conf_type];
+
+ reg = airoha_pinctrl_get_conf_reg(confs_info->confs,
+ confs_info->num_confs,
+ pin);
if (!reg)
return -EINVAL;
if (regmap_update_bits(pinctrl->chip_scu, reg->offset, reg->mask,
- val << __ffs(reg->mask)))
+ val << __ffs(reg->mask)))
return -EINVAL;
return 0;
}
#define airoha_pinctrl_get_pullup_conf(pinctrl, pin, val) \
- airoha_pinctrl_get_conf((pinctrl), airoha_pinctrl_pullup_conf, \
- ARRAY_SIZE(airoha_pinctrl_pullup_conf), \
+ airoha_pinctrl_get_conf((pinctrl), AIROHA_PINCTRL_CONFS_PULLUP, \
(pin), (val))
#define airoha_pinctrl_get_pulldown_conf(pinctrl, pin, val) \
- airoha_pinctrl_get_conf((pinctrl), airoha_pinctrl_pulldown_conf, \
- ARRAY_SIZE(airoha_pinctrl_pulldown_conf), \
+ airoha_pinctrl_get_conf((pinctrl), AIROHA_PINCTRL_CONFS_PULLDOWN, \
(pin), (val))
#define airoha_pinctrl_get_drive_e2_conf(pinctrl, pin, val) \
- airoha_pinctrl_get_conf((pinctrl), airoha_pinctrl_drive_e2_conf, \
- ARRAY_SIZE(airoha_pinctrl_drive_e2_conf), \
+ airoha_pinctrl_get_conf((pinctrl), AIROHA_PINCTRL_CONFS_DRIVE_E2, \
(pin), (val))
#define airoha_pinctrl_get_drive_e4_conf(pinctrl, pin, val) \
- airoha_pinctrl_get_conf((pinctrl), airoha_pinctrl_drive_e4_conf, \
- ARRAY_SIZE(airoha_pinctrl_drive_e4_conf), \
+ airoha_pinctrl_get_conf((pinctrl), AIROHA_PINCTRL_CONFS_DRIVE_E4, \
(pin), (val))
#define airoha_pinctrl_get_pcie_rst_od_conf(pinctrl, pin, val) \
- airoha_pinctrl_get_conf((pinctrl), airoha_pinctrl_pcie_rst_od_conf, \
- ARRAY_SIZE(airoha_pinctrl_pcie_rst_od_conf), \
+ airoha_pinctrl_get_conf((pinctrl), AIROHA_PINCTRL_CONFS_PCIE_RST_OD, \
(pin), (val))
#define airoha_pinctrl_set_pullup_conf(pinctrl, pin, val) \
- airoha_pinctrl_set_conf((pinctrl), airoha_pinctrl_pullup_conf, \
- ARRAY_SIZE(airoha_pinctrl_pullup_conf), \
+ airoha_pinctrl_set_conf((pinctrl), AIROHA_PINCTRL_CONFS_PULLUP, \
(pin), (val))
#define airoha_pinctrl_set_pulldown_conf(pinctrl, pin, val) \
- airoha_pinctrl_set_conf((pinctrl), airoha_pinctrl_pulldown_conf, \
- ARRAY_SIZE(airoha_pinctrl_pulldown_conf), \
+ airoha_pinctrl_set_conf((pinctrl), AIROHA_PINCTRL_CONFS_PULLDOWN, \
(pin), (val))
#define airoha_pinctrl_set_drive_e2_conf(pinctrl, pin, val) \
- airoha_pinctrl_set_conf((pinctrl), airoha_pinctrl_drive_e2_conf, \
- ARRAY_SIZE(airoha_pinctrl_drive_e2_conf), \
+ airoha_pinctrl_set_conf((pinctrl), AIROHA_PINCTRL_CONFS_DRIVE_E2, \
(pin), (val))
#define airoha_pinctrl_set_drive_e4_conf(pinctrl, pin, val) \
- airoha_pinctrl_set_conf((pinctrl), airoha_pinctrl_drive_e4_conf, \
- ARRAY_SIZE(airoha_pinctrl_drive_e4_conf), \
+ airoha_pinctrl_set_conf((pinctrl), AIROHA_PINCTRL_CONFS_DRIVE_E4, \
(pin), (val))
#define airoha_pinctrl_set_pcie_rst_od_conf(pinctrl, pin, val) \
- airoha_pinctrl_set_conf((pinctrl), airoha_pinctrl_pcie_rst_od_conf, \
- ARRAY_SIZE(airoha_pinctrl_pcie_rst_od_conf), \
+ airoha_pinctrl_set_conf((pinctrl), AIROHA_PINCTRL_CONFS_PCIE_RST_OD, \
(pin), (val))
static int airoha_pinconf_get_direction(struct pinctrl_dev *pctrl_dev, u32 p)
@@ -2796,13 +2810,14 @@ static int airoha_pinconf_set(struct pinctrl_dev *pctrl_dev,
static int airoha_pinconf_group_get(struct pinctrl_dev *pctrl_dev,
unsigned int group, unsigned long *config)
{
+ struct airoha_pinctrl *pinctrl = pinctrl_dev_get_drvdata(pctrl_dev);
u32 cur_config = 0;
int i;
- for (i = 0; i < airoha_pinctrl_groups[group].npins; i++) {
+ for (i = 0; i < pinctrl->grps[group].npins; i++) {
if (airoha_pinconf_get(pctrl_dev,
- airoha_pinctrl_groups[group].pins[i],
- config))
+ pinctrl->grps[group].pins[i],
+ config))
return -ENOTSUPP;
if (i && cur_config != *config)
@@ -2818,13 +2833,14 @@ static int airoha_pinconf_group_set(struct pinctrl_dev *pctrl_dev,
unsigned int group, unsigned long *configs,
unsigned int num_configs)
{
+ struct airoha_pinctrl *pinctrl = pinctrl_dev_get_drvdata(pctrl_dev);
int i;
- for (i = 0; i < airoha_pinctrl_groups[group].npins; i++) {
+ for (i = 0; i < pinctrl->grps[group].npins; i++) {
int err;
err = airoha_pinconf_set(pctrl_dev,
- airoha_pinctrl_groups[group].pins[i],
+ pinctrl->grps[group].pins[i],
configs, num_configs);
if (err)
return err;
@@ -2850,23 +2866,16 @@ static const struct pinctrl_ops airoha_pctlops = {
.dt_free_map = pinconf_generic_dt_free_map,
};
-static const struct pinctrl_desc airoha_pinctrl_desc = {
- .name = KBUILD_MODNAME,
- .owner = THIS_MODULE,
- .pctlops = &airoha_pctlops,
- .pmxops = &airoha_pmxops,
- .confops = &airoha_confops,
- .pins = airoha_pinctrl_pins,
- .npins = ARRAY_SIZE(airoha_pinctrl_pins),
-};
-
static int airoha_pinctrl_probe(struct platform_device *pdev)
{
+ const struct airoha_pinctrl_match_data *data;
struct device *dev = &pdev->dev;
struct airoha_pinctrl *pinctrl;
struct regmap *map;
int err, i;
+ data = device_get_match_data(dev);
+
pinctrl = devm_kzalloc(dev, sizeof(*pinctrl), GFP_KERNEL);
if (!pinctrl)
return -ENOMEM;
@@ -2881,14 +2890,23 @@ static int airoha_pinctrl_probe(struct platform_device *pdev)
pinctrl->chip_scu = map;
- err = devm_pinctrl_register_and_init(dev, &airoha_pinctrl_desc,
+ /* Init pinctrl desc struct */
+ pinctrl->desc.name = KBUILD_MODNAME;
+ pinctrl->desc.owner = THIS_MODULE;
+ pinctrl->desc.pctlops = &airoha_pctlops;
+ pinctrl->desc.pmxops = &airoha_pmxops;
+ pinctrl->desc.confops = &airoha_confops;
+ pinctrl->desc.pins = data->pins;
+ pinctrl->desc.npins = data->num_pins;
+
+ err = devm_pinctrl_register_and_init(dev, &pinctrl->desc,
pinctrl, &pinctrl->ctrl);
if (err)
return err;
/* build pin groups */
- for (i = 0; i < ARRAY_SIZE(airoha_pinctrl_groups); i++) {
- const struct pingroup *grp = &airoha_pinctrl_groups[i];
+ for (i = 0; i < data->num_grps; i++) {
+ const struct pingroup *grp = &data->grps[i];
err = pinctrl_generic_add_group(pinctrl->ctrl, grp->name,
grp->pins, grp->npins,
@@ -2901,10 +2919,10 @@ static int airoha_pinctrl_probe(struct platform_device *pdev)
}
/* build functions */
- for (i = 0; i < ARRAY_SIZE(airoha_pinctrl_funcs); i++) {
+ for (i = 0; i < data->num_funcs; i++) {
const struct airoha_pinctrl_func *func;
- func = &airoha_pinctrl_funcs[i];
+ func = &data->funcs[i];
err = pinmux_generic_add_pinfunction(pinctrl->ctrl,
&func->desc,
(void *)func);
@@ -2915,6 +2933,10 @@ static int airoha_pinctrl_probe(struct platform_device *pdev)
}
}
+ pinctrl->grps = data->grps;
+ pinctrl->funcs = data->funcs;
+ pinctrl->confs_info = data->confs_info;
+
err = pinctrl_enable(pinctrl->ctrl);
if (err)
return err;
@@ -2923,8 +2945,71 @@ static int airoha_pinctrl_probe(struct platform_device *pdev)
return airoha_pinctrl_add_gpiochip(pinctrl, pdev);
}
+static const struct airoha_pinctrl_match_data en7581_pinctrl_match_data = {
+ .pins = en7581_pinctrl_pins,
+ .num_pins = ARRAY_SIZE(en7581_pinctrl_pins),
+ .grps = en7581_pinctrl_groups,
+ .num_grps = ARRAY_SIZE(en7581_pinctrl_groups),
+ .funcs = en7581_pinctrl_funcs,
+ .num_funcs = ARRAY_SIZE(en7581_pinctrl_funcs),
+ .confs_info = {
+ [AIROHA_PINCTRL_CONFS_PULLUP] = {
+ .confs = en7581_pinctrl_pullup_conf,
+ .num_confs = ARRAY_SIZE(en7581_pinctrl_pullup_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_PULLDOWN] = {
+ .confs = en7581_pinctrl_pulldown_conf,
+ .num_confs = ARRAY_SIZE(en7581_pinctrl_pulldown_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_DRIVE_E2] = {
+ .confs = en7581_pinctrl_drive_e2_conf,
+ .num_confs = ARRAY_SIZE(en7581_pinctrl_drive_e2_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_DRIVE_E4] = {
+ .confs = en7581_pinctrl_drive_e4_conf,
+ .num_confs = ARRAY_SIZE(en7581_pinctrl_drive_e4_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_PCIE_RST_OD] = {
+ .confs = en7581_pinctrl_pcie_rst_od_conf,
+ .num_confs = ARRAY_SIZE(en7581_pinctrl_pcie_rst_od_conf),
+ },
+ },
+};
+
+static const struct airoha_pinctrl_match_data an7583_pinctrl_match_data = {
+ .pins = an7583_pinctrl_pins,
+ .num_pins = ARRAY_SIZE(an7583_pinctrl_pins),
+ .grps = an7583_pinctrl_groups,
+ .num_grps = ARRAY_SIZE(an7583_pinctrl_groups),
+ .funcs = an7583_pinctrl_funcs,
+ .num_funcs = ARRAY_SIZE(an7583_pinctrl_funcs),
+ .confs_info = {
+ [AIROHA_PINCTRL_CONFS_PULLUP] = {
+ .confs = an7583_pinctrl_pullup_conf,
+ .num_confs = ARRAY_SIZE(an7583_pinctrl_pullup_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_PULLDOWN] = {
+ .confs = an7583_pinctrl_pulldown_conf,
+ .num_confs = ARRAY_SIZE(an7583_pinctrl_pulldown_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_DRIVE_E2] = {
+ .confs = an7583_pinctrl_drive_e2_conf,
+ .num_confs = ARRAY_SIZE(an7583_pinctrl_drive_e2_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_DRIVE_E4] = {
+ .confs = an7583_pinctrl_drive_e4_conf,
+ .num_confs = ARRAY_SIZE(an7583_pinctrl_drive_e4_conf),
+ },
+ [AIROHA_PINCTRL_CONFS_PCIE_RST_OD] = {
+ .confs = an7583_pinctrl_pcie_rst_od_conf,
+ .num_confs = ARRAY_SIZE(an7583_pinctrl_pcie_rst_od_conf),
+ },
+ },
+};
+
static const struct of_device_id airoha_pinctrl_of_match[] = {
- { .compatible = "airoha,en7581-pinctrl" },
+ { .compatible = "airoha,en7581-pinctrl", .data = &en7581_pinctrl_match_data },
+ { .compatible = "airoha,an7583-pinctrl", .data = &an7583_pinctrl_match_data },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, airoha_pinctrl_of_match);
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt6878.c b/drivers/pinctrl/mediatek/pinctrl-mt6878.c
new file mode 100644
index 000000000000..b59ae089128a
--- /dev/null
+++ b/drivers/pinctrl/mediatek/pinctrl-mt6878.c
@@ -0,0 +1,1478 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2023 MediaTek Inc.
+ * Author: Light Hsieh <light.hsieh@mediatek.com>
+ *
+ * Copyright (C) 2025 Igor Belwon <igor.belwon@mentallysanemainliners.org>
+ */
+
+#include <linux/module.h>
+#include "pinctrl-mtk-mt6878.h"
+#include "pinctrl-paris.h"
+
+/* MT6878 have multiple bases to program pin configuration listed as the below:
+ * GPIO_BASE: 0x10005000
+ * IOCFG_BL_BASE: 0x11D10000
+ * IOCFG_BM_BASE: 0x11D30000
+ * IOCFG_BR_BASE: 0x11D40000
+ * IOCFG_BL1_BASE: 0x11D50000
+ * IOCFG_BR1_BASE: 0x11D60000
+ * IOCFG_LM_BASE: 0x11E20000
+ * IOCFG_LT_BASE: 0x11E30000
+ * IOCFG_RM_BASE: 0x11EB0000
+ * IOCFG_RT_BASE: 0x11EC0000
+ * _i_based could be used to indicate what base the pin should be mapped into.
+ */
+
+#define PIN_FIELD_BASE(s_pin, e_pin, i_base, s_addr, x_addrs, s_bit, x_bits) \
+ PIN_FIELD_CALC(s_pin, e_pin, i_base, s_addr, x_addrs, s_bit, x_bits, \
+ 32, 0)
+
+#define PINS_FIELD_BASE(s_pin, e_pin, i_base, s_addr, x_addrs, s_bit, x_bits) \
+ PIN_FIELD_CALC(s_pin, e_pin, i_base, s_addr, x_addrs, s_bit, x_bits, \
+ 32, 1)
+
+static const struct mtk_pin_field_calc mt6878_pin_mode_range[] = {
+ PIN_FIELD(0, 195, 0x300, 0x10, 0, 4),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_dir_range[] = {
+ PIN_FIELD(0, 195, 0x0, 0x10, 0, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_di_range[] = {
+ PIN_FIELD(0, 195, 0x200, 0x10, 0, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_do_range[] = {
+ PIN_FIELD(0, 195, 0x100, 0x10, 0, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_ies_range[] = {
+ PIN_FIELD_BASE(0, 0, 3, 0x0070, 0x10, 9, 1),
+ PIN_FIELD_BASE(1, 1, 3, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(2, 2, 3, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(3, 3, 3, 0x0070, 0x10, 12, 1),
+ PIN_FIELD_BASE(4, 4, 3, 0x0070, 0x10, 13, 1),
+ PIN_FIELD_BASE(5, 5, 3, 0x0070, 0x10, 14, 1),
+ PIN_FIELD_BASE(6, 6, 4, 0x0050, 0x10, 13, 1),
+ PIN_FIELD_BASE(7, 7, 4, 0x0050, 0x10, 14, 1),
+ PIN_FIELD_BASE(8, 8, 4, 0x0050, 0x10, 15, 1),
+ PIN_FIELD_BASE(9, 9, 4, 0x0050, 0x10, 16, 1),
+ PIN_FIELD_BASE(10, 10, 4, 0x0050, 0x10, 10, 1),
+ PIN_FIELD_BASE(11, 11, 4, 0x0050, 0x10, 11, 1),
+ PIN_FIELD_BASE(12, 12, 4, 0x0050, 0x10, 12, 1),
+ PIN_FIELD_BASE(13, 13, 6, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(14, 14, 6, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(15, 15, 6, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(16, 16, 6, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(17, 17, 6, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(18, 18, 6, 0x0070, 0x10, 9, 1),
+ PIN_FIELD_BASE(19, 19, 3, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(20, 20, 3, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(21, 21, 3, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(22, 22, 3, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(23, 23, 3, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(24, 24, 5, 0x0040, 0x10, 1, 1),
+ PIN_FIELD_BASE(25, 25, 3, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(26, 26, 3, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(27, 27, 3, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(28, 28, 3, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(29, 29, 6, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(30, 30, 6, 0x0070, 0x10, 12, 1),
+ PIN_FIELD_BASE(31, 31, 6, 0x0070, 0x10, 13, 1),
+ PIN_FIELD_BASE(32, 32, 6, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(33, 33, 9, 0x0050, 0x10, 0, 1),
+ PIN_FIELD_BASE(34, 34, 9, 0x0050, 0x10, 1, 1),
+ PIN_FIELD_BASE(35, 35, 9, 0x0050, 0x10, 2, 1),
+ PIN_FIELD_BASE(36, 36, 8, 0x0090, 0x10, 0, 1),
+ PIN_FIELD_BASE(37, 37, 8, 0x0090, 0x10, 1, 1),
+ PIN_FIELD_BASE(38, 38, 8, 0x0090, 0x10, 2, 1),
+ PIN_FIELD_BASE(39, 39, 8, 0x0090, 0x10, 3, 1),
+ PIN_FIELD_BASE(40, 40, 8, 0x0090, 0x10, 4, 1),
+ PIN_FIELD_BASE(41, 41, 4, 0x0050, 0x10, 20, 1),
+ PIN_FIELD_BASE(42, 42, 4, 0x0050, 0x10, 17, 1),
+ PIN_FIELD_BASE(43, 43, 4, 0x0050, 0x10, 19, 1),
+ PIN_FIELD_BASE(44, 44, 4, 0x0050, 0x10, 21, 1),
+ PIN_FIELD_BASE(45, 45, 4, 0x0050, 0x10, 18, 1),
+ PIN_FIELD_BASE(46, 46, 4, 0x0050, 0x10, 22, 1),
+ PIN_FIELD_BASE(47, 47, 4, 0x0050, 0x10, 23, 1),
+ PIN_FIELD_BASE(48, 48, 3, 0x0070, 0x10, 25, 1),
+ PIN_FIELD_BASE(49, 49, 3, 0x0070, 0x10, 23, 1),
+ PIN_FIELD_BASE(50, 50, 3, 0x0070, 0x10, 26, 1),
+ PIN_FIELD_BASE(51, 51, 3, 0x0070, 0x10, 24, 1),
+ PIN_FIELD_BASE(52, 52, 3, 0x0070, 0x10, 17, 1),
+ PIN_FIELD_BASE(53, 53, 3, 0x0070, 0x10, 18, 1),
+ PIN_FIELD_BASE(54, 54, 3, 0x0070, 0x10, 15, 1),
+ PIN_FIELD_BASE(55, 55, 3, 0x0070, 0x10, 16, 1),
+ PIN_FIELD_BASE(56, 56, 5, 0x0040, 0x10, 8, 1),
+ PIN_FIELD_BASE(57, 57, 5, 0x0040, 0x10, 9, 1),
+ PIN_FIELD_BASE(58, 58, 3, 0x0070, 0x10, 22, 1),
+ PIN_FIELD_BASE(59, 59, 3, 0x0070, 0x10, 21, 1),
+ PIN_FIELD_BASE(60, 60, 8, 0x0090, 0x10, 21, 1),
+ PIN_FIELD_BASE(61, 61, 8, 0x0090, 0x10, 22, 1),
+ PIN_FIELD_BASE(62, 62, 8, 0x0090, 0x10, 24, 1),
+ PIN_FIELD_BASE(63, 63, 8, 0x0090, 0x10, 23, 1),
+ PIN_FIELD_BASE(64, 64, 8, 0x0090, 0x10, 25, 1),
+ PIN_FIELD_BASE(65, 65, 8, 0x0090, 0x10, 26, 1),
+ PIN_FIELD_BASE(66, 66, 8, 0x0090, 0x10, 28, 1),
+ PIN_FIELD_BASE(67, 67, 8, 0x0090, 0x10, 27, 1),
+ PIN_FIELD_BASE(68, 68, 5, 0x0040, 0x10, 3, 1),
+ PIN_FIELD_BASE(69, 69, 5, 0x0040, 0x10, 4, 1),
+ PIN_FIELD_BASE(70, 70, 5, 0x0040, 0x10, 6, 1),
+ PIN_FIELD_BASE(71, 71, 5, 0x0040, 0x10, 5, 1),
+ PIN_FIELD_BASE(72, 72, 5, 0x0040, 0x10, 10, 1),
+ PIN_FIELD_BASE(73, 73, 5, 0x0040, 0x10, 11, 1),
+ PIN_FIELD_BASE(74, 74, 5, 0x0040, 0x10, 13, 1),
+ PIN_FIELD_BASE(75, 75, 5, 0x0040, 0x10, 12, 1),
+ PIN_FIELD_BASE(76, 76, 5, 0x0040, 0x10, 0, 1),
+ PIN_FIELD_BASE(77, 77, 2, 0x0040, 0x10, 0, 1),
+ PIN_FIELD_BASE(78, 78, 2, 0x0040, 0x10, 1, 1),
+ PIN_FIELD_BASE(79, 79, 2, 0x0040, 0x10, 2, 1),
+ PIN_FIELD_BASE(80, 80, 2, 0x0040, 0x10, 3, 1),
+ PIN_FIELD_BASE(81, 81, 2, 0x0040, 0x10, 4, 1),
+ PIN_FIELD_BASE(82, 82, 2, 0x0040, 0x10, 5, 1),
+ PIN_FIELD_BASE(83, 83, 2, 0x0040, 0x10, 9, 1),
+ PIN_FIELD_BASE(84, 84, 2, 0x0040, 0x10, 11, 1),
+ PIN_FIELD_BASE(85, 85, 2, 0x0040, 0x10, 10, 1),
+ PIN_FIELD_BASE(86, 86, 2, 0x0040, 0x10, 12, 1),
+ PIN_FIELD_BASE(87, 87, 2, 0x0040, 0x10, 14, 1),
+ PIN_FIELD_BASE(88, 88, 2, 0x0040, 0x10, 13, 1),
+ PIN_FIELD_BASE(89, 89, 4, 0x0050, 0x10, 9, 1),
+ PIN_FIELD_BASE(90, 90, 4, 0x0050, 0x10, 24, 1),
+ PIN_FIELD_BASE(91, 91, 4, 0x0050, 0x10, 8, 1),
+ PIN_FIELD_BASE(92, 92, 8, 0x0090, 0x10, 5, 1),
+ PIN_FIELD_BASE(93, 93, 8, 0x0090, 0x10, 6, 1),
+ PIN_FIELD_BASE(94, 94, 8, 0x0090, 0x10, 7, 1),
+ PIN_FIELD_BASE(95, 95, 8, 0x0090, 0x10, 8, 1),
+ PIN_FIELD_BASE(96, 96, 8, 0x0090, 0x10, 9, 1),
+ PIN_FIELD_BASE(97, 97, 1, 0x0070, 0x10, 19, 1),
+ PIN_FIELD_BASE(98, 98, 1, 0x0070, 0x10, 18, 1),
+ PIN_FIELD_BASE(99, 99, 1, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(100, 100, 1, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(101, 101, 1, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(102, 102, 1, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(103, 103, 1, 0x0070, 0x10, 12, 1),
+ PIN_FIELD_BASE(104, 104, 1, 0x0070, 0x10, 13, 1),
+ PIN_FIELD_BASE(105, 105, 1, 0x0070, 0x10, 14, 1),
+ PIN_FIELD_BASE(106, 106, 1, 0x0070, 0x10, 15, 1),
+ PIN_FIELD_BASE(107, 107, 1, 0x0070, 0x10, 16, 1),
+ PIN_FIELD_BASE(108, 108, 1, 0x0070, 0x10, 17, 1),
+ PIN_FIELD_BASE(109, 109, 1, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(110, 110, 1, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(111, 111, 1, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(112, 112, 1, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(113, 113, 1, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(114, 114, 1, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(115, 115, 1, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(116, 116, 1, 0x0070, 0x10, 9, 1),
+ PIN_FIELD_BASE(117, 117, 1, 0x0070, 0x10, 20, 1),
+ PIN_FIELD_BASE(118, 118, 1, 0x0070, 0x10, 21, 1),
+ PIN_FIELD_BASE(119, 119, 1, 0x0070, 0x10, 22, 1),
+ PIN_FIELD_BASE(120, 120, 1, 0x0070, 0x10, 23, 1),
+ PIN_FIELD_BASE(121, 121, 1, 0x0070, 0x10, 24, 1),
+ PIN_FIELD_BASE(122, 122, 1, 0x0070, 0x10, 25, 1),
+ PIN_FIELD_BASE(123, 123, 1, 0x0070, 0x10, 26, 1),
+ PIN_FIELD_BASE(124, 124, 1, 0x0070, 0x10, 27, 1),
+ PIN_FIELD_BASE(125, 125, 8, 0x0090, 0x10, 20, 1),
+ PIN_FIELD_BASE(126, 126, 8, 0x0090, 0x10, 29, 1),
+ PIN_FIELD_BASE(127, 127, 8, 0x0090, 0x10, 30, 1),
+ PIN_FIELD_BASE(128, 128, 8, 0x0090, 0x10, 31, 1),
+ PIN_FIELD_BASE(129, 129, 8, 0x0090, 0x10, 10, 1),
+ PIN_FIELD_BASE(130, 130, 8, 0x0090, 0x10, 13, 1),
+ PIN_FIELD_BASE(131, 131, 6, 0x0070, 0x10, 14, 1),
+ PIN_FIELD_BASE(132, 132, 6, 0x0070, 0x10, 17, 1),
+ PIN_FIELD_BASE(133, 133, 8, 0x0090, 0x10, 11, 1),
+ PIN_FIELD_BASE(134, 134, 8, 0x0090, 0x10, 14, 1),
+ PIN_FIELD_BASE(135, 135, 6, 0x0070, 0x10, 15, 1),
+ PIN_FIELD_BASE(136, 136, 6, 0x0070, 0x10, 18, 1),
+ PIN_FIELD_BASE(137, 137, 6, 0x0070, 0x10, 16, 1),
+ PIN_FIELD_BASE(138, 138, 6, 0x0070, 0x10, 19, 1),
+ PIN_FIELD_BASE(139, 139, 6, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(140, 140, 6, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(141, 141, 6, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(142, 142, 6, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(143, 143, 8, 0x0090, 0x10, 12, 1),
+ PIN_FIELD_BASE(144, 144, 8, 0x0090, 0x10, 15, 1),
+ PIN_FIELD_BASE(145, 145, 5, 0x0040, 0x10, 2, 1),
+ PIN_FIELD_BASE(146, 146, 5, 0x0040, 0x10, 7, 1),
+ PIN_FIELD_BASE(147, 147, 3, 0x0070, 0x10, 19, 1),
+ PIN_FIELD_BASE(148, 148, 3, 0x0070, 0x10, 20, 1),
+ PIN_FIELD_BASE(149, 149, 8, 0x0090, 0x10, 16, 1),
+ PIN_FIELD_BASE(150, 150, 8, 0x0090, 0x10, 17, 1),
+ PIN_FIELD_BASE(151, 151, 8, 0x0090, 0x10, 18, 1),
+ PIN_FIELD_BASE(152, 152, 8, 0x0090, 0x10, 19, 1),
+ PIN_FIELD_BASE(153, 153, 2, 0x0040, 0x10, 6, 1),
+ PIN_FIELD_BASE(154, 154, 2, 0x0040, 0x10, 7, 1),
+ PIN_FIELD_BASE(155, 155, 2, 0x0040, 0x10, 8, 1),
+ PIN_FIELD_BASE(156, 156, 9, 0x0050, 0x10, 15, 1),
+ PIN_FIELD_BASE(157, 157, 9, 0x0050, 0x10, 16, 1),
+ PIN_FIELD_BASE(158, 158, 9, 0x0050, 0x10, 17, 1),
+ PIN_FIELD_BASE(159, 159, 9, 0x0050, 0x10, 18, 1),
+ PIN_FIELD_BASE(160, 160, 4, 0x0050, 0x10, 26, 1),
+ PIN_FIELD_BASE(161, 161, 4, 0x0050, 0x10, 25, 1),
+ PIN_FIELD_BASE(162, 162, 4, 0x0050, 0x10, 28, 1),
+ PIN_FIELD_BASE(163, 163, 4, 0x0050, 0x10, 27, 1),
+ PIN_FIELD_BASE(164, 164, 4, 0x0050, 0x10, 0, 1),
+ PIN_FIELD_BASE(165, 165, 4, 0x0050, 0x10, 7, 1),
+ PIN_FIELD_BASE(166, 166, 4, 0x0050, 0x10, 3, 1),
+ PIN_FIELD_BASE(167, 167, 4, 0x0050, 0x10, 4, 1),
+ PIN_FIELD_BASE(168, 168, 4, 0x0050, 0x10, 5, 1),
+ PIN_FIELD_BASE(169, 169, 4, 0x0050, 0x10, 6, 1),
+ PIN_FIELD_BASE(170, 170, 4, 0x0050, 0x10, 1, 1),
+ PIN_FIELD_BASE(171, 171, 4, 0x0050, 0x10, 2, 1),
+ PIN_FIELD_BASE(172, 172, 9, 0x0050, 0x10, 7, 1),
+ PIN_FIELD_BASE(173, 173, 9, 0x0050, 0x10, 8, 1),
+ PIN_FIELD_BASE(174, 174, 9, 0x0050, 0x10, 3, 1),
+ PIN_FIELD_BASE(175, 175, 9, 0x0050, 0x10, 4, 1),
+ PIN_FIELD_BASE(176, 176, 9, 0x0050, 0x10, 5, 1),
+ PIN_FIELD_BASE(177, 177, 9, 0x0050, 0x10, 9, 1),
+ PIN_FIELD_BASE(178, 178, 9, 0x0050, 0x10, 10, 1),
+ PIN_FIELD_BASE(179, 179, 9, 0x0050, 0x10, 11, 1),
+ PIN_FIELD_BASE(180, 180, 9, 0x0050, 0x10, 12, 1),
+ PIN_FIELD_BASE(181, 181, 9, 0x0050, 0x10, 13, 1),
+ PIN_FIELD_BASE(182, 182, 9, 0x0050, 0x10, 14, 1),
+ PIN_FIELD_BASE(183, 183, 9, 0x0050, 0x10, 6, 1),
+ PIN_FIELD_BASE(184, 184, 7, 0x0040, 0x10, 10, 1),
+ PIN_FIELD_BASE(185, 185, 7, 0x0040, 0x10, 0, 1),
+ PIN_FIELD_BASE(186, 186, 7, 0x0040, 0x10, 1, 1),
+ PIN_FIELD_BASE(187, 187, 7, 0x0040, 0x10, 11, 1),
+ PIN_FIELD_BASE(188, 188, 7, 0x0040, 0x10, 2, 1),
+ PIN_FIELD_BASE(189, 189, 7, 0x0040, 0x10, 3, 1),
+ PIN_FIELD_BASE(190, 190, 7, 0x0040, 0x10, 4, 1),
+ PIN_FIELD_BASE(191, 191, 7, 0x0040, 0x10, 5, 1),
+ PIN_FIELD_BASE(192, 192, 7, 0x0040, 0x10, 6, 1),
+ PIN_FIELD_BASE(193, 193, 7, 0x0040, 0x10, 7, 1),
+ PIN_FIELD_BASE(194, 194, 7, 0x0040, 0x10, 8, 1),
+ PIN_FIELD_BASE(195, 195, 7, 0x0040, 0x10, 9, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_smt_range[] = {
+ PIN_FIELD_BASE(0, 0, 3, 0x00e0, 0x10, 16, 1),
+ PIN_FIELD_BASE(1, 1, 3, 0x00e0, 0x10, 16, 1),
+ PIN_FIELD_BASE(2, 2, 3, 0x00e0, 0x10, 15, 1),
+ PIN_FIELD_BASE(3, 3, 3, 0x00e0, 0x10, 15, 1),
+ PIN_FIELD_BASE(4, 4, 3, 0x00e0, 0x10, 9, 1),
+ PIN_FIELD_BASE(5, 5, 3, 0x00e0, 0x10, 10, 1),
+ PIN_FIELD_BASE(6, 6, 4, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(7, 7, 4, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(8, 8, 4, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(9, 9, 4, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(10, 10, 4, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(11, 11, 4, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(12, 12, 4, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(13, 13, 6, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(14, 14, 6, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(15, 15, 6, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(16, 16, 6, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(17, 17, 6, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(18, 18, 6, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(19, 19, 3, 0x00e0, 0x10, 0, 1),
+ PIN_FIELD_BASE(20, 20, 3, 0x00e0, 0x10, 1, 1),
+ PIN_FIELD_BASE(21, 21, 3, 0x00e0, 0x10, 2, 1),
+ PIN_FIELD_BASE(22, 22, 3, 0x00e0, 0x10, 3, 1),
+ PIN_FIELD_BASE(23, 23, 3, 0x00e0, 0x10, 4, 1),
+ PIN_FIELD_BASE(24, 24, 5, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(25, 25, 3, 0x00e0, 0x10, 5, 1),
+ PIN_FIELD_BASE(26, 26, 3, 0x00e0, 0x10, 6, 1),
+ PIN_FIELD_BASE(27, 27, 3, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(28, 28, 3, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(29, 29, 6, 0x00e0, 0x10, 4, 1),
+ PIN_FIELD_BASE(30, 30, 6, 0x00e0, 0x10, 9, 1),
+ PIN_FIELD_BASE(31, 31, 6, 0x00e0, 0x10, 6, 1),
+ PIN_FIELD_BASE(32, 32, 6, 0x00e0, 0x10, 5, 1),
+ PIN_FIELD_BASE(33, 33, 9, 0x00f0, 0x10, 0, 1),
+ PIN_FIELD_BASE(34, 34, 9, 0x00f0, 0x10, 1, 1),
+ PIN_FIELD_BASE(35, 35, 9, 0x00f0, 0x10, 2, 1),
+ PIN_FIELD_BASE(36, 36, 8, 0x0130, 0x10, 0, 1),
+ PIN_FIELD_BASE(37, 37, 8, 0x0130, 0x10, 1, 1),
+ PIN_FIELD_BASE(38, 38, 8, 0x0130, 0x10, 2, 1),
+ PIN_FIELD_BASE(39, 39, 8, 0x0130, 0x10, 3, 1),
+ PIN_FIELD_BASE(40, 40, 8, 0x0130, 0x10, 4, 1),
+ PIN_FIELD_BASE(41, 41, 4, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(42, 42, 4, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(43, 43, 4, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(44, 44, 4, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(45, 45, 4, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(46, 46, 4, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(47, 47, 4, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(48, 48, 3, 0x00e0, 0x10, 16, 1),
+ PIN_FIELD_BASE(49, 49, 3, 0x00e0, 0x10, 16, 1),
+ PIN_FIELD_BASE(50, 50, 3, 0x00e0, 0x10, 14, 1),
+ PIN_FIELD_BASE(51, 51, 3, 0x00e0, 0x10, 14, 1),
+ PIN_FIELD_BASE(52, 52, 3, 0x00e0, 0x10, 12, 1),
+ PIN_FIELD_BASE(53, 53, 3, 0x00e0, 0x10, 13, 1),
+ PIN_FIELD_BASE(54, 54, 3, 0x00e0, 0x10, 17, 1),
+ PIN_FIELD_BASE(55, 55, 3, 0x00e0, 0x10, 11, 1),
+ PIN_FIELD_BASE(56, 56, 5, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(57, 57, 5, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(58, 58, 3, 0x00e0, 0x10, 21, 1),
+ PIN_FIELD_BASE(59, 59, 3, 0x00e0, 0x10, 20, 1),
+ PIN_FIELD_BASE(60, 60, 8, 0x0130, 0x10, 20, 1),
+ PIN_FIELD_BASE(61, 61, 8, 0x0130, 0x10, 21, 1),
+ PIN_FIELD_BASE(62, 62, 8, 0x0130, 0x10, 23, 1),
+ PIN_FIELD_BASE(63, 63, 8, 0x0130, 0x10, 22, 1),
+ PIN_FIELD_BASE(64, 64, 8, 0x0130, 0x10, 24, 1),
+ PIN_FIELD_BASE(65, 65, 8, 0x0130, 0x10, 25, 1),
+ PIN_FIELD_BASE(66, 66, 8, 0x0130, 0x10, 27, 1),
+ PIN_FIELD_BASE(67, 67, 8, 0x0130, 0x10, 26, 1),
+ PIN_FIELD_BASE(68, 68, 5, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(69, 69, 5, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(70, 70, 5, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(71, 71, 5, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(72, 72, 5, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(73, 73, 5, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(74, 74, 5, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(75, 75, 5, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(76, 76, 5, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(77, 77, 2, 0x00e0, 0x10, 0, 1),
+ PIN_FIELD_BASE(78, 78, 2, 0x00e0, 0x10, 1, 1),
+ PIN_FIELD_BASE(79, 79, 2, 0x00e0, 0x10, 2, 1),
+ PIN_FIELD_BASE(80, 80, 2, 0x00e0, 0x10, 3, 1),
+ PIN_FIELD_BASE(81, 81, 2, 0x00e0, 0x10, 4, 1),
+ PIN_FIELD_BASE(82, 82, 2, 0x00e0, 0x10, 5, 1),
+ PIN_FIELD_BASE(83, 83, 2, 0x00e0, 0x10, 6, 1),
+ PIN_FIELD_BASE(84, 84, 2, 0x00e0, 0x10, 9, 1),
+ PIN_FIELD_BASE(85, 85, 2, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(86, 86, 2, 0x00e0, 0x10, 10, 1),
+ PIN_FIELD_BASE(87, 87, 2, 0x00e0, 0x10, 12, 1),
+ PIN_FIELD_BASE(88, 88, 2, 0x00e0, 0x10, 11, 1),
+ PIN_FIELD_BASE(89, 89, 4, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(90, 90, 4, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(91, 91, 4, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(92, 92, 8, 0x0130, 0x10, 5, 1),
+ PIN_FIELD_BASE(93, 93, 8, 0x0130, 0x10, 6, 1),
+ PIN_FIELD_BASE(94, 94, 8, 0x0130, 0x10, 7, 1),
+ PIN_FIELD_BASE(95, 95, 8, 0x0130, 0x10, 8, 1),
+ PIN_FIELD_BASE(96, 96, 8, 0x0130, 0x10, 9, 1),
+ PIN_FIELD_BASE(97, 97, 1, 0x0120, 0x10, 25, 1),
+ PIN_FIELD_BASE(98, 98, 1, 0x0120, 0x10, 25, 1),
+ PIN_FIELD_BASE(99, 99, 1, 0x0120, 0x10, 0, 1),
+ PIN_FIELD_BASE(100, 100, 1, 0x0120, 0x10, 1, 1),
+ PIN_FIELD_BASE(101, 101, 1, 0x0120, 0x10, 10, 1),
+ PIN_FIELD_BASE(102, 102, 1, 0x0120, 0x10, 11, 1),
+ PIN_FIELD_BASE(103, 103, 1, 0x0120, 0x10, 12, 1),
+ PIN_FIELD_BASE(104, 104, 1, 0x0120, 0x10, 13, 1),
+ PIN_FIELD_BASE(105, 105, 1, 0x0120, 0x10, 14, 1),
+ PIN_FIELD_BASE(106, 106, 1, 0x0120, 0x10, 15, 1),
+ PIN_FIELD_BASE(107, 107, 1, 0x0120, 0x10, 16, 1),
+ PIN_FIELD_BASE(108, 108, 1, 0x0120, 0x10, 17, 1),
+ PIN_FIELD_BASE(109, 109, 1, 0x0120, 0x10, 2, 1),
+ PIN_FIELD_BASE(110, 110, 1, 0x0120, 0x10, 3, 1),
+ PIN_FIELD_BASE(111, 111, 1, 0x0120, 0x10, 4, 1),
+ PIN_FIELD_BASE(112, 112, 1, 0x0120, 0x10, 5, 1),
+ PIN_FIELD_BASE(113, 113, 1, 0x0120, 0x10, 6, 1),
+ PIN_FIELD_BASE(114, 114, 1, 0x0120, 0x10, 7, 1),
+ PIN_FIELD_BASE(115, 115, 1, 0x0120, 0x10, 8, 1),
+ PIN_FIELD_BASE(116, 116, 1, 0x0120, 0x10, 9, 1),
+ PIN_FIELD_BASE(117, 117, 1, 0x0120, 0x10, 18, 1),
+ PIN_FIELD_BASE(118, 118, 1, 0x0120, 0x10, 19, 1),
+ PIN_FIELD_BASE(119, 119, 1, 0x0120, 0x10, 20, 1),
+ PIN_FIELD_BASE(120, 120, 1, 0x0120, 0x10, 21, 1),
+ PIN_FIELD_BASE(121, 121, 1, 0x0120, 0x10, 22, 1),
+ PIN_FIELD_BASE(122, 122, 1, 0x0120, 0x10, 23, 1),
+ PIN_FIELD_BASE(123, 123, 1, 0x0120, 0x10, 24, 1),
+ PIN_FIELD_BASE(124, 124, 1, 0x0120, 0x10, 24, 1),
+ PIN_FIELD_BASE(125, 125, 8, 0x0130, 0x10, 19, 1),
+ PIN_FIELD_BASE(126, 126, 8, 0x0130, 0x10, 28, 1),
+ PIN_FIELD_BASE(127, 127, 8, 0x0130, 0x10, 29, 1),
+ PIN_FIELD_BASE(128, 128, 8, 0x0130, 0x10, 30, 1),
+ PIN_FIELD_BASE(129, 129, 8, 0x0130, 0x10, 10, 1),
+ PIN_FIELD_BASE(130, 130, 8, 0x0130, 0x10, 13, 1),
+ PIN_FIELD_BASE(131, 131, 6, 0x00e0, 0x10, 10, 1),
+ PIN_FIELD_BASE(132, 132, 6, 0x00e0, 0x10, 13, 1),
+ PIN_FIELD_BASE(133, 133, 8, 0x0130, 0x10, 11, 1),
+ PIN_FIELD_BASE(134, 134, 8, 0x0130, 0x10, 14, 1),
+ PIN_FIELD_BASE(135, 135, 6, 0x00e0, 0x10, 11, 1),
+ PIN_FIELD_BASE(136, 136, 6, 0x00e0, 0x10, 14, 1),
+ PIN_FIELD_BASE(137, 137, 6, 0x00e0, 0x10, 12, 1),
+ PIN_FIELD_BASE(138, 138, 6, 0x00e0, 0x10, 15, 1),
+ PIN_FIELD_BASE(139, 139, 6, 0x00e0, 0x10, 0, 1),
+ PIN_FIELD_BASE(140, 140, 6, 0x00e0, 0x10, 2, 1),
+ PIN_FIELD_BASE(141, 141, 6, 0x00e0, 0x10, 1, 1),
+ PIN_FIELD_BASE(142, 142, 6, 0x00e0, 0x10, 3, 1),
+ PIN_FIELD_BASE(143, 143, 8, 0x0130, 0x10, 12, 1),
+ PIN_FIELD_BASE(144, 144, 8, 0x0130, 0x10, 15, 1),
+ PIN_FIELD_BASE(145, 145, 5, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(146, 146, 5, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(147, 147, 3, 0x00e0, 0x10, 18, 1),
+ PIN_FIELD_BASE(148, 148, 3, 0x00e0, 0x10, 19, 1),
+ PIN_FIELD_BASE(149, 149, 8, 0x0130, 0x10, 16, 1),
+ PIN_FIELD_BASE(150, 150, 8, 0x0130, 0x10, 17, 1),
+ PIN_FIELD_BASE(151, 151, 8, 0x0130, 0x10, 18, 1),
+ PIN_FIELD_BASE(152, 152, 8, 0x0130, 0x10, 18, 1),
+ PIN_FIELD_BASE(153, 153, 2, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(154, 154, 2, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(155, 155, 2, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(156, 156, 9, 0x00f0, 0x10, 7, 1),
+ PIN_FIELD_BASE(157, 157, 9, 0x00f0, 0x10, 8, 1),
+ PIN_FIELD_BASE(158, 158, 9, 0x00f0, 0x10, 9, 1),
+ PIN_FIELD_BASE(159, 159, 9, 0x00f0, 0x10, 10, 1),
+ PIN_FIELD_BASE(160, 160, 4, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(161, 161, 4, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(162, 162, 4, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(163, 163, 4, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(164, 164, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(165, 165, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(166, 166, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(167, 167, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(168, 168, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(169, 169, 4, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(170, 170, 4, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(171, 171, 4, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(172, 172, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(173, 173, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(174, 174, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(175, 175, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(176, 176, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(177, 177, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(178, 178, 9, 0x00f0, 0x10, 6, 1),
+ PIN_FIELD_BASE(179, 179, 9, 0x00f0, 0x10, 6, 1),
+ PIN_FIELD_BASE(180, 180, 9, 0x00f0, 0x10, 6, 1),
+ PIN_FIELD_BASE(181, 181, 9, 0x00f0, 0x10, 3, 1),
+ PIN_FIELD_BASE(182, 182, 9, 0x00f0, 0x10, 4, 1),
+ PIN_FIELD_BASE(183, 183, 9, 0x00f0, 0x10, 5, 1),
+ PIN_FIELD_BASE(184, 184, 7, 0x00d0, 0x10, 10, 1),
+ PIN_FIELD_BASE(185, 185, 7, 0x00d0, 0x10, 0, 1),
+ PIN_FIELD_BASE(186, 186, 7, 0x00d0, 0x10, 1, 1),
+ PIN_FIELD_BASE(187, 187, 7, 0x00d0, 0x10, 11, 1),
+ PIN_FIELD_BASE(188, 188, 7, 0x00d0, 0x10, 2, 1),
+ PIN_FIELD_BASE(189, 189, 7, 0x00d0, 0x10, 3, 1),
+ PIN_FIELD_BASE(190, 190, 7, 0x00d0, 0x10, 4, 1),
+ PIN_FIELD_BASE(191, 191, 7, 0x00d0, 0x10, 5, 1),
+ PIN_FIELD_BASE(192, 192, 7, 0x00d0, 0x10, 6, 1),
+ PIN_FIELD_BASE(193, 193, 7, 0x00d0, 0x10, 7, 1),
+ PIN_FIELD_BASE(194, 194, 7, 0x00d0, 0x10, 8, 1),
+ PIN_FIELD_BASE(195, 195, 7, 0x00d0, 0x10, 9, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_pu_range[] = {
+ PIN_FIELD_BASE(0, 0, 3, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(1, 1, 3, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(2, 2, 3, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(3, 3, 3, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(4, 4, 3, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(5, 5, 3, 0x00b0, 0x10, 14, 1),
+ PIN_FIELD_BASE(6, 6, 4, 0x0090, 0x10, 13, 1),
+ PIN_FIELD_BASE(7, 7, 4, 0x0090, 0x10, 14, 1),
+ PIN_FIELD_BASE(8, 8, 4, 0x0090, 0x10, 15, 1),
+ PIN_FIELD_BASE(9, 9, 4, 0x0090, 0x10, 16, 1),
+ PIN_FIELD_BASE(10, 10, 4, 0x0090, 0x10, 10, 1),
+ PIN_FIELD_BASE(11, 11, 4, 0x0090, 0x10, 11, 1),
+ PIN_FIELD_BASE(12, 12, 4, 0x0090, 0x10, 12, 1),
+ PIN_FIELD_BASE(13, 13, 6, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(14, 14, 6, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(15, 15, 6, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(16, 16, 6, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(17, 17, 6, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(18, 18, 6, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(19, 19, 3, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(20, 20, 3, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(21, 21, 3, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(22, 22, 3, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(23, 23, 3, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(24, 24, 5, 0x0080, 0x10, 1, 1),
+ PIN_FIELD_BASE(25, 25, 3, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(26, 26, 3, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(27, 27, 3, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(28, 28, 3, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(29, 29, 6, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(30, 30, 6, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(31, 31, 6, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(32, 32, 6, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(36, 36, 8, 0x00d0, 0x10, 0, 1),
+ PIN_FIELD_BASE(37, 37, 8, 0x00d0, 0x10, 1, 1),
+ PIN_FIELD_BASE(38, 38, 8, 0x00d0, 0x10, 2, 1),
+ PIN_FIELD_BASE(39, 39, 8, 0x00d0, 0x10, 3, 1),
+ PIN_FIELD_BASE(40, 40, 8, 0x00d0, 0x10, 4, 1),
+ PIN_FIELD_BASE(41, 41, 4, 0x0090, 0x10, 20, 1),
+ PIN_FIELD_BASE(42, 42, 4, 0x0090, 0x10, 17, 1),
+ PIN_FIELD_BASE(43, 43, 4, 0x0090, 0x10, 19, 1),
+ PIN_FIELD_BASE(44, 44, 4, 0x0090, 0x10, 21, 1),
+ PIN_FIELD_BASE(45, 45, 4, 0x0090, 0x10, 18, 1),
+ PIN_FIELD_BASE(46, 46, 4, 0x0090, 0x10, 22, 1),
+ PIN_FIELD_BASE(47, 47, 4, 0x0090, 0x10, 23, 1),
+ PIN_FIELD_BASE(48, 48, 3, 0x00b0, 0x10, 25, 1),
+ PIN_FIELD_BASE(49, 49, 3, 0x00b0, 0x10, 23, 1),
+ PIN_FIELD_BASE(50, 50, 3, 0x00b0, 0x10, 26, 1),
+ PIN_FIELD_BASE(51, 51, 3, 0x00b0, 0x10, 24, 1),
+ PIN_FIELD_BASE(52, 52, 3, 0x00b0, 0x10, 17, 1),
+ PIN_FIELD_BASE(53, 53, 3, 0x00b0, 0x10, 18, 1),
+ PIN_FIELD_BASE(54, 54, 3, 0x00b0, 0x10, 15, 1),
+ PIN_FIELD_BASE(55, 55, 3, 0x00b0, 0x10, 16, 1),
+ PIN_FIELD_BASE(56, 56, 5, 0x0080, 0x10, 8, 1),
+ PIN_FIELD_BASE(57, 57, 5, 0x0080, 0x10, 9, 1),
+ PIN_FIELD_BASE(58, 58, 3, 0x00b0, 0x10, 22, 1),
+ PIN_FIELD_BASE(59, 59, 3, 0x00b0, 0x10, 21, 1),
+ PIN_FIELD_BASE(60, 60, 8, 0x00d0, 0x10, 21, 1),
+ PIN_FIELD_BASE(61, 61, 8, 0x00d0, 0x10, 22, 1),
+ PIN_FIELD_BASE(62, 62, 8, 0x00d0, 0x10, 24, 1),
+ PIN_FIELD_BASE(63, 63, 8, 0x00d0, 0x10, 23, 1),
+ PIN_FIELD_BASE(64, 64, 8, 0x00d0, 0x10, 25, 1),
+ PIN_FIELD_BASE(65, 65, 8, 0x00d0, 0x10, 26, 1),
+ PIN_FIELD_BASE(66, 66, 8, 0x00d0, 0x10, 28, 1),
+ PIN_FIELD_BASE(67, 67, 8, 0x00d0, 0x10, 27, 1),
+ PIN_FIELD_BASE(68, 68, 5, 0x0080, 0x10, 3, 1),
+ PIN_FIELD_BASE(69, 69, 5, 0x0080, 0x10, 4, 1),
+ PIN_FIELD_BASE(70, 70, 5, 0x0080, 0x10, 6, 1),
+ PIN_FIELD_BASE(71, 71, 5, 0x0080, 0x10, 5, 1),
+ PIN_FIELD_BASE(72, 72, 5, 0x0080, 0x10, 10, 1),
+ PIN_FIELD_BASE(73, 73, 5, 0x0080, 0x10, 11, 1),
+ PIN_FIELD_BASE(74, 74, 5, 0x0080, 0x10, 13, 1),
+ PIN_FIELD_BASE(75, 75, 5, 0x0080, 0x10, 12, 1),
+ PIN_FIELD_BASE(76, 76, 5, 0x0080, 0x10, 0, 1),
+ PIN_FIELD_BASE(89, 89, 4, 0x0090, 0x10, 9, 1),
+ PIN_FIELD_BASE(90, 90, 4, 0x0090, 0x10, 24, 1),
+ PIN_FIELD_BASE(91, 91, 4, 0x0090, 0x10, 8, 1),
+ PIN_FIELD_BASE(92, 92, 8, 0x00d0, 0x10, 5, 1),
+ PIN_FIELD_BASE(93, 93, 8, 0x00d0, 0x10, 6, 1),
+ PIN_FIELD_BASE(94, 94, 8, 0x00d0, 0x10, 7, 1),
+ PIN_FIELD_BASE(95, 95, 8, 0x00d0, 0x10, 8, 1),
+ PIN_FIELD_BASE(96, 96, 8, 0x00d0, 0x10, 9, 1),
+ PIN_FIELD_BASE(99, 99, 1, 0x00c0, 0x10, 0, 1),
+ PIN_FIELD_BASE(100, 100, 1, 0x00c0, 0x10, 1, 1),
+ PIN_FIELD_BASE(101, 101, 1, 0x00c0, 0x10, 10, 1),
+ PIN_FIELD_BASE(102, 102, 1, 0x00c0, 0x10, 11, 1),
+ PIN_FIELD_BASE(103, 103, 1, 0x00c0, 0x10, 12, 1),
+ PIN_FIELD_BASE(104, 104, 1, 0x00c0, 0x10, 13, 1),
+ PIN_FIELD_BASE(105, 105, 1, 0x00c0, 0x10, 14, 1),
+ PIN_FIELD_BASE(106, 106, 1, 0x00c0, 0x10, 15, 1),
+ PIN_FIELD_BASE(107, 107, 1, 0x00c0, 0x10, 16, 1),
+ PIN_FIELD_BASE(108, 108, 1, 0x00c0, 0x10, 17, 1),
+ PIN_FIELD_BASE(109, 109, 1, 0x00c0, 0x10, 2, 1),
+ PIN_FIELD_BASE(110, 110, 1, 0x00c0, 0x10, 3, 1),
+ PIN_FIELD_BASE(111, 111, 1, 0x00c0, 0x10, 4, 1),
+ PIN_FIELD_BASE(112, 112, 1, 0x00c0, 0x10, 5, 1),
+ PIN_FIELD_BASE(113, 113, 1, 0x00c0, 0x10, 6, 1),
+ PIN_FIELD_BASE(114, 114, 1, 0x00c0, 0x10, 7, 1),
+ PIN_FIELD_BASE(115, 115, 1, 0x00c0, 0x10, 8, 1),
+ PIN_FIELD_BASE(116, 116, 1, 0x00c0, 0x10, 9, 1),
+ PIN_FIELD_BASE(125, 125, 8, 0x00d0, 0x10, 20, 1),
+ PIN_FIELD_BASE(126, 126, 8, 0x00d0, 0x10, 29, 1),
+ PIN_FIELD_BASE(127, 127, 8, 0x00d0, 0x10, 30, 1),
+ PIN_FIELD_BASE(128, 128, 8, 0x00d0, 0x10, 31, 1),
+ PIN_FIELD_BASE(129, 129, 8, 0x00d0, 0x10, 10, 1),
+ PIN_FIELD_BASE(130, 130, 8, 0x00d0, 0x10, 13, 1),
+ PIN_FIELD_BASE(131, 131, 6, 0x00b0, 0x10, 14, 1),
+ PIN_FIELD_BASE(132, 132, 6, 0x00b0, 0x10, 17, 1),
+ PIN_FIELD_BASE(133, 133, 8, 0x00d0, 0x10, 11, 1),
+ PIN_FIELD_BASE(134, 134, 8, 0x00d0, 0x10, 14, 1),
+ PIN_FIELD_BASE(135, 135, 6, 0x00b0, 0x10, 15, 1),
+ PIN_FIELD_BASE(136, 136, 6, 0x00b0, 0x10, 18, 1),
+ PIN_FIELD_BASE(137, 137, 6, 0x00b0, 0x10, 16, 1),
+ PIN_FIELD_BASE(138, 138, 6, 0x00b0, 0x10, 19, 1),
+ PIN_FIELD_BASE(139, 139, 6, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(140, 140, 6, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(141, 141, 6, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(142, 142, 6, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(143, 143, 8, 0x00d0, 0x10, 12, 1),
+ PIN_FIELD_BASE(144, 144, 8, 0x00d0, 0x10, 15, 1),
+ PIN_FIELD_BASE(145, 145, 5, 0x0080, 0x10, 2, 1),
+ PIN_FIELD_BASE(146, 146, 5, 0x0080, 0x10, 7, 1),
+ PIN_FIELD_BASE(147, 147, 3, 0x00b0, 0x10, 19, 1),
+ PIN_FIELD_BASE(148, 148, 3, 0x00b0, 0x10, 20, 1),
+ PIN_FIELD_BASE(149, 149, 8, 0x00d0, 0x10, 16, 1),
+ PIN_FIELD_BASE(150, 150, 8, 0x00d0, 0x10, 17, 1),
+ PIN_FIELD_BASE(151, 151, 8, 0x00d0, 0x10, 18, 1),
+ PIN_FIELD_BASE(152, 152, 8, 0x00d0, 0x10, 19, 1),
+ PIN_FIELD_BASE(156, 156, 9, 0x00a0, 0x10, 0, 1),
+ PIN_FIELD_BASE(157, 157, 9, 0x00a0, 0x10, 1, 1),
+ PIN_FIELD_BASE(158, 158, 9, 0x00a0, 0x10, 2, 1),
+ PIN_FIELD_BASE(159, 159, 9, 0x00a0, 0x10, 3, 1),
+ PIN_FIELD_BASE(160, 160, 4, 0x0090, 0x10, 26, 1),
+ PIN_FIELD_BASE(161, 161, 4, 0x0090, 0x10, 25, 1),
+ PIN_FIELD_BASE(162, 162, 4, 0x0090, 0x10, 30, 1),
+ PIN_FIELD_BASE(163, 163, 4, 0x0090, 0x10, 29, 1),
+ PIN_FIELD_BASE(164, 164, 4, 0x0090, 0x10, 0, 1),
+ PIN_FIELD_BASE(165, 165, 4, 0x0090, 0x10, 7, 1),
+ PIN_FIELD_BASE(166, 166, 4, 0x0090, 0x10, 3, 1),
+ PIN_FIELD_BASE(167, 167, 4, 0x0090, 0x10, 4, 1),
+ PIN_FIELD_BASE(168, 168, 4, 0x0090, 0x10, 5, 1),
+ PIN_FIELD_BASE(169, 169, 4, 0x0090, 0x10, 6, 1),
+ PIN_FIELD_BASE(170, 170, 4, 0x0090, 0x10, 1, 1),
+ PIN_FIELD_BASE(171, 171, 4, 0x0090, 0x10, 2, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_pd_range[] = {
+ PIN_FIELD_BASE(0, 0, 3, 0x00a0, 0x10, 9, 1),
+ PIN_FIELD_BASE(1, 1, 3, 0x00a0, 0x10, 10, 1),
+ PIN_FIELD_BASE(2, 2, 3, 0x00a0, 0x10, 11, 1),
+ PIN_FIELD_BASE(3, 3, 3, 0x00a0, 0x10, 12, 1),
+ PIN_FIELD_BASE(4, 4, 3, 0x00a0, 0x10, 13, 1),
+ PIN_FIELD_BASE(5, 5, 3, 0x00a0, 0x10, 14, 1),
+ PIN_FIELD_BASE(6, 6, 4, 0x0080, 0x10, 13, 1),
+ PIN_FIELD_BASE(7, 7, 4, 0x0080, 0x10, 14, 1),
+ PIN_FIELD_BASE(8, 8, 4, 0x0080, 0x10, 15, 1),
+ PIN_FIELD_BASE(9, 9, 4, 0x0080, 0x10, 16, 1),
+ PIN_FIELD_BASE(10, 10, 4, 0x0080, 0x10, 10, 1),
+ PIN_FIELD_BASE(11, 11, 4, 0x0080, 0x10, 11, 1),
+ PIN_FIELD_BASE(12, 12, 4, 0x0080, 0x10, 12, 1),
+ PIN_FIELD_BASE(13, 13, 6, 0x00a0, 0x10, 4, 1),
+ PIN_FIELD_BASE(14, 14, 6, 0x00a0, 0x10, 5, 1),
+ PIN_FIELD_BASE(15, 15, 6, 0x00a0, 0x10, 6, 1),
+ PIN_FIELD_BASE(16, 16, 6, 0x00a0, 0x10, 7, 1),
+ PIN_FIELD_BASE(17, 17, 6, 0x00a0, 0x10, 8, 1),
+ PIN_FIELD_BASE(18, 18, 6, 0x00a0, 0x10, 9, 1),
+ PIN_FIELD_BASE(19, 19, 3, 0x00a0, 0x10, 0, 1),
+ PIN_FIELD_BASE(20, 20, 3, 0x00a0, 0x10, 1, 1),
+ PIN_FIELD_BASE(21, 21, 3, 0x00a0, 0x10, 2, 1),
+ PIN_FIELD_BASE(22, 22, 3, 0x00a0, 0x10, 3, 1),
+ PIN_FIELD_BASE(23, 23, 3, 0x00a0, 0x10, 4, 1),
+ PIN_FIELD_BASE(24, 24, 5, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(25, 25, 3, 0x00a0, 0x10, 5, 1),
+ PIN_FIELD_BASE(26, 26, 3, 0x00a0, 0x10, 6, 1),
+ PIN_FIELD_BASE(27, 27, 3, 0x00a0, 0x10, 7, 1),
+ PIN_FIELD_BASE(28, 28, 3, 0x00a0, 0x10, 8, 1),
+ PIN_FIELD_BASE(29, 29, 6, 0x00a0, 0x10, 10, 1),
+ PIN_FIELD_BASE(30, 30, 6, 0x00a0, 0x10, 12, 1),
+ PIN_FIELD_BASE(31, 31, 6, 0x00a0, 0x10, 13, 1),
+ PIN_FIELD_BASE(32, 32, 6, 0x00a0, 0x10, 11, 1),
+ PIN_FIELD_BASE(36, 36, 8, 0x00c0, 0x10, 0, 1),
+ PIN_FIELD_BASE(37, 37, 8, 0x00c0, 0x10, 1, 1),
+ PIN_FIELD_BASE(38, 38, 8, 0x00c0, 0x10, 2, 1),
+ PIN_FIELD_BASE(39, 39, 8, 0x00c0, 0x10, 3, 1),
+ PIN_FIELD_BASE(40, 40, 8, 0x00c0, 0x10, 4, 1),
+ PIN_FIELD_BASE(41, 41, 4, 0x0080, 0x10, 20, 1),
+ PIN_FIELD_BASE(42, 42, 4, 0x0080, 0x10, 17, 1),
+ PIN_FIELD_BASE(43, 43, 4, 0x0080, 0x10, 19, 1),
+ PIN_FIELD_BASE(44, 44, 4, 0x0080, 0x10, 21, 1),
+ PIN_FIELD_BASE(45, 45, 4, 0x0080, 0x10, 18, 1),
+ PIN_FIELD_BASE(46, 46, 4, 0x0080, 0x10, 22, 1),
+ PIN_FIELD_BASE(47, 47, 4, 0x0080, 0x10, 23, 1),
+ PIN_FIELD_BASE(48, 48, 3, 0x00a0, 0x10, 25, 1),
+ PIN_FIELD_BASE(49, 49, 3, 0x00a0, 0x10, 23, 1),
+ PIN_FIELD_BASE(50, 50, 3, 0x00a0, 0x10, 26, 1),
+ PIN_FIELD_BASE(51, 51, 3, 0x00a0, 0x10, 24, 1),
+ PIN_FIELD_BASE(52, 52, 3, 0x00a0, 0x10, 17, 1),
+ PIN_FIELD_BASE(53, 53, 3, 0x00a0, 0x10, 18, 1),
+ PIN_FIELD_BASE(54, 54, 3, 0x00a0, 0x10, 15, 1),
+ PIN_FIELD_BASE(55, 55, 3, 0x00a0, 0x10, 16, 1),
+ PIN_FIELD_BASE(56, 56, 5, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(57, 57, 5, 0x0070, 0x10, 9, 1),
+ PIN_FIELD_BASE(58, 58, 3, 0x00a0, 0x10, 22, 1),
+ PIN_FIELD_BASE(59, 59, 3, 0x00a0, 0x10, 21, 1),
+ PIN_FIELD_BASE(60, 60, 8, 0x00c0, 0x10, 21, 1),
+ PIN_FIELD_BASE(61, 61, 8, 0x00c0, 0x10, 22, 1),
+ PIN_FIELD_BASE(62, 62, 8, 0x00c0, 0x10, 24, 1),
+ PIN_FIELD_BASE(63, 63, 8, 0x00c0, 0x10, 23, 1),
+ PIN_FIELD_BASE(64, 64, 8, 0x00c0, 0x10, 25, 1),
+ PIN_FIELD_BASE(65, 65, 8, 0x00c0, 0x10, 26, 1),
+ PIN_FIELD_BASE(66, 66, 8, 0x00c0, 0x10, 28, 1),
+ PIN_FIELD_BASE(67, 67, 8, 0x00c0, 0x10, 27, 1),
+ PIN_FIELD_BASE(68, 68, 5, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(69, 69, 5, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(70, 70, 5, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(71, 71, 5, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(72, 72, 5, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(73, 73, 5, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(74, 74, 5, 0x0070, 0x10, 13, 1),
+ PIN_FIELD_BASE(75, 75, 5, 0x0070, 0x10, 12, 1),
+ PIN_FIELD_BASE(76, 76, 5, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(89, 89, 4, 0x0080, 0x10, 9, 1),
+ PIN_FIELD_BASE(90, 90, 4, 0x0080, 0x10, 24, 1),
+ PIN_FIELD_BASE(91, 91, 4, 0x0080, 0x10, 8, 1),
+ PIN_FIELD_BASE(92, 92, 8, 0x00c0, 0x10, 5, 1),
+ PIN_FIELD_BASE(93, 93, 8, 0x00c0, 0x10, 6, 1),
+ PIN_FIELD_BASE(94, 94, 8, 0x00c0, 0x10, 7, 1),
+ PIN_FIELD_BASE(95, 95, 8, 0x00c0, 0x10, 8, 1),
+ PIN_FIELD_BASE(96, 96, 8, 0x00c0, 0x10, 9, 1),
+ PIN_FIELD_BASE(99, 99, 1, 0x00a0, 0x10, 0, 1),
+ PIN_FIELD_BASE(100, 100, 1, 0x00a0, 0x10, 1, 1),
+ PIN_FIELD_BASE(101, 101, 1, 0x00a0, 0x10, 10, 1),
+ PIN_FIELD_BASE(102, 102, 1, 0x00a0, 0x10, 11, 1),
+ PIN_FIELD_BASE(103, 103, 1, 0x00a0, 0x10, 12, 1),
+ PIN_FIELD_BASE(104, 104, 1, 0x00a0, 0x10, 13, 1),
+ PIN_FIELD_BASE(105, 105, 1, 0x00a0, 0x10, 14, 1),
+ PIN_FIELD_BASE(106, 106, 1, 0x00a0, 0x10, 15, 1),
+ PIN_FIELD_BASE(107, 107, 1, 0x00a0, 0x10, 16, 1),
+ PIN_FIELD_BASE(108, 108, 1, 0x00a0, 0x10, 17, 1),
+ PIN_FIELD_BASE(109, 109, 1, 0x00a0, 0x10, 2, 1),
+ PIN_FIELD_BASE(110, 110, 1, 0x00a0, 0x10, 3, 1),
+ PIN_FIELD_BASE(111, 111, 1, 0x00a0, 0x10, 4, 1),
+ PIN_FIELD_BASE(112, 112, 1, 0x00a0, 0x10, 5, 1),
+ PIN_FIELD_BASE(113, 113, 1, 0x00a0, 0x10, 6, 1),
+ PIN_FIELD_BASE(114, 114, 1, 0x00a0, 0x10, 7, 1),
+ PIN_FIELD_BASE(115, 115, 1, 0x00a0, 0x10, 8, 1),
+ PIN_FIELD_BASE(116, 116, 1, 0x00a0, 0x10, 9, 1),
+ PIN_FIELD_BASE(125, 125, 8, 0x00c0, 0x10, 20, 1),
+ PIN_FIELD_BASE(126, 126, 8, 0x00c0, 0x10, 29, 1),
+ PIN_FIELD_BASE(127, 127, 8, 0x00c0, 0x10, 30, 1),
+ PIN_FIELD_BASE(128, 128, 8, 0x00c0, 0x10, 31, 1),
+ PIN_FIELD_BASE(129, 129, 8, 0x00c0, 0x10, 10, 1),
+ PIN_FIELD_BASE(130, 130, 8, 0x00c0, 0x10, 13, 1),
+ PIN_FIELD_BASE(131, 131, 6, 0x00a0, 0x10, 14, 1),
+ PIN_FIELD_BASE(132, 132, 6, 0x00a0, 0x10, 17, 1),
+ PIN_FIELD_BASE(133, 133, 8, 0x00c0, 0x10, 11, 1),
+ PIN_FIELD_BASE(134, 134, 8, 0x00c0, 0x10, 14, 1),
+ PIN_FIELD_BASE(135, 135, 6, 0x00a0, 0x10, 15, 1),
+ PIN_FIELD_BASE(136, 136, 6, 0x00a0, 0x10, 18, 1),
+ PIN_FIELD_BASE(137, 137, 6, 0x00a0, 0x10, 16, 1),
+ PIN_FIELD_BASE(138, 138, 6, 0x00a0, 0x10, 19, 1),
+ PIN_FIELD_BASE(139, 139, 6, 0x00a0, 0x10, 0, 1),
+ PIN_FIELD_BASE(140, 140, 6, 0x00a0, 0x10, 2, 1),
+ PIN_FIELD_BASE(141, 141, 6, 0x00a0, 0x10, 1, 1),
+ PIN_FIELD_BASE(142, 142, 6, 0x00a0, 0x10, 3, 1),
+ PIN_FIELD_BASE(143, 143, 8, 0x00c0, 0x10, 12, 1),
+ PIN_FIELD_BASE(144, 144, 8, 0x00c0, 0x10, 15, 1),
+ PIN_FIELD_BASE(145, 145, 5, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(146, 146, 5, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(147, 147, 3, 0x00a0, 0x10, 19, 1),
+ PIN_FIELD_BASE(148, 148, 3, 0x00a0, 0x10, 20, 1),
+ PIN_FIELD_BASE(149, 149, 8, 0x00c0, 0x10, 16, 1),
+ PIN_FIELD_BASE(150, 150, 8, 0x00c0, 0x10, 17, 1),
+ PIN_FIELD_BASE(151, 151, 8, 0x00c0, 0x10, 18, 1),
+ PIN_FIELD_BASE(152, 152, 8, 0x00c0, 0x10, 19, 1),
+ PIN_FIELD_BASE(156, 156, 9, 0x0080, 0x10, 0, 1),
+ PIN_FIELD_BASE(157, 157, 9, 0x0080, 0x10, 1, 1),
+ PIN_FIELD_BASE(158, 158, 9, 0x0080, 0x10, 2, 1),
+ PIN_FIELD_BASE(159, 159, 9, 0x0080, 0x10, 3, 1),
+ PIN_FIELD_BASE(160, 160, 4, 0x0080, 0x10, 26, 1),
+ PIN_FIELD_BASE(161, 161, 4, 0x0080, 0x10, 25, 1),
+ PIN_FIELD_BASE(162, 162, 4, 0x0080, 0x10, 30, 1),
+ PIN_FIELD_BASE(163, 163, 4, 0x0080, 0x10, 29, 1),
+ PIN_FIELD_BASE(164, 164, 4, 0x0080, 0x10, 0, 1),
+ PIN_FIELD_BASE(165, 165, 4, 0x0080, 0x10, 7, 1),
+ PIN_FIELD_BASE(166, 166, 4, 0x0080, 0x10, 3, 1),
+ PIN_FIELD_BASE(167, 167, 4, 0x0080, 0x10, 4, 1),
+ PIN_FIELD_BASE(168, 168, 4, 0x0080, 0x10, 5, 1),
+ PIN_FIELD_BASE(169, 169, 4, 0x0080, 0x10, 6, 1),
+ PIN_FIELD_BASE(170, 170, 4, 0x0080, 0x10, 1, 1),
+ PIN_FIELD_BASE(171, 171, 4, 0x0080, 0x10, 2, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_pupd_range[] = {
+ PIN_FIELD_BASE(33, 33, 9, 0x0090, 0x10, 0, 1),
+ PIN_FIELD_BASE(34, 34, 9, 0x0090, 0x10, 1, 1),
+ PIN_FIELD_BASE(35, 35, 9, 0x0090, 0x10, 2, 1),
+ PIN_FIELD_BASE(77, 77, 2, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(78, 78, 2, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(79, 79, 2, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(80, 80, 2, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(81, 81, 2, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(82, 82, 2, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(83, 83, 2, 0x0070, 0x10, 9, 1),
+ PIN_FIELD_BASE(84, 84, 2, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(85, 85, 2, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(86, 86, 2, 0x0070, 0x10, 12, 1),
+ PIN_FIELD_BASE(87, 87, 2, 0x0070, 0x10, 14, 1),
+ PIN_FIELD_BASE(88, 88, 2, 0x0070, 0x10, 13, 1),
+ PIN_FIELD_BASE(97, 97, 1, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(98, 98, 1, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(117, 117, 1, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(118, 118, 1, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(119, 119, 1, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(120, 120, 1, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(121, 121, 1, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(122, 122, 1, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(123, 123, 1, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(124, 124, 1, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(153, 153, 2, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(154, 154, 2, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(155, 155, 2, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(172, 172, 9, 0x0090, 0x10, 7, 1),
+ PIN_FIELD_BASE(173, 173, 9, 0x0090, 0x10, 8, 1),
+ PIN_FIELD_BASE(174, 174, 9, 0x0090, 0x10, 3, 1),
+ PIN_FIELD_BASE(175, 175, 9, 0x0090, 0x10, 4, 1),
+ PIN_FIELD_BASE(176, 176, 9, 0x0090, 0x10, 5, 1),
+ PIN_FIELD_BASE(177, 177, 9, 0x0090, 0x10, 9, 1),
+ PIN_FIELD_BASE(178, 178, 9, 0x0090, 0x10, 10, 1),
+ PIN_FIELD_BASE(179, 179, 9, 0x0090, 0x10, 11, 1),
+ PIN_FIELD_BASE(180, 180, 9, 0x0090, 0x10, 12, 1),
+ PIN_FIELD_BASE(181, 181, 9, 0x0090, 0x10, 13, 1),
+ PIN_FIELD_BASE(182, 182, 9, 0x0090, 0x10, 14, 1),
+ PIN_FIELD_BASE(183, 183, 9, 0x0090, 0x10, 6, 1),
+ PIN_FIELD_BASE(184, 184, 7, 0x0070, 0x10, 10, 1),
+ PIN_FIELD_BASE(185, 185, 7, 0x0070, 0x10, 0, 1),
+ PIN_FIELD_BASE(186, 186, 7, 0x0070, 0x10, 1, 1),
+ PIN_FIELD_BASE(187, 187, 7, 0x0070, 0x10, 11, 1),
+ PIN_FIELD_BASE(188, 188, 7, 0x0070, 0x10, 2, 1),
+ PIN_FIELD_BASE(189, 189, 7, 0x0070, 0x10, 3, 1),
+ PIN_FIELD_BASE(190, 190, 7, 0x0070, 0x10, 4, 1),
+ PIN_FIELD_BASE(191, 191, 7, 0x0070, 0x10, 5, 1),
+ PIN_FIELD_BASE(192, 192, 7, 0x0070, 0x10, 6, 1),
+ PIN_FIELD_BASE(193, 193, 7, 0x0070, 0x10, 7, 1),
+ PIN_FIELD_BASE(194, 194, 7, 0x0070, 0x10, 8, 1),
+ PIN_FIELD_BASE(195, 195, 7, 0x0070, 0x10, 9, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_r0_range[] = {
+ PIN_FIELD_BASE(33, 33, 9, 0x00b0, 0x10, 0, 1),
+ PIN_FIELD_BASE(34, 34, 9, 0x00b0, 0x10, 1, 1),
+ PIN_FIELD_BASE(35, 35, 9, 0x00b0, 0x10, 2, 1),
+ PIN_FIELD_BASE(77, 77, 2, 0x0080, 0x10, 0, 1),
+ PIN_FIELD_BASE(78, 78, 2, 0x0080, 0x10, 1, 1),
+ PIN_FIELD_BASE(79, 79, 2, 0x0080, 0x10, 2, 1),
+ PIN_FIELD_BASE(80, 80, 2, 0x0080, 0x10, 3, 1),
+ PIN_FIELD_BASE(81, 81, 2, 0x0080, 0x10, 4, 1),
+ PIN_FIELD_BASE(82, 82, 2, 0x0080, 0x10, 5, 1),
+ PIN_FIELD_BASE(83, 83, 2, 0x0080, 0x10, 9, 1),
+ PIN_FIELD_BASE(84, 84, 2, 0x0080, 0x10, 11, 1),
+ PIN_FIELD_BASE(85, 85, 2, 0x0080, 0x10, 10, 1),
+ PIN_FIELD_BASE(86, 86, 2, 0x0080, 0x10, 12, 1),
+ PIN_FIELD_BASE(87, 87, 2, 0x0080, 0x10, 14, 1),
+ PIN_FIELD_BASE(88, 88, 2, 0x0080, 0x10, 13, 1),
+ PIN_FIELD_BASE(97, 97, 1, 0x00d0, 0x10, 1, 1),
+ PIN_FIELD_BASE(98, 98, 1, 0x00d0, 0x10, 0, 1),
+ PIN_FIELD_BASE(117, 117, 1, 0x00d0, 0x10, 2, 1),
+ PIN_FIELD_BASE(118, 118, 1, 0x00d0, 0x10, 3, 1),
+ PIN_FIELD_BASE(119, 119, 1, 0x00d0, 0x10, 4, 1),
+ PIN_FIELD_BASE(120, 120, 1, 0x00d0, 0x10, 5, 1),
+ PIN_FIELD_BASE(121, 121, 1, 0x00d0, 0x10, 6, 1),
+ PIN_FIELD_BASE(122, 122, 1, 0x00d0, 0x10, 7, 1),
+ PIN_FIELD_BASE(123, 123, 1, 0x00d0, 0x10, 8, 1),
+ PIN_FIELD_BASE(124, 124, 1, 0x00d0, 0x10, 9, 1),
+ PIN_FIELD_BASE(153, 153, 2, 0x0080, 0x10, 6, 1),
+ PIN_FIELD_BASE(154, 154, 2, 0x0080, 0x10, 7, 1),
+ PIN_FIELD_BASE(155, 155, 2, 0x0080, 0x10, 8, 1),
+ PIN_FIELD_BASE(172, 172, 9, 0x00b0, 0x10, 7, 1),
+ PIN_FIELD_BASE(173, 173, 9, 0x00b0, 0x10, 8, 1),
+ PIN_FIELD_BASE(174, 174, 9, 0x00b0, 0x10, 3, 1),
+ PIN_FIELD_BASE(175, 175, 9, 0x00b0, 0x10, 4, 1),
+ PIN_FIELD_BASE(176, 176, 9, 0x00b0, 0x10, 5, 1),
+ PIN_FIELD_BASE(177, 177, 9, 0x00b0, 0x10, 9, 1),
+ PIN_FIELD_BASE(178, 178, 9, 0x00b0, 0x10, 10, 1),
+ PIN_FIELD_BASE(179, 179, 9, 0x00b0, 0x10, 11, 1),
+ PIN_FIELD_BASE(180, 180, 9, 0x00b0, 0x10, 12, 1),
+ PIN_FIELD_BASE(181, 181, 9, 0x00b0, 0x10, 13, 1),
+ PIN_FIELD_BASE(182, 182, 9, 0x00b0, 0x10, 14, 1),
+ PIN_FIELD_BASE(183, 183, 9, 0x00b0, 0x10, 6, 1),
+ PIN_FIELD_BASE(184, 184, 7, 0x0080, 0x10, 10, 1),
+ PIN_FIELD_BASE(185, 185, 7, 0x0080, 0x10, 0, 1),
+ PIN_FIELD_BASE(186, 186, 7, 0x0080, 0x10, 1, 1),
+ PIN_FIELD_BASE(187, 187, 7, 0x0080, 0x10, 11, 1),
+ PIN_FIELD_BASE(188, 188, 7, 0x0080, 0x10, 2, 1),
+ PIN_FIELD_BASE(189, 189, 7, 0x0080, 0x10, 3, 1),
+ PIN_FIELD_BASE(190, 190, 7, 0x0080, 0x10, 4, 1),
+ PIN_FIELD_BASE(191, 191, 7, 0x0080, 0x10, 5, 1),
+ PIN_FIELD_BASE(192, 192, 7, 0x0080, 0x10, 6, 1),
+ PIN_FIELD_BASE(193, 193, 7, 0x0080, 0x10, 7, 1),
+ PIN_FIELD_BASE(194, 194, 7, 0x0080, 0x10, 8, 1),
+ PIN_FIELD_BASE(195, 195, 7, 0x0080, 0x10, 9, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_r1_range[] = {
+ PIN_FIELD_BASE(33, 33, 9, 0x00c0, 0x10, 0, 1),
+ PIN_FIELD_BASE(34, 34, 9, 0x00c0, 0x10, 1, 1),
+ PIN_FIELD_BASE(35, 35, 9, 0x00c0, 0x10, 2, 1),
+ PIN_FIELD_BASE(77, 77, 2, 0x0090, 0x10, 0, 1),
+ PIN_FIELD_BASE(78, 78, 2, 0x0090, 0x10, 1, 1),
+ PIN_FIELD_BASE(79, 79, 2, 0x0090, 0x10, 2, 1),
+ PIN_FIELD_BASE(80, 80, 2, 0x0090, 0x10, 3, 1),
+ PIN_FIELD_BASE(81, 81, 2, 0x0090, 0x10, 4, 1),
+ PIN_FIELD_BASE(82, 82, 2, 0x0090, 0x10, 5, 1),
+ PIN_FIELD_BASE(83, 83, 2, 0x0090, 0x10, 9, 1),
+ PIN_FIELD_BASE(84, 84, 2, 0x0090, 0x10, 11, 1),
+ PIN_FIELD_BASE(85, 85, 2, 0x0090, 0x10, 10, 1),
+ PIN_FIELD_BASE(86, 86, 2, 0x0090, 0x10, 12, 1),
+ PIN_FIELD_BASE(87, 87, 2, 0x0090, 0x10, 14, 1),
+ PIN_FIELD_BASE(88, 88, 2, 0x0090, 0x10, 13, 1),
+ PIN_FIELD_BASE(97, 97, 1, 0x00e0, 0x10, 1, 1),
+ PIN_FIELD_BASE(98, 98, 1, 0x00e0, 0x10, 0, 1),
+ PIN_FIELD_BASE(117, 117, 1, 0x00e0, 0x10, 2, 1),
+ PIN_FIELD_BASE(118, 118, 1, 0x00e0, 0x10, 3, 1),
+ PIN_FIELD_BASE(119, 119, 1, 0x00e0, 0x10, 4, 1),
+ PIN_FIELD_BASE(120, 120, 1, 0x00e0, 0x10, 5, 1),
+ PIN_FIELD_BASE(121, 121, 1, 0x00e0, 0x10, 6, 1),
+ PIN_FIELD_BASE(122, 122, 1, 0x00e0, 0x10, 7, 1),
+ PIN_FIELD_BASE(123, 123, 1, 0x00e0, 0x10, 8, 1),
+ PIN_FIELD_BASE(124, 124, 1, 0x00e0, 0x10, 9, 1),
+ PIN_FIELD_BASE(153, 153, 2, 0x0090, 0x10, 6, 1),
+ PIN_FIELD_BASE(154, 154, 2, 0x0090, 0x10, 7, 1),
+ PIN_FIELD_BASE(155, 155, 2, 0x0090, 0x10, 8, 1),
+ PIN_FIELD_BASE(172, 172, 9, 0x00c0, 0x10, 7, 1),
+ PIN_FIELD_BASE(173, 173, 9, 0x00c0, 0x10, 8, 1),
+ PIN_FIELD_BASE(174, 174, 9, 0x00c0, 0x10, 3, 1),
+ PIN_FIELD_BASE(175, 175, 9, 0x00c0, 0x10, 4, 1),
+ PIN_FIELD_BASE(176, 176, 9, 0x00c0, 0x10, 5, 1),
+ PIN_FIELD_BASE(177, 177, 9, 0x00c0, 0x10, 9, 1),
+ PIN_FIELD_BASE(178, 178, 9, 0x00c0, 0x10, 10, 1),
+ PIN_FIELD_BASE(179, 179, 9, 0x00c0, 0x10, 11, 1),
+ PIN_FIELD_BASE(180, 180, 9, 0x00c0, 0x10, 12, 1),
+ PIN_FIELD_BASE(181, 181, 9, 0x00c0, 0x10, 13, 1),
+ PIN_FIELD_BASE(182, 182, 9, 0x00c0, 0x10, 14, 1),
+ PIN_FIELD_BASE(183, 183, 9, 0x00c0, 0x10, 6, 1),
+ PIN_FIELD_BASE(184, 184, 7, 0x0090, 0x10, 10, 1),
+ PIN_FIELD_BASE(185, 185, 7, 0x0090, 0x10, 0, 1),
+ PIN_FIELD_BASE(186, 186, 7, 0x0090, 0x10, 1, 1),
+ PIN_FIELD_BASE(187, 187, 7, 0x0090, 0x10, 11, 1),
+ PIN_FIELD_BASE(188, 188, 7, 0x0090, 0x10, 2, 1),
+ PIN_FIELD_BASE(189, 189, 7, 0x0090, 0x10, 3, 1),
+ PIN_FIELD_BASE(190, 190, 7, 0x0090, 0x10, 4, 1),
+ PIN_FIELD_BASE(191, 191, 7, 0x0090, 0x10, 5, 1),
+ PIN_FIELD_BASE(192, 192, 7, 0x0090, 0x10, 6, 1),
+ PIN_FIELD_BASE(193, 193, 7, 0x0090, 0x10, 7, 1),
+ PIN_FIELD_BASE(194, 194, 7, 0x0090, 0x10, 8, 1),
+ PIN_FIELD_BASE(195, 195, 7, 0x0090, 0x10, 9, 1),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_drv_range[] = {
+ PIN_FIELD_BASE(0, 0, 3, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(1, 1, 3, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(2, 2, 3, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(3, 3, 3, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(4, 4, 3, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(5, 5, 3, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(6, 6, 4, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(7, 7, 4, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(8, 8, 4, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(9, 9, 4, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(10, 10, 4, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(11, 11, 4, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(12, 12, 4, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(13, 13, 6, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(14, 14, 6, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(15, 15, 6, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(16, 16, 6, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(17, 17, 6, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(18, 18, 6, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(19, 19, 3, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(20, 20, 3, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(21, 21, 3, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(22, 22, 3, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(23, 23, 3, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(24, 24, 5, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(25, 25, 3, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(26, 26, 3, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(27, 27, 3, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(28, 28, 3, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(29, 29, 6, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(30, 30, 6, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(31, 31, 6, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(32, 32, 6, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(33, 33, 9, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(34, 34, 9, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(35, 35, 9, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(36, 36, 8, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(37, 37, 8, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(38, 38, 8, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(39, 39, 8, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(40, 40, 8, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(41, 41, 4, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(42, 42, 4, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(43, 43, 4, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(44, 44, 4, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(45, 45, 4, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(46, 46, 4, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(47, 47, 4, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(48, 48, 3, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(49, 49, 3, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(50, 50, 3, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(51, 51, 3, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(52, 52, 3, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(53, 53, 3, 0x0010, 0x10, 15, 3),
+ PIN_FIELD_BASE(54, 54, 3, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(55, 55, 3, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(56, 56, 5, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(57, 57, 5, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(58, 58, 3, 0x0020, 0x10, 6, 3),
+ PIN_FIELD_BASE(59, 59, 3, 0x0020, 0x10, 3, 3),
+ PIN_FIELD_BASE(60, 60, 8, 0x0020, 0x10, 0, 3),
+ PIN_FIELD_BASE(61, 61, 8, 0x0020, 0x10, 3, 3),
+ PIN_FIELD_BASE(62, 62, 8, 0x0020, 0x10, 9, 3),
+ PIN_FIELD_BASE(63, 63, 8, 0x0020, 0x10, 6, 3),
+ PIN_FIELD_BASE(64, 64, 8, 0x0020, 0x10, 12, 3),
+ PIN_FIELD_BASE(65, 65, 8, 0x0020, 0x10, 15, 3),
+ PIN_FIELD_BASE(66, 66, 8, 0x0020, 0x10, 21, 3),
+ PIN_FIELD_BASE(67, 67, 8, 0x0020, 0x10, 18, 3),
+ PIN_FIELD_BASE(68, 68, 5, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(69, 69, 5, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(70, 70, 5, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(71, 71, 5, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(72, 72, 5, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(73, 73, 5, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(74, 74, 5, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(75, 75, 5, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(76, 76, 5, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(77, 77, 2, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(78, 78, 2, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(79, 79, 2, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(80, 80, 2, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(81, 81, 2, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(82, 82, 2, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(83, 83, 2, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(84, 84, 2, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(85, 85, 2, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(86, 86, 2, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(87, 87, 2, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(88, 88, 2, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(89, 89, 4, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(90, 90, 4, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(91, 91, 4, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(92, 92, 8, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(93, 93, 8, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(94, 94, 8, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(95, 95, 8, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(96, 96, 8, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(97, 97, 1, 0x0020, 0x10, 18, 3),
+ PIN_FIELD_BASE(98, 98, 1, 0x0020, 0x10, 15, 3),
+ PIN_FIELD_BASE(99, 99, 1, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(100, 100, 1, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(101, 101, 1, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(102, 102, 1, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(103, 103, 1, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(104, 104, 1, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(105, 105, 1, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(106, 106, 1, 0x0010, 0x10, 15, 3),
+ PIN_FIELD_BASE(107, 107, 1, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(108, 108, 1, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(109, 109, 1, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(110, 110, 1, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(111, 111, 1, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(112, 112, 1, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(113, 113, 1, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(114, 114, 1, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(115, 115, 1, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(116, 116, 1, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(117, 117, 1, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(118, 118, 1, 0x0010, 0x10, 27, 3),
+ PIN_FIELD_BASE(119, 119, 1, 0x0020, 0x10, 0, 3),
+ PIN_FIELD_BASE(120, 120, 1, 0x0020, 0x10, 3, 3),
+ PIN_FIELD_BASE(121, 121, 1, 0x0020, 0x10, 6, 3),
+ PIN_FIELD_BASE(122, 122, 1, 0x0020, 0x10, 9, 3),
+ PIN_FIELD_BASE(123, 123, 1, 0x0020, 0x10, 12, 3),
+ PIN_FIELD_BASE(124, 124, 1, 0x0020, 0x10, 12, 3),
+ PIN_FIELD_BASE(125, 125, 8, 0x0010, 0x10, 27, 3),
+ PIN_FIELD_BASE(126, 126, 8, 0x0020, 0x10, 24, 3),
+ PIN_FIELD_BASE(127, 127, 8, 0x0020, 0x10, 27, 3),
+ PIN_FIELD_BASE(128, 128, 8, 0x0030, 0x10, 0, 3),
+ PIN_FIELD_BASE(129, 129, 8, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(130, 130, 8, 0x0010, 0x10, 9, 3),
+ PIN_FIELD_BASE(131, 131, 6, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(132, 132, 6, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(133, 133, 8, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(134, 134, 8, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(135, 135, 6, 0x0010, 0x10, 15, 3),
+ PIN_FIELD_BASE(136, 136, 6, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(137, 137, 6, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(138, 138, 6, 0x0010, 0x10, 27, 3),
+ PIN_FIELD_BASE(139, 139, 6, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(140, 140, 6, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(141, 141, 6, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(142, 142, 6, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(143, 143, 8, 0x0010, 0x10, 6, 3),
+ PIN_FIELD_BASE(144, 144, 8, 0x0010, 0x10, 15, 3),
+ PIN_FIELD_BASE(145, 145, 5, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(146, 146, 5, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(147, 147, 3, 0x0010, 0x10, 27, 3),
+ PIN_FIELD_BASE(148, 148, 3, 0x0020, 0x10, 0, 3),
+ PIN_FIELD_BASE(149, 149, 8, 0x0010, 0x10, 18, 3),
+ PIN_FIELD_BASE(150, 150, 8, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(151, 151, 8, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(152, 152, 8, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(153, 153, 2, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(154, 154, 2, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(155, 155, 2, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(156, 156, 9, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(157, 157, 9, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(158, 158, 9, 0x0000, 0x10, 27, 3),
+ PIN_FIELD_BASE(159, 159, 9, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(160, 160, 4, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(161, 161, 4, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(162, 162, 4, 0x0010, 0x10, 21, 3),
+ PIN_FIELD_BASE(163, 163, 4, 0x0010, 0x10, 24, 3),
+ PIN_FIELD_BASE(164, 164, 4, 0x0010, 0x10, 15, 3),
+ PIN_FIELD_BASE(165, 165, 4, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(166, 166, 4, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(167, 167, 4, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(168, 168, 4, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(169, 169, 4, 0x0010, 0x10, 12, 3),
+ PIN_FIELD_BASE(170, 170, 4, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(171, 171, 4, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(172, 172, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(173, 173, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(174, 174, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(175, 175, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(176, 176, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(177, 177, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(178, 178, 9, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(179, 179, 9, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(180, 180, 9, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(181, 181, 9, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(182, 182, 9, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(183, 183, 9, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(184, 184, 7, 0x0010, 0x10, 0, 3),
+ PIN_FIELD_BASE(185, 185, 7, 0x0000, 0x10, 0, 3),
+ PIN_FIELD_BASE(186, 186, 7, 0x0000, 0x10, 3, 3),
+ PIN_FIELD_BASE(187, 187, 7, 0x0010, 0x10, 3, 3),
+ PIN_FIELD_BASE(188, 188, 7, 0x0000, 0x10, 6, 3),
+ PIN_FIELD_BASE(189, 189, 7, 0x0000, 0x10, 9, 3),
+ PIN_FIELD_BASE(190, 190, 7, 0x0000, 0x10, 12, 3),
+ PIN_FIELD_BASE(191, 191, 7, 0x0000, 0x10, 15, 3),
+ PIN_FIELD_BASE(192, 192, 7, 0x0000, 0x10, 18, 3),
+ PIN_FIELD_BASE(193, 193, 7, 0x0000, 0x10, 21, 3),
+ PIN_FIELD_BASE(194, 194, 7, 0x0000, 0x10, 24, 3),
+ PIN_FIELD_BASE(195, 195, 7, 0x0000, 0x10, 27, 3),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_drv_adv_range[] = {
+ PIN_FIELD_BASE(19, 19, 3, 0x0030, 0x10, 0, 3),
+ PIN_FIELD_BASE(24, 24, 5, 0x0020, 0x10, 0, 3),
+ PIN_FIELD_BASE(25, 25, 3, 0x0030, 0x10, 3, 3),
+ PIN_FIELD_BASE(26, 26, 3, 0x0030, 0x10, 6, 3),
+ PIN_FIELD_BASE(52, 52, 3, 0x0030, 0x10, 12, 3),
+ PIN_FIELD_BASE(53, 53, 3, 0x0030, 0x10, 15, 3),
+ PIN_FIELD_BASE(55, 55, 3, 0x0030, 0x10, 9, 3),
+ PIN_FIELD_BASE(60, 60, 8, 0x0050, 0x10, 12, 3),
+ PIN_FIELD_BASE(61, 61, 8, 0x0050, 0x10, 15, 3),
+ PIN_FIELD_BASE(62, 62, 8, 0x0050, 0x10, 21, 3),
+ PIN_FIELD_BASE(63, 63, 8, 0x0050, 0x10, 18, 3),
+ PIN_FIELD_BASE(64, 64, 8, 0x0050, 0x10, 24, 3),
+ PIN_FIELD_BASE(65, 65, 8, 0x0050, 0x10, 27, 3),
+ PIN_FIELD_BASE(66, 66, 8, 0x0060, 0x10, 3, 3),
+ PIN_FIELD_BASE(67, 67, 8, 0x0060, 0x10, 0, 3),
+ PIN_FIELD_BASE(92, 92, 8, 0x0040, 0x10, 0, 3),
+ PIN_FIELD_BASE(93, 93, 8, 0x0040, 0x10, 3, 3),
+ PIN_FIELD_BASE(94, 94, 8, 0x0040, 0x10, 6, 3),
+ PIN_FIELD_BASE(95, 95, 8, 0x0040, 0x10, 9, 3),
+ PIN_FIELD_BASE(96, 96, 8, 0x0040, 0x10, 12, 3),
+ PIN_FIELD_BASE(125, 125, 8, 0x0050, 0x10, 9, 3),
+ PIN_FIELD_BASE(126, 126, 8, 0x0060, 0x10, 6, 3),
+ PIN_FIELD_BASE(127, 127, 8, 0x0060, 0x10, 9, 3),
+ PIN_FIELD_BASE(128, 128, 8, 0x0060, 0x10, 12, 3),
+ PIN_FIELD_BASE(129, 129, 8, 0x0040, 0x10, 15, 3),
+ PIN_FIELD_BASE(130, 130, 8, 0x0040, 0x10, 24, 3),
+ PIN_FIELD_BASE(131, 131, 6, 0x0030, 0x10, 12, 3),
+ PIN_FIELD_BASE(132, 132, 6, 0x0030, 0x10, 21, 3),
+ PIN_FIELD_BASE(133, 133, 8, 0x0040, 0x10, 18, 3),
+ PIN_FIELD_BASE(134, 134, 8, 0x0040, 0x10, 27, 3),
+ PIN_FIELD_BASE(135, 135, 6, 0x0030, 0x10, 15, 3),
+ PIN_FIELD_BASE(136, 136, 6, 0x0030, 0x10, 24, 3),
+ PIN_FIELD_BASE(137, 137, 6, 0x0030, 0x10, 18, 3),
+ PIN_FIELD_BASE(138, 138, 6, 0x0030, 0x10, 27, 3),
+ PIN_FIELD_BASE(139, 139, 6, 0x0030, 0x10, 0, 3),
+ PIN_FIELD_BASE(140, 140, 6, 0x0030, 0x10, 6, 3),
+ PIN_FIELD_BASE(141, 141, 6, 0x0030, 0x10, 3, 3),
+ PIN_FIELD_BASE(142, 142, 6, 0x0030, 0x10, 9, 3),
+ PIN_FIELD_BASE(143, 143, 8, 0x0040, 0x10, 21, 3),
+ PIN_FIELD_BASE(144, 144, 8, 0x0050, 0x10, 0, 3),
+ PIN_FIELD_BASE(145, 145, 5, 0x0020, 0x10, 3, 3),
+ PIN_FIELD_BASE(146, 146, 5, 0x0020, 0x10, 6, 3),
+ PIN_FIELD_BASE(147, 147, 3, 0x0030, 0x10, 18, 3),
+ PIN_FIELD_BASE(148, 148, 3, 0x0030, 0x10, 21, 3),
+ PIN_FIELD_BASE(149, 149, 8, 0x0050, 0x10, 3, 3),
+ PIN_FIELD_BASE(150, 150, 8, 0x0050, 0x10, 6, 3),
+ PIN_FIELD_BASE(156, 156, 9, 0x0020, 0x10, 0, 5),
+ PIN_FIELD_BASE(157, 157, 9, 0x0020, 0x10, 5, 5),
+ PIN_FIELD_BASE(158, 158, 9, 0x0020, 0x10, 10, 5),
+ PIN_FIELD_BASE(159, 159, 9, 0x0020, 0x10, 15, 5),
+};
+
+static const struct mtk_pin_field_calc mt6878_pin_rsel_range[] = {
+ PIN_FIELD_BASE(19, 19, 3, 0x00d0, 0x10, 0, 3),
+ PIN_FIELD_BASE(24, 24, 5, 0x00a0, 0x10, 0, 3),
+ PIN_FIELD_BASE(25, 25, 3, 0x00d0, 0x10, 3, 3),
+ PIN_FIELD_BASE(26, 26, 3, 0x00d0, 0x10, 6, 3),
+ PIN_FIELD_BASE(52, 52, 3, 0x00d0, 0x10, 12, 3),
+ PIN_FIELD_BASE(53, 53, 3, 0x00d0, 0x10, 15, 3),
+ PIN_FIELD_BASE(55, 55, 3, 0x00d0, 0x10, 9, 3),
+ PIN_FIELD_BASE(60, 60, 8, 0x0110, 0x10, 12, 3),
+ PIN_FIELD_BASE(61, 61, 8, 0x0110, 0x10, 15, 3),
+ PIN_FIELD_BASE(62, 62, 8, 0x0110, 0x10, 21, 3),
+ PIN_FIELD_BASE(63, 63, 8, 0x0110, 0x10, 18, 3),
+ PIN_FIELD_BASE(64, 64, 8, 0x0110, 0x10, 24, 3),
+ PIN_FIELD_BASE(65, 65, 8, 0x0110, 0x10, 27, 3),
+ PIN_FIELD_BASE(66, 66, 8, 0x0120, 0x10, 3, 3),
+ PIN_FIELD_BASE(67, 67, 8, 0x0120, 0x10, 0, 3),
+ PIN_FIELD_BASE(92, 92, 8, 0x0100, 0x10, 0, 3),
+ PIN_FIELD_BASE(93, 93, 8, 0x0100, 0x10, 3, 3),
+ PIN_FIELD_BASE(94, 94, 8, 0x0100, 0x10, 6, 3),
+ PIN_FIELD_BASE(95, 95, 8, 0x0100, 0x10, 9, 3),
+ PIN_FIELD_BASE(96, 96, 8, 0x0100, 0x10, 12, 3),
+ PIN_FIELD_BASE(125, 125, 8, 0x0110, 0x10, 9, 3),
+ PIN_FIELD_BASE(126, 126, 8, 0x0120, 0x10, 6, 3),
+ PIN_FIELD_BASE(127, 127, 8, 0x0120, 0x10, 9, 3),
+ PIN_FIELD_BASE(128, 128, 8, 0x0120, 0x10, 12, 3),
+ PIN_FIELD_BASE(129, 129, 8, 0x0100, 0x10, 15, 3),
+ PIN_FIELD_BASE(130, 130, 8, 0x0100, 0x10, 24, 3),
+ PIN_FIELD_BASE(131, 131, 6, 0x00d0, 0x10, 12, 3),
+ PIN_FIELD_BASE(132, 132, 6, 0x00d0, 0x10, 21, 3),
+ PIN_FIELD_BASE(133, 133, 8, 0x0100, 0x10, 18, 3),
+ PIN_FIELD_BASE(134, 134, 8, 0x0100, 0x10, 27, 3),
+ PIN_FIELD_BASE(135, 135, 6, 0x00d0, 0x10, 15, 3),
+ PIN_FIELD_BASE(136, 136, 6, 0x00d0, 0x10, 24, 3),
+ PIN_FIELD_BASE(137, 137, 6, 0x00d0, 0x10, 18, 3),
+ PIN_FIELD_BASE(138, 138, 6, 0x00d0, 0x10, 27, 3),
+ PIN_FIELD_BASE(139, 139, 6, 0x00d0, 0x10, 0, 3),
+ PIN_FIELD_BASE(140, 140, 6, 0x00d0, 0x10, 6, 3),
+ PIN_FIELD_BASE(141, 141, 6, 0x00d0, 0x10, 3, 3),
+ PIN_FIELD_BASE(142, 142, 6, 0x00d0, 0x10, 9, 3),
+ PIN_FIELD_BASE(143, 143, 8, 0x0100, 0x10, 21, 3),
+ PIN_FIELD_BASE(144, 144, 8, 0x0110, 0x10, 0, 3),
+ PIN_FIELD_BASE(145, 145, 5, 0x00a0, 0x10, 3, 3),
+ PIN_FIELD_BASE(146, 146, 5, 0x00a0, 0x10, 6, 3),
+ PIN_FIELD_BASE(147, 147, 3, 0x00d0, 0x10, 18, 3),
+ PIN_FIELD_BASE(148, 148, 3, 0x00d0, 0x10, 21, 3),
+ PIN_FIELD_BASE(149, 149, 8, 0x0110, 0x10, 3, 3),
+ PIN_FIELD_BASE(150, 150, 8, 0x0110, 0x10, 6, 3),
+};
+
+static const unsigned int mt6878_pull_type[] = {
+ MTK_PULL_PU_PD_TYPE /* 0 */,
+ MTK_PULL_PU_PD_TYPE /* 1 */,
+ MTK_PULL_PU_PD_TYPE /* 2 */,
+ MTK_PULL_PU_PD_TYPE /* 3 */,
+ MTK_PULL_PU_PD_TYPE /* 4 */,
+ MTK_PULL_PU_PD_TYPE /* 5 */,
+ MTK_PULL_PU_PD_TYPE /* 6 */,
+ MTK_PULL_PU_PD_TYPE /* 7 */,
+ MTK_PULL_PU_PD_TYPE /* 8 */,
+ MTK_PULL_PU_PD_TYPE /* 9 */,
+ MTK_PULL_PU_PD_TYPE /* 10 */,
+ MTK_PULL_PU_PD_TYPE /* 11 */,
+ MTK_PULL_PU_PD_TYPE /* 12 */,
+ MTK_PULL_PU_PD_TYPE /* 13 */,
+ MTK_PULL_PU_PD_TYPE /* 14 */,
+ MTK_PULL_PU_PD_TYPE /* 15 */,
+ MTK_PULL_PU_PD_TYPE /* 16 */,
+ MTK_PULL_PU_PD_TYPE /* 17 */,
+ MTK_PULL_PU_PD_TYPE /* 18 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 19 */,
+ MTK_PULL_PU_PD_TYPE /* 20 */,
+ MTK_PULL_PU_PD_TYPE /* 21 */,
+ MTK_PULL_PU_PD_TYPE /* 22 */,
+ MTK_PULL_PU_PD_TYPE /* 23 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 24 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 25 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 26 */,
+ MTK_PULL_PU_PD_TYPE /* 27 */,
+ MTK_PULL_PU_PD_TYPE /* 28 */,
+ MTK_PULL_PU_PD_TYPE /* 29 */,
+ MTK_PULL_PU_PD_TYPE /* 30 */,
+ MTK_PULL_PU_PD_TYPE /* 31 */,
+ MTK_PULL_PU_PD_TYPE /* 32 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 33 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 34 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 35 */,
+ MTK_PULL_PU_PD_TYPE /* 36 */,
+ MTK_PULL_PU_PD_TYPE /* 37 */,
+ MTK_PULL_PU_PD_TYPE /* 38 */,
+ MTK_PULL_PU_PD_TYPE /* 39 */,
+ MTK_PULL_PU_PD_TYPE /* 40 */,
+ MTK_PULL_PU_PD_TYPE /* 41 */,
+ MTK_PULL_PU_PD_TYPE /* 42 */,
+ MTK_PULL_PU_PD_TYPE /* 43 */,
+ MTK_PULL_PU_PD_TYPE /* 44 */,
+ MTK_PULL_PU_PD_TYPE /* 45 */,
+ MTK_PULL_PU_PD_TYPE /* 46 */,
+ MTK_PULL_PU_PD_TYPE /* 47 */,
+ MTK_PULL_PU_PD_TYPE /* 48 */,
+ MTK_PULL_PU_PD_TYPE /* 49 */,
+ MTK_PULL_PU_PD_TYPE /* 50 */,
+ MTK_PULL_PU_PD_TYPE /* 51 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 52 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 53 */,
+ MTK_PULL_PU_PD_TYPE /* 54 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 55 */,
+ MTK_PULL_PU_PD_TYPE /* 56 */,
+ MTK_PULL_PU_PD_TYPE /* 57 */,
+ MTK_PULL_PU_PD_TYPE /* 58 */,
+ MTK_PULL_PU_PD_TYPE /* 59 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 60 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 61 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 62 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 63 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 64 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 65 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 66 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 67 */,
+ MTK_PULL_PU_PD_TYPE /* 68 */,
+ MTK_PULL_PU_PD_TYPE /* 69 */,
+ MTK_PULL_PU_PD_TYPE /* 70 */,
+ MTK_PULL_PU_PD_TYPE /* 71 */,
+ MTK_PULL_PU_PD_TYPE /* 72 */,
+ MTK_PULL_PU_PD_TYPE /* 73 */,
+ MTK_PULL_PU_PD_TYPE /* 74 */,
+ MTK_PULL_PU_PD_TYPE /* 75 */,
+ MTK_PULL_PU_PD_TYPE /* 76 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 77 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 78 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 79 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 80 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 81 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 82 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 83 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 84 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 85 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 86 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 87 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 88 */,
+ MTK_PULL_PU_PD_TYPE /* 89 */,
+ MTK_PULL_PU_PD_TYPE /* 90 */,
+ MTK_PULL_PU_PD_TYPE /* 91 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 92 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 93 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 94 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 95 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 96 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 97 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 98 */,
+ MTK_PULL_PU_PD_TYPE /* 99 */,
+ MTK_PULL_PU_PD_TYPE /* 100 */,
+ MTK_PULL_PU_PD_TYPE /* 101 */,
+ MTK_PULL_PU_PD_TYPE /* 102 */,
+ MTK_PULL_PU_PD_TYPE /* 103 */,
+ MTK_PULL_PU_PD_TYPE /* 104 */,
+ MTK_PULL_PU_PD_TYPE /* 105 */,
+ MTK_PULL_PU_PD_TYPE /* 106 */,
+ MTK_PULL_PU_PD_TYPE /* 107 */,
+ MTK_PULL_PU_PD_TYPE /* 108 */,
+ MTK_PULL_PU_PD_TYPE /* 109 */,
+ MTK_PULL_PU_PD_TYPE /* 110 */,
+ MTK_PULL_PU_PD_TYPE /* 111 */,
+ MTK_PULL_PU_PD_TYPE /* 112 */,
+ MTK_PULL_PU_PD_TYPE /* 113 */,
+ MTK_PULL_PU_PD_TYPE /* 114 */,
+ MTK_PULL_PU_PD_TYPE /* 115 */,
+ MTK_PULL_PU_PD_TYPE /* 116 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 117 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 118 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 119 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 120 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 121 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 122 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 123 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 124 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 125 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 126 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 127 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 128 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 129 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 130 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 131 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 132 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 133 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 134 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 135 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 136 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 137 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 138 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 139 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 140 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 141 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 142 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 143 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 144 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 145 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 146 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 147 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 148 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 149 */,
+ MTK_PULL_PU_PD_RSEL_TYPE /* 150 */,
+ MTK_PULL_PU_PD_TYPE /* 151 */,
+ MTK_PULL_PU_PD_TYPE /* 152 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 153 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 154 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 155 */,
+ MTK_PULL_PU_PD_TYPE /* 156 */,
+ MTK_PULL_PU_PD_TYPE /* 157 */,
+ MTK_PULL_PU_PD_TYPE /* 158 */,
+ MTK_PULL_PU_PD_TYPE /* 159 */,
+ MTK_PULL_PU_PD_TYPE /* 160 */,
+ MTK_PULL_PU_PD_TYPE /* 161 */,
+ MTK_PULL_PU_PD_TYPE /* 162 */,
+ MTK_PULL_PU_PD_TYPE /* 163 */,
+ MTK_PULL_PU_PD_TYPE /* 164 */,
+ MTK_PULL_PU_PD_TYPE /* 165 */,
+ MTK_PULL_PU_PD_TYPE /* 166 */,
+ MTK_PULL_PU_PD_TYPE /* 167 */,
+ MTK_PULL_PU_PD_TYPE /* 168 */,
+ MTK_PULL_PU_PD_TYPE /* 169 */,
+ MTK_PULL_PU_PD_TYPE /* 170 */,
+ MTK_PULL_PU_PD_TYPE /* 171 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 172 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 173 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 174 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 175 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 176 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 177 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 178 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 179 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 180 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 181 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 182 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 183 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 184 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 185 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 186 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 187 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 188 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 189 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 190 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 191 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 192 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 193 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 194 */,
+ MTK_PULL_PUPD_R1R0_TYPE /* 195 */,
+};
+
+static const char * const mt6878_pinctrl_register_base_names[] = {
+ "gpio", "iocfg_bl", "iocfg_bm", "iocfg_br",
+ "iocfg_bl1", "iocfg_br1", "iocfg_lm", "iocfg_lt",
+ "iocfg_rm", "iocfg_rt",
+};
+
+static const struct mtk_eint_hw mt6878_eint_hw = {
+ .port_mask = 31,
+ .ports = 1,
+ .ap_num = 216,
+ .db_cnt = 36,
+ .db_time = debounce_time_mt6878,
+};
+
+static const struct mtk_pin_reg_calc mt6878_reg_cals[PINCTRL_PIN_REG_MAX] = {
+ [PINCTRL_PIN_REG_MODE] = MTK_RANGE(mt6878_pin_mode_range),
+ [PINCTRL_PIN_REG_DIR] = MTK_RANGE(mt6878_pin_dir_range),
+ [PINCTRL_PIN_REG_DI] = MTK_RANGE(mt6878_pin_di_range),
+ [PINCTRL_PIN_REG_DO] = MTK_RANGE(mt6878_pin_do_range),
+ [PINCTRL_PIN_REG_SR] = MTK_RANGE(mt6878_pin_dir_range),
+ [PINCTRL_PIN_REG_SMT] = MTK_RANGE(mt6878_pin_smt_range),
+ [PINCTRL_PIN_REG_IES] = MTK_RANGE(mt6878_pin_ies_range),
+ [PINCTRL_PIN_REG_PU] = MTK_RANGE(mt6878_pin_pu_range),
+ [PINCTRL_PIN_REG_PD] = MTK_RANGE(mt6878_pin_pd_range),
+ [PINCTRL_PIN_REG_DRV] = MTK_RANGE(mt6878_pin_drv_range),
+ [PINCTRL_PIN_REG_PUPD] = MTK_RANGE(mt6878_pin_pupd_range),
+ [PINCTRL_PIN_REG_R0] = MTK_RANGE(mt6878_pin_r0_range),
+ [PINCTRL_PIN_REG_R1] = MTK_RANGE(mt6878_pin_r1_range),
+ [PINCTRL_PIN_REG_DRV_ADV] = MTK_RANGE(mt6878_pin_drv_adv_range),
+ [PINCTRL_PIN_REG_RSEL] = MTK_RANGE(mt6878_pin_rsel_range),
+};
+
+static const struct mtk_pin_soc mt6878_data = {
+ .reg_cal = mt6878_reg_cals,
+ .pins = mtk_pins_mt6878,
+ .npins = ARRAY_SIZE(mtk_pins_mt6878),
+ .ngrps = ARRAY_SIZE(mtk_pins_mt6878),
+ .eint_pin = eint_pins_mt6878,
+ .eint_hw = &mt6878_eint_hw,
+ .nfuncs = 8,
+ .gpio_m = 0,
+ .base_names = mt6878_pinctrl_register_base_names,
+ .nbase_names = ARRAY_SIZE(mt6878_pinctrl_register_base_names),
+ .bias_set_combo = mtk_pinconf_bias_set_combo,
+ .bias_get_combo = mtk_pinconf_bias_get_combo,
+ .pull_type = mt6878_pull_type,
+ .adv_drive_get = mtk_pinconf_adv_drive_get,
+ .adv_drive_set = mtk_pinconf_adv_drive_set,
+};
+
+static const struct of_device_id mt6878_pinctrl_of_match[] = {
+ { .compatible = "mediatek,mt6878-pinctrl", .data = &mt6878_data },
+ { }
+};
+
+static struct platform_driver mt6878_pinctrl_driver = {
+ .driver = {
+ .name = "mt6878-pinctrl",
+ .of_match_table = mt6878_pinctrl_of_match,
+ .pm = pm_sleep_ptr(&mtk_paris_pinctrl_pm_ops),
+ },
+ .probe = mtk_paris_pinctrl_probe,
+};
+
+static int __init mt6878_pinctrl_init(void)
+{
+ return platform_driver_register(&mt6878_pinctrl_driver);
+}
+arch_initcall(mt6878_pinctrl_init);
+
+MODULE_DESCRIPTION("MediaTek MT6878 Pinctrl Driver");
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8189.c b/drivers/pinctrl/mediatek/pinctrl-mt8189.c
index 7028aff55ae5..f6a3e584588b 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8189.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8189.c
@@ -1642,9 +1642,7 @@ static const struct mtk_pin_reg_calc mt8189_reg_cals[PINCTRL_PIN_REG_MAX] = {
};
static const char * const mt8189_pinctrl_register_base_names[] = {
- "gpio_base", "iocfg_bm0_base", "iocfg_bm1_base", "iocfg_bm2_base", "iocfg_lm_base",
- "iocfg_lt0_base", "iocfg_lt1_base", "iocfg_rb0_base", "iocfg_rb1_base",
- "iocfg_rt_base"
+ "base", "lm", "rb0", "rb1", "bm0", "bm1", "bm2", "lt0", "lt1", "rt",
};
static const struct mtk_eint_hw mt8189_eint_hw = {
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8196.c b/drivers/pinctrl/mediatek/pinctrl-mt8196.c
index 82a73929c7a0..dec957c1724b 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8196.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8196.c
@@ -1801,10 +1801,8 @@ static const struct mtk_pin_reg_calc mt8196_reg_cals[PINCTRL_PIN_REG_MAX] = {
};
static const char * const mt8196_pinctrl_register_base_names[] = {
- "iocfg0", "iocfg_rt", "iocfg_rm1", "iocfg_rm2",
- "iocfg_rb", "iocfg_bm1", "iocfg_bm2", "iocfg_bm3",
- "iocfg_lt", "iocfg_lm1", "iocfg_lm2", "iocfg_lb1",
- "iocfg_lb2", "iocfg_tm1", "iocfg_tm2", "iocfg_tm3",
+ "base", "rt", "rm1", "rm2", "rb", "bm1", "bm2", "bm3",
+ "lt", "lm1", "lm2", "lb1", "lb2", "tm1", "tm2", "tm3",
};
static const struct mtk_eint_hw mt8196_eint_hw = {
diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-mt6878.h b/drivers/pinctrl/mediatek/pinctrl-mtk-mt6878.h
new file mode 100644
index 000000000000..a251af00eff1
--- /dev/null
+++ b/drivers/pinctrl/mediatek/pinctrl-mtk-mt6878.h
@@ -0,0 +1,2248 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright (C) 2023 MediaTek Inc.
+ * Author: Light Hsieh <light.hsieh@mediatek.com>
+ *
+ * Copyright (C) 2025 Igor Belwon <igor.belwon@mentallysanemainliners.org>
+ */
+
+#ifndef __PINCTRL_MTK_MT6878_H
+#define __PINCTRL_MTK_MT6878_H
+
+#include "pinctrl-paris.h"
+
+static const struct mtk_pin_desc mtk_pins_mt6878[] = {
+ MTK_PIN(
+ 0, "GPIO0",
+ MTK_EINT_FUNCTION(0, 0),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO0"),
+ MTK_FUNCTION(1, "TP_GPIO0_AO"),
+ MTK_FUNCTION(2, "SRCLKENA1"),
+ MTK_FUNCTION(7, "DBG_MON_A3")
+ ),
+ MTK_PIN(
+ 1, "GPIO1",
+ MTK_EINT_FUNCTION(0, 1),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO1"),
+ MTK_FUNCTION(1, "TP_GPIO1_AO"),
+ MTK_FUNCTION(2, "SRCLKENA1"),
+ MTK_FUNCTION(3, "SRCLKENA2"),
+ MTK_FUNCTION(5, "IDDIG"),
+ MTK_FUNCTION(7, "DBG_MON_A4")
+ ),
+ MTK_PIN(
+ 2, "GPIO2",
+ MTK_EINT_FUNCTION(0, 2),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO2"),
+ MTK_FUNCTION(1, "TP_GPIO2_AO"),
+ MTK_FUNCTION(2, "SRCLKENAI0"),
+ MTK_FUNCTION(4, "SCP_DMIC_CLK"),
+ MTK_FUNCTION(5, "DMIC_CLK"),
+ MTK_FUNCTION(7, "DBG_MON_A5")
+ ),
+ MTK_PIN(
+ 3, "GPIO3",
+ MTK_EINT_FUNCTION(0, 3),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO3"),
+ MTK_FUNCTION(1, "TP_GPIO3_AO"),
+ MTK_FUNCTION(2, "SRCLKENAI1"),
+ MTK_FUNCTION(4, "SCP_DMIC_DAT"),
+ MTK_FUNCTION(5, "DMIC_DAT"),
+ MTK_FUNCTION(7, "DBG_MON_A6")
+ ),
+ MTK_PIN(
+ 4, "GPIO4",
+ MTK_EINT_FUNCTION(0, 4),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO4"),
+ MTK_FUNCTION(1, "SPI7_CLK"),
+ MTK_FUNCTION(2, "TP_GPIO4_AO"),
+ MTK_FUNCTION(3, "ANT_SEL0"),
+ MTK_FUNCTION(5, "DMIC1_CLK"),
+ MTK_FUNCTION(6, "MD_INT4"),
+ MTK_FUNCTION(7, "DBG_MON_A7")
+ ),
+ MTK_PIN(
+ 5, "GPIO5",
+ MTK_EINT_FUNCTION(0, 5),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO5"),
+ MTK_FUNCTION(1, "SPI7_CSB"),
+ MTK_FUNCTION(2, "TP_GPIO5_AO"),
+ MTK_FUNCTION(3, "ANT_SEL1"),
+ MTK_FUNCTION(5, "DMIC1_DAT"),
+ MTK_FUNCTION(6, "MD_INT0"),
+ MTK_FUNCTION(7, "DBG_MON_A8")
+ ),
+ MTK_PIN(
+ 6, "GPIO6",
+ MTK_EINT_FUNCTION(0, 6),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO6"),
+ MTK_FUNCTION(1, "SPI7_MO"),
+ MTK_FUNCTION(2, "TP_GPIO6_AO"),
+ MTK_FUNCTION(3, "ANT_SEL2"),
+ MTK_FUNCTION(4, "MD32_0_GPIO0"),
+ MTK_FUNCTION(6, "MD_INT3"),
+ MTK_FUNCTION(7, "DBG_MON_B0")
+ ),
+ MTK_PIN(
+ 7, "GPIO7",
+ MTK_EINT_FUNCTION(0, 7),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO7"),
+ MTK_FUNCTION(1, "SPI7_MI"),
+ MTK_FUNCTION(2, "TP_GPIO7_AO"),
+ MTK_FUNCTION(3, "ANT_SEL3"),
+ MTK_FUNCTION(4, "MD32_1_GPIO0")
+ ),
+ MTK_PIN(
+ 8, "GPIO8",
+ MTK_EINT_FUNCTION(0, 8),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO8"),
+ MTK_FUNCTION(2, "SCP_JTAG0_TRSTN_VLP"),
+ MTK_FUNCTION(3, "SPM_JTAG_TRSTN_VLP"),
+ MTK_FUNCTION(4, "SSPM_JTAG_TRSTN_VLP"),
+ MTK_FUNCTION(5, "HFRP_JTAG0_TRSTN"),
+ MTK_FUNCTION(6, "IO_JTAG_TRSTN"),
+ MTK_FUNCTION(7, "CONN_BGF_MCU_TDI")
+ ),
+ MTK_PIN(
+ 9, "GPIO9",
+ MTK_EINT_FUNCTION(0, 9),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO9"),
+ MTK_FUNCTION(2, "SCP_JTAG0_TCK_VLP"),
+ MTK_FUNCTION(3, "SPM_JTAG_TCK_VLP"),
+ MTK_FUNCTION(4, "SSPM_JTAG_TCK_VLP"),
+ MTK_FUNCTION(5, "HFRP_JTAG0_TCK"),
+ MTK_FUNCTION(6, "IO_JTAG_TCK"),
+ MTK_FUNCTION(7, "CONN_BGF_MCU_TRST_B")
+ ),
+ MTK_PIN(
+ 10, "GPIO10",
+ MTK_EINT_FUNCTION(0, 10),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO10"),
+ MTK_FUNCTION(2, "SCP_JTAG0_TMS_VLP"),
+ MTK_FUNCTION(3, "SPM_JTAG_TMS_VLP"),
+ MTK_FUNCTION(4, "SSPM_JTAG_TMS_VLP"),
+ MTK_FUNCTION(5, "HFRP_JTAG0_TMS"),
+ MTK_FUNCTION(6, "IO_JTAG_TMS"),
+ MTK_FUNCTION(7, "CONN_BGF_MCU_TCK")
+ ),
+ MTK_PIN(
+ 11, "GPIO11",
+ MTK_EINT_FUNCTION(0, 11),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO11"),
+ MTK_FUNCTION(2, "SCP_JTAG0_TDI_VLP"),
+ MTK_FUNCTION(3, "SPM_JTAG_TDI_VLP"),
+ MTK_FUNCTION(4, "SSPM_JTAG_TDI_VLP"),
+ MTK_FUNCTION(5, "HFRP_JTAG0_TDI"),
+ MTK_FUNCTION(6, "IO_JTAG_TDI"),
+ MTK_FUNCTION(7, "CONN_BGF_MCU_TDO")
+ ),
+ MTK_PIN(
+ 12, "GPIO12",
+ MTK_EINT_FUNCTION(0, 12),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO12"),
+ MTK_FUNCTION(2, "SCP_JTAG0_TDO_VLP"),
+ MTK_FUNCTION(3, "SPM_JTAG_TDO_VLP"),
+ MTK_FUNCTION(4, "SSPM_JTAG_TDO_VLP"),
+ MTK_FUNCTION(5, "HFRP_JTAG0_TDO"),
+ MTK_FUNCTION(6, "IO_JTAG_TDO"),
+ MTK_FUNCTION(7, "CONN_BGF_MCU_TMS")
+ ),
+ MTK_PIN(
+ 13, "GPIO13",
+ MTK_EINT_FUNCTION(0, 13),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO13"),
+ MTK_FUNCTION(1, "MFG_EB_JTAG_TDI"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_TDI"),
+ MTK_FUNCTION(3, "SCP_JTAG0_TDI_VCORE"),
+ MTK_FUNCTION(5, "SPM_JTAG_TDI_VCORE"),
+ MTK_FUNCTION(6, "MCUPM_JTAG_TDI")
+ ),
+ MTK_PIN(
+ 14, "GPIO14",
+ MTK_EINT_FUNCTION(0, 14),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO14"),
+ MTK_FUNCTION(1, "MFG_EB_JTAG_TRSTN"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_TRST_B"),
+ MTK_FUNCTION(3, "SCP_JTAG0_TRSTN_VCORE"),
+ MTK_FUNCTION(5, "SPM_JTAG_TRSTN_VCORE"),
+ MTK_FUNCTION(6, "MCUPM_JTAG_TRSTN")
+ ),
+ MTK_PIN(
+ 15, "GPIO15",
+ MTK_EINT_FUNCTION(0, 15),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO15"),
+ MTK_FUNCTION(1, "MFG_EB_JTAG_TCK"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_TCK"),
+ MTK_FUNCTION(3, "SCP_JTAG0_TCK_VCORE"),
+ MTK_FUNCTION(5, "SPM_JTAG_TCK_VCORE"),
+ MTK_FUNCTION(6, "MCUPM_JTAG_TCK")
+ ),
+ MTK_PIN(
+ 16, "GPIO16",
+ MTK_EINT_FUNCTION(0, 16),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO16"),
+ MTK_FUNCTION(1, "MFG_EB_JTAG_TDO"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_TDO"),
+ MTK_FUNCTION(3, "SCP_JTAG0_TDO_VCORE"),
+ MTK_FUNCTION(5, "SPM_JTAG_TDO_VCORE"),
+ MTK_FUNCTION(6, "MCUPM_JTAG_TDO")
+ ),
+ MTK_PIN(
+ 17, "GPIO17",
+ MTK_EINT_FUNCTION(0, 17),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO17"),
+ MTK_FUNCTION(1, "MFG_EB_JTAG_TMS"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_TMS"),
+ MTK_FUNCTION(3, "SCP_JTAG0_TMS_VCORE"),
+ MTK_FUNCTION(5, "SPM_JTAG_TMS_VCORE"),
+ MTK_FUNCTION(6, "MCUPM_JTAG_TMS")
+ ),
+ MTK_PIN(
+ 18, "GPIO18",
+ MTK_EINT_FUNCTION(0, 18),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO18"),
+ MTK_FUNCTION(2, "CONN_BT_TXD"),
+ MTK_FUNCTION(3, "CONN_TCXOENA_REQ"),
+ MTK_FUNCTION(6, "GPS_L1_ELNA_EN")
+ ),
+ MTK_PIN(
+ 19, "GPIO19",
+ MTK_EINT_FUNCTION(0, 19),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO19"),
+ MTK_FUNCTION(1, "PWM_0"),
+ MTK_FUNCTION(3, "SDA10"),
+ MTK_FUNCTION(4, "MD32_0_GPIO0"),
+ MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
+ MTK_FUNCTION(7, "DBG_MON_A9")
+ ),
+ MTK_PIN(
+ 20, "GPIO20",
+ MTK_EINT_FUNCTION(0, 20),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO20"),
+ MTK_FUNCTION(1, "PWM_1"),
+ MTK_FUNCTION(2, "SPI4_CLK"),
+ MTK_FUNCTION(4, "GPS_L1_ELNA_EN"),
+ MTK_FUNCTION(6, "DAP_SONIC_SWCK"),
+ MTK_FUNCTION(7, "DBG_MON_A10")
+ ),
+ MTK_PIN(
+ 21, "GPIO21",
+ MTK_EINT_FUNCTION(0, 21),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO21"),
+ MTK_FUNCTION(1, "PWM_2"),
+ MTK_FUNCTION(2, "SPI4_CSB"),
+ MTK_FUNCTION(4, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(5, "IDDIG"),
+ MTK_FUNCTION(6, "DAP_SONIC_SWD"),
+ MTK_FUNCTION(7, "DBG_MON_A11")
+ ),
+ MTK_PIN(
+ 22, "GPIO22",
+ MTK_EINT_FUNCTION(0, 22),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO22"),
+ MTK_FUNCTION(1, "PWM_3"),
+ MTK_FUNCTION(2, "SPI4_MO"),
+ MTK_FUNCTION(4, "EXT_FRAME_SYNC"),
+ MTK_FUNCTION(5, "VBUSVALID"),
+ MTK_FUNCTION(6, "DAP_MD32_SWCK"),
+ MTK_FUNCTION(7, "DBG_MON_A12")
+ ),
+ MTK_PIN(
+ 23, "GPIO23",
+ MTK_EINT_FUNCTION(0, 23),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO23"),
+ MTK_FUNCTION(2, "SPI4_MI"),
+ MTK_FUNCTION(4, "MD32_1_GPIO0"),
+ MTK_FUNCTION(5, "USB_DRVVBUS"),
+ MTK_FUNCTION(6, "DAP_MD32_SWD"),
+ MTK_FUNCTION(7, "DBG_MON_A13")
+ ),
+ MTK_PIN(
+ 24, "GPIO24",
+ MTK_EINT_FUNCTION(0, 24),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO24"),
+ MTK_FUNCTION(1, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(2, "SCL12"),
+ MTK_FUNCTION(3, "SCL10"),
+ MTK_FUNCTION(4, "CMVREF0"),
+ MTK_FUNCTION(5, "CONN_WIFI_TXD"),
+ MTK_FUNCTION(6, "CMFLASH0"),
+ MTK_FUNCTION(7, "DBG_MON_A14")
+ ),
+ MTK_PIN(
+ 25, "GPIO25",
+ MTK_EINT_FUNCTION(0, 25),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO25"),
+ MTK_FUNCTION(1, "SPI6_CLK"),
+ MTK_FUNCTION(2, "SCL11"),
+ MTK_FUNCTION(4, "CMVREF1"),
+ MTK_FUNCTION(6, "CMFLASH1"),
+ MTK_FUNCTION(7, "DBG_MON_A15")
+ ),
+ MTK_PIN(
+ 26, "GPIO26",
+ MTK_EINT_FUNCTION(0, 26),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO26"),
+ MTK_FUNCTION(1, "SPI6_CSB"),
+ MTK_FUNCTION(2, "SDA11"),
+ MTK_FUNCTION(3, "USB_DRVVBUS"),
+ MTK_FUNCTION(4, "CMVREF2"),
+ MTK_FUNCTION(6, "CMFLASH2"),
+ MTK_FUNCTION(7, "DBG_MON_A16")
+ ),
+ MTK_PIN(
+ 27, "GPIO27",
+ MTK_EINT_FUNCTION(0, 27),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO27"),
+ MTK_FUNCTION(1, "SPI6_MO"),
+ MTK_FUNCTION(3, "VBUSVALID"),
+ MTK_FUNCTION(4, "CMVREF3"),
+ MTK_FUNCTION(5, "DMIC1_CLK"),
+ MTK_FUNCTION(6, "CMFLASH3"),
+ MTK_FUNCTION(7, "DBG_MON_A17")
+ ),
+ MTK_PIN(
+ 28, "GPIO28",
+ MTK_EINT_FUNCTION(0, 28),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO28"),
+ MTK_FUNCTION(1, "SPI6_MI"),
+ MTK_FUNCTION(3, "IDDIG"),
+ MTK_FUNCTION(5, "DMIC1_DAT"),
+ MTK_FUNCTION(6, "CMFLASH0"),
+ MTK_FUNCTION(7, "DBG_MON_A18")
+ ),
+ MTK_PIN(
+ 29, "GPIO29",
+ MTK_EINT_FUNCTION(0, 29),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO29"),
+ MTK_FUNCTION(1, "I2SIN2_BCK"),
+ MTK_FUNCTION(2, "TP_UTXD1_VCORE"),
+ MTK_FUNCTION(3, "MD_UTXD0"),
+ MTK_FUNCTION(4, "SSPM_UTXD_AO_VCORE"),
+ MTK_FUNCTION(5, "MD32_1_TXD"),
+ MTK_FUNCTION(6, "CONN_BT_TXD"),
+ MTK_FUNCTION(7, "PTA_TXD")
+ ),
+ MTK_PIN(
+ 30, "GPIO30",
+ MTK_EINT_FUNCTION(0, 30),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO30"),
+ MTK_FUNCTION(1, "I2SIN2_LRCK"),
+ MTK_FUNCTION(2, "TP_URXD1_VCORE"),
+ MTK_FUNCTION(3, "MD_URXD0"),
+ MTK_FUNCTION(4, "SSPM_URXD_AO_VCORE"),
+ MTK_FUNCTION(5, "MD32_1_RXD"),
+ MTK_FUNCTION(7, "PTA_RXD")
+ ),
+ MTK_PIN(
+ 31, "GPIO31",
+ MTK_EINT_FUNCTION(0, 31),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO31"),
+ MTK_FUNCTION(1, "I2SOUT2_DO"),
+ MTK_FUNCTION(2, "TP_UTXD2_VCORE"),
+ MTK_FUNCTION(3, "MD_UTXD1"),
+ MTK_FUNCTION(4, "HFRP_UTXD1"),
+ MTK_FUNCTION(5, "MD32_0_TXD"),
+ MTK_FUNCTION(6, "CONN_WIFI_TXD"),
+ MTK_FUNCTION(7, "CONN_BGF_UART0_TXD")
+ ),
+ MTK_PIN(
+ 32, "GPIO32",
+ MTK_EINT_FUNCTION(0, 32),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO32"),
+ MTK_FUNCTION(1, "I2SIN2_DI"),
+ MTK_FUNCTION(2, "TP_URXD2_VCORE"),
+ MTK_FUNCTION(3, "MD_URXD1"),
+ MTK_FUNCTION(4, "HFRP_URXD1"),
+ MTK_FUNCTION(5, "MD32_0_RXD"),
+ MTK_FUNCTION(7, "CONN_BGF_UART0_RXD")
+ ),
+ MTK_PIN(
+ 33, "GPIO33",
+ MTK_EINT_FUNCTION(0, 33),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO33"),
+ MTK_FUNCTION(1, "ANT_SEL0"),
+ MTK_FUNCTION(3, "GPS_L1_ELNA_EN"),
+ MTK_FUNCTION(4, "SCL1"),
+ MTK_FUNCTION(5, "CONN_BPI_BUS18_ANT1"),
+ MTK_FUNCTION(6, "MD_UCTS0")
+ ),
+ MTK_PIN(
+ 34, "GPIO34",
+ MTK_EINT_FUNCTION(0, 34),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO34"),
+ MTK_FUNCTION(1, "ANT_SEL1"),
+ MTK_FUNCTION(3, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(4, "SDA1"),
+ MTK_FUNCTION(5, "CONN_BPI_BUS19_ANT2"),
+ MTK_FUNCTION(6, "MD_URTS0")
+ ),
+ MTK_PIN(
+ 35, "GPIO35",
+ MTK_EINT_FUNCTION(0, 35),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO35"),
+ MTK_FUNCTION(1, "ANT_SEL2"),
+ MTK_FUNCTION(2, "SSPM_JTAG_TCK_VCORE"),
+ MTK_FUNCTION(3, "UDI_TCK"),
+ MTK_FUNCTION(5, "CONN_BPI_BUS20_ANT3"),
+ MTK_FUNCTION(6, "MD_UCTS1")
+ ),
+ MTK_PIN(
+ 36, "GPIO36",
+ MTK_EINT_FUNCTION(0, 36),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO36"),
+ MTK_FUNCTION(1, "ANT_SEL3"),
+ MTK_FUNCTION(2, "SSPM_JTAG_TRSTN_VCORE"),
+ MTK_FUNCTION(3, "UDI_NTRST"),
+ MTK_FUNCTION(5, "CONN_BPI_BUS21_ANT4"),
+ MTK_FUNCTION(6, "MD_URTS1")
+ ),
+ MTK_PIN(
+ 37, "GPIO37",
+ MTK_EINT_FUNCTION(0, 37),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO37"),
+ MTK_FUNCTION(1, "ANT_SEL4"),
+ MTK_FUNCTION(2, "SSPM_JTAG_TDI_VCORE"),
+ MTK_FUNCTION(3, "UDI_TDI"),
+ MTK_FUNCTION(6, "TP_UCTS1_VCORE")
+ ),
+ MTK_PIN(
+ 38, "GPIO38",
+ MTK_EINT_FUNCTION(0, 38),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO38"),
+ MTK_FUNCTION(1, "ANT_SEL5"),
+ MTK_FUNCTION(2, "SSPM_JTAG_TMS_VCORE"),
+ MTK_FUNCTION(3, "UDI_TMS"),
+ MTK_FUNCTION(6, "TP_URTS1_VCORE")
+ ),
+ MTK_PIN(
+ 39, "GPIO39",
+ MTK_EINT_FUNCTION(0, 39),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO39"),
+ MTK_FUNCTION(1, "ANT_SEL6"),
+ MTK_FUNCTION(2, "SSPM_JTAG_TDO_VCORE"),
+ MTK_FUNCTION(3, "UDI_TDO"),
+ MTK_FUNCTION(5, "CLKM3")
+ ),
+ MTK_PIN(
+ 40, "GPIO40",
+ MTK_EINT_FUNCTION(0, 40),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO40"),
+ MTK_FUNCTION(1, "ANT_SEL7"),
+ MTK_FUNCTION(2, "PMSR_SMAP"),
+ MTK_FUNCTION(3, "CONN_TCXOENA_REQ"),
+ MTK_FUNCTION(4, "CONN_WIFI_TXD"),
+ MTK_FUNCTION(5, "GPS_PPS")
+ ),
+ MTK_PIN(
+ 41, "GPIO41",
+ MTK_EINT_FUNCTION(0, 41),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO41"),
+ MTK_FUNCTION(1, "I2SIN1_MCK"),
+ MTK_FUNCTION(2, "IDDIG"),
+ MTK_FUNCTION(3, "GPS_PPS"),
+ MTK_FUNCTION(4, "HFRP_UCTS1"),
+ MTK_FUNCTION(5, "TP_UCTS2_VCORE"),
+ MTK_FUNCTION(6, "ANT_SEL8"),
+ MTK_FUNCTION(7, "DBG_MON_B1")
+ ),
+ MTK_PIN(
+ 42, "GPIO42",
+ MTK_EINT_FUNCTION(0, 42),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO42"),
+ MTK_FUNCTION(1, "I2SIN1_BCK"),
+ MTK_FUNCTION(2, "I2SIN4_BCK"),
+ MTK_FUNCTION(4, "HFRP_URTS1"),
+ MTK_FUNCTION(5, "TP_URTS2_VCORE"),
+ MTK_FUNCTION(6, "ANT_SEL9"),
+ MTK_FUNCTION(7, "DBG_MON_B2")
+ ),
+ MTK_PIN(
+ 43, "GPIO43",
+ MTK_EINT_FUNCTION(0, 43),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO43"),
+ MTK_FUNCTION(1, "I2SIN1_LRCK"),
+ MTK_FUNCTION(2, "I2SIN4_LRCK"),
+ MTK_FUNCTION(6, "ANT_SEL10"),
+ MTK_FUNCTION(7, "DBG_MON_B3")
+ ),
+ MTK_PIN(
+ 44, "GPIO44",
+ MTK_EINT_FUNCTION(0, 44),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO44"),
+ MTK_FUNCTION(1, "I2SOUT1_DO"),
+ MTK_FUNCTION(2, "I2SOUT4_DATA0"),
+ MTK_FUNCTION(6, "ANT_SEL11"),
+ MTK_FUNCTION(7, "DBG_MON_B4")
+ ),
+ MTK_PIN(
+ 45, "GPIO45",
+ MTK_EINT_FUNCTION(0, 45),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO45"),
+ MTK_FUNCTION(1, "I2SIN1_DI"),
+ MTK_FUNCTION(2, "I2SIN4_DATA0"),
+ MTK_FUNCTION(5, "AGPS_SYNC"),
+ MTK_FUNCTION(6, "ANT_SEL12"),
+ MTK_FUNCTION(7, "DBG_MON_B5")
+ ),
+ MTK_PIN(
+ 46, "GPIO46",
+ MTK_EINT_FUNCTION(0, 46),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO46"),
+ MTK_FUNCTION(1, "MD_INT1_C2K_UIM0_HOT_PLUG"),
+ MTK_FUNCTION(2, "MD_INT2_C2K_UIM1_HOT_PLUG"),
+ MTK_FUNCTION(3, "SRCLKENAI0"),
+ MTK_FUNCTION(5, "SSPM_UTXD_AO_VLP"),
+ MTK_FUNCTION(6, "MD_MCIF_UTXD0"),
+ MTK_FUNCTION(7, "DBG_MON_B6")
+ ),
+ MTK_PIN(
+ 47, "GPIO47",
+ MTK_EINT_FUNCTION(0, 47),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO47"),
+ MTK_FUNCTION(1, "MD_INT2_C2K_UIM1_HOT_PLUG"),
+ MTK_FUNCTION(2, "MD_INT1_C2K_UIM0_HOT_PLUG"),
+ MTK_FUNCTION(3, "SRCLKENAI1"),
+ MTK_FUNCTION(4, "SRCLKENA1"),
+ MTK_FUNCTION(5, "SSPM_URXD_AO_VLP"),
+ MTK_FUNCTION(6, "MD_MCIF_URXD0"),
+ MTK_FUNCTION(7, "DBG_MON_B7")
+ ),
+ MTK_PIN(
+ 48, "GPIO48",
+ MTK_EINT_FUNCTION(0, 48),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO48"),
+ MTK_FUNCTION(1, "UTXD0"),
+ MTK_FUNCTION(3, "MD_UTXD1"),
+ MTK_FUNCTION(4, "HFRP_UTXD1"),
+ MTK_FUNCTION(5, "MD32_0_TXD")
+ ),
+ MTK_PIN(
+ 49, "GPIO49",
+ MTK_EINT_FUNCTION(0, 49),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO49"),
+ MTK_FUNCTION(1, "URXD0"),
+ MTK_FUNCTION(3, "MD_URXD1"),
+ MTK_FUNCTION(4, "HFRP_URXD1"),
+ MTK_FUNCTION(5, "MD32_0_RXD")
+ ),
+ MTK_PIN(
+ 50, "GPIO50",
+ MTK_EINT_FUNCTION(0, 50),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO50"),
+ MTK_FUNCTION(1, "MD_UTXD0"),
+ MTK_FUNCTION(2, "TP_UTXD1_VLP"),
+ MTK_FUNCTION(3, "CONN_BGF_UART0_TXD"),
+ MTK_FUNCTION(4, "SSPM_UTXD_AO_VLP"),
+ MTK_FUNCTION(5, "MD_MCIF_UTXD0"),
+ MTK_FUNCTION(6, "TP_UTXD2_VLP"),
+ MTK_FUNCTION(7, "UTXD1")
+ ),
+ MTK_PIN(
+ 51, "GPIO51",
+ MTK_EINT_FUNCTION(0, 51),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO51"),
+ MTK_FUNCTION(1, "MD_URXD0"),
+ MTK_FUNCTION(2, "TP_URXD1_VLP"),
+ MTK_FUNCTION(3, "CONN_BGF_UART0_RXD"),
+ MTK_FUNCTION(4, "SSPM_URXD_AO_VLP"),
+ MTK_FUNCTION(5, "MD_MCIF_URXD0"),
+ MTK_FUNCTION(6, "TP_URXD2_VLP"),
+ MTK_FUNCTION(7, "URXD1")
+ ),
+ MTK_PIN(
+ 52, "GPIO52",
+ MTK_EINT_FUNCTION(0, 52),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO52"),
+ MTK_FUNCTION(1, "KPROW0"),
+ MTK_FUNCTION(2, "CMFLASH0"),
+ MTK_FUNCTION(3, "SDA12"),
+ MTK_FUNCTION(4, "DSI_TE1")
+ ),
+ MTK_PIN(
+ 53, "GPIO53",
+ MTK_EINT_FUNCTION(0, 53),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO53"),
+ MTK_FUNCTION(1, "KPROW1"),
+ MTK_FUNCTION(2, "CMFLASH1"),
+ MTK_FUNCTION(3, "SCL12"),
+ MTK_FUNCTION(4, "LCM_RST1"),
+ MTK_FUNCTION(6, "EXTIF0_ACT")
+ ),
+ MTK_PIN(
+ 54, "GPIO54",
+ MTK_EINT_FUNCTION(0, 54),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO54"),
+ MTK_FUNCTION(1, "KPCOL0_VLP"),
+ MTK_FUNCTION(7, "KPCOL0_VLP")
+ ),
+ MTK_PIN(
+ 55, "GPIO55",
+ MTK_EINT_FUNCTION(0, 55),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO55"),
+ MTK_FUNCTION(1, "KPCOL1"),
+ MTK_FUNCTION(3, "SDA12"),
+ MTK_FUNCTION(4, "DISP_PWM1"),
+ MTK_FUNCTION(7, "JTRSTN_SEL1_VCORE")
+ ),
+ MTK_PIN(
+ 56, "GPIO56",
+ MTK_EINT_FUNCTION(0, 56),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO56"),
+ MTK_FUNCTION(1, "SPI0_CLK"),
+ MTK_FUNCTION(7, "JTCK_SEL1_VCORE")
+ ),
+ MTK_PIN(
+ 57, "GPIO57",
+ MTK_EINT_FUNCTION(0, 57),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO57"),
+ MTK_FUNCTION(1, "SPI0_CSB"),
+ MTK_FUNCTION(7, "JTMS_SEL1_VCORE")
+ ),
+ MTK_PIN(
+ 58, "GPIO58",
+ MTK_EINT_FUNCTION(0, 58),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO58"),
+ MTK_FUNCTION(1, "SPI0_MO"),
+ MTK_FUNCTION(7, "JTDO_SEL1_VCORE")
+ ),
+ MTK_PIN(
+ 59, "GPIO59",
+ MTK_EINT_FUNCTION(0, 59),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO59"),
+ MTK_FUNCTION(1, "SPI0_MI"),
+ MTK_FUNCTION(7, "JTDI_SEL1_VCORE")
+ ),
+ MTK_PIN(
+ 60, "GPIO60",
+ MTK_EINT_FUNCTION(0, 60),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO60"),
+ MTK_FUNCTION(1, "SCP_SPI1_CK"),
+ MTK_FUNCTION(2, "SPI1_CLK"),
+ MTK_FUNCTION(4, "SCP_SCL3"),
+ MTK_FUNCTION(5, "TP_GPIO0_AO"),
+ MTK_FUNCTION(6, "UTXD0"),
+ MTK_FUNCTION(7, "TP_UTXD2_VLP")
+ ),
+ MTK_PIN(
+ 61, "GPIO61",
+ MTK_EINT_FUNCTION(0, 61),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO61"),
+ MTK_FUNCTION(1, "SCP_SPI1_CS"),
+ MTK_FUNCTION(2, "SPI1_CSB"),
+ MTK_FUNCTION(5, "TP_GPIO1_AO"),
+ MTK_FUNCTION(6, "URXD0"),
+ MTK_FUNCTION(7, "TP_URXD2_VLP")
+ ),
+ MTK_PIN(
+ 62, "GPIO62",
+ MTK_EINT_FUNCTION(0, 62),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO62"),
+ MTK_FUNCTION(1, "SCP_SPI1_MO"),
+ MTK_FUNCTION(2, "SPI1_MO"),
+ MTK_FUNCTION(3, "SCP_SCL3"),
+ MTK_FUNCTION(4, "SCP_SDA3"),
+ MTK_FUNCTION(5, "TP_GPIO2_AO"),
+ MTK_FUNCTION(7, "DBG_MON_B29")
+ ),
+ MTK_PIN(
+ 63, "GPIO63",
+ MTK_EINT_FUNCTION(0, 63),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO63"),
+ MTK_FUNCTION(1, "SCP_SPI1_MI"),
+ MTK_FUNCTION(2, "SPI1_MI"),
+ MTK_FUNCTION(3, "SCP_SDA3"),
+ MTK_FUNCTION(5, "TP_GPIO3_AO"),
+ MTK_FUNCTION(7, "DBG_MON_B30")
+ ),
+ MTK_PIN(
+ 64, "GPIO64",
+ MTK_EINT_FUNCTION(0, 64),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO64"),
+ MTK_FUNCTION(1, "SCP_SPI2_CK"),
+ MTK_FUNCTION(2, "SPI2_CLK"),
+ MTK_FUNCTION(4, "SCP_SCL2"),
+ MTK_FUNCTION(5, "TP_GPIO4_AO")
+ ),
+ MTK_PIN(
+ 65, "GPIO65",
+ MTK_EINT_FUNCTION(0, 65),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO65"),
+ MTK_FUNCTION(1, "SCP_SPI2_CS"),
+ MTK_FUNCTION(2, "SPI2_CSB"),
+ MTK_FUNCTION(5, "TP_GPIO5_AO"),
+ MTK_FUNCTION(7, "DBG_MON_B31")
+ ),
+ MTK_PIN(
+ 66, "GPIO66",
+ MTK_EINT_FUNCTION(0, 66),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO66"),
+ MTK_FUNCTION(1, "SCP_SPI2_MO"),
+ MTK_FUNCTION(2, "SPI2_MO"),
+ MTK_FUNCTION(3, "SCP_SCL2"),
+ MTK_FUNCTION(4, "SCP_SDA2"),
+ MTK_FUNCTION(5, "TP_GPIO6_AO")
+ ),
+ MTK_PIN(
+ 67, "GPIO67",
+ MTK_EINT_FUNCTION(0, 67),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO67"),
+ MTK_FUNCTION(1, "SCP_SPI2_MI"),
+ MTK_FUNCTION(2, "SPI2_MI"),
+ MTK_FUNCTION(3, "SCP_SDA2"),
+ MTK_FUNCTION(5, "TP_GPIO7_AO")
+ ),
+ MTK_PIN(
+ 68, "GPIO68",
+ MTK_EINT_FUNCTION(0, 68),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO68"),
+ MTK_FUNCTION(1, "SCP_SPI3_CK"),
+ MTK_FUNCTION(2, "SPI3_CLK"),
+ MTK_FUNCTION(3, "MD_INT4"),
+ MTK_FUNCTION(4, "SCP_SCL4"),
+ MTK_FUNCTION(5, "TP_GPIO8_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A19")
+ ),
+ MTK_PIN(
+ 69, "GPIO69",
+ MTK_EINT_FUNCTION(0, 69),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO69"),
+ MTK_FUNCTION(1, "SCP_SPI3_CS"),
+ MTK_FUNCTION(2, "SPI3_CSB"),
+ MTK_FUNCTION(3, "MD_INT3"),
+ MTK_FUNCTION(5, "TP_GPIO9_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A20")
+ ),
+ MTK_PIN(
+ 70, "GPIO70",
+ MTK_EINT_FUNCTION(0, 70),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO70"),
+ MTK_FUNCTION(1, "SCP_SPI3_MO"),
+ MTK_FUNCTION(2, "SPI3_MO"),
+ MTK_FUNCTION(3, "SCP_SCL4"),
+ MTK_FUNCTION(4, "SCP_SDA4"),
+ MTK_FUNCTION(5, "TP_GPIO10_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A21")
+ ),
+ MTK_PIN(
+ 71, "GPIO71",
+ MTK_EINT_FUNCTION(0, 71),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO71"),
+ MTK_FUNCTION(1, "SCP_SPI3_MI"),
+ MTK_FUNCTION(2, "SPI3_MI"),
+ MTK_FUNCTION(3, "SCP_SDA4"),
+ MTK_FUNCTION(4, "MD_INT0"),
+ MTK_FUNCTION(5, "TP_GPIO11_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A22")
+ ),
+ MTK_PIN(
+ 72, "GPIO72",
+ MTK_EINT_FUNCTION(0, 72),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO72"),
+ MTK_FUNCTION(1, "SPI5_CLK"),
+ MTK_FUNCTION(2, "SCP_SPI0_CK"),
+ MTK_FUNCTION(3, "UCTS2"),
+ MTK_FUNCTION(4, "MBISTREADEN_TRIGGER"),
+ MTK_FUNCTION(5, "TP_GPIO12_AO"),
+ MTK_FUNCTION(6, "EXTIF0_ACT"),
+ MTK_FUNCTION(7, "DAP_SONIC_SWCK")
+ ),
+ MTK_PIN(
+ 73, "GPIO73",
+ MTK_EINT_FUNCTION(0, 73),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO73"),
+ MTK_FUNCTION(1, "SPI5_CSB"),
+ MTK_FUNCTION(2, "SCP_SPI0_CS"),
+ MTK_FUNCTION(3, "URTS2"),
+ MTK_FUNCTION(4, "MBISTWRITEEN_TRIGGER"),
+ MTK_FUNCTION(5, "TP_GPIO13_AO"),
+ MTK_FUNCTION(6, "EXTIF0_PRI"),
+ MTK_FUNCTION(7, "DAP_SONIC_SWD")
+ ),
+ MTK_PIN(
+ 74, "GPIO74",
+ MTK_EINT_FUNCTION(0, 74),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO74"),
+ MTK_FUNCTION(1, "SPI5_MO"),
+ MTK_FUNCTION(2, "SCP_SPI0_MO"),
+ MTK_FUNCTION(3, "UTXD2"),
+ MTK_FUNCTION(4, "TP_UTXD2_VCORE"),
+ MTK_FUNCTION(5, "TP_GPIO14_AO"),
+ MTK_FUNCTION(6, "EXTIF0_GNT_B"),
+ MTK_FUNCTION(7, "DAP_MD32_SWCK")
+ ),
+ MTK_PIN(
+ 75, "GPIO75",
+ MTK_EINT_FUNCTION(0, 75),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO75"),
+ MTK_FUNCTION(1, "SPI5_MI"),
+ MTK_FUNCTION(2, "SCP_SPI0_MI"),
+ MTK_FUNCTION(3, "URXD2"),
+ MTK_FUNCTION(4, "TP_URXD2_VCORE"),
+ MTK_FUNCTION(5, "TP_GPIO15_AO"),
+ MTK_FUNCTION(7, "DAP_MD32_SWD")
+ ),
+ MTK_PIN(
+ 76, "GPIO76",
+ MTK_EINT_FUNCTION(0, 76),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO76"),
+ MTK_FUNCTION(1, "AP_GOOD"),
+ MTK_FUNCTION(3, "CONN_WIFI_TXD"),
+ MTK_FUNCTION(4, "GPS_PPS"),
+ MTK_FUNCTION(5, "PMSR_SMAP"),
+ MTK_FUNCTION(6, "AGPS_SYNC")
+ ),
+ MTK_PIN(
+ 77, "GPIO77",
+ MTK_EINT_FUNCTION(0, 77),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO77"),
+ MTK_FUNCTION(1, "MSDC1_CLK"),
+ MTK_FUNCTION(2, "MD1_SIM2_SCLK"),
+ MTK_FUNCTION(3, "UDI_TCK"),
+ MTK_FUNCTION(4, "CONN_DSP_JCK"),
+ MTK_FUNCTION(6, "TSFDC_EN"),
+ MTK_FUNCTION(7, "SSPM_JTAG_TCK_VCORE")
+ ),
+ MTK_PIN(
+ 78, "GPIO78",
+ MTK_EINT_FUNCTION(0, 78),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO78"),
+ MTK_FUNCTION(1, "MSDC1_CMD"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_AICE_TMSC"),
+ MTK_FUNCTION(3, "UDI_TMS"),
+ MTK_FUNCTION(4, "CONN_DSP_JMS"),
+ MTK_FUNCTION(6, "TSFDC_VCO_RST"),
+ MTK_FUNCTION(7, "SSPM_JTAG_TMS_VCORE")
+ ),
+ MTK_PIN(
+ 79, "GPIO79",
+ MTK_EINT_FUNCTION(0, 79),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO79"),
+ MTK_FUNCTION(1, "MSDC1_DAT0"),
+ MTK_FUNCTION(2, "MD1_SIM2_SRST"),
+ MTK_FUNCTION(3, "UDI_TDI"),
+ MTK_FUNCTION(4, "CONN_DSP_JDI"),
+ MTK_FUNCTION(6, "TSFDC_TSSEL2"),
+ MTK_FUNCTION(7, "SSPM_JTAG_TDI_VCORE")
+ ),
+ MTK_PIN(
+ 80, "GPIO80",
+ MTK_EINT_FUNCTION(0, 80),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO80"),
+ MTK_FUNCTION(1, "MSDC1_DAT1"),
+ MTK_FUNCTION(2, "MD1_SIM2_SIO"),
+ MTK_FUNCTION(3, "UDI_TDO"),
+ MTK_FUNCTION(4, "CONN_DSP_JDO"),
+ MTK_FUNCTION(6, "TSFDC_TSSEL1"),
+ MTK_FUNCTION(7, "SSPM_JTAG_TDO_VCORE")
+ ),
+ MTK_PIN(
+ 81, "GPIO81",
+ MTK_EINT_FUNCTION(0, 81),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO81"),
+ MTK_FUNCTION(1, "MSDC1_DAT2"),
+ MTK_FUNCTION(2, "CONN_WF_MCU_AICE_TCKC"),
+ MTK_FUNCTION(3, "UDI_NTRST"),
+ MTK_FUNCTION(4, "CONN_BGF_MCU_AICE_TCKC"),
+ MTK_FUNCTION(5, "MIPI3_D_SDATA"),
+ MTK_FUNCTION(6, "TSFDC_TSSEL0"),
+ MTK_FUNCTION(7, "SSPM_JTAG_TRSTN_VCORE")
+ ),
+ MTK_PIN(
+ 82, "GPIO82",
+ MTK_EINT_FUNCTION(0, 82),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO82"),
+ MTK_FUNCTION(1, "MSDC1_DAT3"),
+ MTK_FUNCTION(3, "CONN_BGF_MCU_AICE_TMSC"),
+ MTK_FUNCTION(4, "CONN_DSP_JINTP"),
+ MTK_FUNCTION(5, "MIPI3_D_SCLK"),
+ MTK_FUNCTION(6, "TSFDC_RCK_SELB")
+ ),
+ MTK_PIN(
+ 83, "GPIO83",
+ MTK_EINT_FUNCTION(0, 83),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO83"),
+ MTK_FUNCTION(1, "MD1_SIM1_SCLK"),
+ MTK_FUNCTION(6, "TSFDC_26M")
+ ),
+ MTK_PIN(
+ 84, "GPIO84",
+ MTK_EINT_FUNCTION(0, 84),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO84"),
+ MTK_FUNCTION(1, "MD1_SIM1_SRST"),
+ MTK_FUNCTION(3, "SPM_JTAG_TCK_VCORE"),
+ MTK_FUNCTION(4, "APU_JTAG_TCK"),
+ MTK_FUNCTION(6, "TSFDC_SDO"),
+ MTK_FUNCTION(7, "CONN_DSP_L5_JCK")
+ ),
+ MTK_PIN(
+ 85, "GPIO85",
+ MTK_EINT_FUNCTION(0, 85),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO85"),
+ MTK_FUNCTION(1, "MD1_SIM1_SIO"),
+ MTK_FUNCTION(3, "SPM_JTAG_TRSTN_VCORE"),
+ MTK_FUNCTION(4, "APU_JTAG_TRST"),
+ MTK_FUNCTION(6, "TSFDC_FOUT"),
+ MTK_FUNCTION(7, "CONN_DSP_L5_JINTP")
+ ),
+ MTK_PIN(
+ 86, "GPIO86",
+ MTK_EINT_FUNCTION(0, 86),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO86"),
+ MTK_FUNCTION(1, "MD1_SIM2_SCLK"),
+ MTK_FUNCTION(3, "SPM_JTAG_TDI_VCORE"),
+ MTK_FUNCTION(4, "APU_JTAG_TDI"),
+ MTK_FUNCTION(6, "TSFDC_SCK"),
+ MTK_FUNCTION(7, "CONN_DSP_L5_JDI")
+ ),
+ MTK_PIN(
+ 87, "GPIO87",
+ MTK_EINT_FUNCTION(0, 87),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO87"),
+ MTK_FUNCTION(1, "MD1_SIM2_SRST"),
+ MTK_FUNCTION(3, "SPM_JTAG_TMS_VCORE"),
+ MTK_FUNCTION(4, "APU_JTAG_TMS"),
+ MTK_FUNCTION(6, "TSFDC_SDI"),
+ MTK_FUNCTION(7, "CONN_DSP_L5_JMS")
+ ),
+ MTK_PIN(
+ 88, "GPIO88",
+ MTK_EINT_FUNCTION(0, 88),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO88"),
+ MTK_FUNCTION(1, "MD1_SIM2_SIO"),
+ MTK_FUNCTION(3, "SPM_JTAG_TDO_VCORE"),
+ MTK_FUNCTION(4, "APU_JTAG_TDO"),
+ MTK_FUNCTION(6, "TSFDC_SCF"),
+ MTK_FUNCTION(7, "CONN_DSP_L5_JDO")
+ ),
+ MTK_PIN(
+ 89, "GPIO89",
+ MTK_EINT_FUNCTION(0, 89),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO89"),
+ MTK_FUNCTION(1, "DSI_TE"),
+ MTK_FUNCTION(7, "DBG_MON_B8")
+ ),
+ MTK_PIN(
+ 90, "GPIO90",
+ MTK_EINT_FUNCTION(0, 90),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO90"),
+ MTK_FUNCTION(1, "LCM_RST"),
+ MTK_FUNCTION(7, "DBG_MON_B9")
+ ),
+ MTK_PIN(
+ 91, "GPIO91",
+ MTK_EINT_FUNCTION(0, 91),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO91"),
+ MTK_FUNCTION(1, "DISP_PWM"),
+ MTK_FUNCTION(7, "DBG_MON_B10")
+ ),
+ MTK_PIN(
+ 92, "GPIO92",
+ MTK_EINT_FUNCTION(0, 92),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO92"),
+ MTK_FUNCTION(1, "CMMCLK0"),
+ MTK_FUNCTION(7, "DBG_MON_A23")
+ ),
+ MTK_PIN(
+ 93, "GPIO93",
+ MTK_EINT_FUNCTION(0, 93),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO93"),
+ MTK_FUNCTION(1, "CMMCLK1"),
+ MTK_FUNCTION(7, "DBG_MON_A24")
+ ),
+ MTK_PIN(
+ 94, "GPIO94",
+ MTK_EINT_FUNCTION(0, 94),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO94"),
+ MTK_FUNCTION(1, "CMMCLK2"),
+ MTK_FUNCTION(7, "DBG_MON_A25")
+ ),
+ MTK_PIN(
+ 95, "GPIO95",
+ MTK_EINT_FUNCTION(0, 95),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO95"),
+ MTK_FUNCTION(1, "CMMCLK3"),
+ MTK_FUNCTION(5, "MD32_1_TXD"),
+ MTK_FUNCTION(6, "PTA_TXD"),
+ MTK_FUNCTION(7, "DBG_MON_A26")
+ ),
+ MTK_PIN(
+ 96, "GPIO96",
+ MTK_EINT_FUNCTION(0, 96),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO96"),
+ MTK_FUNCTION(1, "CMMCLK4"),
+ MTK_FUNCTION(5, "MD32_1_RXD"),
+ MTK_FUNCTION(6, "PTA_RXD"),
+ MTK_FUNCTION(7, "DBG_MON_A27")
+ ),
+ MTK_PIN(
+ 97, "GPIO97",
+ MTK_EINT_FUNCTION(0, 97),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO97"),
+ MTK_FUNCTION(1, "MD_UCNT_A_TGL")
+ ),
+ MTK_PIN(
+ 98, "GPIO98",
+ MTK_EINT_FUNCTION(0, 98),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO98"),
+ MTK_FUNCTION(1, "DIGRF_IRQ")
+ ),
+ MTK_PIN(
+ 99, "GPIO99",
+ MTK_EINT_FUNCTION(0, 99),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO99"),
+ MTK_FUNCTION(1, "BPI_BUS0"),
+ MTK_FUNCTION(4, "MFG_TSFDC_EN"),
+ MTK_FUNCTION(6, "ANT_SEL0"),
+ MTK_FUNCTION(7, "DBG_MON_B11")
+ ),
+ MTK_PIN(
+ 100, "GPIO100",
+ MTK_EINT_FUNCTION(0, 100),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO100"),
+ MTK_FUNCTION(1, "BPI_BUS1"),
+ MTK_FUNCTION(4, "MFG_TSFDC_VCO_RST"),
+ MTK_FUNCTION(6, "ANT_SEL1"),
+ MTK_FUNCTION(7, "DBG_MON_B12")
+ ),
+ MTK_PIN(
+ 101, "GPIO101",
+ MTK_EINT_FUNCTION(0, 101),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO101"),
+ MTK_FUNCTION(1, "BPI_BUS2"),
+ MTK_FUNCTION(3, "DMIC1_CLK"),
+ MTK_FUNCTION(4, "MFG_TSFDC_TSSEL2"),
+ MTK_FUNCTION(6, "ANT_SEL2"),
+ MTK_FUNCTION(7, "DBG_MON_B13")
+ ),
+ MTK_PIN(
+ 102, "GPIO102",
+ MTK_EINT_FUNCTION(0, 102),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO102"),
+ MTK_FUNCTION(1, "BPI_BUS3"),
+ MTK_FUNCTION(3, "DMIC1_DAT"),
+ MTK_FUNCTION(4, "MFG_TSFDC_TSSEL1"),
+ MTK_FUNCTION(6, "ANT_SEL3"),
+ MTK_FUNCTION(7, "DBG_MON_B14")
+ ),
+ MTK_PIN(
+ 103, "GPIO103",
+ MTK_EINT_FUNCTION(0, 103),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO103"),
+ MTK_FUNCTION(1, "BPI_BUS4"),
+ MTK_FUNCTION(4, "MFG_TSFDC_TSSEL0"),
+ MTK_FUNCTION(6, "ANT_SEL4"),
+ MTK_FUNCTION(7, "DBG_MON_B15")
+ ),
+ MTK_PIN(
+ 104, "GPIO104",
+ MTK_EINT_FUNCTION(0, 104),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO104"),
+ MTK_FUNCTION(1, "BPI_BUS5"),
+ MTK_FUNCTION(4, "MFG_TSFDC_RCK_SELB"),
+ MTK_FUNCTION(6, "ANT_SEL5"),
+ MTK_FUNCTION(7, "DBG_MON_B16")
+ ),
+ MTK_PIN(
+ 105, "GPIO105",
+ MTK_EINT_FUNCTION(0, 105),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO105"),
+ MTK_FUNCTION(1, "BPI_BUS6"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS6"),
+ MTK_FUNCTION(6, "ANT_SEL6"),
+ MTK_FUNCTION(7, "DBG_MON_B17")
+ ),
+ MTK_PIN(
+ 106, "GPIO106",
+ MTK_EINT_FUNCTION(0, 106),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO106"),
+ MTK_FUNCTION(1, "BPI_BUS7"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS7"),
+ MTK_FUNCTION(4, "MFG_TSFDC_SDO"),
+ MTK_FUNCTION(5, "AUD_DAC_26M_CLK"),
+ MTK_FUNCTION(6, "ANT_SEL7"),
+ MTK_FUNCTION(7, "DBG_MON_B18")
+ ),
+ MTK_PIN(
+ 107, "GPIO107",
+ MTK_EINT_FUNCTION(0, 107),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO107"),
+ MTK_FUNCTION(1, "BPI_BUS8"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS8"),
+ MTK_FUNCTION(4, "MFG_TSFDC_FOUT"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA0"),
+ MTK_FUNCTION(6, "ANT_SEL8"),
+ MTK_FUNCTION(7, "DBG_MON_B19")
+ ),
+ MTK_PIN(
+ 108, "GPIO108",
+ MTK_EINT_FUNCTION(0, 108),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO108"),
+ MTK_FUNCTION(1, "BPI_BUS9"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS9"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA1"),
+ MTK_FUNCTION(6, "ANT_SEL9"),
+ MTK_FUNCTION(7, "DBG_MON_B20")
+ ),
+ MTK_PIN(
+ 109, "GPIO109",
+ MTK_EINT_FUNCTION(0, 109),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO109"),
+ MTK_FUNCTION(1, "BPI_BUS10"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS10"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA2"),
+ MTK_FUNCTION(6, "ANT_SEL10"),
+ MTK_FUNCTION(7, "DBG_MON_B21")
+ ),
+ MTK_PIN(
+ 110, "GPIO110",
+ MTK_EINT_FUNCTION(0, 110),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO110"),
+ MTK_FUNCTION(1, "BPI_BUS11"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS11_OLAT0"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA3"),
+ MTK_FUNCTION(6, "ANT_SEL11"),
+ MTK_FUNCTION(7, "DBG_MON_B22")
+ ),
+ MTK_PIN(
+ 111, "GPIO111",
+ MTK_EINT_FUNCTION(0, 111),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO111"),
+ MTK_FUNCTION(1, "BPI_BUS12"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS12_OLAT1"),
+ MTK_FUNCTION(3, "CLKM0"),
+ MTK_FUNCTION(5, "I2SIN4_BCK"),
+ MTK_FUNCTION(6, "ANT_SEL12"),
+ MTK_FUNCTION(7, "DBG_MON_B23")
+ ),
+ MTK_PIN(
+ 112, "GPIO112",
+ MTK_EINT_FUNCTION(0, 112),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO112"),
+ MTK_FUNCTION(1, "BPI_BUS13"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS13_OLAT2"),
+ MTK_FUNCTION(3, "CLKM1"),
+ MTK_FUNCTION(5, "I2SIN4_DATA0"),
+ MTK_FUNCTION(6, "ANT_SEL13"),
+ MTK_FUNCTION(7, "DBG_MON_B24")
+ ),
+ MTK_PIN(
+ 113, "GPIO113",
+ MTK_EINT_FUNCTION(0, 113),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO113"),
+ MTK_FUNCTION(1, "BPI_BUS14"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS14_OLAT3"),
+ MTK_FUNCTION(3, "CLKM2"),
+ MTK_FUNCTION(5, "I2SIN4_DATA1"),
+ MTK_FUNCTION(6, "ANT_SEL14"),
+ MTK_FUNCTION(7, "DBG_MON_B25")
+ ),
+ MTK_PIN(
+ 114, "GPIO114",
+ MTK_EINT_FUNCTION(0, 114),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO114"),
+ MTK_FUNCTION(1, "BPI_BUS15"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS15_OLAT4"),
+ MTK_FUNCTION(3, "CLKM3"),
+ MTK_FUNCTION(5, "I2SIN4_DATA2"),
+ MTK_FUNCTION(6, "ANT_SEL15"),
+ MTK_FUNCTION(7, "DBG_MON_B26")
+ ),
+ MTK_PIN(
+ 115, "GPIO115",
+ MTK_EINT_FUNCTION(0, 115),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO115"),
+ MTK_FUNCTION(1, "BPI_BUS16"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS16_OLAT5"),
+ MTK_FUNCTION(5, "I2SIN4_DATA3"),
+ MTK_FUNCTION(6, "ANT_SEL16"),
+ MTK_FUNCTION(7, "DBG_MON_B27")
+ ),
+ MTK_PIN(
+ 116, "GPIO116",
+ MTK_EINT_FUNCTION(0, 116),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO116"),
+ MTK_FUNCTION(1, "BPI_BUS17"),
+ MTK_FUNCTION(2, "CONN_BPI_BUS17_ANT0"),
+ MTK_FUNCTION(5, "I2SIN4_LRCK"),
+ MTK_FUNCTION(6, "ANT_SEL17"),
+ MTK_FUNCTION(7, "DBG_MON_B28")
+ ),
+ MTK_PIN(
+ 117, "GPIO117",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO117"),
+ MTK_FUNCTION(1, "MIPI0_D_SCLK"),
+ MTK_FUNCTION(2, "CONN_MIPI0_SCLK"),
+ MTK_FUNCTION(3, "BPI_BUS18"),
+ MTK_FUNCTION(6, "ANT_SEL18")
+ ),
+ MTK_PIN(
+ 118, "GPIO118",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO118"),
+ MTK_FUNCTION(1, "MIPI0_D_SDATA"),
+ MTK_FUNCTION(2, "CONN_MIPI0_SDATA"),
+ MTK_FUNCTION(3, "BPI_BUS19"),
+ MTK_FUNCTION(6, "ANT_SEL19")
+ ),
+ MTK_PIN(
+ 119, "GPIO119",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO119"),
+ MTK_FUNCTION(1, "MIPI1_D_SCLK"),
+ MTK_FUNCTION(2, "CONN_MIPI1_SCLK"),
+ MTK_FUNCTION(3, "BPI_BUS20"),
+ MTK_FUNCTION(6, "ANT_SEL20")
+ ),
+ MTK_PIN(
+ 120, "GPIO120",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO120"),
+ MTK_FUNCTION(1, "MIPI1_D_SDATA"),
+ MTK_FUNCTION(2, "CONN_MIPI1_SDATA"),
+ MTK_FUNCTION(3, "BPI_BUS21"),
+ MTK_FUNCTION(6, "ANT_SEL21")
+ ),
+ MTK_PIN(
+ 121, "GPIO121",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO121"),
+ MTK_FUNCTION(1, "MIPI2_D_SCLK"),
+ MTK_FUNCTION(2, "MIPI4_D_SCLK"),
+ MTK_FUNCTION(3, "BPI_BUS22"),
+ MTK_FUNCTION(6, "MD_GPS_L1_BLANK")
+ ),
+ MTK_PIN(
+ 122, "GPIO122",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO122"),
+ MTK_FUNCTION(1, "MIPI2_D_SDATA"),
+ MTK_FUNCTION(2, "MIPI4_D_SDATA"),
+ MTK_FUNCTION(3, "BPI_BUS23"),
+ MTK_FUNCTION(6, "MD_GPS_L5_BLANK")
+ ),
+ MTK_PIN(
+ 123, "GPIO123",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO123"),
+ MTK_FUNCTION(1, "MIPI_M_SCLK")
+ ),
+ MTK_PIN(
+ 124, "GPIO124",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO124"),
+ MTK_FUNCTION(1, "MIPI_M_SDATA")
+ ),
+ MTK_PIN(
+ 125, "GPIO125",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO125"),
+ MTK_FUNCTION(1, "SCL0"),
+ MTK_FUNCTION(2, "SCP_SCL4"),
+ MTK_FUNCTION(3, "TP_UTXD2_VLP"),
+ MTK_FUNCTION(4, "TP_UCTS1_VLP"),
+ MTK_FUNCTION(5, "TP_GPIO4_AO"),
+ MTK_FUNCTION(6, "UTXD2")
+ ),
+ MTK_PIN(
+ 126, "GPIO126",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO126"),
+ MTK_FUNCTION(1, "SDA0"),
+ MTK_FUNCTION(2, "SCP_SDA4"),
+ MTK_FUNCTION(3, "TP_URXD2_VLP"),
+ MTK_FUNCTION(4, "TP_URTS1_VLP"),
+ MTK_FUNCTION(5, "TP_GPIO5_AO"),
+ MTK_FUNCTION(6, "URXD2")
+ ),
+ MTK_PIN(
+ 127, "GPIO127",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO127"),
+ MTK_FUNCTION(1, "SCL1"),
+ MTK_FUNCTION(2, "SCP_SCL5"),
+ MTK_FUNCTION(3, "TP_UCTS2_VLP"),
+ MTK_FUNCTION(4, "TP_UTXD1_VLP"),
+ MTK_FUNCTION(5, "TP_GPIO6_AO"),
+ MTK_FUNCTION(6, "MD_MCIF_UTXD0")
+ ),
+ MTK_PIN(
+ 128, "GPIO128",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO128"),
+ MTK_FUNCTION(1, "SDA1"),
+ MTK_FUNCTION(2, "SCP_SDA5"),
+ MTK_FUNCTION(3, "TP_URTS2_VLP"),
+ MTK_FUNCTION(4, "TP_URXD1_VLP"),
+ MTK_FUNCTION(5, "TP_GPIO7_AO"),
+ MTK_FUNCTION(6, "MD_MCIF_URXD0")
+ ),
+ MTK_PIN(
+ 129, "GPIO129",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO129"),
+ MTK_FUNCTION(1, "SCL2")
+ ),
+ MTK_PIN(
+ 130, "GPIO130",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO130"),
+ MTK_FUNCTION(1, "SDA2")
+ ),
+ MTK_PIN(
+ 131, "GPIO131",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO131"),
+ MTK_FUNCTION(1, "SCL3"),
+ MTK_FUNCTION(3, "TP_UTXD2_VCORE"),
+ MTK_FUNCTION(6, "SSPM_UTXD_AO_VCORE")
+ ),
+ MTK_PIN(
+ 132, "GPIO132",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO132"),
+ MTK_FUNCTION(1, "SDA3"),
+ MTK_FUNCTION(3, "TP_URXD2_VCORE"),
+ MTK_FUNCTION(6, "SSPM_URXD_AO_VCORE")
+ ),
+ MTK_PIN(
+ 133, "GPIO133",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO133"),
+ MTK_FUNCTION(1, "SCL4")
+ ),
+ MTK_PIN(
+ 134, "GPIO134",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO134"),
+ MTK_FUNCTION(1, "SDA4")
+ ),
+ MTK_PIN(
+ 135, "GPIO135",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO135"),
+ MTK_FUNCTION(1, "SCL5")
+ ),
+ MTK_PIN(
+ 136, "GPIO136",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO136"),
+ MTK_FUNCTION(1, "SDA5")
+ ),
+ MTK_PIN(
+ 137, "GPIO137",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO137"),
+ MTK_FUNCTION(1, "SCL6")
+ ),
+ MTK_PIN(
+ 138, "GPIO138",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO138"),
+ MTK_FUNCTION(1, "SDA6")
+ ),
+ MTK_PIN(
+ 139, "GPIO139",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO139"),
+ MTK_FUNCTION(1, "SCL7"),
+ MTK_FUNCTION(3, "TP_UTXD1_VCORE"),
+ MTK_FUNCTION(4, "MD_UTXD0"),
+ MTK_FUNCTION(6, "UTXD1")
+ ),
+ MTK_PIN(
+ 140, "GPIO140",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO140"),
+ MTK_FUNCTION(1, "SDA7"),
+ MTK_FUNCTION(3, "TP_URXD1_VCORE"),
+ MTK_FUNCTION(4, "MD_URXD0"),
+ MTK_FUNCTION(6, "URXD1")
+ ),
+ MTK_PIN(
+ 141, "GPIO141",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO141"),
+ MTK_FUNCTION(1, "SCL8")
+ ),
+ MTK_PIN(
+ 142, "GPIO142",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO142"),
+ MTK_FUNCTION(1, "SDA8")
+ ),
+ MTK_PIN(
+ 143, "GPIO143",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO143"),
+ MTK_FUNCTION(1, "SCL9"),
+ MTK_FUNCTION(2, "GPS_L1_ELNA_EN"),
+ MTK_FUNCTION(3, "HFRP_UTXD1"),
+ MTK_FUNCTION(4, "CONN_BGF_MCU_AICE_TMSC"),
+ MTK_FUNCTION(5, "CONN_WF_MCU_AICE_TMSC"),
+ MTK_FUNCTION(7, "MBISTREADEN_TRIGGER")
+ ),
+ MTK_PIN(
+ 144, "GPIO144",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO144"),
+ MTK_FUNCTION(1, "SDA9"),
+ MTK_FUNCTION(2, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(3, "HFRP_URXD1"),
+ MTK_FUNCTION(4, "CONN_BGF_MCU_AICE_TCKC"),
+ MTK_FUNCTION(5, "CONN_WF_MCU_AICE_TCKC"),
+ MTK_FUNCTION(7, "MBISTWRITEEN_TRIGGER")
+ ),
+ MTK_PIN(
+ 145, "GPIO145",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO145"),
+ MTK_FUNCTION(1, "SCL10"),
+ MTK_FUNCTION(2, "SCP_SCL0"),
+ MTK_FUNCTION(5, "TP_GPIO8_AO")
+ ),
+ MTK_PIN(
+ 146, "GPIO146",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO146"),
+ MTK_FUNCTION(1, "SDA10"),
+ MTK_FUNCTION(2, "SCP_SDA0"),
+ MTK_FUNCTION(5, "TP_GPIO9_AO")
+ ),
+ MTK_PIN(
+ 147, "GPIO147",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO147"),
+ MTK_FUNCTION(1, "SCL11"),
+ MTK_FUNCTION(2, "SCP_SCL1"),
+ MTK_FUNCTION(3, "SCP_DMIC_CLK"),
+ MTK_FUNCTION(4, "DMIC_CLK"),
+ MTK_FUNCTION(5, "TP_GPIO10_AO"),
+ MTK_FUNCTION(6, "EXTIF0_PRI")
+ ),
+ MTK_PIN(
+ 148, "GPIO148",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO148"),
+ MTK_FUNCTION(1, "SDA11"),
+ MTK_FUNCTION(2, "SCP_SDA1"),
+ MTK_FUNCTION(3, "SCP_DMIC_DAT"),
+ MTK_FUNCTION(4, "DMIC_DAT"),
+ MTK_FUNCTION(5, "TP_GPIO11_AO"),
+ MTK_FUNCTION(6, "EXTIF0_GNT_B")
+ ),
+ MTK_PIN(
+ 149, "GPIO149",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO149"),
+ MTK_FUNCTION(1, "KPROW2"),
+ MTK_FUNCTION(2, "PWM_VLP"),
+ MTK_FUNCTION(4, "MD_INT0"),
+ MTK_FUNCTION(5, "TP_GPIO12_AO"),
+ MTK_FUNCTION(6, "SCL0"),
+ MTK_FUNCTION(7, "DBG_MON_A28")
+ ),
+ MTK_PIN(
+ 150, "GPIO150",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO150"),
+ MTK_FUNCTION(1, "KPCOL2"),
+ MTK_FUNCTION(2, "PWM_VLP"),
+ MTK_FUNCTION(3, "CMMCLK5"),
+ MTK_FUNCTION(4, "MD_INT3"),
+ MTK_FUNCTION(5, "TP_GPIO13_AO"),
+ MTK_FUNCTION(6, "SDA0")
+ ),
+ MTK_PIN(
+ 151, "GPIO151",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO151"),
+ MTK_FUNCTION(1, "SRCLKENAI0"),
+ MTK_FUNCTION(4, "MD_INT4"),
+ MTK_FUNCTION(5, "TP_GPIO14_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A29")
+ ),
+ MTK_PIN(
+ 152, "GPIO152",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO152"),
+ MTK_FUNCTION(1, "SRCLKENAI1"),
+ MTK_FUNCTION(4, "SPMI_M_TRIG_FLAG"),
+ MTK_FUNCTION(5, "TP_GPIO15_AO"),
+ MTK_FUNCTION(7, "DBG_MON_A30")
+ ),
+ MTK_PIN(
+ 153, "GPIO153",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO153"),
+ MTK_FUNCTION(1, "MD1_SIM2_SCLK"),
+ MTK_FUNCTION(2, "DISP_PWM1"),
+ MTK_FUNCTION(4, "SPMI_P_TRIG_FLAG"),
+ MTK_FUNCTION(7, "DBG_MON_A0")
+ ),
+ MTK_PIN(
+ 154, "GPIO154",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO154"),
+ MTK_FUNCTION(1, "MD1_SIM2_SRST"),
+ MTK_FUNCTION(2, "LCM_RST1"),
+ MTK_FUNCTION(3, "GPS_L1_ELNA_EN"),
+ MTK_FUNCTION(4, "CMFLASH2"),
+ MTK_FUNCTION(5, "MBISTREADEN_TRIGGER"),
+ MTK_FUNCTION(7, "DBG_MON_A1")
+ ),
+ MTK_PIN(
+ 155, "GPIO155",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO155"),
+ MTK_FUNCTION(1, "MD1_SIM2_SIO"),
+ MTK_FUNCTION(2, "DSI_TE1"),
+ MTK_FUNCTION(3, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(4, "CMFLASH3"),
+ MTK_FUNCTION(5, "MBISTWRITEEN_TRIGGER"),
+ MTK_FUNCTION(7, "DBG_MON_A2")
+ ),
+ MTK_PIN(
+ 156, "GPIO156",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO156"),
+ MTK_FUNCTION(1, "SPMI_M_SCL")
+ ),
+ MTK_PIN(
+ 157, "GPIO157",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO157"),
+ MTK_FUNCTION(1, "SPMI_M_SDA")
+ ),
+ MTK_PIN(
+ 158, "GPIO158",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO158"),
+ MTK_FUNCTION(1, "SPMI_P_SCL")
+ ),
+ MTK_PIN(
+ 159, "GPIO159",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO159"),
+ MTK_FUNCTION(1, "SPMI_P_SDA")
+ ),
+ MTK_PIN(
+ 160, "GPIO160",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO160"),
+ MTK_FUNCTION(1, "SRCLKENA0")
+ ),
+ MTK_PIN(
+ 161, "GPIO161",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO161"),
+ MTK_FUNCTION(1, "SCP_VREQ_VAO")
+ ),
+ MTK_PIN(
+ 162, "GPIO162",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO162"),
+ MTK_FUNCTION(1, "RTC32K_CK")
+ ),
+ MTK_PIN(
+ 163, "GPIO163",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO163"),
+ MTK_FUNCTION(1, "WATCHDOG")
+ ),
+ MTK_PIN(
+ 164, "GPIO164",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO164"),
+ MTK_FUNCTION(1, "AUD_CLK_MOSI"),
+ MTK_FUNCTION(3, "AUD_CLK_MOSI")
+ ),
+ MTK_PIN(
+ 165, "GPIO165",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO165"),
+ MTK_FUNCTION(1, "AUD_SYNC_MOSI")
+ ),
+ MTK_PIN(
+ 166, "GPIO166",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO166"),
+ MTK_FUNCTION(1, "AUD_DAT_MOSI0"),
+ MTK_FUNCTION(3, "AUD_DAT_MOSI0")
+ ),
+ MTK_PIN(
+ 167, "GPIO167",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO167"),
+ MTK_FUNCTION(1, "AUD_DAT_MOSI1"),
+ MTK_FUNCTION(3, "AUD_DAT_MOSI1")
+ ),
+ MTK_PIN(
+ 168, "GPIO168",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO168"),
+ MTK_FUNCTION(1, "AUD_NLE_MOSI0"),
+ MTK_FUNCTION(2, "AUD_SYNC_MISO")
+ ),
+ MTK_PIN(
+ 169, "GPIO169",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO169"),
+ MTK_FUNCTION(1, "AUD_NLE_MOSI1"),
+ MTK_FUNCTION(2, "AUD_CLK_MISO"),
+ MTK_FUNCTION(3, "AUD_CLK_MISO")
+ ),
+ MTK_PIN(
+ 170, "GPIO170",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO170"),
+ MTK_FUNCTION(1, "AUD_DAT_MISO0"),
+ MTK_FUNCTION(2, "VOW_DAT_MISO"),
+ MTK_FUNCTION(3, "AUD_DAT_MISO0")
+ ),
+ MTK_PIN(
+ 171, "GPIO171",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO171"),
+ MTK_FUNCTION(1, "AUD_DAT_MISO1"),
+ MTK_FUNCTION(2, "VOW_CLK_MISO"),
+ MTK_FUNCTION(3, "AUD_DAT_MISO1")
+ ),
+ MTK_PIN(
+ 172, "GPIO172",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO172"),
+ MTK_FUNCTION(1, "CONN_TOP_CLK"),
+ MTK_FUNCTION(7, "DBG_MON_A31")
+ ),
+ MTK_PIN(
+ 173, "GPIO173",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO173"),
+ MTK_FUNCTION(1, "CONN_TOP_DATA")
+ ),
+ MTK_PIN(
+ 174, "GPIO174",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO174"),
+ MTK_FUNCTION(1, "CONN_BT_CLK")
+ ),
+ MTK_PIN(
+ 175, "GPIO175",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO175"),
+ MTK_FUNCTION(1, "CONN_BT_DATA")
+ ),
+ MTK_PIN(
+ 176, "GPIO176",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO176"),
+ MTK_FUNCTION(1, "CONN_HRST_B")
+ ),
+ MTK_PIN(
+ 177, "GPIO177",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO177"),
+ MTK_FUNCTION(1, "CONN_WB_PTA")
+ ),
+ MTK_PIN(
+ 178, "GPIO178",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO178"),
+ MTK_FUNCTION(1, "CONN_WF_CTRL0")
+ ),
+ MTK_PIN(
+ 179, "GPIO179",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO179"),
+ MTK_FUNCTION(1, "CONN_WF_CTRL1")
+ ),
+ MTK_PIN(
+ 180, "GPIO180",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO180"),
+ MTK_FUNCTION(1, "CONN_WF_CTRL2")
+ ),
+ MTK_PIN(
+ 181, "GPIO181",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO181"),
+ MTK_FUNCTION(1, "CONN_WF_CTRL3"),
+ MTK_FUNCTION(2, "CONN_TOP_CLK_2"),
+ MTK_FUNCTION(3, "GPS_L1_ELNA_EN")
+ ),
+ MTK_PIN(
+ 182, "GPIO182",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO182"),
+ MTK_FUNCTION(1, "CONN_WF_CTRL4"),
+ MTK_FUNCTION(2, "CONN_TOP_DATA_2"),
+ MTK_FUNCTION(3, "GPS_L5_ELNA_EN")
+ ),
+ MTK_PIN(
+ 183, "GPIO183",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO183"),
+ MTK_FUNCTION(1, "CONN_HRST_B_2")
+ ),
+ MTK_PIN(
+ 184, "GPIO184",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO184"),
+ MTK_FUNCTION(1, "MSDC0_DSL"),
+ MTK_FUNCTION(3, "ANT_SEL13")
+ ),
+ MTK_PIN(
+ 185, "GPIO185",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO185"),
+ MTK_FUNCTION(1, "MSDC0_CLK"),
+ MTK_FUNCTION(2, "CONN_TCXOENA_REQ"),
+ MTK_FUNCTION(3, "ANT_SEL14")
+ ),
+ MTK_PIN(
+ 186, "GPIO186",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO186"),
+ MTK_FUNCTION(1, "MSDC0_CMD"),
+ MTK_FUNCTION(2, "GPS_L1_ELNA_EN"),
+ MTK_FUNCTION(3, "ANT_SEL15"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA0")
+ ),
+ MTK_PIN(
+ 187, "GPIO187",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO187"),
+ MTK_FUNCTION(1, "MSDC0_RSTB"),
+ MTK_FUNCTION(2, "GPS_L5_ELNA_EN"),
+ MTK_FUNCTION(3, "ANT_SEL16"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA1")
+ ),
+ MTK_PIN(
+ 188, "GPIO188",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO188"),
+ MTK_FUNCTION(1, "MSDC0_DAT0"),
+ MTK_FUNCTION(3, "ANT_SEL17"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA2")
+ ),
+ MTK_PIN(
+ 189, "GPIO189",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO189"),
+ MTK_FUNCTION(1, "MSDC0_DAT1"),
+ MTK_FUNCTION(3, "ANT_SEL18"),
+ MTK_FUNCTION(5, "I2SOUT4_DATA3")
+ ),
+ MTK_PIN(
+ 190, "GPIO190",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO190"),
+ MTK_FUNCTION(1, "MSDC0_DAT2"),
+ MTK_FUNCTION(2, "DMIC1_CLK"),
+ MTK_FUNCTION(3, "ANT_SEL19"),
+ MTK_FUNCTION(5, "I2SIN4_BCK")
+ ),
+ MTK_PIN(
+ 191, "GPIO191",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO191"),
+ MTK_FUNCTION(1, "MSDC0_DAT3"),
+ MTK_FUNCTION(2, "DMIC1_DAT"),
+ MTK_FUNCTION(3, "ANT_SEL20"),
+ MTK_FUNCTION(5, "I2SIN4_DATA0")
+ ),
+ MTK_PIN(
+ 192, "GPIO192",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO192"),
+ MTK_FUNCTION(1, "MSDC0_DAT4"),
+ MTK_FUNCTION(2, "IDDIG"),
+ MTK_FUNCTION(3, "ANT_SEL21"),
+ MTK_FUNCTION(4, "UFS_MPHY_SCL"),
+ MTK_FUNCTION(5, "I2SIN4_DATA1")
+ ),
+ MTK_PIN(
+ 193, "GPIO193",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO193"),
+ MTK_FUNCTION(1, "MSDC0_DAT5"),
+ MTK_FUNCTION(2, "USB_DRVVBUS"),
+ MTK_FUNCTION(4, "UFS_MPHY_SDA"),
+ MTK_FUNCTION(5, "I2SIN4_DATA2")
+ ),
+ MTK_PIN(
+ 194, "GPIO194",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO194"),
+ MTK_FUNCTION(1, "MSDC0_DAT6"),
+ MTK_FUNCTION(2, "VBUSVALID"),
+ MTK_FUNCTION(5, "I2SIN4_DATA3")
+ ),
+ MTK_PIN(
+ 195, "GPIO195",
+ MTK_EINT_FUNCTION(NO_EINT_SUPPORT, NO_EINT_SUPPORT),
+ DRV_GRP4,
+ MTK_FUNCTION(0, "GPIO195"),
+ MTK_FUNCTION(1, "MSDC0_DAT7"),
+ MTK_FUNCTION(5, "I2SIN4_LRCK")
+ ),
+ MTK_PIN(
+ 196, "GPIO196",
+ MTK_EINT_FUNCTION(0, 196),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 197, "GPIO197",
+ MTK_EINT_FUNCTION(0, 197),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 198, "GPIO198",
+ MTK_EINT_FUNCTION(0, 198),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 199, "GPIO199",
+ MTK_EINT_FUNCTION(0, 199),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 200, "GPIO200",
+ MTK_EINT_FUNCTION(0, 200),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 201, "GPIO201",
+ MTK_EINT_FUNCTION(0, 201),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 202, "GPIO202",
+ MTK_EINT_FUNCTION(0, 202),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 203, "GPIO203",
+ MTK_EINT_FUNCTION(0, 203),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 204, "GPIO204",
+ MTK_EINT_FUNCTION(0, 204),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 205, "GPIO205",
+ MTK_EINT_FUNCTION(0, 205),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 206, "GPIO206",
+ MTK_EINT_FUNCTION(0, 206),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 207, "GPIO207",
+ MTK_EINT_FUNCTION(0, 207),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 208, "GPIO208",
+ MTK_EINT_FUNCTION(0, 208),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 209, "GPIO209",
+ MTK_EINT_FUNCTION(0, 209),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 210, "GPIO210",
+ MTK_EINT_FUNCTION(0, 210),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 211, "GPIO211",
+ MTK_EINT_FUNCTION(0, 211),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 212, "GPIO212",
+ MTK_EINT_FUNCTION(0, 212),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 213, "GPIO213",
+ MTK_EINT_FUNCTION(0, 213),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 214, "GPIO214",
+ MTK_EINT_FUNCTION(0, 214),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+ MTK_PIN(
+ 215, "GPIO215",
+ MTK_EINT_FUNCTION(0, 215),
+ DRV_GRP4,
+ MTK_FUNCTION(0, NULL)
+ ),
+};
+
+static struct mtk_eint_pin eint_pins_mt6878[] = {
+ MTK_EINT_PIN(0, 0, 0, 1),
+ MTK_EINT_PIN(1, 0, 1, 1),
+ MTK_EINT_PIN(2, 0, 2, 1),
+ MTK_EINT_PIN(3, 0, 3, 1),
+ MTK_EINT_PIN(4, 0, 4, 1),
+ MTK_EINT_PIN(5, 0, 5, 1),
+ MTK_EINT_PIN(6, 1, 0, 1),
+ MTK_EINT_PIN(7, 1, 1, 1),
+ MTK_EINT_PIN(8, 1, 2, 1),
+ MTK_EINT_PIN(9, 1, 3, 1),
+ MTK_EINT_PIN(10, 1, 4, 1),
+ MTK_EINT_PIN(11, 1, 5, 1),
+ MTK_EINT_PIN(12, 1, 6, 1),
+ MTK_EINT_PIN(13, 2, 0, 1),
+ MTK_EINT_PIN(14, 2, 1, 1),
+ MTK_EINT_PIN(15, 2, 2, 1),
+ MTK_EINT_PIN(16, 2, 3, 1),
+ MTK_EINT_PIN(17, 2, 4, 1),
+ MTK_EINT_PIN(18, 2, 5, 1),
+ MTK_EINT_PIN(19, 0, 6, 1),
+ MTK_EINT_PIN(20, 0, 7, 1),
+ MTK_EINT_PIN(21, 0, 8, 1),
+ MTK_EINT_PIN(22, 0, 9, 1),
+ MTK_EINT_PIN(23, 0, 10, 1),
+ MTK_EINT_PIN(24, 0, 11, 1),
+ MTK_EINT_PIN(25, 0, 12, 1),
+ MTK_EINT_PIN(26, 0, 13, 1),
+ MTK_EINT_PIN(27, 0, 14, 1),
+ MTK_EINT_PIN(28, 0, 15, 1),
+ MTK_EINT_PIN(29, 2, 6, 1),
+ MTK_EINT_PIN(30, 2, 7, 1),
+ MTK_EINT_PIN(31, 2, 8, 1),
+ MTK_EINT_PIN(32, 2, 9, 1),
+ MTK_EINT_PIN(33, 0, 16, 1),
+ MTK_EINT_PIN(34, 0, 17, 1),
+ MTK_EINT_PIN(35, 0, 18, 1),
+ MTK_EINT_PIN(36, 0, 19, 0),
+ MTK_EINT_PIN(37, 0, 20, 0),
+ MTK_EINT_PIN(38, 0, 21, 0),
+ MTK_EINT_PIN(39, 0, 22, 0),
+ MTK_EINT_PIN(40, 0, 23, 0),
+ MTK_EINT_PIN(41, 1, 7, 0),
+ MTK_EINT_PIN(42, 1, 8, 0),
+ MTK_EINT_PIN(43, 1, 9, 0),
+ MTK_EINT_PIN(44, 1, 10, 0),
+ MTK_EINT_PIN(45, 1, 11, 0),
+ MTK_EINT_PIN(46, 1, 12, 0),
+ MTK_EINT_PIN(47, 1, 13, 0),
+ MTK_EINT_PIN(48, 0, 24, 0),
+ MTK_EINT_PIN(49, 0, 25, 0),
+ MTK_EINT_PIN(50, 0, 26, 0),
+ MTK_EINT_PIN(51, 0, 27, 0),
+ MTK_EINT_PIN(52, 0, 28, 0),
+ MTK_EINT_PIN(53, 0, 29, 0),
+ MTK_EINT_PIN(54, 0, 30, 0),
+ MTK_EINT_PIN(55, 0, 31, 0),
+ MTK_EINT_PIN(56, 0, 32, 0),
+ MTK_EINT_PIN(57, 0, 33, 0),
+ MTK_EINT_PIN(58, 0, 34, 0),
+ MTK_EINT_PIN(59, 0, 35, 0),
+ MTK_EINT_PIN(60, 0, 36, 0),
+ MTK_EINT_PIN(61, 0, 37, 0),
+ MTK_EINT_PIN(62, 0, 38, 0),
+ MTK_EINT_PIN(63, 0, 39, 0),
+ MTK_EINT_PIN(64, 0, 40, 0),
+ MTK_EINT_PIN(65, 0, 41, 0),
+ MTK_EINT_PIN(66, 0, 42, 0),
+ MTK_EINT_PIN(67, 0, 43, 0),
+ MTK_EINT_PIN(68, 0, 44, 0),
+ MTK_EINT_PIN(69, 0, 45, 0),
+ MTK_EINT_PIN(70, 0, 46, 0),
+ MTK_EINT_PIN(71, 0, 47, 0),
+ MTK_EINT_PIN(72, 0, 48, 0),
+ MTK_EINT_PIN(73, 0, 49, 0),
+ MTK_EINT_PIN(74, 0, 50, 0),
+ MTK_EINT_PIN(75, 0, 51, 0),
+ MTK_EINT_PIN(76, 0, 52, 0),
+ MTK_EINT_PIN(77, 1, 14, 0),
+ MTK_EINT_PIN(78, 1, 15, 0),
+ MTK_EINT_PIN(79, 1, 16, 0),
+ MTK_EINT_PIN(80, 1, 17, 0),
+ MTK_EINT_PIN(81, 1, 18, 0),
+ MTK_EINT_PIN(82, 1, 19, 0),
+ MTK_EINT_PIN(83, 1, 20, 0),
+ MTK_EINT_PIN(84, 1, 21, 0),
+ MTK_EINT_PIN(85, 1, 22, 0),
+ MTK_EINT_PIN(86, 1, 23, 0),
+ MTK_EINT_PIN(87, 1, 24, 0),
+ MTK_EINT_PIN(88, 1, 25, 0),
+ MTK_EINT_PIN(89, 1, 26, 0),
+ MTK_EINT_PIN(90, 1, 27, 0),
+ MTK_EINT_PIN(91, 1, 28, 0),
+ MTK_EINT_PIN(92, 0, 53, 0),
+ MTK_EINT_PIN(93, 0, 54, 0),
+ MTK_EINT_PIN(94, 0, 55, 0),
+ MTK_EINT_PIN(95, 0, 56, 0),
+ MTK_EINT_PIN(96, 0, 57, 0),
+ MTK_EINT_PIN(97, 2, 10, 0),
+ MTK_EINT_PIN(98, 2, 11, 0),
+ MTK_EINT_PIN(99, 1, 29, 0),
+ MTK_EINT_PIN(100, 1, 30, 0),
+ MTK_EINT_PIN(101, 1, 31, 0),
+ MTK_EINT_PIN(102, 1, 32, 0),
+ MTK_EINT_PIN(103, 1, 33, 0),
+ MTK_EINT_PIN(104, 1, 34, 0),
+ MTK_EINT_PIN(105, 1, 35, 0),
+ MTK_EINT_PIN(106, 1, 36, 0),
+ MTK_EINT_PIN(107, 1, 37, 0),
+ MTK_EINT_PIN(108, 1, 38, 0),
+ MTK_EINT_PIN(109, 1, 39, 0),
+ MTK_EINT_PIN(110, 1, 40, 0),
+ MTK_EINT_PIN(111, 1, 41, 0),
+ MTK_EINT_PIN(112, 1, 42, 0),
+ MTK_EINT_PIN(113, 1, 43, 0),
+ MTK_EINT_PIN(114, 1, 44, 0),
+ MTK_EINT_PIN(115, 1, 45, 0),
+ MTK_EINT_PIN(116, 1, 46, 0),
+ MTK_EINT_PIN(196, 3, 0, 0),
+ MTK_EINT_PIN(197, 3, 1, 0),
+ MTK_EINT_PIN(198, 3, 2, 0),
+ MTK_EINT_PIN(199, 3, 3, 0),
+ MTK_EINT_PIN(200, 3, 4, 0),
+ MTK_EINT_PIN(201, 3, 5, 0),
+ MTK_EINT_PIN(202, 3, 6, 0),
+ MTK_EINT_PIN(203, 3, 7, 0),
+ MTK_EINT_PIN(204, 3, 8, 0),
+ MTK_EINT_PIN(205, 3, 9, 0),
+ MTK_EINT_PIN(206, 3, 10, 0),
+ MTK_EINT_PIN(207, 3, 11, 0),
+ MTK_EINT_PIN(208, 3, 12, 0),
+ MTK_EINT_PIN(209, 3, 13, 0),
+ MTK_EINT_PIN(210, 3, 14, 0),
+ MTK_EINT_PIN(211, 3, 15, 0),
+ MTK_EINT_PIN(212, 3, 16, 0),
+ MTK_EINT_PIN(213, 3, 17, 0),
+ MTK_EINT_PIN(214, 3, 18, 0),
+ MTK_EINT_PIN(215, 3, 19, 0),
+};
+
+#endif /* __PINCTRL_MTK_MT6878_H */