162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Copyright (C) 2018 MediaTek Inc.
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Author: Zhiyong Tao <zhiyong.tao@mediatek.com>
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci */
862306a36Sopenharmony_ci
962306a36Sopenharmony_ci#ifndef __PINCTRL_MTK_MT8183_H
1062306a36Sopenharmony_ci#define __PINCTRL_MTK_MT8183_H
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#include "pinctrl-paris.h"
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_cistatic struct mtk_pin_desc mtk_pins_mt8183[] = {
1562306a36Sopenharmony_ci	MTK_PIN(
1662306a36Sopenharmony_ci		0, "GPIO0",
1762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 0),
1862306a36Sopenharmony_ci		DRV_GRP4,
1962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO0"),
2062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MRG_SYNC"),
2162306a36Sopenharmony_ci		MTK_FUNCTION(2, "PCM0_SYNC"),
2262306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO0_AO"),
2362306a36Sopenharmony_ci		MTK_FUNCTION(4, "SRCLKENAI0"),
2462306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI2_CS"),
2562306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_MCK"),
2662306a36Sopenharmony_ci		MTK_FUNCTION(7, "SPI2_CSB")
2762306a36Sopenharmony_ci	),
2862306a36Sopenharmony_ci	MTK_PIN(
2962306a36Sopenharmony_ci		1, "GPIO1",
3062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 1),
3162306a36Sopenharmony_ci		DRV_GRP4,
3262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO1"),
3362306a36Sopenharmony_ci		MTK_FUNCTION(1, "MRG_CLK"),
3462306a36Sopenharmony_ci		MTK_FUNCTION(2, "PCM0_CLK"),
3562306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO1_AO"),
3662306a36Sopenharmony_ci		MTK_FUNCTION(4, "CLKM3"),
3762306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI2_MO"),
3862306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_BCK"),
3962306a36Sopenharmony_ci		MTK_FUNCTION(7, "SPI2_MO")
4062306a36Sopenharmony_ci	),
4162306a36Sopenharmony_ci	MTK_PIN(
4262306a36Sopenharmony_ci		2, "GPIO2",
4362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 2),
4462306a36Sopenharmony_ci		DRV_GRP4,
4562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO2"),
4662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MRG_DO"),
4762306a36Sopenharmony_ci		MTK_FUNCTION(2, "PCM0_DO"),
4862306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO2_AO"),
4962306a36Sopenharmony_ci		MTK_FUNCTION(4, "SCL6"),
5062306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI2_CK"),
5162306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_LRCK"),
5262306a36Sopenharmony_ci		MTK_FUNCTION(7, "SPI2_CLK")
5362306a36Sopenharmony_ci	),
5462306a36Sopenharmony_ci	MTK_PIN(
5562306a36Sopenharmony_ci		3, "GPIO3",
5662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 3),
5762306a36Sopenharmony_ci		DRV_GRP4,
5862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO3"),
5962306a36Sopenharmony_ci		MTK_FUNCTION(1, "MRG_DI"),
6062306a36Sopenharmony_ci		MTK_FUNCTION(2, "PCM0_DI"),
6162306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_GPIO3_AO"),
6262306a36Sopenharmony_ci		MTK_FUNCTION(4, "SDA6"),
6362306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_MCK"),
6462306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_DO"),
6562306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_VREQ_VAO")
6662306a36Sopenharmony_ci	),
6762306a36Sopenharmony_ci	MTK_PIN(
6862306a36Sopenharmony_ci		4, "GPIO4",
6962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 4),
7062306a36Sopenharmony_ci		DRV_GRP4,
7162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO4"),
7262306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_B"),
7362306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S0_MCK"),
7462306a36Sopenharmony_ci		MTK_FUNCTION(3, "SSPM_UTXD_AO"),
7562306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD1"),
7662306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_BCK"),
7762306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO4_AO"),
7862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DAP_MD32_SWD")
7962306a36Sopenharmony_ci	),
8062306a36Sopenharmony_ci	MTK_PIN(
8162306a36Sopenharmony_ci		5, "GPIO5",
8262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 5),
8362306a36Sopenharmony_ci		DRV_GRP4,
8462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO5"),
8562306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_C"),
8662306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S0_BCK"),
8762306a36Sopenharmony_ci		MTK_FUNCTION(3, "SSPM_URXD_AO"),
8862306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD1"),
8962306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_LRCK"),
9062306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO5_AO"),
9162306a36Sopenharmony_ci		MTK_FUNCTION(7, "DAP_MD32_SWCK")
9262306a36Sopenharmony_ci	),
9362306a36Sopenharmony_ci	MTK_PIN(
9462306a36Sopenharmony_ci		6, "GPIO6",
9562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 6),
9662306a36Sopenharmony_ci		DRV_GRP4,
9762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO6"),
9862306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_A"),
9962306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S0_LRCK"),
10062306a36Sopenharmony_ci		MTK_FUNCTION(3, "IDDIG"),
10162306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD0"),
10262306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_DATA0"),
10362306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO6_AO"),
10462306a36Sopenharmony_ci		MTK_FUNCTION(7, "CMFLASH")
10562306a36Sopenharmony_ci	),
10662306a36Sopenharmony_ci	MTK_PIN(
10762306a36Sopenharmony_ci		7, "GPIO7",
10862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 7),
10962306a36Sopenharmony_ci		DRV_GRP4,
11062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO7"),
11162306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_MI"),
11262306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S0_DI"),
11362306a36Sopenharmony_ci		MTK_FUNCTION(3, "USB_DRVVBUS"),
11462306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD0"),
11562306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_DATA1"),
11662306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_GPIO7_AO"),
11762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DVFSRC_EXT_REQ")
11862306a36Sopenharmony_ci	),
11962306a36Sopenharmony_ci	MTK_PIN(
12062306a36Sopenharmony_ci		8, "GPIO8",
12162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 8),
12262306a36Sopenharmony_ci		DRV_GRP4,
12362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO8"),
12462306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_CSB"),
12562306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL3"),
12662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL7"),
12762306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_TRST_B"),
12862306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_DATA2"),
12962306a36Sopenharmony_ci		MTK_FUNCTION(6, "MD_INT0"),
13062306a36Sopenharmony_ci		MTK_FUNCTION(7, "JTRSTN_SEL1")
13162306a36Sopenharmony_ci	),
13262306a36Sopenharmony_ci	MTK_PIN(
13362306a36Sopenharmony_ci		9, "GPIO9",
13462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 9),
13562306a36Sopenharmony_ci		DRV_GRP4,
13662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO9"),
13762306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_MO"),
13862306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL4"),
13962306a36Sopenharmony_ci		MTK_FUNCTION(3, "CMMCLK2"),
14062306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_DBGACK_N"),
14162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TRSTN"),
14262306a36Sopenharmony_ci		MTK_FUNCTION(6, "IO_JTAG_TRSTN"),
14362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B10")
14462306a36Sopenharmony_ci	),
14562306a36Sopenharmony_ci	MTK_PIN(
14662306a36Sopenharmony_ci		10, "GPIO10",
14762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 10),
14862306a36Sopenharmony_ci		DRV_GRP4,
14962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO10"),
15062306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_B_CLK"),
15162306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL5"),
15262306a36Sopenharmony_ci		MTK_FUNCTION(3, "CMMCLK3"),
15362306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_DBGI_N"),
15462306a36Sopenharmony_ci		MTK_FUNCTION(5, "TDM_DATA3"),
15562306a36Sopenharmony_ci		MTK_FUNCTION(6, "EXT_FRAME_SYNC"),
15662306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B11")
15762306a36Sopenharmony_ci	),
15862306a36Sopenharmony_ci	MTK_PIN(
15962306a36Sopenharmony_ci		11, "GPIO11",
16062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 11),
16162306a36Sopenharmony_ci		DRV_GRP4,
16262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO11"),
16362306a36Sopenharmony_ci		MTK_FUNCTION(1, "TP_URXD1_AO"),
16462306a36Sopenharmony_ci		MTK_FUNCTION(2, "IDDIG"),
16562306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL6"),
16662306a36Sopenharmony_ci		MTK_FUNCTION(4, "UCTS1"),
16762306a36Sopenharmony_ci		MTK_FUNCTION(5, "UCTS0"),
16862306a36Sopenharmony_ci		MTK_FUNCTION(6, "SRCLKENAI1"),
16962306a36Sopenharmony_ci		MTK_FUNCTION(7, "I2S5_MCK")
17062306a36Sopenharmony_ci	),
17162306a36Sopenharmony_ci	MTK_PIN(
17262306a36Sopenharmony_ci		12, "GPIO12",
17362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 12),
17462306a36Sopenharmony_ci		DRV_GRP4,
17562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO12"),
17662306a36Sopenharmony_ci		MTK_FUNCTION(1, "TP_UTXD1_AO"),
17762306a36Sopenharmony_ci		MTK_FUNCTION(2, "USB_DRVVBUS"),
17862306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA6"),
17962306a36Sopenharmony_ci		MTK_FUNCTION(4, "URTS1"),
18062306a36Sopenharmony_ci		MTK_FUNCTION(5, "URTS0"),
18162306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_DI2"),
18262306a36Sopenharmony_ci		MTK_FUNCTION(7, "I2S5_BCK")
18362306a36Sopenharmony_ci	),
18462306a36Sopenharmony_ci	MTK_PIN(
18562306a36Sopenharmony_ci		13, "GPIO13",
18662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 13),
18762306a36Sopenharmony_ci		DRV_GRP4,
18862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO13"),
18962306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D0"),
19062306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI5_MI"),
19162306a36Sopenharmony_ci		MTK_FUNCTION(3, "PCM0_SYNC"),
19262306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD0"),
19362306a36Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL3"),
19462306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_MCK"),
19562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B15")
19662306a36Sopenharmony_ci	),
19762306a36Sopenharmony_ci	MTK_PIN(
19862306a36Sopenharmony_ci		14, "GPIO14",
19962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 14),
20062306a36Sopenharmony_ci		DRV_GRP4,
20162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO14"),
20262306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D1"),
20362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI5_CSB"),
20462306a36Sopenharmony_ci		MTK_FUNCTION(3, "PCM0_CLK"),
20562306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD0"),
20662306a36Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL4"),
20762306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_BCK"),
20862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B16")
20962306a36Sopenharmony_ci	),
21062306a36Sopenharmony_ci	MTK_PIN(
21162306a36Sopenharmony_ci		15, "GPIO15",
21262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 15),
21362306a36Sopenharmony_ci		DRV_GRP4,
21462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO15"),
21562306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D2"),
21662306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI5_MO"),
21762306a36Sopenharmony_ci		MTK_FUNCTION(3, "PCM0_DO"),
21862306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD1"),
21962306a36Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL5"),
22062306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_LRCK"),
22162306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B17")
22262306a36Sopenharmony_ci	),
22362306a36Sopenharmony_ci	MTK_PIN(
22462306a36Sopenharmony_ci		16, "GPIO16",
22562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 16),
22662306a36Sopenharmony_ci		DRV_GRP4,
22762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO16"),
22862306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D3"),
22962306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI5_CLK"),
23062306a36Sopenharmony_ci		MTK_FUNCTION(3, "PCM0_DI"),
23162306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD1"),
23262306a36Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL6"),
23362306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S0_DI"),
23462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B23")
23562306a36Sopenharmony_ci	),
23662306a36Sopenharmony_ci	MTK_PIN(
23762306a36Sopenharmony_ci		17, "GPIO17",
23862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 17),
23962306a36Sopenharmony_ci		DRV_GRP4,
24062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO17"),
24162306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D4"),
24262306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_MI"),
24362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TRST_B"),
24462306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT0"),
24562306a36Sopenharmony_ci		MTK_FUNCTION(5, "ANT_SEL7"),
24662306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_MCK"),
24762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A1")
24862306a36Sopenharmony_ci	),
24962306a36Sopenharmony_ci	MTK_PIN(
25062306a36Sopenharmony_ci		18, "GPIO18",
25162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 18),
25262306a36Sopenharmony_ci		DRV_GRP4,
25362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO18"),
25462306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D5"),
25562306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_CSB"),
25662306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_DBGI_N"),
25762306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT0"),
25862306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_VREQ_VAO"),
25962306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_BCK"),
26062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A2")
26162306a36Sopenharmony_ci	),
26262306a36Sopenharmony_ci	MTK_PIN(
26362306a36Sopenharmony_ci		19, "GPIO19",
26462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 19),
26562306a36Sopenharmony_ci		DRV_GRP4,
26662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO19"),
26762306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D6"),
26862306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_MO"),
26962306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TDO"),
27062306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT2_C2K_UIM1_HOT_PLUG"),
27162306a36Sopenharmony_ci		MTK_FUNCTION(5, "URXD1"),
27262306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_LRCK"),
27362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A3")
27462306a36Sopenharmony_ci	),
27562306a36Sopenharmony_ci	MTK_PIN(
27662306a36Sopenharmony_ci		20, "GPIO20",
27762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 20),
27862306a36Sopenharmony_ci		DRV_GRP4,
27962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO20"),
28062306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D7"),
28162306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI4_CLK"),
28262306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_DBGACK_N"),
28362306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_INT1_C2K_UIM0_HOT_PLUG"),
28462306a36Sopenharmony_ci		MTK_FUNCTION(5, "UTXD1"),
28562306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S3_DO"),
28662306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A19")
28762306a36Sopenharmony_ci	),
28862306a36Sopenharmony_ci	MTK_PIN(
28962306a36Sopenharmony_ci		21, "GPIO21",
29062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 21),
29162306a36Sopenharmony_ci		DRV_GRP4,
29262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO21"),
29362306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D8"),
29462306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI3_MI"),
29562306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TMS"),
29662306a36Sopenharmony_ci		MTK_FUNCTION(4, "DAP_MD32_SWD"),
29762306a36Sopenharmony_ci		MTK_FUNCTION(5, "CONN_MCU_AICE_TMSC"),
29862306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_MCK"),
29962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B5")
30062306a36Sopenharmony_ci	),
30162306a36Sopenharmony_ci	MTK_PIN(
30262306a36Sopenharmony_ci		22, "GPIO22",
30362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 22),
30462306a36Sopenharmony_ci		DRV_GRP4,
30562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO22"),
30662306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D9"),
30762306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI3_CSB"),
30862306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TCK"),
30962306a36Sopenharmony_ci		MTK_FUNCTION(4, "DAP_MD32_SWCK"),
31062306a36Sopenharmony_ci		MTK_FUNCTION(5, "CONN_MCU_AICE_TCKC"),
31162306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_BCK"),
31262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B6")
31362306a36Sopenharmony_ci	),
31462306a36Sopenharmony_ci	MTK_PIN(
31562306a36Sopenharmony_ci		23, "GPIO23",
31662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 23),
31762306a36Sopenharmony_ci		DRV_GRP4,
31862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO23"),
31962306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D10"),
32062306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI3_MO"),
32162306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_TDI"),
32262306a36Sopenharmony_ci		MTK_FUNCTION(4, "UCTS1"),
32362306a36Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
32462306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_LRCK"),
32562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B7")
32662306a36Sopenharmony_ci	),
32762306a36Sopenharmony_ci	MTK_PIN(
32862306a36Sopenharmony_ci		24, "GPIO24",
32962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 24),
33062306a36Sopenharmony_ci		DRV_GRP4,
33162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO24"),
33262306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_D11"),
33362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPI3_CLK"),
33462306a36Sopenharmony_ci		MTK_FUNCTION(3, "SRCLKENAI0"),
33562306a36Sopenharmony_ci		MTK_FUNCTION(4, "URTS1"),
33662306a36Sopenharmony_ci		MTK_FUNCTION(5, "IO_JTAG_TCK"),
33762306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S2_DI"),
33862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B31")
33962306a36Sopenharmony_ci	),
34062306a36Sopenharmony_ci	MTK_PIN(
34162306a36Sopenharmony_ci		25, "GPIO25",
34262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 25),
34362306a36Sopenharmony_ci		DRV_GRP4,
34462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO25"),
34562306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_HSYNC"),
34662306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL0"),
34762306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL6"),
34862306a36Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL2"),
34962306a36Sopenharmony_ci		MTK_FUNCTION(5, "IO_JTAG_TMS"),
35062306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_MCK"),
35162306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B0")
35262306a36Sopenharmony_ci	),
35362306a36Sopenharmony_ci	MTK_PIN(
35462306a36Sopenharmony_ci		26, "GPIO26",
35562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 26),
35662306a36Sopenharmony_ci		DRV_GRP4,
35762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO26"),
35862306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_VSYNC"),
35962306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL1"),
36062306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA6"),
36162306a36Sopenharmony_ci		MTK_FUNCTION(4, "KPROW2"),
36262306a36Sopenharmony_ci		MTK_FUNCTION(5, "IO_JTAG_TDI"),
36362306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_BCK"),
36462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B1")
36562306a36Sopenharmony_ci	),
36662306a36Sopenharmony_ci	MTK_PIN(
36762306a36Sopenharmony_ci		27, "GPIO27",
36862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 27),
36962306a36Sopenharmony_ci		DRV_GRP4,
37062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO27"),
37162306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_DE"),
37262306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL2"),
37362306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL7"),
37462306a36Sopenharmony_ci		MTK_FUNCTION(4, "DMIC_CLK"),
37562306a36Sopenharmony_ci		MTK_FUNCTION(5, "IO_JTAG_TDO"),
37662306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_LRCK"),
37762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B9")
37862306a36Sopenharmony_ci	),
37962306a36Sopenharmony_ci	MTK_PIN(
38062306a36Sopenharmony_ci		28, "GPIO28",
38162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 28),
38262306a36Sopenharmony_ci		DRV_GRP4,
38362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO28"),
38462306a36Sopenharmony_ci		MTK_FUNCTION(1, "DBPI_CK"),
38562306a36Sopenharmony_ci		MTK_FUNCTION(2, "DVFSRC_EXT_REQ"),
38662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA7"),
38762306a36Sopenharmony_ci		MTK_FUNCTION(4, "DMIC_DAT"),
38862306a36Sopenharmony_ci		MTK_FUNCTION(5, "IO_JTAG_TRSTN"),
38962306a36Sopenharmony_ci		MTK_FUNCTION(6, "I2S1_DO"),
39062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B32")
39162306a36Sopenharmony_ci	),
39262306a36Sopenharmony_ci	MTK_PIN(
39362306a36Sopenharmony_ci		29, "GPIO29",
39462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 29),
39562306a36Sopenharmony_ci		DRV_GRP4,
39662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO29"),
39762306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_CLK"),
39862306a36Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TCK"),
39962306a36Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TCK"),
40062306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JCK"),
40162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TCK"),
40262306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_CLK"),
40362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A6")
40462306a36Sopenharmony_ci	),
40562306a36Sopenharmony_ci	MTK_PIN(
40662306a36Sopenharmony_ci		30, "GPIO30",
40762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 30),
40862306a36Sopenharmony_ci		DRV_GRP4,
40962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO30"),
41062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT3"),
41162306a36Sopenharmony_ci		MTK_FUNCTION(2, "DAP_MD32_SWD"),
41262306a36Sopenharmony_ci		MTK_FUNCTION(3, "CONN_MCU_AICE_TMSC"),
41362306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JINTP"),
41462306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TRSTN"),
41562306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_DI"),
41662306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A7")
41762306a36Sopenharmony_ci	),
41862306a36Sopenharmony_ci	MTK_PIN(
41962306a36Sopenharmony_ci		31, "GPIO31",
42062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 31),
42162306a36Sopenharmony_ci		DRV_GRP4,
42262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO31"),
42362306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_CMD"),
42462306a36Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TMS"),
42562306a36Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TMS"),
42662306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JMS"),
42762306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TMS"),
42862306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_SYNC"),
42962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A8")
43062306a36Sopenharmony_ci	),
43162306a36Sopenharmony_ci	MTK_PIN(
43262306a36Sopenharmony_ci		32, "GPIO32",
43362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 32),
43462306a36Sopenharmony_ci		DRV_GRP4,
43562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO32"),
43662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT0"),
43762306a36Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TDI"),
43862306a36Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TDI"),
43962306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JDI"),
44062306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDI"),
44162306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_DO0"),
44262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A9")
44362306a36Sopenharmony_ci	),
44462306a36Sopenharmony_ci	MTK_PIN(
44562306a36Sopenharmony_ci		33, "GPIO33",
44662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 33),
44762306a36Sopenharmony_ci		DRV_GRP4,
44862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO33"),
44962306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT2"),
45062306a36Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TRSTN"),
45162306a36Sopenharmony_ci		MTK_FUNCTION(3, "UDI_NTRST"),
45262306a36Sopenharmony_ci		MTK_FUNCTION(4, "DAP_MD32_SWCK"),
45362306a36Sopenharmony_ci		MTK_FUNCTION(5, "CONN_MCU_AICE_TCKC"),
45462306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_DO2"),
45562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A10")
45662306a36Sopenharmony_ci	),
45762306a36Sopenharmony_ci	MTK_PIN(
45862306a36Sopenharmony_ci		34, "GPIO34",
45962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 34),
46062306a36Sopenharmony_ci		DRV_GRP4,
46162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO34"),
46262306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC1_DAT1"),
46362306a36Sopenharmony_ci		MTK_FUNCTION(2, "IO_JTAG_TDO"),
46462306a36Sopenharmony_ci		MTK_FUNCTION(3, "UDI_TDO"),
46562306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_DSP_JDO"),
46662306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDO"),
46762306a36Sopenharmony_ci		MTK_FUNCTION(6, "PCM1_DO1"),
46862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A11")
46962306a36Sopenharmony_ci	),
47062306a36Sopenharmony_ci	MTK_PIN(
47162306a36Sopenharmony_ci		35, "GPIO35",
47262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 35),
47362306a36Sopenharmony_ci		DRV_GRP4,
47462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO35"),
47562306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SIO"),
47662306a36Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TDO"),
47762306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SIO"),
47862306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TDO"),
47962306a36Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JMS"),
48062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A28")
48162306a36Sopenharmony_ci	),
48262306a36Sopenharmony_ci	MTK_PIN(
48362306a36Sopenharmony_ci		36, "GPIO36",
48462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 36),
48562306a36Sopenharmony_ci		DRV_GRP4,
48662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO36"),
48762306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SRST"),
48862306a36Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TMS"),
48962306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SRST"),
49062306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TMSC"),
49162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TMS"),
49262306a36Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JINTP"),
49362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A29")
49462306a36Sopenharmony_ci	),
49562306a36Sopenharmony_ci	MTK_PIN(
49662306a36Sopenharmony_ci		37, "GPIO37",
49762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 37),
49862306a36Sopenharmony_ci		DRV_GRP4,
49962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO37"),
50062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM2_SCLK"),
50162306a36Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TDI"),
50262306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM1_SCLK"),
50362306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TDI"),
50462306a36Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JDO"),
50562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A30")
50662306a36Sopenharmony_ci	),
50762306a36Sopenharmony_ci	MTK_PIN(
50862306a36Sopenharmony_ci		38, "GPIO38",
50962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 38),
51062306a36Sopenharmony_ci		DRV_GRP4,
51162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO38"),
51262306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SCLK"),
51362306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SCLK"),
51462306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TCKC"),
51562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A20")
51662306a36Sopenharmony_ci	),
51762306a36Sopenharmony_ci	MTK_PIN(
51862306a36Sopenharmony_ci		39, "GPIO39",
51962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 39),
52062306a36Sopenharmony_ci		DRV_GRP4,
52162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO39"),
52262306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SRST"),
52362306a36Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TCK"),
52462306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SRST"),
52562306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TCK"),
52662306a36Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JCK"),
52762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A31")
52862306a36Sopenharmony_ci	),
52962306a36Sopenharmony_ci	MTK_PIN(
53062306a36Sopenharmony_ci		40, "GPIO40",
53162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 40),
53262306a36Sopenharmony_ci		DRV_GRP4,
53362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO40"),
53462306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD1_SIM1_SIO"),
53562306a36Sopenharmony_ci		MTK_FUNCTION(2, "CCU_JTAG_TRST"),
53662306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD1_SIM2_SIO"),
53762306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_JTAG_TRSTN"),
53862306a36Sopenharmony_ci		MTK_FUNCTION(6, "CONN_DSP_JDI"),
53962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A32")
54062306a36Sopenharmony_ci	),
54162306a36Sopenharmony_ci	MTK_PIN(
54262306a36Sopenharmony_ci		41, "GPIO41",
54362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 41),
54462306a36Sopenharmony_ci		DRV_GRP4,
54562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO41"),
54662306a36Sopenharmony_ci		MTK_FUNCTION(1, "IDDIG"),
54762306a36Sopenharmony_ci		MTK_FUNCTION(2, "URXD1"),
54862306a36Sopenharmony_ci		MTK_FUNCTION(3, "UCTS0"),
54962306a36Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_UTXD_AO"),
55062306a36Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
55162306a36Sopenharmony_ci		MTK_FUNCTION(6, "DMIC_CLK")
55262306a36Sopenharmony_ci	),
55362306a36Sopenharmony_ci	MTK_PIN(
55462306a36Sopenharmony_ci		42, "GPIO42",
55562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 42),
55662306a36Sopenharmony_ci		DRV_GRP4,
55762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO42"),
55862306a36Sopenharmony_ci		MTK_FUNCTION(1, "USB_DRVVBUS"),
55962306a36Sopenharmony_ci		MTK_FUNCTION(2, "UTXD1"),
56062306a36Sopenharmony_ci		MTK_FUNCTION(3, "URTS0"),
56162306a36Sopenharmony_ci		MTK_FUNCTION(4, "SSPM_URXD_AO"),
56262306a36Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
56362306a36Sopenharmony_ci		MTK_FUNCTION(6, "DMIC_DAT")
56462306a36Sopenharmony_ci	),
56562306a36Sopenharmony_ci	MTK_PIN(
56662306a36Sopenharmony_ci		43, "GPIO43",
56762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 43),
56862306a36Sopenharmony_ci		DRV_GRP4,
56962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO43"),
57062306a36Sopenharmony_ci		MTK_FUNCTION(1, "DISP_PWM")
57162306a36Sopenharmony_ci	),
57262306a36Sopenharmony_ci	MTK_PIN(
57362306a36Sopenharmony_ci		44, "GPIO44",
57462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 44),
57562306a36Sopenharmony_ci		DRV_GRP4,
57662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO44"),
57762306a36Sopenharmony_ci		MTK_FUNCTION(1, "DSI_TE")
57862306a36Sopenharmony_ci	),
57962306a36Sopenharmony_ci	MTK_PIN(
58062306a36Sopenharmony_ci		45, "GPIO45",
58162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 45),
58262306a36Sopenharmony_ci		DRV_GRP4,
58362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO45"),
58462306a36Sopenharmony_ci		MTK_FUNCTION(1, "LCM_RST")
58562306a36Sopenharmony_ci	),
58662306a36Sopenharmony_ci	MTK_PIN(
58762306a36Sopenharmony_ci		46, "GPIO46",
58862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 46),
58962306a36Sopenharmony_ci		DRV_GRP4,
59062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO46"),
59162306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT2_C2K_UIM1_HOT_PLUG"),
59262306a36Sopenharmony_ci		MTK_FUNCTION(2, "URXD1"),
59362306a36Sopenharmony_ci		MTK_FUNCTION(3, "UCTS1"),
59462306a36Sopenharmony_ci		MTK_FUNCTION(4, "CCU_UTXD_AO"),
59562306a36Sopenharmony_ci		MTK_FUNCTION(5, "TP_UCTS1_AO"),
59662306a36Sopenharmony_ci		MTK_FUNCTION(6, "IDDIG"),
59762306a36Sopenharmony_ci		MTK_FUNCTION(7, "I2S5_LRCK")
59862306a36Sopenharmony_ci	),
59962306a36Sopenharmony_ci	MTK_PIN(
60062306a36Sopenharmony_ci		47, "GPIO47",
60162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 47),
60262306a36Sopenharmony_ci		DRV_GRP4,
60362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO47"),
60462306a36Sopenharmony_ci		MTK_FUNCTION(1, "MD_INT1_C2K_UIM0_HOT_PLUG"),
60562306a36Sopenharmony_ci		MTK_FUNCTION(2, "UTXD1"),
60662306a36Sopenharmony_ci		MTK_FUNCTION(3, "URTS1"),
60762306a36Sopenharmony_ci		MTK_FUNCTION(4, "CCU_URXD_AO"),
60862306a36Sopenharmony_ci		MTK_FUNCTION(5, "TP_URTS1_AO"),
60962306a36Sopenharmony_ci		MTK_FUNCTION(6, "USB_DRVVBUS"),
61062306a36Sopenharmony_ci		MTK_FUNCTION(7, "I2S5_DO")
61162306a36Sopenharmony_ci	),
61262306a36Sopenharmony_ci	MTK_PIN(
61362306a36Sopenharmony_ci		48, "GPIO48",
61462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 48),
61562306a36Sopenharmony_ci		DRV_GRP4,
61662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO48"),
61762306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL5")
61862306a36Sopenharmony_ci	),
61962306a36Sopenharmony_ci	MTK_PIN(
62062306a36Sopenharmony_ci		49, "GPIO49",
62162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 49),
62262306a36Sopenharmony_ci		DRV_GRP4,
62362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO49"),
62462306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA5")
62562306a36Sopenharmony_ci	),
62662306a36Sopenharmony_ci	MTK_PIN(
62762306a36Sopenharmony_ci		50, "GPIO50",
62862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 50),
62962306a36Sopenharmony_ci		DRV_GRP4,
63062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO50"),
63162306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL3")
63262306a36Sopenharmony_ci	),
63362306a36Sopenharmony_ci	MTK_PIN(
63462306a36Sopenharmony_ci		51, "GPIO51",
63562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 51),
63662306a36Sopenharmony_ci		DRV_GRP4,
63762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO51"),
63862306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA3")
63962306a36Sopenharmony_ci	),
64062306a36Sopenharmony_ci	MTK_PIN(
64162306a36Sopenharmony_ci		52, "GPIO52",
64262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 52),
64362306a36Sopenharmony_ci		DRV_GRP4,
64462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO52"),
64562306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_ANT2")
64662306a36Sopenharmony_ci	),
64762306a36Sopenharmony_ci	MTK_PIN(
64862306a36Sopenharmony_ci		53, "GPIO53",
64962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 53),
65062306a36Sopenharmony_ci		DRV_GRP4,
65162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO53"),
65262306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_ANT0")
65362306a36Sopenharmony_ci	),
65462306a36Sopenharmony_ci	MTK_PIN(
65562306a36Sopenharmony_ci		54, "GPIO54",
65662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 54),
65762306a36Sopenharmony_ci		DRV_GRP4,
65862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO54"),
65962306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_OLAT1")
66062306a36Sopenharmony_ci	),
66162306a36Sopenharmony_ci	MTK_PIN(
66262306a36Sopenharmony_ci		55, "GPIO55",
66362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 55),
66462306a36Sopenharmony_ci		DRV_GRP4,
66562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO55"),
66662306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS8")
66762306a36Sopenharmony_ci	),
66862306a36Sopenharmony_ci	MTK_PIN(
66962306a36Sopenharmony_ci		56, "GPIO56",
67062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 56),
67162306a36Sopenharmony_ci		DRV_GRP4,
67262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO56"),
67362306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS9"),
67462306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCL_6306")
67562306a36Sopenharmony_ci	),
67662306a36Sopenharmony_ci	MTK_PIN(
67762306a36Sopenharmony_ci		57, "GPIO57",
67862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 57),
67962306a36Sopenharmony_ci		DRV_GRP4,
68062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO57"),
68162306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS10"),
68262306a36Sopenharmony_ci		MTK_FUNCTION(2, "SDA_6306")
68362306a36Sopenharmony_ci	),
68462306a36Sopenharmony_ci	MTK_PIN(
68562306a36Sopenharmony_ci		58, "GPIO58",
68662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 58),
68762306a36Sopenharmony_ci		DRV_GRP4,
68862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO58"),
68962306a36Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D2"),
69062306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPM_BSI_D2"),
69162306a36Sopenharmony_ci		MTK_FUNCTION(3, "PWM_B")
69262306a36Sopenharmony_ci	),
69362306a36Sopenharmony_ci	MTK_PIN(
69462306a36Sopenharmony_ci		59, "GPIO59",
69562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 59),
69662306a36Sopenharmony_ci		DRV_GRP4,
69762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO59"),
69862306a36Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D1"),
69962306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPM_BSI_D1")
70062306a36Sopenharmony_ci	),
70162306a36Sopenharmony_ci	MTK_PIN(
70262306a36Sopenharmony_ci		60, "GPIO60",
70362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 60),
70462306a36Sopenharmony_ci		DRV_GRP4,
70562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO60"),
70662306a36Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_D0"),
70762306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPM_BSI_D0")
70862306a36Sopenharmony_ci	),
70962306a36Sopenharmony_ci	MTK_PIN(
71062306a36Sopenharmony_ci		61, "GPIO61",
71162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 61),
71262306a36Sopenharmony_ci		DRV_GRP4,
71362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO61"),
71462306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI1_SDATA")
71562306a36Sopenharmony_ci	),
71662306a36Sopenharmony_ci	MTK_PIN(
71762306a36Sopenharmony_ci		62, "GPIO62",
71862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 62),
71962306a36Sopenharmony_ci		DRV_GRP4,
72062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO62"),
72162306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI1_SCLK")
72262306a36Sopenharmony_ci	),
72362306a36Sopenharmony_ci	MTK_PIN(
72462306a36Sopenharmony_ci		63, "GPIO63",
72562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 63),
72662306a36Sopenharmony_ci		DRV_GRP4,
72762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO63"),
72862306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI0_SDATA")
72962306a36Sopenharmony_ci	),
73062306a36Sopenharmony_ci	MTK_PIN(
73162306a36Sopenharmony_ci		64, "GPIO64",
73262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 64),
73362306a36Sopenharmony_ci		DRV_GRP4,
73462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO64"),
73562306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI0_SCLK")
73662306a36Sopenharmony_ci	),
73762306a36Sopenharmony_ci	MTK_PIN(
73862306a36Sopenharmony_ci		65, "GPIO65",
73962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 65),
74062306a36Sopenharmony_ci		DRV_GRP4,
74162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO65"),
74262306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI3_SDATA"),
74362306a36Sopenharmony_ci		MTK_FUNCTION(2, "BPI_OLAT2")
74462306a36Sopenharmony_ci	),
74562306a36Sopenharmony_ci	MTK_PIN(
74662306a36Sopenharmony_ci		66, "GPIO66",
74762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 66),
74862306a36Sopenharmony_ci		DRV_GRP4,
74962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO66"),
75062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI3_SCLK"),
75162306a36Sopenharmony_ci		MTK_FUNCTION(2, "BPI_OLAT3")
75262306a36Sopenharmony_ci	),
75362306a36Sopenharmony_ci	MTK_PIN(
75462306a36Sopenharmony_ci		67, "GPIO67",
75562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 67),
75662306a36Sopenharmony_ci		DRV_GRP4,
75762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO67"),
75862306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI2_SDATA")
75962306a36Sopenharmony_ci	),
76062306a36Sopenharmony_ci	MTK_PIN(
76162306a36Sopenharmony_ci		68, "GPIO68",
76262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 68),
76362306a36Sopenharmony_ci		DRV_GRP4,
76462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO68"),
76562306a36Sopenharmony_ci		MTK_FUNCTION(1, "MIPI2_SCLK")
76662306a36Sopenharmony_ci	),
76762306a36Sopenharmony_ci	MTK_PIN(
76862306a36Sopenharmony_ci		69, "GPIO69",
76962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 69),
77062306a36Sopenharmony_ci		DRV_GRP4,
77162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO69"),
77262306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS7")
77362306a36Sopenharmony_ci	),
77462306a36Sopenharmony_ci	MTK_PIN(
77562306a36Sopenharmony_ci		70, "GPIO70",
77662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 70),
77762306a36Sopenharmony_ci		DRV_GRP4,
77862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO70"),
77962306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS6")
78062306a36Sopenharmony_ci	),
78162306a36Sopenharmony_ci	MTK_PIN(
78262306a36Sopenharmony_ci		71, "GPIO71",
78362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 71),
78462306a36Sopenharmony_ci		DRV_GRP4,
78562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO71"),
78662306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS5")
78762306a36Sopenharmony_ci	),
78862306a36Sopenharmony_ci	MTK_PIN(
78962306a36Sopenharmony_ci		72, "GPIO72",
79062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 72),
79162306a36Sopenharmony_ci		DRV_GRP4,
79262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO72"),
79362306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS4")
79462306a36Sopenharmony_ci	),
79562306a36Sopenharmony_ci	MTK_PIN(
79662306a36Sopenharmony_ci		73, "GPIO73",
79762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 73),
79862306a36Sopenharmony_ci		DRV_GRP4,
79962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO73"),
80062306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS3")
80162306a36Sopenharmony_ci	),
80262306a36Sopenharmony_ci	MTK_PIN(
80362306a36Sopenharmony_ci		74, "GPIO74",
80462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 74),
80562306a36Sopenharmony_ci		DRV_GRP4,
80662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO74"),
80762306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS2")
80862306a36Sopenharmony_ci	),
80962306a36Sopenharmony_ci	MTK_PIN(
81062306a36Sopenharmony_ci		75, "GPIO75",
81162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 75),
81262306a36Sopenharmony_ci		DRV_GRP4,
81362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO75"),
81462306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS1")
81562306a36Sopenharmony_ci	),
81662306a36Sopenharmony_ci	MTK_PIN(
81762306a36Sopenharmony_ci		76, "GPIO76",
81862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 76),
81962306a36Sopenharmony_ci		DRV_GRP4,
82062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO76"),
82162306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_BUS0")
82262306a36Sopenharmony_ci	),
82362306a36Sopenharmony_ci	MTK_PIN(
82462306a36Sopenharmony_ci		77, "GPIO77",
82562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 77),
82662306a36Sopenharmony_ci		DRV_GRP4,
82762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO77"),
82862306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_ANT1")
82962306a36Sopenharmony_ci	),
83062306a36Sopenharmony_ci	MTK_PIN(
83162306a36Sopenharmony_ci		78, "GPIO78",
83262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 78),
83362306a36Sopenharmony_ci		DRV_GRP4,
83462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO78"),
83562306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_OLAT0")
83662306a36Sopenharmony_ci	),
83762306a36Sopenharmony_ci	MTK_PIN(
83862306a36Sopenharmony_ci		79, "GPIO79",
83962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 79),
84062306a36Sopenharmony_ci		DRV_GRP4,
84162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO79"),
84262306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_PA_VM1"),
84362306a36Sopenharmony_ci		MTK_FUNCTION(2, "MIPI4_SDATA")
84462306a36Sopenharmony_ci	),
84562306a36Sopenharmony_ci	MTK_PIN(
84662306a36Sopenharmony_ci		80, "GPIO80",
84762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 80),
84862306a36Sopenharmony_ci		DRV_GRP4,
84962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO80"),
85062306a36Sopenharmony_ci		MTK_FUNCTION(1, "BPI_PA_VM0"),
85162306a36Sopenharmony_ci		MTK_FUNCTION(2, "MIPI4_SCLK")
85262306a36Sopenharmony_ci	),
85362306a36Sopenharmony_ci	MTK_PIN(
85462306a36Sopenharmony_ci		81, "GPIO81",
85562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 81),
85662306a36Sopenharmony_ci		DRV_GRP4,
85762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO81"),
85862306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA1")
85962306a36Sopenharmony_ci	),
86062306a36Sopenharmony_ci	MTK_PIN(
86162306a36Sopenharmony_ci		82, "GPIO82",
86262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 82),
86362306a36Sopenharmony_ci		DRV_GRP4,
86462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO82"),
86562306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA0")
86662306a36Sopenharmony_ci	),
86762306a36Sopenharmony_ci	MTK_PIN(
86862306a36Sopenharmony_ci		83, "GPIO83",
86962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 83),
87062306a36Sopenharmony_ci		DRV_GRP4,
87162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO83"),
87262306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL0")
87362306a36Sopenharmony_ci	),
87462306a36Sopenharmony_ci	MTK_PIN(
87562306a36Sopenharmony_ci		84, "GPIO84",
87662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 84),
87762306a36Sopenharmony_ci		DRV_GRP4,
87862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO84"),
87962306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL1")
88062306a36Sopenharmony_ci	),
88162306a36Sopenharmony_ci	MTK_PIN(
88262306a36Sopenharmony_ci		85, "GPIO85",
88362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 85),
88462306a36Sopenharmony_ci		DRV_GRP4,
88562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO85"),
88662306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_MI"),
88762306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI0_MI"),
88862306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM3"),
88962306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S1_BCK"),
89062306a36Sopenharmony_ci		MTK_FUNCTION(5, "MFG_DFD_JTAG_TDO"),
89162306a36Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TDO"),
89262306a36Sopenharmony_ci		MTK_FUNCTION(7, "JTDO_SEL1")
89362306a36Sopenharmony_ci	),
89462306a36Sopenharmony_ci	MTK_PIN(
89562306a36Sopenharmony_ci		86, "GPIO86",
89662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 86),
89762306a36Sopenharmony_ci		DRV_GRP4,
89862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO86"),
89962306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_CSB"),
90062306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI0_CS"),
90162306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM0"),
90262306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S1_LRCK"),
90362306a36Sopenharmony_ci		MTK_FUNCTION(5, "MFG_DFD_JTAG_TMS"),
90462306a36Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TMS"),
90562306a36Sopenharmony_ci		MTK_FUNCTION(7, "JTMS_SEL1")
90662306a36Sopenharmony_ci	),
90762306a36Sopenharmony_ci	MTK_PIN(
90862306a36Sopenharmony_ci		87, "GPIO87",
90962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 87),
91062306a36Sopenharmony_ci		DRV_GRP4,
91162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO87"),
91262306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_MO"),
91362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI0_MO"),
91462306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA1"),
91562306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S1_DO"),
91662306a36Sopenharmony_ci		MTK_FUNCTION(5, "MFG_DFD_JTAG_TDI"),
91762306a36Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TDI"),
91862306a36Sopenharmony_ci		MTK_FUNCTION(7, "JTDI_SEL1")
91962306a36Sopenharmony_ci	),
92062306a36Sopenharmony_ci	MTK_PIN(
92162306a36Sopenharmony_ci		88, "GPIO88",
92262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 88),
92362306a36Sopenharmony_ci		DRV_GRP4,
92462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO88"),
92562306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI0_CLK"),
92662306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI0_CK"),
92762306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL1"),
92862306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S1_MCK"),
92962306a36Sopenharmony_ci		MTK_FUNCTION(5, "MFG_DFD_JTAG_TCK"),
93062306a36Sopenharmony_ci		MTK_FUNCTION(6, "DFD_TCK_XI"),
93162306a36Sopenharmony_ci		MTK_FUNCTION(7, "JTCK_SEL1")
93262306a36Sopenharmony_ci	),
93362306a36Sopenharmony_ci	MTK_PIN(
93462306a36Sopenharmony_ci		89, "GPIO89",
93562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 89),
93662306a36Sopenharmony_ci		DRV_GRP4,
93762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO89"),
93862306a36Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENAI0"),
93962306a36Sopenharmony_ci		MTK_FUNCTION(2, "PWM_C"),
94062306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S5_BCK"),
94162306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL6"),
94262306a36Sopenharmony_ci		MTK_FUNCTION(5, "SDA8"),
94362306a36Sopenharmony_ci		MTK_FUNCTION(6, "CMVREF0"),
94462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A21")
94562306a36Sopenharmony_ci	),
94662306a36Sopenharmony_ci	MTK_PIN(
94762306a36Sopenharmony_ci		90, "GPIO90",
94862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 90),
94962306a36Sopenharmony_ci		DRV_GRP4,
95062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO90"),
95162306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_A"),
95262306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMMCLK2"),
95362306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S5_LRCK"),
95462306a36Sopenharmony_ci		MTK_FUNCTION(4, "SCP_VREQ_VAO"),
95562306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCL8"),
95662306a36Sopenharmony_ci		MTK_FUNCTION(6, "PTA_RXD"),
95762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A22")
95862306a36Sopenharmony_ci	),
95962306a36Sopenharmony_ci	MTK_PIN(
96062306a36Sopenharmony_ci		91, "GPIO91",
96162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 91),
96262306a36Sopenharmony_ci		DRV_GRP4,
96362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO91"),
96462306a36Sopenharmony_ci		MTK_FUNCTION(1, "KPROW1"),
96562306a36Sopenharmony_ci		MTK_FUNCTION(2, "PWM_B"),
96662306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S5_DO"),
96762306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL7"),
96862306a36Sopenharmony_ci		MTK_FUNCTION(5, "CMMCLK3"),
96962306a36Sopenharmony_ci		MTK_FUNCTION(6, "PTA_TXD")
97062306a36Sopenharmony_ci	),
97162306a36Sopenharmony_ci	MTK_PIN(
97262306a36Sopenharmony_ci		92, "GPIO92",
97362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 92),
97462306a36Sopenharmony_ci		DRV_GRP4,
97562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO92"),
97662306a36Sopenharmony_ci		MTK_FUNCTION(1, "KPROW0")
97762306a36Sopenharmony_ci	),
97862306a36Sopenharmony_ci	MTK_PIN(
97962306a36Sopenharmony_ci		93, "GPIO93",
98062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 93),
98162306a36Sopenharmony_ci		DRV_GRP4,
98262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO93"),
98362306a36Sopenharmony_ci		MTK_FUNCTION(1, "KPCOL0"),
98462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B27")
98562306a36Sopenharmony_ci	),
98662306a36Sopenharmony_ci	MTK_PIN(
98762306a36Sopenharmony_ci		94, "GPIO94",
98862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 94),
98962306a36Sopenharmony_ci		DRV_GRP4,
99062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO94"),
99162306a36Sopenharmony_ci		MTK_FUNCTION(1, "KPCOL1"),
99262306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S2_DI2"),
99362306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S5_MCK"),
99462306a36Sopenharmony_ci		MTK_FUNCTION(4, "CMMCLK2"),
99562306a36Sopenharmony_ci		MTK_FUNCTION(5, "SCP_SPI2_MI"),
99662306a36Sopenharmony_ci		MTK_FUNCTION(6, "SRCLKENAI1"),
99762306a36Sopenharmony_ci		MTK_FUNCTION(7, "SPI2_MI")
99862306a36Sopenharmony_ci	),
99962306a36Sopenharmony_ci	MTK_PIN(
100062306a36Sopenharmony_ci		95, "GPIO95",
100162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 95),
100262306a36Sopenharmony_ci		DRV_GRP4,
100362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO95"),
100462306a36Sopenharmony_ci		MTK_FUNCTION(1, "URXD0"),
100562306a36Sopenharmony_ci		MTK_FUNCTION(2, "UTXD0"),
100662306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD_URXD0"),
100762306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_URXD1"),
100862306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_URXD_AO"),
100962306a36Sopenharmony_ci		MTK_FUNCTION(6, "CCU_URXD_AO")
101062306a36Sopenharmony_ci	),
101162306a36Sopenharmony_ci	MTK_PIN(
101262306a36Sopenharmony_ci		96, "GPIO96",
101362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 96),
101462306a36Sopenharmony_ci		DRV_GRP4,
101562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO96"),
101662306a36Sopenharmony_ci		MTK_FUNCTION(1, "UTXD0"),
101762306a36Sopenharmony_ci		MTK_FUNCTION(2, "URXD0"),
101862306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD_UTXD0"),
101962306a36Sopenharmony_ci		MTK_FUNCTION(4, "MD_UTXD1"),
102062306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_UTXD_AO"),
102162306a36Sopenharmony_ci		MTK_FUNCTION(6, "CCU_UTXD_AO"),
102262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B2")
102362306a36Sopenharmony_ci	),
102462306a36Sopenharmony_ci	MTK_PIN(
102562306a36Sopenharmony_ci		97, "GPIO97",
102662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 97),
102762306a36Sopenharmony_ci		DRV_GRP4,
102862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO97"),
102962306a36Sopenharmony_ci		MTK_FUNCTION(1, "UCTS0"),
103062306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S2_MCK"),
103162306a36Sopenharmony_ci		MTK_FUNCTION(3, "IDDIG"),
103262306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_TDO"),
103362306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDO"),
103462306a36Sopenharmony_ci		MTK_FUNCTION(6, "IO_JTAG_TDO"),
103562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B3")
103662306a36Sopenharmony_ci	),
103762306a36Sopenharmony_ci	MTK_PIN(
103862306a36Sopenharmony_ci		98, "GPIO98",
103962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 98),
104062306a36Sopenharmony_ci		DRV_GRP4,
104162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO98"),
104262306a36Sopenharmony_ci		MTK_FUNCTION(1, "URTS0"),
104362306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S2_BCK"),
104462306a36Sopenharmony_ci		MTK_FUNCTION(3, "USB_DRVVBUS"),
104562306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_TMS"),
104662306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TMS"),
104762306a36Sopenharmony_ci		MTK_FUNCTION(6, "IO_JTAG_TMS"),
104862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B4")
104962306a36Sopenharmony_ci	),
105062306a36Sopenharmony_ci	MTK_PIN(
105162306a36Sopenharmony_ci		99, "GPIO99",
105262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 99),
105362306a36Sopenharmony_ci		DRV_GRP4,
105462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO99"),
105562306a36Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK0"),
105662306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TMSC"),
105762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B28")
105862306a36Sopenharmony_ci	),
105962306a36Sopenharmony_ci	MTK_PIN(
106062306a36Sopenharmony_ci		100, "GPIO100",
106162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 100),
106262306a36Sopenharmony_ci		DRV_GRP4,
106362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO100"),
106462306a36Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK1"),
106562306a36Sopenharmony_ci		MTK_FUNCTION(2, "PWM_C"),
106662306a36Sopenharmony_ci		MTK_FUNCTION(3, "MD_INT1_C2K_UIM0_HOT_PLUG"),
106762306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_AICE_TCKC"),
106862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B29")
106962306a36Sopenharmony_ci	),
107062306a36Sopenharmony_ci	MTK_PIN(
107162306a36Sopenharmony_ci		101, "GPIO101",
107262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 101),
107362306a36Sopenharmony_ci		DRV_GRP4,
107462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO101"),
107562306a36Sopenharmony_ci		MTK_FUNCTION(1, "CLKM2"),
107662306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S2_LRCK"),
107762306a36Sopenharmony_ci		MTK_FUNCTION(3, "CMVREF1"),
107862306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_TCK"),
107962306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TCK"),
108062306a36Sopenharmony_ci		MTK_FUNCTION(6, "IO_JTAG_TCK")
108162306a36Sopenharmony_ci	),
108262306a36Sopenharmony_ci	MTK_PIN(
108362306a36Sopenharmony_ci		102, "GPIO102",
108462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 102),
108562306a36Sopenharmony_ci		DRV_GRP4,
108662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO102"),
108762306a36Sopenharmony_ci		MTK_FUNCTION(1, "CLKM1"),
108862306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S2_DI"),
108962306a36Sopenharmony_ci		MTK_FUNCTION(3, "DVFSRC_EXT_REQ"),
109062306a36Sopenharmony_ci		MTK_FUNCTION(4, "CONN_MCU_TDI"),
109162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_JTAG_TDI"),
109262306a36Sopenharmony_ci		MTK_FUNCTION(6, "IO_JTAG_TDI"),
109362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B8")
109462306a36Sopenharmony_ci	),
109562306a36Sopenharmony_ci	MTK_PIN(
109662306a36Sopenharmony_ci		103, "GPIO103",
109762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 103),
109862306a36Sopenharmony_ci		DRV_GRP4,
109962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO103"),
110062306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL2")
110162306a36Sopenharmony_ci	),
110262306a36Sopenharmony_ci	MTK_PIN(
110362306a36Sopenharmony_ci		104, "GPIO104",
110462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 104),
110562306a36Sopenharmony_ci		DRV_GRP4,
110662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO104"),
110762306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA2")
110862306a36Sopenharmony_ci	),
110962306a36Sopenharmony_ci	MTK_PIN(
111062306a36Sopenharmony_ci		105, "GPIO105",
111162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 105),
111262306a36Sopenharmony_ci		DRV_GRP4,
111362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO105"),
111462306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL4")
111562306a36Sopenharmony_ci	),
111662306a36Sopenharmony_ci	MTK_PIN(
111762306a36Sopenharmony_ci		106, "GPIO106",
111862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 106),
111962306a36Sopenharmony_ci		DRV_GRP4,
112062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO106"),
112162306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA4")
112262306a36Sopenharmony_ci	),
112362306a36Sopenharmony_ci	MTK_PIN(
112462306a36Sopenharmony_ci		107, "GPIO107",
112562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 107),
112662306a36Sopenharmony_ci		DRV_GRP4,
112762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO107"),
112862306a36Sopenharmony_ci		MTK_FUNCTION(1, "DMIC_CLK"),
112962306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL0"),
113062306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM0"),
113162306a36Sopenharmony_ci		MTK_FUNCTION(4, "SDA7"),
113262306a36Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
113362306a36Sopenharmony_ci		MTK_FUNCTION(6, "PWM_A"),
113462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B12")
113562306a36Sopenharmony_ci	),
113662306a36Sopenharmony_ci	MTK_PIN(
113762306a36Sopenharmony_ci		108, "GPIO108",
113862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 108),
113962306a36Sopenharmony_ci		DRV_GRP4,
114062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO108"),
114162306a36Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK2"),
114262306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL1"),
114362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM1"),
114462306a36Sopenharmony_ci		MTK_FUNCTION(4, "SCL8"),
114562306a36Sopenharmony_ci		MTK_FUNCTION(5, "DAP_MD32_SWD"),
114662306a36Sopenharmony_ci		MTK_FUNCTION(6, "PWM_B"),
114762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B13")
114862306a36Sopenharmony_ci	),
114962306a36Sopenharmony_ci	MTK_PIN(
115062306a36Sopenharmony_ci		109, "GPIO109",
115162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 109),
115262306a36Sopenharmony_ci		DRV_GRP4,
115362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO109"),
115462306a36Sopenharmony_ci		MTK_FUNCTION(1, "DMIC_DAT"),
115562306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL2"),
115662306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM2"),
115762306a36Sopenharmony_ci		MTK_FUNCTION(4, "SDA8"),
115862306a36Sopenharmony_ci		MTK_FUNCTION(5, "DAP_MD32_SWCK"),
115962306a36Sopenharmony_ci		MTK_FUNCTION(6, "PWM_C"),
116062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B14")
116162306a36Sopenharmony_ci	),
116262306a36Sopenharmony_ci	MTK_PIN(
116362306a36Sopenharmony_ci		110, "GPIO110",
116462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 110),
116562306a36Sopenharmony_ci		DRV_GRP4,
116662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO110"),
116762306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCL7"),
116862306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL0"),
116962306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_URXD1_AO"),
117062306a36Sopenharmony_ci		MTK_FUNCTION(4, "USB_DRVVBUS"),
117162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SRCLKENAI1"),
117262306a36Sopenharmony_ci		MTK_FUNCTION(6, "KPCOL2"),
117362306a36Sopenharmony_ci		MTK_FUNCTION(7, "URXD1")
117462306a36Sopenharmony_ci	),
117562306a36Sopenharmony_ci	MTK_PIN(
117662306a36Sopenharmony_ci		111, "GPIO111",
117762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 111),
117862306a36Sopenharmony_ci		DRV_GRP4,
117962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO111"),
118062306a36Sopenharmony_ci		MTK_FUNCTION(1, "CMMCLK3"),
118162306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL1"),
118262306a36Sopenharmony_ci		MTK_FUNCTION(3, "SRCLKENAI0"),
118362306a36Sopenharmony_ci		MTK_FUNCTION(4, "SCP_VREQ_VAO"),
118462306a36Sopenharmony_ci		MTK_FUNCTION(5, "MD_INT2_C2K_UIM1_HOT_PLUG"),
118562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DVFSRC_EXT_REQ")
118662306a36Sopenharmony_ci	),
118762306a36Sopenharmony_ci	MTK_PIN(
118862306a36Sopenharmony_ci		112, "GPIO112",
118962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 112),
119062306a36Sopenharmony_ci		DRV_GRP4,
119162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO112"),
119262306a36Sopenharmony_ci		MTK_FUNCTION(1, "SDA7"),
119362306a36Sopenharmony_ci		MTK_FUNCTION(2, "ANT_SEL2"),
119462306a36Sopenharmony_ci		MTK_FUNCTION(3, "TP_UTXD1_AO"),
119562306a36Sopenharmony_ci		MTK_FUNCTION(4, "IDDIG"),
119662306a36Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
119762306a36Sopenharmony_ci		MTK_FUNCTION(6, "KPROW2"),
119862306a36Sopenharmony_ci		MTK_FUNCTION(7, "UTXD1")
119962306a36Sopenharmony_ci	),
120062306a36Sopenharmony_ci	MTK_PIN(
120162306a36Sopenharmony_ci		113, "GPIO113",
120262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 113),
120362306a36Sopenharmony_ci		DRV_GRP4,
120462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO113"),
120562306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_TOP_CLK"),
120662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL6"),
120762306a36Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_CLK0"),
120862306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_UCTS1_AO")
120962306a36Sopenharmony_ci	),
121062306a36Sopenharmony_ci	MTK_PIN(
121162306a36Sopenharmony_ci		114, "GPIO114",
121262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 114),
121362306a36Sopenharmony_ci		DRV_GRP4,
121462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO114"),
121562306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_TOP_DATA"),
121662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA6"),
121762306a36Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_ST0"),
121862306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_URTS1_AO")
121962306a36Sopenharmony_ci	),
122062306a36Sopenharmony_ci	MTK_PIN(
122162306a36Sopenharmony_ci		115, "GPIO115",
122262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 115),
122362306a36Sopenharmony_ci		DRV_GRP4,
122462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO115"),
122562306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_BT_CLK"),
122662306a36Sopenharmony_ci		MTK_FUNCTION(2, "UTXD1"),
122762306a36Sopenharmony_ci		MTK_FUNCTION(3, "PTA_TXD"),
122862306a36Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_CLK1"),
122962306a36Sopenharmony_ci		MTK_FUNCTION(5, "DAP_MD32_SWD"),
123062306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_UTXD1_AO")
123162306a36Sopenharmony_ci	),
123262306a36Sopenharmony_ci	MTK_PIN(
123362306a36Sopenharmony_ci		116, "GPIO116",
123462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 116),
123562306a36Sopenharmony_ci		DRV_GRP4,
123662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO116"),
123762306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_BT_DATA"),
123862306a36Sopenharmony_ci		MTK_FUNCTION(2, "IPU_JTAG_TRST"),
123962306a36Sopenharmony_ci		MTK_FUNCTION(4, "AUXIF_ST1"),
124062306a36Sopenharmony_ci		MTK_FUNCTION(5, "DAP_MD32_SWCK"),
124162306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_URXD2_AO"),
124262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A0")
124362306a36Sopenharmony_ci	),
124462306a36Sopenharmony_ci	MTK_PIN(
124562306a36Sopenharmony_ci		117, "GPIO117",
124662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 117),
124762306a36Sopenharmony_ci		DRV_GRP4,
124862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO117"),
124962306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_HB0"),
125062306a36Sopenharmony_ci		MTK_FUNCTION(2, "IPU_JTAG_TDO"),
125162306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_UTXD2_AO"),
125262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A4")
125362306a36Sopenharmony_ci	),
125462306a36Sopenharmony_ci	MTK_PIN(
125562306a36Sopenharmony_ci		118, "GPIO118",
125662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 118),
125762306a36Sopenharmony_ci		DRV_GRP4,
125862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO118"),
125962306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_HB1"),
126062306a36Sopenharmony_ci		MTK_FUNCTION(2, "IPU_JTAG_TDI"),
126162306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_URXD_AO"),
126262306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_UCTS2_AO"),
126362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A5")
126462306a36Sopenharmony_ci	),
126562306a36Sopenharmony_ci	MTK_PIN(
126662306a36Sopenharmony_ci		119, "GPIO119",
126762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 119),
126862306a36Sopenharmony_ci		DRV_GRP4,
126962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO119"),
127062306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WF_HB2"),
127162306a36Sopenharmony_ci		MTK_FUNCTION(2, "IPU_JTAG_TCK"),
127262306a36Sopenharmony_ci		MTK_FUNCTION(5, "SSPM_UTXD_AO"),
127362306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_URTS2_AO")
127462306a36Sopenharmony_ci	),
127562306a36Sopenharmony_ci	MTK_PIN(
127662306a36Sopenharmony_ci		120, "GPIO120",
127762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 120),
127862306a36Sopenharmony_ci		DRV_GRP4,
127962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO120"),
128062306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_WB_PTA"),
128162306a36Sopenharmony_ci		MTK_FUNCTION(2, "IPU_JTAG_TMS"),
128262306a36Sopenharmony_ci		MTK_FUNCTION(5, "CCU_URXD_AO")
128362306a36Sopenharmony_ci	),
128462306a36Sopenharmony_ci	MTK_PIN(
128562306a36Sopenharmony_ci		121, "GPIO121",
128662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 121),
128762306a36Sopenharmony_ci		DRV_GRP4,
128862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO121"),
128962306a36Sopenharmony_ci		MTK_FUNCTION(1, "CONN_HRST_B"),
129062306a36Sopenharmony_ci		MTK_FUNCTION(2, "URXD1"),
129162306a36Sopenharmony_ci		MTK_FUNCTION(3, "PTA_RXD"),
129262306a36Sopenharmony_ci		MTK_FUNCTION(5, "CCU_UTXD_AO"),
129362306a36Sopenharmony_ci		MTK_FUNCTION(6, "TP_URXD1_AO")
129462306a36Sopenharmony_ci	),
129562306a36Sopenharmony_ci	MTK_PIN(
129662306a36Sopenharmony_ci		122, "GPIO122",
129762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 122),
129862306a36Sopenharmony_ci		DRV_GRP4,
129962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO122"),
130062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_CMD"),
130162306a36Sopenharmony_ci		MTK_FUNCTION(2, "SSPM_URXD2_AO"),
130262306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL1"),
130362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A12")
130462306a36Sopenharmony_ci	),
130562306a36Sopenharmony_ci	MTK_PIN(
130662306a36Sopenharmony_ci		123, "GPIO123",
130762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 123),
130862306a36Sopenharmony_ci		DRV_GRP4,
130962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO123"),
131062306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT0"),
131162306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL0"),
131262306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A13")
131362306a36Sopenharmony_ci	),
131462306a36Sopenharmony_ci	MTK_PIN(
131562306a36Sopenharmony_ci		124, "GPIO124",
131662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 124),
131762306a36Sopenharmony_ci		DRV_GRP4,
131862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO124"),
131962306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_CLK"),
132062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A14")
132162306a36Sopenharmony_ci	),
132262306a36Sopenharmony_ci	MTK_PIN(
132362306a36Sopenharmony_ci		125, "GPIO125",
132462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 125),
132562306a36Sopenharmony_ci		DRV_GRP4,
132662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO125"),
132762306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT2"),
132862306a36Sopenharmony_ci		MTK_FUNCTION(3, "MRG_CLK"),
132962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A15")
133062306a36Sopenharmony_ci	),
133162306a36Sopenharmony_ci	MTK_PIN(
133262306a36Sopenharmony_ci		126, "GPIO126",
133362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 126),
133462306a36Sopenharmony_ci		DRV_GRP4,
133562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO126"),
133662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT4"),
133762306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL5"),
133862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_MPHY_SCL"),
133962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A16")
134062306a36Sopenharmony_ci	),
134162306a36Sopenharmony_ci	MTK_PIN(
134262306a36Sopenharmony_ci		127, "GPIO127",
134362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 127),
134462306a36Sopenharmony_ci		DRV_GRP4,
134562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO127"),
134662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT6"),
134762306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL4"),
134862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_MPHY_SDA"),
134962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A17")
135062306a36Sopenharmony_ci	),
135162306a36Sopenharmony_ci	MTK_PIN(
135262306a36Sopenharmony_ci		128, "GPIO128",
135362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 128),
135462306a36Sopenharmony_ci		DRV_GRP4,
135562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO128"),
135662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT1"),
135762306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL2"),
135862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_UNIPRO_SDA"),
135962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A18")
136062306a36Sopenharmony_ci	),
136162306a36Sopenharmony_ci	MTK_PIN(
136262306a36Sopenharmony_ci		129, "GPIO129",
136362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 129),
136462306a36Sopenharmony_ci		DRV_GRP4,
136562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO129"),
136662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT5"),
136762306a36Sopenharmony_ci		MTK_FUNCTION(3, "ANT_SEL3"),
136862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_UNIPRO_SCL"),
136962306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A23")
137062306a36Sopenharmony_ci	),
137162306a36Sopenharmony_ci	MTK_PIN(
137262306a36Sopenharmony_ci		130, "GPIO130",
137362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 130),
137462306a36Sopenharmony_ci		DRV_GRP4,
137562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO130"),
137662306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT7"),
137762306a36Sopenharmony_ci		MTK_FUNCTION(3, "MRG_DO"),
137862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A24")
137962306a36Sopenharmony_ci	),
138062306a36Sopenharmony_ci	MTK_PIN(
138162306a36Sopenharmony_ci		131, "GPIO131",
138262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 131),
138362306a36Sopenharmony_ci		DRV_GRP4,
138462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO131"),
138562306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DSL"),
138662306a36Sopenharmony_ci		MTK_FUNCTION(3, "MRG_SYNC"),
138762306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A25")
138862306a36Sopenharmony_ci	),
138962306a36Sopenharmony_ci	MTK_PIN(
139062306a36Sopenharmony_ci		132, "GPIO132",
139162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 132),
139262306a36Sopenharmony_ci		DRV_GRP4,
139362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO132"),
139462306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_DAT3"),
139562306a36Sopenharmony_ci		MTK_FUNCTION(3, "MRG_DI"),
139662306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A26")
139762306a36Sopenharmony_ci	),
139862306a36Sopenharmony_ci	MTK_PIN(
139962306a36Sopenharmony_ci		133, "GPIO133",
140062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 133),
140162306a36Sopenharmony_ci		DRV_GRP4,
140262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO133"),
140362306a36Sopenharmony_ci		MTK_FUNCTION(1, "MSDC0_RSTB"),
140462306a36Sopenharmony_ci		MTK_FUNCTION(3, "AGPS_SYNC"),
140562306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_A27")
140662306a36Sopenharmony_ci	),
140762306a36Sopenharmony_ci	MTK_PIN(
140862306a36Sopenharmony_ci		134, "GPIO134",
140962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 134),
141062306a36Sopenharmony_ci		DRV_GRP4,
141162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO134"),
141262306a36Sopenharmony_ci		MTK_FUNCTION(1, "RTC32K_CK")
141362306a36Sopenharmony_ci	),
141462306a36Sopenharmony_ci	MTK_PIN(
141562306a36Sopenharmony_ci		135, "GPIO135",
141662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 135),
141762306a36Sopenharmony_ci		DRV_GRP4,
141862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO135"),
141962306a36Sopenharmony_ci		MTK_FUNCTION(1, "WATCHDOG")
142062306a36Sopenharmony_ci	),
142162306a36Sopenharmony_ci	MTK_PIN(
142262306a36Sopenharmony_ci		136, "GPIO136",
142362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 136),
142462306a36Sopenharmony_ci		DRV_GRP4,
142562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO136"),
142662306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_CLK_MOSI"),
142762306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_CLK_MISO"),
142862306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_MCK"),
142962306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_UNIPRO_SCL")
143062306a36Sopenharmony_ci	),
143162306a36Sopenharmony_ci	MTK_PIN(
143262306a36Sopenharmony_ci		137, "GPIO137",
143362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 137),
143462306a36Sopenharmony_ci		DRV_GRP4,
143562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO137"),
143662306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_SYNC_MOSI"),
143762306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_SYNC_MISO"),
143862306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_BCK")
143962306a36Sopenharmony_ci	),
144062306a36Sopenharmony_ci	MTK_PIN(
144162306a36Sopenharmony_ci		138, "GPIO138",
144262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 138),
144362306a36Sopenharmony_ci		DRV_GRP4,
144462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO138"),
144562306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MOSI0"),
144662306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MISO0"),
144762306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_LRCK"),
144862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B24")
144962306a36Sopenharmony_ci	),
145062306a36Sopenharmony_ci	MTK_PIN(
145162306a36Sopenharmony_ci		139, "GPIO139",
145262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 139),
145362306a36Sopenharmony_ci		DRV_GRP4,
145462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO139"),
145562306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MOSI1"),
145662306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MISO1"),
145762306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S1_DO"),
145862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_MPHY_SDA")
145962306a36Sopenharmony_ci	),
146062306a36Sopenharmony_ci	MTK_PIN(
146162306a36Sopenharmony_ci		140, "GPIO140",
146262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 140),
146362306a36Sopenharmony_ci		DRV_GRP4,
146462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO140"),
146562306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_CLK_MISO"),
146662306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_CLK_MOSI"),
146762306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S0_MCK"),
146862306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_UNIPRO_SDA")
146962306a36Sopenharmony_ci	),
147062306a36Sopenharmony_ci	MTK_PIN(
147162306a36Sopenharmony_ci		141, "GPIO141",
147262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 141),
147362306a36Sopenharmony_ci		DRV_GRP4,
147462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO141"),
147562306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_SYNC_MISO"),
147662306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_SYNC_MOSI"),
147762306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S0_BCK")
147862306a36Sopenharmony_ci	),
147962306a36Sopenharmony_ci	MTK_PIN(
148062306a36Sopenharmony_ci		142, "GPIO142",
148162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 142),
148262306a36Sopenharmony_ci		DRV_GRP4,
148362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO142"),
148462306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MISO0"),
148562306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MOSI0"),
148662306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S0_LRCK"),
148762306a36Sopenharmony_ci		MTK_FUNCTION(4, "VOW_DAT_MISO"),
148862306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B25")
148962306a36Sopenharmony_ci	),
149062306a36Sopenharmony_ci	MTK_PIN(
149162306a36Sopenharmony_ci		143, "GPIO143",
149262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 143),
149362306a36Sopenharmony_ci		DRV_GRP4,
149462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO143"),
149562306a36Sopenharmony_ci		MTK_FUNCTION(1, "AUD_DAT_MISO1"),
149662306a36Sopenharmony_ci		MTK_FUNCTION(2, "AUD_DAT_MOSI1"),
149762306a36Sopenharmony_ci		MTK_FUNCTION(3, "I2S0_DI"),
149862306a36Sopenharmony_ci		MTK_FUNCTION(4, "VOW_CLK_MISO"),
149962306a36Sopenharmony_ci		MTK_FUNCTION(6, "UFS_MPHY_SCL"),
150062306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B26")
150162306a36Sopenharmony_ci	),
150262306a36Sopenharmony_ci	MTK_PIN(
150362306a36Sopenharmony_ci		144, "GPIO144",
150462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 144),
150562306a36Sopenharmony_ci		DRV_GRP4,
150662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO144"),
150762306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_MI"),
150862306a36Sopenharmony_ci		MTK_FUNCTION(2, "PWRAP_SPI0_MO")
150962306a36Sopenharmony_ci	),
151062306a36Sopenharmony_ci	MTK_PIN(
151162306a36Sopenharmony_ci		145, "GPIO145",
151262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 145),
151362306a36Sopenharmony_ci		DRV_GRP4,
151462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO145"),
151562306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_CSN")
151662306a36Sopenharmony_ci	),
151762306a36Sopenharmony_ci	MTK_PIN(
151862306a36Sopenharmony_ci		146, "GPIO146",
151962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 146),
152062306a36Sopenharmony_ci		DRV_GRP4,
152162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO146"),
152262306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_MO"),
152362306a36Sopenharmony_ci		MTK_FUNCTION(2, "PWRAP_SPI0_MI")
152462306a36Sopenharmony_ci	),
152562306a36Sopenharmony_ci	MTK_PIN(
152662306a36Sopenharmony_ci		147, "GPIO147",
152762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 147),
152862306a36Sopenharmony_ci		DRV_GRP4,
152962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO147"),
153062306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWRAP_SPI0_CK")
153162306a36Sopenharmony_ci	),
153262306a36Sopenharmony_ci	MTK_PIN(
153362306a36Sopenharmony_ci		148, "GPIO148",
153462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 148),
153562306a36Sopenharmony_ci		DRV_GRP4,
153662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO148"),
153762306a36Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENA0")
153862306a36Sopenharmony_ci	),
153962306a36Sopenharmony_ci	MTK_PIN(
154062306a36Sopenharmony_ci		149, "GPIO149",
154162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 149),
154262306a36Sopenharmony_ci		DRV_GRP4,
154362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO149"),
154462306a36Sopenharmony_ci		MTK_FUNCTION(1, "SRCLKENA1")
154562306a36Sopenharmony_ci	),
154662306a36Sopenharmony_ci	MTK_PIN(
154762306a36Sopenharmony_ci		150, "GPIO150",
154862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 150),
154962306a36Sopenharmony_ci		DRV_GRP4,
155062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO150"),
155162306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_A"),
155262306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMFLASH"),
155362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM0"),
155462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B30")
155562306a36Sopenharmony_ci	),
155662306a36Sopenharmony_ci	MTK_PIN(
155762306a36Sopenharmony_ci		151, "GPIO151",
155862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 151),
155962306a36Sopenharmony_ci		DRV_GRP4,
156062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO151"),
156162306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_B"),
156262306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMVREF0"),
156362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM1"),
156462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B20")
156562306a36Sopenharmony_ci	),
156662306a36Sopenharmony_ci	MTK_PIN(
156762306a36Sopenharmony_ci		152, "GPIO152",
156862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 152),
156962306a36Sopenharmony_ci		DRV_GRP4,
157062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO152"),
157162306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_C"),
157262306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMFLASH"),
157362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM2"),
157462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B21")
157562306a36Sopenharmony_ci	),
157662306a36Sopenharmony_ci	MTK_PIN(
157762306a36Sopenharmony_ci		153, "GPIO153",
157862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 153),
157962306a36Sopenharmony_ci		DRV_GRP4,
158062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO153"),
158162306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_A"),
158262306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMVREF0"),
158362306a36Sopenharmony_ci		MTK_FUNCTION(3, "CLKM3"),
158462306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B22")
158562306a36Sopenharmony_ci	),
158662306a36Sopenharmony_ci	MTK_PIN(
158762306a36Sopenharmony_ci		154, "GPIO154",
158862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 154),
158962306a36Sopenharmony_ci		DRV_GRP4,
159062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO154"),
159162306a36Sopenharmony_ci		MTK_FUNCTION(1, "SCP_VREQ_VAO"),
159262306a36Sopenharmony_ci		MTK_FUNCTION(2, "DVFSRC_EXT_REQ"),
159362306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B18")
159462306a36Sopenharmony_ci	),
159562306a36Sopenharmony_ci	MTK_PIN(
159662306a36Sopenharmony_ci		155, "GPIO155",
159762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 155),
159862306a36Sopenharmony_ci		DRV_GRP4,
159962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO155"),
160062306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL0"),
160162306a36Sopenharmony_ci		MTK_FUNCTION(2, "DVFSRC_EXT_REQ"),
160262306a36Sopenharmony_ci		MTK_FUNCTION(3, "CMVREF1"),
160362306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_JTAG_TDI")
160462306a36Sopenharmony_ci	),
160562306a36Sopenharmony_ci	MTK_PIN(
160662306a36Sopenharmony_ci		156, "GPIO156",
160762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 156),
160862306a36Sopenharmony_ci		DRV_GRP4,
160962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO156"),
161062306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL1"),
161162306a36Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI0"),
161262306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL6"),
161362306a36Sopenharmony_ci		MTK_FUNCTION(4, "KPCOL2"),
161462306a36Sopenharmony_ci		MTK_FUNCTION(5, "IDDIG"),
161562306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_JTAG_TCK")
161662306a36Sopenharmony_ci	),
161762306a36Sopenharmony_ci	MTK_PIN(
161862306a36Sopenharmony_ci		157, "GPIO157",
161962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 157),
162062306a36Sopenharmony_ci		DRV_GRP4,
162162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO157"),
162262306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL2"),
162362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SRCLKENAI1"),
162462306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA6"),
162562306a36Sopenharmony_ci		MTK_FUNCTION(4, "KPROW2"),
162662306a36Sopenharmony_ci		MTK_FUNCTION(5, "USB_DRVVBUS"),
162762306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_JTAG_TRSTN")
162862306a36Sopenharmony_ci	),
162962306a36Sopenharmony_ci	MTK_PIN(
163062306a36Sopenharmony_ci		158, "GPIO158",
163162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 158),
163262306a36Sopenharmony_ci		DRV_GRP4,
163362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO158"),
163462306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL3")
163562306a36Sopenharmony_ci	),
163662306a36Sopenharmony_ci	MTK_PIN(
163762306a36Sopenharmony_ci		159, "GPIO159",
163862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 159),
163962306a36Sopenharmony_ci		DRV_GRP4,
164062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO159"),
164162306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL4")
164262306a36Sopenharmony_ci	),
164362306a36Sopenharmony_ci	MTK_PIN(
164462306a36Sopenharmony_ci		160, "GPIO160",
164562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 160),
164662306a36Sopenharmony_ci		DRV_GRP4,
164762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO160"),
164862306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL5")
164962306a36Sopenharmony_ci	),
165062306a36Sopenharmony_ci	MTK_PIN(
165162306a36Sopenharmony_ci		161, "GPIO161",
165262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 161),
165362306a36Sopenharmony_ci		DRV_GRP4,
165462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO161"),
165562306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_MI"),
165662306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_MI"),
165762306a36Sopenharmony_ci		MTK_FUNCTION(3, "IDDIG"),
165862306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL6"),
165962306a36Sopenharmony_ci		MTK_FUNCTION(5, "KPCOL2"),
166062306a36Sopenharmony_ci		MTK_FUNCTION(6, "PTA_RXD"),
166162306a36Sopenharmony_ci		MTK_FUNCTION(7, "DBG_MON_B19")
166262306a36Sopenharmony_ci	),
166362306a36Sopenharmony_ci	MTK_PIN(
166462306a36Sopenharmony_ci		162, "GPIO162",
166562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 162),
166662306a36Sopenharmony_ci		DRV_GRP4,
166762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO162"),
166862306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_CSB"),
166962306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_CS"),
167062306a36Sopenharmony_ci		MTK_FUNCTION(3, "USB_DRVVBUS"),
167162306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL5"),
167262306a36Sopenharmony_ci		MTK_FUNCTION(5, "KPROW2"),
167362306a36Sopenharmony_ci		MTK_FUNCTION(6, "PTA_TXD")
167462306a36Sopenharmony_ci	),
167562306a36Sopenharmony_ci	MTK_PIN(
167662306a36Sopenharmony_ci		163, "GPIO163",
167762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 163),
167862306a36Sopenharmony_ci		DRV_GRP4,
167962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO163"),
168062306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_MO"),
168162306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_MO"),
168262306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA1"),
168362306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL4"),
168462306a36Sopenharmony_ci		MTK_FUNCTION(5, "CMMCLK2"),
168562306a36Sopenharmony_ci		MTK_FUNCTION(6, "DMIC_CLK")
168662306a36Sopenharmony_ci	),
168762306a36Sopenharmony_ci	MTK_PIN(
168862306a36Sopenharmony_ci		164, "GPIO164",
168962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 164),
169062306a36Sopenharmony_ci		DRV_GRP4,
169162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO164"),
169262306a36Sopenharmony_ci		MTK_FUNCTION(1, "SPI1_A_CLK"),
169362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SCP_SPI1_CK"),
169462306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL1"),
169562306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL3"),
169662306a36Sopenharmony_ci		MTK_FUNCTION(5, "CMMCLK3"),
169762306a36Sopenharmony_ci		MTK_FUNCTION(6, "DMIC_DAT")
169862306a36Sopenharmony_ci	),
169962306a36Sopenharmony_ci	MTK_PIN(
170062306a36Sopenharmony_ci		165, "GPIO165",
170162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 165),
170262306a36Sopenharmony_ci		DRV_GRP4,
170362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO165"),
170462306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_B"),
170562306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMMCLK2"),
170662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCP_VREQ_VAO"),
170762306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_MCK_2ND"),
170862306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_JTAG_TDO")
170962306a36Sopenharmony_ci	),
171062306a36Sopenharmony_ci	MTK_PIN(
171162306a36Sopenharmony_ci		166, "GPIO166",
171262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 166),
171362306a36Sopenharmony_ci		DRV_GRP4,
171462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO166"),
171562306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL6")
171662306a36Sopenharmony_ci	),
171762306a36Sopenharmony_ci	MTK_PIN(
171862306a36Sopenharmony_ci		167, "GPIO167",
171962306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 167),
172062306a36Sopenharmony_ci		DRV_GRP4,
172162306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO167"),
172262306a36Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_EN"),
172362306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPM_BSI_EN")
172462306a36Sopenharmony_ci	),
172562306a36Sopenharmony_ci	MTK_PIN(
172662306a36Sopenharmony_ci		168, "GPIO168",
172762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 168),
172862306a36Sopenharmony_ci		DRV_GRP4,
172962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO168"),
173062306a36Sopenharmony_ci		MTK_FUNCTION(1, "RFIC0_BSI_CK"),
173162306a36Sopenharmony_ci		MTK_FUNCTION(2, "SPM_BSI_CK")
173262306a36Sopenharmony_ci	),
173362306a36Sopenharmony_ci	MTK_PIN(
173462306a36Sopenharmony_ci		169, "GPIO169",
173562306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 169),
173662306a36Sopenharmony_ci		DRV_GRP4,
173762306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO169"),
173862306a36Sopenharmony_ci		MTK_FUNCTION(1, "PWM_C"),
173962306a36Sopenharmony_ci		MTK_FUNCTION(2, "CMMCLK3"),
174062306a36Sopenharmony_ci		MTK_FUNCTION(3, "CMVREF1"),
174162306a36Sopenharmony_ci		MTK_FUNCTION(4, "ANT_SEL7"),
174262306a36Sopenharmony_ci		MTK_FUNCTION(5, "AGPS_SYNC"),
174362306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_BCK_2ND"),
174462306a36Sopenharmony_ci		MTK_FUNCTION(7, "SCP_JTAG_TMS")
174562306a36Sopenharmony_ci	),
174662306a36Sopenharmony_ci	MTK_PIN(
174762306a36Sopenharmony_ci		170, "GPIO170",
174862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 170),
174962306a36Sopenharmony_ci		DRV_GRP4,
175062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO170"),
175162306a36Sopenharmony_ci		MTK_FUNCTION(1, "I2S1_BCK"),
175262306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S3_BCK"),
175362306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL7"),
175462306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S5_BCK"),
175562306a36Sopenharmony_ci		MTK_FUNCTION(5, "EXT_FRAME_SYNC"),
175662306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_LRCK_2ND"),
175762306a36Sopenharmony_ci		MTK_FUNCTION(7, "ANT_SEL3")
175862306a36Sopenharmony_ci	),
175962306a36Sopenharmony_ci	MTK_PIN(
176062306a36Sopenharmony_ci		171, "GPIO171",
176162306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 184),
176262306a36Sopenharmony_ci		DRV_GRP4,
176362306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO171"),
176462306a36Sopenharmony_ci		MTK_FUNCTION(1, "I2S1_LRCK"),
176562306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S3_LRCK"),
176662306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA7"),
176762306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S5_LRCK"),
176862306a36Sopenharmony_ci		MTK_FUNCTION(5, "URXD1"),
176962306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_DATA0_2ND"),
177062306a36Sopenharmony_ci		MTK_FUNCTION(7, "ANT_SEL4")
177162306a36Sopenharmony_ci	),
177262306a36Sopenharmony_ci	MTK_PIN(
177362306a36Sopenharmony_ci		172, "GPIO172",
177462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 185),
177562306a36Sopenharmony_ci		DRV_GRP4,
177662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO172"),
177762306a36Sopenharmony_ci		MTK_FUNCTION(1, "I2S1_DO"),
177862306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S3_DO"),
177962306a36Sopenharmony_ci		MTK_FUNCTION(3, "SCL8"),
178062306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S5_DO"),
178162306a36Sopenharmony_ci		MTK_FUNCTION(5, "UTXD1"),
178262306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_DATA1_2ND"),
178362306a36Sopenharmony_ci		MTK_FUNCTION(7, "ANT_SEL5")
178462306a36Sopenharmony_ci	),
178562306a36Sopenharmony_ci	MTK_PIN(
178662306a36Sopenharmony_ci		173, "GPIO173",
178762306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 186),
178862306a36Sopenharmony_ci		DRV_GRP4,
178962306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO173"),
179062306a36Sopenharmony_ci		MTK_FUNCTION(1, "I2S1_MCK"),
179162306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S3_MCK"),
179262306a36Sopenharmony_ci		MTK_FUNCTION(3, "SDA8"),
179362306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S5_MCK"),
179462306a36Sopenharmony_ci		MTK_FUNCTION(5, "UCTS0"),
179562306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_DATA2_2ND"),
179662306a36Sopenharmony_ci		MTK_FUNCTION(7, "ANT_SEL6")
179762306a36Sopenharmony_ci	),
179862306a36Sopenharmony_ci	MTK_PIN(
179962306a36Sopenharmony_ci		174, "GPIO174",
180062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 187),
180162306a36Sopenharmony_ci		DRV_GRP4,
180262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO174"),
180362306a36Sopenharmony_ci		MTK_FUNCTION(1, "I2S2_DI"),
180462306a36Sopenharmony_ci		MTK_FUNCTION(2, "I2S0_DI"),
180562306a36Sopenharmony_ci		MTK_FUNCTION(3, "DVFSRC_EXT_REQ"),
180662306a36Sopenharmony_ci		MTK_FUNCTION(4, "I2S2_DI2"),
180762306a36Sopenharmony_ci		MTK_FUNCTION(5, "URTS0"),
180862306a36Sopenharmony_ci		MTK_FUNCTION(6, "TDM_DATA3_2ND"),
180962306a36Sopenharmony_ci		MTK_FUNCTION(7, "ANT_SEL7")
181062306a36Sopenharmony_ci	),
181162306a36Sopenharmony_ci	MTK_PIN(
181262306a36Sopenharmony_ci		175, "GPIO175",
181362306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 188),
181462306a36Sopenharmony_ci		DRV_GRP4,
181562306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO175"),
181662306a36Sopenharmony_ci		MTK_FUNCTION(1, "ANT_SEL7")
181762306a36Sopenharmony_ci	),
181862306a36Sopenharmony_ci	MTK_PIN(
181962306a36Sopenharmony_ci		176, "GPIO176",
182062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 189),
182162306a36Sopenharmony_ci		DRV_GRP4,
182262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO176")
182362306a36Sopenharmony_ci	),
182462306a36Sopenharmony_ci	MTK_PIN(
182562306a36Sopenharmony_ci		177, "GPIO177",
182662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 190),
182762306a36Sopenharmony_ci		DRV_GRP4,
182862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO177")
182962306a36Sopenharmony_ci	),
183062306a36Sopenharmony_ci	MTK_PIN(
183162306a36Sopenharmony_ci		178, "GPIO178",
183262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 191),
183362306a36Sopenharmony_ci		DRV_GRP4,
183462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO178")
183562306a36Sopenharmony_ci	),
183662306a36Sopenharmony_ci	MTK_PIN(
183762306a36Sopenharmony_ci		179, "GPIO179",
183862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 192),
183962306a36Sopenharmony_ci		DRV_GRP4,
184062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO179")
184162306a36Sopenharmony_ci	),
184262306a36Sopenharmony_ci	MTK_PIN(
184362306a36Sopenharmony_ci		180, "GPIO180",
184462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 171),
184562306a36Sopenharmony_ci		DRV_GRP4,
184662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO180")
184762306a36Sopenharmony_ci	),
184862306a36Sopenharmony_ci	MTK_PIN(
184962306a36Sopenharmony_ci		181, "GPIO181",
185062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 172),
185162306a36Sopenharmony_ci		DRV_GRP4,
185262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO181")
185362306a36Sopenharmony_ci	),
185462306a36Sopenharmony_ci	MTK_PIN(
185562306a36Sopenharmony_ci		182, "GPIO182",
185662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 173),
185762306a36Sopenharmony_ci		DRV_GRP4,
185862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO182")
185962306a36Sopenharmony_ci	),
186062306a36Sopenharmony_ci	MTK_PIN(
186162306a36Sopenharmony_ci		183, "GPIO183",
186262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 174),
186362306a36Sopenharmony_ci		DRV_GRP4,
186462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO183")
186562306a36Sopenharmony_ci	),
186662306a36Sopenharmony_ci	MTK_PIN(
186762306a36Sopenharmony_ci		184, "GPIO184",
186862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 175),
186962306a36Sopenharmony_ci		DRV_GRP4,
187062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO184")
187162306a36Sopenharmony_ci	),
187262306a36Sopenharmony_ci	MTK_PIN(
187362306a36Sopenharmony_ci		185, "GPIO185",
187462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 177),
187562306a36Sopenharmony_ci		DRV_GRP4,
187662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO185")
187762306a36Sopenharmony_ci	),
187862306a36Sopenharmony_ci	MTK_PIN(
187962306a36Sopenharmony_ci		186, "GPIO186",
188062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 178),
188162306a36Sopenharmony_ci		DRV_GRP4,
188262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO186")
188362306a36Sopenharmony_ci	),
188462306a36Sopenharmony_ci	MTK_PIN(
188562306a36Sopenharmony_ci		187, "GPIO187",
188662306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 179),
188762306a36Sopenharmony_ci		DRV_GRP4,
188862306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO187")
188962306a36Sopenharmony_ci	),
189062306a36Sopenharmony_ci	MTK_PIN(
189162306a36Sopenharmony_ci		188, "GPIO188",
189262306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 180),
189362306a36Sopenharmony_ci		DRV_GRP4,
189462306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO188")
189562306a36Sopenharmony_ci	),
189662306a36Sopenharmony_ci	MTK_PIN(
189762306a36Sopenharmony_ci		189, "GPIO189",
189862306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 181),
189962306a36Sopenharmony_ci		DRV_GRP4,
190062306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO189")
190162306a36Sopenharmony_ci	),
190262306a36Sopenharmony_ci	MTK_PIN(
190362306a36Sopenharmony_ci		190, "GPIO190",
190462306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 182),
190562306a36Sopenharmony_ci		DRV_GRP4,
190662306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO190")
190762306a36Sopenharmony_ci	),
190862306a36Sopenharmony_ci	MTK_PIN(
190962306a36Sopenharmony_ci		191, "GPIO191",
191062306a36Sopenharmony_ci		MTK_EINT_FUNCTION(0, 183),
191162306a36Sopenharmony_ci		DRV_GRP4,
191262306a36Sopenharmony_ci		MTK_FUNCTION(0, "GPIO191")
191362306a36Sopenharmony_ci	),
191462306a36Sopenharmony_ci};
191562306a36Sopenharmony_ci
191662306a36Sopenharmony_ci#endif /* __PINCTRL_MTK_MT8183_H */
1917