1 /* 2 * Copyright (c) 2023 Antmicro <www.antmicro.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __APOLLO4_PINCTRL_H__ 8 #define __APOLLO4_PINCTRL_H__ 9 10 #define APOLLO4_ALT_FUNC_POS 0 11 #define APOLLO4_ALT_FUNC_MASK 0xf 12 13 #define APOLLO4_PIN_NUM_POS 4 14 #define APOLLO4_PIN_NUM_MASK 0x7f 15 16 #define APOLLO4_PINMUX(pin_num, alt_func) (pin_num << APOLLO4_PIN_NUM_POS | \ 17 alt_func << APOLLO4_ALT_FUNC_POS) 18 19 #define SWTRACECLK_P0 APOLLO4_PINMUX(0, 0) 20 #define SLSCL_P0 APOLLO4_PINMUX(0, 1) 21 #define SLSCK_P0 APOLLO4_PINMUX(0, 2) 22 #define GPIO_P0 APOLLO4_PINMUX(0, 3) 23 #define UART0TX_P0 APOLLO4_PINMUX(0, 4) 24 #define UART1TX_P0 APOLLO4_PINMUX(0, 5) 25 #define CT0_P0 APOLLO4_PINMUX(0, 6) 26 #define NCE0_P0 APOLLO4_PINMUX(0, 7) 27 #define OBSBUS0_P0 APOLLO4_PINMUX(0, 8) 28 #define VCMPO_P0 APOLLO4_PINMUX(0, 9) 29 #define FPIO_P0 APOLLO4_PINMUX(0, 11) 30 #define SWTRACE0_P1 APOLLO4_PINMUX(1, 0) 31 #define SLSDAWIR3_P1 APOLLO4_PINMUX(1, 1) 32 #define SLMOSI_P1 APOLLO4_PINMUX(1, 2) 33 #define GPIO_P1 APOLLO4_PINMUX(1, 3) 34 #define UART2TX_P1 APOLLO4_PINMUX(1, 4) 35 #define UART3TX_P1 APOLLO4_PINMUX(1, 5) 36 #define CT1_P1 APOLLO4_PINMUX(1, 6) 37 #define NCE1_P1 APOLLO4_PINMUX(1, 7) 38 #define OBSBUS1_P1 APOLLO4_PINMUX(1, 8) 39 #define VCMPO_P1 APOLLO4_PINMUX(1, 9) 40 #define FPIO_P1 APOLLO4_PINMUX(1, 11) 41 #define SCANIN4_P1 APOLLO4_PINMUX(1, 15) 42 #define SWTRACE1_P2 APOLLO4_PINMUX(2, 0) 43 #define SLMISO_P2 APOLLO4_PINMUX(2, 1) 44 #define TRIG1_P2 APOLLO4_PINMUX(2, 2) 45 #define GPIO_P2 APOLLO4_PINMUX(2, 3) 46 #define UART0RX_P2 APOLLO4_PINMUX(2, 4) 47 #define UART1RX_P2 APOLLO4_PINMUX(2, 5) 48 #define CT2_P2 APOLLO4_PINMUX(2, 6) 49 #define NCE2_P2 APOLLO4_PINMUX(2, 7) 50 #define OBSBUS2_P2 APOLLO4_PINMUX(2, 8) 51 #define VCMPO_P2 APOLLO4_PINMUX(2, 9) 52 #define FPIO_P2 APOLLO4_PINMUX(2, 11) 53 #define SCANRSTN_P2 APOLLO4_PINMUX(2, 15) 54 #define SWTRACE2_P3 APOLLO4_PINMUX(3, 0) 55 #define SLNCE_P3 APOLLO4_PINMUX(3, 1) 56 #define SWO_P3 APOLLO4_PINMUX(3, 2) 57 #define GPIO_P3 APOLLO4_PINMUX(3, 3) 58 #define UART2RX_P3 APOLLO4_PINMUX(3, 4) 59 #define UART3RX_P3 APOLLO4_PINMUX(3, 5) 60 #define CT3_P3 APOLLO4_PINMUX(3, 6) 61 #define NCE3_P3 APOLLO4_PINMUX(3, 7) 62 #define OBSBUS3_P3 APOLLO4_PINMUX(3, 8) 63 #define FPIO_P3 APOLLO4_PINMUX(3, 11) 64 #define SCANIN5_P3 APOLLO4_PINMUX(3, 15) 65 #define SWTRACE3_P4 APOLLO4_PINMUX(4, 0) 66 #define SLINT_P4 APOLLO4_PINMUX(4, 1) 67 #define XT32KHZ_P4 APOLLO4_PINMUX(4, 2) 68 #define GPIO_P4 APOLLO4_PINMUX(4, 3) 69 #define UART0RTS_P4 APOLLO4_PINMUX(4, 4) 70 #define UART1RTS_P4 APOLLO4_PINMUX(4, 5) 71 #define CT4_P4 APOLLO4_PINMUX(4, 6) 72 #define NCE4_P4 APOLLO4_PINMUX(4, 7) 73 #define OBSBUS4_P4 APOLLO4_PINMUX(4, 8) 74 #define I2S0_SDIN_P4 APOLLO4_PINMUX(4, 9) 75 #define I2S1_SDIN_P4 APOLLO4_PINMUX(4, 10) 76 #define FPIO_P4 APOLLO4_PINMUX(4, 11) 77 #define FLB_TDO_P4 APOLLO4_PINMUX(4, 12) 78 #define FLLOAD_DIR_P4 APOLLO4_PINMUX(4, 13) 79 #define MDA_TDO_P4 APOLLO4_PINMUX(4, 14) 80 #define OPCG_TRIG_P4 APOLLO4_PINMUX(4, 15) 81 #define M0SCL_P5 APOLLO4_PINMUX(5, 0) 82 #define M0SCK_P5 APOLLO4_PINMUX(5, 1) 83 #define I2S0_CLK_P5 APOLLO4_PINMUX(5, 2) 84 #define GPIO_P5 APOLLO4_PINMUX(5, 3) 85 #define UART2RTS_P5 APOLLO4_PINMUX(5, 4) 86 #define UART3RTS_P5 APOLLO4_PINMUX(5, 5) 87 #define CT5_P5 APOLLO4_PINMUX(5, 6) 88 #define NCE5_P5 APOLLO4_PINMUX(5, 7) 89 #define OBSBUS5_P5 APOLLO4_PINMUX(5, 8) 90 #define I2S1_CLK_P5 APOLLO4_PINMUX(5, 10) 91 #define FPIO_P5 APOLLO4_PINMUX(5, 11) 92 #define FLB_TDI_P5 APOLLO4_PINMUX(5, 12) 93 #define FLLOAD_DATA_P5 APOLLO4_PINMUX(5, 13) 94 #define MDA_SRST_P5 APOLLO4_PINMUX(5, 14) 95 #define DFT_ISO_P5 APOLLO4_PINMUX(5, 15) 96 #define M0SDAWIR3_P6 APOLLO4_PINMUX(6, 0) 97 #define M0MOSI_P6 APOLLO4_PINMUX(6, 1) 98 #define I2S0_DATA_P6 APOLLO4_PINMUX(6, 2) 99 #define GPIO_P6 APOLLO4_PINMUX(6, 3) 100 #define UART0CTS_P6 APOLLO4_PINMUX(6, 4) 101 #define UART1CTS_P6 APOLLO4_PINMUX(6, 5) 102 #define CT6_P6 APOLLO4_PINMUX(6, 6) 103 #define NCE6_P6 APOLLO4_PINMUX(6, 7) 104 #define OBSBUS6_P6 APOLLO4_PINMUX(6, 8) 105 #define I2S0_SDOUT_P6 APOLLO4_PINMUX(6, 9) 106 #define I2S1_SDOUT_P6 APOLLO4_PINMUX(6, 10) 107 #define FPIO_P6 APOLLO4_PINMUX(6, 11) 108 #define SCANIN6_P6 APOLLO4_PINMUX(6, 15) 109 #define M0MISO_P7 APOLLO4_PINMUX(7, 0) 110 #define TRIG0_P7 APOLLO4_PINMUX(7, 1) 111 #define I2S0_WS_P7 APOLLO4_PINMUX(7, 2) 112 #define GPIO_P7 APOLLO4_PINMUX(7, 3) 113 #define UART2CTS_P7 APOLLO4_PINMUX(7, 4) 114 #define UART3CTS_P7 APOLLO4_PINMUX(7, 5) 115 #define CT7_P7 APOLLO4_PINMUX(7, 6) 116 #define NCE7_P7 APOLLO4_PINMUX(7, 7) 117 #define OBSBUS7_P7 APOLLO4_PINMUX(7, 8) 118 #define I2S1_WS_P7 APOLLO4_PINMUX(7, 10) 119 #define FPIO_P7 APOLLO4_PINMUX(7, 11) 120 #define SCANIN7_P7 APOLLO4_PINMUX(7, 15) 121 #define CMPRF1_P8 APOLLO4_PINMUX(8, 0) 122 #define TRIG1_P8 APOLLO4_PINMUX(8, 1) 123 #define GPIO_P8 APOLLO4_PINMUX(8, 3) 124 #define M1SCL_P8 APOLLO4_PINMUX(8, 4) 125 #define M1SCK_P8 APOLLO4_PINMUX(8, 5) 126 #define CT8_P8 APOLLO4_PINMUX(8, 6) 127 #define NCE8_P8 APOLLO4_PINMUX(8, 7) 128 #define OBSBUS8_P8 APOLLO4_PINMUX(8, 8) 129 #define FPIO_P8 APOLLO4_PINMUX(8, 11) 130 #define SCANOUT4_P8 APOLLO4_PINMUX(8, 15) 131 #define CMPRF0_P9 APOLLO4_PINMUX(9, 0) 132 #define TRIG2_P9 APOLLO4_PINMUX(9, 1) 133 #define GPIO_P9 APOLLO4_PINMUX(9, 3) 134 #define M1SDAWIR3_P9 APOLLO4_PINMUX(9, 4) 135 #define M1MOSI_P9 APOLLO4_PINMUX(9, 5) 136 #define CT9_P9 APOLLO4_PINMUX(9, 6) 137 #define NCE9_P9 APOLLO4_PINMUX(9, 7) 138 #define OBSBUS9_P9 APOLLO4_PINMUX(9, 8) 139 #define FPIO_P9 APOLLO4_PINMUX(9, 11) 140 #define SCANOUT5_P9 APOLLO4_PINMUX(9, 15) 141 #define CMPIN0_P10 APOLLO4_PINMUX(10, 0) 142 #define TRIG3_P10 APOLLO4_PINMUX(10, 1) 143 #define GPIO_P10 APOLLO4_PINMUX(10, 3) 144 #define M1MISO_P10 APOLLO4_PINMUX(10, 4) 145 #define CT10_P10 APOLLO4_PINMUX(10, 6) 146 #define NCE10_P10 APOLLO4_PINMUX(10, 7) 147 #define OBSBUS10_P10 APOLLO4_PINMUX(10, 8) 148 #define DISP_TE_P10 APOLLO4_PINMUX(10, 9) 149 #define FPIO_P10 APOLLO4_PINMUX(10, 11) 150 #define OPCG_LOAD_P10 APOLLO4_PINMUX(10, 15) 151 #define CMPIN1_P11 APOLLO4_PINMUX(11, 0) 152 #define TRIG0_P11 APOLLO4_PINMUX(11, 1) 153 #define I2S0_CLK_P11 APOLLO4_PINMUX(11, 2) 154 #define GPIO_P11 APOLLO4_PINMUX(11, 3) 155 #define UART2RX_P11 APOLLO4_PINMUX(11, 4) 156 #define UART3RX_P11 APOLLO4_PINMUX(11, 5) 157 #define CT11_P11 APOLLO4_PINMUX(11, 6) 158 #define NCE11_P11 APOLLO4_PINMUX(11, 7) 159 #define OBSBUS11_P11 APOLLO4_PINMUX(11, 8) 160 #define FPIO_P11 APOLLO4_PINMUX(11, 11) 161 #define FLB_TCLK_P11 APOLLO4_PINMUX(11, 12) 162 #define FLLOAD_ADDR_P11 APOLLO4_PINMUX(11, 13) 163 #define MDA_TCK_P11 APOLLO4_PINMUX(11, 14) 164 #define SCANIN0_P11 APOLLO4_PINMUX(11, 15) 165 #define ADCSE7_P12 APOLLO4_PINMUX(12, 0) 166 #define TRIG1_P12 APOLLO4_PINMUX(12, 1) 167 #define I2S0_DATA_P12 APOLLO4_PINMUX(12, 2) 168 #define GPIO_P12 APOLLO4_PINMUX(12, 3) 169 #define UART0TX_P12 APOLLO4_PINMUX(12, 4) 170 #define UART1TX_P12 APOLLO4_PINMUX(12, 5) 171 #define CT12_P12 APOLLO4_PINMUX(12, 6) 172 #define NCE12_P12 APOLLO4_PINMUX(12, 7) 173 #define OBSBUS12_P12 APOLLO4_PINMUX(12, 8) 174 #define CMPRF2_P12 APOLLO4_PINMUX(12, 9) 175 #define I2S0_SDOUT_P12 APOLLO4_PINMUX(12, 10) 176 #define FPIO_P12 APOLLO4_PINMUX(12, 11) 177 #define SCANOUT3_P12 APOLLO4_PINMUX(12, 15) 178 #define ADCSE6_P13 APOLLO4_PINMUX(13, 0) 179 #define TRIG2_P13 APOLLO4_PINMUX(13, 1) 180 #define I2S0_WS_P13 APOLLO4_PINMUX(13, 2) 181 #define GPIO_P13 APOLLO4_PINMUX(13, 3) 182 #define UART2TX_P13 APOLLO4_PINMUX(13, 4) 183 #define UART3TX_P13 APOLLO4_PINMUX(13, 5) 184 #define CT13_P13 APOLLO4_PINMUX(13, 6) 185 #define NCE13_P13 APOLLO4_PINMUX(13, 7) 186 #define OBSBUS13_P13 APOLLO4_PINMUX(13, 8) 187 #define FPIO_P13 APOLLO4_PINMUX(13, 11) 188 #define FLB_FCLK_P13 APOLLO4_PINMUX(13, 12) 189 #define FLLOAD_DATA_P13 APOLLO4_PINMUX(13, 13) 190 #define MDA_TDI_P13 APOLLO4_PINMUX(13, 14) 191 #define SCANOUT0_P13 APOLLO4_PINMUX(13, 15) 192 #define ADCSE5_P14 APOLLO4_PINMUX(14, 0) 193 #define TRIG3_P14 APOLLO4_PINMUX(14, 1) 194 #define GPIO_P14 APOLLO4_PINMUX(14, 3) 195 #define MILLI_CLK_P14 APOLLO4_PINMUX(14, 4) 196 #define UART1RX_P14 APOLLO4_PINMUX(14, 5) 197 #define CT14_P14 APOLLO4_PINMUX(14, 6) 198 #define NCE14_P14 APOLLO4_PINMUX(14, 7) 199 #define OBSBUS14_P14 APOLLO4_PINMUX(14, 8) 200 #define I2S0_SDIN_P14 APOLLO4_PINMUX(14, 10) 201 #define FPIO_P14 APOLLO4_PINMUX(14, 11) 202 #define FLLOAD_ADDR_P14 APOLLO4_PINMUX(14, 13) 203 #define MDA_TRSTN_P14 APOLLO4_PINMUX(14, 14) 204 #define SCANOUT2_P14 APOLLO4_PINMUX(14, 15) 205 #define ADCSE4_P15 APOLLO4_PINMUX(15, 0) 206 #define TRIG0_P15 APOLLO4_PINMUX(15, 1) 207 #define GPIO_P15 APOLLO4_PINMUX(15, 3) 208 #define MILLI_REC_DAT_P15 APOLLO4_PINMUX(15, 4) 209 #define UART3RX_P15 APOLLO4_PINMUX(15, 5) 210 #define CT15_P15 APOLLO4_PINMUX(15, 6) 211 #define NCE15_P15 APOLLO4_PINMUX(15, 7) 212 #define OBSBUS15_P15 APOLLO4_PINMUX(15, 8) 213 #define REFCLK_EXT_P15 APOLLO4_PINMUX(15, 10) 214 #define FPIO_P15 APOLLO4_PINMUX(15, 11) 215 #define FLLOAD_DATA_P15 APOLLO4_PINMUX(15, 13) 216 #define SCANOUT1_P15 APOLLO4_PINMUX(15, 15) 217 #define ADCSE3_P16 APOLLO4_PINMUX(16, 0) 218 #define TRIG1_P16 APOLLO4_PINMUX(16, 1) 219 #define I2S1_CLK_P16 APOLLO4_PINMUX(16, 2) 220 #define GPIO_P16 APOLLO4_PINMUX(16, 3) 221 #define MILLI_PBDATA1_P16 APOLLO4_PINMUX(16, 4) 222 #define UART1RTS_P16 APOLLO4_PINMUX(16, 5) 223 #define CT16_P16 APOLLO4_PINMUX(16, 6) 224 #define NCE16_P16 APOLLO4_PINMUX(16, 7) 225 #define OBSBUS0_P16 APOLLO4_PINMUX(16, 8) 226 #define FPIO_P16 APOLLO4_PINMUX(16, 11) 227 #define DFT_RET_P16 APOLLO4_PINMUX(16, 15) 228 #define ADCSE2_P17 APOLLO4_PINMUX(17, 0) 229 #define TRIG2_P17 APOLLO4_PINMUX(17, 1) 230 #define I2S1_DATA_P17 APOLLO4_PINMUX(17, 2) 231 #define GPIO_P17 APOLLO4_PINMUX(17, 3) 232 #define MILLI_PBDATA2_P17 APOLLO4_PINMUX(17, 4) 233 #define UART3RTS_P17 APOLLO4_PINMUX(17, 5) 234 #define CT17_P17 APOLLO4_PINMUX(17, 6) 235 #define NCE17_P17 APOLLO4_PINMUX(17, 7) 236 #define OBSBUS1_P17 APOLLO4_PINMUX(17, 8) 237 #define I2S1_SDOUT_P17 APOLLO4_PINMUX(17, 9) 238 #define FPIO_P17 APOLLO4_PINMUX(17, 11) 239 #define FLLOAD_STRB_P17 APOLLO4_PINMUX(17, 13) 240 #define MDA_TMS_P17 APOLLO4_PINMUX(17, 14) 241 #define OPCG_CLK_P17 APOLLO4_PINMUX(17, 15) 242 #define ADCSE1_P18 APOLLO4_PINMUX(18, 0) 243 #define ANATEST2_P18 APOLLO4_PINMUX(18, 1) 244 #define I2S1_WS_P18 APOLLO4_PINMUX(18, 2) 245 #define GPIO_P18 APOLLO4_PINMUX(18, 3) 246 #define UART0CTS_P18 APOLLO4_PINMUX(18, 4) 247 #define UART1CTS_P18 APOLLO4_PINMUX(18, 5) 248 #define CT18_P18 APOLLO4_PINMUX(18, 6) 249 #define NCE18_P18 APOLLO4_PINMUX(18, 7) 250 #define OBSBUS2_P18 APOLLO4_PINMUX(18, 8) 251 #define FPIO_P18 APOLLO4_PINMUX(18, 11) 252 #define FLB_TMS_P18 APOLLO4_PINMUX(18, 12) 253 #define FLLOAD_DATA_P18 APOLLO4_PINMUX(18, 13) 254 #define MDA_HFRC_EXT_P18 APOLLO4_PINMUX(18, 14) 255 #define SCANIN1_P18 APOLLO4_PINMUX(18, 15) 256 #define ADCSE0_P19 APOLLO4_PINMUX(19, 0) 257 #define ANATEST1_P19 APOLLO4_PINMUX(19, 1) 258 #define GPIO_P19 APOLLO4_PINMUX(19, 3) 259 #define UART2CTS_P19 APOLLO4_PINMUX(19, 4) 260 #define UART3CTS_P19 APOLLO4_PINMUX(19, 5) 261 #define CT19_P19 APOLLO4_PINMUX(19, 6) 262 #define NCE19_P19 APOLLO4_PINMUX(19, 7) 263 #define OBSBUS3_P19 APOLLO4_PINMUX(19, 8) 264 #define I2S1_SDIN_P19 APOLLO4_PINMUX(19, 9) 265 #define FPIO_P19 APOLLO4_PINMUX(19, 11) 266 #define FLB_TRSTN_P19 APOLLO4_PINMUX(19, 12) 267 #define FLLOAD_ADDR_P19 APOLLO4_PINMUX(19, 13) 268 #define SCANIN2_P19 APOLLO4_PINMUX(19, 15) 269 #define SWDCK_P20 APOLLO4_PINMUX(20, 0) 270 #define TRIG1_P20 APOLLO4_PINMUX(20, 1) 271 #define GPIO_P20 APOLLO4_PINMUX(20, 3) 272 #define UART0TX_P20 APOLLO4_PINMUX(20, 4) 273 #define UART1TX_P20 APOLLO4_PINMUX(20, 5) 274 #define CT20_P20 APOLLO4_PINMUX(20, 6) 275 #define NCE20_P20 APOLLO4_PINMUX(20, 7) 276 #define OBSBUS4_P20 APOLLO4_PINMUX(20, 8) 277 #define FPIO_P20 APOLLO4_PINMUX(20, 11) 278 #define SCANCLK_P20 APOLLO4_PINMUX(20, 15) 279 #define SWDIO_P21 APOLLO4_PINMUX(21, 0) 280 #define TRIG2_P21 APOLLO4_PINMUX(21, 1) 281 #define GPIO_P21 APOLLO4_PINMUX(21, 3) 282 #define UART2TX_P21 APOLLO4_PINMUX(21, 4) 283 #define UART3TX_P21 APOLLO4_PINMUX(21, 5) 284 #define CT21_P21 APOLLO4_PINMUX(21, 6) 285 #define NCE21_P21 APOLLO4_PINMUX(21, 7) 286 #define OBSBUS5_P21 APOLLO4_PINMUX(21, 8) 287 #define FPIO_P21 APOLLO4_PINMUX(21, 11) 288 #define SCANSHFT_P21 APOLLO4_PINMUX(21, 15) 289 #define M7SCL_P22 APOLLO4_PINMUX(22, 0) 290 #define M7SCK_P22 APOLLO4_PINMUX(22, 1) 291 #define SWO_P22 APOLLO4_PINMUX(22, 2) 292 #define GPIO_P22 APOLLO4_PINMUX(22, 3) 293 #define UART0RX_P22 APOLLO4_PINMUX(22, 4) 294 #define UART1RX_P22 APOLLO4_PINMUX(22, 5) 295 #define CT22_P22 APOLLO4_PINMUX(22, 6) 296 #define NCE22_P22 APOLLO4_PINMUX(22, 7) 297 #define OBSBUS6_P22 APOLLO4_PINMUX(22, 8) 298 #define VCMPO_P22 APOLLO4_PINMUX(22, 9) 299 #define I3CM1_SCL_P22 APOLLO4_PINMUX(22, 10) 300 #define FPIO_P22 APOLLO4_PINMUX(22, 11) 301 #define SCANIN3_P22 APOLLO4_PINMUX(22, 15) 302 #define M7SDAWIR3_P23 APOLLO4_PINMUX(23, 0) 303 #define M7MOSI_P23 APOLLO4_PINMUX(23, 1) 304 #define SWO_P23 APOLLO4_PINMUX(23, 2) 305 #define GPIO_P23 APOLLO4_PINMUX(23, 3) 306 #define UART2RX_P23 APOLLO4_PINMUX(23, 4) 307 #define UART3RX_P23 APOLLO4_PINMUX(23, 5) 308 #define CT23_P23 APOLLO4_PINMUX(23, 6) 309 #define NCE23_P23 APOLLO4_PINMUX(23, 7) 310 #define OBSBUS7_P23 APOLLO4_PINMUX(23, 8) 311 #define VCMPO_P23 APOLLO4_PINMUX(23, 9) 312 #define I3CM1_SDA_P23 APOLLO4_PINMUX(23, 10) 313 #define FPIO_P23 APOLLO4_PINMUX(23, 11) 314 #define SCANOUT6_P23 APOLLO4_PINMUX(23, 15) 315 #define M7MISO_P24 APOLLO4_PINMUX(24, 0) 316 #define TRIG3_P24 APOLLO4_PINMUX(24, 1) 317 #define SWO_P24 APOLLO4_PINMUX(24, 2) 318 #define GPIO_P24 APOLLO4_PINMUX(24, 3) 319 #define UART0RTS_P24 APOLLO4_PINMUX(24, 4) 320 #define UART1RTS_P24 APOLLO4_PINMUX(24, 5) 321 #define CT24_P24 APOLLO4_PINMUX(24, 6) 322 #define NCE24_P24 APOLLO4_PINMUX(24, 7) 323 #define OBSBUS8_P24 APOLLO4_PINMUX(24, 8) 324 #define FPIO_P24 APOLLO4_PINMUX(24, 11) 325 #define SCANOUT7_P24 APOLLO4_PINMUX(24, 15) 326 #define M2SCL_P25 APOLLO4_PINMUX(25, 0) 327 #define M2SCK_P25 APOLLO4_PINMUX(25, 1) 328 #define GPIO_P25 APOLLO4_PINMUX(25, 3) 329 #define LFRC_EXT_P25 APOLLO4_PINMUX(25, 4) 330 #define DSP_TMS_P25 APOLLO4_PINMUX(25, 5) 331 #define CT25_P25 APOLLO4_PINMUX(25, 6) 332 #define NCE25_P25 APOLLO4_PINMUX(25, 7) 333 #define OBSBUS9_P25 APOLLO4_PINMUX(25, 8) 334 #define FPIO_P25 APOLLO4_PINMUX(25, 11) 335 #define SCANIN8_P25 APOLLO4_PINMUX(25, 15) 336 #define M2SDAWIR3_P26 APOLLO4_PINMUX(26, 0) 337 #define M2MOSI_P26 APOLLO4_PINMUX(26, 1) 338 #define GPIO_P26 APOLLO4_PINMUX(26, 3) 339 #define HFRC_EXT_P26 APOLLO4_PINMUX(26, 4) 340 #define CT26_P26 APOLLO4_PINMUX(26, 6) 341 #define NCE26_P26 APOLLO4_PINMUX(26, 7) 342 #define OBSBUS10_P26 APOLLO4_PINMUX(26, 8) 343 #define VCMPO_P26 APOLLO4_PINMUX(26, 9) 344 #define FPIO_P26 APOLLO4_PINMUX(26, 11) 345 #define SCANIN9_P26 APOLLO4_PINMUX(26, 15) 346 #define M2MISO_P27 APOLLO4_PINMUX(27, 0) 347 #define TRIG0_P27 APOLLO4_PINMUX(27, 1) 348 #define GPIO_P27 APOLLO4_PINMUX(27, 3) 349 #define XT_EXT_P27 APOLLO4_PINMUX(27, 4) 350 #define DSP_TCK_P27 APOLLO4_PINMUX(27, 5) 351 #define CT27_P27 APOLLO4_PINMUX(27, 6) 352 #define NCE27_P27 APOLLO4_PINMUX(27, 7) 353 #define OBSBUS11_P27 APOLLO4_PINMUX(27, 8) 354 #define I2S0_SDIN_P27 APOLLO4_PINMUX(27, 9) 355 #define FPIO_P27 APOLLO4_PINMUX(27, 11) 356 #define SCANIN10_P27 APOLLO4_PINMUX(27, 15) 357 #define SWO_P28 APOLLO4_PINMUX(28, 0) 358 #define VCMPO_P28 APOLLO4_PINMUX(28, 1) 359 #define I2S0_CLK_P28 APOLLO4_PINMUX(28, 2) 360 #define GPIO_P28 APOLLO4_PINMUX(28, 3) 361 #define UART2CTS_P28 APOLLO4_PINMUX(28, 4) 362 #define DSP_TDO_P28 APOLLO4_PINMUX(28, 5) 363 #define CT28_P28 APOLLO4_PINMUX(28, 6) 364 #define NCE28_P28 APOLLO4_PINMUX(28, 7) 365 #define OBSBUS12_P28 APOLLO4_PINMUX(28, 8) 366 #define FPIO_P28 APOLLO4_PINMUX(28, 11) 367 #define CME_P28 APOLLO4_PINMUX(28, 15) 368 #define TRIG0_P29 APOLLO4_PINMUX(29, 0) 369 #define VCMPO_P29 APOLLO4_PINMUX(29, 1) 370 #define I2S0_DATA_P29 APOLLO4_PINMUX(29, 2) 371 #define GPIO_P29 APOLLO4_PINMUX(29, 3) 372 #define UART1CTS_P29 APOLLO4_PINMUX(29, 4) 373 #define DSP_TRSTN_P29 APOLLO4_PINMUX(29, 5) 374 #define CT29_P29 APOLLO4_PINMUX(29, 6) 375 #define NCE29_P29 APOLLO4_PINMUX(29, 7) 376 #define OBSBUS13_P29 APOLLO4_PINMUX(29, 8) 377 #define I2S0_SDOUT_P29 APOLLO4_PINMUX(29, 9) 378 #define FPIO_P29 APOLLO4_PINMUX(29, 11) 379 #define CMLE_P29 APOLLO4_PINMUX(29, 15) 380 #define TRIG1_P30 APOLLO4_PINMUX(30, 0) 381 #define VCMPO_P30 APOLLO4_PINMUX(30, 1) 382 #define I2S0_WS_P30 APOLLO4_PINMUX(30, 2) 383 #define GPIO_P30 APOLLO4_PINMUX(30, 3) 384 #define UART0TX_P30 APOLLO4_PINMUX(30, 4) 385 #define DSP_TDI_P30 APOLLO4_PINMUX(30, 5) 386 #define CT30_P30 APOLLO4_PINMUX(30, 6) 387 #define NCE30_P30 APOLLO4_PINMUX(30, 7) 388 #define OBSBUS14_P30 APOLLO4_PINMUX(30, 8) 389 #define FPIO_P30 APOLLO4_PINMUX(30, 11) 390 #define SCANOUT8_P30 APOLLO4_PINMUX(30, 15) 391 #define M3SCL_P31 APOLLO4_PINMUX(31, 0) 392 #define M3SCK_P31 APOLLO4_PINMUX(31, 1) 393 #define GPIO_P31 APOLLO4_PINMUX(31, 3) 394 #define UART2TX_P31 APOLLO4_PINMUX(31, 4) 395 #define CT31_P31 APOLLO4_PINMUX(31, 6) 396 #define NCE31_P31 APOLLO4_PINMUX(31, 7) 397 #define OBSBUS15_P31 APOLLO4_PINMUX(31, 8) 398 #define VCMPO_P31 APOLLO4_PINMUX(31, 9) 399 #define FPIO_P31 APOLLO4_PINMUX(31, 11) 400 #define SCANOUT9_P31 APOLLO4_PINMUX(31, 15) 401 #define M3SDAWIR3_P32 APOLLO4_PINMUX(32, 0) 402 #define M3MOSI_P32 APOLLO4_PINMUX(32, 1) 403 #define GPIO_P32 APOLLO4_PINMUX(32, 3) 404 #define UART0RX_P32 APOLLO4_PINMUX(32, 4) 405 #define CT32_P32 APOLLO4_PINMUX(32, 6) 406 #define NCE32_P32 APOLLO4_PINMUX(32, 7) 407 #define OBSBUS0_P32 APOLLO4_PINMUX(32, 8) 408 #define FPIO_P32 APOLLO4_PINMUX(32, 11) 409 #define SCANOUT10_P32 APOLLO4_PINMUX(32, 15) 410 #define M3MISO_P33 APOLLO4_PINMUX(33, 0) 411 #define CLKOUT_P33 APOLLO4_PINMUX(33, 1) 412 #define GPIO_P33 APOLLO4_PINMUX(33, 3) 413 #define UART2RX_P33 APOLLO4_PINMUX(33, 4) 414 #define CT33_P33 APOLLO4_PINMUX(33, 6) 415 #define NCE33_P33 APOLLO4_PINMUX(33, 7) 416 #define OBSBUS1_P33 APOLLO4_PINMUX(33, 8) 417 #define DISP_TE_P33 APOLLO4_PINMUX(33, 9) 418 #define FPIO_P33 APOLLO4_PINMUX(33, 11) 419 #define SCANOUT11_P33 APOLLO4_PINMUX(33, 15) 420 #define M4SCL_P34 APOLLO4_PINMUX(34, 0) 421 #define M4SCK_P34 APOLLO4_PINMUX(34, 1) 422 #define SWO_P34 APOLLO4_PINMUX(34, 2) 423 #define GPIO_P34 APOLLO4_PINMUX(34, 3) 424 #define UART0TX_P34 APOLLO4_PINMUX(34, 4) 425 #define CT34_P34 APOLLO4_PINMUX(34, 6) 426 #define NCE34_P34 APOLLO4_PINMUX(34, 7) 427 #define OBSBUS2_P34 APOLLO4_PINMUX(34, 8) 428 #define VCMPO_P34 APOLLO4_PINMUX(34, 9) 429 #define FPIO_P34 APOLLO4_PINMUX(34, 11) 430 #define M4SDAWIR3_P35 APOLLO4_PINMUX(35, 0) 431 #define M4MOSI_P35 APOLLO4_PINMUX(35, 1) 432 #define SWO_P35 APOLLO4_PINMUX(35, 2) 433 #define GPIO_P35 APOLLO4_PINMUX(35, 3) 434 #define UART2TX_P35 APOLLO4_PINMUX(35, 4) 435 #define UART3TX_P35 APOLLO4_PINMUX(35, 5) 436 #define CT35_P35 APOLLO4_PINMUX(35, 6) 437 #define NCE35_P35 APOLLO4_PINMUX(35, 7) 438 #define OBSBUS3_P35 APOLLO4_PINMUX(35, 8) 439 #define VCMPO_P35 APOLLO4_PINMUX(35, 9) 440 #define FPIO_P35 APOLLO4_PINMUX(35, 11) 441 #define M4MISO_P36 APOLLO4_PINMUX(36, 0) 442 #define TRIG0_P36 APOLLO4_PINMUX(36, 1) 443 #define SWO_P36 APOLLO4_PINMUX(36, 2) 444 #define GPIO_P36 APOLLO4_PINMUX(36, 3) 445 #define UART0RX_P36 APOLLO4_PINMUX(36, 4) 446 #define UART1RX_P36 APOLLO4_PINMUX(36, 5) 447 #define CT36_P36 APOLLO4_PINMUX(36, 6) 448 #define NCE36_P36 APOLLO4_PINMUX(36, 7) 449 #define OBSBUS4_P36 APOLLO4_PINMUX(36, 8) 450 #define FPIO_P36 APOLLO4_PINMUX(36, 11) 451 #define MSPI1_0_P37 APOLLO4_PINMUX(37, 0) 452 #define TRIG1_P37 APOLLO4_PINMUX(37, 1) 453 #define XT32KHZ_P37 APOLLO4_PINMUX(37, 2) 454 #define GPIO_P37 APOLLO4_PINMUX(37, 3) 455 #define UART2RX_P37 APOLLO4_PINMUX(37, 4) 456 #define DISP_D15_P37 APOLLO4_PINMUX(37, 5) 457 #define CT37_P37 APOLLO4_PINMUX(37, 6) 458 #define NCE37_P37 APOLLO4_PINMUX(37, 7) 459 #define OBSBUS5_P37 APOLLO4_PINMUX(37, 8) 460 #define FPIO_P37 APOLLO4_PINMUX(37, 11) 461 #define MSPI1_1_P38 APOLLO4_PINMUX(38, 0) 462 #define TRIG2_P38 APOLLO4_PINMUX(38, 1) 463 #define SWTRACECLK_P38 APOLLO4_PINMUX(38, 2) 464 #define GPIO_P38 APOLLO4_PINMUX(38, 3) 465 #define UART0RTS_P38 APOLLO4_PINMUX(38, 4) 466 #define DISP_D16_P38 APOLLO4_PINMUX(38, 5) 467 #define CT38_P38 APOLLO4_PINMUX(38, 6) 468 #define NCE38_P38 APOLLO4_PINMUX(38, 7) 469 #define OBSBUS6_P38 APOLLO4_PINMUX(38, 8) 470 #define FPIO_P38 APOLLO4_PINMUX(38, 11) 471 #define MSPI1_2_P39 APOLLO4_PINMUX(39, 0) 472 #define TRIG3_P39 APOLLO4_PINMUX(39, 1) 473 #define SWTRACE0_P39 APOLLO4_PINMUX(39, 2) 474 #define GPIO_P39 APOLLO4_PINMUX(39, 3) 475 #define UART2RTS_P39 APOLLO4_PINMUX(39, 4) 476 #define DISP_D17_P39 APOLLO4_PINMUX(39, 5) 477 #define CT39_P39 APOLLO4_PINMUX(39, 6) 478 #define NCE39_P39 APOLLO4_PINMUX(39, 7) 479 #define OBSBUS7_P39 APOLLO4_PINMUX(39, 8) 480 #define FPIO_P39 APOLLO4_PINMUX(39, 11) 481 #define MSPI1_3_P40 APOLLO4_PINMUX(40, 0) 482 #define TRIG1_P40 APOLLO4_PINMUX(40, 1) 483 #define SWTRACE1_P40 APOLLO4_PINMUX(40, 2) 484 #define GPIO_P40 APOLLO4_PINMUX(40, 3) 485 #define UART0CTS_P40 APOLLO4_PINMUX(40, 4) 486 #define DISP_D18_P40 APOLLO4_PINMUX(40, 5) 487 #define CT40_P40 APOLLO4_PINMUX(40, 6) 488 #define NCE40_P40 APOLLO4_PINMUX(40, 7) 489 #define OBSBUS8_P40 APOLLO4_PINMUX(40, 8) 490 #define FPIO_P40 APOLLO4_PINMUX(40, 11) 491 #define MSPI1_4_P41 APOLLO4_PINMUX(41, 0) 492 #define TRIG0_P41 APOLLO4_PINMUX(41, 1) 493 #define SWTRACE2_P41 APOLLO4_PINMUX(41, 2) 494 #define GPIO_P41 APOLLO4_PINMUX(41, 3) 495 #define UART0TX_P41 APOLLO4_PINMUX(41, 4) 496 #define DISP_D19_P41 APOLLO4_PINMUX(41, 5) 497 #define CT41_P41 APOLLO4_PINMUX(41, 6) 498 #define NCE41_P41 APOLLO4_PINMUX(41, 7) 499 #define OBSBUS9_P41 APOLLO4_PINMUX(41, 8) 500 #define SWO_P41 APOLLO4_PINMUX(41, 9) 501 #define FPIO_P41 APOLLO4_PINMUX(41, 11) 502 #define MSPI1_5_P42 APOLLO4_PINMUX(42, 0) 503 #define TRIG2_P42 APOLLO4_PINMUX(42, 1) 504 #define SWTRACE3_P42 APOLLO4_PINMUX(42, 2) 505 #define GPIO_P42 APOLLO4_PINMUX(42, 3) 506 #define UART2TX_P42 APOLLO4_PINMUX(42, 4) 507 #define DISP_D20_P42 APOLLO4_PINMUX(42, 5) 508 #define CT42_P42 APOLLO4_PINMUX(42, 6) 509 #define NCE42_P42 APOLLO4_PINMUX(42, 7) 510 #define OBSBUS10_P42 APOLLO4_PINMUX(42, 8) 511 #define FPIO_P42 APOLLO4_PINMUX(42, 11) 512 #define MSPI1_6_P43 APOLLO4_PINMUX(43, 0) 513 #define TRIG3_P43 APOLLO4_PINMUX(43, 1) 514 #define SWTRACECTL_P43 APOLLO4_PINMUX(43, 2) 515 #define GPIO_P43 APOLLO4_PINMUX(43, 3) 516 #define UART0RX_P43 APOLLO4_PINMUX(43, 4) 517 #define DISP_D21_P43 APOLLO4_PINMUX(43, 5) 518 #define CT43_P43 APOLLO4_PINMUX(43, 6) 519 #define NCE43_P43 APOLLO4_PINMUX(43, 7) 520 #define OBSBUS11_P43 APOLLO4_PINMUX(43, 8) 521 #define FPIO_P43 APOLLO4_PINMUX(43, 11) 522 #define MSPI1_7_P44 APOLLO4_PINMUX(44, 0) 523 #define TRIG1_P44 APOLLO4_PINMUX(44, 1) 524 #define SWO_P44 APOLLO4_PINMUX(44, 2) 525 #define GPIO_P44 APOLLO4_PINMUX(44, 3) 526 #define UART2RX_P44 APOLLO4_PINMUX(44, 4) 527 #define DISP_D22_P44 APOLLO4_PINMUX(44, 5) 528 #define CT44_P44 APOLLO4_PINMUX(44, 6) 529 #define NCE44_P44 APOLLO4_PINMUX(44, 7) 530 #define OBSBUS12_P44 APOLLO4_PINMUX(44, 8) 531 #define VCMPO_P44 APOLLO4_PINMUX(44, 9) 532 #define FPIO_P44 APOLLO4_PINMUX(44, 11) 533 #define MSPI1_8_P45 APOLLO4_PINMUX(45, 0) 534 #define TRIG2_P45 APOLLO4_PINMUX(45, 1) 535 #define XT32KHZ_P45 APOLLO4_PINMUX(45, 2) 536 #define GPIO_P45 APOLLO4_PINMUX(45, 3) 537 #define UART0TX_P45 APOLLO4_PINMUX(45, 4) 538 #define DISP_D23_P45 APOLLO4_PINMUX(45, 5) 539 #define CT45_P45 APOLLO4_PINMUX(45, 6) 540 #define NCE45_P45 APOLLO4_PINMUX(45, 7) 541 #define OBSBUS13_P45 APOLLO4_PINMUX(45, 8) 542 #define FPIO_P45 APOLLO4_PINMUX(45, 11) 543 #define MSPI1_9_P46 APOLLO4_PINMUX(46, 0) 544 #define TRIG3_P46 APOLLO4_PINMUX(46, 1) 545 #define CLKOUT_32M_P46 APOLLO4_PINMUX(46, 2) 546 #define GPIO_P46 APOLLO4_PINMUX(46, 3) 547 #define UART2TX_P46 APOLLO4_PINMUX(46, 4) 548 #define UART3TX_P46 APOLLO4_PINMUX(46, 5) 549 #define CT46_P46 APOLLO4_PINMUX(46, 6) 550 #define NCE46_P46 APOLLO4_PINMUX(46, 7) 551 #define OBSBUS14_P46 APOLLO4_PINMUX(46, 8) 552 #define I2S1_SDIN_P46 APOLLO4_PINMUX(46, 9) 553 #define I2S0_SDIN_P46 APOLLO4_PINMUX(46, 10) 554 #define FPIO_P46 APOLLO4_PINMUX(46, 11) 555 #define M5SCL_P47 APOLLO4_PINMUX(47, 0) 556 #define M5SCK_P47 APOLLO4_PINMUX(47, 1) 557 #define I2S1_CLK_P47 APOLLO4_PINMUX(47, 2) 558 #define GPIO_P47 APOLLO4_PINMUX(47, 3) 559 #define UART0RX_P47 APOLLO4_PINMUX(47, 4) 560 #define UART1RX_P47 APOLLO4_PINMUX(47, 5) 561 #define CT47_P47 APOLLO4_PINMUX(47, 6) 562 #define NCE47_P47 APOLLO4_PINMUX(47, 7) 563 #define OBSBUS15_P47 APOLLO4_PINMUX(47, 8) 564 #define I2S0_CLK_P47 APOLLO4_PINMUX(47, 10) 565 #define FPIO_P47 APOLLO4_PINMUX(47, 11) 566 #define M5SDAWIR3_P48 APOLLO4_PINMUX(48, 0) 567 #define M5MOSI_P48 APOLLO4_PINMUX(48, 1) 568 #define I2S1_DATA_P48 APOLLO4_PINMUX(48, 2) 569 #define GPIO_P48 APOLLO4_PINMUX(48, 3) 570 #define UART2RX_P48 APOLLO4_PINMUX(48, 4) 571 #define UART3RX_P48 APOLLO4_PINMUX(48, 5) 572 #define CT48_P48 APOLLO4_PINMUX(48, 6) 573 #define NCE48_P48 APOLLO4_PINMUX(48, 7) 574 #define OBSBUS0_P48 APOLLO4_PINMUX(48, 8) 575 #define I2S1_SDOUT_P48 APOLLO4_PINMUX(48, 9) 576 #define I2S0_SDOUT_P48 APOLLO4_PINMUX(48, 10) 577 #define FPIO_P48 APOLLO4_PINMUX(48, 11) 578 #define M5MISO_P49 APOLLO4_PINMUX(49, 0) 579 #define TRIG0_P49 APOLLO4_PINMUX(49, 1) 580 #define I2S1_WS_P49 APOLLO4_PINMUX(49, 2) 581 #define GPIO_P49 APOLLO4_PINMUX(49, 3) 582 #define UART0RTS_P49 APOLLO4_PINMUX(49, 4) 583 #define UART1RTS_P49 APOLLO4_PINMUX(49, 5) 584 #define CT49_P49 APOLLO4_PINMUX(49, 6) 585 #define NCE49_P49 APOLLO4_PINMUX(49, 7) 586 #define OBSBUS1_P49 APOLLO4_PINMUX(49, 8) 587 #define I2S0_WS_P49 APOLLO4_PINMUX(49, 10) 588 #define FPIO_P49 APOLLO4_PINMUX(49, 11) 589 #define PDM0_CLK_P50 APOLLO4_PINMUX(50, 0) 590 #define TRIG0_P50 APOLLO4_PINMUX(50, 1) 591 #define SWTRACECLK_P50 APOLLO4_PINMUX(50, 2) 592 #define GPIO_P50 APOLLO4_PINMUX(50, 3) 593 #define UART2RTS_P50 APOLLO4_PINMUX(50, 4) 594 #define UART3RTS_P50 APOLLO4_PINMUX(50, 5) 595 #define CT50_P50 APOLLO4_PINMUX(50, 6) 596 #define NCE50_P50 APOLLO4_PINMUX(50, 7) 597 #define OBSBUS2_P50 APOLLO4_PINMUX(50, 8) 598 #define DISP_TE_P50 APOLLO4_PINMUX(50, 9) 599 #define FPIO_P50 APOLLO4_PINMUX(50, 11) 600 #define PDM0_DATA_P51 APOLLO4_PINMUX(51, 0) 601 #define TRIG1_P51 APOLLO4_PINMUX(51, 1) 602 #define SWTRACE0_P51 APOLLO4_PINMUX(51, 2) 603 #define GPIO_P51 APOLLO4_PINMUX(51, 3) 604 #define UART0CTS_P51 APOLLO4_PINMUX(51, 4) 605 #define UART1CTS_P51 APOLLO4_PINMUX(51, 5) 606 #define CT51_P51 APOLLO4_PINMUX(51, 6) 607 #define NCE51_P51 APOLLO4_PINMUX(51, 7) 608 #define OBSBUS3_P51 APOLLO4_PINMUX(51, 8) 609 #define FPIO_P51 APOLLO4_PINMUX(51, 11) 610 #define PDM1_CLK_P52 APOLLO4_PINMUX(52, 0) 611 #define TRIG2_P52 APOLLO4_PINMUX(52, 1) 612 #define SWTRACE1_P52 APOLLO4_PINMUX(52, 2) 613 #define GPIO_P52 APOLLO4_PINMUX(52, 3) 614 #define UART2CTS_P52 APOLLO4_PINMUX(52, 4) 615 #define UART3CTS_P52 APOLLO4_PINMUX(52, 5) 616 #define CT52_P52 APOLLO4_PINMUX(52, 6) 617 #define NCE52_P52 APOLLO4_PINMUX(52, 7) 618 #define OBSBUS4_P52 APOLLO4_PINMUX(52, 8) 619 #define VCMPO_P52 APOLLO4_PINMUX(52, 9) 620 #define FPIO_P52 APOLLO4_PINMUX(52, 11) 621 #define PDM1_DATA_P53 APOLLO4_PINMUX(53, 0) 622 #define TRIG3_P53 APOLLO4_PINMUX(53, 1) 623 #define SWTRACE2_P53 APOLLO4_PINMUX(53, 2) 624 #define GPIO_P53 APOLLO4_PINMUX(53, 3) 625 #define UART0TX_P53 APOLLO4_PINMUX(53, 4) 626 #define UART1TX_P53 APOLLO4_PINMUX(53, 5) 627 #define CT53_P53 APOLLO4_PINMUX(53, 6) 628 #define NCE53_P53 APOLLO4_PINMUX(53, 7) 629 #define OBSBUS5_P53 APOLLO4_PINMUX(53, 8) 630 #define FPIO_P53 APOLLO4_PINMUX(53, 11) 631 #define PDM2_CLK_P54 APOLLO4_PINMUX(54, 0) 632 #define TRIG0_P54 APOLLO4_PINMUX(54, 1) 633 #define SWTRACE3_P54 APOLLO4_PINMUX(54, 2) 634 #define GPIO_P54 APOLLO4_PINMUX(54, 3) 635 #define UART2TX_P54 APOLLO4_PINMUX(54, 4) 636 #define UART3TX_P54 APOLLO4_PINMUX(54, 5) 637 #define CT54_P54 APOLLO4_PINMUX(54, 6) 638 #define NCE54_P54 APOLLO4_PINMUX(54, 7) 639 #define OBSBUS6_P54 APOLLO4_PINMUX(54, 8) 640 #define FPIO_P54 APOLLO4_PINMUX(54, 11) 641 #define PDM2_DATA_P55 APOLLO4_PINMUX(55, 0) 642 #define TRIG1_P55 APOLLO4_PINMUX(55, 1) 643 #define SWTRACECTL_P55 APOLLO4_PINMUX(55, 2) 644 #define GPIO_P55 APOLLO4_PINMUX(55, 3) 645 #define UART0RX_P55 APOLLO4_PINMUX(55, 4) 646 #define UART1RX_P55 APOLLO4_PINMUX(55, 5) 647 #define CT55_P55 APOLLO4_PINMUX(55, 6) 648 #define NCE55_P55 APOLLO4_PINMUX(55, 7) 649 #define OBSBUS7_P55 APOLLO4_PINMUX(55, 8) 650 #define FPIO_P55 APOLLO4_PINMUX(55, 11) 651 #define PDM3_CLK_P56 APOLLO4_PINMUX(56, 0) 652 #define TRIG2_P56 APOLLO4_PINMUX(56, 1) 653 #define SWO_P56 APOLLO4_PINMUX(56, 2) 654 #define GPIO_P56 APOLLO4_PINMUX(56, 3) 655 #define UART2RX_P56 APOLLO4_PINMUX(56, 4) 656 #define UART3RX_P56 APOLLO4_PINMUX(56, 5) 657 #define CT56_P56 APOLLO4_PINMUX(56, 6) 658 #define NCE56_P56 APOLLO4_PINMUX(56, 7) 659 #define OBSBUS8_P56 APOLLO4_PINMUX(56, 8) 660 #define FPIO_P56 APOLLO4_PINMUX(56, 11) 661 #define PDM3_DATA_P57 APOLLO4_PINMUX(57, 0) 662 #define TRIG3_P57 APOLLO4_PINMUX(57, 1) 663 #define SWO_P57 APOLLO4_PINMUX(57, 2) 664 #define GPIO_P57 APOLLO4_PINMUX(57, 3) 665 #define UART0RTS_P57 APOLLO4_PINMUX(57, 4) 666 #define UART1RTS_P57 APOLLO4_PINMUX(57, 5) 667 #define CT57_P57 APOLLO4_PINMUX(57, 6) 668 #define NCE57_P57 APOLLO4_PINMUX(57, 7) 669 #define OBSBUS9_P57 APOLLO4_PINMUX(57, 8) 670 #define VCMPO_P57 APOLLO4_PINMUX(57, 9) 671 #define FPIO_P57 APOLLO4_PINMUX(57, 11) 672 #define GPIO_P58 APOLLO4_PINMUX(58, 3) 673 #define UART0RTS_P58 APOLLO4_PINMUX(58, 4) 674 #define UART3RTS_P58 APOLLO4_PINMUX(58, 5) 675 #define CT58_P58 APOLLO4_PINMUX(58, 6) 676 #define NCE58_P58 APOLLO4_PINMUX(58, 7) 677 #define OBSBUS10_P58 APOLLO4_PINMUX(58, 8) 678 #define FPIO_P58 APOLLO4_PINMUX(58, 11) 679 #define TRIG0_P59 APOLLO4_PINMUX(59, 1) 680 #define GPIO_P59 APOLLO4_PINMUX(59, 3) 681 #define UART0CTS_P59 APOLLO4_PINMUX(59, 4) 682 #define UART1CTS_P59 APOLLO4_PINMUX(59, 5) 683 #define CT59_P59 APOLLO4_PINMUX(59, 6) 684 #define NCE59_P59 APOLLO4_PINMUX(59, 7) 685 #define OBSBUS11_P59 APOLLO4_PINMUX(59, 8) 686 #define FPIO_P59 APOLLO4_PINMUX(59, 11) 687 #define TRIG1_P60 APOLLO4_PINMUX(60, 1) 688 #define GPIO_P60 APOLLO4_PINMUX(60, 3) 689 #define UART0TX_P60 APOLLO4_PINMUX(60, 4) 690 #define UART3CTS_P60 APOLLO4_PINMUX(60, 5) 691 #define CT60_P60 APOLLO4_PINMUX(60, 6) 692 #define NCE60_P60 APOLLO4_PINMUX(60, 7) 693 #define OBSBUS12_P60 APOLLO4_PINMUX(60, 8) 694 #define FPIO_P60 APOLLO4_PINMUX(60, 11) 695 #define M6SCL_P61 APOLLO4_PINMUX(61, 0) 696 #define M6SCK_P61 APOLLO4_PINMUX(61, 1) 697 #define I2S1_CLK_P61 APOLLO4_PINMUX(61, 2) 698 #define GPIO_P61 APOLLO4_PINMUX(61, 3) 699 #define UART2TX_P61 APOLLO4_PINMUX(61, 4) 700 #define UART3TX_P61 APOLLO4_PINMUX(61, 5) 701 #define CT61_P61 APOLLO4_PINMUX(61, 6) 702 #define NCE61_P61 APOLLO4_PINMUX(61, 7) 703 #define OBSBUS13_P61 APOLLO4_PINMUX(61, 8) 704 #define I3CM0_SCL_P61 APOLLO4_PINMUX(61, 10) 705 #define FPIO_P61 APOLLO4_PINMUX(61, 11) 706 #define M6SDAWIR3_P62 APOLLO4_PINMUX(62, 0) 707 #define M6MOSI_P62 APOLLO4_PINMUX(62, 1) 708 #define I2S1_DATA_P62 APOLLO4_PINMUX(62, 2) 709 #define GPIO_P62 APOLLO4_PINMUX(62, 3) 710 #define UART0RX_P62 APOLLO4_PINMUX(62, 4) 711 #define UART1RX_P62 APOLLO4_PINMUX(62, 5) 712 #define CT62_P62 APOLLO4_PINMUX(62, 6) 713 #define NCE62_P62 APOLLO4_PINMUX(62, 7) 714 #define OBSBUS14_P62 APOLLO4_PINMUX(62, 8) 715 #define I2S1_SDOUT_P62 APOLLO4_PINMUX(62, 9) 716 #define I3CM0_SDA_P62 APOLLO4_PINMUX(62, 10) 717 #define FPIO_P62 APOLLO4_PINMUX(62, 11) 718 #define M6MISO_P63 APOLLO4_PINMUX(63, 0) 719 #define CLKOUT_P63 APOLLO4_PINMUX(63, 1) 720 #define I2S1_WS_P63 APOLLO4_PINMUX(63, 2) 721 #define GPIO_P63 APOLLO4_PINMUX(63, 3) 722 #define UART2RX_P63 APOLLO4_PINMUX(63, 4) 723 #define UART3RX_P63 APOLLO4_PINMUX(63, 5) 724 #define CT63_P63 APOLLO4_PINMUX(63, 6) 725 #define NCE63_P63 APOLLO4_PINMUX(63, 7) 726 #define OBSBUS15_P63 APOLLO4_PINMUX(63, 8) 727 #define DISP_TE_P63 APOLLO4_PINMUX(63, 9) 728 #define FPIO_P63 APOLLO4_PINMUX(63, 11) 729 #define MSPI0_0_P64 APOLLO4_PINMUX(64, 0) 730 #define XT32KHZ_P64 APOLLO4_PINMUX(64, 1) 731 #define SWO_P64 APOLLO4_PINMUX(64, 2) 732 #define GPIO_P64 APOLLO4_PINMUX(64, 3) 733 #define UART0RTS_P64 APOLLO4_PINMUX(64, 4) 734 #define DISP_D0_P64 APOLLO4_PINMUX(64, 5) 735 #define CT64_P64 APOLLO4_PINMUX(64, 6) 736 #define NCE64_P64 APOLLO4_PINMUX(64, 7) 737 #define OBSBUS0_P64 APOLLO4_PINMUX(64, 8) 738 #define I2S1_SDIN_P64 APOLLO4_PINMUX(64, 9) 739 #define FPIO_P64 APOLLO4_PINMUX(64, 11) 740 #define MSPI0_1_P65 APOLLO4_PINMUX(65, 0) 741 #define XT32KHZ_P65 APOLLO4_PINMUX(65, 1) 742 #define SWO_P65 APOLLO4_PINMUX(65, 2) 743 #define GPIO_P65 APOLLO4_PINMUX(65, 3) 744 #define UART0CTS_P65 APOLLO4_PINMUX(65, 4) 745 #define DISP_D1_P65 APOLLO4_PINMUX(65, 5) 746 #define CT65_P65 APOLLO4_PINMUX(65, 6) 747 #define NCE65_P65 APOLLO4_PINMUX(65, 7) 748 #define OBSBUS1_P65 APOLLO4_PINMUX(65, 8) 749 #define FPIO_P65 APOLLO4_PINMUX(65, 11) 750 #define MSPI0_2_P66 APOLLO4_PINMUX(66, 0) 751 #define CLKOUT_P66 APOLLO4_PINMUX(66, 1) 752 #define SWO_P66 APOLLO4_PINMUX(66, 2) 753 #define GPIO_P66 APOLLO4_PINMUX(66, 3) 754 #define UART0TX_P66 APOLLO4_PINMUX(66, 4) 755 #define DISP_D2_P66 APOLLO4_PINMUX(66, 5) 756 #define CT66_P66 APOLLO4_PINMUX(66, 6) 757 #define NCE66_P66 APOLLO4_PINMUX(66, 7) 758 #define OBSBUS2_P66 APOLLO4_PINMUX(66, 8) 759 #define FPIO_P66 APOLLO4_PINMUX(66, 11) 760 #define MSPI0_3_P67 APOLLO4_PINMUX(67, 0) 761 #define CLKOUT_P67 APOLLO4_PINMUX(67, 1) 762 #define SWO_P67 APOLLO4_PINMUX(67, 2) 763 #define GPIO_P67 APOLLO4_PINMUX(67, 3) 764 #define UART2TX_P67 APOLLO4_PINMUX(67, 4) 765 #define DISP_D3_P67 APOLLO4_PINMUX(67, 5) 766 #define CT67_P67 APOLLO4_PINMUX(67, 6) 767 #define NCE67_P67 APOLLO4_PINMUX(67, 7) 768 #define OBSBUS3_P67 APOLLO4_PINMUX(67, 8) 769 #define FPIO_P67 APOLLO4_PINMUX(67, 11) 770 #define MSPI0_4_P68 APOLLO4_PINMUX(68, 0) 771 #define SWO_P68 APOLLO4_PINMUX(68, 1) 772 #define GPIO_P68 APOLLO4_PINMUX(68, 3) 773 #define UART0RX_P68 APOLLO4_PINMUX(68, 4) 774 #define DISP_D4_P68 APOLLO4_PINMUX(68, 5) 775 #define CT68_P68 APOLLO4_PINMUX(68, 6) 776 #define NCE68_P68 APOLLO4_PINMUX(68, 7) 777 #define OBSBUS4_P68 APOLLO4_PINMUX(68, 8) 778 #define FPIO_P68 APOLLO4_PINMUX(68, 11) 779 #define MSPI0_5_P69 APOLLO4_PINMUX(69, 0) 780 #define XT32KHZ_P69 APOLLO4_PINMUX(69, 1) 781 #define SWO_P69 APOLLO4_PINMUX(69, 2) 782 #define GPIO_P69 APOLLO4_PINMUX(69, 3) 783 #define UART2RX_P69 APOLLO4_PINMUX(69, 4) 784 #define DISP_D5_P69 APOLLO4_PINMUX(69, 5) 785 #define CT69_P69 APOLLO4_PINMUX(69, 6) 786 #define NCE69_P69 APOLLO4_PINMUX(69, 7) 787 #define OBSBUS5_P69 APOLLO4_PINMUX(69, 8) 788 #define FPIO_P69 APOLLO4_PINMUX(69, 11) 789 #define MSPI0_6_P70 APOLLO4_PINMUX(70, 0) 790 #define XT32KHZ_P70 APOLLO4_PINMUX(70, 1) 791 #define SWTRACE0_P70 APOLLO4_PINMUX(70, 2) 792 #define GPIO_P70 APOLLO4_PINMUX(70, 3) 793 #define UART0RTS_P70 APOLLO4_PINMUX(70, 4) 794 #define DISP_D6_P70 APOLLO4_PINMUX(70, 5) 795 #define CT70_P70 APOLLO4_PINMUX(70, 6) 796 #define NCE70_P70 APOLLO4_PINMUX(70, 7) 797 #define OBSBUS6_P70 APOLLO4_PINMUX(70, 8) 798 #define FPIO_P70 APOLLO4_PINMUX(70, 11) 799 #define MSPI0_7_P71 APOLLO4_PINMUX(71, 0) 800 #define CLKOUT_P71 APOLLO4_PINMUX(71, 1) 801 #define SWTRACE1_P71 APOLLO4_PINMUX(71, 2) 802 #define GPIO_P71 APOLLO4_PINMUX(71, 3) 803 #define UART0CTS_P71 APOLLO4_PINMUX(71, 4) 804 #define DISP_D7_P71 APOLLO4_PINMUX(71, 5) 805 #define CT71_P71 APOLLO4_PINMUX(71, 6) 806 #define NCE71_P71 APOLLO4_PINMUX(71, 7) 807 #define OBSBUS7_P71 APOLLO4_PINMUX(71, 8) 808 #define FPIO_P71 APOLLO4_PINMUX(71, 11) 809 #define MSPI0_8_P72 APOLLO4_PINMUX(72, 0) 810 #define CLKOUT_P72 APOLLO4_PINMUX(72, 1) 811 #define SWTRACE2_P72 APOLLO4_PINMUX(72, 2) 812 #define GPIO_P72 APOLLO4_PINMUX(72, 3) 813 #define UART0TX_P72 APOLLO4_PINMUX(72, 4) 814 #define DISP_D8_P72 APOLLO4_PINMUX(72, 5) 815 #define CT72_P72 APOLLO4_PINMUX(72, 6) 816 #define NCE72_P72 APOLLO4_PINMUX(72, 7) 817 #define OBSBUS8_P72 APOLLO4_PINMUX(72, 8) 818 #define VCMPO_P72 APOLLO4_PINMUX(72, 9) 819 #define FPIO_P72 APOLLO4_PINMUX(72, 11) 820 #define MSPI0_9_P73 APOLLO4_PINMUX(73, 0) 821 #define SWTRACE3_P73 APOLLO4_PINMUX(73, 2) 822 #define GPIO_P73 APOLLO4_PINMUX(73, 3) 823 #define UART2TX_P73 APOLLO4_PINMUX(73, 4) 824 #define DISP_D9_P73 APOLLO4_PINMUX(73, 5) 825 #define CT73_P73 APOLLO4_PINMUX(73, 6) 826 #define NCE73_P73 APOLLO4_PINMUX(73, 7) 827 #define OBSBUS9_P73 APOLLO4_PINMUX(73, 8) 828 #define FPIO_P73 APOLLO4_PINMUX(73, 11) 829 #define MSPI2_0_P74 APOLLO4_PINMUX(74, 0) 830 #define DISP_QSPI_D0_OUT_P74 APOLLO4_PINMUX(74, 1) 831 #define DISP_QSPI_D0_P74 APOLLO4_PINMUX(74, 2) 832 #define GPIO_P74 APOLLO4_PINMUX(74, 3) 833 #define UART0RX_P74 APOLLO4_PINMUX(74, 4) 834 #define DISP_D10_P74 APOLLO4_PINMUX(74, 5) 835 #define CT74_P74 APOLLO4_PINMUX(74, 6) 836 #define NCE74_P74 APOLLO4_PINMUX(74, 7) 837 #define OBSBUS10_P74 APOLLO4_PINMUX(74, 8) 838 #define DISP_SPI_SD_P74 APOLLO4_PINMUX(74, 9) 839 #define DISP_SPI_SDO_P74 APOLLO4_PINMUX(74, 10) 840 #define FPIO_P74 APOLLO4_PINMUX(74, 11) 841 #define MSPI2_1_P75 APOLLO4_PINMUX(75, 0) 842 #define XT32KHZ_P75 APOLLO4_PINMUX(75, 1) 843 #define DISP_QSPI_D1_P75 APOLLO4_PINMUX(75, 2) 844 #define GPIO_P75 APOLLO4_PINMUX(75, 3) 845 #define UART2RX_P75 APOLLO4_PINMUX(75, 4) 846 #define DISP_D11_P75 APOLLO4_PINMUX(75, 5) 847 #define CT75_P75 APOLLO4_PINMUX(75, 6) 848 #define NCE75_P75 APOLLO4_PINMUX(75, 7) 849 #define OBSBUS11_P75 APOLLO4_PINMUX(75, 8) 850 #define DISP_SPI_DCX_P75 APOLLO4_PINMUX(75, 9) 851 #define FPIO_P75 APOLLO4_PINMUX(75, 11) 852 #define MSPI2_2_P76 APOLLO4_PINMUX(76, 0) 853 #define XT32KHZ_P76 APOLLO4_PINMUX(76, 1) 854 #define DISP_QSPI_D2_P76 APOLLO4_PINMUX(76, 2) 855 #define GPIO_P76 APOLLO4_PINMUX(76, 3) 856 #define UART0RTS_P76 APOLLO4_PINMUX(76, 4) 857 #define DISP_D12_P76 APOLLO4_PINMUX(76, 5) 858 #define CT76_P76 APOLLO4_PINMUX(76, 6) 859 #define NCE76_P76 APOLLO4_PINMUX(76, 7) 860 #define OBSBUS12_P76 APOLLO4_PINMUX(76, 8) 861 #define FPIO_P76 APOLLO4_PINMUX(76, 11) 862 #define MSPI2_3_P77 APOLLO4_PINMUX(77, 0) 863 #define DISP_QSPI_D3_P77 APOLLO4_PINMUX(77, 2) 864 #define GPIO_P77 APOLLO4_PINMUX(77, 3) 865 #define UART0CTS_P77 APOLLO4_PINMUX(77, 4) 866 #define DISP_D13_P77 APOLLO4_PINMUX(77, 5) 867 #define CT77_P77 APOLLO4_PINMUX(77, 6) 868 #define NCE77_P77 APOLLO4_PINMUX(77, 7) 869 #define OBSBUS13_P77 APOLLO4_PINMUX(77, 8) 870 #define FPIO_P77 APOLLO4_PINMUX(77, 11) 871 #define MSPI2_4_P78 APOLLO4_PINMUX(78, 0) 872 #define DISP_QSPI_SCK_P78 APOLLO4_PINMUX(78, 2) 873 #define GPIO_P78 APOLLO4_PINMUX(78, 3) 874 #define UART0TX_P78 APOLLO4_PINMUX(78, 4) 875 #define DISP_D14_P78 APOLLO4_PINMUX(78, 5) 876 #define CT78_P78 APOLLO4_PINMUX(78, 6) 877 #define NCE78_P78 APOLLO4_PINMUX(78, 7) 878 #define OBSBUS14_P78 APOLLO4_PINMUX(78, 8) 879 #define DISP_SPI_SCK_P78 APOLLO4_PINMUX(78, 9) 880 #define FPIO_P78 APOLLO4_PINMUX(78, 11) 881 #define MSPI2_5_P79 APOLLO4_PINMUX(79, 0) 882 #define SDIF_DAT4_P79 APOLLO4_PINMUX(79, 2) 883 #define GPIO_P79 APOLLO4_PINMUX(79, 3) 884 #define SWO_P79 APOLLO4_PINMUX(79, 4) 885 #define DISP_VS_P79 APOLLO4_PINMUX(79, 5) 886 #define CT79_P79 APOLLO4_PINMUX(79, 6) 887 #define NCE79_P79 APOLLO4_PINMUX(79, 7) 888 #define OBSBUS15_P79 APOLLO4_PINMUX(79, 8) 889 #define DISP_SPI_SDI_P79 APOLLO4_PINMUX(79, 9) 890 #define FPIO_P79 APOLLO4_PINMUX(79, 11) 891 #define MSPI2_6_P80 APOLLO4_PINMUX(80, 0) 892 #define CLKOUT_P80 APOLLO4_PINMUX(80, 1) 893 #define SDIF_DAT5_P80 APOLLO4_PINMUX(80, 2) 894 #define GPIO_P80 APOLLO4_PINMUX(80, 3) 895 #define SWTRACE0_P80 APOLLO4_PINMUX(80, 4) 896 #define DISP_HS_P80 APOLLO4_PINMUX(80, 5) 897 #define CT80_P80 APOLLO4_PINMUX(80, 6) 898 #define NCE80_P80 APOLLO4_PINMUX(80, 7) 899 #define OBSBUS0_P80 APOLLO4_PINMUX(80, 8) 900 #define FPIO_P80 APOLLO4_PINMUX(80, 11) 901 #define MSPI2_7_P81 APOLLO4_PINMUX(81, 0) 902 #define CLKOUT_P81 APOLLO4_PINMUX(81, 1) 903 #define SDIF_DAT6_P81 APOLLO4_PINMUX(81, 2) 904 #define GPIO_P81 APOLLO4_PINMUX(81, 3) 905 #define SWTRACE1_P81 APOLLO4_PINMUX(81, 4) 906 #define DISP_DE_P81 APOLLO4_PINMUX(81, 5) 907 #define CT81_P81 APOLLO4_PINMUX(81, 6) 908 #define NCE81_P81 APOLLO4_PINMUX(81, 7) 909 #define OBSBUS1_P81 APOLLO4_PINMUX(81, 8) 910 #define FPIO_P81 APOLLO4_PINMUX(81, 11) 911 #define MSPI2_8_P82 APOLLO4_PINMUX(82, 0) 912 #define XT32KHZ_P82 APOLLO4_PINMUX(82, 1) 913 #define SDIF_DAT7_P82 APOLLO4_PINMUX(82, 2) 914 #define GPIO_P82 APOLLO4_PINMUX(82, 3) 915 #define SWTRACE2_P82 APOLLO4_PINMUX(82, 4) 916 #define DISP_PCLK_P82 APOLLO4_PINMUX(82, 5) 917 #define CT82_P82 APOLLO4_PINMUX(82, 6) 918 #define NCE82_P82 APOLLO4_PINMUX(82, 7) 919 #define OBSBUS2_P82 APOLLO4_PINMUX(82, 8) 920 #define FPIO_P82 APOLLO4_PINMUX(82, 11) 921 #define MSPI2_9_P83 APOLLO4_PINMUX(83, 0) 922 #define XT32KHZ_P83 APOLLO4_PINMUX(83, 1) 923 #define SDIF_CMD_P83 APOLLO4_PINMUX(83, 2) 924 #define GPIO_P83 APOLLO4_PINMUX(83, 3) 925 #define SWTRACE3_P83 APOLLO4_PINMUX(83, 4) 926 #define DISP_SD_P83 APOLLO4_PINMUX(83, 5) 927 #define CT83_P83 APOLLO4_PINMUX(83, 6) 928 #define NCE83_P83 APOLLO4_PINMUX(83, 7) 929 #define OBSBUS3_P83 APOLLO4_PINMUX(83, 8) 930 #define FPIO_P83 APOLLO4_PINMUX(83, 11) 931 #define SDIF_DAT0_P84 APOLLO4_PINMUX(84, 2) 932 #define GPIO_P84 APOLLO4_PINMUX(84, 3) 933 #define CT84_P84 APOLLO4_PINMUX(84, 6) 934 #define NCE84_P84 APOLLO4_PINMUX(84, 7) 935 #define OBSBUS4_P84 APOLLO4_PINMUX(84, 8) 936 #define FPIO_P84 APOLLO4_PINMUX(84, 11) 937 #define SDIF_DAT1_P85 APOLLO4_PINMUX(85, 2) 938 #define GPIO_P85 APOLLO4_PINMUX(85, 3) 939 #define CT85_P85 APOLLO4_PINMUX(85, 6) 940 #define NCE85_P85 APOLLO4_PINMUX(85, 7) 941 #define OBSBUS5_P85 APOLLO4_PINMUX(85, 8) 942 #define FPIO_P85 APOLLO4_PINMUX(85, 11) 943 #define SDIF_DAT2_P86 APOLLO4_PINMUX(86, 2) 944 #define GPIO_P86 APOLLO4_PINMUX(86, 3) 945 #define CT86_P86 APOLLO4_PINMUX(86, 6) 946 #define NCE86_P86 APOLLO4_PINMUX(86, 7) 947 #define OBSBUS6_P86 APOLLO4_PINMUX(86, 8) 948 #define FPIO_P86 APOLLO4_PINMUX(86, 11) 949 #define SDIF_DAT3_P87 APOLLO4_PINMUX(87, 2) 950 #define GPIO_P87 APOLLO4_PINMUX(87, 3) 951 #define CT87_P87 APOLLO4_PINMUX(87, 6) 952 #define NCE87_P87 APOLLO4_PINMUX(87, 7) 953 #define OBSBUS7_P87 APOLLO4_PINMUX(87, 8) 954 #define DISP_TE_P87 APOLLO4_PINMUX(87, 9) 955 #define FPIO_P87 APOLLO4_PINMUX(87, 11) 956 #define SDIF_CLKOUT_P88 APOLLO4_PINMUX(88, 2) 957 #define GPIO_P88 APOLLO4_PINMUX(88, 3) 958 #define CT88_P88 APOLLO4_PINMUX(88, 6) 959 #define NCE88_P88 APOLLO4_PINMUX(88, 7) 960 #define OBSBUS8_P88 APOLLO4_PINMUX(88, 8) 961 #define FPIO_P88 APOLLO4_PINMUX(88, 11) 962 #define GPIO_P89 APOLLO4_PINMUX(89, 3) 963 #define DISP_CM_P89 APOLLO4_PINMUX(89, 5) 964 #define CT89_P89 APOLLO4_PINMUX(89, 6) 965 #define NCE89_P89 APOLLO4_PINMUX(89, 7) 966 #define OBSBUS9_P89 APOLLO4_PINMUX(89, 8) 967 #define FPIO_P89 APOLLO4_PINMUX(89, 11) 968 #define GPIO_P90 APOLLO4_PINMUX(90, 3) 969 #define CT90_P90 APOLLO4_PINMUX(90, 6) 970 #define NCE90_P90 APOLLO4_PINMUX(90, 7) 971 #define OBSBUS10_P90 APOLLO4_PINMUX(90, 8) 972 #define VCMPO_P90 APOLLO4_PINMUX(90, 9) 973 #define FPIO_P90 APOLLO4_PINMUX(90, 11) 974 #define GPIO_P91 APOLLO4_PINMUX(91, 3) 975 #define CT91_P91 APOLLO4_PINMUX(91, 6) 976 #define NCE91_P91 APOLLO4_PINMUX(91, 7) 977 #define OBSBUS11_P91 APOLLO4_PINMUX(91, 8) 978 #define VCMPO_P91 APOLLO4_PINMUX(91, 9) 979 #define FPIO_P91 APOLLO4_PINMUX(91, 11) 980 #define GPIO_P92 APOLLO4_PINMUX(92, 3) 981 #define CT92_P92 APOLLO4_PINMUX(92, 6) 982 #define NCE92_P92 APOLLO4_PINMUX(92, 7) 983 #define OBSBUS12_P92 APOLLO4_PINMUX(92, 8) 984 #define VCMPO_P92 APOLLO4_PINMUX(92, 9) 985 #define FPIO_P92 APOLLO4_PINMUX(92, 11) 986 #define MSPI2_9_P93 APOLLO4_PINMUX(93, 0) 987 #define GPIO_P93 APOLLO4_PINMUX(93, 3) 988 #define CT93_P93 APOLLO4_PINMUX(93, 6) 989 #define NCE93_P93 APOLLO4_PINMUX(93, 7) 990 #define OBSBUS13_P93 APOLLO4_PINMUX(93, 8) 991 #define VCMPO_P93 APOLLO4_PINMUX(93, 9) 992 #define FPIO_P93 APOLLO4_PINMUX(93, 11) 993 #define GPIO_P94 APOLLO4_PINMUX(94, 3) 994 #define CT94_P94 APOLLO4_PINMUX(94, 6) 995 #define NCE94_P94 APOLLO4_PINMUX(94, 7) 996 #define OBSBUS14_P94 APOLLO4_PINMUX(94, 8) 997 #define VCMPO_P94 APOLLO4_PINMUX(94, 9) 998 #define FPIO_P94 APOLLO4_PINMUX(94, 11) 999 #define GPIO_P95 APOLLO4_PINMUX(95, 3) 1000 #define CT95_P95 APOLLO4_PINMUX(95, 6) 1001 #define NCE95_P95 APOLLO4_PINMUX(95, 7) 1002 #define OBSBUS15_P95 APOLLO4_PINMUX(95, 8) 1003 #define FPIO_P95 APOLLO4_PINMUX(95, 11) 1004 #define GPIO_P96 APOLLO4_PINMUX(96, 3) 1005 #define CT96_P96 APOLLO4_PINMUX(96, 6) 1006 #define NCE96_P96 APOLLO4_PINMUX(96, 7) 1007 #define OBSBUS0_P96 APOLLO4_PINMUX(96, 8) 1008 #define FPIO_P96 APOLLO4_PINMUX(96, 11) 1009 #define GPIO_P97 APOLLO4_PINMUX(97, 3) 1010 #define CT97_P97 APOLLO4_PINMUX(97, 6) 1011 #define NCE97_P97 APOLLO4_PINMUX(97, 7) 1012 #define OBSBUS1_P97 APOLLO4_PINMUX(97, 8) 1013 #define FPIO_P97 APOLLO4_PINMUX(97, 11) 1014 #define GPIO_P98 APOLLO4_PINMUX(98, 3) 1015 #define CT98_P98 APOLLO4_PINMUX(98, 6) 1016 #define NCE98_P98 APOLLO4_PINMUX(98, 7) 1017 #define OBSBUS2_P98 APOLLO4_PINMUX(98, 8) 1018 #define FPIO_P98 APOLLO4_PINMUX(98, 11) 1019 #define GPIO_P99 APOLLO4_PINMUX(99, 3) 1020 #define CT99_P99 APOLLO4_PINMUX(99, 6) 1021 #define NCE99_P99 APOLLO4_PINMUX(99, 7) 1022 #define OBSBUS3_P99 APOLLO4_PINMUX(99, 8) 1023 #define FPIO_P99 APOLLO4_PINMUX(99, 11) 1024 #define GPIO_P100 APOLLO4_PINMUX(100, 3) 1025 #define CT100_P100 APOLLO4_PINMUX(100, 6) 1026 #define NCE100_P100 APOLLO4_PINMUX(100, 7) 1027 #define OBSBUS4_P100 APOLLO4_PINMUX(100, 8) 1028 #define FPIO_P100 APOLLO4_PINMUX(100, 11) 1029 #define GPIO_P101 APOLLO4_PINMUX(101, 3) 1030 #define CT101_P101 APOLLO4_PINMUX(101, 6) 1031 #define NCE101_P101 APOLLO4_PINMUX(101, 7) 1032 #define OBSBUS5_P101 APOLLO4_PINMUX(101, 8) 1033 #define FPIO_P101 APOLLO4_PINMUX(101, 11) 1034 #define GPIO_P102 APOLLO4_PINMUX(102, 3) 1035 #define CT102_P102 APOLLO4_PINMUX(102, 6) 1036 #define NCE102_P102 APOLLO4_PINMUX(102, 7) 1037 #define OBSBUS6_P102 APOLLO4_PINMUX(102, 8) 1038 #define FPIO_P102 APOLLO4_PINMUX(102, 11) 1039 #define GPIO_P103 APOLLO4_PINMUX(103, 3) 1040 #define CT103_P103 APOLLO4_PINMUX(103, 6) 1041 #define NCE103_P103 APOLLO4_PINMUX(103, 7) 1042 #define OBSBUS7_P103 APOLLO4_PINMUX(103, 8) 1043 #define FPIO_P103 APOLLO4_PINMUX(103, 11) 1044 #define MSPI1_9_P104 APOLLO4_PINMUX(104, 0) 1045 #define GPIO_P104 APOLLO4_PINMUX(104, 3) 1046 #define CT104_P104 APOLLO4_PINMUX(104, 6) 1047 #define NCE104_P104 APOLLO4_PINMUX(104, 7) 1048 #define OBSBUS8_P104 APOLLO4_PINMUX(104, 8) 1049 #define FPIO_P104 APOLLO4_PINMUX(104, 11) 1050 #define GPIO_P105 APOLLO4_PINMUX(105, 3) 1051 #define CT105_P105 APOLLO4_PINMUX(105, 6) 1052 #define OBSBUS9_P105 APOLLO4_PINMUX(105, 8) 1053 #define GPIO_P106 APOLLO4_PINMUX(106, 3) 1054 #define CT106_P106 APOLLO4_PINMUX(106, 6) 1055 #define OBSBUS10_P106 APOLLO4_PINMUX(106, 8) 1056 #define GPIO_P107 APOLLO4_PINMUX(107, 3) 1057 #define CT107_P107 APOLLO4_PINMUX(107, 6) 1058 #define OBSBUS11_P107 APOLLO4_PINMUX(107, 8) 1059 #define GPIO_P108 APOLLO4_PINMUX(108, 3) 1060 #define CT108_P108 APOLLO4_PINMUX(108, 6) 1061 #define OBSBUS12_P108 APOLLO4_PINMUX(108, 8) 1062 #define GPIO_P109 APOLLO4_PINMUX(109, 3) 1063 #define CT109_P109 APOLLO4_PINMUX(109, 6) 1064 #define OBSBUS13_P109 APOLLO4_PINMUX(109, 8) 1065 #define GPIO_P110 APOLLO4_PINMUX(110, 3) 1066 #define CT110_P110 APOLLO4_PINMUX(110, 6) 1067 #define OBSBUS14_P110 APOLLO4_PINMUX(110, 8) 1068 #define GPIO_P111 APOLLO4_PINMUX(111, 3) 1069 #define CT111_P111 APOLLO4_PINMUX(111, 6) 1070 #define OBSBUS15_P111 APOLLO4_PINMUX(111, 8) 1071 #define GPIO_P112 APOLLO4_PINMUX(112, 3) 1072 #define CT112_P112 APOLLO4_PINMUX(112, 6) 1073 #define OBSBUS0_P112 APOLLO4_PINMUX(112, 8) 1074 #define GPIO_P113 APOLLO4_PINMUX(113, 3) 1075 #define CT113_P113 APOLLO4_PINMUX(113, 6) 1076 #define OBSBUS1_P113 APOLLO4_PINMUX(113, 8) 1077 #define GPIO_P114 APOLLO4_PINMUX(114, 3) 1078 #define CT114_P114 APOLLO4_PINMUX(114, 6) 1079 #define OBSBUS2_P114 APOLLO4_PINMUX(114, 8) 1080 #define GPIO_P115 APOLLO4_PINMUX(115, 3) 1081 #define CT115_P115 APOLLO4_PINMUX(115, 6) 1082 #define OBSBUS3_P115 APOLLO4_PINMUX(115, 8) 1083 #define GPIO_P116 APOLLO4_PINMUX(116, 3) 1084 #define CT116_P116 APOLLO4_PINMUX(116, 6) 1085 #define OBSBUS4_P116 APOLLO4_PINMUX(116, 8) 1086 #define GPIO_P117 APOLLO4_PINMUX(117, 3) 1087 #define CT117_P117 APOLLO4_PINMUX(117, 6) 1088 #define OBSBUS5_P117 APOLLO4_PINMUX(117, 8) 1089 #define GPIO_P118 APOLLO4_PINMUX(118, 3) 1090 #define CT118_P118 APOLLO4_PINMUX(118, 6) 1091 #define OBSBUS6_P118 APOLLO4_PINMUX(118, 8) 1092 #define GPIO_P119 APOLLO4_PINMUX(119, 3) 1093 #define CT119_P119 APOLLO4_PINMUX(119, 6) 1094 #define OBSBUS7_P119 APOLLO4_PINMUX(119, 8) 1095 #define GPIO_P120 APOLLO4_PINMUX(120, 3) 1096 #define CT120_P120 APOLLO4_PINMUX(120, 6) 1097 #define OBSBUS8_P120 APOLLO4_PINMUX(120, 8) 1098 #define GPIO_P121 APOLLO4_PINMUX(121, 3) 1099 #define CT121_P121 APOLLO4_PINMUX(121, 6) 1100 #define OBSBUS9_P121 APOLLO4_PINMUX(121, 8) 1101 #define GPIO_P122 APOLLO4_PINMUX(122, 3) 1102 #define CT122_P122 APOLLO4_PINMUX(122, 6) 1103 #define OBSBUS10_P122 APOLLO4_PINMUX(122, 8) 1104 #define GPIO_P123 APOLLO4_PINMUX(123, 3) 1105 #define CT123_P123 APOLLO4_PINMUX(123, 6) 1106 #define OBSBUS11_P123 APOLLO4_PINMUX(123, 8) 1107 #define GPIO_P124 APOLLO4_PINMUX(124, 3) 1108 #define CT124_P124 APOLLO4_PINMUX(124, 6) 1109 #define OBSBUS12_P124 APOLLO4_PINMUX(124, 8) 1110 #define GPIO_P125 APOLLO4_PINMUX(125, 3) 1111 #define CT125_P125 APOLLO4_PINMUX(125, 6) 1112 #define OBSBUS13_P125 APOLLO4_PINMUX(125, 8) 1113 #define GPIO_P126 APOLLO4_PINMUX(126, 3) 1114 #define CT126_P126 APOLLO4_PINMUX(126, 6) 1115 #define OBSBUS14_P126 APOLLO4_PINMUX(126, 8) 1116 #define GPIO_P127 APOLLO4_PINMUX(127, 3) 1117 #define CT127_P127 APOLLO4_PINMUX(127, 6) 1118 #define OBSBUS15_P127 APOLLO4_PINMUX(127, 8) 1119 1120 #endif /* __APOLLO4_PINCTRL_H__ */ 1121