1*7ef62cebSEmmanuel Vadot /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ 2*7ef62cebSEmmanuel Vadot /* 3*7ef62cebSEmmanuel Vadot * Copyright (C) 2022 MediaTek Inc. 4*7ef62cebSEmmanuel Vadot * Author: Hui Liu <hui.liu@mediatek.com> 5*7ef62cebSEmmanuel Vadot */ 6*7ef62cebSEmmanuel Vadot 7*7ef62cebSEmmanuel Vadot #ifndef __MEDIATEK_MT8188_PINFUNC_H 8*7ef62cebSEmmanuel Vadot #define __MEDIATEK_MT8188_PINFUNC_H 9*7ef62cebSEmmanuel Vadot 10*7ef62cebSEmmanuel Vadot #include "mt65xx.h" 11*7ef62cebSEmmanuel Vadot 12*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_B_GPIO0 (MTK_PIN_NO(0) | 0) 13*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_B0_TP_GPIO0_AO (MTK_PIN_NO(0) | 1) 14*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_O_SPIM5_CSB (MTK_PIN_NO(0) | 2) 15*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_O_UTXD1 (MTK_PIN_NO(0) | 3) 16*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_O_DMIC3_CLK (MTK_PIN_NO(0) | 4) 17*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_B0_I2SIN_MCK (MTK_PIN_NO(0) | 5) 18*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_O_I2SO2_MCK (MTK_PIN_NO(0) | 6) 19*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO0__FUNC_B0_DBG_MON_A0 (MTK_PIN_NO(0) | 7) 20*7ef62cebSEmmanuel Vadot 21*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_B_GPIO1 (MTK_PIN_NO(1) | 0) 22*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_B0_TP_GPIO1_AO (MTK_PIN_NO(1) | 1) 23*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_O_SPIM5_CLK (MTK_PIN_NO(1) | 2) 24*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_I1_URXD1 (MTK_PIN_NO(1) | 3) 25*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_I0_DMIC3_DAT (MTK_PIN_NO(1) | 4) 26*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_B0_I2SIN_BCK (MTK_PIN_NO(1) | 5) 27*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_B0_I2SO2_BCK (MTK_PIN_NO(1) | 6) 28*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO1__FUNC_B0_DBG_MON_A1 (MTK_PIN_NO(1) | 7) 29*7ef62cebSEmmanuel Vadot 30*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B_GPIO2 (MTK_PIN_NO(2) | 0) 31*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B0_TP_GPIO2_AO (MTK_PIN_NO(2) | 1) 32*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B0_SPIM5_MOSI (MTK_PIN_NO(2) | 2) 33*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_O_URTS1 (MTK_PIN_NO(2) | 3) 34*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_I0_DMIC3_DAT_R (MTK_PIN_NO(2) | 4) 35*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B0_I2SIN_WS (MTK_PIN_NO(2) | 5) 36*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B0_I2SO2_WS (MTK_PIN_NO(2) | 6) 37*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO2__FUNC_B0_DBG_MON_A2 (MTK_PIN_NO(2) | 7) 38*7ef62cebSEmmanuel Vadot 39*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_B_GPIO3 (MTK_PIN_NO(3) | 0) 40*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_B0_TP_GPIO3_AO (MTK_PIN_NO(3) | 1) 41*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_B0_SPIM5_MISO (MTK_PIN_NO(3) | 2) 42*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_I1_UCTS1 (MTK_PIN_NO(3) | 3) 43*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_O_DMIC4_CLK (MTK_PIN_NO(3) | 4) 44*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_I0_I2SIN_D0 (MTK_PIN_NO(3) | 5) 45*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_O_I2SO2_D0 (MTK_PIN_NO(3) | 6) 46*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO3__FUNC_B0_DBG_MON_A3 (MTK_PIN_NO(3) | 7) 47*7ef62cebSEmmanuel Vadot 48*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_B_GPIO4 (MTK_PIN_NO(4) | 0) 49*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_B0_TP_GPIO4_AO (MTK_PIN_NO(4) | 1) 50*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_I0_SPDIF_IN2 (MTK_PIN_NO(4) | 2) 51*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_O_I2SO1_MCK (MTK_PIN_NO(4) | 3) 52*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_I0_DMIC4_DAT (MTK_PIN_NO(4) | 4) 53*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_I0_I2SIN_D1 (MTK_PIN_NO(4) | 5) 54*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_O_I2SO2_D1 (MTK_PIN_NO(4) | 6) 55*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO4__FUNC_B0_DBG_MON_A4 (MTK_PIN_NO(4) | 7) 56*7ef62cebSEmmanuel Vadot 57*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_B_GPIO5 (MTK_PIN_NO(5) | 0) 58*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_B0_TP_GPIO5_AO (MTK_PIN_NO(5) | 1) 59*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_I0_SPDIF_IN1 (MTK_PIN_NO(5) | 2) 60*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_O_I2SO1_BCK (MTK_PIN_NO(5) | 3) 61*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_I0_DMIC4_DAT_R (MTK_PIN_NO(5) | 4) 62*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_I0_I2SIN_D2 (MTK_PIN_NO(5) | 5) 63*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_O_I2SO2_D2 (MTK_PIN_NO(5) | 6) 64*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO5__FUNC_B0_DBG_MON_A5 (MTK_PIN_NO(5) | 7) 65*7ef62cebSEmmanuel Vadot 66*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_B_GPIO6 (MTK_PIN_NO(6) | 0) 67*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_B0_TP_GPIO6_AO (MTK_PIN_NO(6) | 1) 68*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_I0_SPDIF_IN0 (MTK_PIN_NO(6) | 2) 69*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_O_I2SO1_WS (MTK_PIN_NO(6) | 3) 70*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_O_DMIC1_CLK (MTK_PIN_NO(6) | 4) 71*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_I0_I2SIN_D3 (MTK_PIN_NO(6) | 5) 72*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_O_I2SO2_D3 (MTK_PIN_NO(6) | 6) 73*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO6__FUNC_B0_MD32_0_GPIO0 (MTK_PIN_NO(6) | 7) 74*7ef62cebSEmmanuel Vadot 75*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_B_GPIO7 (MTK_PIN_NO(7) | 0) 76*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_B0_TP_GPIO7_AO (MTK_PIN_NO(7) | 1) 77*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_O_SPIM3_CSB (MTK_PIN_NO(7) | 2) 78*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(7) | 3) 79*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_I0_DMIC1_DAT (MTK_PIN_NO(7) | 4) 80*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_O_CMVREF0 (MTK_PIN_NO(7) | 5) 81*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_O_CLKM0 (MTK_PIN_NO(7) | 6) 82*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO7__FUNC_B0_DBG_MON_A6 (MTK_PIN_NO(7) | 7) 83*7ef62cebSEmmanuel Vadot 84*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_B_GPIO8 (MTK_PIN_NO(8) | 0) 85*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_B0_TP_GPIO0_AO (MTK_PIN_NO(8) | 1) 86*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_O_SPIM3_CLK (MTK_PIN_NO(8) | 2) 87*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(8) | 3) 88*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_I0_DMIC1_DAT_R (MTK_PIN_NO(8) | 4) 89*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_O_CMVREF1 (MTK_PIN_NO(8) | 5) 90*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_O_CLKM1 (MTK_PIN_NO(8) | 6) 91*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO8__FUNC_B0_DBG_MON_A7 (MTK_PIN_NO(8) | 7) 92*7ef62cebSEmmanuel Vadot 93*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_B_GPIO9 (MTK_PIN_NO(9) | 0) 94*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_B0_TP_GPIO1_AO (MTK_PIN_NO(9) | 1) 95*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_B0_SPIM3_MOSI (MTK_PIN_NO(9) | 2) 96*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(9) | 3) 97*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_O_DMIC2_CLK (MTK_PIN_NO(9) | 4) 98*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_O_CMFLASH0 (MTK_PIN_NO(9) | 5) 99*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_O_PWM_0 (MTK_PIN_NO(9) | 6) 100*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO9__FUNC_B0_DBG_MON_A8 (MTK_PIN_NO(9) | 7) 101*7ef62cebSEmmanuel Vadot 102*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_B_GPIO10 (MTK_PIN_NO(10) | 0) 103*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_B0_TP_GPIO2_AO (MTK_PIN_NO(10) | 1) 104*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_B0_SPIM3_MISO (MTK_PIN_NO(10) | 2) 105*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_I0_TDMIN_DI (MTK_PIN_NO(10) | 3) 106*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_I0_DMIC2_DAT (MTK_PIN_NO(10) | 4) 107*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_O_CMFLASH1 (MTK_PIN_NO(10) | 5) 108*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_O_PWM_1 (MTK_PIN_NO(10) | 6) 109*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO10__FUNC_B0_DBG_MON_A9 (MTK_PIN_NO(10) | 7) 110*7ef62cebSEmmanuel Vadot 111*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_B_GPIO11 (MTK_PIN_NO(11) | 0) 112*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_B0_TP_GPIO3_AO (MTK_PIN_NO(11) | 1) 113*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_O_SPDIF_OUT (MTK_PIN_NO(11) | 2) 114*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_O_I2SO1_D0 (MTK_PIN_NO(11) | 3) 115*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_I0_DMIC2_DAT_R (MTK_PIN_NO(11) | 4) 116*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_I0_DVFSRC_EXT_REQ (MTK_PIN_NO(11) | 5) 117*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_O_CMVREF6 (MTK_PIN_NO(11) | 6) 118*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO11__FUNC_B0_DBG_MON_A10 (MTK_PIN_NO(11) | 7) 119*7ef62cebSEmmanuel Vadot 120*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_B_GPIO12 (MTK_PIN_NO(12) | 0) 121*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_B0_TP_GPIO4_AO (MTK_PIN_NO(12) | 1) 122*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_O_SPIM4_CSB (MTK_PIN_NO(12) | 2) 123*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_B1_JTMS_SEL3 (MTK_PIN_NO(12) | 3) 124*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_B1_APU_JTAG_TMS (MTK_PIN_NO(12) | 4) 125*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_I0_VPU_UDI_TMS (MTK_PIN_NO(12) | 5) 126*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_I0_IPU_JTAG_TMS (MTK_PIN_NO(12) | 6) 127*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO12__FUNC_I0_HDMITX20_HTPLG (MTK_PIN_NO(12) | 7) 128*7ef62cebSEmmanuel Vadot 129*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_B_GPIO13 (MTK_PIN_NO(13) | 0) 130*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_B0_TP_GPIO5_AO (MTK_PIN_NO(13) | 1) 131*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_O_SPIM4_CLK (MTK_PIN_NO(13) | 2) 132*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_I0_JTCK_SEL3 (MTK_PIN_NO(13) | 3) 133*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_I0_APU_JTAG_TCK (MTK_PIN_NO(13) | 4) 134*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_I0_VPU_UDI_TCK (MTK_PIN_NO(13) | 5) 135*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_I0_IPU_JTAG_TCK (MTK_PIN_NO(13) | 6) 136*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO13__FUNC_B1_HDMITX20_CEC (MTK_PIN_NO(13) | 7) 137*7ef62cebSEmmanuel Vadot 138*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_B_GPIO14 (MTK_PIN_NO(14) | 0) 139*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_B0_TP_GPIO6_AO (MTK_PIN_NO(14) | 1) 140*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_B0_SPIM4_MOSI (MTK_PIN_NO(14) | 2) 141*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_I1_JTDI_SEL3 (MTK_PIN_NO(14) | 3) 142*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_I1_APU_JTAG_TDI (MTK_PIN_NO(14) | 4) 143*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_I0_VPU_UDI_TDI (MTK_PIN_NO(14) | 5) 144*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_I0_IPU_JTAG_TDI (MTK_PIN_NO(14) | 6) 145*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO14__FUNC_B1_HDMITX20_SCL (MTK_PIN_NO(14) | 7) 146*7ef62cebSEmmanuel Vadot 147*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_B_GPIO15 (MTK_PIN_NO(15) | 0) 148*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_B0_TP_GPIO7_AO (MTK_PIN_NO(15) | 1) 149*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_B0_SPIM4_MISO (MTK_PIN_NO(15) | 2) 150*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_O_JTDO_SEL3 (MTK_PIN_NO(15) | 3) 151*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_O_APU_JTAG_TDO (MTK_PIN_NO(15) | 4) 152*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_O_VPU_UDI_TDO (MTK_PIN_NO(15) | 5) 153*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_O_IPU_JTAG_TDO (MTK_PIN_NO(15) | 6) 154*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO15__FUNC_B1_HDMITX20_SDA (MTK_PIN_NO(15) | 7) 155*7ef62cebSEmmanuel Vadot 156*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_B_GPIO16 (MTK_PIN_NO(16) | 0) 157*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_B0_TP_GPIO0_AO (MTK_PIN_NO(16) | 1) 158*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_O_UTXD3 (MTK_PIN_NO(16) | 2) 159*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_I1_JTRSTn_SEL3 (MTK_PIN_NO(16) | 3) 160*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_I0_APU_JTAG_TRST (MTK_PIN_NO(16) | 4) 161*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_I0_VPU_UDI_NTRST (MTK_PIN_NO(16) | 5) 162*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_I0_IPU_JTAG_TRST (MTK_PIN_NO(16) | 6) 163*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO16__FUNC_O_HDMITX20_PWR5V (MTK_PIN_NO(16) | 7) 164*7ef62cebSEmmanuel Vadot 165*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_B_GPIO17 (MTK_PIN_NO(17) | 0) 166*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_B0_TP_GPIO1_AO (MTK_PIN_NO(17) | 1) 167*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_I1_URXD3 (MTK_PIN_NO(17) | 2) 168*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_O_CMFLASH2 (MTK_PIN_NO(17) | 3) 169*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(17) | 4) 170*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_I0_DVFSRC_EXT_REQ (MTK_PIN_NO(17) | 5) 171*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_O_CMVREF7 (MTK_PIN_NO(17) | 6) 172*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO17__FUNC_B0_MD32_0_GPIO1 (MTK_PIN_NO(17) | 7) 173*7ef62cebSEmmanuel Vadot 174*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_B_GPIO18 (MTK_PIN_NO(18) | 0) 175*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_B0_TP_GPIO2_AO (MTK_PIN_NO(18) | 1) 176*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_O_CMFLASH0 (MTK_PIN_NO(18) | 2) 177*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_O_CMVREF4 (MTK_PIN_NO(18) | 3) 178*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(18) | 4) 179*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_O_UTXD1 (MTK_PIN_NO(18) | 5) 180*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_O_TP_UTXD1_AO (MTK_PIN_NO(18) | 6) 181*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO18__FUNC_B0_DBG_MON_A11 (MTK_PIN_NO(18) | 7) 182*7ef62cebSEmmanuel Vadot 183*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_B_GPIO19 (MTK_PIN_NO(19) | 0) 184*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_B0_TP_GPIO3_AO (MTK_PIN_NO(19) | 1) 185*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_O_CMFLASH1 (MTK_PIN_NO(19) | 2) 186*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_O_CMVREF5 (MTK_PIN_NO(19) | 3) 187*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(19) | 4) 188*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_I1_URXD1 (MTK_PIN_NO(19) | 5) 189*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_I1_TP_URXD1_AO (MTK_PIN_NO(19) | 6) 190*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO19__FUNC_B0_DBG_MON_A12 (MTK_PIN_NO(19) | 7) 191*7ef62cebSEmmanuel Vadot 192*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_B_GPIO20 (MTK_PIN_NO(20) | 0) 193*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_B0_TP_GPIO4_AO (MTK_PIN_NO(20) | 1) 194*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_O_CMFLASH2 (MTK_PIN_NO(20) | 2) 195*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_O_CLKM2 (MTK_PIN_NO(20) | 3) 196*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(20) | 4) 197*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_O_URTS1 (MTK_PIN_NO(20) | 5) 198*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_O_TP_URTS1_AO (MTK_PIN_NO(20) | 6) 199*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO20__FUNC_B0_DBG_MON_A13 (MTK_PIN_NO(20) | 7) 200*7ef62cebSEmmanuel Vadot 201*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_B_GPIO21 (MTK_PIN_NO(21) | 0) 202*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_B0_TP_GPIO5_AO (MTK_PIN_NO(21) | 1) 203*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_O_CMFLASH3 (MTK_PIN_NO(21) | 2) 204*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_O_CLKM3 (MTK_PIN_NO(21) | 3) 205*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_I0_TDMIN_DI (MTK_PIN_NO(21) | 4) 206*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_I1_UCTS1 (MTK_PIN_NO(21) | 5) 207*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_I1_TP_UCTS1_AO (MTK_PIN_NO(21) | 6) 208*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO21__FUNC_B0_DBG_MON_A14 (MTK_PIN_NO(21) | 7) 209*7ef62cebSEmmanuel Vadot 210*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO22__FUNC_B_GPIO22 (MTK_PIN_NO(22) | 0) 211*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO22__FUNC_O_CMMCLK0 (MTK_PIN_NO(22) | 1) 212*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO22__FUNC_B0_TP_GPIO6_AO (MTK_PIN_NO(22) | 5) 213*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO22__FUNC_B0_DBG_MON_A15 (MTK_PIN_NO(22) | 7) 214*7ef62cebSEmmanuel Vadot 215*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_B_GPIO23 (MTK_PIN_NO(23) | 0) 216*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_O_CMMCLK1 (MTK_PIN_NO(23) | 1) 217*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_O_PWM_2 (MTK_PIN_NO(23) | 3) 218*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_B1_PCIE_PHY_I2C_SCL (MTK_PIN_NO(23) | 4) 219*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_B0_TP_GPIO7_AO (MTK_PIN_NO(23) | 5) 220*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_I0_DP_TX_HPD (MTK_PIN_NO(23) | 6) 221*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO23__FUNC_B0_DBG_MON_A16 (MTK_PIN_NO(23) | 7) 222*7ef62cebSEmmanuel Vadot 223*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_B_GPIO24 (MTK_PIN_NO(24) | 0) 224*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_O_CMMCLK2 (MTK_PIN_NO(24) | 1) 225*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_O_PWM_3 (MTK_PIN_NO(24) | 3) 226*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_B1_PCIE_PHY_I2C_SDA (MTK_PIN_NO(24) | 4) 227*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_I0_DVFSRC_EXT_REQ (MTK_PIN_NO(24) | 5) 228*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(24) | 6) 229*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO24__FUNC_B0_MD32_0_GPIO2 (MTK_PIN_NO(24) | 7) 230*7ef62cebSEmmanuel Vadot 231*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO25__FUNC_B_GPIO25 (MTK_PIN_NO(25) | 0) 232*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO25__FUNC_O_LCM_RST (MTK_PIN_NO(25) | 1) 233*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO25__FUNC_O_LCM1_RST (MTK_PIN_NO(25) | 2) 234*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO25__FUNC_I0_DP_TX_HPD (MTK_PIN_NO(25) | 3) 235*7ef62cebSEmmanuel Vadot 236*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO26__FUNC_B_GPIO26 (MTK_PIN_NO(26) | 0) 237*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO26__FUNC_I0_DSI_TE (MTK_PIN_NO(26) | 1) 238*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO26__FUNC_I0_DSI1_TE (MTK_PIN_NO(26) | 2) 239*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO26__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(26) | 3) 240*7ef62cebSEmmanuel Vadot 241*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_B_GPIO27 (MTK_PIN_NO(27) | 0) 242*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_O_LCM1_RST (MTK_PIN_NO(27) | 1) 243*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_O_LCM_RST (MTK_PIN_NO(27) | 2) 244*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_I0_DP_TX_HPD (MTK_PIN_NO(27) | 3) 245*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_O_CMVREF2 (MTK_PIN_NO(27) | 4) 246*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_O_mbistwriteen_trigger (MTK_PIN_NO(27) | 5) 247*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_O_PWM_2 (MTK_PIN_NO(27) | 6) 248*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO27__FUNC_B0_DBG_MON_A17 (MTK_PIN_NO(27) | 7) 249*7ef62cebSEmmanuel Vadot 250*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_B_GPIO28 (MTK_PIN_NO(28) | 0) 251*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_I0_DSI1_TE (MTK_PIN_NO(28) | 1) 252*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_I0_DSI_TE (MTK_PIN_NO(28) | 2) 253*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(28) | 3) 254*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_O_CMVREF3 (MTK_PIN_NO(28) | 4) 255*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_O_mbistreaden_trigger (MTK_PIN_NO(28) | 5) 256*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_O_PWM_3 (MTK_PIN_NO(28) | 6) 257*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO28__FUNC_B0_DBG_MON_A18 (MTK_PIN_NO(28) | 7) 258*7ef62cebSEmmanuel Vadot 259*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO29__FUNC_B_GPIO29 (MTK_PIN_NO(29) | 0) 260*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO29__FUNC_O_DISP_PWM0 (MTK_PIN_NO(29) | 1) 261*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO29__FUNC_O_DISP_PWM1 (MTK_PIN_NO(29) | 2) 262*7ef62cebSEmmanuel Vadot 263*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_B_GPIO30 (MTK_PIN_NO(30) | 0) 264*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_O_DISP_PWM1 (MTK_PIN_NO(30) | 1) 265*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_O_DISP_PWM0 (MTK_PIN_NO(30) | 2) 266*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_O_CMFLASH3 (MTK_PIN_NO(30) | 3) 267*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_O_PWM_1 (MTK_PIN_NO(30) | 4) 268*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO30__FUNC_B0_DBG_MON_A19 (MTK_PIN_NO(30) | 7) 269*7ef62cebSEmmanuel Vadot 270*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_B_GPIO31 (MTK_PIN_NO(31) | 0) 271*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_UTXD0 (MTK_PIN_NO(31) | 1) 272*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_TP_UTXD1_AO (MTK_PIN_NO(31) | 2) 273*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_ADSP_UTXD0 (MTK_PIN_NO(31) | 3) 274*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_TP_UTXD2_AO (MTK_PIN_NO(31) | 4) 275*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_MD32_0_TXD (MTK_PIN_NO(31) | 5) 276*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_MD32_1_TXD (MTK_PIN_NO(31) | 6) 277*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO31__FUNC_O_SSPM_UTXD_AO (MTK_PIN_NO(31) | 7) 278*7ef62cebSEmmanuel Vadot 279*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_B_GPIO32 (MTK_PIN_NO(32) | 0) 280*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_URXD0 (MTK_PIN_NO(32) | 1) 281*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_TP_URXD1_AO (MTK_PIN_NO(32) | 2) 282*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_ADSP_URXD0 (MTK_PIN_NO(32) | 3) 283*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_TP_URXD2_AO (MTK_PIN_NO(32) | 4) 284*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_MD32_0_RXD (MTK_PIN_NO(32) | 5) 285*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_MD32_1_RXD (MTK_PIN_NO(32) | 6) 286*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO32__FUNC_I1_SSPM_URXD_AO (MTK_PIN_NO(32) | 7) 287*7ef62cebSEmmanuel Vadot 288*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_B_GPIO33 (MTK_PIN_NO(33) | 0) 289*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_UTXD1 (MTK_PIN_NO(33) | 1) 290*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_URTS2 (MTK_PIN_NO(33) | 2) 291*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_ADSP_UTXD0 (MTK_PIN_NO(33) | 3) 292*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_TP_UTXD1_AO (MTK_PIN_NO(33) | 4) 293*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_mbistwriteen_trigger (MTK_PIN_NO(33) | 5) 294*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_MD32_0_TXD (MTK_PIN_NO(33) | 6) 295*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO33__FUNC_O_SSPM_UTXD_AO (MTK_PIN_NO(33) | 7) 296*7ef62cebSEmmanuel Vadot 297*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_B_GPIO34 (MTK_PIN_NO(34) | 0) 298*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_URXD1 (MTK_PIN_NO(34) | 1) 299*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_UCTS2 (MTK_PIN_NO(34) | 2) 300*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_ADSP_URXD0 (MTK_PIN_NO(34) | 3) 301*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_TP_URXD1_AO (MTK_PIN_NO(34) | 4) 302*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_O_mbistreaden_trigger (MTK_PIN_NO(34) | 5) 303*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_MD32_0_RXD (MTK_PIN_NO(34) | 6) 304*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO34__FUNC_I1_SSPM_URXD_AO (MTK_PIN_NO(34) | 7) 305*7ef62cebSEmmanuel Vadot 306*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_B_GPIO35 (MTK_PIN_NO(35) | 0) 307*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_UTXD2 (MTK_PIN_NO(35) | 1) 308*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_URTS1 (MTK_PIN_NO(35) | 2) 309*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_ADSP_UTXD0 (MTK_PIN_NO(35) | 3) 310*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_TP_URTS1_AO (MTK_PIN_NO(35) | 4) 311*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_TP_UTXD2_AO (MTK_PIN_NO(35) | 5) 312*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_O_MD32_1_TXD (MTK_PIN_NO(35) | 6) 313*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO35__FUNC_B0_DBG_MON_A20 (MTK_PIN_NO(35) | 7) 314*7ef62cebSEmmanuel Vadot 315*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_B_GPIO36 (MTK_PIN_NO(36) | 0) 316*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_URXD2 (MTK_PIN_NO(36) | 1) 317*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_UCTS1 (MTK_PIN_NO(36) | 2) 318*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_ADSP_URXD0 (MTK_PIN_NO(36) | 3) 319*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_TP_UCTS1_AO (MTK_PIN_NO(36) | 4) 320*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_TP_URXD2_AO (MTK_PIN_NO(36) | 5) 321*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_I1_MD32_1_RXD (MTK_PIN_NO(36) | 6) 322*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO36__FUNC_B0_DBG_MON_A21 (MTK_PIN_NO(36) | 7) 323*7ef62cebSEmmanuel Vadot 324*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_B_GPIO37 (MTK_PIN_NO(37) | 0) 325*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_B1_JTMS_SEL1 (MTK_PIN_NO(37) | 1) 326*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I0_UDI_TMS (MTK_PIN_NO(37) | 2) 327*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I1_SPM_JTAG_TMS (MTK_PIN_NO(37) | 3) 328*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I1_ADSP_JTAG0_TMS (MTK_PIN_NO(37) | 4) 329*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I1_SCP_JTAG0_TMS (MTK_PIN_NO(37) | 5) 330*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I1_CCU0_JTAG_TMS (MTK_PIN_NO(37) | 6) 331*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO37__FUNC_I1_MCUPM_JTAG_TMS (MTK_PIN_NO(37) | 7) 332*7ef62cebSEmmanuel Vadot 333*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_B_GPIO38 (MTK_PIN_NO(38) | 0) 334*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I0_JTCK_SEL1 (MTK_PIN_NO(38) | 1) 335*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I0_UDI_TCK (MTK_PIN_NO(38) | 2) 336*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I1_SPM_JTAG_TCK (MTK_PIN_NO(38) | 3) 337*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I0_ADSP_JTAG0_TCK (MTK_PIN_NO(38) | 4) 338*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I1_SCP_JTAG0_TCK (MTK_PIN_NO(38) | 5) 339*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I1_CCU0_JTAG_TCK (MTK_PIN_NO(38) | 6) 340*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO38__FUNC_I1_MCUPM_JTAG_TCK (MTK_PIN_NO(38) | 7) 341*7ef62cebSEmmanuel Vadot 342*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_B_GPIO39 (MTK_PIN_NO(39) | 0) 343*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_JTDI_SEL1 (MTK_PIN_NO(39) | 1) 344*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I0_UDI_TDI (MTK_PIN_NO(39) | 2) 345*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_SPM_JTAG_TDI (MTK_PIN_NO(39) | 3) 346*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_ADSP_JTAG0_TDI (MTK_PIN_NO(39) | 4) 347*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_SCP_JTAG0_TDI (MTK_PIN_NO(39) | 5) 348*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_CCU0_JTAG_TDI (MTK_PIN_NO(39) | 6) 349*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO39__FUNC_I1_MCUPM_JTAG_TDI (MTK_PIN_NO(39) | 7) 350*7ef62cebSEmmanuel Vadot 351*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_B_GPIO40 (MTK_PIN_NO(40) | 0) 352*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_JTDO_SEL1 (MTK_PIN_NO(40) | 1) 353*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_UDI_TDO (MTK_PIN_NO(40) | 2) 354*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_SPM_JTAG_TDO (MTK_PIN_NO(40) | 3) 355*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_ADSP_JTAG0_TDO (MTK_PIN_NO(40) | 4) 356*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_SCP_JTAG0_TDO (MTK_PIN_NO(40) | 5) 357*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_CCU0_JTAG_TDO (MTK_PIN_NO(40) | 6) 358*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO40__FUNC_O_MCUPM_JTAG_TDO (MTK_PIN_NO(40) | 7) 359*7ef62cebSEmmanuel Vadot 360*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_B_GPIO41 (MTK_PIN_NO(41) | 0) 361*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I1_JTRSTn_SEL1 (MTK_PIN_NO(41) | 1) 362*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I0_UDI_NTRST (MTK_PIN_NO(41) | 2) 363*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I0_SPM_JTAG_TRSTN (MTK_PIN_NO(41) | 3) 364*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I1_ADSP_JTAG0_TRSTN (MTK_PIN_NO(41) | 4) 365*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I0_SCP_JTAG0_TRSTN (MTK_PIN_NO(41) | 5) 366*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I1_CCU0_JTAG_TRST (MTK_PIN_NO(41) | 6) 367*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO41__FUNC_I0_MCUPM_JTAG_TRSTN (MTK_PIN_NO(41) | 7) 368*7ef62cebSEmmanuel Vadot 369*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO42__FUNC_B_GPIO42 (MTK_PIN_NO(42) | 0) 370*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO42__FUNC_B1_KPCOL0 (MTK_PIN_NO(42) | 1) 371*7ef62cebSEmmanuel Vadot 372*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_B_GPIO43 (MTK_PIN_NO(43) | 0) 373*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_B1_KPCOL1 (MTK_PIN_NO(43) | 1) 374*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_I0_DP_TX_HPD (MTK_PIN_NO(43) | 2) 375*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_O_CMFLASH2 (MTK_PIN_NO(43) | 3) 376*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_I0_DVFSRC_EXT_REQ (MTK_PIN_NO(43) | 4) 377*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO43__FUNC_O_mbistwriteen_trigger (MTK_PIN_NO(43) | 7) 378*7ef62cebSEmmanuel Vadot 379*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO44__FUNC_B_GPIO44 (MTK_PIN_NO(44) | 0) 380*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO44__FUNC_B1_KPROW0 (MTK_PIN_NO(44) | 1) 381*7ef62cebSEmmanuel Vadot 382*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_B_GPIO45 (MTK_PIN_NO(45) | 0) 383*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_B1_KPROW1 (MTK_PIN_NO(45) | 1) 384*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(45) | 2) 385*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_O_CMFLASH3 (MTK_PIN_NO(45) | 3) 386*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_B0_I2SIN_MCK (MTK_PIN_NO(45) | 4) 387*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO45__FUNC_O_mbistreaden_trigger (MTK_PIN_NO(45) | 7) 388*7ef62cebSEmmanuel Vadot 389*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO46__FUNC_B_GPIO46 (MTK_PIN_NO(46) | 0) 390*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO46__FUNC_I0_DP_TX_HPD (MTK_PIN_NO(46) | 1) 391*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO46__FUNC_O_PWM_0 (MTK_PIN_NO(46) | 2) 392*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO46__FUNC_I0_VBUSVALID_2P (MTK_PIN_NO(46) | 3) 393*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO46__FUNC_B0_DBG_MON_A22 (MTK_PIN_NO(46) | 7) 394*7ef62cebSEmmanuel Vadot 395*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO47__FUNC_B_GPIO47 (MTK_PIN_NO(47) | 0) 396*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO47__FUNC_I1_WAKEN (MTK_PIN_NO(47) | 1) 397*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO47__FUNC_O_GDU_TROOPS_DET0 (MTK_PIN_NO(47) | 6) 398*7ef62cebSEmmanuel Vadot 399*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO48__FUNC_B_GPIO48 (MTK_PIN_NO(48) | 0) 400*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO48__FUNC_O_PERSTN (MTK_PIN_NO(48) | 1) 401*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO48__FUNC_O_GDU_TROOPS_DET1 (MTK_PIN_NO(48) | 6) 402*7ef62cebSEmmanuel Vadot 403*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO49__FUNC_B_GPIO49 (MTK_PIN_NO(49) | 0) 404*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO49__FUNC_B1_CLKREQN (MTK_PIN_NO(49) | 1) 405*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO49__FUNC_O_GDU_TROOPS_DET2 (MTK_PIN_NO(49) | 6) 406*7ef62cebSEmmanuel Vadot 407*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_B_GPIO50 (MTK_PIN_NO(50) | 0) 408*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_O_HDMITX20_PWR5V (MTK_PIN_NO(50) | 1) 409*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_I1_IDDIG_1P (MTK_PIN_NO(50) | 3) 410*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_I1_SCP_JTAG1_TMS (MTK_PIN_NO(50) | 4) 411*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_I1_SSPM_JTAG_TMS (MTK_PIN_NO(50) | 5) 412*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_I1_MD32_0_JTAG_TMS (MTK_PIN_NO(50) | 6) 413*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO50__FUNC_I1_MD32_1_JTAG_TMS (MTK_PIN_NO(50) | 7) 414*7ef62cebSEmmanuel Vadot 415*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_B_GPIO51 (MTK_PIN_NO(51) | 0) 416*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I0_HDMITX20_HTPLG (MTK_PIN_NO(51) | 1) 417*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I0_EDP_TX_HPD (MTK_PIN_NO(51) | 2) 418*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_O_USB_DRVVBUS_1P (MTK_PIN_NO(51) | 3) 419*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I1_SCP_JTAG1_TCK (MTK_PIN_NO(51) | 4) 420*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I1_SSPM_JTAG_TCK (MTK_PIN_NO(51) | 5) 421*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I1_MD32_0_JTAG_TCK (MTK_PIN_NO(51) | 6) 422*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO51__FUNC_I1_MD32_1_JTAG_TCK (MTK_PIN_NO(51) | 7) 423*7ef62cebSEmmanuel Vadot 424*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_B_GPIO52 (MTK_PIN_NO(52) | 0) 425*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_B1_HDMITX20_CEC (MTK_PIN_NO(52) | 1) 426*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_I0_VBUSVALID_1P (MTK_PIN_NO(52) | 3) 427*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_I1_SCP_JTAG1_TDI (MTK_PIN_NO(52) | 4) 428*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_I1_SSPM_JTAG_TDI (MTK_PIN_NO(52) | 5) 429*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_I1_MD32_0_JTAG_TDI (MTK_PIN_NO(52) | 6) 430*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO52__FUNC_I1_MD32_1_JTAG_TDI (MTK_PIN_NO(52) | 7) 431*7ef62cebSEmmanuel Vadot 432*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_B_GPIO53 (MTK_PIN_NO(53) | 0) 433*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_B1_HDMITX20_SCL (MTK_PIN_NO(53) | 1) 434*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_I1_IDDIG_2P (MTK_PIN_NO(53) | 3) 435*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_O_SCP_JTAG1_TDO (MTK_PIN_NO(53) | 4) 436*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_O_SSPM_JTAG_TDO (MTK_PIN_NO(53) | 5) 437*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_O_MD32_0_JTAG_TDO (MTK_PIN_NO(53) | 6) 438*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO53__FUNC_O_MD32_1_JTAG_TDO (MTK_PIN_NO(53) | 7) 439*7ef62cebSEmmanuel Vadot 440*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_B_GPIO54 (MTK_PIN_NO(54) | 0) 441*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_B1_HDMITX20_SDA (MTK_PIN_NO(54) | 1) 442*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_O_USB_DRVVBUS_2P (MTK_PIN_NO(54) | 3) 443*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_I0_SCP_JTAG1_TRSTN (MTK_PIN_NO(54) | 4) 444*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_I0_SSPM_JTAG_TRSTN (MTK_PIN_NO(54) | 5) 445*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_I1_MD32_0_JTAG_TRST (MTK_PIN_NO(54) | 6) 446*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO54__FUNC_I1_MD32_1_JTAG_TRST (MTK_PIN_NO(54) | 7) 447*7ef62cebSEmmanuel Vadot 448*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO55__FUNC_B_GPIO55 (MTK_PIN_NO(55) | 0) 449*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO55__FUNC_B1_SCL0 (MTK_PIN_NO(55) | 1) 450*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO55__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(55) | 2) 451*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO55__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(55) | 3) 452*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO55__FUNC_B1_PCIE_PHY_I2C_SCL (MTK_PIN_NO(55) | 4) 453*7ef62cebSEmmanuel Vadot 454*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO56__FUNC_B_GPIO56 (MTK_PIN_NO(56) | 0) 455*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO56__FUNC_B1_SDA0 (MTK_PIN_NO(56) | 1) 456*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO56__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(56) | 2) 457*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO56__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(56) | 3) 458*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO56__FUNC_B1_PCIE_PHY_I2C_SDA (MTK_PIN_NO(56) | 4) 459*7ef62cebSEmmanuel Vadot 460*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO57__FUNC_B_GPIO57 (MTK_PIN_NO(57) | 0) 461*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO57__FUNC_B1_SCL1 (MTK_PIN_NO(57) | 1) 462*7ef62cebSEmmanuel Vadot 463*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO58__FUNC_B_GPIO58 (MTK_PIN_NO(58) | 0) 464*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO58__FUNC_B1_SDA1 (MTK_PIN_NO(58) | 1) 465*7ef62cebSEmmanuel Vadot 466*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO59__FUNC_B_GPIO59 (MTK_PIN_NO(59) | 0) 467*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO59__FUNC_B1_SCL2 (MTK_PIN_NO(59) | 1) 468*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO59__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(59) | 2) 469*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO59__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(59) | 3) 470*7ef62cebSEmmanuel Vadot 471*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO60__FUNC_B_GPIO60 (MTK_PIN_NO(60) | 0) 472*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO60__FUNC_B1_SDA2 (MTK_PIN_NO(60) | 1) 473*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO60__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(60) | 2) 474*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO60__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(60) | 3) 475*7ef62cebSEmmanuel Vadot 476*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO61__FUNC_B_GPIO61 (MTK_PIN_NO(61) | 0) 477*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO61__FUNC_B1_SCL3 (MTK_PIN_NO(61) | 1) 478*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO61__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(61) | 2) 479*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO61__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(61) | 3) 480*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO61__FUNC_B1_PCIE_PHY_I2C_SCL (MTK_PIN_NO(61) | 4) 481*7ef62cebSEmmanuel Vadot 482*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO62__FUNC_B_GPIO62 (MTK_PIN_NO(62) | 0) 483*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO62__FUNC_B1_SDA3 (MTK_PIN_NO(62) | 1) 484*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO62__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(62) | 2) 485*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO62__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(62) | 3) 486*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO62__FUNC_B1_PCIE_PHY_I2C_SDA (MTK_PIN_NO(62) | 4) 487*7ef62cebSEmmanuel Vadot 488*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO63__FUNC_B_GPIO63 (MTK_PIN_NO(63) | 0) 489*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO63__FUNC_B1_SCL4 (MTK_PIN_NO(63) | 1) 490*7ef62cebSEmmanuel Vadot 491*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO64__FUNC_B_GPIO64 (MTK_PIN_NO(64) | 0) 492*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO64__FUNC_B1_SDA4 (MTK_PIN_NO(64) | 1) 493*7ef62cebSEmmanuel Vadot 494*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO65__FUNC_B_GPIO65 (MTK_PIN_NO(65) | 0) 495*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO65__FUNC_B1_SCL5 (MTK_PIN_NO(65) | 1) 496*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO65__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(65) | 2) 497*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO65__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(65) | 3) 498*7ef62cebSEmmanuel Vadot 499*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO66__FUNC_B_GPIO66 (MTK_PIN_NO(66) | 0) 500*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO66__FUNC_B1_SDA5 (MTK_PIN_NO(66) | 1) 501*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO66__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(66) | 2) 502*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO66__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(66) | 3) 503*7ef62cebSEmmanuel Vadot 504*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO67__FUNC_B_GPIO67 (MTK_PIN_NO(67) | 0) 505*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO67__FUNC_B1_SCL6 (MTK_PIN_NO(67) | 1) 506*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO67__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(67) | 2) 507*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO67__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(67) | 3) 508*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO67__FUNC_B1_PCIE_PHY_I2C_SCL (MTK_PIN_NO(67) | 4) 509*7ef62cebSEmmanuel Vadot 510*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO68__FUNC_B_GPIO68 (MTK_PIN_NO(68) | 0) 511*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO68__FUNC_B1_SDA6 (MTK_PIN_NO(68) | 1) 512*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO68__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(68) | 2) 513*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO68__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(68) | 3) 514*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO68__FUNC_B1_PCIE_PHY_I2C_SDA (MTK_PIN_NO(68) | 4) 515*7ef62cebSEmmanuel Vadot 516*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_B_GPIO69 (MTK_PIN_NO(69) | 0) 517*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_O_SPIM0_CSB (MTK_PIN_NO(69) | 1) 518*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_O_SCP_SPI0_CS (MTK_PIN_NO(69) | 2) 519*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_O_DMIC3_CLK (MTK_PIN_NO(69) | 3) 520*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_B0_MD32_1_GPIO0 (MTK_PIN_NO(69) | 4) 521*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_O_CMVREF0 (MTK_PIN_NO(69) | 5) 522*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_O_GDU_SUM_TROOP0_0 (MTK_PIN_NO(69) | 6) 523*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO69__FUNC_B0_DBG_MON_A23 (MTK_PIN_NO(69) | 7) 524*7ef62cebSEmmanuel Vadot 525*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_B_GPIO70 (MTK_PIN_NO(70) | 0) 526*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_O_SPIM0_CLK (MTK_PIN_NO(70) | 1) 527*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_O_SCP_SPI0_CK (MTK_PIN_NO(70) | 2) 528*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_I0_DMIC3_DAT (MTK_PIN_NO(70) | 3) 529*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_B0_MD32_1_GPIO1 (MTK_PIN_NO(70) | 4) 530*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_O_CMVREF1 (MTK_PIN_NO(70) | 5) 531*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_O_GDU_SUM_TROOP0_1 (MTK_PIN_NO(70) | 6) 532*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO70__FUNC_B0_DBG_MON_A24 (MTK_PIN_NO(70) | 7) 533*7ef62cebSEmmanuel Vadot 534*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_B_GPIO71 (MTK_PIN_NO(71) | 0) 535*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_B0_SPIM0_MOSI (MTK_PIN_NO(71) | 1) 536*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_O_SCP_SPI0_MO (MTK_PIN_NO(71) | 2) 537*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_I0_DMIC3_DAT_R (MTK_PIN_NO(71) | 3) 538*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_B0_MD32_1_GPIO2 (MTK_PIN_NO(71) | 4) 539*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_O_CMVREF2 (MTK_PIN_NO(71) | 5) 540*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_O_GDU_SUM_TROOP0_2 (MTK_PIN_NO(71) | 6) 541*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO71__FUNC_B0_DBG_MON_A25 (MTK_PIN_NO(71) | 7) 542*7ef62cebSEmmanuel Vadot 543*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_B_GPIO72 (MTK_PIN_NO(72) | 0) 544*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_B0_SPIM0_MISO (MTK_PIN_NO(72) | 1) 545*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_I0_SCP_SPI0_MI (MTK_PIN_NO(72) | 2) 546*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_O_DMIC4_CLK (MTK_PIN_NO(72) | 3) 547*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_O_CMVREF3 (MTK_PIN_NO(72) | 5) 548*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_O_GDU_SUM_TROOP1_0 (MTK_PIN_NO(72) | 6) 549*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO72__FUNC_B0_DBG_MON_A26 (MTK_PIN_NO(72) | 7) 550*7ef62cebSEmmanuel Vadot 551*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_B_GPIO73 (MTK_PIN_NO(73) | 0) 552*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_B0_SPIM0_MIO2 (MTK_PIN_NO(73) | 1) 553*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_O_UTXD3 (MTK_PIN_NO(73) | 2) 554*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_I0_DMIC4_DAT (MTK_PIN_NO(73) | 3) 555*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_O_CLKM0 (MTK_PIN_NO(73) | 4) 556*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_O_CMVREF4 (MTK_PIN_NO(73) | 5) 557*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_O_GDU_SUM_TROOP1_1 (MTK_PIN_NO(73) | 6) 558*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO73__FUNC_B0_DBG_MON_A27 (MTK_PIN_NO(73) | 7) 559*7ef62cebSEmmanuel Vadot 560*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_B_GPIO74 (MTK_PIN_NO(74) | 0) 561*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_B0_SPIM0_MIO3 (MTK_PIN_NO(74) | 1) 562*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_I1_URXD3 (MTK_PIN_NO(74) | 2) 563*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_I0_DMIC4_DAT_R (MTK_PIN_NO(74) | 3) 564*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_O_CLKM1 (MTK_PIN_NO(74) | 4) 565*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_O_CMVREF5 (MTK_PIN_NO(74) | 5) 566*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_O_GDU_SUM_TROOP1_2 (MTK_PIN_NO(74) | 6) 567*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO74__FUNC_B0_DBG_MON_A28 (MTK_PIN_NO(74) | 7) 568*7ef62cebSEmmanuel Vadot 569*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_B_GPIO75 (MTK_PIN_NO(75) | 0) 570*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_O_SPIM1_CSB (MTK_PIN_NO(75) | 1) 571*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_O_SCP_SPI1_A_CS (MTK_PIN_NO(75) | 2) 572*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(75) | 3) 573*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_B1_SCP_SCL0 (MTK_PIN_NO(75) | 4) 574*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_O_CMVREF6 (MTK_PIN_NO(75) | 5) 575*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_O_GDU_SUM_TROOP2_0 (MTK_PIN_NO(75) | 6) 576*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO75__FUNC_B0_DBG_MON_A29 (MTK_PIN_NO(75) | 7) 577*7ef62cebSEmmanuel Vadot 578*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_B_GPIO76 (MTK_PIN_NO(76) | 0) 579*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_O_SPIM1_CLK (MTK_PIN_NO(76) | 1) 580*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_O_SCP_SPI1_A_CK (MTK_PIN_NO(76) | 2) 581*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(76) | 3) 582*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_B1_SCP_SDA0 (MTK_PIN_NO(76) | 4) 583*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_O_CMVREF7 (MTK_PIN_NO(76) | 5) 584*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_O_GDU_SUM_TROOP2_1 (MTK_PIN_NO(76) | 6) 585*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO76__FUNC_B0_DBG_MON_A30 (MTK_PIN_NO(76) | 7) 586*7ef62cebSEmmanuel Vadot 587*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_B_GPIO77 (MTK_PIN_NO(77) | 0) 588*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_B0_SPIM1_MOSI (MTK_PIN_NO(77) | 1) 589*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_O_SCP_SPI1_A_MO (MTK_PIN_NO(77) | 2) 590*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(77) | 3) 591*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_B1_SCP_SCL1 (MTK_PIN_NO(77) | 4) 592*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_O_GDU_SUM_TROOP2_2 (MTK_PIN_NO(77) | 6) 593*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO77__FUNC_B0_DBG_MON_A31 (MTK_PIN_NO(77) | 7) 594*7ef62cebSEmmanuel Vadot 595*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_B_GPIO78 (MTK_PIN_NO(78) | 0) 596*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_B0_SPIM1_MISO (MTK_PIN_NO(78) | 1) 597*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_I0_SCP_SPI1_A_MI (MTK_PIN_NO(78) | 2) 598*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_I0_TDMIN_DI (MTK_PIN_NO(78) | 3) 599*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_B1_SCP_SDA1 (MTK_PIN_NO(78) | 4) 600*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO78__FUNC_B0_DBG_MON_A32 (MTK_PIN_NO(78) | 7) 601*7ef62cebSEmmanuel Vadot 602*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_B_GPIO79 (MTK_PIN_NO(79) | 0) 603*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_O_SPIM2_CSB (MTK_PIN_NO(79) | 1) 604*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_O_SCP_SPI2_CS (MTK_PIN_NO(79) | 2) 605*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_O_I2SO1_MCK (MTK_PIN_NO(79) | 3) 606*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_O_UTXD2 (MTK_PIN_NO(79) | 4) 607*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_O_TP_UTXD2_AO (MTK_PIN_NO(79) | 5) 608*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_B0_PCM_SYNC (MTK_PIN_NO(79) | 6) 609*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO79__FUNC_B0_DBG_MON_B0 (MTK_PIN_NO(79) | 7) 610*7ef62cebSEmmanuel Vadot 611*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_B_GPIO80 (MTK_PIN_NO(80) | 0) 612*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_O_SPIM2_CLK (MTK_PIN_NO(80) | 1) 613*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_O_SCP_SPI2_CK (MTK_PIN_NO(80) | 2) 614*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_O_I2SO1_BCK (MTK_PIN_NO(80) | 3) 615*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_I1_URXD2 (MTK_PIN_NO(80) | 4) 616*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_I1_TP_URXD2_AO (MTK_PIN_NO(80) | 5) 617*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_B0_PCM_CLK (MTK_PIN_NO(80) | 6) 618*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO80__FUNC_B0_DBG_MON_B1 (MTK_PIN_NO(80) | 7) 619*7ef62cebSEmmanuel Vadot 620*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_B_GPIO81 (MTK_PIN_NO(81) | 0) 621*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_B0_SPIM2_MOSI (MTK_PIN_NO(81) | 1) 622*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_O_SCP_SPI2_MO (MTK_PIN_NO(81) | 2) 623*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_O_I2SO1_WS (MTK_PIN_NO(81) | 3) 624*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_O_URTS2 (MTK_PIN_NO(81) | 4) 625*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_O_TP_URTS2_AO (MTK_PIN_NO(81) | 5) 626*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_O_PCM_DO (MTK_PIN_NO(81) | 6) 627*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO81__FUNC_B0_DBG_MON_B2 (MTK_PIN_NO(81) | 7) 628*7ef62cebSEmmanuel Vadot 629*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_B_GPIO82 (MTK_PIN_NO(82) | 0) 630*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_B0_SPIM2_MISO (MTK_PIN_NO(82) | 1) 631*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_I0_SCP_SPI2_MI (MTK_PIN_NO(82) | 2) 632*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_O_I2SO1_D0 (MTK_PIN_NO(82) | 3) 633*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_I1_UCTS2 (MTK_PIN_NO(82) | 4) 634*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_I1_TP_UCTS2_AO (MTK_PIN_NO(82) | 5) 635*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_I0_PCM_DI (MTK_PIN_NO(82) | 6) 636*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO82__FUNC_B0_DBG_MON_B3 (MTK_PIN_NO(82) | 7) 637*7ef62cebSEmmanuel Vadot 638*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO83__FUNC_B_GPIO83 (MTK_PIN_NO(83) | 0) 639*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO83__FUNC_I1_IDDIG (MTK_PIN_NO(83) | 1) 640*7ef62cebSEmmanuel Vadot 641*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO84__FUNC_B_GPIO84 (MTK_PIN_NO(84) | 0) 642*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO84__FUNC_O_USB_DRVVBUS (MTK_PIN_NO(84) | 1) 643*7ef62cebSEmmanuel Vadot 644*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO85__FUNC_B_GPIO85 (MTK_PIN_NO(85) | 0) 645*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO85__FUNC_I0_VBUSVALID (MTK_PIN_NO(85) | 1) 646*7ef62cebSEmmanuel Vadot 647*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_B_GPIO86 (MTK_PIN_NO(86) | 0) 648*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_I1_IDDIG_1P (MTK_PIN_NO(86) | 1) 649*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_O_UTXD1 (MTK_PIN_NO(86) | 2) 650*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_O_URTS2 (MTK_PIN_NO(86) | 3) 651*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_O_PWM_2 (MTK_PIN_NO(86) | 4) 652*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_B0_TP_GPIO4_AO (MTK_PIN_NO(86) | 5) 653*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_O_AUXIF_ST0 (MTK_PIN_NO(86) | 6) 654*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO86__FUNC_B0_DBG_MON_B4 (MTK_PIN_NO(86) | 7) 655*7ef62cebSEmmanuel Vadot 656*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_B_GPIO87 (MTK_PIN_NO(87) | 0) 657*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_O_USB_DRVVBUS_1P (MTK_PIN_NO(87) | 1) 658*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_I1_URXD1 (MTK_PIN_NO(87) | 2) 659*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_I1_UCTS2 (MTK_PIN_NO(87) | 3) 660*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_O_PWM_3 (MTK_PIN_NO(87) | 4) 661*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_B0_TP_GPIO5_AO (MTK_PIN_NO(87) | 5) 662*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_O_AUXIF_CLK0 (MTK_PIN_NO(87) | 6) 663*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO87__FUNC_B0_DBG_MON_B5 (MTK_PIN_NO(87) | 7) 664*7ef62cebSEmmanuel Vadot 665*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_B_GPIO88 (MTK_PIN_NO(88) | 0) 666*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_I0_VBUSVALID_1P (MTK_PIN_NO(88) | 1) 667*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_O_UTXD2 (MTK_PIN_NO(88) | 2) 668*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_O_URTS1 (MTK_PIN_NO(88) | 3) 669*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_O_CLKM2 (MTK_PIN_NO(88) | 4) 670*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_B0_TP_GPIO6_AO (MTK_PIN_NO(88) | 5) 671*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_O_AUXIF_ST1 (MTK_PIN_NO(88) | 6) 672*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO88__FUNC_B0_DBG_MON_B6 (MTK_PIN_NO(88) | 7) 673*7ef62cebSEmmanuel Vadot 674*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_B_GPIO89 (MTK_PIN_NO(89) | 0) 675*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_I1_IDDIG_2P (MTK_PIN_NO(89) | 1) 676*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_I1_URXD2 (MTK_PIN_NO(89) | 2) 677*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_I1_UCTS1 (MTK_PIN_NO(89) | 3) 678*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_O_CLKM3 (MTK_PIN_NO(89) | 4) 679*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_B0_TP_GPIO7_AO (MTK_PIN_NO(89) | 5) 680*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_O_AUXIF_CLK1 (MTK_PIN_NO(89) | 6) 681*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO89__FUNC_B0_DBG_MON_B7 (MTK_PIN_NO(89) | 7) 682*7ef62cebSEmmanuel Vadot 683*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_B_GPIO90 (MTK_PIN_NO(90) | 0) 684*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_USB_DRVVBUS_2P (MTK_PIN_NO(90) | 1) 685*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_UTXD3 (MTK_PIN_NO(90) | 2) 686*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_ADSP_UTXD0 (MTK_PIN_NO(90) | 3) 687*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_SSPM_UTXD_AO (MTK_PIN_NO(90) | 4) 688*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_MD32_0_TXD (MTK_PIN_NO(90) | 5) 689*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_O_MD32_1_TXD (MTK_PIN_NO(90) | 6) 690*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO90__FUNC_B0_DBG_MON_B8 (MTK_PIN_NO(90) | 7) 691*7ef62cebSEmmanuel Vadot 692*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_B_GPIO91 (MTK_PIN_NO(91) | 0) 693*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I0_VBUSVALID_2P (MTK_PIN_NO(91) | 1) 694*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I1_URXD3 (MTK_PIN_NO(91) | 2) 695*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I1_ADSP_URXD0 (MTK_PIN_NO(91) | 3) 696*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I1_SSPM_URXD_AO (MTK_PIN_NO(91) | 4) 697*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I1_MD32_0_RXD (MTK_PIN_NO(91) | 5) 698*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_I1_MD32_1_RXD (MTK_PIN_NO(91) | 6) 699*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO91__FUNC_B0_DBG_MON_B9 (MTK_PIN_NO(91) | 7) 700*7ef62cebSEmmanuel Vadot 701*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO92__FUNC_B_GPIO92 (MTK_PIN_NO(92) | 0) 702*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO92__FUNC_O_PWRAP_SPI0_CSN (MTK_PIN_NO(92) | 1) 703*7ef62cebSEmmanuel Vadot 704*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO93__FUNC_B_GPIO93 (MTK_PIN_NO(93) | 0) 705*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO93__FUNC_O_PWRAP_SPI0_CK (MTK_PIN_NO(93) | 1) 706*7ef62cebSEmmanuel Vadot 707*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO94__FUNC_B_GPIO94 (MTK_PIN_NO(94) | 0) 708*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO94__FUNC_B0_PWRAP_SPI0_MO (MTK_PIN_NO(94) | 1) 709*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO94__FUNC_B0_PWRAP_SPI0_MI (MTK_PIN_NO(94) | 2) 710*7ef62cebSEmmanuel Vadot 711*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO95__FUNC_B_GPIO95 (MTK_PIN_NO(95) | 0) 712*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO95__FUNC_B0_PWRAP_SPI0_MI (MTK_PIN_NO(95) | 1) 713*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO95__FUNC_B0_PWRAP_SPI0_MO (MTK_PIN_NO(95) | 2) 714*7ef62cebSEmmanuel Vadot 715*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO96__FUNC_B_GPIO96 (MTK_PIN_NO(96) | 0) 716*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO96__FUNC_O_SRCLKENA0 (MTK_PIN_NO(96) | 1) 717*7ef62cebSEmmanuel Vadot 718*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO97__FUNC_B_GPIO97 (MTK_PIN_NO(97) | 0) 719*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO97__FUNC_O_SRCLKENA1 (MTK_PIN_NO(97) | 1) 720*7ef62cebSEmmanuel Vadot 721*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO98__FUNC_B_GPIO98 (MTK_PIN_NO(98) | 0) 722*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO98__FUNC_O_SCP_VREQ_VAO (MTK_PIN_NO(98) | 1) 723*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO98__FUNC_I0_DVFSRC_EXT_REQ (MTK_PIN_NO(98) | 2) 724*7ef62cebSEmmanuel Vadot 725*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO99__FUNC_B_GPIO99 (MTK_PIN_NO(99) | 0) 726*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO99__FUNC_I0_RTC32K_CK (MTK_PIN_NO(99) | 1) 727*7ef62cebSEmmanuel Vadot 728*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO100__FUNC_B_GPIO100 (MTK_PIN_NO(100) | 0) 729*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO100__FUNC_O_WATCHDOG (MTK_PIN_NO(100) | 1) 730*7ef62cebSEmmanuel Vadot 731*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO101__FUNC_B_GPIO101 (MTK_PIN_NO(101) | 0) 732*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO101__FUNC_O_AUD_CLK_MOSI (MTK_PIN_NO(101) | 1) 733*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO101__FUNC_O_I2SO1_MCK (MTK_PIN_NO(101) | 2) 734*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO101__FUNC_B0_I2SIN_BCK (MTK_PIN_NO(101) | 3) 735*7ef62cebSEmmanuel Vadot 736*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO102__FUNC_B_GPIO102 (MTK_PIN_NO(102) | 0) 737*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO102__FUNC_O_AUD_SYNC_MOSI (MTK_PIN_NO(102) | 1) 738*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO102__FUNC_O_I2SO1_BCK (MTK_PIN_NO(102) | 2) 739*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO102__FUNC_B0_I2SIN_WS (MTK_PIN_NO(102) | 3) 740*7ef62cebSEmmanuel Vadot 741*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO103__FUNC_B_GPIO103 (MTK_PIN_NO(103) | 0) 742*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO103__FUNC_O_AUD_DAT_MOSI0 (MTK_PIN_NO(103) | 1) 743*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO103__FUNC_O_I2SO1_WS (MTK_PIN_NO(103) | 2) 744*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO103__FUNC_I0_I2SIN_D0 (MTK_PIN_NO(103) | 3) 745*7ef62cebSEmmanuel Vadot 746*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO104__FUNC_B_GPIO104 (MTK_PIN_NO(104) | 0) 747*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO104__FUNC_O_AUD_DAT_MOSI1 (MTK_PIN_NO(104) | 1) 748*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO104__FUNC_O_I2SO1_D0 (MTK_PIN_NO(104) | 2) 749*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO104__FUNC_I0_I2SIN_D1 (MTK_PIN_NO(104) | 3) 750*7ef62cebSEmmanuel Vadot 751*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO105__FUNC_B_GPIO105 (MTK_PIN_NO(105) | 0) 752*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO105__FUNC_I0_AUD_DAT_MISO0 (MTK_PIN_NO(105) | 1) 753*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO105__FUNC_I0_VOW_DAT_MISO (MTK_PIN_NO(105) | 2) 754*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO105__FUNC_I0_I2SIN_D2 (MTK_PIN_NO(105) | 3) 755*7ef62cebSEmmanuel Vadot 756*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO106__FUNC_B_GPIO106 (MTK_PIN_NO(106) | 0) 757*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO106__FUNC_I0_AUD_DAT_MISO1 (MTK_PIN_NO(106) | 1) 758*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO106__FUNC_I0_VOW_CLK_MISO (MTK_PIN_NO(106) | 2) 759*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO106__FUNC_I0_I2SIN_D3 (MTK_PIN_NO(106) | 3) 760*7ef62cebSEmmanuel Vadot 761*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_B_GPIO107 (MTK_PIN_NO(107) | 0) 762*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_B0_I2SIN_MCK (MTK_PIN_NO(107) | 1) 763*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_I0_SPLIN_MCK (MTK_PIN_NO(107) | 2) 764*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_I0_SPDIF_IN0 (MTK_PIN_NO(107) | 3) 765*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_O_CMVREF4 (MTK_PIN_NO(107) | 4) 766*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_O_AUXIF_ST0 (MTK_PIN_NO(107) | 5) 767*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO107__FUNC_O_PGD_LV_LSC_PWR0 (MTK_PIN_NO(107) | 6) 768*7ef62cebSEmmanuel Vadot 769*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_B_GPIO108 (MTK_PIN_NO(108) | 0) 770*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_B0_I2SIN_BCK (MTK_PIN_NO(108) | 1) 771*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_I0_SPLIN_LRCK (MTK_PIN_NO(108) | 2) 772*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_O_DMIC4_CLK (MTK_PIN_NO(108) | 3) 773*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_O_CMVREF5 (MTK_PIN_NO(108) | 4) 774*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_O_AUXIF_CLK0 (MTK_PIN_NO(108) | 5) 775*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_O_PGD_LV_LSC_PWR1 (MTK_PIN_NO(108) | 6) 776*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO108__FUNC_B0_DBG_MON_B10 (MTK_PIN_NO(108) | 7) 777*7ef62cebSEmmanuel Vadot 778*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_B_GPIO109 (MTK_PIN_NO(109) | 0) 779*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_B0_I2SIN_WS (MTK_PIN_NO(109) | 1) 780*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_I0_SPLIN_BCK (MTK_PIN_NO(109) | 2) 781*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_I0_DMIC4_DAT (MTK_PIN_NO(109) | 3) 782*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_O_CMVREF6 (MTK_PIN_NO(109) | 4) 783*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_O_AUXIF_ST1 (MTK_PIN_NO(109) | 5) 784*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_O_PGD_LV_LSC_PWR2 (MTK_PIN_NO(109) | 6) 785*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO109__FUNC_B0_DBG_MON_B11 (MTK_PIN_NO(109) | 7) 786*7ef62cebSEmmanuel Vadot 787*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_B_GPIO110 (MTK_PIN_NO(110) | 0) 788*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_I0_I2SIN_D0 (MTK_PIN_NO(110) | 1) 789*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_I0_SPLIN_D0 (MTK_PIN_NO(110) | 2) 790*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_I0_DMIC4_DAT_R (MTK_PIN_NO(110) | 3) 791*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_O_CMVREF7 (MTK_PIN_NO(110) | 4) 792*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_O_AUXIF_CLK1 (MTK_PIN_NO(110) | 5) 793*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_O_PGD_LV_LSC_PWR3 (MTK_PIN_NO(110) | 6) 794*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO110__FUNC_B0_DBG_MON_B12 (MTK_PIN_NO(110) | 7) 795*7ef62cebSEmmanuel Vadot 796*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_B_GPIO111 (MTK_PIN_NO(111) | 0) 797*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_I0_I2SIN_D1 (MTK_PIN_NO(111) | 1) 798*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_I0_SPLIN_D1 (MTK_PIN_NO(111) | 2) 799*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_O_DMIC3_CLK (MTK_PIN_NO(111) | 3) 800*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_O_SPDIF_OUT (MTK_PIN_NO(111) | 4) 801*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_O_PGD_LV_LSC_PWR4 (MTK_PIN_NO(111) | 6) 802*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO111__FUNC_B0_DBG_MON_B13 (MTK_PIN_NO(111) | 7) 803*7ef62cebSEmmanuel Vadot 804*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_B_GPIO112 (MTK_PIN_NO(112) | 0) 805*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_I0_I2SIN_D2 (MTK_PIN_NO(112) | 1) 806*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_I0_SPLIN_D2 (MTK_PIN_NO(112) | 2) 807*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_I0_DMIC3_DAT (MTK_PIN_NO(112) | 3) 808*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(112) | 4) 809*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_O_I2SO1_WS (MTK_PIN_NO(112) | 5) 810*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_O_PGD_LV_LSC_PWR5 (MTK_PIN_NO(112) | 6) 811*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO112__FUNC_B0_DBG_MON_B14 (MTK_PIN_NO(112) | 7) 812*7ef62cebSEmmanuel Vadot 813*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_B_GPIO113 (MTK_PIN_NO(113) | 0) 814*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_I0_I2SIN_D3 (MTK_PIN_NO(113) | 1) 815*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_I0_SPLIN_D3 (MTK_PIN_NO(113) | 2) 816*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_I0_DMIC3_DAT_R (MTK_PIN_NO(113) | 3) 817*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(113) | 4) 818*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_O_I2SO1_D0 (MTK_PIN_NO(113) | 5) 819*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO113__FUNC_B0_DBG_MON_B15 (MTK_PIN_NO(113) | 7) 820*7ef62cebSEmmanuel Vadot 821*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_B_GPIO114 (MTK_PIN_NO(114) | 0) 822*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_O_I2SO2_MCK (MTK_PIN_NO(114) | 1) 823*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_B0_I2SIN_MCK (MTK_PIN_NO(114) | 2) 824*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_I1_MCUPM_JTAG_TMS (MTK_PIN_NO(114) | 3) 825*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_B1_APU_JTAG_TMS (MTK_PIN_NO(114) | 4) 826*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_I1_SCP_JTAG1_TMS (MTK_PIN_NO(114) | 5) 827*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_I1_SPM_JTAG_TMS (MTK_PIN_NO(114) | 6) 828*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO114__FUNC_B0_DBG_MON_B16 (MTK_PIN_NO(114) | 7) 829*7ef62cebSEmmanuel Vadot 830*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_B_GPIO115 (MTK_PIN_NO(115) | 0) 831*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_B0_I2SO2_BCK (MTK_PIN_NO(115) | 1) 832*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_B0_I2SIN_BCK (MTK_PIN_NO(115) | 2) 833*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_I1_MCUPM_JTAG_TCK (MTK_PIN_NO(115) | 3) 834*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_I0_APU_JTAG_TCK (MTK_PIN_NO(115) | 4) 835*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_I1_SCP_JTAG1_TCK (MTK_PIN_NO(115) | 5) 836*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_I1_SPM_JTAG_TCK (MTK_PIN_NO(115) | 6) 837*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO115__FUNC_B0_DBG_MON_B17 (MTK_PIN_NO(115) | 7) 838*7ef62cebSEmmanuel Vadot 839*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_B_GPIO116 (MTK_PIN_NO(116) | 0) 840*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_B0_I2SO2_WS (MTK_PIN_NO(116) | 1) 841*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_B0_I2SIN_WS (MTK_PIN_NO(116) | 2) 842*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_I1_MCUPM_JTAG_TDI (MTK_PIN_NO(116) | 3) 843*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_I1_APU_JTAG_TDI (MTK_PIN_NO(116) | 4) 844*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_I1_SCP_JTAG1_TDI (MTK_PIN_NO(116) | 5) 845*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_I1_SPM_JTAG_TDI (MTK_PIN_NO(116) | 6) 846*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO116__FUNC_B0_DBG_MON_B18 (MTK_PIN_NO(116) | 7) 847*7ef62cebSEmmanuel Vadot 848*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_B_GPIO117 (MTK_PIN_NO(117) | 0) 849*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_O_I2SO2_D0 (MTK_PIN_NO(117) | 1) 850*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_I0_I2SIN_D0 (MTK_PIN_NO(117) | 2) 851*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_O_MCUPM_JTAG_TDO (MTK_PIN_NO(117) | 3) 852*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_O_APU_JTAG_TDO (MTK_PIN_NO(117) | 4) 853*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_O_SCP_JTAG1_TDO (MTK_PIN_NO(117) | 5) 854*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_O_SPM_JTAG_TDO (MTK_PIN_NO(117) | 6) 855*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO117__FUNC_B0_DBG_MON_B19 (MTK_PIN_NO(117) | 7) 856*7ef62cebSEmmanuel Vadot 857*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_B_GPIO118 (MTK_PIN_NO(118) | 0) 858*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_O_I2SO2_D1 (MTK_PIN_NO(118) | 1) 859*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_I0_I2SIN_D1 (MTK_PIN_NO(118) | 2) 860*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_I0_MCUPM_JTAG_TRSTN (MTK_PIN_NO(118) | 3) 861*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_I0_APU_JTAG_TRST (MTK_PIN_NO(118) | 4) 862*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_I0_SCP_JTAG1_TRSTN (MTK_PIN_NO(118) | 5) 863*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_I0_SPM_JTAG_TRSTN (MTK_PIN_NO(118) | 6) 864*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO118__FUNC_B0_DBG_MON_B20 (MTK_PIN_NO(118) | 7) 865*7ef62cebSEmmanuel Vadot 866*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_B_GPIO119 (MTK_PIN_NO(119) | 0) 867*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_O_I2SO2_D2 (MTK_PIN_NO(119) | 1) 868*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_I0_I2SIN_D2 (MTK_PIN_NO(119) | 2) 869*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_O_UTXD3 (MTK_PIN_NO(119) | 3) 870*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(119) | 4) 871*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_O_I2SO1_MCK (MTK_PIN_NO(119) | 5) 872*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_O_SSPM_UTXD_AO (MTK_PIN_NO(119) | 6) 873*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO119__FUNC_B0_DBG_MON_B21 (MTK_PIN_NO(119) | 7) 874*7ef62cebSEmmanuel Vadot 875*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_B_GPIO120 (MTK_PIN_NO(120) | 0) 876*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_O_I2SO2_D3 (MTK_PIN_NO(120) | 1) 877*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_I0_I2SIN_D3 (MTK_PIN_NO(120) | 2) 878*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_I1_URXD3 (MTK_PIN_NO(120) | 3) 879*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_I0_TDMIN_DI (MTK_PIN_NO(120) | 4) 880*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_O_I2SO1_BCK (MTK_PIN_NO(120) | 5) 881*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_I1_SSPM_URXD_AO (MTK_PIN_NO(120) | 6) 882*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO120__FUNC_B0_DBG_MON_B22 (MTK_PIN_NO(120) | 7) 883*7ef62cebSEmmanuel Vadot 884*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_B_GPIO121 (MTK_PIN_NO(121) | 0) 885*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_B0_PCM_CLK (MTK_PIN_NO(121) | 1) 886*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_O_SPIM4_CSB (MTK_PIN_NO(121) | 2) 887*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_O_SCP_SPI1_B_CS (MTK_PIN_NO(121) | 3) 888*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_O_TP_UTXD2_AO (MTK_PIN_NO(121) | 4) 889*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_O_AUXIF_ST0 (MTK_PIN_NO(121) | 5) 890*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_O_PGD_DA_EFUSE_RDY (MTK_PIN_NO(121) | 6) 891*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO121__FUNC_B0_DBG_MON_B23 (MTK_PIN_NO(121) | 7) 892*7ef62cebSEmmanuel Vadot 893*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_B_GPIO122 (MTK_PIN_NO(122) | 0) 894*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_B0_PCM_SYNC (MTK_PIN_NO(122) | 1) 895*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_O_SPIM4_CLK (MTK_PIN_NO(122) | 2) 896*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_O_SCP_SPI1_B_CK (MTK_PIN_NO(122) | 3) 897*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_I1_TP_URXD2_AO (MTK_PIN_NO(122) | 4) 898*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_O_AUXIF_CLK0 (MTK_PIN_NO(122) | 5) 899*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_O_PGD_DA_EFUSE_RDY_PRE (MTK_PIN_NO(122) | 6) 900*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO122__FUNC_B0_DBG_MON_B24 (MTK_PIN_NO(122) | 7) 901*7ef62cebSEmmanuel Vadot 902*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_B_GPIO123 (MTK_PIN_NO(123) | 0) 903*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_O_PCM_DO (MTK_PIN_NO(123) | 1) 904*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_B0_SPIM4_MOSI (MTK_PIN_NO(123) | 2) 905*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_O_SCP_SPI1_B_MO (MTK_PIN_NO(123) | 3) 906*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_O_TP_URTS2_AO (MTK_PIN_NO(123) | 4) 907*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_O_AUXIF_ST1 (MTK_PIN_NO(123) | 5) 908*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_O_PGD_DA_PWRGD_RESET (MTK_PIN_NO(123) | 6) 909*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO123__FUNC_B0_DBG_MON_B25 (MTK_PIN_NO(123) | 7) 910*7ef62cebSEmmanuel Vadot 911*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_B_GPIO124 (MTK_PIN_NO(124) | 0) 912*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_I0_PCM_DI (MTK_PIN_NO(124) | 1) 913*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_B0_SPIM4_MISO (MTK_PIN_NO(124) | 2) 914*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_I0_SCP_SPI1_B_MI (MTK_PIN_NO(124) | 3) 915*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_I1_TP_UCTS2_AO (MTK_PIN_NO(124) | 4) 916*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_O_AUXIF_CLK1 (MTK_PIN_NO(124) | 5) 917*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_O_PGD_DA_PWRGD_ENB (MTK_PIN_NO(124) | 6) 918*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO124__FUNC_B0_DBG_MON_B26 (MTK_PIN_NO(124) | 7) 919*7ef62cebSEmmanuel Vadot 920*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_B_GPIO125 (MTK_PIN_NO(125) | 0) 921*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_O_DMIC1_CLK (MTK_PIN_NO(125) | 1) 922*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_O_SPINOR_CK (MTK_PIN_NO(125) | 2) 923*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(125) | 3) 924*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_O_LVTS_FOUT (MTK_PIN_NO(125) | 6) 925*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO125__FUNC_B0_DBG_MON_B27 (MTK_PIN_NO(125) | 7) 926*7ef62cebSEmmanuel Vadot 927*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_B_GPIO126 (MTK_PIN_NO(126) | 0) 928*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_I0_DMIC1_DAT (MTK_PIN_NO(126) | 1) 929*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_O_SPINOR_CS (MTK_PIN_NO(126) | 2) 930*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(126) | 3) 931*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_O_LVTS_SDO (MTK_PIN_NO(126) | 6) 932*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO126__FUNC_B0_DBG_MON_B28 (MTK_PIN_NO(126) | 7) 933*7ef62cebSEmmanuel Vadot 934*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_B_GPIO127 (MTK_PIN_NO(127) | 0) 935*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_I0_DMIC1_DAT_R (MTK_PIN_NO(127) | 1) 936*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_B0_SPINOR_IO0 (MTK_PIN_NO(127) | 2) 937*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(127) | 3) 938*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_I0_LVTS_26M (MTK_PIN_NO(127) | 6) 939*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO127__FUNC_B0_DBG_MON_B29 (MTK_PIN_NO(127) | 7) 940*7ef62cebSEmmanuel Vadot 941*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_B_GPIO128 (MTK_PIN_NO(128) | 0) 942*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_O_DMIC2_CLK (MTK_PIN_NO(128) | 1) 943*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_B0_SPINOR_IO1 (MTK_PIN_NO(128) | 2) 944*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_I0_TDMIN_DI (MTK_PIN_NO(128) | 3) 945*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_I0_LVTS_SCF (MTK_PIN_NO(128) | 6) 946*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO128__FUNC_B0_DBG_MON_B30 (MTK_PIN_NO(128) | 7) 947*7ef62cebSEmmanuel Vadot 948*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_B_GPIO129 (MTK_PIN_NO(129) | 0) 949*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_I0_DMIC2_DAT (MTK_PIN_NO(129) | 1) 950*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_B0_SPINOR_IO2 (MTK_PIN_NO(129) | 2) 951*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_I0_SPDIF_IN1 (MTK_PIN_NO(129) | 3) 952*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_I0_LVTS_SCK (MTK_PIN_NO(129) | 6) 953*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO129__FUNC_B0_DBG_MON_B31 (MTK_PIN_NO(129) | 7) 954*7ef62cebSEmmanuel Vadot 955*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_B_GPIO130 (MTK_PIN_NO(130) | 0) 956*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_I0_DMIC2_DAT_R (MTK_PIN_NO(130) | 1) 957*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_B0_SPINOR_IO3 (MTK_PIN_NO(130) | 2) 958*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_I0_SPDIF_IN2 (MTK_PIN_NO(130) | 3) 959*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_I0_LVTS_SDI (MTK_PIN_NO(130) | 6) 960*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO130__FUNC_B0_DBG_MON_B32 (MTK_PIN_NO(130) | 7) 961*7ef62cebSEmmanuel Vadot 962*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_B_GPIO131 (MTK_PIN_NO(131) | 0) 963*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_DPI_D0 (MTK_PIN_NO(131) | 1) 964*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_GBE_TXD3 (MTK_PIN_NO(131) | 2) 965*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_DMIC1_CLK (MTK_PIN_NO(131) | 3) 966*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_I2SO2_MCK (MTK_PIN_NO(131) | 4) 967*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_B0_TP_GPIO0_AO (MTK_PIN_NO(131) | 5) 968*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_SPIM5_CSB (MTK_PIN_NO(131) | 6) 969*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO131__FUNC_O_PGD_LV_HSC_PWR0 (MTK_PIN_NO(131) | 7) 970*7ef62cebSEmmanuel Vadot 971*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_B_GPIO132 (MTK_PIN_NO(132) | 0) 972*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_O_DPI_D1 (MTK_PIN_NO(132) | 1) 973*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_O_GBE_TXD2 (MTK_PIN_NO(132) | 2) 974*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_I0_DMIC1_DAT (MTK_PIN_NO(132) | 3) 975*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_B0_I2SO2_BCK (MTK_PIN_NO(132) | 4) 976*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_B0_TP_GPIO1_AO (MTK_PIN_NO(132) | 5) 977*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_O_SPIM5_CLK (MTK_PIN_NO(132) | 6) 978*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO132__FUNC_O_PGD_LV_HSC_PWR1 (MTK_PIN_NO(132) | 7) 979*7ef62cebSEmmanuel Vadot 980*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_B_GPIO133 (MTK_PIN_NO(133) | 0) 981*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_O_DPI_D2 (MTK_PIN_NO(133) | 1) 982*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_O_GBE_TXD1 (MTK_PIN_NO(133) | 2) 983*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_I0_DMIC1_DAT_R (MTK_PIN_NO(133) | 3) 984*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_B0_I2SO2_WS (MTK_PIN_NO(133) | 4) 985*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_B0_TP_GPIO2_AO (MTK_PIN_NO(133) | 5) 986*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_B0_SPIM5_MOSI (MTK_PIN_NO(133) | 6) 987*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO133__FUNC_O_PGD_LV_HSC_PWR2 (MTK_PIN_NO(133) | 7) 988*7ef62cebSEmmanuel Vadot 989*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_B_GPIO134 (MTK_PIN_NO(134) | 0) 990*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_O_DPI_D3 (MTK_PIN_NO(134) | 1) 991*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_O_GBE_TXD0 (MTK_PIN_NO(134) | 2) 992*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_O_DMIC2_CLK (MTK_PIN_NO(134) | 3) 993*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_O_I2SO2_D0 (MTK_PIN_NO(134) | 4) 994*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_B0_TP_GPIO3_AO (MTK_PIN_NO(134) | 5) 995*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_B0_SPIM5_MISO (MTK_PIN_NO(134) | 6) 996*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO134__FUNC_O_PGD_LV_HSC_PWR3 (MTK_PIN_NO(134) | 7) 997*7ef62cebSEmmanuel Vadot 998*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_B_GPIO135 (MTK_PIN_NO(135) | 0) 999*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_O_DPI_D4 (MTK_PIN_NO(135) | 1) 1000*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_I0_GBE_RXD3 (MTK_PIN_NO(135) | 2) 1001*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_I0_DMIC2_DAT (MTK_PIN_NO(135) | 3) 1002*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_O_I2SO2_D1 (MTK_PIN_NO(135) | 4) 1003*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_B0_TP_GPIO4_AO (MTK_PIN_NO(135) | 5) 1004*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_I1_WAKEN (MTK_PIN_NO(135) | 6) 1005*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO135__FUNC_O_PGD_LV_HSC_PWR4 (MTK_PIN_NO(135) | 7) 1006*7ef62cebSEmmanuel Vadot 1007*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_B_GPIO136 (MTK_PIN_NO(136) | 0) 1008*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_O_DPI_D5 (MTK_PIN_NO(136) | 1) 1009*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_I0_GBE_RXD2 (MTK_PIN_NO(136) | 2) 1010*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_I0_DMIC2_DAT_R (MTK_PIN_NO(136) | 3) 1011*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_O_I2SO2_D2 (MTK_PIN_NO(136) | 4) 1012*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_B0_TP_GPIO5_AO (MTK_PIN_NO(136) | 5) 1013*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_O_PERSTN (MTK_PIN_NO(136) | 6) 1014*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO136__FUNC_O_PGD_LV_HSC_PWR5 (MTK_PIN_NO(136) | 7) 1015*7ef62cebSEmmanuel Vadot 1016*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_B_GPIO137 (MTK_PIN_NO(137) | 0) 1017*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_O_DPI_D6 (MTK_PIN_NO(137) | 1) 1018*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_I0_GBE_RXD1 (MTK_PIN_NO(137) | 2) 1019*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_O_DMIC3_CLK (MTK_PIN_NO(137) | 3) 1020*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_O_I2SO2_D3 (MTK_PIN_NO(137) | 4) 1021*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_B0_TP_GPIO6_AO (MTK_PIN_NO(137) | 5) 1022*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_B1_CLKREQN (MTK_PIN_NO(137) | 6) 1023*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO137__FUNC_O_PWM_0 (MTK_PIN_NO(137) | 7) 1024*7ef62cebSEmmanuel Vadot 1025*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_B_GPIO138 (MTK_PIN_NO(138) | 0) 1026*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_O_DPI_D7 (MTK_PIN_NO(138) | 1) 1027*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_I0_GBE_RXD0 (MTK_PIN_NO(138) | 2) 1028*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_I0_DMIC3_DAT (MTK_PIN_NO(138) | 3) 1029*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_O_CLKM2 (MTK_PIN_NO(138) | 4) 1030*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_B0_TP_GPIO7_AO (MTK_PIN_NO(138) | 5) 1031*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO138__FUNC_B0_MD32_0_GPIO0 (MTK_PIN_NO(138) | 7) 1032*7ef62cebSEmmanuel Vadot 1033*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_B_GPIO139 (MTK_PIN_NO(139) | 0) 1034*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_O_DPI_D8 (MTK_PIN_NO(139) | 1) 1035*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_B0_GBE_TXC (MTK_PIN_NO(139) | 2) 1036*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_I0_DMIC3_DAT_R (MTK_PIN_NO(139) | 3) 1037*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_O_CLKM3 (MTK_PIN_NO(139) | 4) 1038*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_O_TP_UTXD2_AO (MTK_PIN_NO(139) | 5) 1039*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_O_UTXD2 (MTK_PIN_NO(139) | 6) 1040*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO139__FUNC_B0_MD32_0_GPIO1 (MTK_PIN_NO(139) | 7) 1041*7ef62cebSEmmanuel Vadot 1042*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_B_GPIO140 (MTK_PIN_NO(140) | 0) 1043*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_O_DPI_D9 (MTK_PIN_NO(140) | 1) 1044*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_I0_GBE_RXC (MTK_PIN_NO(140) | 2) 1045*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_O_DMIC4_CLK (MTK_PIN_NO(140) | 3) 1046*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_O_PWM_2 (MTK_PIN_NO(140) | 4) 1047*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_I1_TP_URXD2_AO (MTK_PIN_NO(140) | 5) 1048*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_I1_URXD2 (MTK_PIN_NO(140) | 6) 1049*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO140__FUNC_B0_MD32_0_GPIO2 (MTK_PIN_NO(140) | 7) 1050*7ef62cebSEmmanuel Vadot 1051*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_B_GPIO141 (MTK_PIN_NO(141) | 0) 1052*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_O_DPI_D10 (MTK_PIN_NO(141) | 1) 1053*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_I0_GBE_RXDV (MTK_PIN_NO(141) | 2) 1054*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_I0_DMIC4_DAT (MTK_PIN_NO(141) | 3) 1055*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_O_PWM_3 (MTK_PIN_NO(141) | 4) 1056*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_O_TP_URTS2_AO (MTK_PIN_NO(141) | 5) 1057*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_O_URTS2 (MTK_PIN_NO(141) | 6) 1058*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO141__FUNC_B0_MD32_1_GPIO0 (MTK_PIN_NO(141) | 7) 1059*7ef62cebSEmmanuel Vadot 1060*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_B_GPIO142 (MTK_PIN_NO(142) | 0) 1061*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_O_DPI_D11 (MTK_PIN_NO(142) | 1) 1062*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_O_GBE_TXEN (MTK_PIN_NO(142) | 2) 1063*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_I0_DMIC4_DAT_R (MTK_PIN_NO(142) | 3) 1064*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_O_PWM_1 (MTK_PIN_NO(142) | 4) 1065*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_I1_TP_UCTS2_AO (MTK_PIN_NO(142) | 5) 1066*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_I1_UCTS2 (MTK_PIN_NO(142) | 6) 1067*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO142__FUNC_B0_MD32_1_GPIO1 (MTK_PIN_NO(142) | 7) 1068*7ef62cebSEmmanuel Vadot 1069*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_B_GPIO143 (MTK_PIN_NO(143) | 0) 1070*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_O_DPI_D12 (MTK_PIN_NO(143) | 1) 1071*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_O_GBE_MDC (MTK_PIN_NO(143) | 2) 1072*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_B0_MD32_0_GPIO0 (MTK_PIN_NO(143) | 3) 1073*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_O_CLKM0 (MTK_PIN_NO(143) | 4) 1074*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_O_SPIM3_CSB (MTK_PIN_NO(143) | 5) 1075*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_O_UTXD1 (MTK_PIN_NO(143) | 6) 1076*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO143__FUNC_B0_MD32_1_GPIO2 (MTK_PIN_NO(143) | 7) 1077*7ef62cebSEmmanuel Vadot 1078*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_B_GPIO144 (MTK_PIN_NO(144) | 0) 1079*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_O_DPI_D13 (MTK_PIN_NO(144) | 1) 1080*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_B1_GBE_MDIO (MTK_PIN_NO(144) | 2) 1081*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_B0_MD32_0_GPIO1 (MTK_PIN_NO(144) | 3) 1082*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_O_CLKM1 (MTK_PIN_NO(144) | 4) 1083*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_O_SPIM3_CLK (MTK_PIN_NO(144) | 5) 1084*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_I1_URXD1 (MTK_PIN_NO(144) | 6) 1085*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO144__FUNC_O_PGD_HV_HSC_PWR0 (MTK_PIN_NO(144) | 7) 1086*7ef62cebSEmmanuel Vadot 1087*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_B_GPIO145 (MTK_PIN_NO(145) | 0) 1088*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_O_DPI_D14 (MTK_PIN_NO(145) | 1) 1089*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_O_GBE_TXER (MTK_PIN_NO(145) | 2) 1090*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_B0_MD32_1_GPIO0 (MTK_PIN_NO(145) | 3) 1091*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_O_CMFLASH0 (MTK_PIN_NO(145) | 4) 1092*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_B0_SPIM3_MOSI (MTK_PIN_NO(145) | 5) 1093*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_B0_GBE_AUX_PPS2 (MTK_PIN_NO(145) | 6) 1094*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO145__FUNC_O_PGD_HV_HSC_PWR1 (MTK_PIN_NO(145) | 7) 1095*7ef62cebSEmmanuel Vadot 1096*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_B_GPIO146 (MTK_PIN_NO(146) | 0) 1097*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_O_DPI_D15 (MTK_PIN_NO(146) | 1) 1098*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_I0_GBE_RXER (MTK_PIN_NO(146) | 2) 1099*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_B0_MD32_1_GPIO1 (MTK_PIN_NO(146) | 3) 1100*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_O_CMFLASH1 (MTK_PIN_NO(146) | 4) 1101*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_B0_SPIM3_MISO (MTK_PIN_NO(146) | 5) 1102*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_B0_GBE_AUX_PPS3 (MTK_PIN_NO(146) | 6) 1103*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO146__FUNC_O_PGD_HV_HSC_PWR2 (MTK_PIN_NO(146) | 7) 1104*7ef62cebSEmmanuel Vadot 1105*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_B_GPIO147 (MTK_PIN_NO(147) | 0) 1106*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_DPI_HSYNC (MTK_PIN_NO(147) | 1) 1107*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_I0_GBE_COL (MTK_PIN_NO(147) | 2) 1108*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_I2SO1_MCK (MTK_PIN_NO(147) | 3) 1109*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_CMVREF0 (MTK_PIN_NO(147) | 4) 1110*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_SPDIF_OUT (MTK_PIN_NO(147) | 5) 1111*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_URTS1 (MTK_PIN_NO(147) | 6) 1112*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO147__FUNC_O_PGD_HV_HSC_PWR3 (MTK_PIN_NO(147) | 7) 1113*7ef62cebSEmmanuel Vadot 1114*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_B_GPIO148 (MTK_PIN_NO(148) | 0) 1115*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_O_DPI_VSYNC (MTK_PIN_NO(148) | 1) 1116*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_I0_GBE_INTR (MTK_PIN_NO(148) | 2) 1117*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_O_I2SO1_BCK (MTK_PIN_NO(148) | 3) 1118*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_O_CMVREF1 (MTK_PIN_NO(148) | 4) 1119*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_I0_SPDIF_IN0 (MTK_PIN_NO(148) | 5) 1120*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_I1_UCTS1 (MTK_PIN_NO(148) | 6) 1121*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO148__FUNC_O_PGD_HV_HSC_PWR4 (MTK_PIN_NO(148) | 7) 1122*7ef62cebSEmmanuel Vadot 1123*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_B_GPIO149 (MTK_PIN_NO(149) | 0) 1124*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_O_DPI_DE (MTK_PIN_NO(149) | 1) 1125*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_B0_GBE_AUX_PPS0 (MTK_PIN_NO(149) | 2) 1126*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_O_I2SO1_WS (MTK_PIN_NO(149) | 3) 1127*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_O_CMVREF2 (MTK_PIN_NO(149) | 4) 1128*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_I0_SPDIF_IN1 (MTK_PIN_NO(149) | 5) 1129*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_O_UTXD3 (MTK_PIN_NO(149) | 6) 1130*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO149__FUNC_O_PGD_HV_HSC_PWR5 (MTK_PIN_NO(149) | 7) 1131*7ef62cebSEmmanuel Vadot 1132*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_B_GPIO150 (MTK_PIN_NO(150) | 0) 1133*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_O_DPI_CK (MTK_PIN_NO(150) | 1) 1134*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_B0_GBE_AUX_PPS1 (MTK_PIN_NO(150) | 2) 1135*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_O_I2SO1_D0 (MTK_PIN_NO(150) | 3) 1136*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_O_CMVREF3 (MTK_PIN_NO(150) | 4) 1137*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_I0_SPDIF_IN2 (MTK_PIN_NO(150) | 5) 1138*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO150__FUNC_I1_URXD3 (MTK_PIN_NO(150) | 6) 1139*7ef62cebSEmmanuel Vadot 1140*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO151__FUNC_B_GPIO151 (MTK_PIN_NO(151) | 0) 1141*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO151__FUNC_B1_MSDC0_DAT7 (MTK_PIN_NO(151) | 1) 1142*7ef62cebSEmmanuel Vadot 1143*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO152__FUNC_B_GPIO152 (MTK_PIN_NO(152) | 0) 1144*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO152__FUNC_B1_MSDC0_DAT6 (MTK_PIN_NO(152) | 1) 1145*7ef62cebSEmmanuel Vadot 1146*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO153__FUNC_B_GPIO153 (MTK_PIN_NO(153) | 0) 1147*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO153__FUNC_B1_MSDC0_DAT5 (MTK_PIN_NO(153) | 1) 1148*7ef62cebSEmmanuel Vadot 1149*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO154__FUNC_B_GPIO154 (MTK_PIN_NO(154) | 0) 1150*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO154__FUNC_B1_MSDC0_DAT4 (MTK_PIN_NO(154) | 1) 1151*7ef62cebSEmmanuel Vadot 1152*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO155__FUNC_B_GPIO155 (MTK_PIN_NO(155) | 0) 1153*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO155__FUNC_O_MSDC0_RSTB (MTK_PIN_NO(155) | 1) 1154*7ef62cebSEmmanuel Vadot 1155*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO156__FUNC_B_GPIO156 (MTK_PIN_NO(156) | 0) 1156*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO156__FUNC_B1_MSDC0_CMD (MTK_PIN_NO(156) | 1) 1157*7ef62cebSEmmanuel Vadot 1158*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO157__FUNC_B_GPIO157 (MTK_PIN_NO(157) | 0) 1159*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO157__FUNC_B1_MSDC0_CLK (MTK_PIN_NO(157) | 1) 1160*7ef62cebSEmmanuel Vadot 1161*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO158__FUNC_B_GPIO158 (MTK_PIN_NO(158) | 0) 1162*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO158__FUNC_B1_MSDC0_DAT3 (MTK_PIN_NO(158) | 1) 1163*7ef62cebSEmmanuel Vadot 1164*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO159__FUNC_B_GPIO159 (MTK_PIN_NO(159) | 0) 1165*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO159__FUNC_B1_MSDC0_DAT2 (MTK_PIN_NO(159) | 1) 1166*7ef62cebSEmmanuel Vadot 1167*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO160__FUNC_B_GPIO160 (MTK_PIN_NO(160) | 0) 1168*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO160__FUNC_B1_MSDC0_DAT1 (MTK_PIN_NO(160) | 1) 1169*7ef62cebSEmmanuel Vadot 1170*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO161__FUNC_B_GPIO161 (MTK_PIN_NO(161) | 0) 1171*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO161__FUNC_B1_MSDC0_DAT0 (MTK_PIN_NO(161) | 1) 1172*7ef62cebSEmmanuel Vadot 1173*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO162__FUNC_B_GPIO162 (MTK_PIN_NO(162) | 0) 1174*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO162__FUNC_B0_MSDC0_DSL (MTK_PIN_NO(162) | 1) 1175*7ef62cebSEmmanuel Vadot 1176*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_B_GPIO163 (MTK_PIN_NO(163) | 0) 1177*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_B1_MSDC1_CMD (MTK_PIN_NO(163) | 1) 1178*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_O_SPDIF_OUT (MTK_PIN_NO(163) | 2) 1179*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_I1_MD32_0_JTAG_TMS (MTK_PIN_NO(163) | 3) 1180*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_I1_ADSP_JTAG0_TMS (MTK_PIN_NO(163) | 4) 1181*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_I1_SCP_JTAG0_TMS (MTK_PIN_NO(163) | 5) 1182*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_I1_CCU0_JTAG_TMS (MTK_PIN_NO(163) | 6) 1183*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO163__FUNC_I0_IPU_JTAG_TMS (MTK_PIN_NO(163) | 7) 1184*7ef62cebSEmmanuel Vadot 1185*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_B_GPIO164 (MTK_PIN_NO(164) | 0) 1186*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_B1_MSDC1_CLK (MTK_PIN_NO(164) | 1) 1187*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I0_SPDIF_IN0 (MTK_PIN_NO(164) | 2) 1188*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I1_MD32_0_JTAG_TCK (MTK_PIN_NO(164) | 3) 1189*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I0_ADSP_JTAG0_TCK (MTK_PIN_NO(164) | 4) 1190*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I1_SCP_JTAG0_TCK (MTK_PIN_NO(164) | 5) 1191*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I1_CCU0_JTAG_TCK (MTK_PIN_NO(164) | 6) 1192*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO164__FUNC_I0_IPU_JTAG_TCK (MTK_PIN_NO(164) | 7) 1193*7ef62cebSEmmanuel Vadot 1194*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_B_GPIO165 (MTK_PIN_NO(165) | 0) 1195*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_B1_MSDC1_DAT0 (MTK_PIN_NO(165) | 1) 1196*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I0_SPDIF_IN1 (MTK_PIN_NO(165) | 2) 1197*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I1_MD32_0_JTAG_TDI (MTK_PIN_NO(165) | 3) 1198*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I1_ADSP_JTAG0_TDI (MTK_PIN_NO(165) | 4) 1199*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I1_SCP_JTAG0_TDI (MTK_PIN_NO(165) | 5) 1200*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I1_CCU0_JTAG_TDI (MTK_PIN_NO(165) | 6) 1201*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO165__FUNC_I0_IPU_JTAG_TDI (MTK_PIN_NO(165) | 7) 1202*7ef62cebSEmmanuel Vadot 1203*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_B_GPIO166 (MTK_PIN_NO(166) | 0) 1204*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_B1_MSDC1_DAT1 (MTK_PIN_NO(166) | 1) 1205*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_I0_SPDIF_IN2 (MTK_PIN_NO(166) | 2) 1206*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_O_MD32_0_JTAG_TDO (MTK_PIN_NO(166) | 3) 1207*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_O_ADSP_JTAG0_TDO (MTK_PIN_NO(166) | 4) 1208*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_O_SCP_JTAG0_TDO (MTK_PIN_NO(166) | 5) 1209*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_O_CCU0_JTAG_TDO (MTK_PIN_NO(166) | 6) 1210*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO166__FUNC_O_IPU_JTAG_TDO (MTK_PIN_NO(166) | 7) 1211*7ef62cebSEmmanuel Vadot 1212*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_B_GPIO167 (MTK_PIN_NO(167) | 0) 1213*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_B1_MSDC1_DAT2 (MTK_PIN_NO(167) | 1) 1214*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_O_PWM_0 (MTK_PIN_NO(167) | 2) 1215*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_I1_MD32_0_JTAG_TRST (MTK_PIN_NO(167) | 3) 1216*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_I1_ADSP_JTAG0_TRSTN (MTK_PIN_NO(167) | 4) 1217*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_I0_SCP_JTAG0_TRSTN (MTK_PIN_NO(167) | 5) 1218*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_I1_CCU0_JTAG_TRST (MTK_PIN_NO(167) | 6) 1219*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO167__FUNC_I0_IPU_JTAG_TRST (MTK_PIN_NO(167) | 7) 1220*7ef62cebSEmmanuel Vadot 1221*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO168__FUNC_B_GPIO168 (MTK_PIN_NO(168) | 0) 1222*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO168__FUNC_B1_MSDC1_DAT3 (MTK_PIN_NO(168) | 1) 1223*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO168__FUNC_O_PWM_1 (MTK_PIN_NO(168) | 2) 1224*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO168__FUNC_O_CLKM0 (MTK_PIN_NO(168) | 3) 1225*7ef62cebSEmmanuel Vadot 1226*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_B_GPIO169 (MTK_PIN_NO(169) | 0) 1227*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_B1_MSDC2_CMD (MTK_PIN_NO(169) | 1) 1228*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_O_LVTS_FOUT (MTK_PIN_NO(169) | 2) 1229*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_I1_MD32_1_JTAG_TMS (MTK_PIN_NO(169) | 3) 1230*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_I0_UDI_TMS (MTK_PIN_NO(169) | 4) 1231*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_I0_VPU_UDI_TMS (MTK_PIN_NO(169) | 5) 1232*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_B0_TDMIN_MCK (MTK_PIN_NO(169) | 6) 1233*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO169__FUNC_I1_SSPM_JTAG_TMS (MTK_PIN_NO(169) | 7) 1234*7ef62cebSEmmanuel Vadot 1235*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_B_GPIO170 (MTK_PIN_NO(170) | 0) 1236*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_B1_MSDC2_CLK (MTK_PIN_NO(170) | 1) 1237*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_O_LVTS_SDO (MTK_PIN_NO(170) | 2) 1238*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_I1_MD32_1_JTAG_TCK (MTK_PIN_NO(170) | 3) 1239*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_I0_UDI_TCK (MTK_PIN_NO(170) | 4) 1240*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_I0_VPU_UDI_TCK (MTK_PIN_NO(170) | 5) 1241*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_B0_TDMIN_BCK (MTK_PIN_NO(170) | 6) 1242*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO170__FUNC_I1_SSPM_JTAG_TCK (MTK_PIN_NO(170) | 7) 1243*7ef62cebSEmmanuel Vadot 1244*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_B_GPIO171 (MTK_PIN_NO(171) | 0) 1245*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_B1_MSDC2_DAT0 (MTK_PIN_NO(171) | 1) 1246*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_I0_LVTS_26M (MTK_PIN_NO(171) | 2) 1247*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_I1_MD32_1_JTAG_TDI (MTK_PIN_NO(171) | 3) 1248*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_I0_UDI_TDI (MTK_PIN_NO(171) | 4) 1249*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_I0_VPU_UDI_TDI (MTK_PIN_NO(171) | 5) 1250*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_B0_TDMIN_LRCK (MTK_PIN_NO(171) | 6) 1251*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO171__FUNC_I1_SSPM_JTAG_TDI (MTK_PIN_NO(171) | 7) 1252*7ef62cebSEmmanuel Vadot 1253*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_B_GPIO172 (MTK_PIN_NO(172) | 0) 1254*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_B1_MSDC2_DAT1 (MTK_PIN_NO(172) | 1) 1255*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_I0_LVTS_SCF (MTK_PIN_NO(172) | 2) 1256*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_O_MD32_1_JTAG_TDO (MTK_PIN_NO(172) | 3) 1257*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_O_UDI_TDO (MTK_PIN_NO(172) | 4) 1258*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_O_VPU_UDI_TDO (MTK_PIN_NO(172) | 5) 1259*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_I0_TDMIN_DI (MTK_PIN_NO(172) | 6) 1260*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO172__FUNC_O_SSPM_JTAG_TDO (MTK_PIN_NO(172) | 7) 1261*7ef62cebSEmmanuel Vadot 1262*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_B_GPIO173 (MTK_PIN_NO(173) | 0) 1263*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_B1_MSDC2_DAT2 (MTK_PIN_NO(173) | 1) 1264*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_I0_LVTS_SCK (MTK_PIN_NO(173) | 2) 1265*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_I1_MD32_1_JTAG_TRST (MTK_PIN_NO(173) | 3) 1266*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_I0_UDI_NTRST (MTK_PIN_NO(173) | 4) 1267*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_I0_VPU_UDI_NTRST (MTK_PIN_NO(173) | 5) 1268*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO173__FUNC_I0_SSPM_JTAG_TRSTN (MTK_PIN_NO(173) | 7) 1269*7ef62cebSEmmanuel Vadot 1270*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO174__FUNC_B_GPIO174 (MTK_PIN_NO(174) | 0) 1271*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO174__FUNC_B1_MSDC2_DAT3 (MTK_PIN_NO(174) | 1) 1272*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO174__FUNC_I0_LVTS_SDI (MTK_PIN_NO(174) | 2) 1273*7ef62cebSEmmanuel Vadot 1274*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO175__FUNC_B_GPIO175 (MTK_PIN_NO(175) | 0) 1275*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO175__FUNC_B0_SPMI_M_SCL (MTK_PIN_NO(175) | 1) 1276*7ef62cebSEmmanuel Vadot 1277*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO176__FUNC_B_GPIO176 (MTK_PIN_NO(176) | 0) 1278*7ef62cebSEmmanuel Vadot #define PINMUX_GPIO176__FUNC_B0_SPMI_M_SDA (MTK_PIN_NO(176) | 1) 1279*7ef62cebSEmmanuel Vadot 1280*7ef62cebSEmmanuel Vadot #endif /* __MEDIATEK_MT8188-PINFUNC_H */ 1281