18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (C) 2018 MediaTek Inc.
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Author: ZH Chen <zh.chen@mediatek.com>
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci */
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#ifndef __PINCTRL_MTK_MT6765_H
108c2ecf20Sopenharmony_ci#define __PINCTRL_MTK_MT6765_H
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#include "pinctrl-paris.h"
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_cistatic struct mtk_pin_desc mtk_pins_mt6765[] = {
158c2ecf20Sopenharmony_ci	MTK_PIN(
168c2ecf20Sopenharmony_ci		0, "GPIO0",
178c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 0),
188c2ecf20Sopenharmony_ci		DRV_GRP4,
198c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO0"),
208c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UTXD1"),
218c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM0"),
228c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT0"),
238c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S0_MCK"),
248c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_UTXD1"),
258c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO0_AO"),
268c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B9")
278c2ecf20Sopenharmony_ci	),
288c2ecf20Sopenharmony_ci	MTK_PIN(
298c2ecf20Sopenharmony_ci		1, "GPIO1",
308c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 1),
318c2ecf20Sopenharmony_ci		DRV_GRP4,
328c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO1"),
338c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URXD1"),
348c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM1"),
358c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S0_BCK"),
368c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_URXD1"),
378c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO1_AO"),
388c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B10")
398c2ecf20Sopenharmony_ci	),
408c2ecf20Sopenharmony_ci	MTK_PIN(
418c2ecf20Sopenharmony_ci		2, "GPIO2",
428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 2),
438c2ecf20Sopenharmony_ci		DRV_GRP4,
448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO2"),
458c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UCTS0"),
468c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM2"),
478c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UTXD1"),
488c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S0_LRCK"),
498c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL6"),
508c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO2_AO"),
518c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B11")
528c2ecf20Sopenharmony_ci	),
538c2ecf20Sopenharmony_ci	MTK_PIN(
548c2ecf20Sopenharmony_ci		3, "GPIO3",
558c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 3),
568c2ecf20Sopenharmony_ci		DRV_GRP4,
578c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO3"),
588c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URTS0"),
598c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM3"),
608c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "URXD1"),
618c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S0_DI"),
628c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL7"),
638c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO3_AO"),
648c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B12")
658c2ecf20Sopenharmony_ci	),
668c2ecf20Sopenharmony_ci	MTK_PIN(
678c2ecf20Sopenharmony_ci		4, "GPIO4",
688c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 4),
698c2ecf20Sopenharmony_ci		DRV_GRP4,
708c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO4"),
718c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_MI"),
728c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_MI"),
738c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UCTS0"),
748c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S3_MCK"),
758c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_URXD_AO"),
768c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO4_AO")
778c2ecf20Sopenharmony_ci	),
788c2ecf20Sopenharmony_ci	MTK_PIN(
798c2ecf20Sopenharmony_ci		5, "GPIO5",
808c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 5),
818c2ecf20Sopenharmony_ci		DRV_GRP4,
828c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO5"),
838c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_CSB"),
848c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_CS"),
858c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "URTS0"),
868c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S3_BCK"),
878c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_UTXD_AO"),
888c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO5_AO")
898c2ecf20Sopenharmony_ci	),
908c2ecf20Sopenharmony_ci	MTK_PIN(
918c2ecf20Sopenharmony_ci		6, "GPIO6",
928c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 6),
938c2ecf20Sopenharmony_ci		DRV_GRP4,
948c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO6"),
958c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_MO"),
968c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_MO"),
978c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "PWM0"),
988c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S3_LRCK"),
998c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_UTXD0"),
1008c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO6_AO")
1018c2ecf20Sopenharmony_ci	),
1028c2ecf20Sopenharmony_ci	MTK_PIN(
1038c2ecf20Sopenharmony_ci		7, "GPIO7",
1048c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 7),
1058c2ecf20Sopenharmony_ci		DRV_GRP4,
1068c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO7"),
1078c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_CLK"),
1088c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_CK"),
1098c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "PWM1"),
1108c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "I2S3_DO"),
1118c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_URXD0"),
1128c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO7_AO")
1138c2ecf20Sopenharmony_ci	),
1148c2ecf20Sopenharmony_ci	MTK_PIN(
1158c2ecf20Sopenharmony_ci		8, "GPIO8",
1168c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 8),
1178c2ecf20Sopenharmony_ci		DRV_GRP4,
1188c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO8"),
1198c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UTXD1"),
1208c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI0"),
1218c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT1_C2K_UIM0_HOT_PLUG"),
1228c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL3"),
1238c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MFG_JTAG_TRSTN"),
1248c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_MCK"),
1258c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "JTRSTN_SEL1")
1268c2ecf20Sopenharmony_ci	),
1278c2ecf20Sopenharmony_ci	MTK_PIN(
1288c2ecf20Sopenharmony_ci		9, "GPIO9",
1298c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 9),
1308c2ecf20Sopenharmony_ci		DRV_GRP4,
1318c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO9"),
1328c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT0"),
1338c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CMMCLK2"),
1348c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TRST_B"),
1358c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "IDDIG"),
1368c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SDA_6306"),
1378c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MCUPM_JTAG_TRSTN"),
1388c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B22")
1398c2ecf20Sopenharmony_ci	),
1408c2ecf20Sopenharmony_ci	MTK_PIN(
1418c2ecf20Sopenharmony_ci		10, "GPIO10",
1428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 10),
1438c2ecf20Sopenharmony_ci		DRV_GRP4,
1448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO10"),
1458c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT1_C2K_UIM0_HOT_PLUG"),
1468c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_DBGI_N"),
1478c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SRCLKENAI1"),
1488c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
1498c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CMVREF1"),
1508c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B23")
1518c2ecf20Sopenharmony_ci	),
1528c2ecf20Sopenharmony_ci	MTK_PIN(
1538c2ecf20Sopenharmony_ci		11, "GPIO11",
1548c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 11),
1558c2ecf20Sopenharmony_ci		DRV_GRP4,
1568c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO11"),
1578c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT2_C2K_UIM1_HOT_PLUG"),
1588c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM3"),
1598c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL6"),
1608c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SRCLKENAI0"),
1618c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
1628c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "UCTS1"),
1638c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B24")
1648c2ecf20Sopenharmony_ci	),
1658c2ecf20Sopenharmony_ci	MTK_PIN(
1668c2ecf20Sopenharmony_ci		12, "GPIO12",
1678c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 12),
1688c2ecf20Sopenharmony_ci		DRV_GRP4,
1698c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO12"),
1708c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM0"),
1718c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI1"),
1728c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "EXT_FRAME_SYNC"),
1738c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT0"),
1748c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "DVFSRC_EXT_REQ"),
1758c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "URTS1")
1768c2ecf20Sopenharmony_ci	),
1778c2ecf20Sopenharmony_ci	MTK_PIN(
1788c2ecf20Sopenharmony_ci		13, "GPIO13",
1798c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 13),
1808c2ecf20Sopenharmony_ci		DRV_GRP4,
1818c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO13"),
1828c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL0"),
1838c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_MI"),
1848c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_MI"),
1858c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD0"),
1868c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CLKM0"),
1878c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_MCK"),
1888c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A0")
1898c2ecf20Sopenharmony_ci	),
1908c2ecf20Sopenharmony_ci	MTK_PIN(
1918c2ecf20Sopenharmony_ci		14, "GPIO14",
1928c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 14),
1938c2ecf20Sopenharmony_ci		DRV_GRP4,
1948c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO14"),
1958c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL1"),
1968c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_CSB"),
1978c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_CS"),
1988c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD0"),
1998c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CLKM1"),
2008c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_BCK"),
2018c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A1")
2028c2ecf20Sopenharmony_ci	),
2038c2ecf20Sopenharmony_ci	MTK_PIN(
2048c2ecf20Sopenharmony_ci		15, "GPIO15",
2058c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 15),
2068c2ecf20Sopenharmony_ci		DRV_GRP4,
2078c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO15"),
2088c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL2"),
2098c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_MO"),
2108c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_MO"),
2118c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD1"),
2128c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CLKM2"),
2138c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_LRCK"),
2148c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A2")
2158c2ecf20Sopenharmony_ci	),
2168c2ecf20Sopenharmony_ci	MTK_PIN(
2178c2ecf20Sopenharmony_ci		16, "GPIO16",
2188c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 16),
2198c2ecf20Sopenharmony_ci		DRV_GRP4,
2208c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO16"),
2218c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL3"),
2228c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_CLK"),
2238c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_CK"),
2248c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD1"),
2258c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CLKM3"),
2268c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_MCK"),
2278c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A3")
2288c2ecf20Sopenharmony_ci	),
2298c2ecf20Sopenharmony_ci	MTK_PIN(
2308c2ecf20Sopenharmony_ci		17, "GPIO17",
2318c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 17),
2328c2ecf20Sopenharmony_ci		DRV_GRP4,
2338c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO17"),
2348c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL4"),
2358c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI2_MO"),
2368c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_MO"),
2378c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "PWM1"),
2388c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "IDDIG"),
2398c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_DI"),
2408c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A4")
2418c2ecf20Sopenharmony_ci	),
2428c2ecf20Sopenharmony_ci	MTK_PIN(
2438c2ecf20Sopenharmony_ci		18, "GPIO18",
2448c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 18),
2458c2ecf20Sopenharmony_ci		DRV_GRP4,
2468c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO18"),
2478c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL5"),
2488c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI2_CLK"),
2498c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_CK"),
2508c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT0"),
2518c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "USB_DRVVBUS"),
2528c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_BCK"),
2538c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A5")
2548c2ecf20Sopenharmony_ci	),
2558c2ecf20Sopenharmony_ci	MTK_PIN(
2568c2ecf20Sopenharmony_ci		19, "GPIO19",
2578c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 19),
2588c2ecf20Sopenharmony_ci		DRV_GRP4,
2598c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO19"),
2608c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL6"),
2618c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI2_MI"),
2628c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_MI"),
2638c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT2_C2K_UIM1_HOT_PLUG"),
2648c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_LRCK"),
2658c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A6")
2668c2ecf20Sopenharmony_ci	),
2678c2ecf20Sopenharmony_ci	MTK_PIN(
2688c2ecf20Sopenharmony_ci		20, "GPIO20",
2698c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 20),
2708c2ecf20Sopenharmony_ci		DRV_GRP4,
2718c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO20"),
2728c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL7"),
2738c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SPI2_CSB"),
2748c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SCP_SPI0_CS"),
2758c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT1_C2K_UIM0_HOT_PLUG"),
2768c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMMCLK3"),
2778c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_DO"),
2788c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A7")
2798c2ecf20Sopenharmony_ci	),
2808c2ecf20Sopenharmony_ci	MTK_PIN(
2818c2ecf20Sopenharmony_ci		21, "GPIO21",
2828c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 21),
2838c2ecf20Sopenharmony_ci		DRV_GRP4,
2848c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO21"),
2858c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI3_MI"),
2868c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI1"),
2878c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "DAP_MD32_SWD"),
2888c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CMVREF0"),
2898c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI0_MI"),
2908c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_MCK"),
2918c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A8")
2928c2ecf20Sopenharmony_ci	),
2938c2ecf20Sopenharmony_ci	MTK_PIN(
2948c2ecf20Sopenharmony_ci		22, "GPIO22",
2958c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 22),
2968c2ecf20Sopenharmony_ci		DRV_GRP4,
2978c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO22"),
2988c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI3_CSB"),
2998c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI0"),
3008c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "DAP_MD32_SWCK"),
3018c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CMVREF1"),
3028c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI0_CS"),
3038c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_BCK"),
3048c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A9")
3058c2ecf20Sopenharmony_ci	),
3068c2ecf20Sopenharmony_ci	MTK_PIN(
3078c2ecf20Sopenharmony_ci		23, "GPIO23",
3088c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 23),
3098c2ecf20Sopenharmony_ci		DRV_GRP4,
3108c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO23"),
3118c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI3_MO"),
3128c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWM0"),
3138c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "KPROW7"),
3148c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL3"),
3158c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI0_MO"),
3168c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_LRCK"),
3178c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A10")
3188c2ecf20Sopenharmony_ci	),
3198c2ecf20Sopenharmony_ci	MTK_PIN(
3208c2ecf20Sopenharmony_ci		24, "GPIO24",
3218c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 24),
3228c2ecf20Sopenharmony_ci		DRV_GRP4,
3238c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO24"),
3248c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI3_CLK"),
3258c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UDI_TCK"),
3268c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "IO_JTAG_TCK"),
3278c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_JTAG_TCK"),
3288c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI0_CK"),
3298c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_DI"),
3308c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A11")
3318c2ecf20Sopenharmony_ci	),
3328c2ecf20Sopenharmony_ci	MTK_PIN(
3338c2ecf20Sopenharmony_ci		25, "GPIO25",
3348c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 25),
3358c2ecf20Sopenharmony_ci		DRV_GRP4,
3368c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO25"),
3378c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_MI"),
3388c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UDI_TMS"),
3398c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "IO_JTAG_TMS"),
3408c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_JTAG_TMS"),
3418c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "KPROW3"),
3428c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_MCK"),
3438c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A12")
3448c2ecf20Sopenharmony_ci	),
3458c2ecf20Sopenharmony_ci	MTK_PIN(
3468c2ecf20Sopenharmony_ci		26, "GPIO26",
3478c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 26),
3488c2ecf20Sopenharmony_ci		DRV_GRP4,
3498c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO26"),
3508c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_CSB"),
3518c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UDI_TDI"),
3528c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "IO_JTAG_TDI"),
3538c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_JTAG_TDI"),
3548c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "KPROW4"),
3558c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_BCK"),
3568c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A13")
3578c2ecf20Sopenharmony_ci	),
3588c2ecf20Sopenharmony_ci	MTK_PIN(
3598c2ecf20Sopenharmony_ci		27, "GPIO27",
3608c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 27),
3618c2ecf20Sopenharmony_ci		DRV_GRP4,
3628c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO27"),
3638c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_MO"),
3648c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UDI_TDO"),
3658c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "IO_JTAG_TDO"),
3668c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_JTAG_TDO"),
3678c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "KPROW5"),
3688c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_LRCK"),
3698c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A14")
3708c2ecf20Sopenharmony_ci	),
3718c2ecf20Sopenharmony_ci	MTK_PIN(
3728c2ecf20Sopenharmony_ci		28, "GPIO28",
3738c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 28),
3748c2ecf20Sopenharmony_ci		DRV_GRP4,
3758c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO28"),
3768c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_CLK"),
3778c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UDI_NTRST"),
3788c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "IO_JTAG_TRSTN"),
3798c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_JTAG_TRSTN"),
3808c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "KPROW6"),
3818c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_DO"),
3828c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A15")
3838c2ecf20Sopenharmony_ci	),
3848c2ecf20Sopenharmony_ci	MTK_PIN(
3858c2ecf20Sopenharmony_ci		29, "GPIO29",
3868c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 29),
3878c2ecf20Sopenharmony_ci		DRV_GRP4,
3888c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO29"),
3898c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_CLK"),
3908c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TCK"),
3918c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TCK"),
3928c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JCK"),
3938c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TCK"),
3948c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_MCU_AICE_TCKC"),
3958c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DAP_MD32_SWCK")
3968c2ecf20Sopenharmony_ci	),
3978c2ecf20Sopenharmony_ci	MTK_PIN(
3988c2ecf20Sopenharmony_ci		30, "GPIO30",
3998c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 30),
4008c2ecf20Sopenharmony_ci		DRV_GRP4,
4018c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO30"),
4028c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_CMD"),
4038c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TMS"),
4048c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TMS"),
4058c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JMS"),
4068c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TMS"),
4078c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_MCU_AICE_TMSC"),
4088c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DAP_MD32_SWD")
4098c2ecf20Sopenharmony_ci	),
4108c2ecf20Sopenharmony_ci	MTK_PIN(
4118c2ecf20Sopenharmony_ci		31, "GPIO31",
4128c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 31),
4138c2ecf20Sopenharmony_ci		DRV_GRP4,
4148c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO31"),
4158c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT3")
4168c2ecf20Sopenharmony_ci	),
4178c2ecf20Sopenharmony_ci	MTK_PIN(
4188c2ecf20Sopenharmony_ci		32, "GPIO32",
4198c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 32),
4208c2ecf20Sopenharmony_ci		DRV_GRP4,
4218c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO32"),
4228c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT0"),
4238c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TDI"),
4248c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TDI"),
4258c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JDI"),
4268c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDI")
4278c2ecf20Sopenharmony_ci	),
4288c2ecf20Sopenharmony_ci	MTK_PIN(
4298c2ecf20Sopenharmony_ci		33, "GPIO33",
4308c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 33),
4318c2ecf20Sopenharmony_ci		DRV_GRP4,
4328c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO33"),
4338c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT2"),
4348c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TRSTN"),
4358c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UDI_NTRST"),
4368c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JINTP"),
4378c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TRSTN")
4388c2ecf20Sopenharmony_ci	),
4398c2ecf20Sopenharmony_ci	MTK_PIN(
4408c2ecf20Sopenharmony_ci		34, "GPIO34",
4418c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 34),
4428c2ecf20Sopenharmony_ci		DRV_GRP4,
4438c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO34"),
4448c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT1"),
4458c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TDO"),
4468c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TDO"),
4478c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JDO"),
4488c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDO")
4498c2ecf20Sopenharmony_ci	),
4508c2ecf20Sopenharmony_ci	MTK_PIN(
4518c2ecf20Sopenharmony_ci		35, "GPIO35",
4528c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 35),
4538c2ecf20Sopenharmony_ci		DRV_GRP4,
4548c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO35"),
4558c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SIO"),
4568c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TDO"),
4578c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SIO"),
4588c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TDO"),
4598c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JDO"),
4608c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A16")
4618c2ecf20Sopenharmony_ci	),
4628c2ecf20Sopenharmony_ci	MTK_PIN(
4638c2ecf20Sopenharmony_ci		36, "GPIO36",
4648c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 36),
4658c2ecf20Sopenharmony_ci		DRV_GRP0,
4668c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO36"),
4678c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SRST"),
4688c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TMS"),
4698c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SRST"),
4708c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TMSC"),
4718c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TMS"),
4728c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JMS"),
4738c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A17")
4748c2ecf20Sopenharmony_ci	),
4758c2ecf20Sopenharmony_ci	MTK_PIN(
4768c2ecf20Sopenharmony_ci		37, "GPIO37",
4778c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 37),
4788c2ecf20Sopenharmony_ci		DRV_GRP0,
4798c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO37"),
4808c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SCLK"),
4818c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TDI"),
4828c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SCLK"),
4838c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TDI"),
4848c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JDI"),
4858c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A18")
4868c2ecf20Sopenharmony_ci	),
4878c2ecf20Sopenharmony_ci	MTK_PIN(
4888c2ecf20Sopenharmony_ci		38, "GPIO38",
4898c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 38),
4908c2ecf20Sopenharmony_ci		DRV_GRP0,
4918c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO38"),
4928c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SCLK"),
4938c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SCLK"),
4948c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A19")
4958c2ecf20Sopenharmony_ci	),
4968c2ecf20Sopenharmony_ci	MTK_PIN(
4978c2ecf20Sopenharmony_ci		39, "GPIO39",
4988c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 39),
4998c2ecf20Sopenharmony_ci		DRV_GRP0,
5008c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO39"),
5018c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SRST"),
5028c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TCK"),
5038c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SRST"),
5048c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TCKC"),
5058c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TCK"),
5068c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JCK"),
5078c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A20")
5088c2ecf20Sopenharmony_ci	),
5098c2ecf20Sopenharmony_ci	MTK_PIN(
5108c2ecf20Sopenharmony_ci		40, "GPIO40",
5118c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 40),
5128c2ecf20Sopenharmony_ci		DRV_GRP0,
5138c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO40"),
5148c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SIO"),
5158c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TRST"),
5168c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SIO"),
5178c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TRSTN"),
5188c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JINTP"),
5198c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A21")
5208c2ecf20Sopenharmony_ci	),
5218c2ecf20Sopenharmony_ci	MTK_PIN(
5228c2ecf20Sopenharmony_ci		41, "GPIO41",
5238c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 41),
5248c2ecf20Sopenharmony_ci		DRV_GRP4,
5258c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO41"),
5268c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "IDDIG"),
5278c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "URXD1"),
5288c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UCTS0"),
5298c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL2"),
5308c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_UTXD_AO"),
5318c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MD_INT0"),
5328c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A22")
5338c2ecf20Sopenharmony_ci	),
5348c2ecf20Sopenharmony_ci	MTK_PIN(
5358c2ecf20Sopenharmony_ci		42, "GPIO42",
5368c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 42),
5378c2ecf20Sopenharmony_ci		DRV_GRP4,
5388c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO42"),
5398c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "USB_DRVVBUS"),
5408c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UTXD1"),
5418c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "URTS0"),
5428c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPROW2"),
5438c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_URXD_AO"),
5448c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MD_INT1_C2K_UIM0_HOT_PLUG"),
5458c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A23")
5468c2ecf20Sopenharmony_ci	),
5478c2ecf20Sopenharmony_ci	MTK_PIN(
5488c2ecf20Sopenharmony_ci		43, "GPIO43",
5498c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 43),
5508c2ecf20Sopenharmony_ci		DRV_GRP4,
5518c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO43"),
5528c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "DISP_PWM"),
5538c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A24")
5548c2ecf20Sopenharmony_ci	),
5558c2ecf20Sopenharmony_ci	MTK_PIN(
5568c2ecf20Sopenharmony_ci		44, "GPIO44",
5578c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 44),
5588c2ecf20Sopenharmony_ci		DRV_GRP4,
5598c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO44"),
5608c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "DSI_TE"),
5618c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A25")
5628c2ecf20Sopenharmony_ci	),
5638c2ecf20Sopenharmony_ci	MTK_PIN(
5648c2ecf20Sopenharmony_ci		45, "GPIO45",
5658c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 45),
5668c2ecf20Sopenharmony_ci		DRV_GRP4,
5678c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO45"),
5688c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "LCM_RST"),
5698c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A26")
5708c2ecf20Sopenharmony_ci	),
5718c2ecf20Sopenharmony_ci	MTK_PIN(
5728c2ecf20Sopenharmony_ci		46, "GPIO46",
5738c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 46),
5748c2ecf20Sopenharmony_ci		DRV_GRP4,
5758c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO46"),
5768c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT2_C2K_UIM1_HOT_PLUG"),
5778c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UCTS0"),
5788c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "UCTS1"),
5798c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "IDDIG"),
5808c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCL_6306"),
5818c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_UCTS1_AO"),
5828c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A27")
5838c2ecf20Sopenharmony_ci	),
5848c2ecf20Sopenharmony_ci	MTK_PIN(
5858c2ecf20Sopenharmony_ci		47, "GPIO47",
5868c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 47),
5878c2ecf20Sopenharmony_ci		DRV_GRP4,
5888c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO47"),
5898c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT1_C2K_UIM0_HOT_PLUG"),
5908c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "URTS0"),
5918c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "URTS1"),
5928c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "USB_DRVVBUS"),
5938c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SDA_6306"),
5948c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_URTS1_AO"),
5958c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A28")
5968c2ecf20Sopenharmony_ci	),
5978c2ecf20Sopenharmony_ci	MTK_PIN(
5988c2ecf20Sopenharmony_ci		48, "GPIO48",
5998c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 48),
6008c2ecf20Sopenharmony_ci		DRV_GRP4,
6018c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO48"),
6028c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL5"),
6038c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A29")
6048c2ecf20Sopenharmony_ci	),
6058c2ecf20Sopenharmony_ci	MTK_PIN(
6068c2ecf20Sopenharmony_ci		49, "GPIO49",
6078c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 49),
6088c2ecf20Sopenharmony_ci		DRV_GRP4,
6098c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO49"),
6108c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA5"),
6118c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A30")
6128c2ecf20Sopenharmony_ci	),
6138c2ecf20Sopenharmony_ci	MTK_PIN(
6148c2ecf20Sopenharmony_ci		50, "GPIO50",
6158c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 50),
6168c2ecf20Sopenharmony_ci		DRV_GRP4,
6178c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO50"),
6188c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL3"),
6198c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "URXD1"),
6208c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_URXD1"),
6218c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_URXD_AO"),
6228c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "IDDIG"),
6238c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_URXD1_AO"),
6248c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A31")
6258c2ecf20Sopenharmony_ci	),
6268c2ecf20Sopenharmony_ci	MTK_PIN(
6278c2ecf20Sopenharmony_ci		51, "GPIO51",
6288c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 51),
6298c2ecf20Sopenharmony_ci		DRV_GRP4,
6308c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO51"),
6318c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA3"),
6328c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UTXD1"),
6338c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_UTXD1"),
6348c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_UTXD_AO"),
6358c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "USB_DRVVBUS"),
6368c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_UTXD1_AO"),
6378c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A32")
6388c2ecf20Sopenharmony_ci	),
6398c2ecf20Sopenharmony_ci	MTK_PIN(
6408c2ecf20Sopenharmony_ci		52, "GPIO52",
6418c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 52),
6428c2ecf20Sopenharmony_ci		DRV_GRP4,
6438c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO52"),
6448c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS15")
6458c2ecf20Sopenharmony_ci	),
6468c2ecf20Sopenharmony_ci	MTK_PIN(
6478c2ecf20Sopenharmony_ci		53, "GPIO53",
6488c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 53),
6498c2ecf20Sopenharmony_ci		DRV_GRP4,
6508c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO53"),
6518c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS13")
6528c2ecf20Sopenharmony_ci	),
6538c2ecf20Sopenharmony_ci	MTK_PIN(
6548c2ecf20Sopenharmony_ci		54, "GPIO54",
6558c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 54),
6568c2ecf20Sopenharmony_ci		DRV_GRP4,
6578c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO54"),
6588c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS12")
6598c2ecf20Sopenharmony_ci	),
6608c2ecf20Sopenharmony_ci	MTK_PIN(
6618c2ecf20Sopenharmony_ci		55, "GPIO55",
6628c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 55),
6638c2ecf20Sopenharmony_ci		DRV_GRP4,
6648c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO55"),
6658c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS8")
6668c2ecf20Sopenharmony_ci	),
6678c2ecf20Sopenharmony_ci	MTK_PIN(
6688c2ecf20Sopenharmony_ci		56, "GPIO56",
6698c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 56),
6708c2ecf20Sopenharmony_ci		DRV_GRP4,
6718c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO56"),
6728c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS9"),
6738c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCL_6306")
6748c2ecf20Sopenharmony_ci	),
6758c2ecf20Sopenharmony_ci	MTK_PIN(
6768c2ecf20Sopenharmony_ci		57, "GPIO57",
6778c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 57),
6788c2ecf20Sopenharmony_ci		DRV_GRP4,
6798c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO57"),
6808c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS10"),
6818c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SDA_6306")
6828c2ecf20Sopenharmony_ci	),
6838c2ecf20Sopenharmony_ci	MTK_PIN(
6848c2ecf20Sopenharmony_ci		58, "GPIO58",
6858c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 58),
6868c2ecf20Sopenharmony_ci		DRV_GRP4,
6878c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO58"),
6888c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D2")
6898c2ecf20Sopenharmony_ci	),
6908c2ecf20Sopenharmony_ci	MTK_PIN(
6918c2ecf20Sopenharmony_ci		59, "GPIO59",
6928c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 59),
6938c2ecf20Sopenharmony_ci		DRV_GRP4,
6948c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO59"),
6958c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D1")
6968c2ecf20Sopenharmony_ci	),
6978c2ecf20Sopenharmony_ci	MTK_PIN(
6988c2ecf20Sopenharmony_ci		60, "GPIO60",
6998c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 60),
7008c2ecf20Sopenharmony_ci		DRV_GRP4,
7018c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO60"),
7028c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D0")
7038c2ecf20Sopenharmony_ci	),
7048c2ecf20Sopenharmony_ci	MTK_PIN(
7058c2ecf20Sopenharmony_ci		61, "GPIO61",
7068c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 61),
7078c2ecf20Sopenharmony_ci		DRV_GRP4,
7088c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO61"),
7098c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI1_SDATA")
7108c2ecf20Sopenharmony_ci	),
7118c2ecf20Sopenharmony_ci	MTK_PIN(
7128c2ecf20Sopenharmony_ci		62, "GPIO62",
7138c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 62),
7148c2ecf20Sopenharmony_ci		DRV_GRP4,
7158c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO62"),
7168c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI1_SCLK")
7178c2ecf20Sopenharmony_ci	),
7188c2ecf20Sopenharmony_ci	MTK_PIN(
7198c2ecf20Sopenharmony_ci		63, "GPIO63",
7208c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 63),
7218c2ecf20Sopenharmony_ci		DRV_GRP4,
7228c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO63"),
7238c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI0_SDATA")
7248c2ecf20Sopenharmony_ci	),
7258c2ecf20Sopenharmony_ci	MTK_PIN(
7268c2ecf20Sopenharmony_ci		64, "GPIO64",
7278c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 64),
7288c2ecf20Sopenharmony_ci		DRV_GRP4,
7298c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO64"),
7308c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI0_SCLK")
7318c2ecf20Sopenharmony_ci	),
7328c2ecf20Sopenharmony_ci	MTK_PIN(
7338c2ecf20Sopenharmony_ci		65, "GPIO65",
7348c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 65),
7358c2ecf20Sopenharmony_ci		DRV_GRP4,
7368c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO65"),
7378c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI3_SDATA"),
7388c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "BPI_BUS16")
7398c2ecf20Sopenharmony_ci	),
7408c2ecf20Sopenharmony_ci	MTK_PIN(
7418c2ecf20Sopenharmony_ci		66, "GPIO66",
7428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 66),
7438c2ecf20Sopenharmony_ci		DRV_GRP4,
7448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO66"),
7458c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI3_SCLK"),
7468c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "BPI_BUS17")
7478c2ecf20Sopenharmony_ci	),
7488c2ecf20Sopenharmony_ci	MTK_PIN(
7498c2ecf20Sopenharmony_ci		67, "GPIO67",
7508c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 67),
7518c2ecf20Sopenharmony_ci		DRV_GRP4,
7528c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO67"),
7538c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI2_SDATA")
7548c2ecf20Sopenharmony_ci	),
7558c2ecf20Sopenharmony_ci	MTK_PIN(
7568c2ecf20Sopenharmony_ci		68, "GPIO68",
7578c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 68),
7588c2ecf20Sopenharmony_ci		DRV_GRP4,
7598c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO68"),
7608c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MIPI2_SCLK")
7618c2ecf20Sopenharmony_ci	),
7628c2ecf20Sopenharmony_ci	MTK_PIN(
7638c2ecf20Sopenharmony_ci		69, "GPIO69",
7648c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 69),
7658c2ecf20Sopenharmony_ci		DRV_GRP4,
7668c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO69"),
7678c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS7")
7688c2ecf20Sopenharmony_ci	),
7698c2ecf20Sopenharmony_ci	MTK_PIN(
7708c2ecf20Sopenharmony_ci		70, "GPIO70",
7718c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 70),
7728c2ecf20Sopenharmony_ci		DRV_GRP4,
7738c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO70"),
7748c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS6")
7758c2ecf20Sopenharmony_ci	),
7768c2ecf20Sopenharmony_ci	MTK_PIN(
7778c2ecf20Sopenharmony_ci		71, "GPIO71",
7788c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 71),
7798c2ecf20Sopenharmony_ci		DRV_GRP4,
7808c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO71"),
7818c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS5")
7828c2ecf20Sopenharmony_ci	),
7838c2ecf20Sopenharmony_ci	MTK_PIN(
7848c2ecf20Sopenharmony_ci		72, "GPIO72",
7858c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 72),
7868c2ecf20Sopenharmony_ci		DRV_GRP4,
7878c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO72"),
7888c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS4")
7898c2ecf20Sopenharmony_ci	),
7908c2ecf20Sopenharmony_ci	MTK_PIN(
7918c2ecf20Sopenharmony_ci		73, "GPIO73",
7928c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 73),
7938c2ecf20Sopenharmony_ci		DRV_GRP4,
7948c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO73"),
7958c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS3")
7968c2ecf20Sopenharmony_ci	),
7978c2ecf20Sopenharmony_ci	MTK_PIN(
7988c2ecf20Sopenharmony_ci		74, "GPIO74",
7998c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 74),
8008c2ecf20Sopenharmony_ci		DRV_GRP4,
8018c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO74"),
8028c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS2")
8038c2ecf20Sopenharmony_ci	),
8048c2ecf20Sopenharmony_ci	MTK_PIN(
8058c2ecf20Sopenharmony_ci		75, "GPIO75",
8068c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 75),
8078c2ecf20Sopenharmony_ci		DRV_GRP4,
8088c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO75"),
8098c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS1")
8108c2ecf20Sopenharmony_ci	),
8118c2ecf20Sopenharmony_ci	MTK_PIN(
8128c2ecf20Sopenharmony_ci		76, "GPIO76",
8138c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 76),
8148c2ecf20Sopenharmony_ci		DRV_GRP4,
8158c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO76"),
8168c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS0")
8178c2ecf20Sopenharmony_ci	),
8188c2ecf20Sopenharmony_ci	MTK_PIN(
8198c2ecf20Sopenharmony_ci		77, "GPIO77",
8208c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 77),
8218c2ecf20Sopenharmony_ci		DRV_GRP4,
8228c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO77"),
8238c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS14")
8248c2ecf20Sopenharmony_ci	),
8258c2ecf20Sopenharmony_ci	MTK_PIN(
8268c2ecf20Sopenharmony_ci		78, "GPIO78",
8278c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 78),
8288c2ecf20Sopenharmony_ci		DRV_GRP4,
8298c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO78"),
8308c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS11")
8318c2ecf20Sopenharmony_ci	),
8328c2ecf20Sopenharmony_ci	MTK_PIN(
8338c2ecf20Sopenharmony_ci		79, "GPIO79",
8348c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 79),
8358c2ecf20Sopenharmony_ci		DRV_GRP4,
8368c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO79"),
8378c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_PA_VM1"),
8388c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MIPI4_SDATA")
8398c2ecf20Sopenharmony_ci	),
8408c2ecf20Sopenharmony_ci	MTK_PIN(
8418c2ecf20Sopenharmony_ci		80, "GPIO80",
8428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 80),
8438c2ecf20Sopenharmony_ci		DRV_GRP4,
8448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO80"),
8458c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "BPI_PA_VM0"),
8468c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MIPI4_SCLK")
8478c2ecf20Sopenharmony_ci	),
8488c2ecf20Sopenharmony_ci	MTK_PIN(
8498c2ecf20Sopenharmony_ci		81, "GPIO81",
8508c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 81),
8518c2ecf20Sopenharmony_ci		DRV_GRP4,
8528c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO81"),
8538c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA1"),
8548c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B0")
8558c2ecf20Sopenharmony_ci	),
8568c2ecf20Sopenharmony_ci	MTK_PIN(
8578c2ecf20Sopenharmony_ci		82, "GPIO82",
8588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 82),
8598c2ecf20Sopenharmony_ci		DRV_GRP4,
8608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO82"),
8618c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA0"),
8628c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B1")
8638c2ecf20Sopenharmony_ci	),
8648c2ecf20Sopenharmony_ci	MTK_PIN(
8658c2ecf20Sopenharmony_ci		83, "GPIO83",
8668c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 83),
8678c2ecf20Sopenharmony_ci		DRV_GRP4,
8688c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO83"),
8698c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL0"),
8708c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B2")
8718c2ecf20Sopenharmony_ci	),
8728c2ecf20Sopenharmony_ci	MTK_PIN(
8738c2ecf20Sopenharmony_ci		84, "GPIO84",
8748c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 84),
8758c2ecf20Sopenharmony_ci		DRV_GRP4,
8768c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO84"),
8778c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL1"),
8788c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B3")
8798c2ecf20Sopenharmony_ci	),
8808c2ecf20Sopenharmony_ci	MTK_PIN(
8818c2ecf20Sopenharmony_ci		85, "GPIO85",
8828c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 85),
8838c2ecf20Sopenharmony_ci		DRV_GRP4,
8848c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO85"),
8858c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_EN")
8868c2ecf20Sopenharmony_ci	),
8878c2ecf20Sopenharmony_ci	MTK_PIN(
8888c2ecf20Sopenharmony_ci		86, "GPIO86",
8898c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 86),
8908c2ecf20Sopenharmony_ci		DRV_GRP4,
8918c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO86"),
8928c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_CK")
8938c2ecf20Sopenharmony_ci	),
8948c2ecf20Sopenharmony_ci	MTK_PIN(
8958c2ecf20Sopenharmony_ci		87, "GPIO87",
8968c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 87),
8978c2ecf20Sopenharmony_ci		DRV_GRP4,
8988c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO87"),
8998c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_INT1_C2K_UIM0_HOT_PLUG"),
9008c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CMVREF0"),
9018c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD0"),
9028c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
9038c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "EXT_FRAME_SYNC")
9048c2ecf20Sopenharmony_ci	),
9058c2ecf20Sopenharmony_ci	MTK_PIN(
9068c2ecf20Sopenharmony_ci		88, "GPIO88",
9078c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 88),
9088c2ecf20Sopenharmony_ci		DRV_GRP4,
9098c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO88"),
9108c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK3"),
9118c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_INT2_C2K_UIM1_HOT_PLUG"),
9128c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CMVREF1"),
9138c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD0"),
9148c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
9158c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DVFSRC_EXT_REQ")
9168c2ecf20Sopenharmony_ci	),
9178c2ecf20Sopenharmony_ci	MTK_PIN(
9188c2ecf20Sopenharmony_ci		89, "GPIO89",
9198c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 89),
9208c2ecf20Sopenharmony_ci		DRV_GRP4,
9218c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO89"),
9228c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENAI0"),
9238c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWM2"),
9248c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT0"),
9258c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "USB_DRVVBUS"),
9268c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCL_6306"),
9278c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO4_AO"),
9288c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B21")
9298c2ecf20Sopenharmony_ci	),
9308c2ecf20Sopenharmony_ci	MTK_PIN(
9318c2ecf20Sopenharmony_ci		90, "GPIO90",
9328c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 90),
9338c2ecf20Sopenharmony_ci		DRV_GRP4,
9348c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO90"),
9358c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URXD1"),
9368c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWM0"),
9378c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT2_C2K_UIM1_HOT_PLUG"),
9388c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL4"),
9398c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "USB_DRVVBUS"),
9408c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_BCK"),
9418c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B4")
9428c2ecf20Sopenharmony_ci	),
9438c2ecf20Sopenharmony_ci	MTK_PIN(
9448c2ecf20Sopenharmony_ci		91, "GPIO91",
9458c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 91),
9468c2ecf20Sopenharmony_ci		DRV_GRP4,
9478c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO91"),
9488c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "KPROW1"),
9498c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWM2"),
9508c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT0"),
9518c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL5"),
9528c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "IDDIG"),
9538c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_LRCK"),
9548c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B5")
9558c2ecf20Sopenharmony_ci	),
9568c2ecf20Sopenharmony_ci	MTK_PIN(
9578c2ecf20Sopenharmony_ci		92, "GPIO92",
9588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 92),
9598c2ecf20Sopenharmony_ci		DRV_GRP4,
9608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO92"),
9618c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "KPROW0"),
9628c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "DVFSRC_EXT_REQ"),
9638c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_DI"),
9648c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B6")
9658c2ecf20Sopenharmony_ci	),
9668c2ecf20Sopenharmony_ci	MTK_PIN(
9678c2ecf20Sopenharmony_ci		93, "GPIO93",
9688c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 93),
9698c2ecf20Sopenharmony_ci		DRV_GRP4,
9708c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO93"),
9718c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "KPCOL0"),
9728c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B7")
9738c2ecf20Sopenharmony_ci	),
9748c2ecf20Sopenharmony_ci	MTK_PIN(
9758c2ecf20Sopenharmony_ci		94, "GPIO94",
9768c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 94),
9778c2ecf20Sopenharmony_ci		DRV_GRP4,
9788c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO94"),
9798c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "KPCOL1"),
9808c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMFLASH"),
9818c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CMVREF0"),
9828c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B8")
9838c2ecf20Sopenharmony_ci	),
9848c2ecf20Sopenharmony_ci	MTK_PIN(
9858c2ecf20Sopenharmony_ci		95, "GPIO95",
9868c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 95),
9878c2ecf20Sopenharmony_ci		DRV_GRP4,
9888c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO95"),
9898c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URXD0"),
9908c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "UTXD0"),
9918c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_URXD0"),
9928c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "PTA_RXD"),
9938c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_URXD_AO"),
9948c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "WIFI_RXD")
9958c2ecf20Sopenharmony_ci	),
9968c2ecf20Sopenharmony_ci	MTK_PIN(
9978c2ecf20Sopenharmony_ci		96, "GPIO96",
9988c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 96),
9998c2ecf20Sopenharmony_ci		DRV_GRP4,
10008c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO96"),
10018c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UTXD0"),
10028c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "URXD0"),
10038c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_UTXD0"),
10048c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "PTA_TXD"),
10058c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_UTXD_AO"),
10068c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "WIFI_TXD")
10078c2ecf20Sopenharmony_ci	),
10088c2ecf20Sopenharmony_ci	MTK_PIN(
10098c2ecf20Sopenharmony_ci		97, "GPIO97",
10108c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 97),
10118c2ecf20Sopenharmony_ci		DRV_GRP4,
10128c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO97"),
10138c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UCTS0"),
10148c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "I2S1_MCK"),
10158c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TDO"),
10168c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SPI5_MI"),
10178c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "SCL_6306"),
10188c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MCUPM_JTAG_TDO"),
10198c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B15")
10208c2ecf20Sopenharmony_ci	),
10218c2ecf20Sopenharmony_ci	MTK_PIN(
10228c2ecf20Sopenharmony_ci		98, "GPIO98",
10238c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 98),
10248c2ecf20Sopenharmony_ci		DRV_GRP4,
10258c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO98"),
10268c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URTS0"),
10278c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "I2S1_BCK"),
10288c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TMS"),
10298c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SPI5_CSB"),
10308c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MCUPM_JTAG_TMS"),
10318c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B16")
10328c2ecf20Sopenharmony_ci	),
10338c2ecf20Sopenharmony_ci	MTK_PIN(
10348c2ecf20Sopenharmony_ci		99, "GPIO99",
10358c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 99),
10368c2ecf20Sopenharmony_ci		DRV_GRP4,
10378c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO99"),
10388c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK0"),
10398c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_CLK"),
10408c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_RXD"),
10418c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_RXD"),
10428c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B17")
10438c2ecf20Sopenharmony_ci	),
10448c2ecf20Sopenharmony_ci
10458c2ecf20Sopenharmony_ci	MTK_PIN(
10468c2ecf20Sopenharmony_ci		100, "GPIO100",
10478c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 100),
10488c2ecf20Sopenharmony_ci		DRV_GRP4,
10498c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO100"),
10508c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK1"),
10518c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_ST"),
10528c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_TXD"),
10538c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_TXD"),
10548c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B18")
10558c2ecf20Sopenharmony_ci	),
10568c2ecf20Sopenharmony_ci	MTK_PIN(
10578c2ecf20Sopenharmony_ci		101, "GPIO101",
10588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 101),
10598c2ecf20Sopenharmony_ci		DRV_GRP4,
10608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO101"),
10618c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMFLASH"),
10628c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "I2S1_LRCK"),
10638c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TCK"),
10648c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SPI5_MO"),
10658c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MCUPM_JTAG_TCK"),
10668c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B19")
10678c2ecf20Sopenharmony_ci	),
10688c2ecf20Sopenharmony_ci	MTK_PIN(
10698c2ecf20Sopenharmony_ci		102, "GPIO102",
10708c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 102),
10718c2ecf20Sopenharmony_ci		DRV_GRP4,
10728c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO102"),
10738c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMVREF0"),
10748c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "I2S1_DO"),
10758c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TDI"),
10768c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "SPI5_CLK"),
10778c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
10788c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "MCUPM_JTAG_TDI"),
10798c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B20")
10808c2ecf20Sopenharmony_ci	),
10818c2ecf20Sopenharmony_ci	MTK_PIN(
10828c2ecf20Sopenharmony_ci		103, "GPIO103",
10838c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 103),
10848c2ecf20Sopenharmony_ci		DRV_GRP4,
10858c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO103"),
10868c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL2"),
10878c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "TP_UTXD1_AO"),
10888c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_UTXD0"),
10898c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD1"),
10908c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "TP_URTS2_AO"),
10918c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "WIFI_TXD"),
10928c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B25")
10938c2ecf20Sopenharmony_ci	),
10948c2ecf20Sopenharmony_ci	MTK_PIN(
10958c2ecf20Sopenharmony_ci		104, "GPIO104",
10968c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 104),
10978c2ecf20Sopenharmony_ci		DRV_GRP4,
10988c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO104"),
10998c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA2"),
11008c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "TP_URXD1_AO"),
11018c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_URXD0"),
11028c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD1"),
11038c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "TP_UCTS2_AO"),
11048c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "WIFI_RXD"),
11058c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B26")
11068c2ecf20Sopenharmony_ci	),
11078c2ecf20Sopenharmony_ci	MTK_PIN(
11088c2ecf20Sopenharmony_ci		105, "GPIO105",
11098c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 105),
11108c2ecf20Sopenharmony_ci		DRV_GRP4,
11118c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO105"),
11128c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL4"),
11138c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_UTXD1"),
11148c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD0"),
11158c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "TP_UTXD2_AO"),
11168c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "PTA_TXD"),
11178c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B27")
11188c2ecf20Sopenharmony_ci	),
11198c2ecf20Sopenharmony_ci	MTK_PIN(
11208c2ecf20Sopenharmony_ci		106, "GPIO106",
11218c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 106),
11228c2ecf20Sopenharmony_ci		DRV_GRP4,
11238c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO106"),
11248c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA4"),
11258c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "MD_URXD1"),
11268c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD0"),
11278c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "TP_URXD2_AO"),
11288c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "PTA_RXD"),
11298c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B28")
11308c2ecf20Sopenharmony_ci	),
11318c2ecf20Sopenharmony_ci	MTK_PIN(
11328c2ecf20Sopenharmony_ci		107, "GPIO107",
11338c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 107),
11348c2ecf20Sopenharmony_ci		DRV_GRP4,
11358c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO107"),
11368c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "UTXD1"),
11378c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_UTXD0"),
11388c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "SDA_6306"),
11398c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL3"),
11408c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMVREF0"),
11418c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "URTS0"),
11428c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B29")
11438c2ecf20Sopenharmony_ci	),
11448c2ecf20Sopenharmony_ci	MTK_PIN(
11458c2ecf20Sopenharmony_ci		108, "GPIO108",
11468c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 108),
11478c2ecf20Sopenharmony_ci		DRV_GRP4,
11488c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO108"),
11498c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK2"),
11508c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_INT0"),
11518c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_DBGACK_N"),
11528c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL4"),
11538c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_MCK"),
11548c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B30")
11558c2ecf20Sopenharmony_ci	),
11568c2ecf20Sopenharmony_ci	MTK_PIN(
11578c2ecf20Sopenharmony_ci		109, "GPIO109",
11588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 109),
11598c2ecf20Sopenharmony_ci		DRV_GRP4,
11608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO109"),
11618c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "URXD1"),
11628c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_URXD0"),
11638c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL7"),
11648c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL5"),
11658c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMVREF1"),
11668c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "UCTS0"),
11678c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B31")
11688c2ecf20Sopenharmony_ci	),
11698c2ecf20Sopenharmony_ci	MTK_PIN(
11708c2ecf20Sopenharmony_ci		110, "GPIO110",
11718c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 110),
11728c2ecf20Sopenharmony_ci		DRV_GRP4,
11738c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO110"),
11748c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL0"),
11758c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM0"),
11768c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "PWM3"),
11778c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT0"),
11788c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "IDDIG"),
11798c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_BCK"),
11808c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B13")
11818c2ecf20Sopenharmony_ci	),
11828c2ecf20Sopenharmony_ci	MTK_PIN(
11838c2ecf20Sopenharmony_ci		111, "GPIO111",
11848c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 111),
11858c2ecf20Sopenharmony_ci		DRV_GRP4,
11868c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO111"),
11878c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL1"),
11888c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM1"),
11898c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "PWM4"),
11908c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "PTA_RXD"),
11918c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMVREF0"),
11928c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_LRCK"),
11938c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B14")
11948c2ecf20Sopenharmony_ci	),
11958c2ecf20Sopenharmony_ci	MTK_PIN(
11968c2ecf20Sopenharmony_ci		112, "GPIO112",
11978c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 112),
11988c2ecf20Sopenharmony_ci		DRV_GRP4,
11998c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO112"),
12008c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL2"),
12018c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM2"),
12028c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "PWM5"),
12038c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "PTA_TXD"),
12048c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "CMVREF1"),
12058c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_DO")
12068c2ecf20Sopenharmony_ci	),
12078c2ecf20Sopenharmony_ci	MTK_PIN(
12088c2ecf20Sopenharmony_ci		113, "GPIO113",
12098c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12108c2ecf20Sopenharmony_ci		DRV_GRP4,
12118c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO113"),
12128c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_TOP_CLK")
12138c2ecf20Sopenharmony_ci	),
12148c2ecf20Sopenharmony_ci	MTK_PIN(
12158c2ecf20Sopenharmony_ci		114, "GPIO114",
12168c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12178c2ecf20Sopenharmony_ci		DRV_GRP4,
12188c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO114"),
12198c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_TOP_DATA")
12208c2ecf20Sopenharmony_ci	),
12218c2ecf20Sopenharmony_ci	MTK_PIN(
12228c2ecf20Sopenharmony_ci		115, "GPIO115",
12238c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12248c2ecf20Sopenharmony_ci		DRV_GRP4,
12258c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO115"),
12268c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_BT_CLK")
12278c2ecf20Sopenharmony_ci	),
12288c2ecf20Sopenharmony_ci	MTK_PIN(
12298c2ecf20Sopenharmony_ci		116, "GPIO116",
12308c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12318c2ecf20Sopenharmony_ci		DRV_GRP4,
12328c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO116"),
12338c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_BT_DATA")
12348c2ecf20Sopenharmony_ci	),
12358c2ecf20Sopenharmony_ci	MTK_PIN(
12368c2ecf20Sopenharmony_ci		117, "GPIO117",
12378c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12388c2ecf20Sopenharmony_ci		DRV_GRP4,
12398c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO117"),
12408c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_CTRL0")
12418c2ecf20Sopenharmony_ci	),
12428c2ecf20Sopenharmony_ci	MTK_PIN(
12438c2ecf20Sopenharmony_ci		118, "GPIO118",
12448c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12458c2ecf20Sopenharmony_ci		DRV_GRP4,
12468c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO118"),
12478c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_CTRL1")
12488c2ecf20Sopenharmony_ci	),
12498c2ecf20Sopenharmony_ci	MTK_PIN(
12508c2ecf20Sopenharmony_ci		119, "GPIO119",
12518c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12528c2ecf20Sopenharmony_ci		DRV_GRP4,
12538c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO119"),
12548c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_CTRL2")
12558c2ecf20Sopenharmony_ci	),
12568c2ecf20Sopenharmony_ci	MTK_PIN(
12578c2ecf20Sopenharmony_ci		120, "GPIO120",
12588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12598c2ecf20Sopenharmony_ci		DRV_GRP4,
12608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO120"),
12618c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WB_PTA")
12628c2ecf20Sopenharmony_ci	),
12638c2ecf20Sopenharmony_ci	MTK_PIN(
12648c2ecf20Sopenharmony_ci		121, "GPIO121",
12658c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12668c2ecf20Sopenharmony_ci		DRV_GRP4,
12678c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO121"),
12688c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CONN_HRST_B")
12698c2ecf20Sopenharmony_ci	),
12708c2ecf20Sopenharmony_ci	MTK_PIN(
12718c2ecf20Sopenharmony_ci		122, "GPIO122",
12728c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12738c2ecf20Sopenharmony_ci		DRV_GRP4,
12748c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO122"),
12758c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_CMD"),
12768c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_CMD")
12778c2ecf20Sopenharmony_ci	),
12788c2ecf20Sopenharmony_ci	MTK_PIN(
12798c2ecf20Sopenharmony_ci		123, "GPIO123",
12808c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12818c2ecf20Sopenharmony_ci		DRV_GRP4,
12828c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO123"),
12838c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT0"),
12848c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT4")
12858c2ecf20Sopenharmony_ci	),
12868c2ecf20Sopenharmony_ci	MTK_PIN(
12878c2ecf20Sopenharmony_ci		124, "GPIO124",
12888c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12898c2ecf20Sopenharmony_ci		DRV_GRP4,
12908c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO124"),
12918c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_CLK"),
12928c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_CLK")
12938c2ecf20Sopenharmony_ci	),
12948c2ecf20Sopenharmony_ci	MTK_PIN(
12958c2ecf20Sopenharmony_ci		125, "GPIO125",
12968c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
12978c2ecf20Sopenharmony_ci		DRV_GRP4,
12988c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO125"),
12998c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT2"),
13008c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT5")
13018c2ecf20Sopenharmony_ci	),
13028c2ecf20Sopenharmony_ci	MTK_PIN(
13038c2ecf20Sopenharmony_ci		126, "GPIO126",
13048c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13058c2ecf20Sopenharmony_ci		DRV_GRP4,
13068c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO126"),
13078c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT4"),
13088c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT2")
13098c2ecf20Sopenharmony_ci	),
13108c2ecf20Sopenharmony_ci	MTK_PIN(
13118c2ecf20Sopenharmony_ci		127, "GPIO127",
13128c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13138c2ecf20Sopenharmony_ci		DRV_GRP4,
13148c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO127"),
13158c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT6"),
13168c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT1")
13178c2ecf20Sopenharmony_ci	),
13188c2ecf20Sopenharmony_ci	MTK_PIN(
13198c2ecf20Sopenharmony_ci		128, "GPIO128",
13208c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13218c2ecf20Sopenharmony_ci		DRV_GRP4,
13228c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO128"),
13238c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT1"),
13248c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT6")
13258c2ecf20Sopenharmony_ci	),
13268c2ecf20Sopenharmony_ci	MTK_PIN(
13278c2ecf20Sopenharmony_ci		129, "GPIO129",
13288c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13298c2ecf20Sopenharmony_ci		DRV_GRP4,
13308c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO129"),
13318c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT5"),
13328c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT0")
13338c2ecf20Sopenharmony_ci	),
13348c2ecf20Sopenharmony_ci	MTK_PIN(
13358c2ecf20Sopenharmony_ci		130, "GPIO130",
13368c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13378c2ecf20Sopenharmony_ci		DRV_GRP4,
13388c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO130"),
13398c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT7"),
13408c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT7")
13418c2ecf20Sopenharmony_ci	),
13428c2ecf20Sopenharmony_ci	MTK_PIN(
13438c2ecf20Sopenharmony_ci		131, "GPIO131",
13448c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13458c2ecf20Sopenharmony_ci		DRV_GRP4,
13468c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO131"),
13478c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DSL"),
13488c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DSL")
13498c2ecf20Sopenharmony_ci	),
13508c2ecf20Sopenharmony_ci	MTK_PIN(
13518c2ecf20Sopenharmony_ci		132, "GPIO132",
13528c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13538c2ecf20Sopenharmony_ci		DRV_GRP4,
13548c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO132"),
13558c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT3"),
13568c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_DAT3")
13578c2ecf20Sopenharmony_ci	),
13588c2ecf20Sopenharmony_ci	MTK_PIN(
13598c2ecf20Sopenharmony_ci		133, "GPIO133",
13608c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13618c2ecf20Sopenharmony_ci		DRV_GRP4,
13628c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO133"),
13638c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_RSTB"),
13648c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MSDC0_RSTB")
13658c2ecf20Sopenharmony_ci	),
13668c2ecf20Sopenharmony_ci	MTK_PIN(
13678c2ecf20Sopenharmony_ci		134, "GPIO134",
13688c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13698c2ecf20Sopenharmony_ci		DRV_GRP4,
13708c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO134"),
13718c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "RTC32K_CK")
13728c2ecf20Sopenharmony_ci	),
13738c2ecf20Sopenharmony_ci	MTK_PIN(
13748c2ecf20Sopenharmony_ci		135, "GPIO135",
13758c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13768c2ecf20Sopenharmony_ci		DRV_GRP4,
13778c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO135"),
13788c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "WATCHDOG")
13798c2ecf20Sopenharmony_ci	),
13808c2ecf20Sopenharmony_ci	MTK_PIN(
13818c2ecf20Sopenharmony_ci		136, "GPIO136",
13828c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13838c2ecf20Sopenharmony_ci		DRV_GRP4,
13848c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO136"),
13858c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_CLK_MOSI"),
13868c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_CLK_MISO"),
13878c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_MCK")
13888c2ecf20Sopenharmony_ci	),
13898c2ecf20Sopenharmony_ci	MTK_PIN(
13908c2ecf20Sopenharmony_ci		137, "GPIO137",
13918c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
13928c2ecf20Sopenharmony_ci		DRV_GRP4,
13938c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO137"),
13948c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_SYNC_MOSI"),
13958c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_SYNC_MISO"),
13968c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_BCK")
13978c2ecf20Sopenharmony_ci	),
13988c2ecf20Sopenharmony_ci	MTK_PIN(
13998c2ecf20Sopenharmony_ci		138, "GPIO138",
14008c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14018c2ecf20Sopenharmony_ci		DRV_GRP4,
14028c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO138"),
14038c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MOSI0"),
14048c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MISO0"),
14058c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_LRCK")
14068c2ecf20Sopenharmony_ci	),
14078c2ecf20Sopenharmony_ci	MTK_PIN(
14088c2ecf20Sopenharmony_ci		139, "GPIO139",
14098c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14108c2ecf20Sopenharmony_ci		DRV_GRP4,
14118c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO139"),
14128c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MOSI1"),
14138c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MISO1"),
14148c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_DO")
14158c2ecf20Sopenharmony_ci	),
14168c2ecf20Sopenharmony_ci	MTK_PIN(
14178c2ecf20Sopenharmony_ci		140, "GPIO140",
14188c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14198c2ecf20Sopenharmony_ci		DRV_GRP4,
14208c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO140"),
14218c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_CLK_MISO"),
14228c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_CLK_MOSI"),
14238c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S2_MCK")
14248c2ecf20Sopenharmony_ci	),
14258c2ecf20Sopenharmony_ci	MTK_PIN(
14268c2ecf20Sopenharmony_ci		141, "GPIO141",
14278c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14288c2ecf20Sopenharmony_ci		DRV_GRP4,
14298c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO141"),
14308c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_SYNC_MISO"),
14318c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_SYNC_MOSI"),
14328c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S2_BCK")
14338c2ecf20Sopenharmony_ci	),
14348c2ecf20Sopenharmony_ci	MTK_PIN(
14358c2ecf20Sopenharmony_ci		142, "GPIO142",
14368c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14378c2ecf20Sopenharmony_ci		DRV_GRP4,
14388c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO142"),
14398c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MISO0"),
14408c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MOSI0"),
14418c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S2_LRCK")
14428c2ecf20Sopenharmony_ci	),
14438c2ecf20Sopenharmony_ci	MTK_PIN(
14448c2ecf20Sopenharmony_ci		143, "GPIO143",
14458c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14468c2ecf20Sopenharmony_ci		DRV_GRP4,
14478c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO143"),
14488c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MISO1"),
14498c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MOSI1"),
14508c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "I2S2_DI")
14518c2ecf20Sopenharmony_ci	),
14528c2ecf20Sopenharmony_ci	MTK_PIN(
14538c2ecf20Sopenharmony_ci		144, "GPIO144",
14548c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14558c2ecf20Sopenharmony_ci		DRV_GRP4,
14568c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO144"),
14578c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_MI"),
14588c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWRAP_SPI0_MO")
14598c2ecf20Sopenharmony_ci	),
14608c2ecf20Sopenharmony_ci	MTK_PIN(
14618c2ecf20Sopenharmony_ci		145, "GPIO145",
14628c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14638c2ecf20Sopenharmony_ci		DRV_GRP4,
14648c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO145"),
14658c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_CSN")
14668c2ecf20Sopenharmony_ci	),
14678c2ecf20Sopenharmony_ci	MTK_PIN(
14688c2ecf20Sopenharmony_ci		146, "GPIO146",
14698c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14708c2ecf20Sopenharmony_ci		DRV_GRP4,
14718c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO146"),
14728c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_MO"),
14738c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWRAP_SPI0_MI")
14748c2ecf20Sopenharmony_ci	),
14758c2ecf20Sopenharmony_ci	MTK_PIN(
14768c2ecf20Sopenharmony_ci		147, "GPIO147",
14778c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14788c2ecf20Sopenharmony_ci		DRV_GRP4,
14798c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO147"),
14808c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_CK")
14818c2ecf20Sopenharmony_ci	),
14828c2ecf20Sopenharmony_ci	MTK_PIN(
14838c2ecf20Sopenharmony_ci		148, "GPIO148",
14848c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14858c2ecf20Sopenharmony_ci		DRV_GRP4,
14868c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO148"),
14878c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENA0")
14888c2ecf20Sopenharmony_ci	),
14898c2ecf20Sopenharmony_ci	MTK_PIN(
14908c2ecf20Sopenharmony_ci		149, "GPIO149",
14918c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14928c2ecf20Sopenharmony_ci		DRV_GRP4,
14938c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO149"),
14948c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENA1")
14958c2ecf20Sopenharmony_ci	),
14968c2ecf20Sopenharmony_ci	MTK_PIN(
14978c2ecf20Sopenharmony_ci		150, "GPIO150",
14988c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
14998c2ecf20Sopenharmony_ci		DRV_GRP4,
15008c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO150"),
15018c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM0"),
15028c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CMFLASH"),
15038c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL3"),
15048c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_URXD0"),
15058c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_URXD2_AO")
15068c2ecf20Sopenharmony_ci	),
15078c2ecf20Sopenharmony_ci	MTK_PIN(
15088c2ecf20Sopenharmony_ci		151, "GPIO151",
15098c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15108c2ecf20Sopenharmony_ci		DRV_GRP4,
15118c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO151"),
15128c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM1"),
15138c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CMVREF0"),
15148c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL4"),
15158c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_UTXD0"),
15168c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_UTXD2_AO")
15178c2ecf20Sopenharmony_ci	),
15188c2ecf20Sopenharmony_ci	MTK_PIN(
15198c2ecf20Sopenharmony_ci		152, "GPIO152",
15208c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15218c2ecf20Sopenharmony_ci		DRV_GRP4,
15228c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO152"),
15238c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM2"),
15248c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CMVREF1"),
15258c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL5"),
15268c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_URXD1"),
15278c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_UCTS1_AO")
15288c2ecf20Sopenharmony_ci	),
15298c2ecf20Sopenharmony_ci	MTK_PIN(
15308c2ecf20Sopenharmony_ci		153, "GPIO153",
15318c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15328c2ecf20Sopenharmony_ci		DRV_GRP4,
15338c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO153"),
15348c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM3"),
15358c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM0"),
15368c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL6"),
15378c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MD_UTXD1"),
15388c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "TP_URTS1_AO")
15398c2ecf20Sopenharmony_ci	),
15408c2ecf20Sopenharmony_ci	MTK_PIN(
15418c2ecf20Sopenharmony_ci		154, "GPIO154",
15428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15438c2ecf20Sopenharmony_ci		DRV_GRP4,
15448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO154"),
15458c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM5"),
15468c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM2"),
15478c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "USB_DRVVBUS"),
15488c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_TXD"),
15498c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_TXD")
15508c2ecf20Sopenharmony_ci	),
15518c2ecf20Sopenharmony_ci	MTK_PIN(
15528c2ecf20Sopenharmony_ci		155, "GPIO155",
15538c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15548c2ecf20Sopenharmony_ci		DRV_GRP4,
15558c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO155"),
15568c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_MI"),
15578c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "IDDIG"),
15588c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "AGPS_SYNC"),
15598c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "TP_GPIO0_AO"),
15608c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MFG_JTAG_TDO"),
15618c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TDO"),
15628c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "JTDO_SEL1")
15638c2ecf20Sopenharmony_ci	),
15648c2ecf20Sopenharmony_ci	MTK_PIN(
15658c2ecf20Sopenharmony_ci		156, "GPIO156",
15668c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15678c2ecf20Sopenharmony_ci		DRV_GRP4,
15688c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO156"),
15698c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_CSB"),
15708c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "USB_DRVVBUS"),
15718c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "DVFSRC_EXT_REQ"),
15728c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "TP_GPIO1_AO"),
15738c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MFG_JTAG_TMS"),
15748c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TMS"),
15758c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "JTMS_SEL1")
15768c2ecf20Sopenharmony_ci	),
15778c2ecf20Sopenharmony_ci	MTK_PIN(
15788c2ecf20Sopenharmony_ci		157, "GPIO157",
15798c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15808c2ecf20Sopenharmony_ci		DRV_GRP4,
15818c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO157"),
15828c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_MO"),
15838c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_INT1_C2K_UIM0_HOT_PLUG"),
15848c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "CLKM0"),
15858c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "TP_GPIO2_AO"),
15868c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MFG_JTAG_TDI"),
15878c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TDI"),
15888c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "JTDI_SEL1")
15898c2ecf20Sopenharmony_ci	),
15908c2ecf20Sopenharmony_ci	MTK_PIN(
15918c2ecf20Sopenharmony_ci		158, "GPIO158",
15928c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
15938c2ecf20Sopenharmony_ci		DRV_GRP4,
15948c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO158"),
15958c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_CLK"),
15968c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "MD_INT2_C2K_UIM1_HOT_PLUG"),
15978c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "EXT_FRAME_SYNC"),
15988c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "TP_GPIO3_AO"),
15998c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "MFG_JTAG_TCK"),
16008c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TCK_XI"),
16018c2ecf20Sopenharmony_ci		MTK_FUNCTION(7, "JTCK_SEL1")
16028c2ecf20Sopenharmony_ci	),
16038c2ecf20Sopenharmony_ci	MTK_PIN(
16048c2ecf20Sopenharmony_ci		159, "GPIO159",
16058c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16068c2ecf20Sopenharmony_ci		DRV_GRP4,
16078c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO159"),
16088c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "PWM4"),
16098c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "CLKM1"),
16108c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL7"),
16118c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_RXD"),
16128c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_RXD")
16138c2ecf20Sopenharmony_ci	),
16148c2ecf20Sopenharmony_ci	MTK_PIN(
16158c2ecf20Sopenharmony_ci		160, "GPIO160",
16168c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16178c2ecf20Sopenharmony_ci		DRV_GRP4,
16188c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO160"),
16198c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "CLKM0"),
16208c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "PWM2"),
16218c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "EXT_FRAME_SYNC"),
16228c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "TP_GPIO5_AO"),
16238c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
16248c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "DVFSRC_EXT_REQ")
16258c2ecf20Sopenharmony_ci	),
16268c2ecf20Sopenharmony_ci	MTK_PIN(
16278c2ecf20Sopenharmony_ci		161, "GPIO161",
16288c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16298c2ecf20Sopenharmony_ci		DRV_GRP4,
16308c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO161"),
16318c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SCL6"),
16328c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SCL_6306"),
16338c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO6_AO"),
16348c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL6"),
16358c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_RXD"),
16368c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_RXD")
16378c2ecf20Sopenharmony_ci	),
16388c2ecf20Sopenharmony_ci	MTK_PIN(
16398c2ecf20Sopenharmony_ci		162, "GPIO162",
16408c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16418c2ecf20Sopenharmony_ci		DRV_GRP4,
16428c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO162"),
16438c2ecf20Sopenharmony_ci		MTK_FUNCTION(1, "SDA6"),
16448c2ecf20Sopenharmony_ci		MTK_FUNCTION(2, "SDA_6306"),
16458c2ecf20Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO7_AO"),
16468c2ecf20Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL7"),
16478c2ecf20Sopenharmony_ci		MTK_FUNCTION(5, "PTA_TXD"),
16488c2ecf20Sopenharmony_ci		MTK_FUNCTION(6, "CONN_UART0_TXD")
16498c2ecf20Sopenharmony_ci	),
16508c2ecf20Sopenharmony_ci	MTK_PIN(
16518c2ecf20Sopenharmony_ci		163, "GPIO163",
16528c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16538c2ecf20Sopenharmony_ci		DRV_GRP4,
16548c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO163")
16558c2ecf20Sopenharmony_ci	),
16568c2ecf20Sopenharmony_ci	MTK_PIN(
16578c2ecf20Sopenharmony_ci		164, "GPIO164",
16588c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16598c2ecf20Sopenharmony_ci		DRV_GRP4,
16608c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO164")
16618c2ecf20Sopenharmony_ci	),
16628c2ecf20Sopenharmony_ci	MTK_PIN(
16638c2ecf20Sopenharmony_ci		165, "GPIO165",
16648c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16658c2ecf20Sopenharmony_ci		DRV_GRP4,
16668c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO165")
16678c2ecf20Sopenharmony_ci	),
16688c2ecf20Sopenharmony_ci	MTK_PIN(
16698c2ecf20Sopenharmony_ci		166, "GPIO166",
16708c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16718c2ecf20Sopenharmony_ci		DRV_GRP4,
16728c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO166")
16738c2ecf20Sopenharmony_ci	),
16748c2ecf20Sopenharmony_ci	MTK_PIN(
16758c2ecf20Sopenharmony_ci		167, "GPIO167",
16768c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16778c2ecf20Sopenharmony_ci		DRV_GRP4,
16788c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO167")
16798c2ecf20Sopenharmony_ci	),
16808c2ecf20Sopenharmony_ci	MTK_PIN(
16818c2ecf20Sopenharmony_ci		168, "GPIO168",
16828c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16838c2ecf20Sopenharmony_ci		DRV_GRP4,
16848c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO168")
16858c2ecf20Sopenharmony_ci	),
16868c2ecf20Sopenharmony_ci	MTK_PIN(
16878c2ecf20Sopenharmony_ci		169, "GPIO169",
16888c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16898c2ecf20Sopenharmony_ci		DRV_GRP4,
16908c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO169")
16918c2ecf20Sopenharmony_ci	),
16928c2ecf20Sopenharmony_ci	MTK_PIN(
16938c2ecf20Sopenharmony_ci		170, "GPIO170",
16948c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
16958c2ecf20Sopenharmony_ci		DRV_GRP4,
16968c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO170")
16978c2ecf20Sopenharmony_ci	),
16988c2ecf20Sopenharmony_ci	MTK_PIN(
16998c2ecf20Sopenharmony_ci		171, "GPIO171",
17008c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17018c2ecf20Sopenharmony_ci		DRV_GRP4,
17028c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO171")
17038c2ecf20Sopenharmony_ci	),
17048c2ecf20Sopenharmony_ci	MTK_PIN(
17058c2ecf20Sopenharmony_ci		172, "GPIO172",
17068c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17078c2ecf20Sopenharmony_ci		DRV_GRP4,
17088c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO172")
17098c2ecf20Sopenharmony_ci	),
17108c2ecf20Sopenharmony_ci	MTK_PIN(
17118c2ecf20Sopenharmony_ci		173, "GPIO173",
17128c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17138c2ecf20Sopenharmony_ci		DRV_GRP4,
17148c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO173")
17158c2ecf20Sopenharmony_ci	),
17168c2ecf20Sopenharmony_ci	MTK_PIN(
17178c2ecf20Sopenharmony_ci		174, "GPIO174",
17188c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17198c2ecf20Sopenharmony_ci		DRV_GRP4,
17208c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO174")
17218c2ecf20Sopenharmony_ci	),
17228c2ecf20Sopenharmony_ci	MTK_PIN(
17238c2ecf20Sopenharmony_ci		175, "GPIO175",
17248c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17258c2ecf20Sopenharmony_ci		DRV_GRP4,
17268c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO175")
17278c2ecf20Sopenharmony_ci	),
17288c2ecf20Sopenharmony_ci	MTK_PIN(
17298c2ecf20Sopenharmony_ci		176, "GPIO176",
17308c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17318c2ecf20Sopenharmony_ci		DRV_GRP4,
17328c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO176")
17338c2ecf20Sopenharmony_ci	),
17348c2ecf20Sopenharmony_ci	MTK_PIN(
17358c2ecf20Sopenharmony_ci		177, "GPIO177",
17368c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17378c2ecf20Sopenharmony_ci		DRV_GRP4,
17388c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO177")
17398c2ecf20Sopenharmony_ci	),
17408c2ecf20Sopenharmony_ci	MTK_PIN(
17418c2ecf20Sopenharmony_ci		178, "GPIO178",
17428c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, NO_EINT_SUPPORT),
17438c2ecf20Sopenharmony_ci		DRV_GRP4,
17448c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO178")
17458c2ecf20Sopenharmony_ci	),
17468c2ecf20Sopenharmony_ci	MTK_PIN(
17478c2ecf20Sopenharmony_ci		179, "GPIO179",
17488c2ecf20Sopenharmony_ci		MTK_EINT_FUNCTION(0, 151),
17498c2ecf20Sopenharmony_ci		DRV_GRP4,
17508c2ecf20Sopenharmony_ci		MTK_FUNCTION(0, "GPIO179")
17518c2ecf20Sopenharmony_ci	),
17528c2ecf20Sopenharmony_ci};
17538c2ecf20Sopenharmony_ci
17548c2ecf20Sopenharmony_ci#endif /* __PINCTRL_MTK_MT6765_H */
1755