1*338e953fSGuodong Liu /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2*338e953fSGuodong Liu /*
3*338e953fSGuodong Liu  * Copyright (C) 2021 MediaTek Inc.
4*338e953fSGuodong Liu  * Author: Guodong Liu <Guodong.Liu@mediatek.com>
5*338e953fSGuodong Liu  *
6*338e953fSGuodong Liu  */
7*338e953fSGuodong Liu 
8*338e953fSGuodong Liu #ifndef __MT8186_PINFUNC_H
9*338e953fSGuodong Liu #define __MT8186_PINFUNC_H
10*338e953fSGuodong Liu 
11*338e953fSGuodong Liu #include "mt65xx.h"
12*338e953fSGuodong Liu 
13*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_GPIO0 (MTK_PIN_NO(0) | 0)
14*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_I2S0_MCK (MTK_PIN_NO(0) | 1)
15*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_SPI0_CLK_B (MTK_PIN_NO(0) | 2)
16*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_I2S2_MCK (MTK_PIN_NO(0) | 3)
17*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_CMFLASH0 (MTK_PIN_NO(0) | 4)
18*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_SCP_SPI0_CK (MTK_PIN_NO(0) | 5)
19*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_TP_GPIO0_AO (MTK_PIN_NO(0) | 6)
20*338e953fSGuodong Liu #define PINMUX_GPIO0__FUNC_DBG_MON_A0 (MTK_PIN_NO(0) | 7)
21*338e953fSGuodong Liu 
22*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_GPIO1 (MTK_PIN_NO(1) | 0)
23*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_I2S0_BCK (MTK_PIN_NO(1) | 1)
24*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_SPI0_CSB_B (MTK_PIN_NO(1) | 2)
25*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_I2S2_BCK (MTK_PIN_NO(1) | 3)
26*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_CMFLASH1 (MTK_PIN_NO(1) | 4)
27*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_SCP_SPI0_CS (MTK_PIN_NO(1) | 5)
28*338e953fSGuodong Liu #define PINMUX_GPIO1__FUNC_TP_GPIO1_AO (MTK_PIN_NO(1) | 6)
29*338e953fSGuodong Liu 
30*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_GPIO2 (MTK_PIN_NO(2) | 0)
31*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_I2S0_LRCK (MTK_PIN_NO(2) | 1)
32*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_SPI0_MO_B (MTK_PIN_NO(2) | 2)
33*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_I2S2_LRCK (MTK_PIN_NO(2) | 3)
34*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_CMFLASH2 (MTK_PIN_NO(2) | 4)
35*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_SCP_SPI0_MO (MTK_PIN_NO(2) | 5)
36*338e953fSGuodong Liu #define PINMUX_GPIO2__FUNC_TP_GPIO2_AO (MTK_PIN_NO(2) | 6)
37*338e953fSGuodong Liu 
38*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_GPIO3 (MTK_PIN_NO(3) | 0)
39*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_I2S0_DI (MTK_PIN_NO(3) | 1)
40*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_SPI0_MI_B (MTK_PIN_NO(3) | 2)
41*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_I2S2_DI (MTK_PIN_NO(3) | 3)
42*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_SRCLKENAI1 (MTK_PIN_NO(3) | 4)
43*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_SCP_SPI0_MI (MTK_PIN_NO(3) | 5)
44*338e953fSGuodong Liu #define PINMUX_GPIO3__FUNC_TP_GPIO3_AO (MTK_PIN_NO(3) | 6)
45*338e953fSGuodong Liu 
46*338e953fSGuodong Liu #define PINMUX_GPIO4__FUNC_GPIO4 (MTK_PIN_NO(4) | 0)
47*338e953fSGuodong Liu #define PINMUX_GPIO4__FUNC_I2S3_DO (MTK_PIN_NO(4) | 1)
48*338e953fSGuodong Liu #define PINMUX_GPIO4__FUNC_I2S1_DO (MTK_PIN_NO(4) | 3)
49*338e953fSGuodong Liu #define PINMUX_GPIO4__FUNC_TP_GPIO4_AO (MTK_PIN_NO(4) | 6)
50*338e953fSGuodong Liu 
51*338e953fSGuodong Liu #define PINMUX_GPIO5__FUNC_GPIO5 (MTK_PIN_NO(5) | 0)
52*338e953fSGuodong Liu #define PINMUX_GPIO5__FUNC_EXT_FRAME_SYNC (MTK_PIN_NO(5) | 1)
53*338e953fSGuodong Liu #define PINMUX_GPIO5__FUNC_TP_GPIO5_AO (MTK_PIN_NO(5) | 6)
54*338e953fSGuodong Liu 
55*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_GPIO6 (MTK_PIN_NO(6) | 0)
56*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_I2S3_MCK (MTK_PIN_NO(6) | 1)
57*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_SPI1_CLK_B (MTK_PIN_NO(6) | 2)
58*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_I2S1_MCK (MTK_PIN_NO(6) | 3)
59*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_DPI_DATA22 (MTK_PIN_NO(6) | 4)
60*338e953fSGuodong Liu #define PINMUX_GPIO6__FUNC_TP_GPIO6_AO (MTK_PIN_NO(6) | 6)
61*338e953fSGuodong Liu 
62*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_GPIO7 (MTK_PIN_NO(7) | 0)
63*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_I2S3_BCK (MTK_PIN_NO(7) | 1)
64*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_SPI1_CSB_B (MTK_PIN_NO(7) | 2)
65*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_I2S1_BCK (MTK_PIN_NO(7) | 3)
66*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_DPI_DATA23 (MTK_PIN_NO(7) | 4)
67*338e953fSGuodong Liu #define PINMUX_GPIO7__FUNC_TP_GPIO7_AO (MTK_PIN_NO(7) | 6)
68*338e953fSGuodong Liu 
69*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_GPIO8 (MTK_PIN_NO(8) | 0)
70*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_I2S3_LRCK (MTK_PIN_NO(8) | 1)
71*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_SPI1_MO_B (MTK_PIN_NO(8) | 2)
72*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_I2S1_LRCK (MTK_PIN_NO(8) | 3)
73*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_CONN_UART0_RXD (MTK_PIN_NO(8) | 4)
74*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_SSPM_URXD_AO (MTK_PIN_NO(8) | 5)
75*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_ADSP_UART_RX (MTK_PIN_NO(8) | 6)
76*338e953fSGuodong Liu #define PINMUX_GPIO8__FUNC_CONN_MCU_DBGACK_N (MTK_PIN_NO(8) | 7)
77*338e953fSGuodong Liu 
78*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_GPIO9 (MTK_PIN_NO(9) | 0)
79*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_I2S3_DO (MTK_PIN_NO(9) | 1)
80*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_SPI1_MI_B (MTK_PIN_NO(9) | 2)
81*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_I2S1_DO (MTK_PIN_NO(9) | 3)
82*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_CONN_UART0_TXD (MTK_PIN_NO(9) | 4)
83*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_SSPM_UTXD_AO (MTK_PIN_NO(9) | 5)
84*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_ADSP_UART_TX (MTK_PIN_NO(9) | 6)
85*338e953fSGuodong Liu #define PINMUX_GPIO9__FUNC_CONN_MCU_DBGI_N (MTK_PIN_NO(9) | 7)
86*338e953fSGuodong Liu 
87*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_GPIO10 (MTK_PIN_NO(10) | 0)
88*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_I2S0_MCK (MTK_PIN_NO(10) | 1)
89*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_SPI4_CLK_A (MTK_PIN_NO(10) | 2)
90*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_I2S2_MCK (MTK_PIN_NO(10) | 3)
91*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_SPM_JTAG_TDI (MTK_PIN_NO(10) | 4)
92*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_SCP_JTAG_TDI (MTK_PIN_NO(10) | 5)
93*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_ADSP_JTAG_TDI (MTK_PIN_NO(10) | 6)
94*338e953fSGuodong Liu #define PINMUX_GPIO10__FUNC_CONN_MCU_TDI (MTK_PIN_NO(10) | 7)
95*338e953fSGuodong Liu 
96*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_GPIO11 (MTK_PIN_NO(11) | 0)
97*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_I2S0_BCK (MTK_PIN_NO(11) | 1)
98*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_SPI4_CSB_A (MTK_PIN_NO(11) | 2)
99*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_I2S2_BCK (MTK_PIN_NO(11) | 3)
100*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_SPM_JTAG_TRSTN (MTK_PIN_NO(11) | 4)
101*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_SCP_JTAG_TRSTN (MTK_PIN_NO(11) | 5)
102*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_ADSP_JTAG_TRSTN (MTK_PIN_NO(11) | 6)
103*338e953fSGuodong Liu #define PINMUX_GPIO11__FUNC_CONN_MCU_TRST_B (MTK_PIN_NO(11) | 7)
104*338e953fSGuodong Liu 
105*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_GPIO12 (MTK_PIN_NO(12) | 0)
106*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_I2S0_LRCK (MTK_PIN_NO(12) | 1)
107*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_SPI4_MO_A (MTK_PIN_NO(12) | 2)
108*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_I2S2_LRCK (MTK_PIN_NO(12) | 3)
109*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_SPM_JTAG_TCK (MTK_PIN_NO(12) | 4)
110*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_SCP_JTAG_TCK (MTK_PIN_NO(12) | 5)
111*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_ADSP_JTAG_TCK (MTK_PIN_NO(12) | 6)
112*338e953fSGuodong Liu #define PINMUX_GPIO12__FUNC_CONN_MCU_TCK (MTK_PIN_NO(12) | 7)
113*338e953fSGuodong Liu 
114*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_GPIO13 (MTK_PIN_NO(13) | 0)
115*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_I2S0_DI (MTK_PIN_NO(13) | 1)
116*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_SPI4_MI_A (MTK_PIN_NO(13) | 2)
117*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_I2S2_DI (MTK_PIN_NO(13) | 3)
118*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_SPM_JTAG_TDO (MTK_PIN_NO(13) | 4)
119*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_SCP_JTAG_TDO (MTK_PIN_NO(13) | 5)
120*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_ADSP_JTAG_TDO (MTK_PIN_NO(13) | 6)
121*338e953fSGuodong Liu #define PINMUX_GPIO13__FUNC_CONN_MCU_TDO (MTK_PIN_NO(13) | 7)
122*338e953fSGuodong Liu 
123*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_GPIO14 (MTK_PIN_NO(14) | 0)
124*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_CLKM0 (MTK_PIN_NO(14) | 3)
125*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_SPM_JTAG_TMS (MTK_PIN_NO(14) | 4)
126*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_SCP_JTAG_TMS (MTK_PIN_NO(14) | 5)
127*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_ADSP_JTAG_TMS (MTK_PIN_NO(14) | 6)
128*338e953fSGuodong Liu #define PINMUX_GPIO14__FUNC_CONN_MCU_TMS (MTK_PIN_NO(14) | 7)
129*338e953fSGuodong Liu 
130*338e953fSGuodong Liu #define PINMUX_GPIO15__FUNC_GPIO15 (MTK_PIN_NO(15) | 0)
131*338e953fSGuodong Liu #define PINMUX_GPIO15__FUNC_EXT_FRAME_SYNC (MTK_PIN_NO(15) | 1)
132*338e953fSGuodong Liu #define PINMUX_GPIO15__FUNC_SRCLKENAI1 (MTK_PIN_NO(15) | 2)
133*338e953fSGuodong Liu #define PINMUX_GPIO15__FUNC_CLKM1 (MTK_PIN_NO(15) | 3)
134*338e953fSGuodong Liu #define PINMUX_GPIO15__FUNC_PWM0 (MTK_PIN_NO(15) | 4)
135*338e953fSGuodong Liu 
136*338e953fSGuodong Liu #define PINMUX_GPIO16__FUNC_GPIO16 (MTK_PIN_NO(16) | 0)
137*338e953fSGuodong Liu #define PINMUX_GPIO16__FUNC_CONN_WIFI_TXD (MTK_PIN_NO(16) | 1)
138*338e953fSGuodong Liu #define PINMUX_GPIO16__FUNC_SRCLKENAI0 (MTK_PIN_NO(16) | 2)
139*338e953fSGuodong Liu #define PINMUX_GPIO16__FUNC_CLKM2 (MTK_PIN_NO(16) | 3)
140*338e953fSGuodong Liu #define PINMUX_GPIO16__FUNC_PWM1 (MTK_PIN_NO(16) | 4)
141*338e953fSGuodong Liu 
142*338e953fSGuodong Liu #define PINMUX_GPIO17__FUNC_GPIO17 (MTK_PIN_NO(17) | 0)
143*338e953fSGuodong Liu #define PINMUX_GPIO17__FUNC_CLKM3 (MTK_PIN_NO(17) | 3)
144*338e953fSGuodong Liu #define PINMUX_GPIO17__FUNC_PWM2 (MTK_PIN_NO(17) | 4)
145*338e953fSGuodong Liu #define PINMUX_GPIO17__FUNC_DBG_MON_A32 (MTK_PIN_NO(17) | 7)
146*338e953fSGuodong Liu 
147*338e953fSGuodong Liu #define PINMUX_GPIO18__FUNC_GPIO18 (MTK_PIN_NO(18) | 0)
148*338e953fSGuodong Liu #define PINMUX_GPIO18__FUNC_CMVREF0 (MTK_PIN_NO(18) | 2)
149*338e953fSGuodong Liu #define PINMUX_GPIO18__FUNC_SPI2_CLK_B (MTK_PIN_NO(18) | 6)
150*338e953fSGuodong Liu #define PINMUX_GPIO18__FUNC_DBG_MON_A26 (MTK_PIN_NO(18) | 7)
151*338e953fSGuodong Liu 
152*338e953fSGuodong Liu #define PINMUX_GPIO19__FUNC_GPIO19 (MTK_PIN_NO(19) | 0)
153*338e953fSGuodong Liu #define PINMUX_GPIO19__FUNC_CMVREF1 (MTK_PIN_NO(19) | 2)
154*338e953fSGuodong Liu #define PINMUX_GPIO19__FUNC_ANT_SEL3 (MTK_PIN_NO(19) | 5)
155*338e953fSGuodong Liu #define PINMUX_GPIO19__FUNC_SPI2_CSB_B (MTK_PIN_NO(19) | 6)
156*338e953fSGuodong Liu #define PINMUX_GPIO19__FUNC_DBG_MON_A2 (MTK_PIN_NO(19) | 7)
157*338e953fSGuodong Liu 
158*338e953fSGuodong Liu #define PINMUX_GPIO20__FUNC_GPIO20 (MTK_PIN_NO(20) | 0)
159*338e953fSGuodong Liu #define PINMUX_GPIO20__FUNC_CMVREF2 (MTK_PIN_NO(20) | 2)
160*338e953fSGuodong Liu #define PINMUX_GPIO20__FUNC_ANT_SEL4 (MTK_PIN_NO(20) | 5)
161*338e953fSGuodong Liu #define PINMUX_GPIO20__FUNC_SPI2_MO_B (MTK_PIN_NO(20) | 6)
162*338e953fSGuodong Liu #define PINMUX_GPIO20__FUNC_DBG_MON_A3 (MTK_PIN_NO(20) | 7)
163*338e953fSGuodong Liu 
164*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_GPIO21 (MTK_PIN_NO(21) | 0)
165*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_I2S0_MCK (MTK_PIN_NO(21) | 1)
166*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_I2S1_MCK (MTK_PIN_NO(21) | 2)
167*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_I2S3_MCK (MTK_PIN_NO(21) | 3)
168*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_ANT_SEL5 (MTK_PIN_NO(21) | 5)
169*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_SPI2_MI_B (MTK_PIN_NO(21) | 6)
170*338e953fSGuodong Liu #define PINMUX_GPIO21__FUNC_DBG_MON_A4 (MTK_PIN_NO(21) | 7)
171*338e953fSGuodong Liu 
172*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_GPIO22 (MTK_PIN_NO(22) | 0)
173*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_I2S0_BCK (MTK_PIN_NO(22) | 1)
174*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_I2S1_BCK (MTK_PIN_NO(22) | 2)
175*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_I2S3_BCK (MTK_PIN_NO(22) | 3)
176*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_TDM_RX_LRCK (MTK_PIN_NO(22) | 4)
177*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_ANT_SEL6 (MTK_PIN_NO(22) | 5)
178*338e953fSGuodong Liu #define PINMUX_GPIO22__FUNC_DBG_MON_A5 (MTK_PIN_NO(22) | 7)
179*338e953fSGuodong Liu 
180*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_GPIO23 (MTK_PIN_NO(23) | 0)
181*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_I2S0_LRCK (MTK_PIN_NO(23) | 1)
182*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_I2S1_LRCK (MTK_PIN_NO(23) | 2)
183*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_I2S3_LRCK (MTK_PIN_NO(23) | 3)
184*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_TDM_RX_BCK (MTK_PIN_NO(23) | 4)
185*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_ANT_SEL7 (MTK_PIN_NO(23) | 5)
186*338e953fSGuodong Liu #define PINMUX_GPIO23__FUNC_DBG_MON_A6 (MTK_PIN_NO(23) | 7)
187*338e953fSGuodong Liu 
188*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_GPIO24 (MTK_PIN_NO(24) | 0)
189*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_I2S0_DI (MTK_PIN_NO(24) | 1)
190*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_I2S1_DO (MTK_PIN_NO(24) | 2)
191*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_I2S3_DO (MTK_PIN_NO(24) | 3)
192*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_TDM_RX_MCK (MTK_PIN_NO(24) | 4)
193*338e953fSGuodong Liu #define PINMUX_GPIO24__FUNC_DBG_MON_A7 (MTK_PIN_NO(24) | 7)
194*338e953fSGuodong Liu 
195*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_GPIO25 (MTK_PIN_NO(25) | 0)
196*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_I2S2_MCK (MTK_PIN_NO(25) | 1)
197*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_PCM_CLK (MTK_PIN_NO(25) | 2)
198*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_SPI4_CLK_B (MTK_PIN_NO(25) | 3)
199*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_TDM_RX_DATA0 (MTK_PIN_NO(25) | 4)
200*338e953fSGuodong Liu #define PINMUX_GPIO25__FUNC_DBG_MON_A8 (MTK_PIN_NO(25) | 7)
201*338e953fSGuodong Liu 
202*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_GPIO26 (MTK_PIN_NO(26) | 0)
203*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_I2S2_BCK (MTK_PIN_NO(26) | 1)
204*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_PCM_SYNC (MTK_PIN_NO(26) | 2)
205*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_SPI4_CSB_B (MTK_PIN_NO(26) | 3)
206*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_TDM_RX_DATA1 (MTK_PIN_NO(26) | 4)
207*338e953fSGuodong Liu #define PINMUX_GPIO26__FUNC_DBG_MON_A9 (MTK_PIN_NO(26) | 7)
208*338e953fSGuodong Liu 
209*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_GPIO27 (MTK_PIN_NO(27) | 0)
210*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_I2S2_LRCK (MTK_PIN_NO(27) | 1)
211*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_PCM_DI (MTK_PIN_NO(27) | 2)
212*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_SPI4_MO_B (MTK_PIN_NO(27) | 3)
213*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_TDM_RX_DATA2 (MTK_PIN_NO(27) | 4)
214*338e953fSGuodong Liu #define PINMUX_GPIO27__FUNC_DBG_MON_A10 (MTK_PIN_NO(27) | 7)
215*338e953fSGuodong Liu 
216*338e953fSGuodong Liu #define PINMUX_GPIO28__FUNC_GPIO28 (MTK_PIN_NO(28) | 0)
217*338e953fSGuodong Liu #define PINMUX_GPIO28__FUNC_I2S2_DI (MTK_PIN_NO(28) | 1)
218*338e953fSGuodong Liu #define PINMUX_GPIO28__FUNC_PCM_DO (MTK_PIN_NO(28) | 2)
219*338e953fSGuodong Liu #define PINMUX_GPIO28__FUNC_SPI4_MI_B (MTK_PIN_NO(28) | 3)
220*338e953fSGuodong Liu #define PINMUX_GPIO28__FUNC_TDM_RX_DATA3 (MTK_PIN_NO(28) | 4)
221*338e953fSGuodong Liu 
222*338e953fSGuodong Liu #define PINMUX_GPIO29__FUNC_GPIO29 (MTK_PIN_NO(29) | 0)
223*338e953fSGuodong Liu #define PINMUX_GPIO29__FUNC_ANT_SEL0 (MTK_PIN_NO(29) | 1)
224*338e953fSGuodong Liu #define PINMUX_GPIO29__FUNC_GPS_L1_ELNA_EN (MTK_PIN_NO(29) | 2)
225*338e953fSGuodong Liu 
226*338e953fSGuodong Liu #define PINMUX_GPIO30__FUNC_GPIO30 (MTK_PIN_NO(30) | 0)
227*338e953fSGuodong Liu #define PINMUX_GPIO30__FUNC_ANT_SEL1 (MTK_PIN_NO(30) | 1)
228*338e953fSGuodong Liu 
229*338e953fSGuodong Liu #define PINMUX_GPIO31__FUNC_GPIO31 (MTK_PIN_NO(31) | 0)
230*338e953fSGuodong Liu #define PINMUX_GPIO31__FUNC_ANT_SEL2 (MTK_PIN_NO(31) | 1)
231*338e953fSGuodong Liu #define PINMUX_GPIO31__FUNC_EXT_FRAME_SYNC (MTK_PIN_NO(31) | 2)
232*338e953fSGuodong Liu #define PINMUX_GPIO31__FUNC_SRCLKENAI1 (MTK_PIN_NO(31) | 3)
233*338e953fSGuodong Liu 
234*338e953fSGuodong Liu #define PINMUX_GPIO32__FUNC_GPIO32 (MTK_PIN_NO(32) | 0)
235*338e953fSGuodong Liu #define PINMUX_GPIO32__FUNC_URXD0 (MTK_PIN_NO(32) | 1)
236*338e953fSGuodong Liu #define PINMUX_GPIO32__FUNC_UTXD0 (MTK_PIN_NO(32) | 2)
237*338e953fSGuodong Liu #define PINMUX_GPIO32__FUNC_ADSP_UART_RX (MTK_PIN_NO(32) | 3)
238*338e953fSGuodong Liu #define PINMUX_GPIO32__FUNC_TP_URXD1_AO (MTK_PIN_NO(32) | 4)
239*338e953fSGuodong Liu 
240*338e953fSGuodong Liu #define PINMUX_GPIO33__FUNC_GPIO33 (MTK_PIN_NO(33) | 0)
241*338e953fSGuodong Liu #define PINMUX_GPIO33__FUNC_UTXD0 (MTK_PIN_NO(33) | 1)
242*338e953fSGuodong Liu #define PINMUX_GPIO33__FUNC_URXD0 (MTK_PIN_NO(33) | 2)
243*338e953fSGuodong Liu #define PINMUX_GPIO33__FUNC_ADSP_UART_TX (MTK_PIN_NO(33) | 3)
244*338e953fSGuodong Liu #define PINMUX_GPIO33__FUNC_TP_UTXD1_AO (MTK_PIN_NO(33) | 4)
245*338e953fSGuodong Liu 
246*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_GPIO34 (MTK_PIN_NO(34) | 0)
247*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_URXD1 (MTK_PIN_NO(34) | 1)
248*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_TP_URXD2_AO (MTK_PIN_NO(34) | 2)
249*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_SSPM_URXD_AO (MTK_PIN_NO(34) | 3)
250*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_ADSP_UART_RX (MTK_PIN_NO(34) | 4)
251*338e953fSGuodong Liu #define PINMUX_GPIO34__FUNC_CONN_UART0_RXD (MTK_PIN_NO(34) | 5)
252*338e953fSGuodong Liu 
253*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_GPIO35 (MTK_PIN_NO(35) | 0)
254*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_UTXD1 (MTK_PIN_NO(35) | 1)
255*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_TP_UTXD2_AO (MTK_PIN_NO(35) | 2)
256*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_SSPM_UTXD_AO (MTK_PIN_NO(35) | 3)
257*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_ADSP_UART_TX (MTK_PIN_NO(35) | 4)
258*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_CONN_UART0_TXD (MTK_PIN_NO(35) | 5)
259*338e953fSGuodong Liu #define PINMUX_GPIO35__FUNC_CONN_WIFI_TXD (MTK_PIN_NO(35) | 6)
260*338e953fSGuodong Liu 
261*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_GPIO36 (MTK_PIN_NO(36) | 0)
262*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_SPI0_CLK_A (MTK_PIN_NO(36) | 1)
263*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_CLKM0 (MTK_PIN_NO(36) | 2)
264*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_SCP_SPI0_CK (MTK_PIN_NO(36) | 4)
265*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_SPINOR_CK (MTK_PIN_NO(36) | 5)
266*338e953fSGuodong Liu #define PINMUX_GPIO36__FUNC_DBG_MON_A11 (MTK_PIN_NO(36) | 7)
267*338e953fSGuodong Liu 
268*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_GPIO37 (MTK_PIN_NO(37) | 0)
269*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_SPI0_CSB_A (MTK_PIN_NO(37) | 1)
270*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_CLKM1 (MTK_PIN_NO(37) | 2)
271*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_PWM0 (MTK_PIN_NO(37) | 3)
272*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_SCP_SPI0_CS (MTK_PIN_NO(37) | 4)
273*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_SPINOR_CS (MTK_PIN_NO(37) | 5)
274*338e953fSGuodong Liu #define PINMUX_GPIO37__FUNC_DBG_MON_A12 (MTK_PIN_NO(37) | 7)
275*338e953fSGuodong Liu 
276*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_GPIO38 (MTK_PIN_NO(38) | 0)
277*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_SPI0_MO_A (MTK_PIN_NO(38) | 1)
278*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_CLKM2 (MTK_PIN_NO(38) | 2)
279*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_PWM1 (MTK_PIN_NO(38) | 3)
280*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_SCP_SPI0_MO (MTK_PIN_NO(38) | 4)
281*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_SPINOR_IO0 (MTK_PIN_NO(38) | 5)
282*338e953fSGuodong Liu #define PINMUX_GPIO38__FUNC_DBG_MON_A13 (MTK_PIN_NO(38) | 7)
283*338e953fSGuodong Liu 
284*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_GPIO39 (MTK_PIN_NO(39) | 0)
285*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_SPI0_MI_A (MTK_PIN_NO(39) | 1)
286*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_CLKM3 (MTK_PIN_NO(39) | 2)
287*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_PWM2 (MTK_PIN_NO(39) | 3)
288*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_SCP_SPI0_MI (MTK_PIN_NO(39) | 4)
289*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_SPINOR_IO1 (MTK_PIN_NO(39) | 5)
290*338e953fSGuodong Liu #define PINMUX_GPIO39__FUNC_DBG_MON_A14 (MTK_PIN_NO(39) | 7)
291*338e953fSGuodong Liu 
292*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_GPIO40 (MTK_PIN_NO(40) | 0)
293*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_SPI1_CLK_A (MTK_PIN_NO(40) | 1)
294*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_SCP_SPI1_CK (MTK_PIN_NO(40) | 2)
295*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_UCTS0 (MTK_PIN_NO(40) | 4)
296*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_SPINOR_IO2 (MTK_PIN_NO(40) | 5)
297*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_TP_UCTS1_AO (MTK_PIN_NO(40) | 6)
298*338e953fSGuodong Liu #define PINMUX_GPIO40__FUNC_DBG_MON_A15 (MTK_PIN_NO(40) | 7)
299*338e953fSGuodong Liu 
300*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_GPIO41 (MTK_PIN_NO(41) | 0)
301*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_SPI1_CSB_A (MTK_PIN_NO(41) | 1)
302*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_SCP_SPI1_CS (MTK_PIN_NO(41) | 2)
303*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_PWM0 (MTK_PIN_NO(41) | 3)
304*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_URTS0 (MTK_PIN_NO(41) | 4)
305*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_SPINOR_IO3 (MTK_PIN_NO(41) | 5)
306*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_TP_URTS1_AO (MTK_PIN_NO(41) | 6)
307*338e953fSGuodong Liu #define PINMUX_GPIO41__FUNC_DBG_MON_A16 (MTK_PIN_NO(41) | 7)
308*338e953fSGuodong Liu 
309*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_GPIO42 (MTK_PIN_NO(42) | 0)
310*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_SPI1_MO_A (MTK_PIN_NO(42) | 1)
311*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_SCP_SPI1_MO (MTK_PIN_NO(42) | 2)
312*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_PWM1 (MTK_PIN_NO(42) | 3)
313*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_UCTS1 (MTK_PIN_NO(42) | 4)
314*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_TP_UCTS2_AO (MTK_PIN_NO(42) | 6)
315*338e953fSGuodong Liu #define PINMUX_GPIO42__FUNC_DBG_MON_A17 (MTK_PIN_NO(42) | 7)
316*338e953fSGuodong Liu 
317*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_GPIO43 (MTK_PIN_NO(43) | 0)
318*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_SPI1_MI_A (MTK_PIN_NO(43) | 1)
319*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_SCP_SPI1_MI (MTK_PIN_NO(43) | 2)
320*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_PWM2 (MTK_PIN_NO(43) | 3)
321*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_URTS1 (MTK_PIN_NO(43) | 4)
322*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_TP_URTS2_AO (MTK_PIN_NO(43) | 6)
323*338e953fSGuodong Liu #define PINMUX_GPIO43__FUNC_DBG_MON_A18 (MTK_PIN_NO(43) | 7)
324*338e953fSGuodong Liu 
325*338e953fSGuodong Liu #define PINMUX_GPIO44__FUNC_GPIO44 (MTK_PIN_NO(44) | 0)
326*338e953fSGuodong Liu #define PINMUX_GPIO44__FUNC_SPI2_CLK_A (MTK_PIN_NO(44) | 1)
327*338e953fSGuodong Liu #define PINMUX_GPIO44__FUNC_SCP_SPI0_CK (MTK_PIN_NO(44) | 2)
328*338e953fSGuodong Liu #define PINMUX_GPIO44__FUNC_DBG_MON_A19 (MTK_PIN_NO(44) | 7)
329*338e953fSGuodong Liu 
330*338e953fSGuodong Liu #define PINMUX_GPIO45__FUNC_GPIO45 (MTK_PIN_NO(45) | 0)
331*338e953fSGuodong Liu #define PINMUX_GPIO45__FUNC_SPI2_CSB_A (MTK_PIN_NO(45) | 1)
332*338e953fSGuodong Liu #define PINMUX_GPIO45__FUNC_SCP_SPI0_CS (MTK_PIN_NO(45) | 2)
333*338e953fSGuodong Liu #define PINMUX_GPIO45__FUNC_DBG_MON_A20 (MTK_PIN_NO(45) | 7)
334*338e953fSGuodong Liu 
335*338e953fSGuodong Liu #define PINMUX_GPIO46__FUNC_GPIO46 (MTK_PIN_NO(46) | 0)
336*338e953fSGuodong Liu #define PINMUX_GPIO46__FUNC_SPI2_MO_A (MTK_PIN_NO(46) | 1)
337*338e953fSGuodong Liu #define PINMUX_GPIO46__FUNC_SCP_SPI0_MO (MTK_PIN_NO(46) | 2)
338*338e953fSGuodong Liu #define PINMUX_GPIO46__FUNC_DBG_MON_A21 (MTK_PIN_NO(46) | 7)
339*338e953fSGuodong Liu 
340*338e953fSGuodong Liu #define PINMUX_GPIO47__FUNC_GPIO47 (MTK_PIN_NO(47) | 0)
341*338e953fSGuodong Liu #define PINMUX_GPIO47__FUNC_SPI2_MI_A (MTK_PIN_NO(47) | 1)
342*338e953fSGuodong Liu #define PINMUX_GPIO47__FUNC_SCP_SPI0_MI (MTK_PIN_NO(47) | 2)
343*338e953fSGuodong Liu #define PINMUX_GPIO47__FUNC_DBG_MON_A22 (MTK_PIN_NO(47) | 7)
344*338e953fSGuodong Liu 
345*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_GPIO48 (MTK_PIN_NO(48) | 0)
346*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_SPI3_CLK (MTK_PIN_NO(48) | 1)
347*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_TP_URXD1_AO (MTK_PIN_NO(48) | 2)
348*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_TP_URXD2_AO (MTK_PIN_NO(48) | 3)
349*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_URXD1 (MTK_PIN_NO(48) | 4)
350*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_I2S2_MCK (MTK_PIN_NO(48) | 5)
351*338e953fSGuodong Liu #define PINMUX_GPIO48__FUNC_SCP_SPI0_CK (MTK_PIN_NO(48) | 6)
352*338e953fSGuodong Liu 
353*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_GPIO49 (MTK_PIN_NO(49) | 0)
354*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_SPI3_CSB (MTK_PIN_NO(49) | 1)
355*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_TP_UTXD1_AO (MTK_PIN_NO(49) | 2)
356*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_TP_UTXD2_AO (MTK_PIN_NO(49) | 3)
357*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_UTXD1 (MTK_PIN_NO(49) | 4)
358*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_I2S2_BCK (MTK_PIN_NO(49) | 5)
359*338e953fSGuodong Liu #define PINMUX_GPIO49__FUNC_SCP_SPI0_CS (MTK_PIN_NO(49) | 6)
360*338e953fSGuodong Liu 
361*338e953fSGuodong Liu #define PINMUX_GPIO50__FUNC_GPIO50 (MTK_PIN_NO(50) | 0)
362*338e953fSGuodong Liu #define PINMUX_GPIO50__FUNC_SPI3_MO (MTK_PIN_NO(50) | 1)
363*338e953fSGuodong Liu #define PINMUX_GPIO50__FUNC_I2S2_LRCK (MTK_PIN_NO(50) | 5)
364*338e953fSGuodong Liu #define PINMUX_GPIO50__FUNC_SCP_SPI0_MO (MTK_PIN_NO(50) | 6)
365*338e953fSGuodong Liu 
366*338e953fSGuodong Liu #define PINMUX_GPIO51__FUNC_GPIO51 (MTK_PIN_NO(51) | 0)
367*338e953fSGuodong Liu #define PINMUX_GPIO51__FUNC_SPI3_MI (MTK_PIN_NO(51) | 1)
368*338e953fSGuodong Liu #define PINMUX_GPIO51__FUNC_I2S2_DI (MTK_PIN_NO(51) | 5)
369*338e953fSGuodong Liu #define PINMUX_GPIO51__FUNC_SCP_SPI0_MI (MTK_PIN_NO(51) | 6)
370*338e953fSGuodong Liu 
371*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_GPIO52 (MTK_PIN_NO(52) | 0)
372*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_SPI5_CLK (MTK_PIN_NO(52) | 1)
373*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_I2S2_MCK (MTK_PIN_NO(52) | 2)
374*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_I2S1_MCK (MTK_PIN_NO(52) | 3)
375*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_SCP_SPI1_CK (MTK_PIN_NO(52) | 4)
376*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_LVTS_26M (MTK_PIN_NO(52) | 5)
377*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_DFD_TCK_XI (MTK_PIN_NO(52) | 6)
378*338e953fSGuodong Liu #define PINMUX_GPIO52__FUNC_DBG_MON_B30 (MTK_PIN_NO(52) | 7)
379*338e953fSGuodong Liu 
380*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_GPIO53 (MTK_PIN_NO(53) | 0)
381*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_SPI5_CSB (MTK_PIN_NO(53) | 1)
382*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_I2S2_BCK (MTK_PIN_NO(53) | 2)
383*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_I2S1_BCK (MTK_PIN_NO(53) | 3)
384*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_SCP_SPI1_CS (MTK_PIN_NO(53) | 4)
385*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_LVTS_FOUT (MTK_PIN_NO(53) | 5)
386*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_DFD_TDI (MTK_PIN_NO(53) | 6)
387*338e953fSGuodong Liu #define PINMUX_GPIO53__FUNC_DBG_MON_B31 (MTK_PIN_NO(53) | 7)
388*338e953fSGuodong Liu 
389*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_GPIO54 (MTK_PIN_NO(54) | 0)
390*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_SPI5_MO (MTK_PIN_NO(54) | 1)
391*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_I2S2_LRCK (MTK_PIN_NO(54) | 2)
392*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_I2S1_LRCK (MTK_PIN_NO(54) | 3)
393*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_SCP_SPI1_MO (MTK_PIN_NO(54) | 4)
394*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_LVTS_SCK (MTK_PIN_NO(54) | 5)
395*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_DFD_TDO (MTK_PIN_NO(54) | 6)
396*338e953fSGuodong Liu #define PINMUX_GPIO54__FUNC_DBG_MON_A1 (MTK_PIN_NO(54) | 7)
397*338e953fSGuodong Liu 
398*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_GPIO55 (MTK_PIN_NO(55) | 0)
399*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_SPI5_MI (MTK_PIN_NO(55) | 1)
400*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_I2S2_DI (MTK_PIN_NO(55) | 2)
401*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_I2S1_DO (MTK_PIN_NO(55) | 3)
402*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_SCP_SPI1_MI (MTK_PIN_NO(55) | 4)
403*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_LVTS_SDO (MTK_PIN_NO(55) | 5)
404*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_DFD_TMS (MTK_PIN_NO(55) | 6)
405*338e953fSGuodong Liu #define PINMUX_GPIO55__FUNC_DBG_MON_B32 (MTK_PIN_NO(55) | 7)
406*338e953fSGuodong Liu 
407*338e953fSGuodong Liu #define PINMUX_GPIO56__FUNC_GPIO56 (MTK_PIN_NO(56) | 0)
408*338e953fSGuodong Liu #define PINMUX_GPIO56__FUNC_I2S1_DO (MTK_PIN_NO(56) | 1)
409*338e953fSGuodong Liu #define PINMUX_GPIO56__FUNC_I2S3_DO (MTK_PIN_NO(56) | 2)
410*338e953fSGuodong Liu #define PINMUX_GPIO56__FUNC_DBG_MON_A23 (MTK_PIN_NO(56) | 7)
411*338e953fSGuodong Liu 
412*338e953fSGuodong Liu #define PINMUX_GPIO57__FUNC_GPIO57 (MTK_PIN_NO(57) | 0)
413*338e953fSGuodong Liu #define PINMUX_GPIO57__FUNC_I2S1_BCK (MTK_PIN_NO(57) | 1)
414*338e953fSGuodong Liu #define PINMUX_GPIO57__FUNC_I2S3_BCK (MTK_PIN_NO(57) | 2)
415*338e953fSGuodong Liu #define PINMUX_GPIO57__FUNC_DBG_MON_A24 (MTK_PIN_NO(57) | 7)
416*338e953fSGuodong Liu 
417*338e953fSGuodong Liu #define PINMUX_GPIO58__FUNC_GPIO58 (MTK_PIN_NO(58) | 0)
418*338e953fSGuodong Liu #define PINMUX_GPIO58__FUNC_I2S1_LRCK (MTK_PIN_NO(58) | 1)
419*338e953fSGuodong Liu #define PINMUX_GPIO58__FUNC_I2S3_LRCK (MTK_PIN_NO(58) | 2)
420*338e953fSGuodong Liu #define PINMUX_GPIO58__FUNC_DBG_MON_A25 (MTK_PIN_NO(58) | 7)
421*338e953fSGuodong Liu 
422*338e953fSGuodong Liu #define PINMUX_GPIO59__FUNC_GPIO59 (MTK_PIN_NO(59) | 0)
423*338e953fSGuodong Liu #define PINMUX_GPIO59__FUNC_I2S1_MCK (MTK_PIN_NO(59) | 1)
424*338e953fSGuodong Liu #define PINMUX_GPIO59__FUNC_I2S3_MCK (MTK_PIN_NO(59) | 2)
425*338e953fSGuodong Liu #define PINMUX_GPIO59__FUNC_DBG_MON_A27 (MTK_PIN_NO(59) | 7)
426*338e953fSGuodong Liu 
427*338e953fSGuodong Liu #define PINMUX_GPIO60__FUNC_GPIO60 (MTK_PIN_NO(60) | 0)
428*338e953fSGuodong Liu #define PINMUX_GPIO60__FUNC_TDM_RX_LRCK (MTK_PIN_NO(60) | 1)
429*338e953fSGuodong Liu #define PINMUX_GPIO60__FUNC_ANT_SEL3 (MTK_PIN_NO(60) | 2)
430*338e953fSGuodong Liu #define PINMUX_GPIO60__FUNC_CONN_MCU_DBGACK_N (MTK_PIN_NO(60) | 5)
431*338e953fSGuodong Liu 
432*338e953fSGuodong Liu #define PINMUX_GPIO61__FUNC_GPIO61 (MTK_PIN_NO(61) | 0)
433*338e953fSGuodong Liu #define PINMUX_GPIO61__FUNC_TDM_RX_BCK (MTK_PIN_NO(61) | 1)
434*338e953fSGuodong Liu #define PINMUX_GPIO61__FUNC_ANT_SEL4 (MTK_PIN_NO(61) | 2)
435*338e953fSGuodong Liu #define PINMUX_GPIO61__FUNC_SPINOR_CK (MTK_PIN_NO(61) | 4)
436*338e953fSGuodong Liu #define PINMUX_GPIO61__FUNC_CONN_MCU_DBGI_N (MTK_PIN_NO(61) | 5)
437*338e953fSGuodong Liu 
438*338e953fSGuodong Liu #define PINMUX_GPIO62__FUNC_GPIO62 (MTK_PIN_NO(62) | 0)
439*338e953fSGuodong Liu #define PINMUX_GPIO62__FUNC_TDM_RX_MCK (MTK_PIN_NO(62) | 1)
440*338e953fSGuodong Liu #define PINMUX_GPIO62__FUNC_ANT_SEL5 (MTK_PIN_NO(62) | 2)
441*338e953fSGuodong Liu #define PINMUX_GPIO62__FUNC_SPINOR_CS (MTK_PIN_NO(62) | 4)
442*338e953fSGuodong Liu #define PINMUX_GPIO62__FUNC_CONN_MCU_TDI (MTK_PIN_NO(62) | 5)
443*338e953fSGuodong Liu 
444*338e953fSGuodong Liu #define PINMUX_GPIO63__FUNC_GPIO63 (MTK_PIN_NO(63) | 0)
445*338e953fSGuodong Liu #define PINMUX_GPIO63__FUNC_TDM_RX_DATA0 (MTK_PIN_NO(63) | 1)
446*338e953fSGuodong Liu #define PINMUX_GPIO63__FUNC_ANT_SEL6 (MTK_PIN_NO(63) | 2)
447*338e953fSGuodong Liu #define PINMUX_GPIO63__FUNC_SPINOR_IO0 (MTK_PIN_NO(63) | 4)
448*338e953fSGuodong Liu #define PINMUX_GPIO63__FUNC_CONN_MCU_TRST_B (MTK_PIN_NO(63) | 5)
449*338e953fSGuodong Liu 
450*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_GPIO64 (MTK_PIN_NO(64) | 0)
451*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_TDM_RX_DATA1 (MTK_PIN_NO(64) | 1)
452*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_ANT_SEL7 (MTK_PIN_NO(64) | 2)
453*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_PWM0 (MTK_PIN_NO(64) | 3)
454*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_SPINOR_IO1 (MTK_PIN_NO(64) | 4)
455*338e953fSGuodong Liu #define PINMUX_GPIO64__FUNC_CONN_MCU_TCK (MTK_PIN_NO(64) | 5)
456*338e953fSGuodong Liu 
457*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_GPIO65 (MTK_PIN_NO(65) | 0)
458*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_TDM_RX_DATA2 (MTK_PIN_NO(65) | 1)
459*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_UCTS0 (MTK_PIN_NO(65) | 2)
460*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_PWM1 (MTK_PIN_NO(65) | 3)
461*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_SPINOR_IO2 (MTK_PIN_NO(65) | 4)
462*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_CONN_MCU_TDO (MTK_PIN_NO(65) | 5)
463*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_TP_UCTS1_AO (MTK_PIN_NO(65) | 6)
464*338e953fSGuodong Liu #define PINMUX_GPIO65__FUNC_TP_UCTS2_AO (MTK_PIN_NO(65) | 7)
465*338e953fSGuodong Liu 
466*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_GPIO66 (MTK_PIN_NO(66) | 0)
467*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_TDM_RX_DATA3 (MTK_PIN_NO(66) | 1)
468*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_URTS0 (MTK_PIN_NO(66) | 2)
469*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_PWM2 (MTK_PIN_NO(66) | 3)
470*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_SPINOR_IO3 (MTK_PIN_NO(66) | 4)
471*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_CONN_MCU_TMS (MTK_PIN_NO(66) | 5)
472*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_TP_URTS1_AO (MTK_PIN_NO(66) | 6)
473*338e953fSGuodong Liu #define PINMUX_GPIO66__FUNC_TP_URTS2_AO (MTK_PIN_NO(66) | 7)
474*338e953fSGuodong Liu 
475*338e953fSGuodong Liu #define PINMUX_GPIO67__FUNC_GPIO67 (MTK_PIN_NO(67) | 0)
476*338e953fSGuodong Liu #define PINMUX_GPIO67__FUNC_MSDC0_DSL (MTK_PIN_NO(67) | 1)
477*338e953fSGuodong Liu 
478*338e953fSGuodong Liu #define PINMUX_GPIO68__FUNC_GPIO68 (MTK_PIN_NO(68) | 0)
479*338e953fSGuodong Liu #define PINMUX_GPIO68__FUNC_MSDC0_CLK (MTK_PIN_NO(68) | 1)
480*338e953fSGuodong Liu 
481*338e953fSGuodong Liu #define PINMUX_GPIO69__FUNC_GPIO69 (MTK_PIN_NO(69) | 0)
482*338e953fSGuodong Liu #define PINMUX_GPIO69__FUNC_MSDC0_CMD (MTK_PIN_NO(69) | 1)
483*338e953fSGuodong Liu 
484*338e953fSGuodong Liu #define PINMUX_GPIO70__FUNC_GPIO70 (MTK_PIN_NO(70) | 0)
485*338e953fSGuodong Liu #define PINMUX_GPIO70__FUNC_MSDC0_RSTB (MTK_PIN_NO(70) | 1)
486*338e953fSGuodong Liu 
487*338e953fSGuodong Liu #define PINMUX_GPIO71__FUNC_GPIO71 (MTK_PIN_NO(71) | 0)
488*338e953fSGuodong Liu #define PINMUX_GPIO71__FUNC_MSDC0_DAT0 (MTK_PIN_NO(71) | 1)
489*338e953fSGuodong Liu 
490*338e953fSGuodong Liu #define PINMUX_GPIO72__FUNC_GPIO72 (MTK_PIN_NO(72) | 0)
491*338e953fSGuodong Liu #define PINMUX_GPIO72__FUNC_MSDC0_DAT1 (MTK_PIN_NO(72) | 1)
492*338e953fSGuodong Liu 
493*338e953fSGuodong Liu #define PINMUX_GPIO73__FUNC_GPIO73 (MTK_PIN_NO(73) | 0)
494*338e953fSGuodong Liu #define PINMUX_GPIO73__FUNC_MSDC0_DAT2 (MTK_PIN_NO(73) | 1)
495*338e953fSGuodong Liu 
496*338e953fSGuodong Liu #define PINMUX_GPIO74__FUNC_GPIO74 (MTK_PIN_NO(74) | 0)
497*338e953fSGuodong Liu #define PINMUX_GPIO74__FUNC_MSDC0_DAT3 (MTK_PIN_NO(74) | 1)
498*338e953fSGuodong Liu 
499*338e953fSGuodong Liu #define PINMUX_GPIO75__FUNC_GPIO75 (MTK_PIN_NO(75) | 0)
500*338e953fSGuodong Liu #define PINMUX_GPIO75__FUNC_MSDC0_DAT4 (MTK_PIN_NO(75) | 1)
501*338e953fSGuodong Liu 
502*338e953fSGuodong Liu #define PINMUX_GPIO76__FUNC_GPIO76 (MTK_PIN_NO(76) | 0)
503*338e953fSGuodong Liu #define PINMUX_GPIO76__FUNC_MSDC0_DAT5 (MTK_PIN_NO(76) | 1)
504*338e953fSGuodong Liu 
505*338e953fSGuodong Liu #define PINMUX_GPIO77__FUNC_GPIO77 (MTK_PIN_NO(77) | 0)
506*338e953fSGuodong Liu #define PINMUX_GPIO77__FUNC_MSDC0_DAT6 (MTK_PIN_NO(77) | 1)
507*338e953fSGuodong Liu 
508*338e953fSGuodong Liu #define PINMUX_GPIO78__FUNC_GPIO78 (MTK_PIN_NO(78) | 0)
509*338e953fSGuodong Liu #define PINMUX_GPIO78__FUNC_MSDC0_DAT7 (MTK_PIN_NO(78) | 1)
510*338e953fSGuodong Liu 
511*338e953fSGuodong Liu #define PINMUX_GPIO79__FUNC_GPIO79 (MTK_PIN_NO(79) | 0)
512*338e953fSGuodong Liu #define PINMUX_GPIO79__FUNC_KPCOL0 (MTK_PIN_NO(79) | 1)
513*338e953fSGuodong Liu 
514*338e953fSGuodong Liu #define PINMUX_GPIO80__FUNC_GPIO80 (MTK_PIN_NO(80) | 0)
515*338e953fSGuodong Liu #define PINMUX_GPIO80__FUNC_KPCOL1 (MTK_PIN_NO(80) | 1)
516*338e953fSGuodong Liu #define PINMUX_GPIO80__FUNC_GPS_L1_ELNA_EN (MTK_PIN_NO(80) | 2)
517*338e953fSGuodong Liu #define PINMUX_GPIO80__FUNC_PWM0 (MTK_PIN_NO(80) | 3)
518*338e953fSGuodong Liu #define PINMUX_GPIO80__FUNC_CLKM0 (MTK_PIN_NO(80) | 4)
519*338e953fSGuodong Liu 
520*338e953fSGuodong Liu #define PINMUX_GPIO81__FUNC_GPIO81 (MTK_PIN_NO(81) | 0)
521*338e953fSGuodong Liu #define PINMUX_GPIO81__FUNC_KPROW0 (MTK_PIN_NO(81) | 1)
522*338e953fSGuodong Liu #define PINMUX_GPIO81__FUNC_PWM1 (MTK_PIN_NO(81) | 3)
523*338e953fSGuodong Liu #define PINMUX_GPIO81__FUNC_CLKM1 (MTK_PIN_NO(81) | 4)
524*338e953fSGuodong Liu 
525*338e953fSGuodong Liu #define PINMUX_GPIO82__FUNC_GPIO82 (MTK_PIN_NO(82) | 0)
526*338e953fSGuodong Liu #define PINMUX_GPIO82__FUNC_KPROW1 (MTK_PIN_NO(82) | 1)
527*338e953fSGuodong Liu #define PINMUX_GPIO82__FUNC_PWM2 (MTK_PIN_NO(82) | 3)
528*338e953fSGuodong Liu #define PINMUX_GPIO82__FUNC_CLKM2 (MTK_PIN_NO(82) | 4)
529*338e953fSGuodong Liu 
530*338e953fSGuodong Liu #define PINMUX_GPIO83__FUNC_GPIO83 (MTK_PIN_NO(83) | 0)
531*338e953fSGuodong Liu #define PINMUX_GPIO83__FUNC_AP_GOOD (MTK_PIN_NO(83) | 1)
532*338e953fSGuodong Liu #define PINMUX_GPIO83__FUNC_GPS_PPS (MTK_PIN_NO(83) | 2)
533*338e953fSGuodong Liu #define PINMUX_GPIO83__FUNC_EXT_FRAME_SYNC (MTK_PIN_NO(83) | 4)
534*338e953fSGuodong Liu #define PINMUX_GPIO83__FUNC_DBG_MON_A28 (MTK_PIN_NO(83) | 7)
535*338e953fSGuodong Liu 
536*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_GPIO84 (MTK_PIN_NO(84) | 0)
537*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_MSDC1_CLK (MTK_PIN_NO(84) | 1)
538*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_ADSP_JTAG_TCK (MTK_PIN_NO(84) | 2)
539*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_UDI_TCK (MTK_PIN_NO(84) | 4)
540*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_CONN_DSP_JCK (MTK_PIN_NO(84) | 5)
541*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_SSPM_JTAG_TCK (MTK_PIN_NO(84) | 6)
542*338e953fSGuodong Liu #define PINMUX_GPIO84__FUNC_DFD_TCK_XI (MTK_PIN_NO(84) | 7)
543*338e953fSGuodong Liu 
544*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_GPIO85 (MTK_PIN_NO(85) | 0)
545*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_MSDC1_CMD (MTK_PIN_NO(85) | 1)
546*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_ADSP_JTAG_TMS (MTK_PIN_NO(85) | 2)
547*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_CONN_MCU_AICE_TMSC (MTK_PIN_NO(85) | 3)
548*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_UDI_TMS (MTK_PIN_NO(85) | 4)
549*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_CONN_DSP_JMS (MTK_PIN_NO(85) | 5)
550*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_SSPM_JTAG_TMS (MTK_PIN_NO(85) | 6)
551*338e953fSGuodong Liu #define PINMUX_GPIO85__FUNC_DFD_TMS (MTK_PIN_NO(85) | 7)
552*338e953fSGuodong Liu 
553*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_GPIO86 (MTK_PIN_NO(86) | 0)
554*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_MSDC1_DAT0 (MTK_PIN_NO(86) | 1)
555*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_ADSP_JTAG_TDI (MTK_PIN_NO(86) | 2)
556*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_UDI_TDI (MTK_PIN_NO(86) | 4)
557*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_CONN_DSP_JDI (MTK_PIN_NO(86) | 5)
558*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_SSPM_JTAG_TDI (MTK_PIN_NO(86) | 6)
559*338e953fSGuodong Liu #define PINMUX_GPIO86__FUNC_DFD_TDI (MTK_PIN_NO(86) | 7)
560*338e953fSGuodong Liu 
561*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_GPIO87 (MTK_PIN_NO(87) | 0)
562*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_MSDC1_DAT1 (MTK_PIN_NO(87) | 1)
563*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_ADSP_JTAG_TDO (MTK_PIN_NO(87) | 2)
564*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_UDI_TDO (MTK_PIN_NO(87) | 4)
565*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_CONN_DSP_JDO (MTK_PIN_NO(87) | 5)
566*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_SSPM_JTAG_TDO (MTK_PIN_NO(87) | 6)
567*338e953fSGuodong Liu #define PINMUX_GPIO87__FUNC_DFD_TDO (MTK_PIN_NO(87) | 7)
568*338e953fSGuodong Liu 
569*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_GPIO88 (MTK_PIN_NO(88) | 0)
570*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_MSDC1_DAT2 (MTK_PIN_NO(88) | 1)
571*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_ADSP_JTAG_TRSTN (MTK_PIN_NO(88) | 2)
572*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_CONN_MCU_AICE_TCKC (MTK_PIN_NO(88) | 3)
573*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_UDI_NTRST (MTK_PIN_NO(88) | 4)
574*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_CONN_WIFI_TXD (MTK_PIN_NO(88) | 5)
575*338e953fSGuodong Liu #define PINMUX_GPIO88__FUNC_SSPM_JTAG_TRSTN (MTK_PIN_NO(88) | 6)
576*338e953fSGuodong Liu 
577*338e953fSGuodong Liu #define PINMUX_GPIO89__FUNC_GPIO89 (MTK_PIN_NO(89) | 0)
578*338e953fSGuodong Liu #define PINMUX_GPIO89__FUNC_MSDC1_DAT3 (MTK_PIN_NO(89) | 1)
579*338e953fSGuodong Liu #define PINMUX_GPIO89__FUNC_CONN_DSP_JINTP (MTK_PIN_NO(89) | 5)
580*338e953fSGuodong Liu 
581*338e953fSGuodong Liu #define PINMUX_GPIO90__FUNC_GPIO90 (MTK_PIN_NO(90) | 0)
582*338e953fSGuodong Liu #define PINMUX_GPIO90__FUNC_IDDIG_P0 (MTK_PIN_NO(90) | 1)
583*338e953fSGuodong Liu #define PINMUX_GPIO90__FUNC_PGD_HV_HSC_PWR4 (MTK_PIN_NO(90) | 4)
584*338e953fSGuodong Liu #define PINMUX_GPIO90__FUNC_GDU_SUM_TROOP2_2 (MTK_PIN_NO(90) | 5)
585*338e953fSGuodong Liu 
586*338e953fSGuodong Liu #define PINMUX_GPIO91__FUNC_GPIO91 (MTK_PIN_NO(91) | 0)
587*338e953fSGuodong Liu #define PINMUX_GPIO91__FUNC_USB_DRVVBUS_P0 (MTK_PIN_NO(91) | 1)
588*338e953fSGuodong Liu #define PINMUX_GPIO91__FUNC_PGD_HV_HSC_PWR5 (MTK_PIN_NO(91) | 4)
589*338e953fSGuodong Liu #define PINMUX_GPIO91__FUNC_GDU_TROOPS_DET0 (MTK_PIN_NO(91) | 5)
590*338e953fSGuodong Liu 
591*338e953fSGuodong Liu #define PINMUX_GPIO92__FUNC_GPIO92 (MTK_PIN_NO(92) | 0)
592*338e953fSGuodong Liu #define PINMUX_GPIO92__FUNC_VBUS_VALID_P0 (MTK_PIN_NO(92) | 1)
593*338e953fSGuodong Liu #define PINMUX_GPIO92__FUNC_PGD_DA_EFUSE_RDY (MTK_PIN_NO(92) | 4)
594*338e953fSGuodong Liu #define PINMUX_GPIO92__FUNC_GDU_TROOPS_DET1 (MTK_PIN_NO(92) | 5)
595*338e953fSGuodong Liu 
596*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_GPIO93 (MTK_PIN_NO(93) | 0)
597*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_IDDIG_P1 (MTK_PIN_NO(93) | 1)
598*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_PWM0 (MTK_PIN_NO(93) | 2)
599*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_CLKM0 (MTK_PIN_NO(93) | 3)
600*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_PGD_DA_EFUSE_RDY_PRE (MTK_PIN_NO(93) | 4)
601*338e953fSGuodong Liu #define PINMUX_GPIO93__FUNC_GDU_TROOPS_DET2 (MTK_PIN_NO(93) | 5)
602*338e953fSGuodong Liu 
603*338e953fSGuodong Liu #define PINMUX_GPIO94__FUNC_GPIO94 (MTK_PIN_NO(94) | 0)
604*338e953fSGuodong Liu #define PINMUX_GPIO94__FUNC_USB_DRVVBUS_P1 (MTK_PIN_NO(94) | 1)
605*338e953fSGuodong Liu #define PINMUX_GPIO94__FUNC_PWM1 (MTK_PIN_NO(94) | 2)
606*338e953fSGuodong Liu #define PINMUX_GPIO94__FUNC_CLKM1 (MTK_PIN_NO(94) | 3)
607*338e953fSGuodong Liu #define PINMUX_GPIO94__FUNC_PGD_DA_PWRGD_RESET (MTK_PIN_NO(94) | 4)
608*338e953fSGuodong Liu 
609*338e953fSGuodong Liu #define PINMUX_GPIO95__FUNC_GPIO95 (MTK_PIN_NO(95) | 0)
610*338e953fSGuodong Liu #define PINMUX_GPIO95__FUNC_VBUS_VALID_P1 (MTK_PIN_NO(95) | 1)
611*338e953fSGuodong Liu #define PINMUX_GPIO95__FUNC_PWM2 (MTK_PIN_NO(95) | 2)
612*338e953fSGuodong Liu #define PINMUX_GPIO95__FUNC_CLKM2 (MTK_PIN_NO(95) | 3)
613*338e953fSGuodong Liu #define PINMUX_GPIO95__FUNC_PGD_DA_PWRGD_ENB (MTK_PIN_NO(95) | 4)
614*338e953fSGuodong Liu 
615*338e953fSGuodong Liu #define PINMUX_GPIO96__FUNC_GPIO96 (MTK_PIN_NO(96) | 0)
616*338e953fSGuodong Liu #define PINMUX_GPIO96__FUNC_DSI_TE (MTK_PIN_NO(96) | 1)
617*338e953fSGuodong Liu #define PINMUX_GPIO96__FUNC_DBG_MON_A29 (MTK_PIN_NO(96) | 7)
618*338e953fSGuodong Liu 
619*338e953fSGuodong Liu #define PINMUX_GPIO97__FUNC_GPIO97 (MTK_PIN_NO(97) | 0)
620*338e953fSGuodong Liu #define PINMUX_GPIO97__FUNC_DISP_PWM (MTK_PIN_NO(97) | 1)
621*338e953fSGuodong Liu #define PINMUX_GPIO97__FUNC_DBG_MON_A30 (MTK_PIN_NO(97) | 7)
622*338e953fSGuodong Liu 
623*338e953fSGuodong Liu #define PINMUX_GPIO98__FUNC_GPIO98 (MTK_PIN_NO(98) | 0)
624*338e953fSGuodong Liu #define PINMUX_GPIO98__FUNC_LCM_RST (MTK_PIN_NO(98) | 1)
625*338e953fSGuodong Liu 
626*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_GPIO99 (MTK_PIN_NO(99) | 0)
627*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_DPI_PCLK (MTK_PIN_NO(99) | 1)
628*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_GPS_L1_ELNA_EN (MTK_PIN_NO(99) | 2)
629*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_SSPM_JTAG_TCK (MTK_PIN_NO(99) | 3)
630*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_ANT_SEL0 (MTK_PIN_NO(99) | 5)
631*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_TP_GPIO0_AO (MTK_PIN_NO(99) | 6)
632*338e953fSGuodong Liu #define PINMUX_GPIO99__FUNC_PGD_LV_LSC_PWR0 (MTK_PIN_NO(99) | 7)
633*338e953fSGuodong Liu 
634*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_GPIO100 (MTK_PIN_NO(100) | 0)
635*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_DPI_VSYNC (MTK_PIN_NO(100) | 1)
636*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_KPCOL2 (MTK_PIN_NO(100) | 2)
637*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_SSPM_JTAG_TMS (MTK_PIN_NO(100) | 3)
638*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_ANT_SEL1 (MTK_PIN_NO(100) | 5)
639*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_TP_GPIO1_AO (MTK_PIN_NO(100) | 6)
640*338e953fSGuodong Liu #define PINMUX_GPIO100__FUNC_PGD_LV_LSC_PWR1 (MTK_PIN_NO(100) | 7)
641*338e953fSGuodong Liu 
642*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_GPIO101 (MTK_PIN_NO(101) | 0)
643*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_DPI_HSYNC (MTK_PIN_NO(101) | 1)
644*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_KPROW2 (MTK_PIN_NO(101) | 2)
645*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_SSPM_JTAG_TDI (MTK_PIN_NO(101) | 3)
646*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_ANT_SEL2 (MTK_PIN_NO(101) | 5)
647*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_TP_GPIO2_AO (MTK_PIN_NO(101) | 6)
648*338e953fSGuodong Liu #define PINMUX_GPIO101__FUNC_PGD_LV_LSC_PWR2 (MTK_PIN_NO(101) | 7)
649*338e953fSGuodong Liu 
650*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_GPIO102 (MTK_PIN_NO(102) | 0)
651*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_DPI_DE (MTK_PIN_NO(102) | 1)
652*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_SSPM_JTAG_TDO (MTK_PIN_NO(102) | 3)
653*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_ANT_SEL3 (MTK_PIN_NO(102) | 5)
654*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_TP_GPIO3_AO (MTK_PIN_NO(102) | 6)
655*338e953fSGuodong Liu #define PINMUX_GPIO102__FUNC_PGD_LV_LSC_PWR3 (MTK_PIN_NO(102) | 7)
656*338e953fSGuodong Liu 
657*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_GPIO103 (MTK_PIN_NO(103) | 0)
658*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_DPI_DATA0 (MTK_PIN_NO(103) | 1)
659*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_SSPM_JTAG_TRSTN (MTK_PIN_NO(103) | 3)
660*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_CLKM0 (MTK_PIN_NO(103) | 4)
661*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_ANT_SEL4 (MTK_PIN_NO(103) | 5)
662*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_TP_GPIO4_AO (MTK_PIN_NO(103) | 6)
663*338e953fSGuodong Liu #define PINMUX_GPIO103__FUNC_PGD_LV_LSC_PWR4 (MTK_PIN_NO(103) | 7)
664*338e953fSGuodong Liu 
665*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_GPIO104 (MTK_PIN_NO(104) | 0)
666*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_DPI_DATA1 (MTK_PIN_NO(104) | 1)
667*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_GPS_PPS (MTK_PIN_NO(104) | 2)
668*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_UCTS2 (MTK_PIN_NO(104) | 3)
669*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_CLKM1 (MTK_PIN_NO(104) | 4)
670*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_ANT_SEL5 (MTK_PIN_NO(104) | 5)
671*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_TP_GPIO5_AO (MTK_PIN_NO(104) | 6)
672*338e953fSGuodong Liu #define PINMUX_GPIO104__FUNC_PGD_LV_LSC_PWR5 (MTK_PIN_NO(104) | 7)
673*338e953fSGuodong Liu 
674*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_GPIO105 (MTK_PIN_NO(105) | 0)
675*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_DPI_DATA2 (MTK_PIN_NO(105) | 1)
676*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_CONN_TCXOENA_REQ (MTK_PIN_NO(105) | 2)
677*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_URTS2 (MTK_PIN_NO(105) | 3)
678*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_CLKM2 (MTK_PIN_NO(105) | 4)
679*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_ANT_SEL6 (MTK_PIN_NO(105) | 5)
680*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_TP_GPIO6_AO (MTK_PIN_NO(105) | 6)
681*338e953fSGuodong Liu #define PINMUX_GPIO105__FUNC_PGD_LV_HSC_PWR0 (MTK_PIN_NO(105) | 7)
682*338e953fSGuodong Liu 
683*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_GPIO106 (MTK_PIN_NO(106) | 0)
684*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_DPI_DATA3 (MTK_PIN_NO(106) | 1)
685*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_TP_UTXD1_AO (MTK_PIN_NO(106) | 2)
686*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_UTXD2 (MTK_PIN_NO(106) | 3)
687*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_PWM0 (MTK_PIN_NO(106) | 4)
688*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_ANT_SEL7 (MTK_PIN_NO(106) | 5)
689*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_TP_GPIO7_AO (MTK_PIN_NO(106) | 6)
690*338e953fSGuodong Liu #define PINMUX_GPIO106__FUNC_PGD_LV_HSC_PWR1 (MTK_PIN_NO(106) | 7)
691*338e953fSGuodong Liu 
692*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_GPIO107 (MTK_PIN_NO(107) | 0)
693*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_DPI_DATA4 (MTK_PIN_NO(107) | 1)
694*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_TP_URXD1_AO (MTK_PIN_NO(107) | 2)
695*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_URXD2 (MTK_PIN_NO(107) | 3)
696*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_PWM1 (MTK_PIN_NO(107) | 4)
697*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_GDU_SUM_TROOP0_0 (MTK_PIN_NO(107) | 6)
698*338e953fSGuodong Liu #define PINMUX_GPIO107__FUNC_PGD_LV_HSC_PWR2 (MTK_PIN_NO(107) | 7)
699*338e953fSGuodong Liu 
700*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_GPIO108 (MTK_PIN_NO(108) | 0)
701*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_DPI_DATA5 (MTK_PIN_NO(108) | 1)
702*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_TP_UCTS1_AO (MTK_PIN_NO(108) | 2)
703*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_UCTS0 (MTK_PIN_NO(108) | 3)
704*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_PWM2 (MTK_PIN_NO(108) | 4)
705*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_GDU_SUM_TROOP0_1 (MTK_PIN_NO(108) | 6)
706*338e953fSGuodong Liu #define PINMUX_GPIO108__FUNC_PGD_LV_HSC_PWR3 (MTK_PIN_NO(108) | 7)
707*338e953fSGuodong Liu 
708*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_GPIO109 (MTK_PIN_NO(109) | 0)
709*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_DPI_DATA6 (MTK_PIN_NO(109) | 1)
710*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_TP_URTS1_AO (MTK_PIN_NO(109) | 2)
711*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_URTS0 (MTK_PIN_NO(109) | 3)
712*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_I2S0_DI (MTK_PIN_NO(109) | 4)
713*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_I2S2_DI (MTK_PIN_NO(109) | 5)
714*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_GDU_SUM_TROOP0_2 (MTK_PIN_NO(109) | 6)
715*338e953fSGuodong Liu #define PINMUX_GPIO109__FUNC_PGD_LV_HSC_PWR4 (MTK_PIN_NO(109) | 7)
716*338e953fSGuodong Liu 
717*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_GPIO110 (MTK_PIN_NO(110) | 0)
718*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_DPI_DATA7 (MTK_PIN_NO(110) | 1)
719*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_TP_UCTS2_AO (MTK_PIN_NO(110) | 2)
720*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_UCTS1 (MTK_PIN_NO(110) | 3)
721*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_I2S3_BCK (MTK_PIN_NO(110) | 4)
722*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_I2S1_BCK (MTK_PIN_NO(110) | 5)
723*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_GDU_SUM_TROOP1_0 (MTK_PIN_NO(110) | 6)
724*338e953fSGuodong Liu #define PINMUX_GPIO110__FUNC_PGD_LV_HSC_PWR5 (MTK_PIN_NO(110) | 7)
725*338e953fSGuodong Liu 
726*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_GPIO111 (MTK_PIN_NO(111) | 0)
727*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_DPI_DATA8 (MTK_PIN_NO(111) | 1)
728*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_TP_URTS2_AO (MTK_PIN_NO(111) | 2)
729*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_URTS1 (MTK_PIN_NO(111) | 3)
730*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_I2S3_MCK (MTK_PIN_NO(111) | 4)
731*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_I2S1_MCK (MTK_PIN_NO(111) | 5)
732*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_GDU_SUM_TROOP1_1 (MTK_PIN_NO(111) | 6)
733*338e953fSGuodong Liu #define PINMUX_GPIO111__FUNC_PGD_HV_HSC_PWR0 (MTK_PIN_NO(111) | 7)
734*338e953fSGuodong Liu 
735*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_GPIO112 (MTK_PIN_NO(112) | 0)
736*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_DPI_DATA9 (MTK_PIN_NO(112) | 1)
737*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_TP_URXD2_AO (MTK_PIN_NO(112) | 2)
738*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_URXD1 (MTK_PIN_NO(112) | 3)
739*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_I2S3_LRCK (MTK_PIN_NO(112) | 4)
740*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_I2S1_LRCK (MTK_PIN_NO(112) | 5)
741*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_GDU_SUM_TROOP1_2 (MTK_PIN_NO(112) | 6)
742*338e953fSGuodong Liu #define PINMUX_GPIO112__FUNC_PGD_HV_HSC_PWR1 (MTK_PIN_NO(112) | 7)
743*338e953fSGuodong Liu 
744*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_GPIO113 (MTK_PIN_NO(113) | 0)
745*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_DPI_DATA10 (MTK_PIN_NO(113) | 1)
746*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_TP_UTXD2_AO (MTK_PIN_NO(113) | 2)
747*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_UTXD1 (MTK_PIN_NO(113) | 3)
748*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_I2S3_DO (MTK_PIN_NO(113) | 4)
749*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_I2S1_DO (MTK_PIN_NO(113) | 5)
750*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_GDU_SUM_TROOP2_0 (MTK_PIN_NO(113) | 6)
751*338e953fSGuodong Liu #define PINMUX_GPIO113__FUNC_PGD_HV_HSC_PWR2 (MTK_PIN_NO(113) | 7)
752*338e953fSGuodong Liu 
753*338e953fSGuodong Liu #define PINMUX_GPIO114__FUNC_GPIO114 (MTK_PIN_NO(114) | 0)
754*338e953fSGuodong Liu #define PINMUX_GPIO114__FUNC_DPI_DATA11 (MTK_PIN_NO(114) | 1)
755*338e953fSGuodong Liu #define PINMUX_GPIO114__FUNC_GDU_SUM_TROOP2_1 (MTK_PIN_NO(114) | 6)
756*338e953fSGuodong Liu #define PINMUX_GPIO114__FUNC_PGD_HV_HSC_PWR3 (MTK_PIN_NO(114) | 7)
757*338e953fSGuodong Liu 
758*338e953fSGuodong Liu #define PINMUX_GPIO115__FUNC_GPIO115 (MTK_PIN_NO(115) | 0)
759*338e953fSGuodong Liu #define PINMUX_GPIO115__FUNC_PCM_CLK (MTK_PIN_NO(115) | 1)
760*338e953fSGuodong Liu #define PINMUX_GPIO115__FUNC_I2S0_BCK (MTK_PIN_NO(115) | 2)
761*338e953fSGuodong Liu #define PINMUX_GPIO115__FUNC_I2S2_BCK (MTK_PIN_NO(115) | 3)
762*338e953fSGuodong Liu 
763*338e953fSGuodong Liu #define PINMUX_GPIO116__FUNC_GPIO116 (MTK_PIN_NO(116) | 0)
764*338e953fSGuodong Liu #define PINMUX_GPIO116__FUNC_PCM_SYNC (MTK_PIN_NO(116) | 1)
765*338e953fSGuodong Liu #define PINMUX_GPIO116__FUNC_I2S0_LRCK (MTK_PIN_NO(116) | 2)
766*338e953fSGuodong Liu #define PINMUX_GPIO116__FUNC_I2S2_LRCK (MTK_PIN_NO(116) | 3)
767*338e953fSGuodong Liu 
768*338e953fSGuodong Liu #define PINMUX_GPIO117__FUNC_GPIO117 (MTK_PIN_NO(117) | 0)
769*338e953fSGuodong Liu #define PINMUX_GPIO117__FUNC_PCM_DI (MTK_PIN_NO(117) | 1)
770*338e953fSGuodong Liu #define PINMUX_GPIO117__FUNC_I2S0_DI (MTK_PIN_NO(117) | 2)
771*338e953fSGuodong Liu #define PINMUX_GPIO117__FUNC_I2S2_DI (MTK_PIN_NO(117) | 3)
772*338e953fSGuodong Liu 
773*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_GPIO118 (MTK_PIN_NO(118) | 0)
774*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_PCM_DO (MTK_PIN_NO(118) | 1)
775*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_I2S0_MCK (MTK_PIN_NO(118) | 2)
776*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_I2S2_MCK (MTK_PIN_NO(118) | 3)
777*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_I2S3_DO (MTK_PIN_NO(118) | 4)
778*338e953fSGuodong Liu #define PINMUX_GPIO118__FUNC_I2S1_DO (MTK_PIN_NO(118) | 5)
779*338e953fSGuodong Liu 
780*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_GPIO119 (MTK_PIN_NO(119) | 0)
781*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_JTMS_SEL1 (MTK_PIN_NO(119) | 1)
782*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_UDI_TMS (MTK_PIN_NO(119) | 2)
783*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_DFD_TMS (MTK_PIN_NO(119) | 3)
784*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_SPM_JTAG_TMS (MTK_PIN_NO(119) | 4)
785*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_SCP_JTAG_TMS (MTK_PIN_NO(119) | 5)
786*338e953fSGuodong Liu #define PINMUX_GPIO119__FUNC_ADSP_JTAG_TMS (MTK_PIN_NO(119) | 6)
787*338e953fSGuodong Liu 
788*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_GPIO120 (MTK_PIN_NO(120) | 0)
789*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_JTCK_SEL1 (MTK_PIN_NO(120) | 1)
790*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_UDI_TCK (MTK_PIN_NO(120) | 2)
791*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_DFD_TCK_XI (MTK_PIN_NO(120) | 3)
792*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_SPM_JTAG_TCK (MTK_PIN_NO(120) | 4)
793*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_SCP_JTAG_TCK (MTK_PIN_NO(120) | 5)
794*338e953fSGuodong Liu #define PINMUX_GPIO120__FUNC_ADSP_JTAG_TCK (MTK_PIN_NO(120) | 6)
795*338e953fSGuodong Liu 
796*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_GPIO121 (MTK_PIN_NO(121) | 0)
797*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_JTDI_SEL1 (MTK_PIN_NO(121) | 1)
798*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_UDI_TDI (MTK_PIN_NO(121) | 2)
799*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_DFD_TDI (MTK_PIN_NO(121) | 3)
800*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_SPM_JTAG_TDI (MTK_PIN_NO(121) | 4)
801*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_SCP_JTAG_TDI (MTK_PIN_NO(121) | 5)
802*338e953fSGuodong Liu #define PINMUX_GPIO121__FUNC_ADSP_JTAG_TDI (MTK_PIN_NO(121) | 6)
803*338e953fSGuodong Liu 
804*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_GPIO122 (MTK_PIN_NO(122) | 0)
805*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_JTDO_SEL1 (MTK_PIN_NO(122) | 1)
806*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_UDI_TDO (MTK_PIN_NO(122) | 2)
807*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_DFD_TDO (MTK_PIN_NO(122) | 3)
808*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_SPM_JTAG_TDO (MTK_PIN_NO(122) | 4)
809*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_SCP_JTAG_TDO (MTK_PIN_NO(122) | 5)
810*338e953fSGuodong Liu #define PINMUX_GPIO122__FUNC_ADSP_JTAG_TDO (MTK_PIN_NO(122) | 6)
811*338e953fSGuodong Liu 
812*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_GPIO123 (MTK_PIN_NO(123) | 0)
813*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_JTRSTN_SEL1 (MTK_PIN_NO(123) | 1)
814*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_UDI_NTRST (MTK_PIN_NO(123) | 2)
815*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_SPM_JTAG_TRSTN (MTK_PIN_NO(123) | 4)
816*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_SCP_JTAG_TRSTN (MTK_PIN_NO(123) | 5)
817*338e953fSGuodong Liu #define PINMUX_GPIO123__FUNC_ADSP_JTAG_TRSTN (MTK_PIN_NO(123) | 6)
818*338e953fSGuodong Liu 
819*338e953fSGuodong Liu #define PINMUX_GPIO124__FUNC_GPIO124 (MTK_PIN_NO(124) | 0)
820*338e953fSGuodong Liu #define PINMUX_GPIO124__FUNC_CMMCLK0 (MTK_PIN_NO(124) | 1)
821*338e953fSGuodong Liu #define PINMUX_GPIO124__FUNC_CLKM0 (MTK_PIN_NO(124) | 2)
822*338e953fSGuodong Liu #define PINMUX_GPIO124__FUNC_PWM0 (MTK_PIN_NO(124) | 3)
823*338e953fSGuodong Liu 
824*338e953fSGuodong Liu #define PINMUX_GPIO125__FUNC_GPIO125 (MTK_PIN_NO(125) | 0)
825*338e953fSGuodong Liu #define PINMUX_GPIO125__FUNC_CMMCLK1 (MTK_PIN_NO(125) | 1)
826*338e953fSGuodong Liu #define PINMUX_GPIO125__FUNC_CLKM1 (MTK_PIN_NO(125) | 2)
827*338e953fSGuodong Liu #define PINMUX_GPIO125__FUNC_PWM1 (MTK_PIN_NO(125) | 3)
828*338e953fSGuodong Liu #define PINMUX_GPIO125__FUNC_DBG_MON_B0 (MTK_PIN_NO(125) | 7)
829*338e953fSGuodong Liu 
830*338e953fSGuodong Liu #define PINMUX_GPIO126__FUNC_GPIO126 (MTK_PIN_NO(126) | 0)
831*338e953fSGuodong Liu #define PINMUX_GPIO126__FUNC_CMMCLK2 (MTK_PIN_NO(126) | 1)
832*338e953fSGuodong Liu #define PINMUX_GPIO126__FUNC_CLKM2 (MTK_PIN_NO(126) | 2)
833*338e953fSGuodong Liu #define PINMUX_GPIO126__FUNC_PWM2 (MTK_PIN_NO(126) | 3)
834*338e953fSGuodong Liu #define PINMUX_GPIO126__FUNC_DBG_MON_B1 (MTK_PIN_NO(126) | 7)
835*338e953fSGuodong Liu 
836*338e953fSGuodong Liu #define PINMUX_GPIO127__FUNC_GPIO127 (MTK_PIN_NO(127) | 0)
837*338e953fSGuodong Liu #define PINMUX_GPIO127__FUNC_SCL0 (MTK_PIN_NO(127) | 1)
838*338e953fSGuodong Liu #define PINMUX_GPIO127__FUNC_SCP_SCL0 (MTK_PIN_NO(127) | 4)
839*338e953fSGuodong Liu #define PINMUX_GPIO127__FUNC_SCP_SCL1 (MTK_PIN_NO(127) | 5)
840*338e953fSGuodong Liu 
841*338e953fSGuodong Liu #define PINMUX_GPIO128__FUNC_GPIO128 (MTK_PIN_NO(128) | 0)
842*338e953fSGuodong Liu #define PINMUX_GPIO128__FUNC_SDA0 (MTK_PIN_NO(128) | 1)
843*338e953fSGuodong Liu #define PINMUX_GPIO128__FUNC_SCP_SDA0 (MTK_PIN_NO(128) | 4)
844*338e953fSGuodong Liu #define PINMUX_GPIO128__FUNC_SCP_SDA1 (MTK_PIN_NO(128) | 5)
845*338e953fSGuodong Liu 
846*338e953fSGuodong Liu #define PINMUX_GPIO129__FUNC_GPIO129 (MTK_PIN_NO(129) | 0)
847*338e953fSGuodong Liu #define PINMUX_GPIO129__FUNC_SCL1 (MTK_PIN_NO(129) | 1)
848*338e953fSGuodong Liu #define PINMUX_GPIO129__FUNC_SCP_SCL0 (MTK_PIN_NO(129) | 4)
849*338e953fSGuodong Liu #define PINMUX_GPIO129__FUNC_SCP_SCL1 (MTK_PIN_NO(129) | 5)
850*338e953fSGuodong Liu #define PINMUX_GPIO129__FUNC_DBG_MON_B4 (MTK_PIN_NO(129) | 7)
851*338e953fSGuodong Liu 
852*338e953fSGuodong Liu #define PINMUX_GPIO130__FUNC_GPIO130 (MTK_PIN_NO(130) | 0)
853*338e953fSGuodong Liu #define PINMUX_GPIO130__FUNC_SDA1 (MTK_PIN_NO(130) | 1)
854*338e953fSGuodong Liu #define PINMUX_GPIO130__FUNC_SCP_SDA0 (MTK_PIN_NO(130) | 4)
855*338e953fSGuodong Liu #define PINMUX_GPIO130__FUNC_SCP_SDA1 (MTK_PIN_NO(130) | 5)
856*338e953fSGuodong Liu #define PINMUX_GPIO130__FUNC_DBG_MON_B5 (MTK_PIN_NO(130) | 7)
857*338e953fSGuodong Liu 
858*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_GPIO131 (MTK_PIN_NO(131) | 0)
859*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_SCL2 (MTK_PIN_NO(131) | 1)
860*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_SSPM_UTXD_AO (MTK_PIN_NO(131) | 2)
861*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_CONN_UART0_TXD (MTK_PIN_NO(131) | 3)
862*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_SCP_SCL0 (MTK_PIN_NO(131) | 4)
863*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_SCP_SCL1 (MTK_PIN_NO(131) | 5)
864*338e953fSGuodong Liu #define PINMUX_GPIO131__FUNC_DBG_MON_B6 (MTK_PIN_NO(131) | 7)
865*338e953fSGuodong Liu 
866*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_GPIO132 (MTK_PIN_NO(132) | 0)
867*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_SDA2 (MTK_PIN_NO(132) | 1)
868*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_SSPM_URXD_AO (MTK_PIN_NO(132) | 2)
869*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_CONN_UART0_RXD (MTK_PIN_NO(132) | 3)
870*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_SCP_SDA0 (MTK_PIN_NO(132) | 4)
871*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_SCP_SDA1 (MTK_PIN_NO(132) | 5)
872*338e953fSGuodong Liu #define PINMUX_GPIO132__FUNC_DBG_MON_B7 (MTK_PIN_NO(132) | 7)
873*338e953fSGuodong Liu 
874*338e953fSGuodong Liu #define PINMUX_GPIO133__FUNC_GPIO133 (MTK_PIN_NO(133) | 0)
875*338e953fSGuodong Liu #define PINMUX_GPIO133__FUNC_SCL3 (MTK_PIN_NO(133) | 1)
876*338e953fSGuodong Liu #define PINMUX_GPIO133__FUNC_SCP_SCL0 (MTK_PIN_NO(133) | 4)
877*338e953fSGuodong Liu #define PINMUX_GPIO133__FUNC_SCP_SCL1 (MTK_PIN_NO(133) | 5)
878*338e953fSGuodong Liu #define PINMUX_GPIO133__FUNC_DBG_MON_B8 (MTK_PIN_NO(133) | 7)
879*338e953fSGuodong Liu 
880*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_GPIO134 (MTK_PIN_NO(134) | 0)
881*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_SDA3 (MTK_PIN_NO(134) | 1)
882*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_GPS_PPS (MTK_PIN_NO(134) | 3)
883*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_SCP_SDA0 (MTK_PIN_NO(134) | 4)
884*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_SCP_SDA1 (MTK_PIN_NO(134) | 5)
885*338e953fSGuodong Liu #define PINMUX_GPIO134__FUNC_DBG_MON_B9 (MTK_PIN_NO(134) | 7)
886*338e953fSGuodong Liu 
887*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_GPIO135 (MTK_PIN_NO(135) | 0)
888*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_SCL4 (MTK_PIN_NO(135) | 1)
889*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_TP_UTXD1_AO (MTK_PIN_NO(135) | 2)
890*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_UTXD1 (MTK_PIN_NO(135) | 3)
891*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_SCP_SCL0 (MTK_PIN_NO(135) | 4)
892*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_SCP_SCL1 (MTK_PIN_NO(135) | 5)
893*338e953fSGuodong Liu #define PINMUX_GPIO135__FUNC_DBG_MON_B10 (MTK_PIN_NO(135) | 7)
894*338e953fSGuodong Liu 
895*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_GPIO136 (MTK_PIN_NO(136) | 0)
896*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_SDA4 (MTK_PIN_NO(136) | 1)
897*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_TP_URXD1_AO (MTK_PIN_NO(136) | 2)
898*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_URXD1 (MTK_PIN_NO(136) | 3)
899*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_SCP_SDA0 (MTK_PIN_NO(136) | 4)
900*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_SCP_SDA1 (MTK_PIN_NO(136) | 5)
901*338e953fSGuodong Liu #define PINMUX_GPIO136__FUNC_DBG_MON_B11 (MTK_PIN_NO(136) | 7)
902*338e953fSGuodong Liu 
903*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_GPIO137 (MTK_PIN_NO(137) | 0)
904*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_SCL5 (MTK_PIN_NO(137) | 1)
905*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_UTXD2 (MTK_PIN_NO(137) | 2)
906*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_UCTS1 (MTK_PIN_NO(137) | 3)
907*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_SCP_SCL0 (MTK_PIN_NO(137) | 4)
908*338e953fSGuodong Liu #define PINMUX_GPIO137__FUNC_SCP_SCL1 (MTK_PIN_NO(137) | 5)
909*338e953fSGuodong Liu 
910*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_GPIO138 (MTK_PIN_NO(138) | 0)
911*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_SDA5 (MTK_PIN_NO(138) | 1)
912*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_URXD2 (MTK_PIN_NO(138) | 2)
913*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_URTS1 (MTK_PIN_NO(138) | 3)
914*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_SCP_SDA0 (MTK_PIN_NO(138) | 4)
915*338e953fSGuodong Liu #define PINMUX_GPIO138__FUNC_SCP_SDA1 (MTK_PIN_NO(138) | 5)
916*338e953fSGuodong Liu 
917*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_GPIO139 (MTK_PIN_NO(139) | 0)
918*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_SCL6 (MTK_PIN_NO(139) | 1)
919*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_UTXD1 (MTK_PIN_NO(139) | 2)
920*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_TP_UTXD1_AO (MTK_PIN_NO(139) | 3)
921*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_SCP_SCL0 (MTK_PIN_NO(139) | 4)
922*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_SCP_SCL1 (MTK_PIN_NO(139) | 5)
923*338e953fSGuodong Liu #define PINMUX_GPIO139__FUNC_DBG_MON_B12 (MTK_PIN_NO(139) | 7)
924*338e953fSGuodong Liu 
925*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_GPIO140 (MTK_PIN_NO(140) | 0)
926*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_SDA6 (MTK_PIN_NO(140) | 1)
927*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_URXD1 (MTK_PIN_NO(140) | 2)
928*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_TP_URXD1_AO (MTK_PIN_NO(140) | 3)
929*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_SCP_SDA0 (MTK_PIN_NO(140) | 4)
930*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_SCP_SDA1 (MTK_PIN_NO(140) | 5)
931*338e953fSGuodong Liu #define PINMUX_GPIO140__FUNC_DBG_MON_B13 (MTK_PIN_NO(140) | 7)
932*338e953fSGuodong Liu 
933*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_GPIO141 (MTK_PIN_NO(141) | 0)
934*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_SCL7 (MTK_PIN_NO(141) | 1)
935*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_URTS0 (MTK_PIN_NO(141) | 2)
936*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_TP_URTS1_AO (MTK_PIN_NO(141) | 3)
937*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_SCP_SCL0 (MTK_PIN_NO(141) | 4)
938*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_SCP_SCL1 (MTK_PIN_NO(141) | 5)
939*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_UDI_TCK (MTK_PIN_NO(141) | 6)
940*338e953fSGuodong Liu #define PINMUX_GPIO141__FUNC_DBG_MON_B14 (MTK_PIN_NO(141) | 7)
941*338e953fSGuodong Liu 
942*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_GPIO142 (MTK_PIN_NO(142) | 0)
943*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_SDA7 (MTK_PIN_NO(142) | 1)
944*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_UCTS0 (MTK_PIN_NO(142) | 2)
945*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_TP_UCTS1_AO (MTK_PIN_NO(142) | 3)
946*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_SCP_SDA0 (MTK_PIN_NO(142) | 4)
947*338e953fSGuodong Liu #define PINMUX_GPIO142__FUNC_SCP_SDA1 (MTK_PIN_NO(142) | 5)
948*338e953fSGuodong Liu 
949*338e953fSGuodong Liu #define PINMUX_GPIO143__FUNC_GPIO143 (MTK_PIN_NO(143) | 0)
950*338e953fSGuodong Liu #define PINMUX_GPIO143__FUNC_SCL8 (MTK_PIN_NO(143) | 1)
951*338e953fSGuodong Liu #define PINMUX_GPIO143__FUNC_SCP_SCL0 (MTK_PIN_NO(143) | 4)
952*338e953fSGuodong Liu #define PINMUX_GPIO143__FUNC_SCP_SCL1 (MTK_PIN_NO(143) | 5)
953*338e953fSGuodong Liu #define PINMUX_GPIO143__FUNC_DBG_MON_B16 (MTK_PIN_NO(143) | 7)
954*338e953fSGuodong Liu 
955*338e953fSGuodong Liu #define PINMUX_GPIO144__FUNC_GPIO144 (MTK_PIN_NO(144) | 0)
956*338e953fSGuodong Liu #define PINMUX_GPIO144__FUNC_SDA8 (MTK_PIN_NO(144) | 1)
957*338e953fSGuodong Liu #define PINMUX_GPIO144__FUNC_SCP_SDA0 (MTK_PIN_NO(144) | 4)
958*338e953fSGuodong Liu #define PINMUX_GPIO144__FUNC_SCP_SDA1 (MTK_PIN_NO(144) | 5)
959*338e953fSGuodong Liu #define PINMUX_GPIO144__FUNC_DBG_MON_B17 (MTK_PIN_NO(144) | 7)
960*338e953fSGuodong Liu 
961*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_GPIO145 (MTK_PIN_NO(145) | 0)
962*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_SCL9 (MTK_PIN_NO(145) | 1)
963*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_CMVREF1 (MTK_PIN_NO(145) | 2)
964*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_GPS_PPS (MTK_PIN_NO(145) | 3)
965*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_SCP_SCL0 (MTK_PIN_NO(145) | 4)
966*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_SCP_SCL1 (MTK_PIN_NO(145) | 5)
967*338e953fSGuodong Liu #define PINMUX_GPIO145__FUNC_DBG_MON_B18 (MTK_PIN_NO(145) | 7)
968*338e953fSGuodong Liu 
969*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_GPIO146 (MTK_PIN_NO(146) | 0)
970*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_SDA9 (MTK_PIN_NO(146) | 1)
971*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_CMVREF0 (MTK_PIN_NO(146) | 2)
972*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_SCP_SDA0 (MTK_PIN_NO(146) | 4)
973*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_SCP_SDA1 (MTK_PIN_NO(146) | 5)
974*338e953fSGuodong Liu #define PINMUX_GPIO146__FUNC_DBG_MON_B19 (MTK_PIN_NO(146) | 7)
975*338e953fSGuodong Liu 
976*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_GPIO147 (MTK_PIN_NO(147) | 0)
977*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_CMFLASH0 (MTK_PIN_NO(147) | 1)
978*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_LVTS_SDI (MTK_PIN_NO(147) | 2)
979*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_DPI_DATA12 (MTK_PIN_NO(147) | 3)
980*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_TP_GPIO0_AO (MTK_PIN_NO(147) | 4)
981*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_ANT_SEL3 (MTK_PIN_NO(147) | 5)
982*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_DFD_TCK_XI (MTK_PIN_NO(147) | 6)
983*338e953fSGuodong Liu #define PINMUX_GPIO147__FUNC_DBG_MON_B20 (MTK_PIN_NO(147) | 7)
984*338e953fSGuodong Liu 
985*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_GPIO148 (MTK_PIN_NO(148) | 0)
986*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_CMFLASH1 (MTK_PIN_NO(148) | 1)
987*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_LVTS_SCF (MTK_PIN_NO(148) | 2)
988*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_DPI_DATA13 (MTK_PIN_NO(148) | 3)
989*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_TP_GPIO1_AO (MTK_PIN_NO(148) | 4)
990*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_ANT_SEL4 (MTK_PIN_NO(148) | 5)
991*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_DFD_TMS (MTK_PIN_NO(148) | 6)
992*338e953fSGuodong Liu #define PINMUX_GPIO148__FUNC_DBG_MON_B21 (MTK_PIN_NO(148) | 7)
993*338e953fSGuodong Liu 
994*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_GPIO149 (MTK_PIN_NO(149) | 0)
995*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_CMFLASH2 (MTK_PIN_NO(149) | 1)
996*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_CLKM0 (MTK_PIN_NO(149) | 2)
997*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_DPI_DATA14 (MTK_PIN_NO(149) | 3)
998*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_TP_GPIO2_AO (MTK_PIN_NO(149) | 4)
999*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_ANT_SEL5 (MTK_PIN_NO(149) | 5)
1000*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_DFD_TDI (MTK_PIN_NO(149) | 6)
1001*338e953fSGuodong Liu #define PINMUX_GPIO149__FUNC_DBG_MON_B22 (MTK_PIN_NO(149) | 7)
1002*338e953fSGuodong Liu 
1003*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_GPIO150 (MTK_PIN_NO(150) | 0)
1004*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_CLKM1 (MTK_PIN_NO(150) | 2)
1005*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_DPI_DATA15 (MTK_PIN_NO(150) | 3)
1006*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_TP_GPIO3_AO (MTK_PIN_NO(150) | 4)
1007*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_ANT_SEL6 (MTK_PIN_NO(150) | 5)
1008*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_DFD_TDO (MTK_PIN_NO(150) | 6)
1009*338e953fSGuodong Liu #define PINMUX_GPIO150__FUNC_DBG_MON_B23 (MTK_PIN_NO(150) | 7)
1010*338e953fSGuodong Liu 
1011*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_GPIO151 (MTK_PIN_NO(151) | 0)
1012*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_GPS_L1_ELNA_EN (MTK_PIN_NO(151) | 1)
1013*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_CLKM2 (MTK_PIN_NO(151) | 2)
1014*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_DPI_DATA16 (MTK_PIN_NO(151) | 3)
1015*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_TP_GPIO4_AO (MTK_PIN_NO(151) | 4)
1016*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_ANT_SEL7 (MTK_PIN_NO(151) | 5)
1017*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_UDI_TMS (MTK_PIN_NO(151) | 6)
1018*338e953fSGuodong Liu #define PINMUX_GPIO151__FUNC_DBG_MON_B24 (MTK_PIN_NO(151) | 7)
1019*338e953fSGuodong Liu 
1020*338e953fSGuodong Liu #define PINMUX_GPIO152__FUNC_GPIO152 (MTK_PIN_NO(152) | 0)
1021*338e953fSGuodong Liu #define PINMUX_GPIO152__FUNC_CLKM3 (MTK_PIN_NO(152) | 2)
1022*338e953fSGuodong Liu #define PINMUX_GPIO152__FUNC_DPI_DATA17 (MTK_PIN_NO(152) | 3)
1023*338e953fSGuodong Liu #define PINMUX_GPIO152__FUNC_TP_GPIO5_AO (MTK_PIN_NO(152) | 4)
1024*338e953fSGuodong Liu 
1025*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_GPIO153 (MTK_PIN_NO(153) | 0)
1026*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_CONN_TCXOENA_REQ (MTK_PIN_NO(153) | 1)
1027*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_DPI_DATA18 (MTK_PIN_NO(153) | 3)
1028*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_TP_GPIO6_AO (MTK_PIN_NO(153) | 4)
1029*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_UDI_TDI (MTK_PIN_NO(153) | 6)
1030*338e953fSGuodong Liu #define PINMUX_GPIO153__FUNC_DBG_MON_B26 (MTK_PIN_NO(153) | 7)
1031*338e953fSGuodong Liu 
1032*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_GPIO154 (MTK_PIN_NO(154) | 0)
1033*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_PWM0 (MTK_PIN_NO(154) | 1)
1034*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_CMVREF2 (MTK_PIN_NO(154) | 2)
1035*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_DPI_DATA19 (MTK_PIN_NO(154) | 3)
1036*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_TP_GPIO7_AO (MTK_PIN_NO(154) | 4)
1037*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_UDI_TDO (MTK_PIN_NO(154) | 6)
1038*338e953fSGuodong Liu #define PINMUX_GPIO154__FUNC_DBG_MON_B27 (MTK_PIN_NO(154) | 7)
1039*338e953fSGuodong Liu 
1040*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_GPIO155 (MTK_PIN_NO(155) | 0)
1041*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_PWM1 (MTK_PIN_NO(155) | 1)
1042*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_CMVREF1 (MTK_PIN_NO(155) | 2)
1043*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_DPI_DATA20 (MTK_PIN_NO(155) | 3)
1044*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_UDI_NTRST (MTK_PIN_NO(155) | 6)
1045*338e953fSGuodong Liu #define PINMUX_GPIO155__FUNC_DBG_MON_B28 (MTK_PIN_NO(155) | 7)
1046*338e953fSGuodong Liu 
1047*338e953fSGuodong Liu #define PINMUX_GPIO156__FUNC_GPIO156 (MTK_PIN_NO(156) | 0)
1048*338e953fSGuodong Liu #define PINMUX_GPIO156__FUNC_PWM2 (MTK_PIN_NO(156) | 1)
1049*338e953fSGuodong Liu #define PINMUX_GPIO156__FUNC_CMVREF0 (MTK_PIN_NO(156) | 2)
1050*338e953fSGuodong Liu #define PINMUX_GPIO156__FUNC_DPI_DATA21 (MTK_PIN_NO(156) | 3)
1051*338e953fSGuodong Liu 
1052*338e953fSGuodong Liu #define PINMUX_GPIO157__FUNC_GPIO157 (MTK_PIN_NO(157) | 0)
1053*338e953fSGuodong Liu #define PINMUX_GPIO157__FUNC_PWRAP_SPI0_CSN (MTK_PIN_NO(157) | 1)
1054*338e953fSGuodong Liu 
1055*338e953fSGuodong Liu #define PINMUX_GPIO158__FUNC_GPIO158 (MTK_PIN_NO(158) | 0)
1056*338e953fSGuodong Liu #define PINMUX_GPIO158__FUNC_PWRAP_SPI0_CK (MTK_PIN_NO(158) | 1)
1057*338e953fSGuodong Liu 
1058*338e953fSGuodong Liu #define PINMUX_GPIO159__FUNC_GPIO159 (MTK_PIN_NO(159) | 0)
1059*338e953fSGuodong Liu #define PINMUX_GPIO159__FUNC_PWRAP_SPI0_MO (MTK_PIN_NO(159) | 1)
1060*338e953fSGuodong Liu #define PINMUX_GPIO159__FUNC_PWRAP_SPI0_MI (MTK_PIN_NO(159) | 2)
1061*338e953fSGuodong Liu 
1062*338e953fSGuodong Liu #define PINMUX_GPIO160__FUNC_GPIO160 (MTK_PIN_NO(160) | 0)
1063*338e953fSGuodong Liu #define PINMUX_GPIO160__FUNC_PWRAP_SPI0_MI (MTK_PIN_NO(160) | 1)
1064*338e953fSGuodong Liu #define PINMUX_GPIO160__FUNC_PWRAP_SPI0_MO (MTK_PIN_NO(160) | 2)
1065*338e953fSGuodong Liu 
1066*338e953fSGuodong Liu #define PINMUX_GPIO161__FUNC_GPIO161 (MTK_PIN_NO(161) | 0)
1067*338e953fSGuodong Liu #define PINMUX_GPIO161__FUNC_SRCLKENA0 (MTK_PIN_NO(161) | 1)
1068*338e953fSGuodong Liu 
1069*338e953fSGuodong Liu #define PINMUX_GPIO162__FUNC_GPIO162 (MTK_PIN_NO(162) | 0)
1070*338e953fSGuodong Liu #define PINMUX_GPIO162__FUNC_SRCLKENA1 (MTK_PIN_NO(162) | 1)
1071*338e953fSGuodong Liu #define PINMUX_GPIO162__FUNC_DBG_MON_A31 (MTK_PIN_NO(162) | 7)
1072*338e953fSGuodong Liu 
1073*338e953fSGuodong Liu #define PINMUX_GPIO163__FUNC_GPIO163 (MTK_PIN_NO(163) | 0)
1074*338e953fSGuodong Liu #define PINMUX_GPIO163__FUNC_SCP_VREQ_VAO (MTK_PIN_NO(163) | 1)
1075*338e953fSGuodong Liu #define PINMUX_GPIO163__FUNC_DVFSRC_EXT_REQ (MTK_PIN_NO(163) | 2)
1076*338e953fSGuodong Liu 
1077*338e953fSGuodong Liu #define PINMUX_GPIO164__FUNC_GPIO164 (MTK_PIN_NO(164) | 0)
1078*338e953fSGuodong Liu #define PINMUX_GPIO164__FUNC_RTC32K_CK (MTK_PIN_NO(164) | 1)
1079*338e953fSGuodong Liu 
1080*338e953fSGuodong Liu #define PINMUX_GPIO165__FUNC_GPIO165 (MTK_PIN_NO(165) | 0)
1081*338e953fSGuodong Liu #define PINMUX_GPIO165__FUNC_WATCHDOG (MTK_PIN_NO(165) | 1)
1082*338e953fSGuodong Liu 
1083*338e953fSGuodong Liu #define PINMUX_GPIO166__FUNC_GPIO166 (MTK_PIN_NO(166) | 0)
1084*338e953fSGuodong Liu #define PINMUX_GPIO166__FUNC_AUD_CLK_MOSI (MTK_PIN_NO(166) | 1)
1085*338e953fSGuodong Liu #define PINMUX_GPIO166__FUNC_AUD_CLK_MISO (MTK_PIN_NO(166) | 2)
1086*338e953fSGuodong Liu #define PINMUX_GPIO166__FUNC_I2S1_MCK (MTK_PIN_NO(166) | 3)
1087*338e953fSGuodong Liu 
1088*338e953fSGuodong Liu #define PINMUX_GPIO167__FUNC_GPIO167 (MTK_PIN_NO(167) | 0)
1089*338e953fSGuodong Liu #define PINMUX_GPIO167__FUNC_AUD_SYNC_MOSI (MTK_PIN_NO(167) | 1)
1090*338e953fSGuodong Liu #define PINMUX_GPIO167__FUNC_AUD_SYNC_MISO (MTK_PIN_NO(167) | 2)
1091*338e953fSGuodong Liu #define PINMUX_GPIO167__FUNC_I2S1_BCK (MTK_PIN_NO(167) | 3)
1092*338e953fSGuodong Liu 
1093*338e953fSGuodong Liu #define PINMUX_GPIO168__FUNC_GPIO168 (MTK_PIN_NO(168) | 0)
1094*338e953fSGuodong Liu #define PINMUX_GPIO168__FUNC_AUD_DAT_MOSI0 (MTK_PIN_NO(168) | 1)
1095*338e953fSGuodong Liu #define PINMUX_GPIO168__FUNC_AUD_DAT_MISO0 (MTK_PIN_NO(168) | 2)
1096*338e953fSGuodong Liu #define PINMUX_GPIO168__FUNC_I2S1_LRCK (MTK_PIN_NO(168) | 3)
1097*338e953fSGuodong Liu 
1098*338e953fSGuodong Liu #define PINMUX_GPIO169__FUNC_GPIO169 (MTK_PIN_NO(169) | 0)
1099*338e953fSGuodong Liu #define PINMUX_GPIO169__FUNC_AUD_DAT_MOSI1 (MTK_PIN_NO(169) | 1)
1100*338e953fSGuodong Liu #define PINMUX_GPIO169__FUNC_AUD_DAT_MISO1 (MTK_PIN_NO(169) | 2)
1101*338e953fSGuodong Liu #define PINMUX_GPIO169__FUNC_I2S1_DO (MTK_PIN_NO(169) | 3)
1102*338e953fSGuodong Liu 
1103*338e953fSGuodong Liu #define PINMUX_GPIO170__FUNC_GPIO170 (MTK_PIN_NO(170) | 0)
1104*338e953fSGuodong Liu #define PINMUX_GPIO170__FUNC_AUD_CLK_MISO (MTK_PIN_NO(170) | 1)
1105*338e953fSGuodong Liu #define PINMUX_GPIO170__FUNC_AUD_CLK_MOSI (MTK_PIN_NO(170) | 2)
1106*338e953fSGuodong Liu #define PINMUX_GPIO170__FUNC_I2S2_MCK (MTK_PIN_NO(170) | 3)
1107*338e953fSGuodong Liu 
1108*338e953fSGuodong Liu #define PINMUX_GPIO171__FUNC_GPIO171 (MTK_PIN_NO(171) | 0)
1109*338e953fSGuodong Liu #define PINMUX_GPIO171__FUNC_AUD_SYNC_MISO (MTK_PIN_NO(171) | 1)
1110*338e953fSGuodong Liu #define PINMUX_GPIO171__FUNC_AUD_SYNC_MOSI (MTK_PIN_NO(171) | 2)
1111*338e953fSGuodong Liu #define PINMUX_GPIO171__FUNC_I2S2_BCK (MTK_PIN_NO(171) | 3)
1112*338e953fSGuodong Liu 
1113*338e953fSGuodong Liu #define PINMUX_GPIO172__FUNC_GPIO172 (MTK_PIN_NO(172) | 0)
1114*338e953fSGuodong Liu #define PINMUX_GPIO172__FUNC_AUD_DAT_MISO0 (MTK_PIN_NO(172) | 1)
1115*338e953fSGuodong Liu #define PINMUX_GPIO172__FUNC_AUD_DAT_MOSI0 (MTK_PIN_NO(172) | 2)
1116*338e953fSGuodong Liu #define PINMUX_GPIO172__FUNC_I2S2_LRCK (MTK_PIN_NO(172) | 3)
1117*338e953fSGuodong Liu #define PINMUX_GPIO172__FUNC_VOW_DAT_MISO (MTK_PIN_NO(172) | 4)
1118*338e953fSGuodong Liu 
1119*338e953fSGuodong Liu #define PINMUX_GPIO173__FUNC_GPIO173 (MTK_PIN_NO(173) | 0)
1120*338e953fSGuodong Liu #define PINMUX_GPIO173__FUNC_AUD_DAT_MISO1 (MTK_PIN_NO(173) | 1)
1121*338e953fSGuodong Liu #define PINMUX_GPIO173__FUNC_AUD_DAT_MOSI1 (MTK_PIN_NO(173) | 2)
1122*338e953fSGuodong Liu #define PINMUX_GPIO173__FUNC_I2S2_DI (MTK_PIN_NO(173) | 3)
1123*338e953fSGuodong Liu #define PINMUX_GPIO173__FUNC_VOW_CLK_MISO (MTK_PIN_NO(173) | 4)
1124*338e953fSGuodong Liu 
1125*338e953fSGuodong Liu #define PINMUX_GPIO174__FUNC_GPIO174 (MTK_PIN_NO(174) | 0)
1126*338e953fSGuodong Liu #define PINMUX_GPIO174__FUNC_CONN_TOP_CLK (MTK_PIN_NO(174) | 1)
1127*338e953fSGuodong Liu #define PINMUX_GPIO174__FUNC_AUXIF_CLK (MTK_PIN_NO(174) | 2)
1128*338e953fSGuodong Liu #define PINMUX_GPIO174__FUNC_DFD_TCK_XI (MTK_PIN_NO(174) | 3)
1129*338e953fSGuodong Liu #define PINMUX_GPIO174__FUNC_DBG_MON_B3 (MTK_PIN_NO(174) | 7)
1130*338e953fSGuodong Liu 
1131*338e953fSGuodong Liu #define PINMUX_GPIO175__FUNC_GPIO175 (MTK_PIN_NO(175) | 0)
1132*338e953fSGuodong Liu #define PINMUX_GPIO175__FUNC_CONN_TOP_DATA (MTK_PIN_NO(175) | 1)
1133*338e953fSGuodong Liu #define PINMUX_GPIO175__FUNC_AUXIF_ST (MTK_PIN_NO(175) | 2)
1134*338e953fSGuodong Liu #define PINMUX_GPIO175__FUNC_DFD_TMS (MTK_PIN_NO(175) | 3)
1135*338e953fSGuodong Liu #define PINMUX_GPIO175__FUNC_DBG_MON_B15 (MTK_PIN_NO(175) | 7)
1136*338e953fSGuodong Liu 
1137*338e953fSGuodong Liu #define PINMUX_GPIO176__FUNC_GPIO176 (MTK_PIN_NO(176) | 0)
1138*338e953fSGuodong Liu #define PINMUX_GPIO176__FUNC_CONN_BT_CLK (MTK_PIN_NO(176) | 1)
1139*338e953fSGuodong Liu #define PINMUX_GPIO176__FUNC_DFD_TDI (MTK_PIN_NO(176) | 3)
1140*338e953fSGuodong Liu #define PINMUX_GPIO176__FUNC_DBG_MON_B2 (MTK_PIN_NO(176) | 7)
1141*338e953fSGuodong Liu 
1142*338e953fSGuodong Liu #define PINMUX_GPIO177__FUNC_GPIO177 (MTK_PIN_NO(177) | 0)
1143*338e953fSGuodong Liu #define PINMUX_GPIO177__FUNC_CONN_BT_DATA (MTK_PIN_NO(177) | 1)
1144*338e953fSGuodong Liu #define PINMUX_GPIO177__FUNC_DFD_TDO (MTK_PIN_NO(177) | 3)
1145*338e953fSGuodong Liu 
1146*338e953fSGuodong Liu #define PINMUX_GPIO178__FUNC_GPIO178 (MTK_PIN_NO(178) | 0)
1147*338e953fSGuodong Liu #define PINMUX_GPIO178__FUNC_CONN_HRST_B (MTK_PIN_NO(178) | 1)
1148*338e953fSGuodong Liu #define PINMUX_GPIO178__FUNC_UDI_TMS (MTK_PIN_NO(178) | 3)
1149*338e953fSGuodong Liu #define PINMUX_GPIO178__FUNC_DBG_MON_B25 (MTK_PIN_NO(178) | 7)
1150*338e953fSGuodong Liu 
1151*338e953fSGuodong Liu #define PINMUX_GPIO179__FUNC_GPIO179 (MTK_PIN_NO(179) | 0)
1152*338e953fSGuodong Liu #define PINMUX_GPIO179__FUNC_CONN_WB_PTA (MTK_PIN_NO(179) | 1)
1153*338e953fSGuodong Liu #define PINMUX_GPIO179__FUNC_UDI_TCK (MTK_PIN_NO(179) | 3)
1154*338e953fSGuodong Liu #define PINMUX_GPIO179__FUNC_DBG_MON_B29 (MTK_PIN_NO(179) | 7)
1155*338e953fSGuodong Liu 
1156*338e953fSGuodong Liu #define PINMUX_GPIO180__FUNC_GPIO180 (MTK_PIN_NO(180) | 0)
1157*338e953fSGuodong Liu #define PINMUX_GPIO180__FUNC_CONN_WF_CTRL0 (MTK_PIN_NO(180) | 1)
1158*338e953fSGuodong Liu #define PINMUX_GPIO180__FUNC_UDI_TDI (MTK_PIN_NO(180) | 3)
1159*338e953fSGuodong Liu 
1160*338e953fSGuodong Liu #define PINMUX_GPIO181__FUNC_GPIO181 (MTK_PIN_NO(181) | 0)
1161*338e953fSGuodong Liu #define PINMUX_GPIO181__FUNC_CONN_WF_CTRL1 (MTK_PIN_NO(181) | 1)
1162*338e953fSGuodong Liu #define PINMUX_GPIO181__FUNC_UDI_TDO (MTK_PIN_NO(181) | 3)
1163*338e953fSGuodong Liu 
1164*338e953fSGuodong Liu #define PINMUX_GPIO182__FUNC_GPIO182 (MTK_PIN_NO(182) | 0)
1165*338e953fSGuodong Liu #define PINMUX_GPIO182__FUNC_CONN_WF_CTRL2 (MTK_PIN_NO(182) | 1)
1166*338e953fSGuodong Liu #define PINMUX_GPIO182__FUNC_UDI_NTRST (MTK_PIN_NO(182) | 3)
1167*338e953fSGuodong Liu 
1168*338e953fSGuodong Liu #define PINMUX_GPIO183__FUNC_GPIO183 (MTK_PIN_NO(183) | 0)
1169*338e953fSGuodong Liu #define PINMUX_GPIO183__FUNC_SPMI_SCL (MTK_PIN_NO(183) | 1)
1170*338e953fSGuodong Liu 
1171*338e953fSGuodong Liu #define PINMUX_GPIO184__FUNC_GPIO184 (MTK_PIN_NO(184) | 0)
1172*338e953fSGuodong Liu #define PINMUX_GPIO184__FUNC_SPMI_SDA (MTK_PIN_NO(184) | 1)
1173*338e953fSGuodong Liu 
1174*338e953fSGuodong Liu #endif /* __MT8186_PINFUNC_H */
1175