18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * r8a7794/r8a7745 processor support - PFC hardware block. 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2014-2015 Renesas Electronics Corporation 68c2ecf20Sopenharmony_ci * Copyright (C) 2015 Renesas Solutions Corp. 78c2ecf20Sopenharmony_ci * Copyright (C) 2015-2017 Cogent Embedded, Inc. <source@cogentembedded.com> 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#include <linux/errno.h> 118c2ecf20Sopenharmony_ci#include <linux/kernel.h> 128c2ecf20Sopenharmony_ci#include <linux/sys_soc.h> 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#include "core.h" 158c2ecf20Sopenharmony_ci#include "sh_pfc.h" 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_ci#define CPU_ALL_GP(fn, sfx) \ 188c2ecf20Sopenharmony_ci PORT_GP_32(0, fn, sfx), \ 198c2ecf20Sopenharmony_ci PORT_GP_26(1, fn, sfx), \ 208c2ecf20Sopenharmony_ci PORT_GP_32(2, fn, sfx), \ 218c2ecf20Sopenharmony_ci PORT_GP_32(3, fn, sfx), \ 228c2ecf20Sopenharmony_ci PORT_GP_32(4, fn, sfx), \ 238c2ecf20Sopenharmony_ci PORT_GP_28(5, fn, sfx), \ 248c2ecf20Sopenharmony_ci PORT_GP_CFG_24(6, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 258c2ecf20Sopenharmony_ci PORT_GP_1(6, 24, fn, sfx), \ 268c2ecf20Sopenharmony_ci PORT_GP_1(6, 25, fn, sfx) 278c2ecf20Sopenharmony_ci 288c2ecf20Sopenharmony_cienum { 298c2ecf20Sopenharmony_ci PINMUX_RESERVED = 0, 308c2ecf20Sopenharmony_ci 318c2ecf20Sopenharmony_ci PINMUX_DATA_BEGIN, 328c2ecf20Sopenharmony_ci GP_ALL(DATA), 338c2ecf20Sopenharmony_ci PINMUX_DATA_END, 348c2ecf20Sopenharmony_ci 358c2ecf20Sopenharmony_ci PINMUX_FUNCTION_BEGIN, 368c2ecf20Sopenharmony_ci GP_ALL(FN), 378c2ecf20Sopenharmony_ci 388c2ecf20Sopenharmony_ci /* GPSR0 */ 398c2ecf20Sopenharmony_ci FN_IP0_23_22, FN_IP0_24, FN_IP0_25, FN_IP0_27_26, FN_IP0_29_28, 408c2ecf20Sopenharmony_ci FN_IP0_31_30, FN_IP1_1_0, FN_IP1_3_2, FN_IP1_5_4, FN_IP1_7_6, 418c2ecf20Sopenharmony_ci FN_IP1_10_8, FN_IP1_12_11, FN_IP1_14_13, FN_IP1_17_15, FN_IP1_19_18, 428c2ecf20Sopenharmony_ci FN_IP1_21_20, FN_IP1_23_22, FN_IP1_24, FN_A2, FN_IP1_26, FN_IP1_27, 438c2ecf20Sopenharmony_ci FN_IP1_29_28, FN_IP1_31_30, FN_IP2_1_0, FN_IP2_3_2, FN_IP2_5_4, 448c2ecf20Sopenharmony_ci FN_IP2_7_6, FN_IP2_9_8, FN_IP2_11_10, FN_IP2_13_12, FN_IP2_15_14, 458c2ecf20Sopenharmony_ci FN_IP2_17_16, 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_ci /* GPSR1 */ 488c2ecf20Sopenharmony_ci FN_IP2_20_18, FN_IP2_23_21, FN_IP2_26_24, FN_IP2_29_27, FN_IP2_31_30, 498c2ecf20Sopenharmony_ci FN_IP3_1_0, FN_IP3_3_2, FN_IP3_5_4, FN_IP3_7_6, FN_IP3_9_8, FN_IP3_10, 508c2ecf20Sopenharmony_ci FN_IP3_11, FN_IP3_12, FN_IP3_14_13, FN_IP3_17_15, FN_IP3_20_18, 518c2ecf20Sopenharmony_ci FN_IP3_23_21, FN_IP3_26_24, FN_IP3_29_27, FN_IP3_30, FN_IP3_31, 528c2ecf20Sopenharmony_ci FN_WE0_N, FN_WE1_N, FN_IP4_1_0 , FN_IP7_31, FN_DACK0, 538c2ecf20Sopenharmony_ci 548c2ecf20Sopenharmony_ci /* GPSR2 */ 558c2ecf20Sopenharmony_ci FN_IP4_4_2, FN_IP4_7_5, FN_IP4_9_8, FN_IP4_11_10, FN_IP4_13_12, 568c2ecf20Sopenharmony_ci FN_IP4_15_14, FN_IP4_17_16, FN_IP4_19_18, FN_IP4_22_20, FN_IP4_25_23, 578c2ecf20Sopenharmony_ci FN_IP4_27_26, FN_IP4_29_28, FN_IP4_31_30, FN_IP5_1_0, FN_IP5_3_2, 588c2ecf20Sopenharmony_ci FN_IP5_5_4, FN_IP5_8_6, FN_IP5_11_9, FN_IP5_13_12, FN_IP5_15_14, 598c2ecf20Sopenharmony_ci FN_IP5_17_16, FN_IP5_19_18, FN_IP5_21_20, FN_IP5_23_22, FN_IP5_25_24, 608c2ecf20Sopenharmony_ci FN_IP5_27_26, FN_IP5_29_28, FN_IP5_31_30, FN_IP6_1_0, FN_IP6_3_2, 618c2ecf20Sopenharmony_ci FN_IP6_5_4, FN_IP6_7_6, 628c2ecf20Sopenharmony_ci 638c2ecf20Sopenharmony_ci /* GPSR3 */ 648c2ecf20Sopenharmony_ci FN_IP6_8, FN_IP6_9, FN_IP6_10, FN_IP6_11, FN_IP6_12, FN_IP6_13, 658c2ecf20Sopenharmony_ci FN_IP6_14, FN_IP6_15, FN_IP6_16, FN_IP6_19_17, FN_IP6_22_20, 668c2ecf20Sopenharmony_ci FN_IP6_25_23, FN_IP6_28_26, FN_IP6_31_29, FN_IP7_2_0, FN_IP7_5_3, 678c2ecf20Sopenharmony_ci FN_IP7_8_6, FN_IP7_11_9, FN_IP7_14_12, FN_IP7_17_15, FN_IP7_20_18, 688c2ecf20Sopenharmony_ci FN_IP7_23_21, FN_IP7_26_24, FN_IP7_29_27, FN_IP8_2_0, FN_IP8_5_3, 698c2ecf20Sopenharmony_ci FN_IP8_8_6, FN_IP8_11_9, FN_IP8_14_12, FN_IP8_16_15, FN_IP8_19_17, 708c2ecf20Sopenharmony_ci FN_IP8_22_20, 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci /* GPSR4 */ 738c2ecf20Sopenharmony_ci FN_IP8_25_23, FN_IP8_28_26, FN_IP8_31_29, FN_IP9_2_0, FN_IP9_5_3, 748c2ecf20Sopenharmony_ci FN_IP9_8_6, FN_IP9_11_9, FN_IP9_14_12, FN_IP9_16_15, FN_IP9_18_17, 758c2ecf20Sopenharmony_ci FN_IP9_21_19, FN_IP9_24_22, FN_IP9_27_25, FN_IP9_30_28, FN_IP10_2_0, 768c2ecf20Sopenharmony_ci FN_IP10_5_3, FN_IP10_8_6, FN_IP10_11_9, FN_IP10_14_12, FN_IP10_17_15, 778c2ecf20Sopenharmony_ci FN_IP10_20_18, FN_IP10_23_21, FN_IP10_26_24, FN_IP10_29_27, 788c2ecf20Sopenharmony_ci FN_IP10_31_30, FN_IP11_2_0, FN_IP11_5_3, FN_IP11_7_6, FN_IP11_10_8, 798c2ecf20Sopenharmony_ci FN_IP11_13_11, FN_IP11_15_14, FN_IP11_17_16, 808c2ecf20Sopenharmony_ci 818c2ecf20Sopenharmony_ci /* GPSR5 */ 828c2ecf20Sopenharmony_ci FN_IP11_20_18, FN_IP11_23_21, FN_IP11_26_24, FN_IP11_29_27, FN_IP12_2_0, 838c2ecf20Sopenharmony_ci FN_IP12_5_3, FN_IP12_8_6, FN_IP12_10_9, FN_IP12_12_11, FN_IP12_14_13, 848c2ecf20Sopenharmony_ci FN_IP12_17_15, FN_IP12_20_18, FN_IP12_23_21, FN_IP12_26_24, 858c2ecf20Sopenharmony_ci FN_IP12_29_27, FN_IP13_2_0, FN_IP13_5_3, FN_IP13_8_6, FN_IP13_11_9, 868c2ecf20Sopenharmony_ci FN_IP13_14_12, FN_IP13_17_15, FN_IP13_20_18, FN_IP13_23_21, 878c2ecf20Sopenharmony_ci FN_IP13_26_24, FN_USB0_PWEN, FN_USB0_OVC, FN_USB1_PWEN, FN_USB1_OVC, 888c2ecf20Sopenharmony_ci 898c2ecf20Sopenharmony_ci /* GPSR6 */ 908c2ecf20Sopenharmony_ci FN_SD0_CLK, FN_SD0_CMD, FN_SD0_DATA0, FN_SD0_DATA1, FN_SD0_DATA2, 918c2ecf20Sopenharmony_ci FN_SD0_DATA3, FN_SD0_CD, FN_SD0_WP, FN_SD1_CLK, FN_SD1_CMD, 928c2ecf20Sopenharmony_ci FN_SD1_DATA0, FN_SD1_DATA1, FN_SD1_DATA2, FN_SD1_DATA3, FN_IP0_0, 938c2ecf20Sopenharmony_ci FN_IP0_9_8, FN_IP0_10, FN_IP0_11, FN_IP0_12, FN_IP0_13, FN_IP0_14, 948c2ecf20Sopenharmony_ci FN_IP0_15, FN_IP0_16, FN_IP0_17, FN_IP0_19_18, FN_IP0_21_20, 958c2ecf20Sopenharmony_ci 968c2ecf20Sopenharmony_ci /* IPSR0 */ 978c2ecf20Sopenharmony_ci FN_SD1_CD, FN_CAN0_RX, FN_SD1_WP, FN_IRQ7, FN_CAN0_TX, FN_MMC_CLK, 988c2ecf20Sopenharmony_ci FN_SD2_CLK, FN_MMC_CMD, FN_SD2_CMD, FN_MMC_D0, FN_SD2_DATA0, FN_MMC_D1, 998c2ecf20Sopenharmony_ci FN_SD2_DATA1, FN_MMC_D2, FN_SD2_DATA2, FN_MMC_D3, FN_SD2_DATA3, 1008c2ecf20Sopenharmony_ci FN_MMC_D4, FN_SD2_CD, FN_MMC_D5, FN_SD2_WP, FN_MMC_D6, FN_SCIF0_RXD, 1018c2ecf20Sopenharmony_ci FN_I2C2_SCL_B, FN_CAN1_RX, FN_MMC_D7, FN_SCIF0_TXD, FN_I2C2_SDA_B, 1028c2ecf20Sopenharmony_ci FN_CAN1_TX, FN_D0, FN_SCIFA3_SCK_B, FN_IRQ4, FN_D1, FN_SCIFA3_RXD_B, 1038c2ecf20Sopenharmony_ci FN_D2, FN_SCIFA3_TXD_B, FN_D3, FN_I2C3_SCL_B, FN_SCIF5_RXD_B, FN_D4, 1048c2ecf20Sopenharmony_ci FN_I2C3_SDA_B, FN_SCIF5_TXD_B, FN_D5, FN_SCIF4_RXD_B, FN_I2C0_SCL_D, 1058c2ecf20Sopenharmony_ci 1068c2ecf20Sopenharmony_ci /* IPSR1 */ 1078c2ecf20Sopenharmony_ci FN_D6, FN_SCIF4_TXD_B, FN_I2C0_SDA_D, 1088c2ecf20Sopenharmony_ci FN_D7, FN_IRQ3, FN_TCLK1, FN_PWM6_B, 1098c2ecf20Sopenharmony_ci FN_D8, FN_HSCIF2_HRX, FN_I2C1_SCL_B, 1108c2ecf20Sopenharmony_ci FN_D9, FN_HSCIF2_HTX, FN_I2C1_SDA_B, 1118c2ecf20Sopenharmony_ci FN_D10, FN_HSCIF2_HSCK, FN_SCIF1_SCK_C, FN_IRQ6, FN_PWM5_C, 1128c2ecf20Sopenharmony_ci FN_D11, FN_HSCIF2_HCTS_N, FN_SCIF1_RXD_C, FN_I2C1_SCL_D, 1138c2ecf20Sopenharmony_ci FN_D12, FN_HSCIF2_HRTS_N, FN_SCIF1_TXD_C, FN_I2C1_SDA_D, 1148c2ecf20Sopenharmony_ci FN_D13, FN_SCIFA1_SCK, FN_PWM2_C, FN_TCLK2_B, 1158c2ecf20Sopenharmony_ci FN_D14, FN_SCIFA1_RXD, FN_I2C5_SCL_B, 1168c2ecf20Sopenharmony_ci FN_D15, FN_SCIFA1_TXD, FN_I2C5_SDA_B, 1178c2ecf20Sopenharmony_ci FN_A0, FN_SCIFB1_SCK, FN_PWM3_B, 1188c2ecf20Sopenharmony_ci FN_A1, FN_SCIFB1_TXD, 1198c2ecf20Sopenharmony_ci FN_A3, FN_SCIFB0_SCK, 1208c2ecf20Sopenharmony_ci FN_A4, FN_SCIFB0_TXD, 1218c2ecf20Sopenharmony_ci FN_A5, FN_SCIFB0_RXD, FN_PWM4_B, FN_TPUTO3_C, 1228c2ecf20Sopenharmony_ci FN_A6, FN_SCIFB0_CTS_N, FN_SCIFA4_RXD_B, FN_TPUTO2_C, 1238c2ecf20Sopenharmony_ci 1248c2ecf20Sopenharmony_ci /* IPSR2 */ 1258c2ecf20Sopenharmony_ci FN_A7, FN_SCIFB0_RTS_N, FN_SCIFA4_TXD_B, 1268c2ecf20Sopenharmony_ci FN_A8, FN_MSIOF1_RXD, FN_SCIFA0_RXD_B, 1278c2ecf20Sopenharmony_ci FN_A9, FN_MSIOF1_TXD, FN_SCIFA0_TXD_B, 1288c2ecf20Sopenharmony_ci FN_A10, FN_MSIOF1_SCK, FN_IIC0_SCL_B, 1298c2ecf20Sopenharmony_ci FN_A11, FN_MSIOF1_SYNC, FN_IIC0_SDA_B, 1308c2ecf20Sopenharmony_ci FN_A12, FN_MSIOF1_SS1, FN_SCIFA5_RXD_B, 1318c2ecf20Sopenharmony_ci FN_A13, FN_MSIOF1_SS2, FN_SCIFA5_TXD_B, 1328c2ecf20Sopenharmony_ci FN_A14, FN_MSIOF2_RXD, FN_HSCIF0_HRX_B, FN_DREQ1_N, 1338c2ecf20Sopenharmony_ci FN_A15, FN_MSIOF2_TXD, FN_HSCIF0_HTX_B, FN_DACK1, 1348c2ecf20Sopenharmony_ci FN_A16, FN_MSIOF2_SCK, FN_HSCIF0_HSCK_B, FN_SPEEDIN, FN_CAN_CLK_C, 1358c2ecf20Sopenharmony_ci FN_TPUTO2_B, 1368c2ecf20Sopenharmony_ci FN_A17, FN_MSIOF2_SYNC, FN_SCIF4_RXD_E, FN_CAN1_RX_B, 1378c2ecf20Sopenharmony_ci FN_A18, FN_MSIOF2_SS1, FN_SCIF4_TXD_E, FN_CAN1_TX_B, 1388c2ecf20Sopenharmony_ci FN_A19, FN_MSIOF2_SS2, FN_PWM4, FN_TPUTO2, 1398c2ecf20Sopenharmony_ci FN_A20, FN_SPCLK, 1408c2ecf20Sopenharmony_ci 1418c2ecf20Sopenharmony_ci /* IPSR3 */ 1428c2ecf20Sopenharmony_ci FN_A21, FN_MOSI_IO0, 1438c2ecf20Sopenharmony_ci FN_A22, FN_MISO_IO1, FN_ATADIR1_N, 1448c2ecf20Sopenharmony_ci FN_A23, FN_IO2, FN_ATAWR1_N, 1458c2ecf20Sopenharmony_ci FN_A24, FN_IO3, FN_EX_WAIT2, 1468c2ecf20Sopenharmony_ci FN_A25, FN_SSL, FN_ATARD1_N, 1478c2ecf20Sopenharmony_ci FN_CS0_N, FN_VI1_DATA8, 1488c2ecf20Sopenharmony_ci FN_CS1_N_A26, FN_VI1_DATA9, 1498c2ecf20Sopenharmony_ci FN_EX_CS0_N, FN_VI1_DATA10, 1508c2ecf20Sopenharmony_ci FN_EX_CS1_N, FN_TPUTO3_B, FN_SCIFB2_RXD, FN_VI1_DATA11, 1518c2ecf20Sopenharmony_ci FN_EX_CS2_N, FN_PWM0, FN_SCIF4_RXD_C, FN_TS_SDATA_B, FN_TPUTO3, 1528c2ecf20Sopenharmony_ci FN_SCIFB2_TXD, 1538c2ecf20Sopenharmony_ci FN_EX_CS3_N, FN_SCIFA2_SCK, FN_SCIF4_TXD_C, FN_TS_SCK_B, FN_BPFCLK, 1548c2ecf20Sopenharmony_ci FN_SCIFB2_SCK, 1558c2ecf20Sopenharmony_ci FN_EX_CS4_N, FN_SCIFA2_RXD, FN_I2C2_SCL_E, FN_TS_SDEN_B, FN_FMCLK, 1568c2ecf20Sopenharmony_ci FN_SCIFB2_CTS_N, 1578c2ecf20Sopenharmony_ci FN_EX_CS5_N, FN_SCIFA2_TXD, FN_I2C2_SDA_E, FN_TS_SPSYNC_B, FN_FMIN, 1588c2ecf20Sopenharmony_ci FN_SCIFB2_RTS_N, 1598c2ecf20Sopenharmony_ci FN_BS_N, FN_DRACK0, FN_PWM1_C, FN_TPUTO0_C, FN_ATACS01_N, 1608c2ecf20Sopenharmony_ci FN_RD_N, FN_ATACS11_N, 1618c2ecf20Sopenharmony_ci FN_RD_WR_N, FN_ATAG1_N, 1628c2ecf20Sopenharmony_ci 1638c2ecf20Sopenharmony_ci /* IPSR4 */ 1648c2ecf20Sopenharmony_ci FN_EX_WAIT0, FN_CAN_CLK_B, FN_SCIF_CLK, 1658c2ecf20Sopenharmony_ci FN_DU0_DR0, FN_LCDOUT16, FN_SCIF5_RXD_C, FN_I2C2_SCL_D, 1668c2ecf20Sopenharmony_ci FN_DU0_DR1, FN_LCDOUT17, FN_SCIF5_TXD_C, FN_I2C2_SDA_D, 1678c2ecf20Sopenharmony_ci FN_DU0_DR2, FN_LCDOUT18, 1688c2ecf20Sopenharmony_ci FN_DU0_DR3, FN_LCDOUT19, 1698c2ecf20Sopenharmony_ci FN_DU0_DR4, FN_LCDOUT20, 1708c2ecf20Sopenharmony_ci FN_DU0_DR5, FN_LCDOUT21, 1718c2ecf20Sopenharmony_ci FN_DU0_DR6, FN_LCDOUT22, 1728c2ecf20Sopenharmony_ci FN_DU0_DR7, FN_LCDOUT23, 1738c2ecf20Sopenharmony_ci FN_DU0_DG0, FN_LCDOUT8, FN_SCIFA0_RXD_C, FN_I2C3_SCL_D, 1748c2ecf20Sopenharmony_ci FN_DU0_DG1, FN_LCDOUT9, FN_SCIFA0_TXD_C, FN_I2C3_SDA_D, 1758c2ecf20Sopenharmony_ci FN_DU0_DG2, FN_LCDOUT10, 1768c2ecf20Sopenharmony_ci FN_DU0_DG3, FN_LCDOUT11, 1778c2ecf20Sopenharmony_ci FN_DU0_DG4, FN_LCDOUT12, 1788c2ecf20Sopenharmony_ci 1798c2ecf20Sopenharmony_ci /* IPSR5 */ 1808c2ecf20Sopenharmony_ci FN_DU0_DG5, FN_LCDOUT13, 1818c2ecf20Sopenharmony_ci FN_DU0_DG6, FN_LCDOUT14, 1828c2ecf20Sopenharmony_ci FN_DU0_DG7, FN_LCDOUT15, 1838c2ecf20Sopenharmony_ci FN_DU0_DB0, FN_LCDOUT0, FN_SCIFA4_RXD_C, FN_I2C4_SCL_D, FN_CAN0_RX_C, 1848c2ecf20Sopenharmony_ci FN_DU0_DB1, FN_LCDOUT1, FN_SCIFA4_TXD_C, FN_I2C4_SDA_D, FN_CAN0_TX_C, 1858c2ecf20Sopenharmony_ci FN_DU0_DB2, FN_LCDOUT2, 1868c2ecf20Sopenharmony_ci FN_DU0_DB3, FN_LCDOUT3, 1878c2ecf20Sopenharmony_ci FN_DU0_DB4, FN_LCDOUT4, 1888c2ecf20Sopenharmony_ci FN_DU0_DB5, FN_LCDOUT5, 1898c2ecf20Sopenharmony_ci FN_DU0_DB6, FN_LCDOUT6, 1908c2ecf20Sopenharmony_ci FN_DU0_DB7, FN_LCDOUT7, 1918c2ecf20Sopenharmony_ci FN_DU0_DOTCLKIN, FN_QSTVA_QVS, 1928c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT0, FN_QCLK, 1938c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT1, FN_QSTVB_QVE, 1948c2ecf20Sopenharmony_ci FN_DU0_EXHSYNC_DU0_HSYNC, FN_QSTH_QHS, 1958c2ecf20Sopenharmony_ci 1968c2ecf20Sopenharmony_ci /* IPSR6 */ 1978c2ecf20Sopenharmony_ci FN_DU0_EXVSYNC_DU0_VSYNC, FN_QSTB_QHE, 1988c2ecf20Sopenharmony_ci FN_DU0_EXODDF_DU0_ODDF_DISP_CDE, FN_QCPV_QDE, 1998c2ecf20Sopenharmony_ci FN_DU0_DISP, FN_QPOLA, 2008c2ecf20Sopenharmony_ci FN_DU0_CDE, FN_QPOLB, 2018c2ecf20Sopenharmony_ci FN_VI0_CLK, FN_AVB_RX_CLK, 2028c2ecf20Sopenharmony_ci FN_VI0_DATA0_VI0_B0, FN_AVB_RX_DV, 2038c2ecf20Sopenharmony_ci FN_VI0_DATA1_VI0_B1, FN_AVB_RXD0, 2048c2ecf20Sopenharmony_ci FN_VI0_DATA2_VI0_B2, FN_AVB_RXD1, 2058c2ecf20Sopenharmony_ci FN_VI0_DATA3_VI0_B3, FN_AVB_RXD2, 2068c2ecf20Sopenharmony_ci FN_VI0_DATA4_VI0_B4, FN_AVB_RXD3, 2078c2ecf20Sopenharmony_ci FN_VI0_DATA5_VI0_B5, FN_AVB_RXD4, 2088c2ecf20Sopenharmony_ci FN_VI0_DATA6_VI0_B6, FN_AVB_RXD5, 2098c2ecf20Sopenharmony_ci FN_VI0_DATA7_VI0_B7, FN_AVB_RXD6, 2108c2ecf20Sopenharmony_ci FN_VI0_CLKENB, FN_I2C3_SCL, FN_SCIFA5_RXD_C, FN_IETX_C, FN_AVB_RXD7, 2118c2ecf20Sopenharmony_ci FN_VI0_FIELD, FN_I2C3_SDA, FN_SCIFA5_TXD_C, FN_IECLK_C, FN_AVB_RX_ER, 2128c2ecf20Sopenharmony_ci FN_VI0_HSYNC_N, FN_SCIF0_RXD_B, FN_I2C0_SCL_C, FN_IERX_C, FN_AVB_COL, 2138c2ecf20Sopenharmony_ci FN_VI0_VSYNC_N, FN_SCIF0_TXD_B, FN_I2C0_SDA_C, FN_AUDIO_CLKOUT_B, 2148c2ecf20Sopenharmony_ci FN_AVB_TX_EN, 2158c2ecf20Sopenharmony_ci FN_ETH_MDIO, FN_VI0_G0, FN_MSIOF2_RXD_B, FN_I2C5_SCL_D, FN_AVB_TX_CLK, 2168c2ecf20Sopenharmony_ci FN_ADIDATA, 2178c2ecf20Sopenharmony_ci 2188c2ecf20Sopenharmony_ci /* IPSR7 */ 2198c2ecf20Sopenharmony_ci FN_ETH_CRS_DV, FN_VI0_G1, FN_MSIOF2_TXD_B, FN_I2C5_SDA_D, FN_AVB_TXD0, 2208c2ecf20Sopenharmony_ci FN_ADICS_SAMP, 2218c2ecf20Sopenharmony_ci FN_ETH_RX_ER, FN_VI0_G2, FN_MSIOF2_SCK_B, FN_CAN0_RX_B, FN_AVB_TXD1, 2228c2ecf20Sopenharmony_ci FN_ADICLK, 2238c2ecf20Sopenharmony_ci FN_ETH_RXD0, FN_VI0_G3, FN_MSIOF2_SYNC_B, FN_CAN0_TX_B, FN_AVB_TXD2, 2248c2ecf20Sopenharmony_ci FN_ADICHS0, 2258c2ecf20Sopenharmony_ci FN_ETH_RXD1, FN_VI0_G4, FN_MSIOF2_SS1_B, FN_SCIF4_RXD_D, FN_AVB_TXD3, 2268c2ecf20Sopenharmony_ci FN_ADICHS1, 2278c2ecf20Sopenharmony_ci FN_ETH_LINK, FN_VI0_G5, FN_MSIOF2_SS2_B, FN_SCIF4_TXD_D, FN_AVB_TXD4, 2288c2ecf20Sopenharmony_ci FN_ADICHS2, 2298c2ecf20Sopenharmony_ci FN_ETH_REFCLK, FN_VI0_G6, FN_SCIF2_SCK_C, FN_AVB_TXD5, FN_SSI_SCK5_B, 2308c2ecf20Sopenharmony_ci FN_ETH_TXD1, FN_VI0_G7, FN_SCIF2_RXD_C, FN_IIC0_SCL_D, FN_AVB_TXD6, 2318c2ecf20Sopenharmony_ci FN_SSI_WS5_B, 2328c2ecf20Sopenharmony_ci FN_ETH_TX_EN, FN_VI0_R0, FN_SCIF2_TXD_C, FN_IIC0_SDA_D, FN_AVB_TXD7, 2338c2ecf20Sopenharmony_ci FN_SSI_SDATA5_B, 2348c2ecf20Sopenharmony_ci FN_ETH_MAGIC, FN_VI0_R1, FN_SCIF3_SCK_B, FN_AVB_TX_ER, FN_SSI_SCK6_B, 2358c2ecf20Sopenharmony_ci FN_ETH_TXD0, FN_VI0_R2, FN_SCIF3_RXD_B, FN_I2C4_SCL_E, FN_AVB_GTX_CLK, 2368c2ecf20Sopenharmony_ci FN_SSI_WS6_B, 2378c2ecf20Sopenharmony_ci FN_DREQ0_N, FN_SCIFB1_RXD, 2388c2ecf20Sopenharmony_ci 2398c2ecf20Sopenharmony_ci /* IPSR8 */ 2408c2ecf20Sopenharmony_ci FN_ETH_MDC, FN_VI0_R3, FN_SCIF3_TXD_B, FN_I2C4_SDA_E, FN_AVB_MDC, 2418c2ecf20Sopenharmony_ci FN_SSI_SDATA6_B, 2428c2ecf20Sopenharmony_ci FN_HSCIF0_HRX, FN_VI0_R4, FN_I2C1_SCL_C, FN_AUDIO_CLKA_B, FN_AVB_MDIO, 2438c2ecf20Sopenharmony_ci FN_SSI_SCK78_B, 2448c2ecf20Sopenharmony_ci FN_HSCIF0_HTX, FN_VI0_R5, FN_I2C1_SDA_C, FN_AUDIO_CLKB_B, FN_AVB_LINK, 2458c2ecf20Sopenharmony_ci FN_SSI_WS78_B, 2468c2ecf20Sopenharmony_ci FN_HSCIF0_HCTS_N, FN_VI0_R6, FN_SCIF0_RXD_D, FN_I2C0_SCL_E, 2478c2ecf20Sopenharmony_ci FN_AVB_MAGIC, FN_SSI_SDATA7_B, 2488c2ecf20Sopenharmony_ci FN_HSCIF0_HRTS_N, FN_VI0_R7, FN_SCIF0_TXD_D, FN_I2C0_SDA_E, 2498c2ecf20Sopenharmony_ci FN_AVB_PHY_INT, FN_SSI_SDATA8_B, 2508c2ecf20Sopenharmony_ci FN_HSCIF0_HSCK, FN_SCIF_CLK_B, FN_AVB_CRS, FN_AUDIO_CLKC_B, 2518c2ecf20Sopenharmony_ci FN_I2C0_SCL, FN_SCIF0_RXD_C, FN_PWM5, FN_TCLK1_B, FN_AVB_GTXREFCLK, 2528c2ecf20Sopenharmony_ci FN_CAN1_RX_D, FN_TPUTO0_B, 2538c2ecf20Sopenharmony_ci FN_I2C0_SDA, FN_SCIF0_TXD_C, FN_TPUTO0, FN_CAN_CLK, FN_DVC_MUTE, 2548c2ecf20Sopenharmony_ci FN_CAN1_TX_D, 2558c2ecf20Sopenharmony_ci FN_I2C1_SCL, FN_SCIF4_RXD, FN_PWM5_B, FN_DU1_DR0, FN_TS_SDATA_D, 2568c2ecf20Sopenharmony_ci FN_TPUTO1_B, 2578c2ecf20Sopenharmony_ci FN_I2C1_SDA, FN_SCIF4_TXD, FN_IRQ5, FN_DU1_DR1, FN_TS_SCK_D, 2588c2ecf20Sopenharmony_ci FN_BPFCLK_C, 2598c2ecf20Sopenharmony_ci FN_MSIOF0_RXD, FN_SCIF5_RXD, FN_I2C2_SCL_C, FN_DU1_DR2, FN_TS_SDEN_D, 2608c2ecf20Sopenharmony_ci FN_FMCLK_C, 2618c2ecf20Sopenharmony_ci 2628c2ecf20Sopenharmony_ci /* IPSR9 */ 2638c2ecf20Sopenharmony_ci FN_MSIOF0_TXD, FN_SCIF5_TXD, FN_I2C2_SDA_C, FN_DU1_DR3, FN_TS_SPSYNC_D, 2648c2ecf20Sopenharmony_ci FN_FMIN_C, 2658c2ecf20Sopenharmony_ci FN_MSIOF0_SCK, FN_IRQ0, FN_TS_SDATA, FN_DU1_DR4, FN_TPUTO1_C, 2668c2ecf20Sopenharmony_ci FN_MSIOF0_SYNC, FN_PWM1, FN_TS_SCK, FN_DU1_DR5, FN_BPFCLK_B, 2678c2ecf20Sopenharmony_ci FN_MSIOF0_SS1, FN_SCIFA0_RXD, FN_TS_SDEN, FN_DU1_DR6, FN_FMCLK_B, 2688c2ecf20Sopenharmony_ci FN_MSIOF0_SS2, FN_SCIFA0_TXD, FN_TS_SPSYNC, FN_DU1_DR7, FN_FMIN_B, 2698c2ecf20Sopenharmony_ci FN_HSCIF1_HRX, FN_I2C4_SCL, FN_PWM6, FN_DU1_DG0, 2708c2ecf20Sopenharmony_ci FN_HSCIF1_HTX, FN_I2C4_SDA, FN_TPUTO1, FN_DU1_DG1, 2718c2ecf20Sopenharmony_ci FN_HSCIF1_HSCK, FN_PWM2, FN_IETX, FN_DU1_DG2, FN_REMOCON_B, 2728c2ecf20Sopenharmony_ci FN_SPEEDIN_B, 2738c2ecf20Sopenharmony_ci FN_HSCIF1_HCTS_N, FN_SCIFA4_RXD, FN_IECLK, FN_DU1_DG3, FN_SSI_SCK1_B, 2748c2ecf20Sopenharmony_ci FN_HSCIF1_HRTS_N, FN_SCIFA4_TXD, FN_IERX, FN_DU1_DG4, FN_SSI_WS1_B, 2758c2ecf20Sopenharmony_ci FN_SCIF1_SCK, FN_PWM3, FN_TCLK2, FN_DU1_DG5, FN_SSI_SDATA1_B, 2768c2ecf20Sopenharmony_ci 2778c2ecf20Sopenharmony_ci /* IPSR10 */ 2788c2ecf20Sopenharmony_ci FN_SCIF1_RXD, FN_I2C5_SCL, FN_DU1_DG6, FN_SSI_SCK2_B, 2798c2ecf20Sopenharmony_ci FN_SCIF1_TXD, FN_I2C5_SDA, FN_DU1_DG7, FN_SSI_WS2_B, 2808c2ecf20Sopenharmony_ci FN_SCIF2_RXD, FN_IIC0_SCL, FN_DU1_DB0, FN_SSI_SDATA2_B, 2818c2ecf20Sopenharmony_ci FN_SCIF2_TXD, FN_IIC0_SDA, FN_DU1_DB1, FN_SSI_SCK9_B, 2828c2ecf20Sopenharmony_ci FN_SCIF2_SCK, FN_IRQ1, FN_DU1_DB2, FN_SSI_WS9_B, 2838c2ecf20Sopenharmony_ci FN_SCIF3_SCK, FN_IRQ2, FN_BPFCLK_D, FN_DU1_DB3, FN_SSI_SDATA9_B, 2848c2ecf20Sopenharmony_ci FN_SCIF3_RXD, FN_I2C1_SCL_E, FN_FMCLK_D, FN_DU1_DB4, FN_AUDIO_CLKA_C, 2858c2ecf20Sopenharmony_ci FN_SSI_SCK4_B, 2868c2ecf20Sopenharmony_ci FN_SCIF3_TXD, FN_I2C1_SDA_E, FN_FMIN_D, FN_DU1_DB5, FN_AUDIO_CLKB_C, 2878c2ecf20Sopenharmony_ci FN_SSI_WS4_B, 2888c2ecf20Sopenharmony_ci FN_I2C2_SCL, FN_SCIFA5_RXD, FN_DU1_DB6, FN_AUDIO_CLKC_C, 2898c2ecf20Sopenharmony_ci FN_SSI_SDATA4_B, 2908c2ecf20Sopenharmony_ci FN_I2C2_SDA, FN_SCIFA5_TXD, FN_DU1_DB7, FN_AUDIO_CLKOUT_C, 2918c2ecf20Sopenharmony_ci FN_SSI_SCK5, FN_SCIFA3_SCK, FN_DU1_DOTCLKIN, 2928c2ecf20Sopenharmony_ci 2938c2ecf20Sopenharmony_ci /* IPSR11 */ 2948c2ecf20Sopenharmony_ci FN_SSI_WS5, FN_SCIFA3_RXD, FN_I2C3_SCL_C, FN_DU1_DOTCLKOUT0, 2958c2ecf20Sopenharmony_ci FN_SSI_SDATA5, FN_SCIFA3_TXD, FN_I2C3_SDA_C, FN_DU1_DOTCLKOUT1, 2968c2ecf20Sopenharmony_ci FN_SSI_SCK6, FN_SCIFA1_SCK_B, FN_DU1_EXHSYNC_DU1_HSYNC, 2978c2ecf20Sopenharmony_ci FN_SSI_WS6, FN_SCIFA1_RXD_B, FN_I2C4_SCL_C, FN_DU1_EXVSYNC_DU1_VSYNC, 2988c2ecf20Sopenharmony_ci FN_SSI_SDATA6, FN_SCIFA1_TXD_B, FN_I2C4_SDA_C, 2998c2ecf20Sopenharmony_ci FN_DU1_EXODDF_DU1_ODDF_DISP_CDE, 3008c2ecf20Sopenharmony_ci FN_SSI_SCK78, FN_SCIFA2_SCK_B, FN_I2C5_SDA_C, FN_DU1_DISP, 3018c2ecf20Sopenharmony_ci FN_SSI_WS78, FN_SCIFA2_RXD_B, FN_I2C5_SCL_C, FN_DU1_CDE, 3028c2ecf20Sopenharmony_ci FN_SSI_SDATA7, FN_SCIFA2_TXD_B, FN_IRQ8, FN_AUDIO_CLKA_D, FN_CAN_CLK_D, 3038c2ecf20Sopenharmony_ci FN_SSI_SCK0129, FN_MSIOF1_RXD_B, FN_SCIF5_RXD_D, FN_ADIDATA_B, 3048c2ecf20Sopenharmony_ci FN_SSI_WS0129, FN_MSIOF1_TXD_B, FN_SCIF5_TXD_D, FN_ADICS_SAMP_B, 3058c2ecf20Sopenharmony_ci FN_SSI_SDATA0, FN_MSIOF1_SCK_B, FN_PWM0_B, FN_ADICLK_B, 3068c2ecf20Sopenharmony_ci 3078c2ecf20Sopenharmony_ci /* IPSR12 */ 3088c2ecf20Sopenharmony_ci FN_SSI_SCK34, FN_MSIOF1_SYNC_B, FN_SCIFA1_SCK_C, FN_ADICHS0_B, 3098c2ecf20Sopenharmony_ci FN_DREQ1_N_B, 3108c2ecf20Sopenharmony_ci FN_SSI_WS34, FN_MSIOF1_SS1_B, FN_SCIFA1_RXD_C, FN_ADICHS1_B, 3118c2ecf20Sopenharmony_ci FN_CAN1_RX_C, FN_DACK1_B, 3128c2ecf20Sopenharmony_ci FN_SSI_SDATA3, FN_MSIOF1_SS2_B, FN_SCIFA1_TXD_C, FN_ADICHS2_B, 3138c2ecf20Sopenharmony_ci FN_CAN1_TX_C, FN_DREQ2_N, 3148c2ecf20Sopenharmony_ci FN_SSI_SCK4, FN_MLB_CLK, FN_IETX_B, FN_SSI_WS4, FN_MLB_SIG, FN_IECLK_B, 3158c2ecf20Sopenharmony_ci FN_SSI_SDATA4, FN_MLB_DAT, FN_IERX_B, 3168c2ecf20Sopenharmony_ci FN_SSI_SDATA8, FN_SCIF1_SCK_B, FN_PWM1_B, FN_IRQ9, FN_REMOCON, 3178c2ecf20Sopenharmony_ci FN_DACK2, FN_ETH_MDIO_B, 3188c2ecf20Sopenharmony_ci FN_SSI_SCK1, FN_SCIF1_RXD_B, FN_IIC0_SCL_C, FN_VI1_CLK, FN_CAN0_RX_D, 3198c2ecf20Sopenharmony_ci FN_ETH_CRS_DV_B, 3208c2ecf20Sopenharmony_ci FN_SSI_WS1, FN_SCIF1_TXD_B, FN_IIC0_SDA_C, FN_VI1_DATA0, FN_CAN0_TX_D, 3218c2ecf20Sopenharmony_ci FN_ETH_RX_ER_B, 3228c2ecf20Sopenharmony_ci FN_SSI_SDATA1, FN_HSCIF1_HRX_B, FN_VI1_DATA1, FN_ATAWR0_N, 3238c2ecf20Sopenharmony_ci FN_ETH_RXD0_B, 3248c2ecf20Sopenharmony_ci FN_SSI_SCK2, FN_HSCIF1_HTX_B, FN_VI1_DATA2, FN_ATAG0_N, FN_ETH_RXD1_B, 3258c2ecf20Sopenharmony_ci 3268c2ecf20Sopenharmony_ci /* IPSR13 */ 3278c2ecf20Sopenharmony_ci FN_SSI_WS2, FN_HSCIF1_HCTS_N_B, FN_SCIFA0_RXD_D, FN_VI1_DATA3, 3288c2ecf20Sopenharmony_ci FN_ATACS00_N, FN_ETH_LINK_B, 3298c2ecf20Sopenharmony_ci FN_SSI_SDATA2, FN_HSCIF1_HRTS_N_B, FN_SCIFA0_TXD_D, FN_VI1_DATA4, 3308c2ecf20Sopenharmony_ci FN_ATACS10_N, FN_ETH_REFCLK_B, 3318c2ecf20Sopenharmony_ci FN_SSI_SCK9, FN_SCIF2_SCK_B, FN_PWM2_B, FN_VI1_DATA5, FN_EX_WAIT1, 3328c2ecf20Sopenharmony_ci FN_ETH_TXD1_B, 3338c2ecf20Sopenharmony_ci FN_SSI_WS9, FN_SCIF2_RXD_B, FN_I2C3_SCL_E, FN_VI1_DATA6, FN_ATARD0_N, 3348c2ecf20Sopenharmony_ci FN_ETH_TX_EN_B, 3358c2ecf20Sopenharmony_ci FN_SSI_SDATA9, FN_SCIF2_TXD_B, FN_I2C3_SDA_E, FN_VI1_DATA7, 3368c2ecf20Sopenharmony_ci FN_ATADIR0_N, FN_ETH_MAGIC_B, 3378c2ecf20Sopenharmony_ci FN_AUDIO_CLKA, FN_I2C0_SCL_B, FN_SCIFA4_RXD_D, FN_VI1_CLKENB, 3388c2ecf20Sopenharmony_ci FN_TS_SDATA_C, FN_ETH_TXD0_B, 3398c2ecf20Sopenharmony_ci FN_AUDIO_CLKB, FN_I2C0_SDA_B, FN_SCIFA4_TXD_D, FN_VI1_FIELD, 3408c2ecf20Sopenharmony_ci FN_TS_SCK_C, FN_BPFCLK_E, FN_ETH_MDC_B, 3418c2ecf20Sopenharmony_ci FN_AUDIO_CLKC, FN_I2C4_SCL_B, FN_SCIFA5_RXD_D, FN_VI1_HSYNC_N, 3428c2ecf20Sopenharmony_ci FN_TS_SDEN_C, FN_FMCLK_E, 3438c2ecf20Sopenharmony_ci FN_AUDIO_CLKOUT, FN_I2C4_SDA_B, FN_SCIFA5_TXD_D, FN_VI1_VSYNC_N, 3448c2ecf20Sopenharmony_ci FN_TS_SPSYNC_C, FN_FMIN_E, 3458c2ecf20Sopenharmony_ci 3468c2ecf20Sopenharmony_ci /* MOD_SEL */ 3478c2ecf20Sopenharmony_ci FN_SEL_ADG_0, FN_SEL_ADG_1, FN_SEL_ADG_2, FN_SEL_ADG_3, 3488c2ecf20Sopenharmony_ci FN_SEL_CAN_0, FN_SEL_CAN_1, FN_SEL_CAN_2, FN_SEL_CAN_3, 3498c2ecf20Sopenharmony_ci FN_SEL_DARC_0, FN_SEL_DARC_1, FN_SEL_DARC_2, FN_SEL_DARC_3, 3508c2ecf20Sopenharmony_ci FN_SEL_DARC_4, 3518c2ecf20Sopenharmony_ci FN_SEL_ETH_0, FN_SEL_ETH_1, 3528c2ecf20Sopenharmony_ci FN_SEL_I2C00_0, FN_SEL_I2C00_1, FN_SEL_I2C00_2, FN_SEL_I2C00_3, 3538c2ecf20Sopenharmony_ci FN_SEL_I2C00_4, 3548c2ecf20Sopenharmony_ci FN_SEL_I2C01_0, FN_SEL_I2C01_1, FN_SEL_I2C01_2, FN_SEL_I2C01_3, 3558c2ecf20Sopenharmony_ci FN_SEL_I2C01_4, 3568c2ecf20Sopenharmony_ci FN_SEL_I2C02_0, FN_SEL_I2C02_1, FN_SEL_I2C02_2, FN_SEL_I2C02_3, 3578c2ecf20Sopenharmony_ci FN_SEL_I2C02_4, 3588c2ecf20Sopenharmony_ci FN_SEL_I2C03_0, FN_SEL_I2C03_1, FN_SEL_I2C03_2, FN_SEL_I2C03_3, 3598c2ecf20Sopenharmony_ci FN_SEL_I2C03_4, 3608c2ecf20Sopenharmony_ci FN_SEL_I2C04_0, FN_SEL_I2C04_1, FN_SEL_I2C04_2, FN_SEL_I2C04_3, 3618c2ecf20Sopenharmony_ci FN_SEL_I2C04_4, 3628c2ecf20Sopenharmony_ci FN_SEL_I2C05_0, FN_SEL_I2C05_1, FN_SEL_I2C05_2, FN_SEL_I2C05_3, 3638c2ecf20Sopenharmony_ci 3648c2ecf20Sopenharmony_ci /* MOD_SEL2 */ 3658c2ecf20Sopenharmony_ci FN_SEL_IEB_0, FN_SEL_IEB_1, FN_SEL_IEB_2, 3668c2ecf20Sopenharmony_ci FN_SEL_IIC0_0, FN_SEL_IIC0_1, FN_SEL_IIC0_2, FN_SEL_IIC0_3, 3678c2ecf20Sopenharmony_ci FN_SEL_LBS_0, FN_SEL_LBS_1, FN_SEL_MSI1_0, FN_SEL_MSI1_1, 3688c2ecf20Sopenharmony_ci FN_SEL_MSI2_0, FN_SEL_MSI2_1, FN_SEL_RAD_0, FN_SEL_RAD_1, 3698c2ecf20Sopenharmony_ci FN_SEL_RCN_0, FN_SEL_RCN_1, FN_SEL_RSP_0, FN_SEL_RSP_1, 3708c2ecf20Sopenharmony_ci FN_SEL_SCIFA0_0, FN_SEL_SCIFA0_1, FN_SEL_SCIFA0_2, FN_SEL_SCIFA0_3, 3718c2ecf20Sopenharmony_ci FN_SEL_SCIFA1_0, FN_SEL_SCIFA1_1, FN_SEL_SCIFA1_2, 3728c2ecf20Sopenharmony_ci FN_SEL_SCIFA2_0, FN_SEL_SCIFA2_1, FN_SEL_SCIFA3_0, FN_SEL_SCIFA3_1, 3738c2ecf20Sopenharmony_ci FN_SEL_SCIFA4_0, FN_SEL_SCIFA4_1, FN_SEL_SCIFA4_2, FN_SEL_SCIFA4_3, 3748c2ecf20Sopenharmony_ci FN_SEL_SCIFA5_0, FN_SEL_SCIFA5_1, FN_SEL_SCIFA5_2, FN_SEL_SCIFA5_3, 3758c2ecf20Sopenharmony_ci FN_SEL_TMU_0, FN_SEL_TMU_1, 3768c2ecf20Sopenharmony_ci FN_SEL_TSIF0_0, FN_SEL_TSIF0_1, FN_SEL_TSIF0_2, FN_SEL_TSIF0_3, 3778c2ecf20Sopenharmony_ci FN_SEL_CAN0_0, FN_SEL_CAN0_1, FN_SEL_CAN0_2, FN_SEL_CAN0_3, 3788c2ecf20Sopenharmony_ci FN_SEL_CAN1_0, FN_SEL_CAN1_1, FN_SEL_CAN1_2, FN_SEL_CAN1_3, 3798c2ecf20Sopenharmony_ci FN_SEL_HSCIF0_0, FN_SEL_HSCIF0_1, FN_SEL_HSCIF1_0, FN_SEL_HSCIF1_1, 3808c2ecf20Sopenharmony_ci 3818c2ecf20Sopenharmony_ci /* MOD_SEL3 */ 3828c2ecf20Sopenharmony_ci FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2, FN_SEL_SCIF0_3, 3838c2ecf20Sopenharmony_ci FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2, FN_SEL_SCIF2_0, 3848c2ecf20Sopenharmony_ci FN_SEL_SCIF2_1, FN_SEL_SCIF2_2, FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, 3858c2ecf20Sopenharmony_ci FN_SEL_SCIF4_0, FN_SEL_SCIF4_1, FN_SEL_SCIF4_2, FN_SEL_SCIF4_3, 3868c2ecf20Sopenharmony_ci FN_SEL_SCIF4_4, FN_SEL_SCIF5_0, FN_SEL_SCIF5_1, FN_SEL_SCIF5_2, 3878c2ecf20Sopenharmony_ci FN_SEL_SCIF5_3, FN_SEL_SSI1_0, FN_SEL_SSI1_1, FN_SEL_SSI2_0, 3888c2ecf20Sopenharmony_ci FN_SEL_SSI2_1, FN_SEL_SSI4_0, FN_SEL_SSI4_1, FN_SEL_SSI5_0, 3898c2ecf20Sopenharmony_ci FN_SEL_SSI5_1, FN_SEL_SSI6_0, FN_SEL_SSI6_1, FN_SEL_SSI7_0, 3908c2ecf20Sopenharmony_ci FN_SEL_SSI7_1, FN_SEL_SSI8_0, FN_SEL_SSI8_1, FN_SEL_SSI9_0, 3918c2ecf20Sopenharmony_ci FN_SEL_SSI9_1, 3928c2ecf20Sopenharmony_ci PINMUX_FUNCTION_END, 3938c2ecf20Sopenharmony_ci 3948c2ecf20Sopenharmony_ci PINMUX_MARK_BEGIN, 3958c2ecf20Sopenharmony_ci A2_MARK, WE0_N_MARK, WE1_N_MARK, DACK0_MARK, 3968c2ecf20Sopenharmony_ci 3978c2ecf20Sopenharmony_ci USB0_PWEN_MARK, USB0_OVC_MARK, USB1_PWEN_MARK, USB1_OVC_MARK, 3988c2ecf20Sopenharmony_ci 3998c2ecf20Sopenharmony_ci SD0_CLK_MARK, SD0_CMD_MARK, SD0_DATA0_MARK, SD0_DATA1_MARK, 4008c2ecf20Sopenharmony_ci SD0_DATA2_MARK, SD0_DATA3_MARK, SD0_CD_MARK, SD0_WP_MARK, 4018c2ecf20Sopenharmony_ci 4028c2ecf20Sopenharmony_ci SD1_CLK_MARK, SD1_CMD_MARK, SD1_DATA0_MARK, SD1_DATA1_MARK, 4038c2ecf20Sopenharmony_ci SD1_DATA2_MARK, SD1_DATA3_MARK, 4048c2ecf20Sopenharmony_ci 4058c2ecf20Sopenharmony_ci /* IPSR0 */ 4068c2ecf20Sopenharmony_ci SD1_CD_MARK, CAN0_RX_MARK, SD1_WP_MARK, IRQ7_MARK, CAN0_TX_MARK, 4078c2ecf20Sopenharmony_ci MMC_CLK_MARK, SD2_CLK_MARK, MMC_CMD_MARK, SD2_CMD_MARK, MMC_D0_MARK, 4088c2ecf20Sopenharmony_ci SD2_DATA0_MARK, MMC_D1_MARK, SD2_DATA1_MARK, MMC_D2_MARK, 4098c2ecf20Sopenharmony_ci SD2_DATA2_MARK, MMC_D3_MARK, SD2_DATA3_MARK, MMC_D4_MARK, SD2_CD_MARK, 4108c2ecf20Sopenharmony_ci MMC_D5_MARK, SD2_WP_MARK, MMC_D6_MARK, SCIF0_RXD_MARK, I2C2_SCL_B_MARK, 4118c2ecf20Sopenharmony_ci CAN1_RX_MARK, MMC_D7_MARK, SCIF0_TXD_MARK, I2C2_SDA_B_MARK, 4128c2ecf20Sopenharmony_ci CAN1_TX_MARK, D0_MARK, SCIFA3_SCK_B_MARK, IRQ4_MARK, D1_MARK, 4138c2ecf20Sopenharmony_ci SCIFA3_RXD_B_MARK, D2_MARK, SCIFA3_TXD_B_MARK, D3_MARK, I2C3_SCL_B_MARK, 4148c2ecf20Sopenharmony_ci SCIF5_RXD_B_MARK, D4_MARK, I2C3_SDA_B_MARK, SCIF5_TXD_B_MARK, D5_MARK, 4158c2ecf20Sopenharmony_ci SCIF4_RXD_B_MARK, I2C0_SCL_D_MARK, 4168c2ecf20Sopenharmony_ci 4178c2ecf20Sopenharmony_ci /* IPSR1 */ 4188c2ecf20Sopenharmony_ci D6_MARK, SCIF4_TXD_B_MARK, I2C0_SDA_D_MARK, 4198c2ecf20Sopenharmony_ci D7_MARK, IRQ3_MARK, TCLK1_MARK, PWM6_B_MARK, 4208c2ecf20Sopenharmony_ci D8_MARK, HSCIF2_HRX_MARK, I2C1_SCL_B_MARK, 4218c2ecf20Sopenharmony_ci D9_MARK, HSCIF2_HTX_MARK, I2C1_SDA_B_MARK, 4228c2ecf20Sopenharmony_ci D10_MARK, HSCIF2_HSCK_MARK, SCIF1_SCK_C_MARK, IRQ6_MARK, PWM5_C_MARK, 4238c2ecf20Sopenharmony_ci D11_MARK, HSCIF2_HCTS_N_MARK, SCIF1_RXD_C_MARK, I2C1_SCL_D_MARK, 4248c2ecf20Sopenharmony_ci D12_MARK, HSCIF2_HRTS_N_MARK, SCIF1_TXD_C_MARK, I2C1_SDA_D_MARK, 4258c2ecf20Sopenharmony_ci D13_MARK, SCIFA1_SCK_MARK, PWM2_C_MARK, TCLK2_B_MARK, 4268c2ecf20Sopenharmony_ci D14_MARK, SCIFA1_RXD_MARK, I2C5_SCL_B_MARK, 4278c2ecf20Sopenharmony_ci D15_MARK, SCIFA1_TXD_MARK, I2C5_SDA_B_MARK, 4288c2ecf20Sopenharmony_ci A0_MARK, SCIFB1_SCK_MARK, PWM3_B_MARK, 4298c2ecf20Sopenharmony_ci A1_MARK, SCIFB1_TXD_MARK, 4308c2ecf20Sopenharmony_ci A3_MARK, SCIFB0_SCK_MARK, 4318c2ecf20Sopenharmony_ci A4_MARK, SCIFB0_TXD_MARK, 4328c2ecf20Sopenharmony_ci A5_MARK, SCIFB0_RXD_MARK, PWM4_B_MARK, TPUTO3_C_MARK, 4338c2ecf20Sopenharmony_ci A6_MARK, SCIFB0_CTS_N_MARK, SCIFA4_RXD_B_MARK, TPUTO2_C_MARK, 4348c2ecf20Sopenharmony_ci 4358c2ecf20Sopenharmony_ci /* IPSR2 */ 4368c2ecf20Sopenharmony_ci A7_MARK, SCIFB0_RTS_N_MARK, SCIFA4_TXD_B_MARK, 4378c2ecf20Sopenharmony_ci A8_MARK, MSIOF1_RXD_MARK, SCIFA0_RXD_B_MARK, 4388c2ecf20Sopenharmony_ci A9_MARK, MSIOF1_TXD_MARK, SCIFA0_TXD_B_MARK, 4398c2ecf20Sopenharmony_ci A10_MARK, MSIOF1_SCK_MARK, IIC0_SCL_B_MARK, 4408c2ecf20Sopenharmony_ci A11_MARK, MSIOF1_SYNC_MARK, IIC0_SDA_B_MARK, 4418c2ecf20Sopenharmony_ci A12_MARK, MSIOF1_SS1_MARK, SCIFA5_RXD_B_MARK, 4428c2ecf20Sopenharmony_ci A13_MARK, MSIOF1_SS2_MARK, SCIFA5_TXD_B_MARK, 4438c2ecf20Sopenharmony_ci A14_MARK, MSIOF2_RXD_MARK, HSCIF0_HRX_B_MARK, DREQ1_N_MARK, 4448c2ecf20Sopenharmony_ci A15_MARK, MSIOF2_TXD_MARK, HSCIF0_HTX_B_MARK, DACK1_MARK, 4458c2ecf20Sopenharmony_ci A16_MARK, MSIOF2_SCK_MARK, HSCIF0_HSCK_B_MARK, SPEEDIN_MARK, 4468c2ecf20Sopenharmony_ci CAN_CLK_C_MARK, TPUTO2_B_MARK, 4478c2ecf20Sopenharmony_ci A17_MARK, MSIOF2_SYNC_MARK, SCIF4_RXD_E_MARK, CAN1_RX_B_MARK, 4488c2ecf20Sopenharmony_ci A18_MARK, MSIOF2_SS1_MARK, SCIF4_TXD_E_MARK, CAN1_TX_B_MARK, 4498c2ecf20Sopenharmony_ci A19_MARK, MSIOF2_SS2_MARK, PWM4_MARK, TPUTO2_MARK, 4508c2ecf20Sopenharmony_ci A20_MARK, SPCLK_MARK, 4518c2ecf20Sopenharmony_ci 4528c2ecf20Sopenharmony_ci /* IPSR3 */ 4538c2ecf20Sopenharmony_ci A21_MARK, MOSI_IO0_MARK, 4548c2ecf20Sopenharmony_ci A22_MARK, MISO_IO1_MARK, ATADIR1_N_MARK, 4558c2ecf20Sopenharmony_ci A23_MARK, IO2_MARK, ATAWR1_N_MARK, 4568c2ecf20Sopenharmony_ci A24_MARK, IO3_MARK, EX_WAIT2_MARK, 4578c2ecf20Sopenharmony_ci A25_MARK, SSL_MARK, ATARD1_N_MARK, 4588c2ecf20Sopenharmony_ci CS0_N_MARK, VI1_DATA8_MARK, 4598c2ecf20Sopenharmony_ci CS1_N_A26_MARK, VI1_DATA9_MARK, 4608c2ecf20Sopenharmony_ci EX_CS0_N_MARK, VI1_DATA10_MARK, 4618c2ecf20Sopenharmony_ci EX_CS1_N_MARK, TPUTO3_B_MARK, SCIFB2_RXD_MARK, VI1_DATA11_MARK, 4628c2ecf20Sopenharmony_ci EX_CS2_N_MARK, PWM0_MARK, SCIF4_RXD_C_MARK, TS_SDATA_B_MARK, 4638c2ecf20Sopenharmony_ci TPUTO3_MARK, SCIFB2_TXD_MARK, 4648c2ecf20Sopenharmony_ci EX_CS3_N_MARK, SCIFA2_SCK_MARK, SCIF4_TXD_C_MARK, TS_SCK_B_MARK, 4658c2ecf20Sopenharmony_ci BPFCLK_MARK, SCIFB2_SCK_MARK, 4668c2ecf20Sopenharmony_ci EX_CS4_N_MARK, SCIFA2_RXD_MARK, I2C2_SCL_E_MARK, TS_SDEN_B_MARK, 4678c2ecf20Sopenharmony_ci FMCLK_MARK, SCIFB2_CTS_N_MARK, 4688c2ecf20Sopenharmony_ci EX_CS5_N_MARK, SCIFA2_TXD_MARK, I2C2_SDA_E_MARK, TS_SPSYNC_B_MARK, 4698c2ecf20Sopenharmony_ci FMIN_MARK, SCIFB2_RTS_N_MARK, 4708c2ecf20Sopenharmony_ci BS_N_MARK, DRACK0_MARK, PWM1_C_MARK, TPUTO0_C_MARK, ATACS01_N_MARK, 4718c2ecf20Sopenharmony_ci RD_N_MARK, ATACS11_N_MARK, 4728c2ecf20Sopenharmony_ci RD_WR_N_MARK, ATAG1_N_MARK, 4738c2ecf20Sopenharmony_ci 4748c2ecf20Sopenharmony_ci /* IPSR4 */ 4758c2ecf20Sopenharmony_ci EX_WAIT0_MARK, CAN_CLK_B_MARK, SCIF_CLK_MARK, 4768c2ecf20Sopenharmony_ci DU0_DR0_MARK, LCDOUT16_MARK, SCIF5_RXD_C_MARK, I2C2_SCL_D_MARK, 4778c2ecf20Sopenharmony_ci DU0_DR1_MARK, LCDOUT17_MARK, SCIF5_TXD_C_MARK, I2C2_SDA_D_MARK, 4788c2ecf20Sopenharmony_ci DU0_DR2_MARK, LCDOUT18_MARK, 4798c2ecf20Sopenharmony_ci DU0_DR3_MARK, LCDOUT19_MARK, 4808c2ecf20Sopenharmony_ci DU0_DR4_MARK, LCDOUT20_MARK, 4818c2ecf20Sopenharmony_ci DU0_DR5_MARK, LCDOUT21_MARK, 4828c2ecf20Sopenharmony_ci DU0_DR6_MARK, LCDOUT22_MARK, 4838c2ecf20Sopenharmony_ci DU0_DR7_MARK, LCDOUT23_MARK, 4848c2ecf20Sopenharmony_ci DU0_DG0_MARK, LCDOUT8_MARK, SCIFA0_RXD_C_MARK, I2C3_SCL_D_MARK, 4858c2ecf20Sopenharmony_ci DU0_DG1_MARK, LCDOUT9_MARK, SCIFA0_TXD_C_MARK, I2C3_SDA_D_MARK, 4868c2ecf20Sopenharmony_ci DU0_DG2_MARK, LCDOUT10_MARK, 4878c2ecf20Sopenharmony_ci DU0_DG3_MARK, LCDOUT11_MARK, 4888c2ecf20Sopenharmony_ci DU0_DG4_MARK, LCDOUT12_MARK, 4898c2ecf20Sopenharmony_ci 4908c2ecf20Sopenharmony_ci /* IPSR5 */ 4918c2ecf20Sopenharmony_ci DU0_DG5_MARK, LCDOUT13_MARK, 4928c2ecf20Sopenharmony_ci DU0_DG6_MARK, LCDOUT14_MARK, 4938c2ecf20Sopenharmony_ci DU0_DG7_MARK, LCDOUT15_MARK, 4948c2ecf20Sopenharmony_ci DU0_DB0_MARK, LCDOUT0_MARK, SCIFA4_RXD_C_MARK, I2C4_SCL_D_MARK, 4958c2ecf20Sopenharmony_ci CAN0_RX_C_MARK, 4968c2ecf20Sopenharmony_ci DU0_DB1_MARK, LCDOUT1_MARK, SCIFA4_TXD_C_MARK, I2C4_SDA_D_MARK, 4978c2ecf20Sopenharmony_ci CAN0_TX_C_MARK, 4988c2ecf20Sopenharmony_ci DU0_DB2_MARK, LCDOUT2_MARK, 4998c2ecf20Sopenharmony_ci DU0_DB3_MARK, LCDOUT3_MARK, 5008c2ecf20Sopenharmony_ci DU0_DB4_MARK, LCDOUT4_MARK, 5018c2ecf20Sopenharmony_ci DU0_DB5_MARK, LCDOUT5_MARK, 5028c2ecf20Sopenharmony_ci DU0_DB6_MARK, LCDOUT6_MARK, 5038c2ecf20Sopenharmony_ci DU0_DB7_MARK, LCDOUT7_MARK, 5048c2ecf20Sopenharmony_ci DU0_DOTCLKIN_MARK, QSTVA_QVS_MARK, 5058c2ecf20Sopenharmony_ci DU0_DOTCLKOUT0_MARK, QCLK_MARK, 5068c2ecf20Sopenharmony_ci DU0_DOTCLKOUT1_MARK, QSTVB_QVE_MARK, 5078c2ecf20Sopenharmony_ci DU0_EXHSYNC_DU0_HSYNC_MARK, QSTH_QHS_MARK, 5088c2ecf20Sopenharmony_ci 5098c2ecf20Sopenharmony_ci /* IPSR6 */ 5108c2ecf20Sopenharmony_ci DU0_EXVSYNC_DU0_VSYNC_MARK, QSTB_QHE_MARK, 5118c2ecf20Sopenharmony_ci DU0_EXODDF_DU0_ODDF_DISP_CDE_MARK, QCPV_QDE_MARK, 5128c2ecf20Sopenharmony_ci DU0_DISP_MARK, QPOLA_MARK, DU0_CDE_MARK, QPOLB_MARK, 5138c2ecf20Sopenharmony_ci VI0_CLK_MARK, AVB_RX_CLK_MARK, VI0_DATA0_VI0_B0_MARK, AVB_RX_DV_MARK, 5148c2ecf20Sopenharmony_ci VI0_DATA1_VI0_B1_MARK, AVB_RXD0_MARK, 5158c2ecf20Sopenharmony_ci VI0_DATA2_VI0_B2_MARK, AVB_RXD1_MARK, 5168c2ecf20Sopenharmony_ci VI0_DATA3_VI0_B3_MARK, AVB_RXD2_MARK, 5178c2ecf20Sopenharmony_ci VI0_DATA4_VI0_B4_MARK, AVB_RXD3_MARK, 5188c2ecf20Sopenharmony_ci VI0_DATA5_VI0_B5_MARK, AVB_RXD4_MARK, 5198c2ecf20Sopenharmony_ci VI0_DATA6_VI0_B6_MARK, AVB_RXD5_MARK, 5208c2ecf20Sopenharmony_ci VI0_DATA7_VI0_B7_MARK, AVB_RXD6_MARK, 5218c2ecf20Sopenharmony_ci VI0_CLKENB_MARK, I2C3_SCL_MARK, SCIFA5_RXD_C_MARK, IETX_C_MARK, 5228c2ecf20Sopenharmony_ci AVB_RXD7_MARK, 5238c2ecf20Sopenharmony_ci VI0_FIELD_MARK, I2C3_SDA_MARK, SCIFA5_TXD_C_MARK, IECLK_C_MARK, 5248c2ecf20Sopenharmony_ci AVB_RX_ER_MARK, 5258c2ecf20Sopenharmony_ci VI0_HSYNC_N_MARK, SCIF0_RXD_B_MARK, I2C0_SCL_C_MARK, IERX_C_MARK, 5268c2ecf20Sopenharmony_ci AVB_COL_MARK, 5278c2ecf20Sopenharmony_ci VI0_VSYNC_N_MARK, SCIF0_TXD_B_MARK, I2C0_SDA_C_MARK, 5288c2ecf20Sopenharmony_ci AUDIO_CLKOUT_B_MARK, AVB_TX_EN_MARK, 5298c2ecf20Sopenharmony_ci ETH_MDIO_MARK, VI0_G0_MARK, MSIOF2_RXD_B_MARK, I2C5_SCL_D_MARK, 5308c2ecf20Sopenharmony_ci AVB_TX_CLK_MARK, ADIDATA_MARK, 5318c2ecf20Sopenharmony_ci 5328c2ecf20Sopenharmony_ci /* IPSR7 */ 5338c2ecf20Sopenharmony_ci ETH_CRS_DV_MARK, VI0_G1_MARK, MSIOF2_TXD_B_MARK, I2C5_SDA_D_MARK, 5348c2ecf20Sopenharmony_ci AVB_TXD0_MARK, ADICS_SAMP_MARK, 5358c2ecf20Sopenharmony_ci ETH_RX_ER_MARK, VI0_G2_MARK, MSIOF2_SCK_B_MARK, CAN0_RX_B_MARK, 5368c2ecf20Sopenharmony_ci AVB_TXD1_MARK, ADICLK_MARK, 5378c2ecf20Sopenharmony_ci ETH_RXD0_MARK, VI0_G3_MARK, MSIOF2_SYNC_B_MARK, CAN0_TX_B_MARK, 5388c2ecf20Sopenharmony_ci AVB_TXD2_MARK, ADICHS0_MARK, 5398c2ecf20Sopenharmony_ci ETH_RXD1_MARK, VI0_G4_MARK, MSIOF2_SS1_B_MARK, SCIF4_RXD_D_MARK, 5408c2ecf20Sopenharmony_ci AVB_TXD3_MARK, ADICHS1_MARK, 5418c2ecf20Sopenharmony_ci ETH_LINK_MARK, VI0_G5_MARK, MSIOF2_SS2_B_MARK, SCIF4_TXD_D_MARK, 5428c2ecf20Sopenharmony_ci AVB_TXD4_MARK, ADICHS2_MARK, 5438c2ecf20Sopenharmony_ci ETH_REFCLK_MARK, VI0_G6_MARK, SCIF2_SCK_C_MARK, AVB_TXD5_MARK, 5448c2ecf20Sopenharmony_ci SSI_SCK5_B_MARK, 5458c2ecf20Sopenharmony_ci ETH_TXD1_MARK, VI0_G7_MARK, SCIF2_RXD_C_MARK, IIC0_SCL_D_MARK, 5468c2ecf20Sopenharmony_ci AVB_TXD6_MARK, SSI_WS5_B_MARK, 5478c2ecf20Sopenharmony_ci ETH_TX_EN_MARK, VI0_R0_MARK, SCIF2_TXD_C_MARK, IIC0_SDA_D_MARK, 5488c2ecf20Sopenharmony_ci AVB_TXD7_MARK, SSI_SDATA5_B_MARK, 5498c2ecf20Sopenharmony_ci ETH_MAGIC_MARK, VI0_R1_MARK, SCIF3_SCK_B_MARK, AVB_TX_ER_MARK, 5508c2ecf20Sopenharmony_ci SSI_SCK6_B_MARK, 5518c2ecf20Sopenharmony_ci ETH_TXD0_MARK, VI0_R2_MARK, SCIF3_RXD_B_MARK, I2C4_SCL_E_MARK, 5528c2ecf20Sopenharmony_ci AVB_GTX_CLK_MARK, SSI_WS6_B_MARK, 5538c2ecf20Sopenharmony_ci DREQ0_N_MARK, SCIFB1_RXD_MARK, 5548c2ecf20Sopenharmony_ci 5558c2ecf20Sopenharmony_ci /* IPSR8 */ 5568c2ecf20Sopenharmony_ci ETH_MDC_MARK, VI0_R3_MARK, SCIF3_TXD_B_MARK, I2C4_SDA_E_MARK, 5578c2ecf20Sopenharmony_ci AVB_MDC_MARK, SSI_SDATA6_B_MARK, HSCIF0_HRX_MARK, VI0_R4_MARK, 5588c2ecf20Sopenharmony_ci I2C1_SCL_C_MARK, AUDIO_CLKA_B_MARK, AVB_MDIO_MARK, SSI_SCK78_B_MARK, 5598c2ecf20Sopenharmony_ci HSCIF0_HTX_MARK, VI0_R5_MARK, I2C1_SDA_C_MARK, AUDIO_CLKB_B_MARK, 5608c2ecf20Sopenharmony_ci AVB_LINK_MARK, SSI_WS78_B_MARK, HSCIF0_HCTS_N_MARK, VI0_R6_MARK, 5618c2ecf20Sopenharmony_ci SCIF0_RXD_D_MARK, I2C0_SCL_E_MARK, AVB_MAGIC_MARK, SSI_SDATA7_B_MARK, 5628c2ecf20Sopenharmony_ci HSCIF0_HRTS_N_MARK, VI0_R7_MARK, SCIF0_TXD_D_MARK, I2C0_SDA_E_MARK, 5638c2ecf20Sopenharmony_ci AVB_PHY_INT_MARK, SSI_SDATA8_B_MARK, 5648c2ecf20Sopenharmony_ci HSCIF0_HSCK_MARK, SCIF_CLK_B_MARK, AVB_CRS_MARK, AUDIO_CLKC_B_MARK, 5658c2ecf20Sopenharmony_ci I2C0_SCL_MARK, SCIF0_RXD_C_MARK, PWM5_MARK, TCLK1_B_MARK, 5668c2ecf20Sopenharmony_ci AVB_GTXREFCLK_MARK, CAN1_RX_D_MARK, TPUTO0_B_MARK, I2C0_SDA_MARK, 5678c2ecf20Sopenharmony_ci SCIF0_TXD_C_MARK, TPUTO0_MARK, CAN_CLK_MARK, DVC_MUTE_MARK, 5688c2ecf20Sopenharmony_ci CAN1_TX_D_MARK, 5698c2ecf20Sopenharmony_ci I2C1_SCL_MARK, SCIF4_RXD_MARK, PWM5_B_MARK, DU1_DR0_MARK, 5708c2ecf20Sopenharmony_ci TS_SDATA_D_MARK, TPUTO1_B_MARK, 5718c2ecf20Sopenharmony_ci I2C1_SDA_MARK, SCIF4_TXD_MARK, IRQ5_MARK, DU1_DR1_MARK, TS_SCK_D_MARK, 5728c2ecf20Sopenharmony_ci BPFCLK_C_MARK, 5738c2ecf20Sopenharmony_ci MSIOF0_RXD_MARK, SCIF5_RXD_MARK, I2C2_SCL_C_MARK, DU1_DR2_MARK, 5748c2ecf20Sopenharmony_ci TS_SDEN_D_MARK, FMCLK_C_MARK, 5758c2ecf20Sopenharmony_ci 5768c2ecf20Sopenharmony_ci /* IPSR9 */ 5778c2ecf20Sopenharmony_ci MSIOF0_TXD_MARK, SCIF5_TXD_MARK, I2C2_SDA_C_MARK, DU1_DR3_MARK, 5788c2ecf20Sopenharmony_ci TS_SPSYNC_D_MARK, FMIN_C_MARK, 5798c2ecf20Sopenharmony_ci MSIOF0_SCK_MARK, IRQ0_MARK, TS_SDATA_MARK, DU1_DR4_MARK, TPUTO1_C_MARK, 5808c2ecf20Sopenharmony_ci MSIOF0_SYNC_MARK, PWM1_MARK, TS_SCK_MARK, DU1_DR5_MARK, BPFCLK_B_MARK, 5818c2ecf20Sopenharmony_ci MSIOF0_SS1_MARK, SCIFA0_RXD_MARK, TS_SDEN_MARK, DU1_DR6_MARK, 5828c2ecf20Sopenharmony_ci FMCLK_B_MARK, 5838c2ecf20Sopenharmony_ci MSIOF0_SS2_MARK, SCIFA0_TXD_MARK, TS_SPSYNC_MARK, DU1_DR7_MARK, 5848c2ecf20Sopenharmony_ci FMIN_B_MARK, 5858c2ecf20Sopenharmony_ci HSCIF1_HRX_MARK, I2C4_SCL_MARK, PWM6_MARK, DU1_DG0_MARK, 5868c2ecf20Sopenharmony_ci HSCIF1_HTX_MARK, I2C4_SDA_MARK, TPUTO1_MARK, DU1_DG1_MARK, 5878c2ecf20Sopenharmony_ci HSCIF1_HSCK_MARK, PWM2_MARK, IETX_MARK, DU1_DG2_MARK, REMOCON_B_MARK, 5888c2ecf20Sopenharmony_ci SPEEDIN_B_MARK, 5898c2ecf20Sopenharmony_ci HSCIF1_HCTS_N_MARK, SCIFA4_RXD_MARK, IECLK_MARK, DU1_DG3_MARK, 5908c2ecf20Sopenharmony_ci SSI_SCK1_B_MARK, 5918c2ecf20Sopenharmony_ci HSCIF1_HRTS_N_MARK, SCIFA4_TXD_MARK, IERX_MARK, DU1_DG4_MARK, 5928c2ecf20Sopenharmony_ci SSI_WS1_B_MARK, 5938c2ecf20Sopenharmony_ci SCIF1_SCK_MARK, PWM3_MARK, TCLK2_MARK, DU1_DG5_MARK, SSI_SDATA1_B_MARK, 5948c2ecf20Sopenharmony_ci CAN_TXCLK_MARK, 5958c2ecf20Sopenharmony_ci 5968c2ecf20Sopenharmony_ci /* IPSR10 */ 5978c2ecf20Sopenharmony_ci SCIF1_RXD_MARK, I2C5_SCL_MARK, DU1_DG6_MARK, SSI_SCK2_B_MARK, 5988c2ecf20Sopenharmony_ci SCIF1_TXD_MARK, I2C5_SDA_MARK, DU1_DG7_MARK, SSI_WS2_B_MARK, 5998c2ecf20Sopenharmony_ci SCIF2_RXD_MARK, IIC0_SCL_MARK, DU1_DB0_MARK, SSI_SDATA2_B_MARK, 6008c2ecf20Sopenharmony_ci SCIF2_TXD_MARK, IIC0_SDA_MARK, DU1_DB1_MARK, SSI_SCK9_B_MARK, 6018c2ecf20Sopenharmony_ci SCIF2_SCK_MARK, IRQ1_MARK, DU1_DB2_MARK, SSI_WS9_B_MARK, 6028c2ecf20Sopenharmony_ci SCIF3_SCK_MARK, IRQ2_MARK, BPFCLK_D_MARK, DU1_DB3_MARK, 6038c2ecf20Sopenharmony_ci SSI_SDATA9_B_MARK, 6048c2ecf20Sopenharmony_ci SCIF3_RXD_MARK, I2C1_SCL_E_MARK, FMCLK_D_MARK, DU1_DB4_MARK, 6058c2ecf20Sopenharmony_ci AUDIO_CLKA_C_MARK, SSI_SCK4_B_MARK, 6068c2ecf20Sopenharmony_ci SCIF3_TXD_MARK, I2C1_SDA_E_MARK, FMIN_D_MARK, DU1_DB5_MARK, 6078c2ecf20Sopenharmony_ci AUDIO_CLKB_C_MARK, SSI_WS4_B_MARK, 6088c2ecf20Sopenharmony_ci I2C2_SCL_MARK, SCIFA5_RXD_MARK, DU1_DB6_MARK, AUDIO_CLKC_C_MARK, 6098c2ecf20Sopenharmony_ci SSI_SDATA4_B_MARK, 6108c2ecf20Sopenharmony_ci I2C2_SDA_MARK, SCIFA5_TXD_MARK, DU1_DB7_MARK, AUDIO_CLKOUT_C_MARK, 6118c2ecf20Sopenharmony_ci SSI_SCK5_MARK, SCIFA3_SCK_MARK, DU1_DOTCLKIN_MARK, 6128c2ecf20Sopenharmony_ci 6138c2ecf20Sopenharmony_ci /* IPSR11 */ 6148c2ecf20Sopenharmony_ci SSI_WS5_MARK, SCIFA3_RXD_MARK, I2C3_SCL_C_MARK, DU1_DOTCLKOUT0_MARK, 6158c2ecf20Sopenharmony_ci SSI_SDATA5_MARK, SCIFA3_TXD_MARK, I2C3_SDA_C_MARK, DU1_DOTCLKOUT1_MARK, 6168c2ecf20Sopenharmony_ci SSI_SCK6_MARK, SCIFA1_SCK_B_MARK, DU1_EXHSYNC_DU1_HSYNC_MARK, 6178c2ecf20Sopenharmony_ci SSI_WS6_MARK, SCIFA1_RXD_B_MARK, I2C4_SCL_C_MARK, 6188c2ecf20Sopenharmony_ci DU1_EXVSYNC_DU1_VSYNC_MARK, 6198c2ecf20Sopenharmony_ci SSI_SDATA6_MARK, SCIFA1_TXD_B_MARK, I2C4_SDA_C_MARK, 6208c2ecf20Sopenharmony_ci DU1_EXODDF_DU1_ODDF_DISP_CDE_MARK, 6218c2ecf20Sopenharmony_ci SSI_SCK78_MARK, SCIFA2_SCK_B_MARK, I2C5_SDA_C_MARK, DU1_DISP_MARK, 6228c2ecf20Sopenharmony_ci SSI_WS78_MARK, SCIFA2_RXD_B_MARK, I2C5_SCL_C_MARK, DU1_CDE_MARK, 6238c2ecf20Sopenharmony_ci SSI_SDATA7_MARK, SCIFA2_TXD_B_MARK, IRQ8_MARK, AUDIO_CLKA_D_MARK, 6248c2ecf20Sopenharmony_ci CAN_CLK_D_MARK, 6258c2ecf20Sopenharmony_ci SSI_SCK0129_MARK, MSIOF1_RXD_B_MARK, SCIF5_RXD_D_MARK, ADIDATA_B_MARK, 6268c2ecf20Sopenharmony_ci SSI_WS0129_MARK, MSIOF1_TXD_B_MARK, SCIF5_TXD_D_MARK, ADICS_SAMP_B_MARK, 6278c2ecf20Sopenharmony_ci SSI_SDATA0_MARK, MSIOF1_SCK_B_MARK, PWM0_B_MARK, ADICLK_B_MARK, 6288c2ecf20Sopenharmony_ci 6298c2ecf20Sopenharmony_ci /* IPSR12 */ 6308c2ecf20Sopenharmony_ci SSI_SCK34_MARK, MSIOF1_SYNC_B_MARK, SCIFA1_SCK_C_MARK, ADICHS0_B_MARK, 6318c2ecf20Sopenharmony_ci DREQ1_N_B_MARK, 6328c2ecf20Sopenharmony_ci SSI_WS34_MARK, MSIOF1_SS1_B_MARK, SCIFA1_RXD_C_MARK, ADICHS1_B_MARK, 6338c2ecf20Sopenharmony_ci CAN1_RX_C_MARK, DACK1_B_MARK, 6348c2ecf20Sopenharmony_ci SSI_SDATA3_MARK, MSIOF1_SS2_B_MARK, SCIFA1_TXD_C_MARK, ADICHS2_B_MARK, 6358c2ecf20Sopenharmony_ci CAN1_TX_C_MARK, DREQ2_N_MARK, 6368c2ecf20Sopenharmony_ci SSI_SCK4_MARK, MLB_CLK_MARK, IETX_B_MARK, 6378c2ecf20Sopenharmony_ci SSI_WS4_MARK, MLB_SIG_MARK, IECLK_B_MARK, 6388c2ecf20Sopenharmony_ci SSI_SDATA4_MARK, MLB_DAT_MARK, IERX_B_MARK, 6398c2ecf20Sopenharmony_ci SSI_SDATA8_MARK, SCIF1_SCK_B_MARK, PWM1_B_MARK, IRQ9_MARK, REMOCON_MARK, 6408c2ecf20Sopenharmony_ci DACK2_MARK, ETH_MDIO_B_MARK, 6418c2ecf20Sopenharmony_ci SSI_SCK1_MARK, SCIF1_RXD_B_MARK, IIC0_SCL_C_MARK, VI1_CLK_MARK, 6428c2ecf20Sopenharmony_ci CAN0_RX_D_MARK, ETH_CRS_DV_B_MARK, 6438c2ecf20Sopenharmony_ci SSI_WS1_MARK, SCIF1_TXD_B_MARK, IIC0_SDA_C_MARK, VI1_DATA0_MARK, 6448c2ecf20Sopenharmony_ci CAN0_TX_D_MARK, ETH_RX_ER_B_MARK, 6458c2ecf20Sopenharmony_ci SSI_SDATA1_MARK, HSCIF1_HRX_B_MARK, VI1_DATA1_MARK, ATAWR0_N_MARK, 6468c2ecf20Sopenharmony_ci ETH_RXD0_B_MARK, 6478c2ecf20Sopenharmony_ci SSI_SCK2_MARK, HSCIF1_HTX_B_MARK, VI1_DATA2_MARK, ATAG0_N_MARK, 6488c2ecf20Sopenharmony_ci ETH_RXD1_B_MARK, 6498c2ecf20Sopenharmony_ci 6508c2ecf20Sopenharmony_ci /* IPSR13 */ 6518c2ecf20Sopenharmony_ci SSI_WS2_MARK, HSCIF1_HCTS_N_B_MARK, SCIFA0_RXD_D_MARK, VI1_DATA3_MARK, 6528c2ecf20Sopenharmony_ci ATACS00_N_MARK, ETH_LINK_B_MARK, 6538c2ecf20Sopenharmony_ci SSI_SDATA2_MARK, HSCIF1_HRTS_N_B_MARK, SCIFA0_TXD_D_MARK, 6548c2ecf20Sopenharmony_ci VI1_DATA4_MARK, ATACS10_N_MARK, ETH_REFCLK_B_MARK, 6558c2ecf20Sopenharmony_ci SSI_SCK9_MARK, SCIF2_SCK_B_MARK, PWM2_B_MARK, VI1_DATA5_MARK, 6568c2ecf20Sopenharmony_ci EX_WAIT1_MARK, ETH_TXD1_B_MARK, 6578c2ecf20Sopenharmony_ci SSI_WS9_MARK, SCIF2_RXD_B_MARK, I2C3_SCL_E_MARK, VI1_DATA6_MARK, 6588c2ecf20Sopenharmony_ci ATARD0_N_MARK, ETH_TX_EN_B_MARK, 6598c2ecf20Sopenharmony_ci SSI_SDATA9_MARK, SCIF2_TXD_B_MARK, I2C3_SDA_E_MARK, VI1_DATA7_MARK, 6608c2ecf20Sopenharmony_ci ATADIR0_N_MARK, ETH_MAGIC_B_MARK, 6618c2ecf20Sopenharmony_ci AUDIO_CLKA_MARK, I2C0_SCL_B_MARK, SCIFA4_RXD_D_MARK, VI1_CLKENB_MARK, 6628c2ecf20Sopenharmony_ci TS_SDATA_C_MARK, ETH_TXD0_B_MARK, 6638c2ecf20Sopenharmony_ci AUDIO_CLKB_MARK, I2C0_SDA_B_MARK, SCIFA4_TXD_D_MARK, VI1_FIELD_MARK, 6648c2ecf20Sopenharmony_ci TS_SCK_C_MARK, BPFCLK_E_MARK, ETH_MDC_B_MARK, 6658c2ecf20Sopenharmony_ci AUDIO_CLKC_MARK, I2C4_SCL_B_MARK, SCIFA5_RXD_D_MARK, VI1_HSYNC_N_MARK, 6668c2ecf20Sopenharmony_ci TS_SDEN_C_MARK, FMCLK_E_MARK, 6678c2ecf20Sopenharmony_ci AUDIO_CLKOUT_MARK, I2C4_SDA_B_MARK, SCIFA5_TXD_D_MARK, VI1_VSYNC_N_MARK, 6688c2ecf20Sopenharmony_ci TS_SPSYNC_C_MARK, FMIN_E_MARK, 6698c2ecf20Sopenharmony_ci PINMUX_MARK_END, 6708c2ecf20Sopenharmony_ci}; 6718c2ecf20Sopenharmony_ci 6728c2ecf20Sopenharmony_cistatic const u16 pinmux_data[] = { 6738c2ecf20Sopenharmony_ci PINMUX_DATA_GP_ALL(), /* PINMUX_DATA(GP_M_N_DATA, GP_M_N_FN...), */ 6748c2ecf20Sopenharmony_ci 6758c2ecf20Sopenharmony_ci PINMUX_SINGLE(A2), 6768c2ecf20Sopenharmony_ci PINMUX_SINGLE(WE0_N), 6778c2ecf20Sopenharmony_ci PINMUX_SINGLE(WE1_N), 6788c2ecf20Sopenharmony_ci PINMUX_SINGLE(DACK0), 6798c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB0_PWEN), 6808c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB0_OVC), 6818c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB1_PWEN), 6828c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB1_OVC), 6838c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_CLK), 6848c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_CMD), 6858c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_DATA0), 6868c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_DATA1), 6878c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_DATA2), 6888c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_DATA3), 6898c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_CD), 6908c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD0_WP), 6918c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_CLK), 6928c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_CMD), 6938c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_DATA0), 6948c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_DATA1), 6958c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_DATA2), 6968c2ecf20Sopenharmony_ci PINMUX_SINGLE(SD1_DATA3), 6978c2ecf20Sopenharmony_ci 6988c2ecf20Sopenharmony_ci /* IPSR0 */ 6998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_0, SD1_CD), 7008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_0, CAN0_RX, SEL_CAN0_0), 7018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_9_8, SD1_WP), 7028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_9_8, IRQ7), 7038c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_9_8, CAN0_TX, SEL_CAN0_0), 7048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_10, MMC_CLK), 7058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_10, SD2_CLK), 7068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_11, MMC_CMD), 7078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_11, SD2_CMD), 7088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_12, MMC_D0), 7098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_12, SD2_DATA0), 7108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_13, MMC_D1), 7118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_13, SD2_DATA1), 7128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_14, MMC_D2), 7138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_14, SD2_DATA2), 7148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_15, MMC_D3), 7158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_15, SD2_DATA3), 7168c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_16, MMC_D4), 7178c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_16, SD2_CD), 7188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_17, MMC_D5), 7198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_17, SD2_WP), 7208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_19_18, MMC_D6), 7218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_19_18, SCIF0_RXD, SEL_SCIF0_0), 7228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_19_18, I2C2_SCL_B, SEL_I2C02_1), 7238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_19_18, CAN1_RX, SEL_CAN1_0), 7248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_21_20, MMC_D7), 7258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_21_20, SCIF0_TXD, SEL_SCIF0_0), 7268c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_21_20, I2C2_SDA_B, SEL_I2C02_1), 7278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_21_20, CAN1_TX, SEL_CAN1_0), 7288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_23_22, D0), 7298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_23_22, SCIFA3_SCK_B, SEL_SCIFA3_1), 7308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_23_22, IRQ4), 7318c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_24, D1), 7328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_24, SCIFA3_RXD_B, SEL_SCIFA3_1), 7338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_25, D2), 7348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_25, SCIFA3_TXD_B, SEL_SCIFA3_1), 7358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_27_26, D3), 7368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_27_26, I2C3_SCL_B, SEL_I2C03_1), 7378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_27_26, SCIF5_RXD_B, SEL_SCIF5_1), 7388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_29_28, D4), 7398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_29_28, I2C3_SDA_B, SEL_I2C03_1), 7408c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_29_28, SCIF5_TXD_B, SEL_SCIF5_1), 7418c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_31_30, D5), 7428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_31_30, SCIF4_RXD_B, SEL_SCIF4_1), 7438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_31_30, I2C0_SCL_D, SEL_I2C00_3), 7448c2ecf20Sopenharmony_ci 7458c2ecf20Sopenharmony_ci /* IPSR1 */ 7468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_1_0, D6), 7478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_1_0, SCIF4_TXD_B, SEL_SCIF4_1), 7488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_1_0, I2C0_SDA_D, SEL_I2C00_3), 7498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_3_2, D7), 7508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_3_2, IRQ3), 7518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_3_2, TCLK1, SEL_TMU_0), 7528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_3_2, PWM6_B), 7538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_5_4, D8), 7548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_5_4, HSCIF2_HRX), 7558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_5_4, I2C1_SCL_B, SEL_I2C01_1), 7568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_7_6, D9), 7578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_7_6, HSCIF2_HTX), 7588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_7_6, I2C1_SDA_B, SEL_I2C01_1), 7598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_10_8, D10), 7608c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_10_8, HSCIF2_HSCK), 7618c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_10_8, SCIF1_SCK_C, SEL_SCIF1_2), 7628c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_10_8, IRQ6), 7638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_10_8, PWM5_C), 7648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_12_11, D11), 7658c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_12_11, HSCIF2_HCTS_N), 7668c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_12_11, SCIF1_RXD_C, SEL_SCIF1_2), 7678c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_12_11, I2C1_SCL_D, SEL_I2C01_3), 7688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_14_13, D12), 7698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_14_13, HSCIF2_HRTS_N), 7708c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_14_13, SCIF1_TXD_C, SEL_SCIF1_2), 7718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_14_13, I2C1_SDA_D, SEL_I2C01_3), 7728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_17_15, D13), 7738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_17_15, SCIFA1_SCK, SEL_SCIFA1_0), 7748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_17_15, PWM2_C), 7758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_17_15, TCLK2_B, SEL_TMU_1), 7768c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_19_18, D14), 7778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_18, SCIFA1_RXD, SEL_SCIFA1_0), 7788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_18, I2C5_SCL_B, SEL_I2C05_1), 7798c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_21_20, D15), 7808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_21_20, SCIFA1_TXD, SEL_SCIFA1_0), 7818c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_21_20, I2C5_SDA_B, SEL_I2C05_1), 7828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_23_22, A0), 7838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_23_22, SCIFB1_SCK), 7848c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_23_22, PWM3_B), 7858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_24, A1), 7868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_24, SCIFB1_TXD), 7878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_26, A3), 7888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_26, SCIFB0_SCK), 7898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_27, A4), 7908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_27, SCIFB0_TXD), 7918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_29_28, A5), 7928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_29_28, SCIFB0_RXD), 7938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_29_28, PWM4_B), 7948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_29_28, TPUTO3_C), 7958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_30, A6), 7968c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_30, SCIFB0_CTS_N), 7978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_31_30, SCIFA4_RXD_B, SEL_SCIFA4_1), 7988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_30, TPUTO2_C), 7998c2ecf20Sopenharmony_ci 8008c2ecf20Sopenharmony_ci /* IPSR2 */ 8018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_1_0, A7), 8028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_1_0, SCIFB0_RTS_N), 8038c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_1_0, SCIFA4_TXD_B, SEL_SCIFA4_1), 8048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_3_2, A8), 8058c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_3_2, MSIOF1_RXD, SEL_MSI1_0), 8068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_3_2, SCIFA0_RXD_B, SEL_SCIFA0_1), 8078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_5_4, A9), 8088c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_5_4, MSIOF1_TXD, SEL_MSI1_0), 8098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_5_4, SCIFA0_TXD_B, SEL_SCIFA0_1), 8108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_7_6, A10), 8118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_7_6, MSIOF1_SCK, SEL_MSI1_0), 8128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_7_6, IIC0_SCL_B, SEL_IIC0_1), 8138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_9_8, A11), 8148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_9_8, MSIOF1_SYNC, SEL_MSI1_0), 8158c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_9_8, IIC0_SDA_B, SEL_IIC0_1), 8168c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_11_10, A12), 8178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_11_10, MSIOF1_SS1, SEL_MSI1_0), 8188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_11_10, SCIFA5_RXD_B, SEL_SCIFA5_1), 8198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_13_12, A13), 8208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_13_12, MSIOF1_SS2, SEL_MSI1_0), 8218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_13_12, SCIFA5_TXD_B, SEL_SCIFA5_1), 8228c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_15_14, A14), 8238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_15_14, MSIOF2_RXD, SEL_MSI2_0), 8248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_15_14, HSCIF0_HRX_B, SEL_HSCIF0_1), 8258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_15_14, DREQ1_N, SEL_LBS_0), 8268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_17_16, A15), 8278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_17_16, MSIOF2_TXD, SEL_MSI2_0), 8288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_17_16, HSCIF0_HTX_B, SEL_HSCIF0_1), 8298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_17_16, DACK1, SEL_LBS_0), 8308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_20_18, A16), 8318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_20_18, MSIOF2_SCK, SEL_MSI2_0), 8328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_20_18, HSCIF0_HSCK_B, SEL_HSCIF0_1), 8338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_20_18, SPEEDIN, SEL_RSP_0), 8348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_20_18, CAN_CLK_C, SEL_CAN_2), 8358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_20_18, TPUTO2_B), 8368c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_23_21, A17), 8378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_23_21, MSIOF2_SYNC, SEL_MSI2_0), 8388c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_23_21, SCIF4_RXD_E, SEL_SCIF4_4), 8398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_23_21, CAN1_RX_B, SEL_CAN1_1), 8408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_26_24, A18), 8418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_26_24, MSIOF2_SS1, SEL_MSI2_0), 8428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_26_24, SCIF4_TXD_E, SEL_SCIF4_4), 8438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_26_24, CAN1_TX_B, SEL_CAN1_1), 8448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_29_27, A19), 8458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_29_27, MSIOF2_SS2, SEL_MSI2_0), 8468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_29_27, PWM4), 8478c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_29_27, TPUTO2), 8488c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_31_30, A20), 8498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_31_30, SPCLK), 8508c2ecf20Sopenharmony_ci 8518c2ecf20Sopenharmony_ci /* IPSR3 */ 8528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_1_0, A21), 8538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_1_0, MOSI_IO0), 8548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_3_2, A22), 8558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_3_2, MISO_IO1), 8568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_3_2, ATADIR1_N), 8578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_5_4, A23), 8588c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_5_4, IO2), 8598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_5_4, ATAWR1_N), 8608c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_6, A24), 8618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_6, IO3), 8628c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_6, EX_WAIT2), 8638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_9_8, A25), 8648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_9_8, SSL), 8658c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_9_8, ATARD1_N), 8668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_10, CS0_N), 8678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_10, VI1_DATA8), 8688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_11, CS1_N_A26), 8698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_11, VI1_DATA9), 8708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_12, EX_CS0_N), 8718c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_12, VI1_DATA10), 8728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_14_13, EX_CS1_N), 8738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_14_13, TPUTO3_B), 8748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_14_13, SCIFB2_RXD), 8758c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_14_13, VI1_DATA11), 8768c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_17_15, EX_CS2_N), 8778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_17_15, PWM0), 8788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_17_15, SCIF4_RXD_C, SEL_SCIF4_2), 8798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_17_15, TS_SDATA_B, SEL_TSIF0_1), 8808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_17_15, TPUTO3), 8818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_17_15, SCIFB2_TXD), 8828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_20_18, EX_CS3_N), 8838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_20_18, SCIFA2_SCK, SEL_SCIFA2_0), 8848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_20_18, SCIF4_TXD_C, SEL_SCIF4_2), 8858c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_20_18, TS_SCK_B, SEL_TSIF0_1), 8868c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_20_18, BPFCLK, SEL_DARC_0), 8878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_20_18, SCIFB2_SCK), 8888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_23_21, EX_CS4_N), 8898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_23_21, SCIFA2_RXD, SEL_SCIFA2_0), 8908c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_23_21, I2C2_SCL_E, SEL_I2C02_4), 8918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_23_21, TS_SDEN_B, SEL_TSIF0_1), 8928c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_23_21, FMCLK, SEL_DARC_0), 8938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_23_21, SCIFB2_CTS_N), 8948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_26_24, EX_CS5_N), 8958c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_26_24, SCIFA2_TXD, SEL_SCIFA2_0), 8968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_26_24, I2C2_SDA_E, SEL_I2C02_4), 8978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_26_24, TS_SPSYNC_B, SEL_TSIF0_1), 8988c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_26_24, FMIN, SEL_DARC_0), 8998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_26_24, SCIFB2_RTS_N), 9008c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_29_27, BS_N), 9018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_29_27, DRACK0), 9028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_29_27, PWM1_C), 9038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_29_27, TPUTO0_C), 9048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_29_27, ATACS01_N), 9058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_30, RD_N), 9068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_30, ATACS11_N), 9078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_31, RD_WR_N), 9088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_31, ATAG1_N), 9098c2ecf20Sopenharmony_ci 9108c2ecf20Sopenharmony_ci /* IPSR4 */ 9118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_1_0, EX_WAIT0), 9128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_1_0, CAN_CLK_B, SEL_CAN_1), 9138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_1_0, SCIF_CLK, SEL_SCIF0_0), 9148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_4_2, DU0_DR0), 9158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_4_2, LCDOUT16), 9168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_4_2, SCIF5_RXD_C, SEL_SCIF5_2), 9178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_4_2, I2C2_SCL_D, SEL_I2C02_3), 9188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_7_5, DU0_DR1), 9198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_7_5, LCDOUT17), 9208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_7_5, SCIF5_TXD_C, SEL_SCIF5_2), 9218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_7_5, I2C2_SDA_D, SEL_I2C02_3), 9228c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_9_8, DU0_DR2), 9238c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_9_8, LCDOUT18), 9248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_11_10, DU0_DR3), 9258c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_11_10, LCDOUT19), 9268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_13_12, DU0_DR4), 9278c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_13_12, LCDOUT20), 9288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_15_14, DU0_DR5), 9298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_15_14, LCDOUT21), 9308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_17_16, DU0_DR6), 9318c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_17_16, LCDOUT22), 9328c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_19_18, DU0_DR7), 9338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_19_18, LCDOUT23), 9348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_22_20, DU0_DG0), 9358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_22_20, LCDOUT8), 9368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_22_20, SCIFA0_RXD_C, SEL_SCIFA0_2), 9378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_22_20, I2C3_SCL_D, SEL_I2C03_3), 9388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_25_23, DU0_DG1), 9398c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_25_23, LCDOUT9), 9408c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_25_23, SCIFA0_TXD_C, SEL_SCIFA0_2), 9418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_25_23, I2C3_SDA_D, SEL_I2C03_3), 9428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_27_26, DU0_DG2), 9438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_27_26, LCDOUT10), 9448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_29_28, DU0_DG3), 9458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_29_28, LCDOUT11), 9468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_31_30, DU0_DG4), 9478c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_31_30, LCDOUT12), 9488c2ecf20Sopenharmony_ci 9498c2ecf20Sopenharmony_ci /* IPSR5 */ 9508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_1_0, DU0_DG5), 9518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_1_0, LCDOUT13), 9528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_3_2, DU0_DG6), 9538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_3_2, LCDOUT14), 9548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_5_4, DU0_DG7), 9558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_5_4, LCDOUT15), 9568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_8_6, DU0_DB0), 9578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_8_6, LCDOUT0), 9588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_8_6, SCIFA4_RXD_C, SEL_SCIFA4_2), 9598c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_8_6, I2C4_SCL_D, SEL_I2C04_3), 9608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_8_6, CAN0_RX_C, SEL_CAN0_2), 9618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_11_9, DU0_DB1), 9628c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_11_9, LCDOUT1), 9638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_11_9, SCIFA4_TXD_C, SEL_SCIFA4_2), 9648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_11_9, I2C4_SDA_D, SEL_I2C04_3), 9658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_11_9, CAN0_TX_C, SEL_CAN0_2), 9668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_13_12, DU0_DB2), 9678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_13_12, LCDOUT2), 9688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_15_14, DU0_DB3), 9698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_15_14, LCDOUT3), 9708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_17_16, DU0_DB4), 9718c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_17_16, LCDOUT4), 9728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_19_18, DU0_DB5), 9738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_19_18, LCDOUT5), 9748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_21_20, DU0_DB6), 9758c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_21_20, LCDOUT6), 9768c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_23_22, DU0_DB7), 9778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_23_22, LCDOUT7), 9788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_25_24, DU0_DOTCLKIN), 9798c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_25_24, QSTVA_QVS), 9808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_27_26, DU0_DOTCLKOUT0), 9818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_27_26, QCLK), 9828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_29_28, DU0_DOTCLKOUT1), 9838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_29_28, QSTVB_QVE), 9848c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_31_30, DU0_EXHSYNC_DU0_HSYNC), 9858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_31_30, QSTH_QHS), 9868c2ecf20Sopenharmony_ci 9878c2ecf20Sopenharmony_ci /* IPSR6 */ 9888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_1_0, DU0_EXVSYNC_DU0_VSYNC), 9898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_1_0, QSTB_QHE), 9908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_3_2, DU0_EXODDF_DU0_ODDF_DISP_CDE), 9918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_3_2, QCPV_QDE), 9928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_5_4, DU0_DISP), 9938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_5_4, QPOLA), 9948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_7_6, DU0_CDE), 9958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_7_6, QPOLB), 9968c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_8, VI0_CLK), 9978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_8, AVB_RX_CLK), 9988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_9, VI0_DATA0_VI0_B0), 9998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_9, AVB_RX_DV), 10008c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_10, VI0_DATA1_VI0_B1), 10018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_10, AVB_RXD0), 10028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_11, VI0_DATA2_VI0_B2), 10038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_11, AVB_RXD1), 10048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_12, VI0_DATA3_VI0_B3), 10058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_12, AVB_RXD2), 10068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_13, VI0_DATA4_VI0_B4), 10078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_13, AVB_RXD3), 10088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_14, VI0_DATA5_VI0_B5), 10098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_14, AVB_RXD4), 10108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_15, VI0_DATA6_VI0_B6), 10118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_15, AVB_RXD5), 10128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_16, VI0_DATA7_VI0_B7), 10138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_16, AVB_RXD6), 10148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_19_17, VI0_CLKENB), 10158c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_19_17, I2C3_SCL, SEL_I2C03_0), 10168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_19_17, SCIFA5_RXD_C, SEL_SCIFA5_2), 10178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_19_17, IETX_C, SEL_IEB_2), 10188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_19_17, AVB_RXD7), 10198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_22_20, VI0_FIELD), 10208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_22_20, I2C3_SDA, SEL_I2C03_0), 10218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_22_20, SCIFA5_TXD_C, SEL_SCIFA5_2), 10228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_22_20, IECLK_C, SEL_IEB_2), 10238c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_22_20, AVB_RX_ER), 10248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_25_23, VI0_HSYNC_N), 10258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_25_23, SCIF0_RXD_B, SEL_SCIF0_1), 10268c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_25_23, I2C0_SCL_C, SEL_I2C00_2), 10278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_25_23, IERX_C, SEL_IEB_2), 10288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_25_23, AVB_COL), 10298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_28_26, VI0_VSYNC_N), 10308c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_28_26, SCIF0_TXD_B, SEL_SCIF0_1), 10318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_28_26, I2C0_SDA_C, SEL_I2C00_2), 10328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_28_26, AUDIO_CLKOUT_B, SEL_ADG_1), 10338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_28_26, AVB_TX_EN), 10348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_31_29, ETH_MDIO, SEL_ETH_0), 10358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_31_29, VI0_G0), 10368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_31_29, MSIOF2_RXD_B, SEL_MSI2_1), 10378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_31_29, I2C5_SCL_D, SEL_I2C05_3), 10388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_31_29, AVB_TX_CLK), 10398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_31_29, ADIDATA, SEL_RAD_0), 10408c2ecf20Sopenharmony_ci 10418c2ecf20Sopenharmony_ci /* IPSR7 */ 10428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_2_0, ETH_CRS_DV, SEL_ETH_0), 10438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_2_0, VI0_G1), 10448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_2_0, MSIOF2_TXD_B, SEL_MSI2_1), 10458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_2_0, I2C5_SDA_D, SEL_I2C05_3), 10468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_2_0, AVB_TXD0), 10478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_2_0, ADICS_SAMP, SEL_RAD_0), 10488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_5_3, ETH_RX_ER, SEL_ETH_0), 10498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_5_3, VI0_G2), 10508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_5_3, MSIOF2_SCK_B, SEL_MSI2_1), 10518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_5_3, CAN0_RX_B, SEL_CAN0_1), 10528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_5_3, AVB_TXD1), 10538c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_5_3, ADICLK, SEL_RAD_0), 10548c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_8_6, ETH_RXD0, SEL_ETH_0), 10558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_8_6, VI0_G3), 10568c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_8_6, MSIOF2_SYNC_B, SEL_MSI2_1), 10578c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_8_6, CAN0_TX_B, SEL_CAN0_1), 10588c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_8_6, AVB_TXD2), 10598c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_8_6, ADICHS0, SEL_RAD_0), 10608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_11_9, ETH_RXD1, SEL_ETH_0), 10618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_11_9, VI0_G4), 10628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_11_9, MSIOF2_SS1_B, SEL_MSI2_1), 10638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_11_9, SCIF4_RXD_D, SEL_SCIF4_3), 10648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_11_9, AVB_TXD3), 10658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_11_9, ADICHS1, SEL_RAD_0), 10668c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_14_12, ETH_LINK, SEL_ETH_0), 10678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_14_12, VI0_G5), 10688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_14_12, MSIOF2_SS2_B, SEL_MSI2_1), 10698c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_14_12, SCIF4_TXD_D, SEL_SCIF4_3), 10708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_14_12, AVB_TXD4), 10718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_14_12, ADICHS2, SEL_RAD_0), 10728c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_17_15, ETH_REFCLK, SEL_ETH_0), 10738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_17_15, VI0_G6), 10748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_17_15, SCIF2_SCK_C, SEL_SCIF2_2), 10758c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_17_15, AVB_TXD5), 10768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_17_15, SSI_SCK5_B, SEL_SSI5_1), 10778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_20_18, ETH_TXD1, SEL_ETH_0), 10788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_20_18, VI0_G7), 10798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_20_18, SCIF2_RXD_C, SEL_SCIF2_2), 10808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_20_18, IIC0_SCL_D, SEL_IIC0_3), 10818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_20_18, AVB_TXD6), 10828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_20_18, SSI_WS5_B, SEL_SSI5_1), 10838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_23_21, ETH_TX_EN, SEL_ETH_0), 10848c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_23_21, VI0_R0), 10858c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_23_21, SCIF2_TXD_C, SEL_SCIF2_2), 10868c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_23_21, IIC0_SDA_D, SEL_IIC0_3), 10878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_23_21, AVB_TXD7), 10888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_23_21, SSI_SDATA5_B, SEL_SSI5_1), 10898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_26_24, ETH_MAGIC, SEL_ETH_0), 10908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_26_24, VI0_R1), 10918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_26_24, SCIF3_SCK_B, SEL_SCIF3_1), 10928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_26_24, AVB_TX_ER), 10938c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_26_24, SSI_SCK6_B, SEL_SSI6_1), 10948c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_29_27, ETH_TXD0, SEL_ETH_0), 10958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_29_27, VI0_R2), 10968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_29_27, SCIF3_RXD_B, SEL_SCIF3_1), 10978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_29_27, I2C4_SCL_E, SEL_I2C04_4), 10988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_29_27, AVB_GTX_CLK), 10998c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_29_27, SSI_WS6_B, SEL_SSI6_1), 11008c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_31, DREQ0_N), 11018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_31, SCIFB1_RXD), 11028c2ecf20Sopenharmony_ci 11038c2ecf20Sopenharmony_ci /* IPSR8 */ 11048c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_2_0, ETH_MDC, SEL_ETH_0), 11058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_2_0, VI0_R3), 11068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_2_0, SCIF3_TXD_B, SEL_SCIF3_1), 11078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_2_0, I2C4_SDA_E, SEL_I2C04_4), 11088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_2_0, AVB_MDC), 11098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_2_0, SSI_SDATA6_B, SEL_SSI6_1), 11108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_5_3, HSCIF0_HRX, SEL_HSCIF0_0), 11118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_5_3, VI0_R4), 11128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_5_3, I2C1_SCL_C, SEL_I2C01_2), 11138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_5_3, AUDIO_CLKA_B, SEL_ADG_1), 11148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_5_3, AVB_MDIO), 11158c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_5_3, SSI_SCK78_B, SEL_SSI7_1), 11168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_8_6, HSCIF0_HTX, SEL_HSCIF0_0), 11178c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_8_6, VI0_R5), 11188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_8_6, I2C1_SDA_C, SEL_I2C01_2), 11198c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_8_6, AUDIO_CLKB_B, SEL_ADG_1), 11208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_5_3, AVB_LINK), 11218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_8_6, SSI_WS78_B, SEL_SSI7_1), 11228c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_9, HSCIF0_HCTS_N), 11238c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_9, VI0_R6), 11248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_11_9, SCIF0_RXD_D, SEL_SCIF0_3), 11258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_11_9, I2C0_SCL_E, SEL_I2C00_4), 11268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_9, AVB_MAGIC), 11278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_11_9, SSI_SDATA7_B, SEL_SSI7_1), 11288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_14_12, HSCIF0_HRTS_N), 11298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_14_12, VI0_R7), 11308c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_14_12, SCIF0_TXD_D, SEL_SCIF0_3), 11318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_14_12, I2C0_SDA_E, SEL_I2C00_4), 11328c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_14_12, AVB_PHY_INT), 11338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_14_12, SSI_SDATA8_B, SEL_SSI8_1), 11348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_16_15, HSCIF0_HSCK, SEL_HSCIF0_0), 11358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_16_15, SCIF_CLK_B, SEL_SCIF0_1), 11368c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_16_15, AVB_CRS), 11378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_16_15, AUDIO_CLKC_B, SEL_ADG_1), 11388c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_19_17, I2C0_SCL, SEL_I2C00_0), 11398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_19_17, SCIF0_RXD_C, SEL_SCIF0_2), 11408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_17, PWM5), 11418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_19_17, TCLK1_B, SEL_TMU_1), 11428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_17, AVB_GTXREFCLK), 11438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_19_17, CAN1_RX_D, SEL_CAN1_3), 11448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_17, TPUTO0_B), 11458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_22_20, I2C0_SDA, SEL_I2C00_0), 11468c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_22_20, SCIF0_TXD_C, SEL_SCIF0_2), 11478c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_22_20, TPUTO0), 11488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_22_20, CAN_CLK, SEL_CAN_0), 11498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_22_20, DVC_MUTE), 11508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_22_20, CAN1_TX_D, SEL_CAN1_3), 11518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_25_23, I2C1_SCL, SEL_I2C01_0), 11528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_25_23, SCIF4_RXD, SEL_SCIF4_0), 11538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_25_23, PWM5_B), 11548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_25_23, DU1_DR0), 11558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_25_23, TS_SDATA_D, SEL_TSIF0_3), 11568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_25_23, TPUTO1_B), 11578c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_28_26, I2C1_SDA, SEL_I2C01_0), 11588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_28_26, SCIF4_TXD, SEL_SCIF4_0), 11598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_28_26, IRQ5), 11608c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_28_26, DU1_DR1), 11618c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_28_26, TS_SCK_D, SEL_TSIF0_3), 11628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_28_26, BPFCLK_C, SEL_DARC_2), 11638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_31_29, MSIOF0_RXD), 11648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_31_29, SCIF5_RXD, SEL_SCIF5_0), 11658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_31_29, I2C2_SCL_C, SEL_I2C02_2), 11668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_31_29, DU1_DR2), 11678c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_31_29, TS_SDEN_D, SEL_TSIF0_3), 11688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_31_29, FMCLK_C, SEL_DARC_2), 11698c2ecf20Sopenharmony_ci 11708c2ecf20Sopenharmony_ci /* IPSR9 */ 11718c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_2_0, MSIOF0_TXD), 11728c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_2_0, SCIF5_TXD, SEL_SCIF5_0), 11738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_2_0, I2C2_SDA_C, SEL_I2C02_2), 11748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_2_0, DU1_DR3), 11758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_2_0, TS_SPSYNC_D, SEL_TSIF0_3), 11768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_2_0, FMIN_C, SEL_DARC_2), 11778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_5_3, MSIOF0_SCK), 11788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_5_3, IRQ0), 11798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_5_3, TS_SDATA, SEL_TSIF0_0), 11808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_5_3, DU1_DR4), 11818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_5_3, TPUTO1_C), 11828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_8_6, MSIOF0_SYNC), 11838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_8_6, PWM1), 11848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_8_6, TS_SCK, SEL_TSIF0_0), 11858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_8_6, DU1_DR5), 11868c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_8_6, BPFCLK_B, SEL_DARC_1), 11878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_11_9, MSIOF0_SS1), 11888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_11_9, SCIFA0_RXD, SEL_SCIFA0_0), 11898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_11_9, TS_SDEN, SEL_TSIF0_0), 11908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_11_9, DU1_DR6), 11918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_11_9, FMCLK_B, SEL_DARC_1), 11928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_14_12, MSIOF0_SS2), 11938c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_14_12, SCIFA0_TXD, SEL_SCIFA0_0), 11948c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_14_12, TS_SPSYNC, SEL_TSIF0_0), 11958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_14_12, DU1_DR7), 11968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_14_12, FMIN_B, SEL_DARC_1), 11978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_16_15, HSCIF1_HRX, SEL_HSCIF1_0), 11988c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_16_15, I2C4_SCL, SEL_I2C04_0), 11998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_16_15, PWM6), 12008c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_16_15, DU1_DG0), 12018c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_18_17, HSCIF1_HTX, SEL_HSCIF1_0), 12028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_18_17, I2C4_SDA, SEL_I2C04_0), 12038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_18_17, TPUTO1), 12048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_18_17, DU1_DG1), 12058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_21_19, HSCIF1_HSCK), 12068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_21_19, PWM2), 12078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_21_19, IETX, SEL_IEB_0), 12088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_21_19, DU1_DG2), 12098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_21_19, REMOCON_B, SEL_RCN_1), 12108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_21_19, SPEEDIN_B, SEL_RSP_1), 12118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_24_22, HSCIF1_HCTS_N, SEL_HSCIF1_0), 12128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_24_22, SCIFA4_RXD, SEL_SCIFA4_0), 12138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_24_22, IECLK, SEL_IEB_0), 12148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_24_22, DU1_DG3), 12158c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_24_22, SSI_SCK1_B, SEL_SSI1_1), 12168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_27_25, HSCIF1_HRTS_N, SEL_HSCIF1_0), 12178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_27_25, SCIFA4_TXD, SEL_SCIFA4_0), 12188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_27_25, IERX, SEL_IEB_0), 12198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_27_25, DU1_DG4), 12208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_27_25, SSI_WS1_B, SEL_SSI1_1), 12218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_30_28, SCIF1_SCK, SEL_SCIF1_0), 12228c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_30_28, PWM3), 12238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_30_28, TCLK2, SEL_TMU_0), 12248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_30_28, DU1_DG5), 12258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_30_28, SSI_SDATA1_B, SEL_SSI1_1), 12268c2ecf20Sopenharmony_ci 12278c2ecf20Sopenharmony_ci /* IPSR10 */ 12288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_2_0, SCIF1_RXD, SEL_SCIF1_0), 12298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_2_0, I2C5_SCL, SEL_I2C05_0), 12308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_2_0, DU1_DG6), 12318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_2_0, SSI_SCK2_B, SEL_SSI2_1), 12328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_5_3, SCIF1_TXD, SEL_SCIF1_0), 12338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_5_3, I2C5_SDA, SEL_I2C05_0), 12348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_5_3, DU1_DG7), 12358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_5_3, SSI_WS2_B, SEL_SSI2_1), 12368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_8_6, SCIF2_RXD, SEL_SCIF2_0), 12378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_8_6, IIC0_SCL, SEL_IIC0_0), 12388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_8_6, DU1_DB0), 12398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_8_6, SSI_SDATA2_B, SEL_SSI2_1), 12408c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_9, SCIF2_TXD, SEL_SCIF2_0), 12418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_9, IIC0_SDA, SEL_IIC0_0), 12428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_11_9, DU1_DB1), 12438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_9, SSI_SCK9_B, SEL_SSI9_1), 12448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_14_12, SCIF2_SCK, SEL_SCIF2_0), 12458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_14_12, IRQ1), 12468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_14_12, DU1_DB2), 12478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_14_12, SSI_WS9_B, SEL_SSI9_1), 12488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_17_15, SCIF3_SCK, SEL_SCIF3_0), 12498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_17_15, IRQ2), 12508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_17_15, BPFCLK_D, SEL_DARC_3), 12518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_17_15, DU1_DB3), 12528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_17_15, SSI_SDATA9_B, SEL_SSI9_1), 12538c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_20_18, SCIF3_RXD, SEL_SCIF3_0), 12548c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_20_18, I2C1_SCL_E, SEL_I2C01_4), 12558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_20_18, FMCLK_D, SEL_DARC_3), 12568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_20_18, DU1_DB4), 12578c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_20_18, AUDIO_CLKA_C, SEL_ADG_2), 12588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_20_18, SSI_SCK4_B, SEL_SSI4_1), 12598c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_21, SCIF3_TXD, SEL_SCIF3_0), 12608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_21, I2C1_SDA_E, SEL_I2C01_4), 12618c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_21, FMIN_D, SEL_DARC_3), 12628c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_23_21, DU1_DB5), 12638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_21, AUDIO_CLKB_C, SEL_ADG_2), 12648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_21, SSI_WS4_B, SEL_SSI4_1), 12658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_26_24, I2C2_SCL, SEL_I2C02_0), 12668c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_26_24, SCIFA5_RXD, SEL_SCIFA5_0), 12678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_26_24, DU1_DB6), 12688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_26_24, AUDIO_CLKC_C, SEL_ADG_2), 12698c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_26_24, SSI_SDATA4_B, SEL_SSI4_1), 12708c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_29_27, I2C2_SDA, SEL_I2C02_0), 12718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_29_27, SCIFA5_TXD, SEL_SCIFA5_0), 12728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_29_27, DU1_DB7), 12738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_29_27, AUDIO_CLKOUT_C, SEL_ADG_2), 12748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_31_30, SSI_SCK5, SEL_SSI5_0), 12758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_31_30, SCIFA3_SCK, SEL_SCIFA3_0), 12768c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_31_30, DU1_DOTCLKIN), 12778c2ecf20Sopenharmony_ci 12788c2ecf20Sopenharmony_ci /* IPSR11 */ 12798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_2_0, SSI_WS5, SEL_SSI5_0), 12808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_2_0, SCIFA3_RXD, SEL_SCIFA3_0), 12818c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_2_0, I2C3_SCL_C, SEL_I2C03_2), 12828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_2_0, DU1_DOTCLKOUT0), 12838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_5_3, SSI_SDATA5, SEL_SSI5_0), 12848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_5_3, SCIFA3_TXD, SEL_SCIFA3_0), 12858c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_5_3, I2C3_SDA_C, SEL_I2C03_2), 12868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_5_3, DU1_DOTCLKOUT1), 12878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_6, SSI_SCK6, SEL_SSI6_0), 12888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_6, SCIFA1_SCK_B, SEL_SCIFA1_1), 12898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_7_6, DU1_EXHSYNC_DU1_HSYNC), 12908c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_10_8, SSI_WS6, SEL_SSI6_0), 12918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_10_8, SCIFA1_RXD_B, SEL_SCIFA1_1), 12928c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_10_8, I2C4_SCL_C, SEL_I2C04_2), 12938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_10_8, DU1_EXVSYNC_DU1_VSYNC), 12948c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_13_11, SSI_SDATA6, SEL_SSI6_0), 12958c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_13_11, SCIFA1_TXD_B, SEL_SCIFA1_1), 12968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_13_11, I2C4_SDA_C, SEL_I2C04_2), 12978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_13_11, DU1_EXODDF_DU1_ODDF_DISP_CDE), 12988c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_15_14, SSI_SCK78, SEL_SSI7_0), 12998c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_15_14, SCIFA2_SCK_B, SEL_SCIFA2_1), 13008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_15_14, I2C5_SDA_C, SEL_I2C05_2), 13018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_15_14, DU1_DISP), 13028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_17_16, SSI_WS78, SEL_SSI7_0), 13038c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_17_16, SCIFA2_RXD_B, SEL_SCIFA2_1), 13048c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_17_16, I2C5_SCL_C, SEL_I2C05_2), 13058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_17_16, DU1_CDE), 13068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_20_18, SSI_SDATA7, SEL_SSI7_0), 13078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_20_18, SCIFA2_TXD_B, SEL_SCIFA2_1), 13088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_20_18, IRQ8), 13098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_20_18, AUDIO_CLKA_D, SEL_ADG_3), 13108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_20_18, CAN_CLK_D, SEL_CAN_3), 13118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_23_21, SSI_SCK0129), 13128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_23_21, MSIOF1_RXD_B, SEL_MSI1_1), 13138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_23_21, SCIF5_RXD_D, SEL_SCIF5_3), 13148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_23_21, ADIDATA_B, SEL_RAD_1), 13158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_26_24, SSI_WS0129), 13168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_26_24, MSIOF1_TXD_B, SEL_MSI1_1), 13178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_26_24, SCIF5_TXD_D, SEL_SCIF5_3), 13188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_26_24, ADICS_SAMP_B, SEL_RAD_1), 13198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_29_27, SSI_SDATA0), 13208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_29_27, MSIOF1_SCK_B, SEL_MSI1_1), 13218c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_29_27, PWM0_B), 13228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_29_27, ADICLK_B, SEL_RAD_1), 13238c2ecf20Sopenharmony_ci 13248c2ecf20Sopenharmony_ci /* IPSR12 */ 13258c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_2_0, SSI_SCK34), 13268c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_2_0, MSIOF1_SYNC_B, SEL_MSI1_1), 13278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_2_0, SCIFA1_SCK_C, SEL_SCIFA1_2), 13288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_2_0, ADICHS0_B, SEL_RAD_1), 13298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_2_0, DREQ1_N_B, SEL_LBS_1), 13308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_5_3, SSI_WS34), 13318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_5_3, MSIOF1_SS1_B, SEL_MSI1_1), 13328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_5_3, SCIFA1_RXD_C, SEL_SCIFA1_2), 13338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_5_3, ADICHS1_B, SEL_RAD_1), 13348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_5_3, CAN1_RX_C, SEL_CAN1_2), 13358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_5_3, DACK1_B, SEL_LBS_1), 13368c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_8_6, SSI_SDATA3), 13378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_8_6, MSIOF1_SS2_B, SEL_MSI1_1), 13388c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_8_6, SCIFA1_TXD_C, SEL_SCIFA1_2), 13398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_8_6, ADICHS2_B, SEL_RAD_1), 13408c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_8_6, CAN1_TX_C, SEL_CAN1_2), 13418c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_8_6, DREQ2_N), 13428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_10_9, SSI_SCK4, SEL_SSI4_0), 13438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_10_9, MLB_CLK), 13448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_10_9, IETX_B, SEL_IEB_1), 13458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_12_11, SSI_WS4, SEL_SSI4_0), 13468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_12_11, MLB_SIG), 13478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_12_11, IECLK_B, SEL_IEB_1), 13488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_14_13, SSI_SDATA4, SEL_SSI4_0), 13498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_14_13, MLB_DAT), 13508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_14_13, IERX_B, SEL_IEB_1), 13518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_17_15, SSI_SDATA8, SEL_SSI8_0), 13528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_17_15, SCIF1_SCK_B, SEL_SCIF1_1), 13538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_17_15, PWM1_B), 13548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_17_15, IRQ9), 13558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_17_15, REMOCON, SEL_RCN_0), 13568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_17_15, DACK2), 13578c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_17_15, ETH_MDIO_B, SEL_ETH_1), 13588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_20_18, SSI_SCK1, SEL_SSI1_0), 13598c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_20_18, SCIF1_RXD_B, SEL_SCIF1_1), 13608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_20_18, IIC0_SCL_C, SEL_IIC0_2), 13618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_20_18, VI1_CLK), 13628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_20_18, CAN0_RX_D, SEL_CAN0_3), 13638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_20_18, ETH_CRS_DV_B, SEL_ETH_1), 13648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_21, SSI_WS1, SEL_SSI1_0), 13658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_21, SCIF1_TXD_B, SEL_SCIF1_1), 13668c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_21, IIC0_SDA_C, SEL_IIC0_2), 13678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_23_21, VI1_DATA0), 13688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_21, CAN0_TX_D, SEL_CAN0_3), 13698c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_21, ETH_RX_ER_B, SEL_ETH_1), 13708c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_26_24, SSI_SDATA1, SEL_SSI1_0), 13718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_26_24, HSCIF1_HRX_B, SEL_HSCIF1_1), 13728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_26_24, VI1_DATA1), 13738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_26_24, ATAWR0_N), 13748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_26_24, ETH_RXD0_B, SEL_ETH_1), 13758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_29_27, SSI_SCK2, SEL_SSI2_0), 13768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_29_27, HSCIF1_HTX_B, SEL_HSCIF1_1), 13778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_29_27, VI1_DATA2), 13788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_29_27, ATAG0_N), 13798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_29_27, ETH_RXD1_B, SEL_ETH_1), 13808c2ecf20Sopenharmony_ci 13818c2ecf20Sopenharmony_ci /* IPSR13 */ 13828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_2_0, SSI_WS2, SEL_SSI2_0), 13838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_2_0, HSCIF1_HCTS_N_B, SEL_HSCIF1_1), 13848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_2_0, SCIFA0_RXD_D, SEL_SCIFA0_3), 13858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_2_0, VI1_DATA3), 13868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_2_0, ATACS00_N), 13878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_2_0, ETH_LINK_B, SEL_ETH_1), 13888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_5_3, SSI_SDATA2, SEL_SSI2_0), 13898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_5_3, HSCIF1_HRTS_N_B, SEL_HSCIF1_1), 13908c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_5_3, SCIFA0_TXD_D, SEL_SCIFA0_3), 13918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_5_3, VI1_DATA4), 13928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_5_3, ATACS10_N), 13938c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_5_3, ETH_REFCLK_B, SEL_ETH_1), 13948c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_8_6, SSI_SCK9, SEL_SSI9_0), 13958c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_8_6, SCIF2_SCK_B, SEL_SCIF2_1), 13968c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_8_6, PWM2_B), 13978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_8_6, VI1_DATA5), 13988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_8_6, EX_WAIT1), 13998c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_8_6, ETH_TXD1_B, SEL_ETH_1), 14008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_11_9, SSI_WS9, SEL_SSI9_0), 14018c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_11_9, SCIF2_RXD_B, SEL_SCIF2_1), 14028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_11_9, I2C3_SCL_E, SEL_I2C03_4), 14038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_11_9, VI1_DATA6), 14048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_11_9, ATARD0_N), 14058c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_11_9, ETH_TX_EN_B, SEL_ETH_1), 14068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_14_12, SSI_SDATA9, SEL_SSI9_0), 14078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_14_12, SCIF2_TXD_B, SEL_SCIF2_1), 14088c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_14_12, I2C3_SDA_E, SEL_I2C03_4), 14098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_14_12, VI1_DATA7), 14108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_14_12, ATADIR0_N), 14118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_14_12, ETH_MAGIC_B, SEL_ETH_1), 14128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_17_15, AUDIO_CLKA, SEL_ADG_0), 14138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_17_15, I2C0_SCL_B, SEL_I2C00_1), 14148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_17_15, SCIFA4_RXD_D, SEL_SCIFA4_3), 14158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_17_15, VI1_CLKENB), 14168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_17_15, TS_SDATA_C, SEL_TSIF0_2), 14178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_17_15, ETH_TXD0_B, SEL_ETH_1), 14188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, AUDIO_CLKB, SEL_ADG_0), 14198c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, I2C0_SDA_B, SEL_I2C00_1), 14208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, SCIFA4_TXD_D, SEL_SCIFA4_3), 14218c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_20_18, VI1_FIELD), 14228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, TS_SCK_C, SEL_TSIF0_2), 14238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, BPFCLK_E, SEL_DARC_4), 14248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_20_18, ETH_MDC_B, SEL_ETH_1), 14258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_21, AUDIO_CLKC, SEL_ADG_0), 14268c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_21, I2C4_SCL_B, SEL_I2C04_1), 14278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_21, SCIFA5_RXD_D, SEL_SCIFA5_3), 14288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_23_21, VI1_HSYNC_N), 14298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_21, TS_SDEN_C, SEL_TSIF0_2), 14308c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_21, FMCLK_E, SEL_DARC_4), 14318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_26_24, AUDIO_CLKOUT, SEL_ADG_0), 14328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_26_24, I2C4_SDA_B, SEL_I2C04_1), 14338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_26_24, SCIFA5_TXD_D, SEL_SCIFA5_3), 14348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_26_24, VI1_VSYNC_N), 14358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_26_24, TS_SPSYNC_C, SEL_TSIF0_2), 14368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_26_24, FMIN_E, SEL_DARC_4), 14378c2ecf20Sopenharmony_ci}; 14388c2ecf20Sopenharmony_ci 14398c2ecf20Sopenharmony_cistatic const struct sh_pfc_pin pinmux_pins[] = { 14408c2ecf20Sopenharmony_ci PINMUX_GPIO_GP_ALL(), 14418c2ecf20Sopenharmony_ci}; 14428c2ecf20Sopenharmony_ci 14438c2ecf20Sopenharmony_ci/* - Audio Clock ------------------------------------------------------------ */ 14448c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_pins[] = { 14458c2ecf20Sopenharmony_ci /* CLKA */ 14468c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), 14478c2ecf20Sopenharmony_ci}; 14488c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_mux[] = { 14498c2ecf20Sopenharmony_ci AUDIO_CLKA_MARK, 14508c2ecf20Sopenharmony_ci}; 14518c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_b_pins[] = { 14528c2ecf20Sopenharmony_ci /* CLKA */ 14538c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), 14548c2ecf20Sopenharmony_ci}; 14558c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_b_mux[] = { 14568c2ecf20Sopenharmony_ci AUDIO_CLKA_B_MARK, 14578c2ecf20Sopenharmony_ci}; 14588c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_c_pins[] = { 14598c2ecf20Sopenharmony_ci /* CLKA */ 14608c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), 14618c2ecf20Sopenharmony_ci}; 14628c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_c_mux[] = { 14638c2ecf20Sopenharmony_ci AUDIO_CLKA_C_MARK, 14648c2ecf20Sopenharmony_ci}; 14658c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_d_pins[] = { 14668c2ecf20Sopenharmony_ci /* CLKA */ 14678c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 0), 14688c2ecf20Sopenharmony_ci}; 14698c2ecf20Sopenharmony_cistatic const unsigned int audio_clka_d_mux[] = { 14708c2ecf20Sopenharmony_ci AUDIO_CLKA_D_MARK, 14718c2ecf20Sopenharmony_ci}; 14728c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_pins[] = { 14738c2ecf20Sopenharmony_ci /* CLKB */ 14748c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 21), 14758c2ecf20Sopenharmony_ci}; 14768c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_mux[] = { 14778c2ecf20Sopenharmony_ci AUDIO_CLKB_MARK, 14788c2ecf20Sopenharmony_ci}; 14798c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_b_pins[] = { 14808c2ecf20Sopenharmony_ci /* CLKB */ 14818c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 26), 14828c2ecf20Sopenharmony_ci}; 14838c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_b_mux[] = { 14848c2ecf20Sopenharmony_ci AUDIO_CLKB_B_MARK, 14858c2ecf20Sopenharmony_ci}; 14868c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_c_pins[] = { 14878c2ecf20Sopenharmony_ci /* CLKB */ 14888c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 21), 14898c2ecf20Sopenharmony_ci}; 14908c2ecf20Sopenharmony_cistatic const unsigned int audio_clkb_c_mux[] = { 14918c2ecf20Sopenharmony_ci AUDIO_CLKB_C_MARK, 14928c2ecf20Sopenharmony_ci}; 14938c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_pins[] = { 14948c2ecf20Sopenharmony_ci /* CLKC */ 14958c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), 14968c2ecf20Sopenharmony_ci}; 14978c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_mux[] = { 14988c2ecf20Sopenharmony_ci AUDIO_CLKC_MARK, 14998c2ecf20Sopenharmony_ci}; 15008c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_b_pins[] = { 15018c2ecf20Sopenharmony_ci /* CLKC */ 15028c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), 15038c2ecf20Sopenharmony_ci}; 15048c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_b_mux[] = { 15058c2ecf20Sopenharmony_ci AUDIO_CLKC_B_MARK, 15068c2ecf20Sopenharmony_ci}; 15078c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_c_pins[] = { 15088c2ecf20Sopenharmony_ci /* CLKC */ 15098c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), 15108c2ecf20Sopenharmony_ci}; 15118c2ecf20Sopenharmony_cistatic const unsigned int audio_clkc_c_mux[] = { 15128c2ecf20Sopenharmony_ci AUDIO_CLKC_C_MARK, 15138c2ecf20Sopenharmony_ci}; 15148c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_pins[] = { 15158c2ecf20Sopenharmony_ci /* CLKOUT */ 15168c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 23), 15178c2ecf20Sopenharmony_ci}; 15188c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_mux[] = { 15198c2ecf20Sopenharmony_ci AUDIO_CLKOUT_MARK, 15208c2ecf20Sopenharmony_ci}; 15218c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_b_pins[] = { 15228c2ecf20Sopenharmony_ci /* CLKOUT */ 15238c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 12), 15248c2ecf20Sopenharmony_ci}; 15258c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_b_mux[] = { 15268c2ecf20Sopenharmony_ci AUDIO_CLKOUT_B_MARK, 15278c2ecf20Sopenharmony_ci}; 15288c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_c_pins[] = { 15298c2ecf20Sopenharmony_ci /* CLKOUT */ 15308c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 23), 15318c2ecf20Sopenharmony_ci}; 15328c2ecf20Sopenharmony_cistatic const unsigned int audio_clkout_c_mux[] = { 15338c2ecf20Sopenharmony_ci AUDIO_CLKOUT_C_MARK, 15348c2ecf20Sopenharmony_ci}; 15358c2ecf20Sopenharmony_ci/* - AVB -------------------------------------------------------------------- */ 15368c2ecf20Sopenharmony_cistatic const unsigned int avb_link_pins[] = { 15378c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 26), 15388c2ecf20Sopenharmony_ci}; 15398c2ecf20Sopenharmony_cistatic const unsigned int avb_link_mux[] = { 15408c2ecf20Sopenharmony_ci AVB_LINK_MARK, 15418c2ecf20Sopenharmony_ci}; 15428c2ecf20Sopenharmony_cistatic const unsigned int avb_magic_pins[] = { 15438c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), 15448c2ecf20Sopenharmony_ci}; 15458c2ecf20Sopenharmony_cistatic const unsigned int avb_magic_mux[] = { 15468c2ecf20Sopenharmony_ci AVB_MAGIC_MARK, 15478c2ecf20Sopenharmony_ci}; 15488c2ecf20Sopenharmony_cistatic const unsigned int avb_phy_int_pins[] = { 15498c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 28), 15508c2ecf20Sopenharmony_ci}; 15518c2ecf20Sopenharmony_cistatic const unsigned int avb_phy_int_mux[] = { 15528c2ecf20Sopenharmony_ci AVB_PHY_INT_MARK, 15538c2ecf20Sopenharmony_ci}; 15548c2ecf20Sopenharmony_cistatic const unsigned int avb_mdio_pins[] = { 15558c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 24), RCAR_GP_PIN(3, 25), 15568c2ecf20Sopenharmony_ci}; 15578c2ecf20Sopenharmony_cistatic const unsigned int avb_mdio_mux[] = { 15588c2ecf20Sopenharmony_ci AVB_MDC_MARK, AVB_MDIO_MARK, 15598c2ecf20Sopenharmony_ci}; 15608c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_pins[] = { 15618c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 15628c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), 15638c2ecf20Sopenharmony_ci 15648c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), 15658c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 5), 15668c2ecf20Sopenharmony_ci 15678c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 0), RCAR_GP_PIN(3, 1), 15688c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), RCAR_GP_PIN(3, 12), RCAR_GP_PIN(3, 22), 15698c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 11), 15708c2ecf20Sopenharmony_ci}; 15718c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_mux[] = { 15728c2ecf20Sopenharmony_ci AVB_TXD0_MARK, AVB_TXD1_MARK, AVB_TXD2_MARK, 15738c2ecf20Sopenharmony_ci AVB_TXD3_MARK, 15748c2ecf20Sopenharmony_ci 15758c2ecf20Sopenharmony_ci AVB_RXD0_MARK, AVB_RXD1_MARK, AVB_RXD2_MARK, 15768c2ecf20Sopenharmony_ci AVB_RXD3_MARK, 15778c2ecf20Sopenharmony_ci 15788c2ecf20Sopenharmony_ci AVB_RX_ER_MARK, AVB_RX_CLK_MARK, AVB_RX_DV_MARK, 15798c2ecf20Sopenharmony_ci AVB_CRS_MARK, AVB_TX_EN_MARK, AVB_TX_ER_MARK, 15808c2ecf20Sopenharmony_ci AVB_TX_CLK_MARK, AVB_COL_MARK, 15818c2ecf20Sopenharmony_ci}; 15828c2ecf20Sopenharmony_cistatic const unsigned int avb_gmii_pins[] = { 15838c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 15848c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), RCAR_GP_PIN(3, 18), RCAR_GP_PIN(3, 19), 15858c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 20), RCAR_GP_PIN(3, 21), 15868c2ecf20Sopenharmony_ci 15878c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), 15888c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 6), RCAR_GP_PIN(3, 7), 15898c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9), 15908c2ecf20Sopenharmony_ci 15918c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 0), RCAR_GP_PIN(3, 1), 15928c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 30), 15938c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 12), RCAR_GP_PIN(3, 22), RCAR_GP_PIN(3, 13), 15948c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), 15958c2ecf20Sopenharmony_ci}; 15968c2ecf20Sopenharmony_cistatic const unsigned int avb_gmii_mux[] = { 15978c2ecf20Sopenharmony_ci AVB_TXD0_MARK, AVB_TXD1_MARK, AVB_TXD2_MARK, 15988c2ecf20Sopenharmony_ci AVB_TXD3_MARK, AVB_TXD4_MARK, AVB_TXD5_MARK, 15998c2ecf20Sopenharmony_ci AVB_TXD6_MARK, AVB_TXD7_MARK, 16008c2ecf20Sopenharmony_ci 16018c2ecf20Sopenharmony_ci AVB_RXD0_MARK, AVB_RXD1_MARK, AVB_RXD2_MARK, 16028c2ecf20Sopenharmony_ci AVB_RXD3_MARK, AVB_RXD4_MARK, AVB_RXD5_MARK, 16038c2ecf20Sopenharmony_ci AVB_RXD6_MARK, AVB_RXD7_MARK, 16048c2ecf20Sopenharmony_ci 16058c2ecf20Sopenharmony_ci AVB_RX_ER_MARK, AVB_RX_CLK_MARK, AVB_RX_DV_MARK, 16068c2ecf20Sopenharmony_ci AVB_CRS_MARK, AVB_GTX_CLK_MARK, AVB_GTXREFCLK_MARK, 16078c2ecf20Sopenharmony_ci AVB_TX_EN_MARK, AVB_TX_ER_MARK, AVB_TX_CLK_MARK, 16088c2ecf20Sopenharmony_ci AVB_COL_MARK, 16098c2ecf20Sopenharmony_ci}; 16108c2ecf20Sopenharmony_ci 16118c2ecf20Sopenharmony_ci/* - CAN -------------------------------------------------------------------- */ 16128c2ecf20Sopenharmony_cistatic const unsigned int can0_data_pins[] = { 16138c2ecf20Sopenharmony_ci /* TX, RX */ 16148c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 15), RCAR_GP_PIN(6, 14), 16158c2ecf20Sopenharmony_ci}; 16168c2ecf20Sopenharmony_ci 16178c2ecf20Sopenharmony_cistatic const unsigned int can0_data_mux[] = { 16188c2ecf20Sopenharmony_ci CAN0_TX_MARK, CAN0_RX_MARK, 16198c2ecf20Sopenharmony_ci}; 16208c2ecf20Sopenharmony_ci 16218c2ecf20Sopenharmony_cistatic const unsigned int can0_data_b_pins[] = { 16228c2ecf20Sopenharmony_ci /* TX, RX */ 16238c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 16), RCAR_GP_PIN(3, 15), 16248c2ecf20Sopenharmony_ci}; 16258c2ecf20Sopenharmony_ci 16268c2ecf20Sopenharmony_cistatic const unsigned int can0_data_b_mux[] = { 16278c2ecf20Sopenharmony_ci CAN0_TX_B_MARK, CAN0_RX_B_MARK, 16288c2ecf20Sopenharmony_ci}; 16298c2ecf20Sopenharmony_ci 16308c2ecf20Sopenharmony_cistatic const unsigned int can0_data_c_pins[] = { 16318c2ecf20Sopenharmony_ci /* TX, RX */ 16328c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 16), 16338c2ecf20Sopenharmony_ci}; 16348c2ecf20Sopenharmony_ci 16358c2ecf20Sopenharmony_cistatic const unsigned int can0_data_c_mux[] = { 16368c2ecf20Sopenharmony_ci CAN0_TX_C_MARK, CAN0_RX_C_MARK, 16378c2ecf20Sopenharmony_ci}; 16388c2ecf20Sopenharmony_ci 16398c2ecf20Sopenharmony_cistatic const unsigned int can0_data_d_pins[] = { 16408c2ecf20Sopenharmony_ci /* TX, RX */ 16418c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 11), 16428c2ecf20Sopenharmony_ci}; 16438c2ecf20Sopenharmony_ci 16448c2ecf20Sopenharmony_cistatic const unsigned int can0_data_d_mux[] = { 16458c2ecf20Sopenharmony_ci CAN0_TX_D_MARK, CAN0_RX_D_MARK, 16468c2ecf20Sopenharmony_ci}; 16478c2ecf20Sopenharmony_ci 16488c2ecf20Sopenharmony_cistatic const unsigned int can1_data_pins[] = { 16498c2ecf20Sopenharmony_ci /* TX, RX */ 16508c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 25), RCAR_GP_PIN(6, 24), 16518c2ecf20Sopenharmony_ci}; 16528c2ecf20Sopenharmony_ci 16538c2ecf20Sopenharmony_cistatic const unsigned int can1_data_mux[] = { 16548c2ecf20Sopenharmony_ci CAN1_TX_MARK, CAN1_RX_MARK, 16558c2ecf20Sopenharmony_ci}; 16568c2ecf20Sopenharmony_ci 16578c2ecf20Sopenharmony_cistatic const unsigned int can1_data_b_pins[] = { 16588c2ecf20Sopenharmony_ci /* TX, RX */ 16598c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 1), 16608c2ecf20Sopenharmony_ci}; 16618c2ecf20Sopenharmony_ci 16628c2ecf20Sopenharmony_cistatic const unsigned int can1_data_b_mux[] = { 16638c2ecf20Sopenharmony_ci CAN1_TX_B_MARK, CAN1_RX_B_MARK, 16648c2ecf20Sopenharmony_ci}; 16658c2ecf20Sopenharmony_ci 16668c2ecf20Sopenharmony_cistatic const unsigned int can1_data_c_pins[] = { 16678c2ecf20Sopenharmony_ci /* TX, RX */ 16688c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 6), RCAR_GP_PIN(5, 5), 16698c2ecf20Sopenharmony_ci}; 16708c2ecf20Sopenharmony_ci 16718c2ecf20Sopenharmony_cistatic const unsigned int can1_data_c_mux[] = { 16728c2ecf20Sopenharmony_ci CAN1_TX_C_MARK, CAN1_RX_C_MARK, 16738c2ecf20Sopenharmony_ci}; 16748c2ecf20Sopenharmony_ci 16758c2ecf20Sopenharmony_cistatic const unsigned int can1_data_d_pins[] = { 16768c2ecf20Sopenharmony_ci /* TX, RX */ 16778c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 31), RCAR_GP_PIN(3, 30), 16788c2ecf20Sopenharmony_ci}; 16798c2ecf20Sopenharmony_ci 16808c2ecf20Sopenharmony_cistatic const unsigned int can1_data_d_mux[] = { 16818c2ecf20Sopenharmony_ci CAN1_TX_D_MARK, CAN1_RX_D_MARK, 16828c2ecf20Sopenharmony_ci}; 16838c2ecf20Sopenharmony_ci 16848c2ecf20Sopenharmony_cistatic const unsigned int can_clk_pins[] = { 16858c2ecf20Sopenharmony_ci /* CLK */ 16868c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 31), 16878c2ecf20Sopenharmony_ci}; 16888c2ecf20Sopenharmony_ci 16898c2ecf20Sopenharmony_cistatic const unsigned int can_clk_mux[] = { 16908c2ecf20Sopenharmony_ci CAN_CLK_MARK, 16918c2ecf20Sopenharmony_ci}; 16928c2ecf20Sopenharmony_ci 16938c2ecf20Sopenharmony_cistatic const unsigned int can_clk_b_pins[] = { 16948c2ecf20Sopenharmony_ci /* CLK */ 16958c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 23), 16968c2ecf20Sopenharmony_ci}; 16978c2ecf20Sopenharmony_ci 16988c2ecf20Sopenharmony_cistatic const unsigned int can_clk_b_mux[] = { 16998c2ecf20Sopenharmony_ci CAN_CLK_B_MARK, 17008c2ecf20Sopenharmony_ci}; 17018c2ecf20Sopenharmony_ci 17028c2ecf20Sopenharmony_cistatic const unsigned int can_clk_c_pins[] = { 17038c2ecf20Sopenharmony_ci /* CLK */ 17048c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), 17058c2ecf20Sopenharmony_ci}; 17068c2ecf20Sopenharmony_ci 17078c2ecf20Sopenharmony_cistatic const unsigned int can_clk_c_mux[] = { 17088c2ecf20Sopenharmony_ci CAN_CLK_C_MARK, 17098c2ecf20Sopenharmony_ci}; 17108c2ecf20Sopenharmony_ci 17118c2ecf20Sopenharmony_cistatic const unsigned int can_clk_d_pins[] = { 17128c2ecf20Sopenharmony_ci /* CLK */ 17138c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 0), 17148c2ecf20Sopenharmony_ci}; 17158c2ecf20Sopenharmony_ci 17168c2ecf20Sopenharmony_cistatic const unsigned int can_clk_d_mux[] = { 17178c2ecf20Sopenharmony_ci CAN_CLK_D_MARK, 17188c2ecf20Sopenharmony_ci}; 17198c2ecf20Sopenharmony_ci 17208c2ecf20Sopenharmony_ci/* - DU --------------------------------------------------------------------- */ 17218c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb666_pins[] = { 17228c2ecf20Sopenharmony_ci /* R[7:2], G[7:2], B[7:2] */ 17238c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 5), 17248c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 2), 17258c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13), 17268c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 12), RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10), 17278c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 22), RCAR_GP_PIN(2, 21), 17288c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 20), RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 18), 17298c2ecf20Sopenharmony_ci}; 17308c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb666_mux[] = { 17318c2ecf20Sopenharmony_ci DU0_DR7_MARK, DU0_DR6_MARK, DU0_DR5_MARK, DU0_DR4_MARK, 17328c2ecf20Sopenharmony_ci DU0_DR3_MARK, DU0_DR2_MARK, 17338c2ecf20Sopenharmony_ci DU0_DG7_MARK, DU0_DG6_MARK, DU0_DG5_MARK, DU0_DG4_MARK, 17348c2ecf20Sopenharmony_ci DU0_DG3_MARK, DU0_DG2_MARK, 17358c2ecf20Sopenharmony_ci DU0_DB7_MARK, DU0_DB6_MARK, DU0_DB5_MARK, DU0_DB4_MARK, 17368c2ecf20Sopenharmony_ci DU0_DB3_MARK, DU0_DB2_MARK, 17378c2ecf20Sopenharmony_ci}; 17388c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb888_pins[] = { 17398c2ecf20Sopenharmony_ci /* R[7:0], G[7:0], B[7:0] */ 17408c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 5), 17418c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 2), 17428c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 1), RCAR_GP_PIN(2, 0), 17438c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13), 17448c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 12), RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10), 17458c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 9), RCAR_GP_PIN(2, 8), 17468c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 22), RCAR_GP_PIN(2, 21), 17478c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 20), RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 18), 17488c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 16), 17498c2ecf20Sopenharmony_ci}; 17508c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb888_mux[] = { 17518c2ecf20Sopenharmony_ci DU0_DR7_MARK, DU0_DR6_MARK, DU0_DR5_MARK, DU0_DR4_MARK, 17528c2ecf20Sopenharmony_ci DU0_DR3_MARK, DU0_DR2_MARK, DU0_DR1_MARK, DU0_DR0_MARK, 17538c2ecf20Sopenharmony_ci DU0_DG7_MARK, DU0_DG6_MARK, DU0_DG5_MARK, DU0_DG4_MARK, 17548c2ecf20Sopenharmony_ci DU0_DG3_MARK, DU0_DG2_MARK, DU0_DG1_MARK, DU0_DG0_MARK, 17558c2ecf20Sopenharmony_ci DU0_DB7_MARK, DU0_DB6_MARK, DU0_DB5_MARK, DU0_DB4_MARK, 17568c2ecf20Sopenharmony_ci DU0_DB3_MARK, DU0_DB2_MARK, DU0_DB1_MARK, DU0_DB0_MARK, 17578c2ecf20Sopenharmony_ci}; 17588c2ecf20Sopenharmony_cistatic const unsigned int du0_clk0_out_pins[] = { 17598c2ecf20Sopenharmony_ci /* DOTCLKOUT0 */ 17608c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 25), 17618c2ecf20Sopenharmony_ci}; 17628c2ecf20Sopenharmony_cistatic const unsigned int du0_clk0_out_mux[] = { 17638c2ecf20Sopenharmony_ci DU0_DOTCLKOUT0_MARK 17648c2ecf20Sopenharmony_ci}; 17658c2ecf20Sopenharmony_cistatic const unsigned int du0_clk1_out_pins[] = { 17668c2ecf20Sopenharmony_ci /* DOTCLKOUT1 */ 17678c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 26), 17688c2ecf20Sopenharmony_ci}; 17698c2ecf20Sopenharmony_cistatic const unsigned int du0_clk1_out_mux[] = { 17708c2ecf20Sopenharmony_ci DU0_DOTCLKOUT1_MARK 17718c2ecf20Sopenharmony_ci}; 17728c2ecf20Sopenharmony_cistatic const unsigned int du0_clk_in_pins[] = { 17738c2ecf20Sopenharmony_ci /* CLKIN */ 17748c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 24), 17758c2ecf20Sopenharmony_ci}; 17768c2ecf20Sopenharmony_cistatic const unsigned int du0_clk_in_mux[] = { 17778c2ecf20Sopenharmony_ci DU0_DOTCLKIN_MARK 17788c2ecf20Sopenharmony_ci}; 17798c2ecf20Sopenharmony_cistatic const unsigned int du0_sync_pins[] = { 17808c2ecf20Sopenharmony_ci /* EXVSYNC/VSYNC, EXHSYNC/HSYNC */ 17818c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 28), RCAR_GP_PIN(2, 27), 17828c2ecf20Sopenharmony_ci}; 17838c2ecf20Sopenharmony_cistatic const unsigned int du0_sync_mux[] = { 17848c2ecf20Sopenharmony_ci DU0_EXVSYNC_DU0_VSYNC_MARK, DU0_EXHSYNC_DU0_HSYNC_MARK 17858c2ecf20Sopenharmony_ci}; 17868c2ecf20Sopenharmony_cistatic const unsigned int du0_oddf_pins[] = { 17878c2ecf20Sopenharmony_ci /* EXODDF/ODDF/DISP/CDE */ 17888c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 29), 17898c2ecf20Sopenharmony_ci}; 17908c2ecf20Sopenharmony_cistatic const unsigned int du0_oddf_mux[] = { 17918c2ecf20Sopenharmony_ci DU0_EXODDF_DU0_ODDF_DISP_CDE_MARK, 17928c2ecf20Sopenharmony_ci}; 17938c2ecf20Sopenharmony_cistatic const unsigned int du0_cde_pins[] = { 17948c2ecf20Sopenharmony_ci /* CDE */ 17958c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 31), 17968c2ecf20Sopenharmony_ci}; 17978c2ecf20Sopenharmony_cistatic const unsigned int du0_cde_mux[] = { 17988c2ecf20Sopenharmony_ci DU0_CDE_MARK, 17998c2ecf20Sopenharmony_ci}; 18008c2ecf20Sopenharmony_cistatic const unsigned int du0_disp_pins[] = { 18018c2ecf20Sopenharmony_ci /* DISP */ 18028c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 30), 18038c2ecf20Sopenharmony_ci}; 18048c2ecf20Sopenharmony_cistatic const unsigned int du0_disp_mux[] = { 18058c2ecf20Sopenharmony_ci DU0_DISP_MARK 18068c2ecf20Sopenharmony_ci}; 18078c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb666_pins[] = { 18088c2ecf20Sopenharmony_ci /* R[7:2], G[7:2], B[7:2] */ 18098c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 7), RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 5), 18108c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2), 18118c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 15), RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 13), 18128c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 12), RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 10), 18138c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 23), RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 21), 18148c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 19), RCAR_GP_PIN(4, 18), 18158c2ecf20Sopenharmony_ci}; 18168c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb666_mux[] = { 18178c2ecf20Sopenharmony_ci DU1_DR7_MARK, DU1_DR6_MARK, DU1_DR5_MARK, DU1_DR4_MARK, 18188c2ecf20Sopenharmony_ci DU1_DR3_MARK, DU1_DR2_MARK, 18198c2ecf20Sopenharmony_ci DU1_DG7_MARK, DU1_DG6_MARK, DU1_DG5_MARK, DU1_DG4_MARK, 18208c2ecf20Sopenharmony_ci DU1_DG3_MARK, DU1_DG2_MARK, 18218c2ecf20Sopenharmony_ci DU1_DB7_MARK, DU1_DB6_MARK, DU1_DB5_MARK, DU1_DB4_MARK, 18228c2ecf20Sopenharmony_ci DU1_DB3_MARK, DU1_DB2_MARK, 18238c2ecf20Sopenharmony_ci}; 18248c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb888_pins[] = { 18258c2ecf20Sopenharmony_ci /* R[7:0], G[7:0], B[7:0] */ 18268c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 7), RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 5), 18278c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2), 18288c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 1), RCAR_GP_PIN(4, 0), 18298c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 15), RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 13), 18308c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 12), RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 10), 18318c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 9), RCAR_GP_PIN(4, 8), 18328c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 23), RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 21), 18338c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 19), RCAR_GP_PIN(4, 18), 18348c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 17), RCAR_GP_PIN(4, 16), 18358c2ecf20Sopenharmony_ci}; 18368c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb888_mux[] = { 18378c2ecf20Sopenharmony_ci DU1_DR7_MARK, DU1_DR6_MARK, DU1_DR5_MARK, DU1_DR4_MARK, 18388c2ecf20Sopenharmony_ci DU1_DR3_MARK, DU1_DR2_MARK, DU1_DR1_MARK, DU1_DR0_MARK, 18398c2ecf20Sopenharmony_ci DU1_DG7_MARK, DU1_DG6_MARK, DU1_DG5_MARK, DU1_DG4_MARK, 18408c2ecf20Sopenharmony_ci DU1_DG3_MARK, DU1_DG2_MARK, DU1_DG1_MARK, DU1_DG0_MARK, 18418c2ecf20Sopenharmony_ci DU1_DB7_MARK, DU1_DB6_MARK, DU1_DB5_MARK, DU1_DB4_MARK, 18428c2ecf20Sopenharmony_ci DU1_DB3_MARK, DU1_DB2_MARK, DU1_DB1_MARK, DU1_DB0_MARK, 18438c2ecf20Sopenharmony_ci}; 18448c2ecf20Sopenharmony_cistatic const unsigned int du1_clk0_out_pins[] = { 18458c2ecf20Sopenharmony_ci /* DOTCLKOUT0 */ 18468c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 25), 18478c2ecf20Sopenharmony_ci}; 18488c2ecf20Sopenharmony_cistatic const unsigned int du1_clk0_out_mux[] = { 18498c2ecf20Sopenharmony_ci DU1_DOTCLKOUT0_MARK 18508c2ecf20Sopenharmony_ci}; 18518c2ecf20Sopenharmony_cistatic const unsigned int du1_clk1_out_pins[] = { 18528c2ecf20Sopenharmony_ci /* DOTCLKOUT1 */ 18538c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 26), 18548c2ecf20Sopenharmony_ci}; 18558c2ecf20Sopenharmony_cistatic const unsigned int du1_clk1_out_mux[] = { 18568c2ecf20Sopenharmony_ci DU1_DOTCLKOUT1_MARK 18578c2ecf20Sopenharmony_ci}; 18588c2ecf20Sopenharmony_cistatic const unsigned int du1_clk_in_pins[] = { 18598c2ecf20Sopenharmony_ci /* DOTCLKIN */ 18608c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 24), 18618c2ecf20Sopenharmony_ci}; 18628c2ecf20Sopenharmony_cistatic const unsigned int du1_clk_in_mux[] = { 18638c2ecf20Sopenharmony_ci DU1_DOTCLKIN_MARK 18648c2ecf20Sopenharmony_ci}; 18658c2ecf20Sopenharmony_cistatic const unsigned int du1_sync_pins[] = { 18668c2ecf20Sopenharmony_ci /* EXVSYNC/VSYNC, EXHSYNC/HSYNC */ 18678c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 28), RCAR_GP_PIN(4, 27), 18688c2ecf20Sopenharmony_ci}; 18698c2ecf20Sopenharmony_cistatic const unsigned int du1_sync_mux[] = { 18708c2ecf20Sopenharmony_ci DU1_EXVSYNC_DU1_VSYNC_MARK, DU1_EXHSYNC_DU1_HSYNC_MARK 18718c2ecf20Sopenharmony_ci}; 18728c2ecf20Sopenharmony_cistatic const unsigned int du1_oddf_pins[] = { 18738c2ecf20Sopenharmony_ci /* EXODDF/ODDF/DISP/CDE */ 18748c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 29), 18758c2ecf20Sopenharmony_ci}; 18768c2ecf20Sopenharmony_cistatic const unsigned int du1_oddf_mux[] = { 18778c2ecf20Sopenharmony_ci DU1_EXODDF_DU1_ODDF_DISP_CDE_MARK, 18788c2ecf20Sopenharmony_ci}; 18798c2ecf20Sopenharmony_cistatic const unsigned int du1_cde_pins[] = { 18808c2ecf20Sopenharmony_ci /* CDE */ 18818c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 31), 18828c2ecf20Sopenharmony_ci}; 18838c2ecf20Sopenharmony_cistatic const unsigned int du1_cde_mux[] = { 18848c2ecf20Sopenharmony_ci DU1_CDE_MARK 18858c2ecf20Sopenharmony_ci}; 18868c2ecf20Sopenharmony_cistatic const unsigned int du1_disp_pins[] = { 18878c2ecf20Sopenharmony_ci /* DISP */ 18888c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 30), 18898c2ecf20Sopenharmony_ci}; 18908c2ecf20Sopenharmony_cistatic const unsigned int du1_disp_mux[] = { 18918c2ecf20Sopenharmony_ci DU1_DISP_MARK 18928c2ecf20Sopenharmony_ci}; 18938c2ecf20Sopenharmony_ci/* - ETH -------------------------------------------------------------------- */ 18948c2ecf20Sopenharmony_cistatic const unsigned int eth_link_pins[] = { 18958c2ecf20Sopenharmony_ci /* LINK */ 18968c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 18), 18978c2ecf20Sopenharmony_ci}; 18988c2ecf20Sopenharmony_cistatic const unsigned int eth_link_mux[] = { 18998c2ecf20Sopenharmony_ci ETH_LINK_MARK, 19008c2ecf20Sopenharmony_ci}; 19018c2ecf20Sopenharmony_cistatic const unsigned int eth_magic_pins[] = { 19028c2ecf20Sopenharmony_ci /* MAGIC */ 19038c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 22), 19048c2ecf20Sopenharmony_ci}; 19058c2ecf20Sopenharmony_cistatic const unsigned int eth_magic_mux[] = { 19068c2ecf20Sopenharmony_ci ETH_MAGIC_MARK, 19078c2ecf20Sopenharmony_ci}; 19088c2ecf20Sopenharmony_cistatic const unsigned int eth_mdio_pins[] = { 19098c2ecf20Sopenharmony_ci /* MDC, MDIO */ 19108c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 24), RCAR_GP_PIN(3, 13), 19118c2ecf20Sopenharmony_ci}; 19128c2ecf20Sopenharmony_cistatic const unsigned int eth_mdio_mux[] = { 19138c2ecf20Sopenharmony_ci ETH_MDC_MARK, ETH_MDIO_MARK, 19148c2ecf20Sopenharmony_ci}; 19158c2ecf20Sopenharmony_cistatic const unsigned int eth_rmii_pins[] = { 19168c2ecf20Sopenharmony_ci /* RXD[0:1], RX_ER, CRS_DV, TXD[0:1], TX_EN, REF_CLK */ 19178c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 16), RCAR_GP_PIN(3, 17), RCAR_GP_PIN(3, 15), 19188c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 20), 19198c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 21), RCAR_GP_PIN(3, 19), 19208c2ecf20Sopenharmony_ci}; 19218c2ecf20Sopenharmony_cistatic const unsigned int eth_rmii_mux[] = { 19228c2ecf20Sopenharmony_ci ETH_RXD0_MARK, ETH_RXD1_MARK, ETH_RX_ER_MARK, ETH_CRS_DV_MARK, 19238c2ecf20Sopenharmony_ci ETH_TXD0_MARK, ETH_TXD1_MARK, ETH_TX_EN_MARK, ETH_REFCLK_MARK, 19248c2ecf20Sopenharmony_ci}; 19258c2ecf20Sopenharmony_cistatic const unsigned int eth_link_b_pins[] = { 19268c2ecf20Sopenharmony_ci /* LINK */ 19278c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 15), 19288c2ecf20Sopenharmony_ci}; 19298c2ecf20Sopenharmony_cistatic const unsigned int eth_link_b_mux[] = { 19308c2ecf20Sopenharmony_ci ETH_LINK_B_MARK, 19318c2ecf20Sopenharmony_ci}; 19328c2ecf20Sopenharmony_cistatic const unsigned int eth_magic_b_pins[] = { 19338c2ecf20Sopenharmony_ci /* MAGIC */ 19348c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 19), 19358c2ecf20Sopenharmony_ci}; 19368c2ecf20Sopenharmony_cistatic const unsigned int eth_magic_b_mux[] = { 19378c2ecf20Sopenharmony_ci ETH_MAGIC_B_MARK, 19388c2ecf20Sopenharmony_ci}; 19398c2ecf20Sopenharmony_cistatic const unsigned int eth_mdio_b_pins[] = { 19408c2ecf20Sopenharmony_ci /* MDC, MDIO */ 19418c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 21), RCAR_GP_PIN(5, 10), 19428c2ecf20Sopenharmony_ci}; 19438c2ecf20Sopenharmony_cistatic const unsigned int eth_mdio_b_mux[] = { 19448c2ecf20Sopenharmony_ci ETH_MDC_B_MARK, ETH_MDIO_B_MARK, 19458c2ecf20Sopenharmony_ci}; 19468c2ecf20Sopenharmony_cistatic const unsigned int eth_rmii_b_pins[] = { 19478c2ecf20Sopenharmony_ci /* RXD[0:1], RX_ER, CRS_DV, TXD[0:1], TX_EN, REF_CLK */ 19488c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14), RCAR_GP_PIN(5, 12), 19498c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 20), RCAR_GP_PIN(5, 17), 19508c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), RCAR_GP_PIN(5, 16), 19518c2ecf20Sopenharmony_ci}; 19528c2ecf20Sopenharmony_cistatic const unsigned int eth_rmii_b_mux[] = { 19538c2ecf20Sopenharmony_ci ETH_RXD0_B_MARK, ETH_RXD1_B_MARK, ETH_RX_ER_B_MARK, ETH_CRS_DV_B_MARK, 19548c2ecf20Sopenharmony_ci ETH_TXD0_B_MARK, ETH_TXD1_B_MARK, ETH_TX_EN_B_MARK, ETH_REFCLK_B_MARK, 19558c2ecf20Sopenharmony_ci}; 19568c2ecf20Sopenharmony_ci/* - HSCIF0 ----------------------------------------------------------------- */ 19578c2ecf20Sopenharmony_cistatic const unsigned int hscif0_data_pins[] = { 19588c2ecf20Sopenharmony_ci /* RX, TX */ 19598c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), RCAR_GP_PIN(3, 26), 19608c2ecf20Sopenharmony_ci}; 19618c2ecf20Sopenharmony_cistatic const unsigned int hscif0_data_mux[] = { 19628c2ecf20Sopenharmony_ci HSCIF0_HRX_MARK, HSCIF0_HTX_MARK, 19638c2ecf20Sopenharmony_ci}; 19648c2ecf20Sopenharmony_cistatic const unsigned int hscif0_clk_pins[] = { 19658c2ecf20Sopenharmony_ci /* SCK */ 19668c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), 19678c2ecf20Sopenharmony_ci}; 19688c2ecf20Sopenharmony_cistatic const unsigned int hscif0_clk_mux[] = { 19698c2ecf20Sopenharmony_ci HSCIF0_HSCK_MARK, 19708c2ecf20Sopenharmony_ci}; 19718c2ecf20Sopenharmony_cistatic const unsigned int hscif0_ctrl_pins[] = { 19728c2ecf20Sopenharmony_ci /* RTS, CTS */ 19738c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 28), RCAR_GP_PIN(3, 27), 19748c2ecf20Sopenharmony_ci}; 19758c2ecf20Sopenharmony_cistatic const unsigned int hscif0_ctrl_mux[] = { 19768c2ecf20Sopenharmony_ci HSCIF0_HRTS_N_MARK, HSCIF0_HCTS_N_MARK, 19778c2ecf20Sopenharmony_ci}; 19788c2ecf20Sopenharmony_cistatic const unsigned int hscif0_data_b_pins[] = { 19798c2ecf20Sopenharmony_ci /* RX, TX */ 19808c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 30), RCAR_GP_PIN(0, 31), 19818c2ecf20Sopenharmony_ci}; 19828c2ecf20Sopenharmony_cistatic const unsigned int hscif0_data_b_mux[] = { 19838c2ecf20Sopenharmony_ci HSCIF0_HRX_B_MARK, HSCIF0_HTX_B_MARK, 19848c2ecf20Sopenharmony_ci}; 19858c2ecf20Sopenharmony_cistatic const unsigned int hscif0_clk_b_pins[] = { 19868c2ecf20Sopenharmony_ci /* SCK */ 19878c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), 19888c2ecf20Sopenharmony_ci}; 19898c2ecf20Sopenharmony_cistatic const unsigned int hscif0_clk_b_mux[] = { 19908c2ecf20Sopenharmony_ci HSCIF0_HSCK_B_MARK, 19918c2ecf20Sopenharmony_ci}; 19928c2ecf20Sopenharmony_ci/* - HSCIF1 ----------------------------------------------------------------- */ 19938c2ecf20Sopenharmony_cistatic const unsigned int hscif1_data_pins[] = { 19948c2ecf20Sopenharmony_ci /* RX, TX */ 19958c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 9), 19968c2ecf20Sopenharmony_ci}; 19978c2ecf20Sopenharmony_cistatic const unsigned int hscif1_data_mux[] = { 19988c2ecf20Sopenharmony_ci HSCIF1_HRX_MARK, HSCIF1_HTX_MARK, 19998c2ecf20Sopenharmony_ci}; 20008c2ecf20Sopenharmony_cistatic const unsigned int hscif1_clk_pins[] = { 20018c2ecf20Sopenharmony_ci /* SCK */ 20028c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 10), 20038c2ecf20Sopenharmony_ci}; 20048c2ecf20Sopenharmony_cistatic const unsigned int hscif1_clk_mux[] = { 20058c2ecf20Sopenharmony_ci HSCIF1_HSCK_MARK, 20068c2ecf20Sopenharmony_ci}; 20078c2ecf20Sopenharmony_cistatic const unsigned int hscif1_ctrl_pins[] = { 20088c2ecf20Sopenharmony_ci /* RTS, CTS */ 20098c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 12), RCAR_GP_PIN(4, 11), 20108c2ecf20Sopenharmony_ci}; 20118c2ecf20Sopenharmony_cistatic const unsigned int hscif1_ctrl_mux[] = { 20128c2ecf20Sopenharmony_ci HSCIF1_HRTS_N_MARK, HSCIF1_HCTS_N_MARK, 20138c2ecf20Sopenharmony_ci}; 20148c2ecf20Sopenharmony_cistatic const unsigned int hscif1_data_b_pins[] = { 20158c2ecf20Sopenharmony_ci /* RX, TX */ 20168c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14), 20178c2ecf20Sopenharmony_ci}; 20188c2ecf20Sopenharmony_cistatic const unsigned int hscif1_data_b_mux[] = { 20198c2ecf20Sopenharmony_ci HSCIF1_HRX_B_MARK, HSCIF1_HTX_B_MARK, 20208c2ecf20Sopenharmony_ci}; 20218c2ecf20Sopenharmony_cistatic const unsigned int hscif1_ctrl_b_pins[] = { 20228c2ecf20Sopenharmony_ci /* RTS, CTS */ 20238c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 16), RCAR_GP_PIN(5, 15), 20248c2ecf20Sopenharmony_ci}; 20258c2ecf20Sopenharmony_cistatic const unsigned int hscif1_ctrl_b_mux[] = { 20268c2ecf20Sopenharmony_ci HSCIF1_HRTS_N_B_MARK, HSCIF1_HCTS_N_B_MARK, 20278c2ecf20Sopenharmony_ci}; 20288c2ecf20Sopenharmony_ci/* - HSCIF2 ----------------------------------------------------------------- */ 20298c2ecf20Sopenharmony_cistatic const unsigned int hscif2_data_pins[] = { 20308c2ecf20Sopenharmony_ci /* RX, TX */ 20318c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 9), 20328c2ecf20Sopenharmony_ci}; 20338c2ecf20Sopenharmony_cistatic const unsigned int hscif2_data_mux[] = { 20348c2ecf20Sopenharmony_ci HSCIF2_HRX_MARK, HSCIF2_HTX_MARK, 20358c2ecf20Sopenharmony_ci}; 20368c2ecf20Sopenharmony_cistatic const unsigned int hscif2_clk_pins[] = { 20378c2ecf20Sopenharmony_ci /* SCK */ 20388c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 10), 20398c2ecf20Sopenharmony_ci}; 20408c2ecf20Sopenharmony_cistatic const unsigned int hscif2_clk_mux[] = { 20418c2ecf20Sopenharmony_ci HSCIF2_HSCK_MARK, 20428c2ecf20Sopenharmony_ci}; 20438c2ecf20Sopenharmony_cistatic const unsigned int hscif2_ctrl_pins[] = { 20448c2ecf20Sopenharmony_ci /* RTS, CTS */ 20458c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 11), 20468c2ecf20Sopenharmony_ci}; 20478c2ecf20Sopenharmony_cistatic const unsigned int hscif2_ctrl_mux[] = { 20488c2ecf20Sopenharmony_ci HSCIF2_HRTS_N_MARK, HSCIF2_HCTS_N_MARK, 20498c2ecf20Sopenharmony_ci}; 20508c2ecf20Sopenharmony_ci/* - I2C0 ------------------------------------------------------------------- */ 20518c2ecf20Sopenharmony_cistatic const unsigned int i2c0_pins[] = { 20528c2ecf20Sopenharmony_ci /* SCL, SDA */ 20538c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 30), RCAR_GP_PIN(3, 31), 20548c2ecf20Sopenharmony_ci}; 20558c2ecf20Sopenharmony_cistatic const unsigned int i2c0_mux[] = { 20568c2ecf20Sopenharmony_ci I2C0_SCL_MARK, I2C0_SDA_MARK, 20578c2ecf20Sopenharmony_ci}; 20588c2ecf20Sopenharmony_cistatic const unsigned int i2c0_b_pins[] = { 20598c2ecf20Sopenharmony_ci /* SCL, SDA */ 20608c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), RCAR_GP_PIN(5, 21), 20618c2ecf20Sopenharmony_ci}; 20628c2ecf20Sopenharmony_cistatic const unsigned int i2c0_b_mux[] = { 20638c2ecf20Sopenharmony_ci I2C0_SCL_B_MARK, I2C0_SDA_B_MARK, 20648c2ecf20Sopenharmony_ci}; 20658c2ecf20Sopenharmony_cistatic const unsigned int i2c0_c_pins[] = { 20668c2ecf20Sopenharmony_ci /* SCL, SDA */ 20678c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), RCAR_GP_PIN(3, 12), 20688c2ecf20Sopenharmony_ci}; 20698c2ecf20Sopenharmony_cistatic const unsigned int i2c0_c_mux[] = { 20708c2ecf20Sopenharmony_ci I2C0_SCL_C_MARK, I2C0_SDA_C_MARK, 20718c2ecf20Sopenharmony_ci}; 20728c2ecf20Sopenharmony_cistatic const unsigned int i2c0_d_pins[] = { 20738c2ecf20Sopenharmony_ci /* SCL, SDA */ 20748c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 6), 20758c2ecf20Sopenharmony_ci}; 20768c2ecf20Sopenharmony_cistatic const unsigned int i2c0_d_mux[] = { 20778c2ecf20Sopenharmony_ci I2C0_SCL_D_MARK, I2C0_SDA_D_MARK, 20788c2ecf20Sopenharmony_ci}; 20798c2ecf20Sopenharmony_cistatic const unsigned int i2c0_e_pins[] = { 20808c2ecf20Sopenharmony_ci /* SCL, SDA */ 20818c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), 20828c2ecf20Sopenharmony_ci}; 20838c2ecf20Sopenharmony_cistatic const unsigned int i2c0_e_mux[] = { 20848c2ecf20Sopenharmony_ci I2C0_SCL_E_MARK, I2C0_SDA_E_MARK, 20858c2ecf20Sopenharmony_ci}; 20868c2ecf20Sopenharmony_ci/* - I2C1 ------------------------------------------------------------------- */ 20878c2ecf20Sopenharmony_cistatic const unsigned int i2c1_pins[] = { 20888c2ecf20Sopenharmony_ci /* SCL, SDA */ 20898c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), RCAR_GP_PIN(4, 1), 20908c2ecf20Sopenharmony_ci}; 20918c2ecf20Sopenharmony_cistatic const unsigned int i2c1_mux[] = { 20928c2ecf20Sopenharmony_ci I2C1_SCL_MARK, I2C1_SDA_MARK, 20938c2ecf20Sopenharmony_ci}; 20948c2ecf20Sopenharmony_cistatic const unsigned int i2c1_b_pins[] = { 20958c2ecf20Sopenharmony_ci /* SCL, SDA */ 20968c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 9), 20978c2ecf20Sopenharmony_ci}; 20988c2ecf20Sopenharmony_cistatic const unsigned int i2c1_b_mux[] = { 20998c2ecf20Sopenharmony_ci I2C1_SCL_B_MARK, I2C1_SDA_B_MARK, 21008c2ecf20Sopenharmony_ci}; 21018c2ecf20Sopenharmony_cistatic const unsigned int i2c1_c_pins[] = { 21028c2ecf20Sopenharmony_ci /* SCL, SDA */ 21038c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), RCAR_GP_PIN(3, 26), 21048c2ecf20Sopenharmony_ci}; 21058c2ecf20Sopenharmony_cistatic const unsigned int i2c1_c_mux[] = { 21068c2ecf20Sopenharmony_ci I2C1_SCL_C_MARK, I2C1_SDA_C_MARK, 21078c2ecf20Sopenharmony_ci}; 21088c2ecf20Sopenharmony_cistatic const unsigned int i2c1_d_pins[] = { 21098c2ecf20Sopenharmony_ci /* SCL, SDA */ 21108c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 12), 21118c2ecf20Sopenharmony_ci}; 21128c2ecf20Sopenharmony_cistatic const unsigned int i2c1_d_mux[] = { 21138c2ecf20Sopenharmony_ci I2C1_SCL_D_MARK, I2C1_SDA_D_MARK, 21148c2ecf20Sopenharmony_ci}; 21158c2ecf20Sopenharmony_cistatic const unsigned int i2c1_e_pins[] = { 21168c2ecf20Sopenharmony_ci /* SCL, SDA */ 21178c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 21), 21188c2ecf20Sopenharmony_ci}; 21198c2ecf20Sopenharmony_cistatic const unsigned int i2c1_e_mux[] = { 21208c2ecf20Sopenharmony_ci I2C1_SCL_E_MARK, I2C1_SDA_E_MARK, 21218c2ecf20Sopenharmony_ci}; 21228c2ecf20Sopenharmony_ci/* - I2C2 ------------------------------------------------------------------- */ 21238c2ecf20Sopenharmony_cistatic const unsigned int i2c2_pins[] = { 21248c2ecf20Sopenharmony_ci /* SCL, SDA */ 21258c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 23), 21268c2ecf20Sopenharmony_ci}; 21278c2ecf20Sopenharmony_cistatic const unsigned int i2c2_mux[] = { 21288c2ecf20Sopenharmony_ci I2C2_SCL_MARK, I2C2_SDA_MARK, 21298c2ecf20Sopenharmony_ci}; 21308c2ecf20Sopenharmony_cistatic const unsigned int i2c2_b_pins[] = { 21318c2ecf20Sopenharmony_ci /* SCL, SDA */ 21328c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 24), RCAR_GP_PIN(6, 25), 21338c2ecf20Sopenharmony_ci}; 21348c2ecf20Sopenharmony_cistatic const unsigned int i2c2_b_mux[] = { 21358c2ecf20Sopenharmony_ci I2C2_SCL_B_MARK, I2C2_SDA_B_MARK, 21368c2ecf20Sopenharmony_ci}; 21378c2ecf20Sopenharmony_cistatic const unsigned int i2c2_c_pins[] = { 21388c2ecf20Sopenharmony_ci /* SCL, SDA */ 21398c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3), 21408c2ecf20Sopenharmony_ci}; 21418c2ecf20Sopenharmony_cistatic const unsigned int i2c2_c_mux[] = { 21428c2ecf20Sopenharmony_ci I2C2_SCL_C_MARK, I2C2_SDA_C_MARK, 21438c2ecf20Sopenharmony_ci}; 21448c2ecf20Sopenharmony_cistatic const unsigned int i2c2_d_pins[] = { 21458c2ecf20Sopenharmony_ci /* SCL, SDA */ 21468c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1), 21478c2ecf20Sopenharmony_ci}; 21488c2ecf20Sopenharmony_cistatic const unsigned int i2c2_d_mux[] = { 21498c2ecf20Sopenharmony_ci I2C2_SCL_D_MARK, I2C2_SDA_D_MARK, 21508c2ecf20Sopenharmony_ci}; 21518c2ecf20Sopenharmony_cistatic const unsigned int i2c2_e_pins[] = { 21528c2ecf20Sopenharmony_ci /* SCL, SDA */ 21538c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 16), RCAR_GP_PIN(1, 17), 21548c2ecf20Sopenharmony_ci}; 21558c2ecf20Sopenharmony_cistatic const unsigned int i2c2_e_mux[] = { 21568c2ecf20Sopenharmony_ci I2C2_SCL_E_MARK, I2C2_SDA_E_MARK, 21578c2ecf20Sopenharmony_ci}; 21588c2ecf20Sopenharmony_ci/* - I2C3 ------------------------------------------------------------------- */ 21598c2ecf20Sopenharmony_cistatic const unsigned int i2c3_pins[] = { 21608c2ecf20Sopenharmony_ci /* SCL, SDA */ 21618c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 9), RCAR_GP_PIN(3, 10), 21628c2ecf20Sopenharmony_ci}; 21638c2ecf20Sopenharmony_cistatic const unsigned int i2c3_mux[] = { 21648c2ecf20Sopenharmony_ci I2C3_SCL_MARK, I2C3_SDA_MARK, 21658c2ecf20Sopenharmony_ci}; 21668c2ecf20Sopenharmony_cistatic const unsigned int i2c3_b_pins[] = { 21678c2ecf20Sopenharmony_ci /* SCL, SDA */ 21688c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 3), RCAR_GP_PIN(0, 4), 21698c2ecf20Sopenharmony_ci}; 21708c2ecf20Sopenharmony_cistatic const unsigned int i2c3_b_mux[] = { 21718c2ecf20Sopenharmony_ci I2C3_SCL_B_MARK, I2C3_SDA_B_MARK, 21728c2ecf20Sopenharmony_ci}; 21738c2ecf20Sopenharmony_cistatic const unsigned int i2c3_c_pins[] = { 21748c2ecf20Sopenharmony_ci /* SCL, SDA */ 21758c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 25), RCAR_GP_PIN(4, 26), 21768c2ecf20Sopenharmony_ci}; 21778c2ecf20Sopenharmony_cistatic const unsigned int i2c3_c_mux[] = { 21788c2ecf20Sopenharmony_ci I2C3_SCL_C_MARK, I2C3_SDA_C_MARK, 21798c2ecf20Sopenharmony_ci}; 21808c2ecf20Sopenharmony_cistatic const unsigned int i2c3_d_pins[] = { 21818c2ecf20Sopenharmony_ci /* SCL, SDA */ 21828c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9), 21838c2ecf20Sopenharmony_ci}; 21848c2ecf20Sopenharmony_cistatic const unsigned int i2c3_d_mux[] = { 21858c2ecf20Sopenharmony_ci I2C3_SCL_D_MARK, I2C3_SDA_D_MARK, 21868c2ecf20Sopenharmony_ci}; 21878c2ecf20Sopenharmony_cistatic const unsigned int i2c3_e_pins[] = { 21888c2ecf20Sopenharmony_ci /* SCL, SDA */ 21898c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), RCAR_GP_PIN(5, 19), 21908c2ecf20Sopenharmony_ci}; 21918c2ecf20Sopenharmony_cistatic const unsigned int i2c3_e_mux[] = { 21928c2ecf20Sopenharmony_ci I2C3_SCL_E_MARK, I2C3_SDA_E_MARK, 21938c2ecf20Sopenharmony_ci}; 21948c2ecf20Sopenharmony_ci/* - I2C4 ------------------------------------------------------------------- */ 21958c2ecf20Sopenharmony_cistatic const unsigned int i2c4_pins[] = { 21968c2ecf20Sopenharmony_ci /* SCL, SDA */ 21978c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 9), 21988c2ecf20Sopenharmony_ci}; 21998c2ecf20Sopenharmony_cistatic const unsigned int i2c4_mux[] = { 22008c2ecf20Sopenharmony_ci I2C4_SCL_MARK, I2C4_SDA_MARK, 22018c2ecf20Sopenharmony_ci}; 22028c2ecf20Sopenharmony_cistatic const unsigned int i2c4_b_pins[] = { 22038c2ecf20Sopenharmony_ci /* SCL, SDA */ 22048c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), RCAR_GP_PIN(5, 23), 22058c2ecf20Sopenharmony_ci}; 22068c2ecf20Sopenharmony_cistatic const unsigned int i2c4_b_mux[] = { 22078c2ecf20Sopenharmony_ci I2C4_SCL_B_MARK, I2C4_SDA_B_MARK, 22088c2ecf20Sopenharmony_ci}; 22098c2ecf20Sopenharmony_cistatic const unsigned int i2c4_c_pins[] = { 22108c2ecf20Sopenharmony_ci /* SCL, SDA */ 22118c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 28), RCAR_GP_PIN(4, 29), 22128c2ecf20Sopenharmony_ci}; 22138c2ecf20Sopenharmony_cistatic const unsigned int i2c4_c_mux[] = { 22148c2ecf20Sopenharmony_ci I2C4_SCL_C_MARK, I2C4_SDA_C_MARK, 22158c2ecf20Sopenharmony_ci}; 22168c2ecf20Sopenharmony_cistatic const unsigned int i2c4_d_pins[] = { 22178c2ecf20Sopenharmony_ci /* SCL, SDA */ 22188c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 16), RCAR_GP_PIN(2, 17), 22198c2ecf20Sopenharmony_ci}; 22208c2ecf20Sopenharmony_cistatic const unsigned int i2c4_d_mux[] = { 22218c2ecf20Sopenharmony_ci I2C4_SCL_D_MARK, I2C4_SDA_D_MARK, 22228c2ecf20Sopenharmony_ci}; 22238c2ecf20Sopenharmony_cistatic const unsigned int i2c4_e_pins[] = { 22248c2ecf20Sopenharmony_ci /* SCL, SDA */ 22258c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 24), 22268c2ecf20Sopenharmony_ci}; 22278c2ecf20Sopenharmony_cistatic const unsigned int i2c4_e_mux[] = { 22288c2ecf20Sopenharmony_ci I2C4_SCL_E_MARK, I2C4_SDA_E_MARK, 22298c2ecf20Sopenharmony_ci}; 22308c2ecf20Sopenharmony_ci/* - I2C5 ------------------------------------------------------------------- */ 22318c2ecf20Sopenharmony_cistatic const unsigned int i2c5_pins[] = { 22328c2ecf20Sopenharmony_ci /* SCL, SDA */ 22338c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 15), 22348c2ecf20Sopenharmony_ci}; 22358c2ecf20Sopenharmony_cistatic const unsigned int i2c5_mux[] = { 22368c2ecf20Sopenharmony_ci I2C5_SCL_MARK, I2C5_SDA_MARK, 22378c2ecf20Sopenharmony_ci}; 22388c2ecf20Sopenharmony_cistatic const unsigned int i2c5_b_pins[] = { 22398c2ecf20Sopenharmony_ci /* SCL, SDA */ 22408c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 15), 22418c2ecf20Sopenharmony_ci}; 22428c2ecf20Sopenharmony_cistatic const unsigned int i2c5_b_mux[] = { 22438c2ecf20Sopenharmony_ci I2C5_SCL_B_MARK, I2C5_SDA_B_MARK, 22448c2ecf20Sopenharmony_ci}; 22458c2ecf20Sopenharmony_cistatic const unsigned int i2c5_c_pins[] = { 22468c2ecf20Sopenharmony_ci /* SCL, SDA */ 22478c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 31), RCAR_GP_PIN(4, 30), 22488c2ecf20Sopenharmony_ci}; 22498c2ecf20Sopenharmony_cistatic const unsigned int i2c5_c_mux[] = { 22508c2ecf20Sopenharmony_ci I2C5_SCL_C_MARK, I2C5_SDA_C_MARK, 22518c2ecf20Sopenharmony_ci}; 22528c2ecf20Sopenharmony_cistatic const unsigned int i2c5_d_pins[] = { 22538c2ecf20Sopenharmony_ci /* SCL, SDA */ 22548c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 14), 22558c2ecf20Sopenharmony_ci}; 22568c2ecf20Sopenharmony_cistatic const unsigned int i2c5_d_mux[] = { 22578c2ecf20Sopenharmony_ci I2C5_SCL_D_MARK, I2C5_SDA_D_MARK, 22588c2ecf20Sopenharmony_ci}; 22598c2ecf20Sopenharmony_ci/* - INTC ------------------------------------------------------------------- */ 22608c2ecf20Sopenharmony_cistatic const unsigned int intc_irq0_pins[] = { 22618c2ecf20Sopenharmony_ci /* IRQ0 */ 22628c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), 22638c2ecf20Sopenharmony_ci}; 22648c2ecf20Sopenharmony_cistatic const unsigned int intc_irq0_mux[] = { 22658c2ecf20Sopenharmony_ci IRQ0_MARK, 22668c2ecf20Sopenharmony_ci}; 22678c2ecf20Sopenharmony_cistatic const unsigned int intc_irq1_pins[] = { 22688c2ecf20Sopenharmony_ci /* IRQ1 */ 22698c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 18), 22708c2ecf20Sopenharmony_ci}; 22718c2ecf20Sopenharmony_cistatic const unsigned int intc_irq1_mux[] = { 22728c2ecf20Sopenharmony_ci IRQ1_MARK, 22738c2ecf20Sopenharmony_ci}; 22748c2ecf20Sopenharmony_cistatic const unsigned int intc_irq2_pins[] = { 22758c2ecf20Sopenharmony_ci /* IRQ2 */ 22768c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 19), 22778c2ecf20Sopenharmony_ci}; 22788c2ecf20Sopenharmony_cistatic const unsigned int intc_irq2_mux[] = { 22798c2ecf20Sopenharmony_ci IRQ2_MARK, 22808c2ecf20Sopenharmony_ci}; 22818c2ecf20Sopenharmony_cistatic const unsigned int intc_irq3_pins[] = { 22828c2ecf20Sopenharmony_ci /* IRQ3 */ 22838c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 7), 22848c2ecf20Sopenharmony_ci}; 22858c2ecf20Sopenharmony_cistatic const unsigned int intc_irq3_mux[] = { 22868c2ecf20Sopenharmony_ci IRQ3_MARK, 22878c2ecf20Sopenharmony_ci}; 22888c2ecf20Sopenharmony_cistatic const unsigned int intc_irq4_pins[] = { 22898c2ecf20Sopenharmony_ci /* IRQ4 */ 22908c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 0), 22918c2ecf20Sopenharmony_ci}; 22928c2ecf20Sopenharmony_cistatic const unsigned int intc_irq4_mux[] = { 22938c2ecf20Sopenharmony_ci IRQ4_MARK, 22948c2ecf20Sopenharmony_ci}; 22958c2ecf20Sopenharmony_cistatic const unsigned int intc_irq5_pins[] = { 22968c2ecf20Sopenharmony_ci /* IRQ5 */ 22978c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 1), 22988c2ecf20Sopenharmony_ci}; 22998c2ecf20Sopenharmony_cistatic const unsigned int intc_irq5_mux[] = { 23008c2ecf20Sopenharmony_ci IRQ5_MARK, 23018c2ecf20Sopenharmony_ci}; 23028c2ecf20Sopenharmony_cistatic const unsigned int intc_irq6_pins[] = { 23038c2ecf20Sopenharmony_ci /* IRQ6 */ 23048c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 10), 23058c2ecf20Sopenharmony_ci}; 23068c2ecf20Sopenharmony_cistatic const unsigned int intc_irq6_mux[] = { 23078c2ecf20Sopenharmony_ci IRQ6_MARK, 23088c2ecf20Sopenharmony_ci}; 23098c2ecf20Sopenharmony_cistatic const unsigned int intc_irq7_pins[] = { 23108c2ecf20Sopenharmony_ci /* IRQ7 */ 23118c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 15), 23128c2ecf20Sopenharmony_ci}; 23138c2ecf20Sopenharmony_cistatic const unsigned int intc_irq7_mux[] = { 23148c2ecf20Sopenharmony_ci IRQ7_MARK, 23158c2ecf20Sopenharmony_ci}; 23168c2ecf20Sopenharmony_cistatic const unsigned int intc_irq8_pins[] = { 23178c2ecf20Sopenharmony_ci /* IRQ8 */ 23188c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 0), 23198c2ecf20Sopenharmony_ci}; 23208c2ecf20Sopenharmony_cistatic const unsigned int intc_irq8_mux[] = { 23218c2ecf20Sopenharmony_ci IRQ8_MARK, 23228c2ecf20Sopenharmony_ci}; 23238c2ecf20Sopenharmony_cistatic const unsigned int intc_irq9_pins[] = { 23248c2ecf20Sopenharmony_ci /* IRQ9 */ 23258c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 10), 23268c2ecf20Sopenharmony_ci}; 23278c2ecf20Sopenharmony_cistatic const unsigned int intc_irq9_mux[] = { 23288c2ecf20Sopenharmony_ci IRQ9_MARK, 23298c2ecf20Sopenharmony_ci}; 23308c2ecf20Sopenharmony_ci/* - MMCIF ------------------------------------------------------------------ */ 23318c2ecf20Sopenharmony_cistatic const unsigned int mmc_data1_pins[] = { 23328c2ecf20Sopenharmony_ci /* D[0] */ 23338c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 18), 23348c2ecf20Sopenharmony_ci}; 23358c2ecf20Sopenharmony_cistatic const unsigned int mmc_data1_mux[] = { 23368c2ecf20Sopenharmony_ci MMC_D0_MARK, 23378c2ecf20Sopenharmony_ci}; 23388c2ecf20Sopenharmony_cistatic const unsigned int mmc_data4_pins[] = { 23398c2ecf20Sopenharmony_ci /* D[0:3] */ 23408c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 18), RCAR_GP_PIN(6, 19), 23418c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 20), RCAR_GP_PIN(6, 21), 23428c2ecf20Sopenharmony_ci}; 23438c2ecf20Sopenharmony_cistatic const unsigned int mmc_data4_mux[] = { 23448c2ecf20Sopenharmony_ci MMC_D0_MARK, MMC_D1_MARK, MMC_D2_MARK, MMC_D3_MARK, 23458c2ecf20Sopenharmony_ci}; 23468c2ecf20Sopenharmony_cistatic const unsigned int mmc_data8_pins[] = { 23478c2ecf20Sopenharmony_ci /* D[0:7] */ 23488c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 18), RCAR_GP_PIN(6, 19), 23498c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 20), RCAR_GP_PIN(6, 21), 23508c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 22), RCAR_GP_PIN(6, 23), 23518c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 24), RCAR_GP_PIN(6, 25), 23528c2ecf20Sopenharmony_ci}; 23538c2ecf20Sopenharmony_cistatic const unsigned int mmc_data8_mux[] = { 23548c2ecf20Sopenharmony_ci MMC_D0_MARK, MMC_D1_MARK, MMC_D2_MARK, MMC_D3_MARK, 23558c2ecf20Sopenharmony_ci MMC_D4_MARK, MMC_D5_MARK, MMC_D6_MARK, MMC_D7_MARK, 23568c2ecf20Sopenharmony_ci}; 23578c2ecf20Sopenharmony_cistatic const unsigned int mmc_ctrl_pins[] = { 23588c2ecf20Sopenharmony_ci /* CLK, CMD */ 23598c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 16), RCAR_GP_PIN(6, 17), 23608c2ecf20Sopenharmony_ci}; 23618c2ecf20Sopenharmony_cistatic const unsigned int mmc_ctrl_mux[] = { 23628c2ecf20Sopenharmony_ci MMC_CLK_MARK, MMC_CMD_MARK, 23638c2ecf20Sopenharmony_ci}; 23648c2ecf20Sopenharmony_ci/* - MSIOF0 ----------------------------------------------------------------- */ 23658c2ecf20Sopenharmony_cistatic const unsigned int msiof0_clk_pins[] = { 23668c2ecf20Sopenharmony_ci /* SCK */ 23678c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), 23688c2ecf20Sopenharmony_ci}; 23698c2ecf20Sopenharmony_cistatic const unsigned int msiof0_clk_mux[] = { 23708c2ecf20Sopenharmony_ci MSIOF0_SCK_MARK, 23718c2ecf20Sopenharmony_ci}; 23728c2ecf20Sopenharmony_cistatic const unsigned int msiof0_sync_pins[] = { 23738c2ecf20Sopenharmony_ci /* SYNC */ 23748c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 5), 23758c2ecf20Sopenharmony_ci}; 23768c2ecf20Sopenharmony_cistatic const unsigned int msiof0_sync_mux[] = { 23778c2ecf20Sopenharmony_ci MSIOF0_SYNC_MARK, 23788c2ecf20Sopenharmony_ci}; 23798c2ecf20Sopenharmony_cistatic const unsigned int msiof0_ss1_pins[] = { 23808c2ecf20Sopenharmony_ci /* SS1 */ 23818c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), 23828c2ecf20Sopenharmony_ci}; 23838c2ecf20Sopenharmony_cistatic const unsigned int msiof0_ss1_mux[] = { 23848c2ecf20Sopenharmony_ci MSIOF0_SS1_MARK, 23858c2ecf20Sopenharmony_ci}; 23868c2ecf20Sopenharmony_cistatic const unsigned int msiof0_ss2_pins[] = { 23878c2ecf20Sopenharmony_ci /* SS2 */ 23888c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 7), 23898c2ecf20Sopenharmony_ci}; 23908c2ecf20Sopenharmony_cistatic const unsigned int msiof0_ss2_mux[] = { 23918c2ecf20Sopenharmony_ci MSIOF0_SS2_MARK, 23928c2ecf20Sopenharmony_ci}; 23938c2ecf20Sopenharmony_cistatic const unsigned int msiof0_rx_pins[] = { 23948c2ecf20Sopenharmony_ci /* RXD */ 23958c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), 23968c2ecf20Sopenharmony_ci}; 23978c2ecf20Sopenharmony_cistatic const unsigned int msiof0_rx_mux[] = { 23988c2ecf20Sopenharmony_ci MSIOF0_RXD_MARK, 23998c2ecf20Sopenharmony_ci}; 24008c2ecf20Sopenharmony_cistatic const unsigned int msiof0_tx_pins[] = { 24018c2ecf20Sopenharmony_ci /* TXD */ 24028c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 3), 24038c2ecf20Sopenharmony_ci}; 24048c2ecf20Sopenharmony_cistatic const unsigned int msiof0_tx_mux[] = { 24058c2ecf20Sopenharmony_ci MSIOF0_TXD_MARK, 24068c2ecf20Sopenharmony_ci}; 24078c2ecf20Sopenharmony_ci/* - MSIOF1 ----------------------------------------------------------------- */ 24088c2ecf20Sopenharmony_cistatic const unsigned int msiof1_clk_pins[] = { 24098c2ecf20Sopenharmony_ci /* SCK */ 24108c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 26), 24118c2ecf20Sopenharmony_ci}; 24128c2ecf20Sopenharmony_cistatic const unsigned int msiof1_clk_mux[] = { 24138c2ecf20Sopenharmony_ci MSIOF1_SCK_MARK, 24148c2ecf20Sopenharmony_ci}; 24158c2ecf20Sopenharmony_cistatic const unsigned int msiof1_sync_pins[] = { 24168c2ecf20Sopenharmony_ci /* SYNC */ 24178c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 27), 24188c2ecf20Sopenharmony_ci}; 24198c2ecf20Sopenharmony_cistatic const unsigned int msiof1_sync_mux[] = { 24208c2ecf20Sopenharmony_ci MSIOF1_SYNC_MARK, 24218c2ecf20Sopenharmony_ci}; 24228c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss1_pins[] = { 24238c2ecf20Sopenharmony_ci /* SS1 */ 24248c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 28), 24258c2ecf20Sopenharmony_ci}; 24268c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss1_mux[] = { 24278c2ecf20Sopenharmony_ci MSIOF1_SS1_MARK, 24288c2ecf20Sopenharmony_ci}; 24298c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss2_pins[] = { 24308c2ecf20Sopenharmony_ci /* SS2 */ 24318c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 29), 24328c2ecf20Sopenharmony_ci}; 24338c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss2_mux[] = { 24348c2ecf20Sopenharmony_ci MSIOF1_SS2_MARK, 24358c2ecf20Sopenharmony_ci}; 24368c2ecf20Sopenharmony_cistatic const unsigned int msiof1_rx_pins[] = { 24378c2ecf20Sopenharmony_ci /* RXD */ 24388c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 24), 24398c2ecf20Sopenharmony_ci}; 24408c2ecf20Sopenharmony_cistatic const unsigned int msiof1_rx_mux[] = { 24418c2ecf20Sopenharmony_ci MSIOF1_RXD_MARK, 24428c2ecf20Sopenharmony_ci}; 24438c2ecf20Sopenharmony_cistatic const unsigned int msiof1_tx_pins[] = { 24448c2ecf20Sopenharmony_ci /* TXD */ 24458c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 25), 24468c2ecf20Sopenharmony_ci}; 24478c2ecf20Sopenharmony_cistatic const unsigned int msiof1_tx_mux[] = { 24488c2ecf20Sopenharmony_ci MSIOF1_TXD_MARK, 24498c2ecf20Sopenharmony_ci}; 24508c2ecf20Sopenharmony_cistatic const unsigned int msiof1_clk_b_pins[] = { 24518c2ecf20Sopenharmony_ci /* SCK */ 24528c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 3), 24538c2ecf20Sopenharmony_ci}; 24548c2ecf20Sopenharmony_cistatic const unsigned int msiof1_clk_b_mux[] = { 24558c2ecf20Sopenharmony_ci MSIOF1_SCK_B_MARK, 24568c2ecf20Sopenharmony_ci}; 24578c2ecf20Sopenharmony_cistatic const unsigned int msiof1_sync_b_pins[] = { 24588c2ecf20Sopenharmony_ci /* SYNC */ 24598c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 4), 24608c2ecf20Sopenharmony_ci}; 24618c2ecf20Sopenharmony_cistatic const unsigned int msiof1_sync_b_mux[] = { 24628c2ecf20Sopenharmony_ci MSIOF1_SYNC_B_MARK, 24638c2ecf20Sopenharmony_ci}; 24648c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss1_b_pins[] = { 24658c2ecf20Sopenharmony_ci /* SS1 */ 24668c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 5), 24678c2ecf20Sopenharmony_ci}; 24688c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss1_b_mux[] = { 24698c2ecf20Sopenharmony_ci MSIOF1_SS1_B_MARK, 24708c2ecf20Sopenharmony_ci}; 24718c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss2_b_pins[] = { 24728c2ecf20Sopenharmony_ci /* SS2 */ 24738c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 6), 24748c2ecf20Sopenharmony_ci}; 24758c2ecf20Sopenharmony_cistatic const unsigned int msiof1_ss2_b_mux[] = { 24768c2ecf20Sopenharmony_ci MSIOF1_SS2_B_MARK, 24778c2ecf20Sopenharmony_ci}; 24788c2ecf20Sopenharmony_cistatic const unsigned int msiof1_rx_b_pins[] = { 24798c2ecf20Sopenharmony_ci /* RXD */ 24808c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 1), 24818c2ecf20Sopenharmony_ci}; 24828c2ecf20Sopenharmony_cistatic const unsigned int msiof1_rx_b_mux[] = { 24838c2ecf20Sopenharmony_ci MSIOF1_RXD_B_MARK, 24848c2ecf20Sopenharmony_ci}; 24858c2ecf20Sopenharmony_cistatic const unsigned int msiof1_tx_b_pins[] = { 24868c2ecf20Sopenharmony_ci /* TXD */ 24878c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 2), 24888c2ecf20Sopenharmony_ci}; 24898c2ecf20Sopenharmony_cistatic const unsigned int msiof1_tx_b_mux[] = { 24908c2ecf20Sopenharmony_ci MSIOF1_TXD_B_MARK, 24918c2ecf20Sopenharmony_ci}; 24928c2ecf20Sopenharmony_ci/* - MSIOF2 ----------------------------------------------------------------- */ 24938c2ecf20Sopenharmony_cistatic const unsigned int msiof2_clk_pins[] = { 24948c2ecf20Sopenharmony_ci /* SCK */ 24958c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), 24968c2ecf20Sopenharmony_ci}; 24978c2ecf20Sopenharmony_cistatic const unsigned int msiof2_clk_mux[] = { 24988c2ecf20Sopenharmony_ci MSIOF2_SCK_MARK, 24998c2ecf20Sopenharmony_ci}; 25008c2ecf20Sopenharmony_cistatic const unsigned int msiof2_sync_pins[] = { 25018c2ecf20Sopenharmony_ci /* SYNC */ 25028c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 1), 25038c2ecf20Sopenharmony_ci}; 25048c2ecf20Sopenharmony_cistatic const unsigned int msiof2_sync_mux[] = { 25058c2ecf20Sopenharmony_ci MSIOF2_SYNC_MARK, 25068c2ecf20Sopenharmony_ci}; 25078c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss1_pins[] = { 25088c2ecf20Sopenharmony_ci /* SS1 */ 25098c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 2), 25108c2ecf20Sopenharmony_ci}; 25118c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss1_mux[] = { 25128c2ecf20Sopenharmony_ci MSIOF2_SS1_MARK, 25138c2ecf20Sopenharmony_ci}; 25148c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss2_pins[] = { 25158c2ecf20Sopenharmony_ci /* SS2 */ 25168c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 3), 25178c2ecf20Sopenharmony_ci}; 25188c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss2_mux[] = { 25198c2ecf20Sopenharmony_ci MSIOF2_SS2_MARK, 25208c2ecf20Sopenharmony_ci}; 25218c2ecf20Sopenharmony_cistatic const unsigned int msiof2_rx_pins[] = { 25228c2ecf20Sopenharmony_ci /* RXD */ 25238c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 30), 25248c2ecf20Sopenharmony_ci}; 25258c2ecf20Sopenharmony_cistatic const unsigned int msiof2_rx_mux[] = { 25268c2ecf20Sopenharmony_ci MSIOF2_RXD_MARK, 25278c2ecf20Sopenharmony_ci}; 25288c2ecf20Sopenharmony_cistatic const unsigned int msiof2_tx_pins[] = { 25298c2ecf20Sopenharmony_ci /* TXD */ 25308c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 31), 25318c2ecf20Sopenharmony_ci}; 25328c2ecf20Sopenharmony_cistatic const unsigned int msiof2_tx_mux[] = { 25338c2ecf20Sopenharmony_ci MSIOF2_TXD_MARK, 25348c2ecf20Sopenharmony_ci}; 25358c2ecf20Sopenharmony_cistatic const unsigned int msiof2_clk_b_pins[] = { 25368c2ecf20Sopenharmony_ci /* SCK */ 25378c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 15), 25388c2ecf20Sopenharmony_ci}; 25398c2ecf20Sopenharmony_cistatic const unsigned int msiof2_clk_b_mux[] = { 25408c2ecf20Sopenharmony_ci MSIOF2_SCK_B_MARK, 25418c2ecf20Sopenharmony_ci}; 25428c2ecf20Sopenharmony_cistatic const unsigned int msiof2_sync_b_pins[] = { 25438c2ecf20Sopenharmony_ci /* SYNC */ 25448c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 16), 25458c2ecf20Sopenharmony_ci}; 25468c2ecf20Sopenharmony_cistatic const unsigned int msiof2_sync_b_mux[] = { 25478c2ecf20Sopenharmony_ci MSIOF2_SYNC_B_MARK, 25488c2ecf20Sopenharmony_ci}; 25498c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss1_b_pins[] = { 25508c2ecf20Sopenharmony_ci /* SS1 */ 25518c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), 25528c2ecf20Sopenharmony_ci}; 25538c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss1_b_mux[] = { 25548c2ecf20Sopenharmony_ci MSIOF2_SS1_B_MARK, 25558c2ecf20Sopenharmony_ci}; 25568c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss2_b_pins[] = { 25578c2ecf20Sopenharmony_ci /* SS2 */ 25588c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 18), 25598c2ecf20Sopenharmony_ci}; 25608c2ecf20Sopenharmony_cistatic const unsigned int msiof2_ss2_b_mux[] = { 25618c2ecf20Sopenharmony_ci MSIOF2_SS2_B_MARK, 25628c2ecf20Sopenharmony_ci}; 25638c2ecf20Sopenharmony_cistatic const unsigned int msiof2_rx_b_pins[] = { 25648c2ecf20Sopenharmony_ci /* RXD */ 25658c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), 25668c2ecf20Sopenharmony_ci}; 25678c2ecf20Sopenharmony_cistatic const unsigned int msiof2_rx_b_mux[] = { 25688c2ecf20Sopenharmony_ci MSIOF2_RXD_B_MARK, 25698c2ecf20Sopenharmony_ci}; 25708c2ecf20Sopenharmony_cistatic const unsigned int msiof2_tx_b_pins[] = { 25718c2ecf20Sopenharmony_ci /* TXD */ 25728c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 14), 25738c2ecf20Sopenharmony_ci}; 25748c2ecf20Sopenharmony_cistatic const unsigned int msiof2_tx_b_mux[] = { 25758c2ecf20Sopenharmony_ci MSIOF2_TXD_B_MARK, 25768c2ecf20Sopenharmony_ci}; 25778c2ecf20Sopenharmony_ci/* - PWM -------------------------------------------------------------------- */ 25788c2ecf20Sopenharmony_cistatic const unsigned int pwm0_pins[] = { 25798c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 14), 25808c2ecf20Sopenharmony_ci}; 25818c2ecf20Sopenharmony_cistatic const unsigned int pwm0_mux[] = { 25828c2ecf20Sopenharmony_ci PWM0_MARK, 25838c2ecf20Sopenharmony_ci}; 25848c2ecf20Sopenharmony_cistatic const unsigned int pwm0_b_pins[] = { 25858c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 3), 25868c2ecf20Sopenharmony_ci}; 25878c2ecf20Sopenharmony_cistatic const unsigned int pwm0_b_mux[] = { 25888c2ecf20Sopenharmony_ci PWM0_B_MARK, 25898c2ecf20Sopenharmony_ci}; 25908c2ecf20Sopenharmony_cistatic const unsigned int pwm1_pins[] = { 25918c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 5), 25928c2ecf20Sopenharmony_ci}; 25938c2ecf20Sopenharmony_cistatic const unsigned int pwm1_mux[] = { 25948c2ecf20Sopenharmony_ci PWM1_MARK, 25958c2ecf20Sopenharmony_ci}; 25968c2ecf20Sopenharmony_cistatic const unsigned int pwm1_b_pins[] = { 25978c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 10), 25988c2ecf20Sopenharmony_ci}; 25998c2ecf20Sopenharmony_cistatic const unsigned int pwm1_b_mux[] = { 26008c2ecf20Sopenharmony_ci PWM1_B_MARK, 26018c2ecf20Sopenharmony_ci}; 26028c2ecf20Sopenharmony_cistatic const unsigned int pwm1_c_pins[] = { 26038c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 18), 26048c2ecf20Sopenharmony_ci}; 26058c2ecf20Sopenharmony_cistatic const unsigned int pwm1_c_mux[] = { 26068c2ecf20Sopenharmony_ci PWM1_C_MARK, 26078c2ecf20Sopenharmony_ci}; 26088c2ecf20Sopenharmony_cistatic const unsigned int pwm2_pins[] = { 26098c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 10), 26108c2ecf20Sopenharmony_ci}; 26118c2ecf20Sopenharmony_cistatic const unsigned int pwm2_mux[] = { 26128c2ecf20Sopenharmony_ci PWM2_MARK, 26138c2ecf20Sopenharmony_ci}; 26148c2ecf20Sopenharmony_cistatic const unsigned int pwm2_b_pins[] = { 26158c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), 26168c2ecf20Sopenharmony_ci}; 26178c2ecf20Sopenharmony_cistatic const unsigned int pwm2_b_mux[] = { 26188c2ecf20Sopenharmony_ci PWM2_B_MARK, 26198c2ecf20Sopenharmony_ci}; 26208c2ecf20Sopenharmony_cistatic const unsigned int pwm2_c_pins[] = { 26218c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 13), 26228c2ecf20Sopenharmony_ci}; 26238c2ecf20Sopenharmony_cistatic const unsigned int pwm2_c_mux[] = { 26248c2ecf20Sopenharmony_ci PWM2_C_MARK, 26258c2ecf20Sopenharmony_ci}; 26268c2ecf20Sopenharmony_cistatic const unsigned int pwm3_pins[] = { 26278c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 13), 26288c2ecf20Sopenharmony_ci}; 26298c2ecf20Sopenharmony_cistatic const unsigned int pwm3_mux[] = { 26308c2ecf20Sopenharmony_ci PWM3_MARK, 26318c2ecf20Sopenharmony_ci}; 26328c2ecf20Sopenharmony_cistatic const unsigned int pwm3_b_pins[] = { 26338c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 16), 26348c2ecf20Sopenharmony_ci}; 26358c2ecf20Sopenharmony_cistatic const unsigned int pwm3_b_mux[] = { 26368c2ecf20Sopenharmony_ci PWM3_B_MARK, 26378c2ecf20Sopenharmony_ci}; 26388c2ecf20Sopenharmony_cistatic const unsigned int pwm4_pins[] = { 26398c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 3), 26408c2ecf20Sopenharmony_ci}; 26418c2ecf20Sopenharmony_cistatic const unsigned int pwm4_mux[] = { 26428c2ecf20Sopenharmony_ci PWM4_MARK, 26438c2ecf20Sopenharmony_ci}; 26448c2ecf20Sopenharmony_cistatic const unsigned int pwm4_b_pins[] = { 26458c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 21), 26468c2ecf20Sopenharmony_ci}; 26478c2ecf20Sopenharmony_cistatic const unsigned int pwm4_b_mux[] = { 26488c2ecf20Sopenharmony_ci PWM4_B_MARK, 26498c2ecf20Sopenharmony_ci}; 26508c2ecf20Sopenharmony_cistatic const unsigned int pwm5_pins[] = { 26518c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 30), 26528c2ecf20Sopenharmony_ci}; 26538c2ecf20Sopenharmony_cistatic const unsigned int pwm5_mux[] = { 26548c2ecf20Sopenharmony_ci PWM5_MARK, 26558c2ecf20Sopenharmony_ci}; 26568c2ecf20Sopenharmony_cistatic const unsigned int pwm5_b_pins[] = { 26578c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), 26588c2ecf20Sopenharmony_ci}; 26598c2ecf20Sopenharmony_cistatic const unsigned int pwm5_b_mux[] = { 26608c2ecf20Sopenharmony_ci PWM5_B_MARK, 26618c2ecf20Sopenharmony_ci}; 26628c2ecf20Sopenharmony_cistatic const unsigned int pwm5_c_pins[] = { 26638c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 10), 26648c2ecf20Sopenharmony_ci}; 26658c2ecf20Sopenharmony_cistatic const unsigned int pwm5_c_mux[] = { 26668c2ecf20Sopenharmony_ci PWM5_C_MARK, 26678c2ecf20Sopenharmony_ci}; 26688c2ecf20Sopenharmony_cistatic const unsigned int pwm6_pins[] = { 26698c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 8), 26708c2ecf20Sopenharmony_ci}; 26718c2ecf20Sopenharmony_cistatic const unsigned int pwm6_mux[] = { 26728c2ecf20Sopenharmony_ci PWM6_MARK, 26738c2ecf20Sopenharmony_ci}; 26748c2ecf20Sopenharmony_cistatic const unsigned int pwm6_b_pins[] = { 26758c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 7), 26768c2ecf20Sopenharmony_ci}; 26778c2ecf20Sopenharmony_cistatic const unsigned int pwm6_b_mux[] = { 26788c2ecf20Sopenharmony_ci PWM6_B_MARK, 26798c2ecf20Sopenharmony_ci}; 26808c2ecf20Sopenharmony_ci/* - QSPI ------------------------------------------------------------------- */ 26818c2ecf20Sopenharmony_cistatic const unsigned int qspi_ctrl_pins[] = { 26828c2ecf20Sopenharmony_ci /* SPCLK, SSL */ 26838c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 9), 26848c2ecf20Sopenharmony_ci}; 26858c2ecf20Sopenharmony_cistatic const unsigned int qspi_ctrl_mux[] = { 26868c2ecf20Sopenharmony_ci SPCLK_MARK, SSL_MARK, 26878c2ecf20Sopenharmony_ci}; 26888c2ecf20Sopenharmony_cistatic const unsigned int qspi_data2_pins[] = { 26898c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1 */ 26908c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 5), RCAR_GP_PIN(1, 6), 26918c2ecf20Sopenharmony_ci}; 26928c2ecf20Sopenharmony_cistatic const unsigned int qspi_data2_mux[] = { 26938c2ecf20Sopenharmony_ci MOSI_IO0_MARK, MISO_IO1_MARK, 26948c2ecf20Sopenharmony_ci}; 26958c2ecf20Sopenharmony_cistatic const unsigned int qspi_data4_pins[] = { 26968c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1, IO2, IO3 */ 26978c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 5), RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7), 26988c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 8), 26998c2ecf20Sopenharmony_ci}; 27008c2ecf20Sopenharmony_cistatic const unsigned int qspi_data4_mux[] = { 27018c2ecf20Sopenharmony_ci MOSI_IO0_MARK, MISO_IO1_MARK, IO2_MARK, IO3_MARK, 27028c2ecf20Sopenharmony_ci}; 27038c2ecf20Sopenharmony_ci/* - SCIF0 ------------------------------------------------------------------ */ 27048c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_pins[] = { 27058c2ecf20Sopenharmony_ci /* RX, TX */ 27068c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 24), RCAR_GP_PIN(6, 25), 27078c2ecf20Sopenharmony_ci}; 27088c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_mux[] = { 27098c2ecf20Sopenharmony_ci SCIF0_RXD_MARK, SCIF0_TXD_MARK, 27108c2ecf20Sopenharmony_ci}; 27118c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_b_pins[] = { 27128c2ecf20Sopenharmony_ci /* RX, TX */ 27138c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), RCAR_GP_PIN(3, 12), 27148c2ecf20Sopenharmony_ci}; 27158c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_b_mux[] = { 27168c2ecf20Sopenharmony_ci SCIF0_RXD_B_MARK, SCIF0_TXD_B_MARK, 27178c2ecf20Sopenharmony_ci}; 27188c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_c_pins[] = { 27198c2ecf20Sopenharmony_ci /* RX, TX */ 27208c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 30), RCAR_GP_PIN(3, 31), 27218c2ecf20Sopenharmony_ci}; 27228c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_c_mux[] = { 27238c2ecf20Sopenharmony_ci SCIF0_RXD_C_MARK, SCIF0_TXD_C_MARK, 27248c2ecf20Sopenharmony_ci}; 27258c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_d_pins[] = { 27268c2ecf20Sopenharmony_ci /* RX, TX */ 27278c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), 27288c2ecf20Sopenharmony_ci}; 27298c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_d_mux[] = { 27308c2ecf20Sopenharmony_ci SCIF0_RXD_D_MARK, SCIF0_TXD_D_MARK, 27318c2ecf20Sopenharmony_ci}; 27328c2ecf20Sopenharmony_ci/* - SCIF1 ------------------------------------------------------------------ */ 27338c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_pins[] = { 27348c2ecf20Sopenharmony_ci /* RX, TX */ 27358c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 15), 27368c2ecf20Sopenharmony_ci}; 27378c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_mux[] = { 27388c2ecf20Sopenharmony_ci SCIF1_RXD_MARK, SCIF1_TXD_MARK, 27398c2ecf20Sopenharmony_ci}; 27408c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_pins[] = { 27418c2ecf20Sopenharmony_ci /* SCK */ 27428c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 13), 27438c2ecf20Sopenharmony_ci}; 27448c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_mux[] = { 27458c2ecf20Sopenharmony_ci SCIF1_SCK_MARK, 27468c2ecf20Sopenharmony_ci}; 27478c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_b_pins[] = { 27488c2ecf20Sopenharmony_ci /* RX, TX */ 27498c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 12), 27508c2ecf20Sopenharmony_ci}; 27518c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_b_mux[] = { 27528c2ecf20Sopenharmony_ci SCIF1_RXD_B_MARK, SCIF1_TXD_B_MARK, 27538c2ecf20Sopenharmony_ci}; 27548c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_b_pins[] = { 27558c2ecf20Sopenharmony_ci /* SCK */ 27568c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 10), 27578c2ecf20Sopenharmony_ci}; 27588c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_b_mux[] = { 27598c2ecf20Sopenharmony_ci SCIF1_SCK_B_MARK, 27608c2ecf20Sopenharmony_ci}; 27618c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_c_pins[] = { 27628c2ecf20Sopenharmony_ci /* RX, TX */ 27638c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 12), 27648c2ecf20Sopenharmony_ci}; 27658c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_c_mux[] = { 27668c2ecf20Sopenharmony_ci SCIF1_RXD_C_MARK, SCIF1_TXD_C_MARK, 27678c2ecf20Sopenharmony_ci}; 27688c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_c_pins[] = { 27698c2ecf20Sopenharmony_ci /* SCK */ 27708c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 10), 27718c2ecf20Sopenharmony_ci}; 27728c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_c_mux[] = { 27738c2ecf20Sopenharmony_ci SCIF1_SCK_C_MARK, 27748c2ecf20Sopenharmony_ci}; 27758c2ecf20Sopenharmony_ci/* - SCIF2 ------------------------------------------------------------------ */ 27768c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_pins[] = { 27778c2ecf20Sopenharmony_ci /* RX, TX */ 27788c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 17), 27798c2ecf20Sopenharmony_ci}; 27808c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_mux[] = { 27818c2ecf20Sopenharmony_ci SCIF2_RXD_MARK, SCIF2_TXD_MARK, 27828c2ecf20Sopenharmony_ci}; 27838c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_pins[] = { 27848c2ecf20Sopenharmony_ci /* SCK */ 27858c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 18), 27868c2ecf20Sopenharmony_ci}; 27878c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_mux[] = { 27888c2ecf20Sopenharmony_ci SCIF2_SCK_MARK, 27898c2ecf20Sopenharmony_ci}; 27908c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_b_pins[] = { 27918c2ecf20Sopenharmony_ci /* RX, TX */ 27928c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), RCAR_GP_PIN(5, 19), 27938c2ecf20Sopenharmony_ci}; 27948c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_b_mux[] = { 27958c2ecf20Sopenharmony_ci SCIF2_RXD_B_MARK, SCIF2_TXD_B_MARK, 27968c2ecf20Sopenharmony_ci}; 27978c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_b_pins[] = { 27988c2ecf20Sopenharmony_ci /* SCK */ 27998c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), 28008c2ecf20Sopenharmony_ci}; 28018c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_b_mux[] = { 28028c2ecf20Sopenharmony_ci SCIF2_SCK_B_MARK, 28038c2ecf20Sopenharmony_ci}; 28048c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_c_pins[] = { 28058c2ecf20Sopenharmony_ci /* RX, TX */ 28068c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 20), RCAR_GP_PIN(3, 21), 28078c2ecf20Sopenharmony_ci}; 28088c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_c_mux[] = { 28098c2ecf20Sopenharmony_ci SCIF2_RXD_C_MARK, SCIF2_TXD_C_MARK, 28108c2ecf20Sopenharmony_ci}; 28118c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_c_pins[] = { 28128c2ecf20Sopenharmony_ci /* SCK */ 28138c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 19), 28148c2ecf20Sopenharmony_ci}; 28158c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_c_mux[] = { 28168c2ecf20Sopenharmony_ci SCIF2_SCK_C_MARK, 28178c2ecf20Sopenharmony_ci}; 28188c2ecf20Sopenharmony_ci/* - SCIF3 ------------------------------------------------------------------ */ 28198c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_pins[] = { 28208c2ecf20Sopenharmony_ci /* RX, TX */ 28218c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 21), 28228c2ecf20Sopenharmony_ci}; 28238c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_mux[] = { 28248c2ecf20Sopenharmony_ci SCIF3_RXD_MARK, SCIF3_TXD_MARK, 28258c2ecf20Sopenharmony_ci}; 28268c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_pins[] = { 28278c2ecf20Sopenharmony_ci /* SCK */ 28288c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 19), 28298c2ecf20Sopenharmony_ci}; 28308c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_mux[] = { 28318c2ecf20Sopenharmony_ci SCIF3_SCK_MARK, 28328c2ecf20Sopenharmony_ci}; 28338c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_b_pins[] = { 28348c2ecf20Sopenharmony_ci /* RX, TX */ 28358c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 24), 28368c2ecf20Sopenharmony_ci}; 28378c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_b_mux[] = { 28388c2ecf20Sopenharmony_ci SCIF3_RXD_B_MARK, SCIF3_TXD_B_MARK, 28398c2ecf20Sopenharmony_ci}; 28408c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_b_pins[] = { 28418c2ecf20Sopenharmony_ci /* SCK */ 28428c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 22), 28438c2ecf20Sopenharmony_ci}; 28448c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_b_mux[] = { 28458c2ecf20Sopenharmony_ci SCIF3_SCK_B_MARK, 28468c2ecf20Sopenharmony_ci}; 28478c2ecf20Sopenharmony_ci/* - SCIF4 ------------------------------------------------------------------ */ 28488c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_pins[] = { 28498c2ecf20Sopenharmony_ci /* RX, TX */ 28508c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), RCAR_GP_PIN(4, 1), 28518c2ecf20Sopenharmony_ci}; 28528c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_mux[] = { 28538c2ecf20Sopenharmony_ci SCIF4_RXD_MARK, SCIF4_TXD_MARK, 28548c2ecf20Sopenharmony_ci}; 28558c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_b_pins[] = { 28568c2ecf20Sopenharmony_ci /* RX, TX */ 28578c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 6), 28588c2ecf20Sopenharmony_ci}; 28598c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_b_mux[] = { 28608c2ecf20Sopenharmony_ci SCIF4_RXD_B_MARK, SCIF4_TXD_B_MARK, 28618c2ecf20Sopenharmony_ci}; 28628c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_c_pins[] = { 28638c2ecf20Sopenharmony_ci /* RX, TX */ 28648c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 15), 28658c2ecf20Sopenharmony_ci}; 28668c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_c_mux[] = { 28678c2ecf20Sopenharmony_ci SCIF4_RXD_C_MARK, SCIF4_TXD_C_MARK, 28688c2ecf20Sopenharmony_ci}; 28698c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_d_pins[] = { 28708c2ecf20Sopenharmony_ci /* RX, TX */ 28718c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), RCAR_GP_PIN(3, 18), 28728c2ecf20Sopenharmony_ci}; 28738c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_d_mux[] = { 28748c2ecf20Sopenharmony_ci SCIF4_RXD_D_MARK, SCIF4_TXD_D_MARK, 28758c2ecf20Sopenharmony_ci}; 28768c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_e_pins[] = { 28778c2ecf20Sopenharmony_ci /* RX, TX */ 28788c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 1), RCAR_GP_PIN(1, 2), 28798c2ecf20Sopenharmony_ci}; 28808c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_e_mux[] = { 28818c2ecf20Sopenharmony_ci SCIF4_RXD_E_MARK, SCIF4_TXD_E_MARK, 28828c2ecf20Sopenharmony_ci}; 28838c2ecf20Sopenharmony_ci/* - SCIF5 ------------------------------------------------------------------ */ 28848c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_pins[] = { 28858c2ecf20Sopenharmony_ci /* RX, TX */ 28868c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3), 28878c2ecf20Sopenharmony_ci}; 28888c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_mux[] = { 28898c2ecf20Sopenharmony_ci SCIF5_RXD_MARK, SCIF5_TXD_MARK, 28908c2ecf20Sopenharmony_ci}; 28918c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_b_pins[] = { 28928c2ecf20Sopenharmony_ci /* RX, TX */ 28938c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 3), RCAR_GP_PIN(0, 4), 28948c2ecf20Sopenharmony_ci}; 28958c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_b_mux[] = { 28968c2ecf20Sopenharmony_ci SCIF5_RXD_B_MARK, SCIF5_TXD_B_MARK, 28978c2ecf20Sopenharmony_ci}; 28988c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_c_pins[] = { 28998c2ecf20Sopenharmony_ci /* RX, TX */ 29008c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 11), 29018c2ecf20Sopenharmony_ci}; 29028c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_c_mux[] = { 29038c2ecf20Sopenharmony_ci SCIF5_RXD_C_MARK, SCIF5_TXD_C_MARK, 29048c2ecf20Sopenharmony_ci}; 29058c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_d_pins[] = { 29068c2ecf20Sopenharmony_ci /* RX, TX */ 29078c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2), 29088c2ecf20Sopenharmony_ci}; 29098c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_d_mux[] = { 29108c2ecf20Sopenharmony_ci SCIF5_RXD_D_MARK, SCIF5_TXD_D_MARK, 29118c2ecf20Sopenharmony_ci}; 29128c2ecf20Sopenharmony_ci/* - SCIFA0 ----------------------------------------------------------------- */ 29138c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_pins[] = { 29148c2ecf20Sopenharmony_ci /* RXD, TXD */ 29158c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 7), 29168c2ecf20Sopenharmony_ci}; 29178c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_mux[] = { 29188c2ecf20Sopenharmony_ci SCIFA0_RXD_MARK, SCIFA0_TXD_MARK, 29198c2ecf20Sopenharmony_ci}; 29208c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_b_pins[] = { 29218c2ecf20Sopenharmony_ci /* RXD, TXD */ 29228c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 24), RCAR_GP_PIN(0, 25), 29238c2ecf20Sopenharmony_ci}; 29248c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_b_mux[] = { 29258c2ecf20Sopenharmony_ci SCIFA0_RXD_B_MARK, SCIFA0_TXD_B_MARK 29268c2ecf20Sopenharmony_ci}; 29278c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_c_pins[] = { 29288c2ecf20Sopenharmony_ci /* RXD, TXD */ 29298c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9), 29308c2ecf20Sopenharmony_ci}; 29318c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_c_mux[] = { 29328c2ecf20Sopenharmony_ci SCIFA0_RXD_C_MARK, SCIFA0_TXD_C_MARK 29338c2ecf20Sopenharmony_ci}; 29348c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_d_pins[] = { 29358c2ecf20Sopenharmony_ci /* RXD, TXD */ 29368c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16), 29378c2ecf20Sopenharmony_ci}; 29388c2ecf20Sopenharmony_cistatic const unsigned int scifa0_data_d_mux[] = { 29398c2ecf20Sopenharmony_ci SCIFA0_RXD_D_MARK, SCIFA0_TXD_D_MARK 29408c2ecf20Sopenharmony_ci}; 29418c2ecf20Sopenharmony_ci/* - SCIFA1 ----------------------------------------------------------------- */ 29428c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_pins[] = { 29438c2ecf20Sopenharmony_ci /* RXD, TXD */ 29448c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 15), 29458c2ecf20Sopenharmony_ci}; 29468c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_mux[] = { 29478c2ecf20Sopenharmony_ci SCIFA1_RXD_MARK, SCIFA1_TXD_MARK, 29488c2ecf20Sopenharmony_ci}; 29498c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_pins[] = { 29508c2ecf20Sopenharmony_ci /* SCK */ 29518c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 13), 29528c2ecf20Sopenharmony_ci}; 29538c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_mux[] = { 29548c2ecf20Sopenharmony_ci SCIFA1_SCK_MARK, 29558c2ecf20Sopenharmony_ci}; 29568c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_b_pins[] = { 29578c2ecf20Sopenharmony_ci /* RXD, TXD */ 29588c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 28), RCAR_GP_PIN(4, 29), 29598c2ecf20Sopenharmony_ci}; 29608c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_b_mux[] = { 29618c2ecf20Sopenharmony_ci SCIFA1_RXD_B_MARK, SCIFA1_TXD_B_MARK, 29628c2ecf20Sopenharmony_ci}; 29638c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_b_pins[] = { 29648c2ecf20Sopenharmony_ci /* SCK */ 29658c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 27), 29668c2ecf20Sopenharmony_ci}; 29678c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_b_mux[] = { 29688c2ecf20Sopenharmony_ci SCIFA1_SCK_B_MARK, 29698c2ecf20Sopenharmony_ci}; 29708c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_c_pins[] = { 29718c2ecf20Sopenharmony_ci /* RXD, TXD */ 29728c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 6), 29738c2ecf20Sopenharmony_ci}; 29748c2ecf20Sopenharmony_cistatic const unsigned int scifa1_data_c_mux[] = { 29758c2ecf20Sopenharmony_ci SCIFA1_RXD_C_MARK, SCIFA1_TXD_C_MARK, 29768c2ecf20Sopenharmony_ci}; 29778c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_c_pins[] = { 29788c2ecf20Sopenharmony_ci /* SCK */ 29798c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 4), 29808c2ecf20Sopenharmony_ci}; 29818c2ecf20Sopenharmony_cistatic const unsigned int scifa1_clk_c_mux[] = { 29828c2ecf20Sopenharmony_ci SCIFA1_SCK_C_MARK, 29838c2ecf20Sopenharmony_ci}; 29848c2ecf20Sopenharmony_ci/* - SCIFA2 ----------------------------------------------------------------- */ 29858c2ecf20Sopenharmony_cistatic const unsigned int scifa2_data_pins[] = { 29868c2ecf20Sopenharmony_ci /* RXD, TXD */ 29878c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 16), RCAR_GP_PIN(1, 17), 29888c2ecf20Sopenharmony_ci}; 29898c2ecf20Sopenharmony_cistatic const unsigned int scifa2_data_mux[] = { 29908c2ecf20Sopenharmony_ci SCIFA2_RXD_MARK, SCIFA2_TXD_MARK, 29918c2ecf20Sopenharmony_ci}; 29928c2ecf20Sopenharmony_cistatic const unsigned int scifa2_clk_pins[] = { 29938c2ecf20Sopenharmony_ci /* SCK */ 29948c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 15), 29958c2ecf20Sopenharmony_ci}; 29968c2ecf20Sopenharmony_cistatic const unsigned int scifa2_clk_mux[] = { 29978c2ecf20Sopenharmony_ci SCIFA2_SCK_MARK, 29988c2ecf20Sopenharmony_ci}; 29998c2ecf20Sopenharmony_cistatic const unsigned int scifa2_data_b_pins[] = { 30008c2ecf20Sopenharmony_ci /* RXD, TXD */ 30018c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 31), RCAR_GP_PIN(5, 0), 30028c2ecf20Sopenharmony_ci}; 30038c2ecf20Sopenharmony_cistatic const unsigned int scifa2_data_b_mux[] = { 30048c2ecf20Sopenharmony_ci SCIFA2_RXD_B_MARK, SCIFA2_TXD_B_MARK, 30058c2ecf20Sopenharmony_ci}; 30068c2ecf20Sopenharmony_cistatic const unsigned int scifa2_clk_b_pins[] = { 30078c2ecf20Sopenharmony_ci /* SCK */ 30088c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 30), 30098c2ecf20Sopenharmony_ci}; 30108c2ecf20Sopenharmony_cistatic const unsigned int scifa2_clk_b_mux[] = { 30118c2ecf20Sopenharmony_ci SCIFA2_SCK_B_MARK, 30128c2ecf20Sopenharmony_ci}; 30138c2ecf20Sopenharmony_ci/* - SCIFA3 ----------------------------------------------------------------- */ 30148c2ecf20Sopenharmony_cistatic const unsigned int scifa3_data_pins[] = { 30158c2ecf20Sopenharmony_ci /* RXD, TXD */ 30168c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 25), RCAR_GP_PIN(4, 26), 30178c2ecf20Sopenharmony_ci}; 30188c2ecf20Sopenharmony_cistatic const unsigned int scifa3_data_mux[] = { 30198c2ecf20Sopenharmony_ci SCIFA3_RXD_MARK, SCIFA3_TXD_MARK, 30208c2ecf20Sopenharmony_ci}; 30218c2ecf20Sopenharmony_cistatic const unsigned int scifa3_clk_pins[] = { 30228c2ecf20Sopenharmony_ci /* SCK */ 30238c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 24), 30248c2ecf20Sopenharmony_ci}; 30258c2ecf20Sopenharmony_cistatic const unsigned int scifa3_clk_mux[] = { 30268c2ecf20Sopenharmony_ci SCIFA3_SCK_MARK, 30278c2ecf20Sopenharmony_ci}; 30288c2ecf20Sopenharmony_cistatic const unsigned int scifa3_data_b_pins[] = { 30298c2ecf20Sopenharmony_ci /* RXD, TXD */ 30308c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 1), RCAR_GP_PIN(0, 2), 30318c2ecf20Sopenharmony_ci}; 30328c2ecf20Sopenharmony_cistatic const unsigned int scifa3_data_b_mux[] = { 30338c2ecf20Sopenharmony_ci SCIFA3_RXD_B_MARK, SCIFA3_TXD_B_MARK, 30348c2ecf20Sopenharmony_ci}; 30358c2ecf20Sopenharmony_cistatic const unsigned int scifa3_clk_b_pins[] = { 30368c2ecf20Sopenharmony_ci /* SCK */ 30378c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 0), 30388c2ecf20Sopenharmony_ci}; 30398c2ecf20Sopenharmony_cistatic const unsigned int scifa3_clk_b_mux[] = { 30408c2ecf20Sopenharmony_ci SCIFA3_SCK_B_MARK, 30418c2ecf20Sopenharmony_ci}; 30428c2ecf20Sopenharmony_ci/* - SCIFA4 ----------------------------------------------------------------- */ 30438c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_pins[] = { 30448c2ecf20Sopenharmony_ci /* RXD, TXD */ 30458c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 12), RCAR_GP_PIN(4, 12), 30468c2ecf20Sopenharmony_ci}; 30478c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_mux[] = { 30488c2ecf20Sopenharmony_ci SCIFA4_RXD_MARK, SCIFA4_TXD_MARK, 30498c2ecf20Sopenharmony_ci}; 30508c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_b_pins[] = { 30518c2ecf20Sopenharmony_ci /* RXD, TXD */ 30528c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 22), RCAR_GP_PIN(0, 23), 30538c2ecf20Sopenharmony_ci}; 30548c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_b_mux[] = { 30558c2ecf20Sopenharmony_ci SCIFA4_RXD_B_MARK, SCIFA4_TXD_B_MARK, 30568c2ecf20Sopenharmony_ci}; 30578c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_c_pins[] = { 30588c2ecf20Sopenharmony_ci /* RXD, TXD */ 30598c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 16), RCAR_GP_PIN(2, 17), 30608c2ecf20Sopenharmony_ci}; 30618c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_c_mux[] = { 30628c2ecf20Sopenharmony_ci SCIFA4_RXD_C_MARK, SCIFA4_TXD_C_MARK, 30638c2ecf20Sopenharmony_ci}; 30648c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_d_pins[] = { 30658c2ecf20Sopenharmony_ci /* RXD, TXD */ 30668c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), RCAR_GP_PIN(5, 21), 30678c2ecf20Sopenharmony_ci}; 30688c2ecf20Sopenharmony_cistatic const unsigned int scifa4_data_d_mux[] = { 30698c2ecf20Sopenharmony_ci SCIFA4_RXD_D_MARK, SCIFA4_TXD_D_MARK, 30708c2ecf20Sopenharmony_ci}; 30718c2ecf20Sopenharmony_ci/* - SCIFA5 ----------------------------------------------------------------- */ 30728c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_pins[] = { 30738c2ecf20Sopenharmony_ci /* RXD, TXD */ 30748c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 23), 30758c2ecf20Sopenharmony_ci}; 30768c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_mux[] = { 30778c2ecf20Sopenharmony_ci SCIFA5_RXD_MARK, SCIFA5_TXD_MARK, 30788c2ecf20Sopenharmony_ci}; 30798c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_b_pins[] = { 30808c2ecf20Sopenharmony_ci /* RXD, TXD */ 30818c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 28), RCAR_GP_PIN(0, 29), 30828c2ecf20Sopenharmony_ci}; 30838c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_b_mux[] = { 30848c2ecf20Sopenharmony_ci SCIFA5_RXD_B_MARK, SCIFA5_TXD_B_MARK, 30858c2ecf20Sopenharmony_ci}; 30868c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_c_pins[] = { 30878c2ecf20Sopenharmony_ci /* RXD, TXD */ 30888c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 9), RCAR_GP_PIN(3, 10), 30898c2ecf20Sopenharmony_ci}; 30908c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_c_mux[] = { 30918c2ecf20Sopenharmony_ci SCIFA5_RXD_C_MARK, SCIFA5_TXD_C_MARK, 30928c2ecf20Sopenharmony_ci}; 30938c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_d_pins[] = { 30948c2ecf20Sopenharmony_ci /* RXD, TXD */ 30958c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), RCAR_GP_PIN(5, 23), 30968c2ecf20Sopenharmony_ci}; 30978c2ecf20Sopenharmony_cistatic const unsigned int scifa5_data_d_mux[] = { 30988c2ecf20Sopenharmony_ci SCIFA5_RXD_D_MARK, SCIFA5_TXD_D_MARK, 30998c2ecf20Sopenharmony_ci}; 31008c2ecf20Sopenharmony_ci/* - SCIFB0 ----------------------------------------------------------------- */ 31018c2ecf20Sopenharmony_cistatic const unsigned int scifb0_data_pins[] = { 31028c2ecf20Sopenharmony_ci /* RXD, TXD */ 31038c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 21), RCAR_GP_PIN(0, 20), 31048c2ecf20Sopenharmony_ci}; 31058c2ecf20Sopenharmony_cistatic const unsigned int scifb0_data_mux[] = { 31068c2ecf20Sopenharmony_ci SCIFB0_RXD_MARK, SCIFB0_TXD_MARK, 31078c2ecf20Sopenharmony_ci}; 31088c2ecf20Sopenharmony_cistatic const unsigned int scifb0_clk_pins[] = { 31098c2ecf20Sopenharmony_ci /* SCK */ 31108c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 19), 31118c2ecf20Sopenharmony_ci}; 31128c2ecf20Sopenharmony_cistatic const unsigned int scifb0_clk_mux[] = { 31138c2ecf20Sopenharmony_ci SCIFB0_SCK_MARK, 31148c2ecf20Sopenharmony_ci}; 31158c2ecf20Sopenharmony_cistatic const unsigned int scifb0_ctrl_pins[] = { 31168c2ecf20Sopenharmony_ci /* RTS, CTS */ 31178c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 23), RCAR_GP_PIN(0, 22), 31188c2ecf20Sopenharmony_ci}; 31198c2ecf20Sopenharmony_cistatic const unsigned int scifb0_ctrl_mux[] = { 31208c2ecf20Sopenharmony_ci SCIFB0_RTS_N_MARK, SCIFB0_CTS_N_MARK, 31218c2ecf20Sopenharmony_ci}; 31228c2ecf20Sopenharmony_ci/* - SCIFB1 ----------------------------------------------------------------- */ 31238c2ecf20Sopenharmony_cistatic const unsigned int scifb1_data_pins[] = { 31248c2ecf20Sopenharmony_ci /* RXD, TXD */ 31258c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 24), RCAR_GP_PIN(0, 17), 31268c2ecf20Sopenharmony_ci}; 31278c2ecf20Sopenharmony_cistatic const unsigned int scifb1_data_mux[] = { 31288c2ecf20Sopenharmony_ci SCIFB1_RXD_MARK, SCIFB1_TXD_MARK, 31298c2ecf20Sopenharmony_ci}; 31308c2ecf20Sopenharmony_cistatic const unsigned int scifb1_clk_pins[] = { 31318c2ecf20Sopenharmony_ci /* SCK */ 31328c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 16), 31338c2ecf20Sopenharmony_ci}; 31348c2ecf20Sopenharmony_cistatic const unsigned int scifb1_clk_mux[] = { 31358c2ecf20Sopenharmony_ci SCIFB1_SCK_MARK, 31368c2ecf20Sopenharmony_ci}; 31378c2ecf20Sopenharmony_ci/* - SCIFB2 ----------------------------------------------------------------- */ 31388c2ecf20Sopenharmony_cistatic const unsigned int scifb2_data_pins[] = { 31398c2ecf20Sopenharmony_ci /* RXD, TXD */ 31408c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 13), RCAR_GP_PIN(1, 14), 31418c2ecf20Sopenharmony_ci}; 31428c2ecf20Sopenharmony_cistatic const unsigned int scifb2_data_mux[] = { 31438c2ecf20Sopenharmony_ci SCIFB2_RXD_MARK, SCIFB2_TXD_MARK, 31448c2ecf20Sopenharmony_ci}; 31458c2ecf20Sopenharmony_cistatic const unsigned int scifb2_clk_pins[] = { 31468c2ecf20Sopenharmony_ci /* SCK */ 31478c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 15), 31488c2ecf20Sopenharmony_ci}; 31498c2ecf20Sopenharmony_cistatic const unsigned int scifb2_clk_mux[] = { 31508c2ecf20Sopenharmony_ci SCIFB2_SCK_MARK, 31518c2ecf20Sopenharmony_ci}; 31528c2ecf20Sopenharmony_cistatic const unsigned int scifb2_ctrl_pins[] = { 31538c2ecf20Sopenharmony_ci /* RTS, CTS */ 31548c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 17), RCAR_GP_PIN(1, 16), 31558c2ecf20Sopenharmony_ci}; 31568c2ecf20Sopenharmony_cistatic const unsigned int scifb2_ctrl_mux[] = { 31578c2ecf20Sopenharmony_ci SCIFB2_RTS_N_MARK, SCIFB2_CTS_N_MARK, 31588c2ecf20Sopenharmony_ci}; 31598c2ecf20Sopenharmony_ci/* - SCIF Clock ------------------------------------------------------------- */ 31608c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_pins[] = { 31618c2ecf20Sopenharmony_ci /* SCIF_CLK */ 31628c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 23), 31638c2ecf20Sopenharmony_ci}; 31648c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_mux[] = { 31658c2ecf20Sopenharmony_ci SCIF_CLK_MARK, 31668c2ecf20Sopenharmony_ci}; 31678c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_b_pins[] = { 31688c2ecf20Sopenharmony_ci /* SCIF_CLK */ 31698c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), 31708c2ecf20Sopenharmony_ci}; 31718c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_b_mux[] = { 31728c2ecf20Sopenharmony_ci SCIF_CLK_B_MARK, 31738c2ecf20Sopenharmony_ci}; 31748c2ecf20Sopenharmony_ci/* - SDHI0 ------------------------------------------------------------------ */ 31758c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data1_pins[] = { 31768c2ecf20Sopenharmony_ci /* D0 */ 31778c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 2), 31788c2ecf20Sopenharmony_ci}; 31798c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data1_mux[] = { 31808c2ecf20Sopenharmony_ci SD0_DATA0_MARK, 31818c2ecf20Sopenharmony_ci}; 31828c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data4_pins[] = { 31838c2ecf20Sopenharmony_ci /* D[0:3] */ 31848c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 2), RCAR_GP_PIN(6, 3), 31858c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 4), RCAR_GP_PIN(6, 5), 31868c2ecf20Sopenharmony_ci}; 31878c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data4_mux[] = { 31888c2ecf20Sopenharmony_ci SD0_DATA0_MARK, SD0_DATA1_MARK, SD0_DATA2_MARK, SD0_DATA3_MARK, 31898c2ecf20Sopenharmony_ci}; 31908c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_ctrl_pins[] = { 31918c2ecf20Sopenharmony_ci /* CLK, CMD */ 31928c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 0), RCAR_GP_PIN(6, 1), 31938c2ecf20Sopenharmony_ci}; 31948c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_ctrl_mux[] = { 31958c2ecf20Sopenharmony_ci SD0_CLK_MARK, SD0_CMD_MARK, 31968c2ecf20Sopenharmony_ci}; 31978c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_cd_pins[] = { 31988c2ecf20Sopenharmony_ci /* CD */ 31998c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 6), 32008c2ecf20Sopenharmony_ci}; 32018c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_cd_mux[] = { 32028c2ecf20Sopenharmony_ci SD0_CD_MARK, 32038c2ecf20Sopenharmony_ci}; 32048c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_wp_pins[] = { 32058c2ecf20Sopenharmony_ci /* WP */ 32068c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 7), 32078c2ecf20Sopenharmony_ci}; 32088c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_wp_mux[] = { 32098c2ecf20Sopenharmony_ci SD0_WP_MARK, 32108c2ecf20Sopenharmony_ci}; 32118c2ecf20Sopenharmony_ci/* - SDHI1 ------------------------------------------------------------------ */ 32128c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data1_pins[] = { 32138c2ecf20Sopenharmony_ci /* D0 */ 32148c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 10), 32158c2ecf20Sopenharmony_ci}; 32168c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data1_mux[] = { 32178c2ecf20Sopenharmony_ci SD1_DATA0_MARK, 32188c2ecf20Sopenharmony_ci}; 32198c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data4_pins[] = { 32208c2ecf20Sopenharmony_ci /* D[0:3] */ 32218c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 10), RCAR_GP_PIN(6, 11), 32228c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 12), RCAR_GP_PIN(6, 13), 32238c2ecf20Sopenharmony_ci}; 32248c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data4_mux[] = { 32258c2ecf20Sopenharmony_ci SD1_DATA0_MARK, SD1_DATA1_MARK, SD1_DATA2_MARK, SD1_DATA3_MARK, 32268c2ecf20Sopenharmony_ci}; 32278c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_ctrl_pins[] = { 32288c2ecf20Sopenharmony_ci /* CLK, CMD */ 32298c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 8), RCAR_GP_PIN(6, 9), 32308c2ecf20Sopenharmony_ci}; 32318c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_ctrl_mux[] = { 32328c2ecf20Sopenharmony_ci SD1_CLK_MARK, SD1_CMD_MARK, 32338c2ecf20Sopenharmony_ci}; 32348c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_cd_pins[] = { 32358c2ecf20Sopenharmony_ci /* CD */ 32368c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 14), 32378c2ecf20Sopenharmony_ci}; 32388c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_cd_mux[] = { 32398c2ecf20Sopenharmony_ci SD1_CD_MARK, 32408c2ecf20Sopenharmony_ci}; 32418c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_wp_pins[] = { 32428c2ecf20Sopenharmony_ci /* WP */ 32438c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 15), 32448c2ecf20Sopenharmony_ci}; 32458c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_wp_mux[] = { 32468c2ecf20Sopenharmony_ci SD1_WP_MARK, 32478c2ecf20Sopenharmony_ci}; 32488c2ecf20Sopenharmony_ci/* - SDHI2 ------------------------------------------------------------------ */ 32498c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data1_pins[] = { 32508c2ecf20Sopenharmony_ci /* D0 */ 32518c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 18), 32528c2ecf20Sopenharmony_ci}; 32538c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data1_mux[] = { 32548c2ecf20Sopenharmony_ci SD2_DATA0_MARK, 32558c2ecf20Sopenharmony_ci}; 32568c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data4_pins[] = { 32578c2ecf20Sopenharmony_ci /* D[0:3] */ 32588c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 18), RCAR_GP_PIN(6, 19), 32598c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 20), RCAR_GP_PIN(6, 21), 32608c2ecf20Sopenharmony_ci}; 32618c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data4_mux[] = { 32628c2ecf20Sopenharmony_ci SD2_DATA0_MARK, SD2_DATA1_MARK, SD2_DATA2_MARK, SD2_DATA3_MARK, 32638c2ecf20Sopenharmony_ci}; 32648c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_ctrl_pins[] = { 32658c2ecf20Sopenharmony_ci /* CLK, CMD */ 32668c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 16), RCAR_GP_PIN(6, 17), 32678c2ecf20Sopenharmony_ci}; 32688c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_ctrl_mux[] = { 32698c2ecf20Sopenharmony_ci SD2_CLK_MARK, SD2_CMD_MARK, 32708c2ecf20Sopenharmony_ci}; 32718c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_cd_pins[] = { 32728c2ecf20Sopenharmony_ci /* CD */ 32738c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 22), 32748c2ecf20Sopenharmony_ci}; 32758c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_cd_mux[] = { 32768c2ecf20Sopenharmony_ci SD2_CD_MARK, 32778c2ecf20Sopenharmony_ci}; 32788c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_wp_pins[] = { 32798c2ecf20Sopenharmony_ci /* WP */ 32808c2ecf20Sopenharmony_ci RCAR_GP_PIN(6, 23), 32818c2ecf20Sopenharmony_ci}; 32828c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_wp_mux[] = { 32838c2ecf20Sopenharmony_ci SD2_WP_MARK, 32848c2ecf20Sopenharmony_ci}; 32858c2ecf20Sopenharmony_ci/* - SSI -------------------------------------------------------------------- */ 32868c2ecf20Sopenharmony_cistatic const unsigned int ssi0_data_pins[] = { 32878c2ecf20Sopenharmony_ci /* SDATA0 */ 32888c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 3), 32898c2ecf20Sopenharmony_ci}; 32908c2ecf20Sopenharmony_cistatic const unsigned int ssi0_data_mux[] = { 32918c2ecf20Sopenharmony_ci SSI_SDATA0_MARK, 32928c2ecf20Sopenharmony_ci}; 32938c2ecf20Sopenharmony_cistatic const unsigned int ssi0129_ctrl_pins[] = { 32948c2ecf20Sopenharmony_ci /* SCK0129, WS0129 */ 32958c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2), 32968c2ecf20Sopenharmony_ci}; 32978c2ecf20Sopenharmony_cistatic const unsigned int ssi0129_ctrl_mux[] = { 32988c2ecf20Sopenharmony_ci SSI_SCK0129_MARK, SSI_WS0129_MARK, 32998c2ecf20Sopenharmony_ci}; 33008c2ecf20Sopenharmony_cistatic const unsigned int ssi1_data_pins[] = { 33018c2ecf20Sopenharmony_ci /* SDATA1 */ 33028c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 13), 33038c2ecf20Sopenharmony_ci}; 33048c2ecf20Sopenharmony_cistatic const unsigned int ssi1_data_mux[] = { 33058c2ecf20Sopenharmony_ci SSI_SDATA1_MARK, 33068c2ecf20Sopenharmony_ci}; 33078c2ecf20Sopenharmony_cistatic const unsigned int ssi1_ctrl_pins[] = { 33088c2ecf20Sopenharmony_ci /* SCK1, WS1 */ 33098c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 12), 33108c2ecf20Sopenharmony_ci}; 33118c2ecf20Sopenharmony_cistatic const unsigned int ssi1_ctrl_mux[] = { 33128c2ecf20Sopenharmony_ci SSI_SCK1_MARK, SSI_WS1_MARK, 33138c2ecf20Sopenharmony_ci}; 33148c2ecf20Sopenharmony_cistatic const unsigned int ssi1_data_b_pins[] = { 33158c2ecf20Sopenharmony_ci /* SDATA1 */ 33168c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 13), 33178c2ecf20Sopenharmony_ci}; 33188c2ecf20Sopenharmony_cistatic const unsigned int ssi1_data_b_mux[] = { 33198c2ecf20Sopenharmony_ci SSI_SDATA1_B_MARK, 33208c2ecf20Sopenharmony_ci}; 33218c2ecf20Sopenharmony_cistatic const unsigned int ssi1_ctrl_b_pins[] = { 33228c2ecf20Sopenharmony_ci /* SCK1, WS1 */ 33238c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 12), 33248c2ecf20Sopenharmony_ci}; 33258c2ecf20Sopenharmony_cistatic const unsigned int ssi1_ctrl_b_mux[] = { 33268c2ecf20Sopenharmony_ci SSI_SCK1_B_MARK, SSI_WS1_B_MARK, 33278c2ecf20Sopenharmony_ci}; 33288c2ecf20Sopenharmony_cistatic const unsigned int ssi2_data_pins[] = { 33298c2ecf20Sopenharmony_ci /* SDATA2 */ 33308c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 16), 33318c2ecf20Sopenharmony_ci}; 33328c2ecf20Sopenharmony_cistatic const unsigned int ssi2_data_mux[] = { 33338c2ecf20Sopenharmony_ci SSI_SDATA2_MARK, 33348c2ecf20Sopenharmony_ci}; 33358c2ecf20Sopenharmony_cistatic const unsigned int ssi2_ctrl_pins[] = { 33368c2ecf20Sopenharmony_ci /* SCK2, WS2 */ 33378c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 14), RCAR_GP_PIN(5, 15), 33388c2ecf20Sopenharmony_ci}; 33398c2ecf20Sopenharmony_cistatic const unsigned int ssi2_ctrl_mux[] = { 33408c2ecf20Sopenharmony_ci SSI_SCK2_MARK, SSI_WS2_MARK, 33418c2ecf20Sopenharmony_ci}; 33428c2ecf20Sopenharmony_cistatic const unsigned int ssi2_data_b_pins[] = { 33438c2ecf20Sopenharmony_ci /* SDATA2 */ 33448c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), 33458c2ecf20Sopenharmony_ci}; 33468c2ecf20Sopenharmony_cistatic const unsigned int ssi2_data_b_mux[] = { 33478c2ecf20Sopenharmony_ci SSI_SDATA2_B_MARK, 33488c2ecf20Sopenharmony_ci}; 33498c2ecf20Sopenharmony_cistatic const unsigned int ssi2_ctrl_b_pins[] = { 33508c2ecf20Sopenharmony_ci /* SCK2, WS2 */ 33518c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 15), 33528c2ecf20Sopenharmony_ci}; 33538c2ecf20Sopenharmony_cistatic const unsigned int ssi2_ctrl_b_mux[] = { 33548c2ecf20Sopenharmony_ci SSI_SCK2_B_MARK, SSI_WS2_B_MARK, 33558c2ecf20Sopenharmony_ci}; 33568c2ecf20Sopenharmony_cistatic const unsigned int ssi3_data_pins[] = { 33578c2ecf20Sopenharmony_ci /* SDATA3 */ 33588c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 6), 33598c2ecf20Sopenharmony_ci}; 33608c2ecf20Sopenharmony_cistatic const unsigned int ssi3_data_mux[] = { 33618c2ecf20Sopenharmony_ci SSI_SDATA3_MARK 33628c2ecf20Sopenharmony_ci}; 33638c2ecf20Sopenharmony_cistatic const unsigned int ssi34_ctrl_pins[] = { 33648c2ecf20Sopenharmony_ci /* SCK34, WS34 */ 33658c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 4), RCAR_GP_PIN(5, 5), 33668c2ecf20Sopenharmony_ci}; 33678c2ecf20Sopenharmony_cistatic const unsigned int ssi34_ctrl_mux[] = { 33688c2ecf20Sopenharmony_ci SSI_SCK34_MARK, SSI_WS34_MARK, 33698c2ecf20Sopenharmony_ci}; 33708c2ecf20Sopenharmony_cistatic const unsigned int ssi4_data_pins[] = { 33718c2ecf20Sopenharmony_ci /* SDATA4 */ 33728c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 9), 33738c2ecf20Sopenharmony_ci}; 33748c2ecf20Sopenharmony_cistatic const unsigned int ssi4_data_mux[] = { 33758c2ecf20Sopenharmony_ci SSI_SDATA4_MARK, 33768c2ecf20Sopenharmony_ci}; 33778c2ecf20Sopenharmony_cistatic const unsigned int ssi4_ctrl_pins[] = { 33788c2ecf20Sopenharmony_ci /* SCK4, WS4 */ 33798c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 7), RCAR_GP_PIN(5, 8), 33808c2ecf20Sopenharmony_ci}; 33818c2ecf20Sopenharmony_cistatic const unsigned int ssi4_ctrl_mux[] = { 33828c2ecf20Sopenharmony_ci SSI_SCK4_MARK, SSI_WS4_MARK, 33838c2ecf20Sopenharmony_ci}; 33848c2ecf20Sopenharmony_cistatic const unsigned int ssi4_data_b_pins[] = { 33858c2ecf20Sopenharmony_ci /* SDATA4 */ 33868c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), 33878c2ecf20Sopenharmony_ci}; 33888c2ecf20Sopenharmony_cistatic const unsigned int ssi4_data_b_mux[] = { 33898c2ecf20Sopenharmony_ci SSI_SDATA4_B_MARK, 33908c2ecf20Sopenharmony_ci}; 33918c2ecf20Sopenharmony_cistatic const unsigned int ssi4_ctrl_b_pins[] = { 33928c2ecf20Sopenharmony_ci /* SCK4, WS4 */ 33938c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 21), 33948c2ecf20Sopenharmony_ci}; 33958c2ecf20Sopenharmony_cistatic const unsigned int ssi4_ctrl_b_mux[] = { 33968c2ecf20Sopenharmony_ci SSI_SCK4_B_MARK, SSI_WS4_B_MARK, 33978c2ecf20Sopenharmony_ci}; 33988c2ecf20Sopenharmony_cistatic const unsigned int ssi5_data_pins[] = { 33998c2ecf20Sopenharmony_ci /* SDATA5 */ 34008c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 26), 34018c2ecf20Sopenharmony_ci}; 34028c2ecf20Sopenharmony_cistatic const unsigned int ssi5_data_mux[] = { 34038c2ecf20Sopenharmony_ci SSI_SDATA5_MARK, 34048c2ecf20Sopenharmony_ci}; 34058c2ecf20Sopenharmony_cistatic const unsigned int ssi5_ctrl_pins[] = { 34068c2ecf20Sopenharmony_ci /* SCK5, WS5 */ 34078c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 24), RCAR_GP_PIN(4, 25), 34088c2ecf20Sopenharmony_ci}; 34098c2ecf20Sopenharmony_cistatic const unsigned int ssi5_ctrl_mux[] = { 34108c2ecf20Sopenharmony_ci SSI_SCK5_MARK, SSI_WS5_MARK, 34118c2ecf20Sopenharmony_ci}; 34128c2ecf20Sopenharmony_cistatic const unsigned int ssi5_data_b_pins[] = { 34138c2ecf20Sopenharmony_ci /* SDATA5 */ 34148c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 21), 34158c2ecf20Sopenharmony_ci}; 34168c2ecf20Sopenharmony_cistatic const unsigned int ssi5_data_b_mux[] = { 34178c2ecf20Sopenharmony_ci SSI_SDATA5_B_MARK, 34188c2ecf20Sopenharmony_ci}; 34198c2ecf20Sopenharmony_cistatic const unsigned int ssi5_ctrl_b_pins[] = { 34208c2ecf20Sopenharmony_ci /* SCK5, WS5 */ 34218c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 19), RCAR_GP_PIN(3, 20), 34228c2ecf20Sopenharmony_ci}; 34238c2ecf20Sopenharmony_cistatic const unsigned int ssi5_ctrl_b_mux[] = { 34248c2ecf20Sopenharmony_ci SSI_SCK5_B_MARK, SSI_WS5_B_MARK, 34258c2ecf20Sopenharmony_ci}; 34268c2ecf20Sopenharmony_cistatic const unsigned int ssi6_data_pins[] = { 34278c2ecf20Sopenharmony_ci /* SDATA6 */ 34288c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 29), 34298c2ecf20Sopenharmony_ci}; 34308c2ecf20Sopenharmony_cistatic const unsigned int ssi6_data_mux[] = { 34318c2ecf20Sopenharmony_ci SSI_SDATA6_MARK, 34328c2ecf20Sopenharmony_ci}; 34338c2ecf20Sopenharmony_cistatic const unsigned int ssi6_ctrl_pins[] = { 34348c2ecf20Sopenharmony_ci /* SCK6, WS6 */ 34358c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 27), RCAR_GP_PIN(4, 28), 34368c2ecf20Sopenharmony_ci}; 34378c2ecf20Sopenharmony_cistatic const unsigned int ssi6_ctrl_mux[] = { 34388c2ecf20Sopenharmony_ci SSI_SCK6_MARK, SSI_WS6_MARK, 34398c2ecf20Sopenharmony_ci}; 34408c2ecf20Sopenharmony_cistatic const unsigned int ssi6_data_b_pins[] = { 34418c2ecf20Sopenharmony_ci /* SDATA6 */ 34428c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 24), 34438c2ecf20Sopenharmony_ci}; 34448c2ecf20Sopenharmony_cistatic const unsigned int ssi6_data_b_mux[] = { 34458c2ecf20Sopenharmony_ci SSI_SDATA6_B_MARK, 34468c2ecf20Sopenharmony_ci}; 34478c2ecf20Sopenharmony_cistatic const unsigned int ssi6_ctrl_b_pins[] = { 34488c2ecf20Sopenharmony_ci /* SCK6, WS6 */ 34498c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 22), RCAR_GP_PIN(3, 23), 34508c2ecf20Sopenharmony_ci}; 34518c2ecf20Sopenharmony_cistatic const unsigned int ssi6_ctrl_b_mux[] = { 34528c2ecf20Sopenharmony_ci SSI_SCK6_B_MARK, SSI_WS6_B_MARK, 34538c2ecf20Sopenharmony_ci}; 34548c2ecf20Sopenharmony_cistatic const unsigned int ssi7_data_pins[] = { 34558c2ecf20Sopenharmony_ci /* SDATA7 */ 34568c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 0), 34578c2ecf20Sopenharmony_ci}; 34588c2ecf20Sopenharmony_cistatic const unsigned int ssi7_data_mux[] = { 34598c2ecf20Sopenharmony_ci SSI_SDATA7_MARK, 34608c2ecf20Sopenharmony_ci}; 34618c2ecf20Sopenharmony_cistatic const unsigned int ssi78_ctrl_pins[] = { 34628c2ecf20Sopenharmony_ci /* SCK78, WS78 */ 34638c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 30), RCAR_GP_PIN(4, 31), 34648c2ecf20Sopenharmony_ci}; 34658c2ecf20Sopenharmony_cistatic const unsigned int ssi78_ctrl_mux[] = { 34668c2ecf20Sopenharmony_ci SSI_SCK78_MARK, SSI_WS78_MARK, 34678c2ecf20Sopenharmony_ci}; 34688c2ecf20Sopenharmony_cistatic const unsigned int ssi7_data_b_pins[] = { 34698c2ecf20Sopenharmony_ci /* SDATA7 */ 34708c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), 34718c2ecf20Sopenharmony_ci}; 34728c2ecf20Sopenharmony_cistatic const unsigned int ssi7_data_b_mux[] = { 34738c2ecf20Sopenharmony_ci SSI_SDATA7_B_MARK, 34748c2ecf20Sopenharmony_ci}; 34758c2ecf20Sopenharmony_cistatic const unsigned int ssi78_ctrl_b_pins[] = { 34768c2ecf20Sopenharmony_ci /* SCK78, WS78 */ 34778c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), RCAR_GP_PIN(3, 26), 34788c2ecf20Sopenharmony_ci}; 34798c2ecf20Sopenharmony_cistatic const unsigned int ssi78_ctrl_b_mux[] = { 34808c2ecf20Sopenharmony_ci SSI_SCK78_B_MARK, SSI_WS78_B_MARK, 34818c2ecf20Sopenharmony_ci}; 34828c2ecf20Sopenharmony_cistatic const unsigned int ssi8_data_pins[] = { 34838c2ecf20Sopenharmony_ci /* SDATA8 */ 34848c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 10), 34858c2ecf20Sopenharmony_ci}; 34868c2ecf20Sopenharmony_cistatic const unsigned int ssi8_data_mux[] = { 34878c2ecf20Sopenharmony_ci SSI_SDATA8_MARK, 34888c2ecf20Sopenharmony_ci}; 34898c2ecf20Sopenharmony_cistatic const unsigned int ssi8_data_b_pins[] = { 34908c2ecf20Sopenharmony_ci /* SDATA8 */ 34918c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 28), 34928c2ecf20Sopenharmony_ci}; 34938c2ecf20Sopenharmony_cistatic const unsigned int ssi8_data_b_mux[] = { 34948c2ecf20Sopenharmony_ci SSI_SDATA8_B_MARK, 34958c2ecf20Sopenharmony_ci}; 34968c2ecf20Sopenharmony_cistatic const unsigned int ssi9_data_pins[] = { 34978c2ecf20Sopenharmony_ci /* SDATA9 */ 34988c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 19), 34998c2ecf20Sopenharmony_ci}; 35008c2ecf20Sopenharmony_cistatic const unsigned int ssi9_data_mux[] = { 35018c2ecf20Sopenharmony_ci SSI_SDATA9_MARK, 35028c2ecf20Sopenharmony_ci}; 35038c2ecf20Sopenharmony_cistatic const unsigned int ssi9_ctrl_pins[] = { 35048c2ecf20Sopenharmony_ci /* SCK9, WS9 */ 35058c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), RCAR_GP_PIN(5, 18), 35068c2ecf20Sopenharmony_ci}; 35078c2ecf20Sopenharmony_cistatic const unsigned int ssi9_ctrl_mux[] = { 35088c2ecf20Sopenharmony_ci SSI_SCK9_MARK, SSI_WS9_MARK, 35098c2ecf20Sopenharmony_ci}; 35108c2ecf20Sopenharmony_cistatic const unsigned int ssi9_data_b_pins[] = { 35118c2ecf20Sopenharmony_ci /* SDATA9 */ 35128c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 19), 35138c2ecf20Sopenharmony_ci}; 35148c2ecf20Sopenharmony_cistatic const unsigned int ssi9_data_b_mux[] = { 35158c2ecf20Sopenharmony_ci SSI_SDATA9_B_MARK, 35168c2ecf20Sopenharmony_ci}; 35178c2ecf20Sopenharmony_cistatic const unsigned int ssi9_ctrl_b_pins[] = { 35188c2ecf20Sopenharmony_ci /* SCK9, WS9 */ 35198c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 17), RCAR_GP_PIN(4, 18), 35208c2ecf20Sopenharmony_ci}; 35218c2ecf20Sopenharmony_cistatic const unsigned int ssi9_ctrl_b_mux[] = { 35228c2ecf20Sopenharmony_ci SSI_SCK9_B_MARK, SSI_WS9_B_MARK, 35238c2ecf20Sopenharmony_ci}; 35248c2ecf20Sopenharmony_ci/* - TPU -------------------------------------------------------------------- */ 35258c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_pins[] = { 35268c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 31), 35278c2ecf20Sopenharmony_ci}; 35288c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_mux[] = { 35298c2ecf20Sopenharmony_ci TPUTO0_MARK, 35308c2ecf20Sopenharmony_ci}; 35318c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_b_pins[] = { 35328c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 30), 35338c2ecf20Sopenharmony_ci}; 35348c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_b_mux[] = { 35358c2ecf20Sopenharmony_ci TPUTO0_B_MARK, 35368c2ecf20Sopenharmony_ci}; 35378c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_c_pins[] = { 35388c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 18), 35398c2ecf20Sopenharmony_ci}; 35408c2ecf20Sopenharmony_cistatic const unsigned int tpu_to0_c_mux[] = { 35418c2ecf20Sopenharmony_ci TPUTO0_C_MARK, 35428c2ecf20Sopenharmony_ci}; 35438c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_pins[] = { 35448c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 9), 35458c2ecf20Sopenharmony_ci}; 35468c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_mux[] = { 35478c2ecf20Sopenharmony_ci TPUTO1_MARK, 35488c2ecf20Sopenharmony_ci}; 35498c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_b_pins[] = { 35508c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), 35518c2ecf20Sopenharmony_ci}; 35528c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_b_mux[] = { 35538c2ecf20Sopenharmony_ci TPUTO1_B_MARK, 35548c2ecf20Sopenharmony_ci}; 35558c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_c_pins[] = { 35568c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), 35578c2ecf20Sopenharmony_ci}; 35588c2ecf20Sopenharmony_cistatic const unsigned int tpu_to1_c_mux[] = { 35598c2ecf20Sopenharmony_ci TPUTO1_C_MARK, 35608c2ecf20Sopenharmony_ci}; 35618c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_pins[] = { 35628c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 3), 35638c2ecf20Sopenharmony_ci}; 35648c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_mux[] = { 35658c2ecf20Sopenharmony_ci TPUTO2_MARK, 35668c2ecf20Sopenharmony_ci}; 35678c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_b_pins[] = { 35688c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), 35698c2ecf20Sopenharmony_ci}; 35708c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_b_mux[] = { 35718c2ecf20Sopenharmony_ci TPUTO2_B_MARK, 35728c2ecf20Sopenharmony_ci}; 35738c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_c_pins[] = { 35748c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 22), 35758c2ecf20Sopenharmony_ci}; 35768c2ecf20Sopenharmony_cistatic const unsigned int tpu_to2_c_mux[] = { 35778c2ecf20Sopenharmony_ci TPUTO2_C_MARK, 35788c2ecf20Sopenharmony_ci}; 35798c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_pins[] = { 35808c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 14), 35818c2ecf20Sopenharmony_ci}; 35828c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_mux[] = { 35838c2ecf20Sopenharmony_ci TPUTO3_MARK, 35848c2ecf20Sopenharmony_ci}; 35858c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_b_pins[] = { 35868c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 13), 35878c2ecf20Sopenharmony_ci}; 35888c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_b_mux[] = { 35898c2ecf20Sopenharmony_ci TPUTO3_B_MARK, 35908c2ecf20Sopenharmony_ci}; 35918c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_c_pins[] = { 35928c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 21), 35938c2ecf20Sopenharmony_ci}; 35948c2ecf20Sopenharmony_cistatic const unsigned int tpu_to3_c_mux[] = { 35958c2ecf20Sopenharmony_ci TPUTO3_C_MARK, 35968c2ecf20Sopenharmony_ci}; 35978c2ecf20Sopenharmony_ci/* - USB0 ------------------------------------------------------------------- */ 35988c2ecf20Sopenharmony_cistatic const unsigned int usb0_pins[] = { 35998c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 24), /* PWEN */ 36008c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 25), /* OVC */ 36018c2ecf20Sopenharmony_ci}; 36028c2ecf20Sopenharmony_cistatic const unsigned int usb0_mux[] = { 36038c2ecf20Sopenharmony_ci USB0_PWEN_MARK, 36048c2ecf20Sopenharmony_ci USB0_OVC_MARK, 36058c2ecf20Sopenharmony_ci}; 36068c2ecf20Sopenharmony_ci/* - USB1 ------------------------------------------------------------------- */ 36078c2ecf20Sopenharmony_cistatic const unsigned int usb1_pins[] = { 36088c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 26), /* PWEN */ 36098c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 27), /* OVC */ 36108c2ecf20Sopenharmony_ci}; 36118c2ecf20Sopenharmony_cistatic const unsigned int usb1_mux[] = { 36128c2ecf20Sopenharmony_ci USB1_PWEN_MARK, 36138c2ecf20Sopenharmony_ci USB1_OVC_MARK, 36148c2ecf20Sopenharmony_ci}; 36158c2ecf20Sopenharmony_ci/* - VIN0 ------------------------------------------------------------------- */ 36168c2ecf20Sopenharmony_cistatic const union vin_data vin0_data_pins = { 36178c2ecf20Sopenharmony_ci .data24 = { 36188c2ecf20Sopenharmony_ci /* B */ 36198c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 1), RCAR_GP_PIN(3, 2), 36208c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), 36218c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 6), 36228c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 7), RCAR_GP_PIN(3, 8), 36238c2ecf20Sopenharmony_ci /* G */ 36248c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 14), 36258c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 36268c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), RCAR_GP_PIN(3, 18), 36278c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 19), RCAR_GP_PIN(3, 20), 36288c2ecf20Sopenharmony_ci /* R */ 36298c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 21), RCAR_GP_PIN(3, 22), 36308c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 24), 36318c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), RCAR_GP_PIN(3, 26), 36328c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), 36338c2ecf20Sopenharmony_ci }, 36348c2ecf20Sopenharmony_ci}; 36358c2ecf20Sopenharmony_cistatic const union vin_data vin0_data_mux = { 36368c2ecf20Sopenharmony_ci .data24 = { 36378c2ecf20Sopenharmony_ci /* B */ 36388c2ecf20Sopenharmony_ci VI0_DATA0_VI0_B0_MARK, VI0_DATA1_VI0_B1_MARK, 36398c2ecf20Sopenharmony_ci VI0_DATA2_VI0_B2_MARK, VI0_DATA3_VI0_B3_MARK, 36408c2ecf20Sopenharmony_ci VI0_DATA4_VI0_B4_MARK, VI0_DATA5_VI0_B5_MARK, 36418c2ecf20Sopenharmony_ci VI0_DATA6_VI0_B6_MARK, VI0_DATA7_VI0_B7_MARK, 36428c2ecf20Sopenharmony_ci /* G */ 36438c2ecf20Sopenharmony_ci VI0_G0_MARK, VI0_G1_MARK, 36448c2ecf20Sopenharmony_ci VI0_G2_MARK, VI0_G3_MARK, 36458c2ecf20Sopenharmony_ci VI0_G4_MARK, VI0_G5_MARK, 36468c2ecf20Sopenharmony_ci VI0_G6_MARK, VI0_G7_MARK, 36478c2ecf20Sopenharmony_ci /* R */ 36488c2ecf20Sopenharmony_ci VI0_R0_MARK, VI0_R1_MARK, 36498c2ecf20Sopenharmony_ci VI0_R2_MARK, VI0_R3_MARK, 36508c2ecf20Sopenharmony_ci VI0_R4_MARK, VI0_R5_MARK, 36518c2ecf20Sopenharmony_ci VI0_R6_MARK, VI0_R7_MARK, 36528c2ecf20Sopenharmony_ci }, 36538c2ecf20Sopenharmony_ci}; 36548c2ecf20Sopenharmony_cistatic const unsigned int vin0_data18_pins[] = { 36558c2ecf20Sopenharmony_ci /* B */ 36568c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), 36578c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 6), 36588c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 7), RCAR_GP_PIN(3, 8), 36598c2ecf20Sopenharmony_ci /* G */ 36608c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 36618c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 17), RCAR_GP_PIN(3, 18), 36628c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 19), RCAR_GP_PIN(3, 20), 36638c2ecf20Sopenharmony_ci /* R */ 36648c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 23), RCAR_GP_PIN(3, 24), 36658c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 25), RCAR_GP_PIN(3, 26), 36668c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), 36678c2ecf20Sopenharmony_ci}; 36688c2ecf20Sopenharmony_cistatic const unsigned int vin0_data18_mux[] = { 36698c2ecf20Sopenharmony_ci /* B */ 36708c2ecf20Sopenharmony_ci VI0_DATA2_VI0_B2_MARK, VI0_DATA3_VI0_B3_MARK, 36718c2ecf20Sopenharmony_ci VI0_DATA4_VI0_B4_MARK, VI0_DATA5_VI0_B5_MARK, 36728c2ecf20Sopenharmony_ci VI0_DATA6_VI0_B6_MARK, VI0_DATA7_VI0_B7_MARK, 36738c2ecf20Sopenharmony_ci /* G */ 36748c2ecf20Sopenharmony_ci VI0_G2_MARK, VI0_G3_MARK, 36758c2ecf20Sopenharmony_ci VI0_G4_MARK, VI0_G5_MARK, 36768c2ecf20Sopenharmony_ci VI0_G6_MARK, VI0_G7_MARK, 36778c2ecf20Sopenharmony_ci /* R */ 36788c2ecf20Sopenharmony_ci VI0_R2_MARK, VI0_R3_MARK, 36798c2ecf20Sopenharmony_ci VI0_R4_MARK, VI0_R5_MARK, 36808c2ecf20Sopenharmony_ci VI0_R6_MARK, VI0_R7_MARK, 36818c2ecf20Sopenharmony_ci}; 36828c2ecf20Sopenharmony_cistatic const unsigned int vin0_sync_pins[] = { 36838c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), /* HSYNC */ 36848c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 12), /* VSYNC */ 36858c2ecf20Sopenharmony_ci}; 36868c2ecf20Sopenharmony_cistatic const unsigned int vin0_sync_mux[] = { 36878c2ecf20Sopenharmony_ci VI0_HSYNC_N_MARK, 36888c2ecf20Sopenharmony_ci VI0_VSYNC_N_MARK, 36898c2ecf20Sopenharmony_ci}; 36908c2ecf20Sopenharmony_cistatic const unsigned int vin0_field_pins[] = { 36918c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 10), 36928c2ecf20Sopenharmony_ci}; 36938c2ecf20Sopenharmony_cistatic const unsigned int vin0_field_mux[] = { 36948c2ecf20Sopenharmony_ci VI0_FIELD_MARK, 36958c2ecf20Sopenharmony_ci}; 36968c2ecf20Sopenharmony_cistatic const unsigned int vin0_clkenb_pins[] = { 36978c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 9), 36988c2ecf20Sopenharmony_ci}; 36998c2ecf20Sopenharmony_cistatic const unsigned int vin0_clkenb_mux[] = { 37008c2ecf20Sopenharmony_ci VI0_CLKENB_MARK, 37018c2ecf20Sopenharmony_ci}; 37028c2ecf20Sopenharmony_cistatic const unsigned int vin0_clk_pins[] = { 37038c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 0), 37048c2ecf20Sopenharmony_ci}; 37058c2ecf20Sopenharmony_cistatic const unsigned int vin0_clk_mux[] = { 37068c2ecf20Sopenharmony_ci VI0_CLK_MARK, 37078c2ecf20Sopenharmony_ci}; 37088c2ecf20Sopenharmony_ci/* - VIN1 ------------------------------------------------------------------- */ 37098c2ecf20Sopenharmony_cistatic const union vin_data12 vin1_data_pins = { 37108c2ecf20Sopenharmony_ci .data12 = { 37118c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 13), 37128c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 14), RCAR_GP_PIN(5, 15), 37138c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 16), RCAR_GP_PIN(5, 17), 37148c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), RCAR_GP_PIN(5, 19), 37158c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 10), RCAR_GP_PIN(1, 11), 37168c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 13), 37178c2ecf20Sopenharmony_ci }, 37188c2ecf20Sopenharmony_ci}; 37198c2ecf20Sopenharmony_cistatic const union vin_data12 vin1_data_mux = { 37208c2ecf20Sopenharmony_ci .data12 = { 37218c2ecf20Sopenharmony_ci VI1_DATA0_MARK, VI1_DATA1_MARK, 37228c2ecf20Sopenharmony_ci VI1_DATA2_MARK, VI1_DATA3_MARK, 37238c2ecf20Sopenharmony_ci VI1_DATA4_MARK, VI1_DATA5_MARK, 37248c2ecf20Sopenharmony_ci VI1_DATA6_MARK, VI1_DATA7_MARK, 37258c2ecf20Sopenharmony_ci VI1_DATA8_MARK, VI1_DATA9_MARK, 37268c2ecf20Sopenharmony_ci VI1_DATA10_MARK, VI1_DATA11_MARK, 37278c2ecf20Sopenharmony_ci }, 37288c2ecf20Sopenharmony_ci}; 37298c2ecf20Sopenharmony_cistatic const unsigned int vin1_sync_pins[] = { 37308c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), /* HSYNC */ 37318c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 23), /* VSYNC */ 37328c2ecf20Sopenharmony_ci}; 37338c2ecf20Sopenharmony_cistatic const unsigned int vin1_sync_mux[] = { 37348c2ecf20Sopenharmony_ci VI1_HSYNC_N_MARK, 37358c2ecf20Sopenharmony_ci VI1_VSYNC_N_MARK, 37368c2ecf20Sopenharmony_ci}; 37378c2ecf20Sopenharmony_cistatic const unsigned int vin1_field_pins[] = { 37388c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 21), 37398c2ecf20Sopenharmony_ci}; 37408c2ecf20Sopenharmony_cistatic const unsigned int vin1_field_mux[] = { 37418c2ecf20Sopenharmony_ci VI1_FIELD_MARK, 37428c2ecf20Sopenharmony_ci}; 37438c2ecf20Sopenharmony_cistatic const unsigned int vin1_clkenb_pins[] = { 37448c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), 37458c2ecf20Sopenharmony_ci}; 37468c2ecf20Sopenharmony_cistatic const unsigned int vin1_clkenb_mux[] = { 37478c2ecf20Sopenharmony_ci VI1_CLKENB_MARK, 37488c2ecf20Sopenharmony_ci}; 37498c2ecf20Sopenharmony_cistatic const unsigned int vin1_clk_pins[] = { 37508c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 11), 37518c2ecf20Sopenharmony_ci}; 37528c2ecf20Sopenharmony_cistatic const unsigned int vin1_clk_mux[] = { 37538c2ecf20Sopenharmony_ci VI1_CLK_MARK, 37548c2ecf20Sopenharmony_ci}; 37558c2ecf20Sopenharmony_ci 37568c2ecf20Sopenharmony_cistatic const struct sh_pfc_pin_group pinmux_groups[] = { 37578c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clka), 37588c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clka_b), 37598c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clka_c), 37608c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clka_d), 37618c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkb), 37628c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkb_b), 37638c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkb_c), 37648c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkc), 37658c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkc_b), 37668c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkc_c), 37678c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkout), 37688c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkout_b), 37698c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(audio_clkout_c), 37708c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_link), 37718c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_magic), 37728c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_phy_int), 37738c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_mdio), 37748c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_mii), 37758c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_gmii), 37768c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can0_data), 37778c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can0_data_b), 37788c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can0_data_c), 37798c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can0_data_d), 37808c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can1_data), 37818c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can1_data_b), 37828c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can1_data_c), 37838c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can1_data_d), 37848c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can_clk), 37858c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can_clk_b), 37868c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can_clk_c), 37878c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(can_clk_d), 37888c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_rgb666), 37898c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_rgb888), 37908c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk0_out), 37918c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk1_out), 37928c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk_in), 37938c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_sync), 37948c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_oddf), 37958c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_cde), 37968c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_disp), 37978c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_rgb666), 37988c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_rgb888), 37998c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk0_out), 38008c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk1_out), 38018c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk_in), 38028c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_sync), 38038c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_oddf), 38048c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_cde), 38058c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_disp), 38068c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_link), 38078c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_magic), 38088c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_mdio), 38098c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_rmii), 38108c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_link_b), 38118c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_magic_b), 38128c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_mdio_b), 38138c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(eth_rmii_b), 38148c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif0_data), 38158c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif0_clk), 38168c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif0_ctrl), 38178c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif0_data_b), 38188c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif0_clk_b), 38198c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif1_data), 38208c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif1_clk), 38218c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif1_ctrl), 38228c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif1_data_b), 38238c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif1_ctrl_b), 38248c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif2_data), 38258c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif2_clk), 38268c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(hscif2_ctrl), 38278c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0), 38288c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_b), 38298c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_c), 38308c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_d), 38318c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_e), 38328c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1), 38338c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_b), 38348c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_c), 38358c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_d), 38368c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_e), 38378c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2), 38388c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_b), 38398c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_c), 38408c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_d), 38418c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_e), 38428c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3), 38438c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_b), 38448c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_c), 38458c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_d), 38468c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_e), 38478c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4), 38488c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_b), 38498c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_c), 38508c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_d), 38518c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_e), 38528c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c5), 38538c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c5_b), 38548c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c5_c), 38558c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c5_d), 38568c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq0), 38578c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq1), 38588c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq2), 38598c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq3), 38608c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq4), 38618c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq5), 38628c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq6), 38638c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq7), 38648c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq8), 38658c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(intc_irq9), 38668c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data1), 38678c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data4), 38688c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data8), 38698c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_ctrl), 38708c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_clk), 38718c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_sync), 38728c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_ss1), 38738c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_ss2), 38748c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_rx), 38758c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof0_tx), 38768c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_clk), 38778c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_sync), 38788c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_ss1), 38798c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_ss2), 38808c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_rx), 38818c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_tx), 38828c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_clk_b), 38838c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_sync_b), 38848c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_ss1_b), 38858c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_ss2_b), 38868c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_rx_b), 38878c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof1_tx_b), 38888c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_clk), 38898c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_sync), 38908c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_ss1), 38918c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_ss2), 38928c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_rx), 38938c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_tx), 38948c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_clk_b), 38958c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_sync_b), 38968c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_ss1_b), 38978c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_ss2_b), 38988c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_rx_b), 38998c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(msiof2_tx_b), 39008c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm0), 39018c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm0_b), 39028c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm1), 39038c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm1_b), 39048c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm1_c), 39058c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm2), 39068c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm2_b), 39078c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm2_c), 39088c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm3), 39098c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm3_b), 39108c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm4), 39118c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm4_b), 39128c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm5), 39138c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm5_b), 39148c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm5_c), 39158c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm6), 39168c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(pwm6_b), 39178c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi_ctrl), 39188c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi_data2), 39198c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi_data4), 39208c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data), 39218c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_b), 39228c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_c), 39238c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_d), 39248c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data), 39258c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk), 39268c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_b), 39278c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk_b), 39288c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_c), 39298c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk_c), 39308c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data), 39318c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_clk), 39328c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data_b), 39338c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_clk_b), 39348c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data_c), 39358c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_clk_c), 39368c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_data), 39378c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_clk), 39388c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_data_b), 39398c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_clk_b), 39408c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data), 39418c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_b), 39428c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_c), 39438c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_d), 39448c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_e), 39458c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data), 39468c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_b), 39478c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_c), 39488c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_d), 39498c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa0_data), 39508c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa0_data_b), 39518c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa0_data_c), 39528c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa0_data_d), 39538c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_data), 39548c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_clk), 39558c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_data_b), 39568c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_clk_b), 39578c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_data_c), 39588c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa1_clk_c), 39598c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa2_data), 39608c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa2_clk), 39618c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa2_data_b), 39628c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa2_clk_b), 39638c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa3_data), 39648c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa3_clk), 39658c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa3_data_b), 39668c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa3_clk_b), 39678c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa4_data), 39688c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa4_data_b), 39698c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa4_data_c), 39708c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa4_data_d), 39718c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa5_data), 39728c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa5_data_b), 39738c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa5_data_c), 39748c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifa5_data_d), 39758c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb0_data), 39768c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb0_clk), 39778c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb0_ctrl), 39788c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb1_data), 39798c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb1_clk), 39808c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb2_data), 39818c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb2_clk), 39828c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scifb2_ctrl), 39838c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif_clk), 39848c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif_clk_b), 39858c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_data1), 39868c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_data4), 39878c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_ctrl), 39888c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_cd), 39898c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_wp), 39908c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_data1), 39918c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_data4), 39928c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_ctrl), 39938c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_cd), 39948c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_wp), 39958c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_data1), 39968c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_data4), 39978c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_ctrl), 39988c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_cd), 39998c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_wp), 40008c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi0_data), 40018c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi0129_ctrl), 40028c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi1_data), 40038c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi1_ctrl), 40048c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi1_data_b), 40058c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi1_ctrl_b), 40068c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi2_data), 40078c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi2_ctrl), 40088c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi2_data_b), 40098c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi2_ctrl_b), 40108c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi3_data), 40118c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi34_ctrl), 40128c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi4_data), 40138c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi4_ctrl), 40148c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi4_data_b), 40158c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi4_ctrl_b), 40168c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi5_data), 40178c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi5_ctrl), 40188c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi5_data_b), 40198c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi5_ctrl_b), 40208c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi6_data), 40218c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi6_ctrl), 40228c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi6_data_b), 40238c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi6_ctrl_b), 40248c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi7_data), 40258c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi78_ctrl), 40268c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi7_data_b), 40278c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi78_ctrl_b), 40288c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi8_data), 40298c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi8_data_b), 40308c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi9_data), 40318c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi9_ctrl), 40328c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi9_data_b), 40338c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(ssi9_ctrl_b), 40348c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to0), 40358c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to0_b), 40368c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to0_c), 40378c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to1), 40388c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to1_b), 40398c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to1_c), 40408c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to2), 40418c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to2_b), 40428c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to2_c), 40438c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to3), 40448c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to3_b), 40458c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(tpu_to3_c), 40468c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(usb0), 40478c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(usb1), 40488c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 24), 40498c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 20), 40508c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_data18), 40518c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 16), 40528c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 12), 40538c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 10), 40548c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 8), 40558c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_sync), 40568c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_field), 40578c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_clkenb), 40588c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_clk), 40598c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 12), 40608c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 10), 40618c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 8), 40628c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_sync), 40638c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_field), 40648c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_clkenb), 40658c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_clk), 40668c2ecf20Sopenharmony_ci}; 40678c2ecf20Sopenharmony_ci 40688c2ecf20Sopenharmony_cistatic const char * const audio_clk_groups[] = { 40698c2ecf20Sopenharmony_ci "audio_clka", 40708c2ecf20Sopenharmony_ci "audio_clka_b", 40718c2ecf20Sopenharmony_ci "audio_clka_c", 40728c2ecf20Sopenharmony_ci "audio_clka_d", 40738c2ecf20Sopenharmony_ci "audio_clkb", 40748c2ecf20Sopenharmony_ci "audio_clkb_b", 40758c2ecf20Sopenharmony_ci "audio_clkb_c", 40768c2ecf20Sopenharmony_ci "audio_clkc", 40778c2ecf20Sopenharmony_ci "audio_clkc_b", 40788c2ecf20Sopenharmony_ci "audio_clkc_c", 40798c2ecf20Sopenharmony_ci "audio_clkout", 40808c2ecf20Sopenharmony_ci "audio_clkout_b", 40818c2ecf20Sopenharmony_ci "audio_clkout_c", 40828c2ecf20Sopenharmony_ci}; 40838c2ecf20Sopenharmony_ci 40848c2ecf20Sopenharmony_cistatic const char * const avb_groups[] = { 40858c2ecf20Sopenharmony_ci "avb_link", 40868c2ecf20Sopenharmony_ci "avb_magic", 40878c2ecf20Sopenharmony_ci "avb_phy_int", 40888c2ecf20Sopenharmony_ci "avb_mdio", 40898c2ecf20Sopenharmony_ci "avb_mii", 40908c2ecf20Sopenharmony_ci "avb_gmii", 40918c2ecf20Sopenharmony_ci}; 40928c2ecf20Sopenharmony_ci 40938c2ecf20Sopenharmony_cistatic const char * const can0_groups[] = { 40948c2ecf20Sopenharmony_ci "can0_data", 40958c2ecf20Sopenharmony_ci "can0_data_b", 40968c2ecf20Sopenharmony_ci "can0_data_c", 40978c2ecf20Sopenharmony_ci "can0_data_d", 40988c2ecf20Sopenharmony_ci /* 40998c2ecf20Sopenharmony_ci * Retained for backwards compatibility, use can_clk_groups in new 41008c2ecf20Sopenharmony_ci * designs. 41018c2ecf20Sopenharmony_ci */ 41028c2ecf20Sopenharmony_ci "can_clk", 41038c2ecf20Sopenharmony_ci "can_clk_b", 41048c2ecf20Sopenharmony_ci "can_clk_c", 41058c2ecf20Sopenharmony_ci "can_clk_d", 41068c2ecf20Sopenharmony_ci}; 41078c2ecf20Sopenharmony_ci 41088c2ecf20Sopenharmony_cistatic const char * const can1_groups[] = { 41098c2ecf20Sopenharmony_ci "can1_data", 41108c2ecf20Sopenharmony_ci "can1_data_b", 41118c2ecf20Sopenharmony_ci "can1_data_c", 41128c2ecf20Sopenharmony_ci "can1_data_d", 41138c2ecf20Sopenharmony_ci /* 41148c2ecf20Sopenharmony_ci * Retained for backwards compatibility, use can_clk_groups in new 41158c2ecf20Sopenharmony_ci * designs. 41168c2ecf20Sopenharmony_ci */ 41178c2ecf20Sopenharmony_ci "can_clk", 41188c2ecf20Sopenharmony_ci "can_clk_b", 41198c2ecf20Sopenharmony_ci "can_clk_c", 41208c2ecf20Sopenharmony_ci "can_clk_d", 41218c2ecf20Sopenharmony_ci}; 41228c2ecf20Sopenharmony_ci 41238c2ecf20Sopenharmony_ci/* 41248c2ecf20Sopenharmony_ci * can_clk_groups allows for independent configuration, use can_clk function 41258c2ecf20Sopenharmony_ci * in new designs. 41268c2ecf20Sopenharmony_ci */ 41278c2ecf20Sopenharmony_cistatic const char * const can_clk_groups[] = { 41288c2ecf20Sopenharmony_ci "can_clk", 41298c2ecf20Sopenharmony_ci "can_clk_b", 41308c2ecf20Sopenharmony_ci "can_clk_c", 41318c2ecf20Sopenharmony_ci "can_clk_d", 41328c2ecf20Sopenharmony_ci}; 41338c2ecf20Sopenharmony_ci 41348c2ecf20Sopenharmony_cistatic const char * const du0_groups[] = { 41358c2ecf20Sopenharmony_ci "du0_rgb666", 41368c2ecf20Sopenharmony_ci "du0_rgb888", 41378c2ecf20Sopenharmony_ci "du0_clk0_out", 41388c2ecf20Sopenharmony_ci "du0_clk1_out", 41398c2ecf20Sopenharmony_ci "du0_clk_in", 41408c2ecf20Sopenharmony_ci "du0_sync", 41418c2ecf20Sopenharmony_ci "du0_oddf", 41428c2ecf20Sopenharmony_ci "du0_cde", 41438c2ecf20Sopenharmony_ci "du0_disp", 41448c2ecf20Sopenharmony_ci}; 41458c2ecf20Sopenharmony_ci 41468c2ecf20Sopenharmony_cistatic const char * const du1_groups[] = { 41478c2ecf20Sopenharmony_ci "du1_rgb666", 41488c2ecf20Sopenharmony_ci "du1_rgb888", 41498c2ecf20Sopenharmony_ci "du1_clk0_out", 41508c2ecf20Sopenharmony_ci "du1_clk1_out", 41518c2ecf20Sopenharmony_ci "du1_clk_in", 41528c2ecf20Sopenharmony_ci "du1_sync", 41538c2ecf20Sopenharmony_ci "du1_oddf", 41548c2ecf20Sopenharmony_ci "du1_cde", 41558c2ecf20Sopenharmony_ci "du1_disp", 41568c2ecf20Sopenharmony_ci}; 41578c2ecf20Sopenharmony_ci 41588c2ecf20Sopenharmony_cistatic const char * const eth_groups[] = { 41598c2ecf20Sopenharmony_ci "eth_link", 41608c2ecf20Sopenharmony_ci "eth_magic", 41618c2ecf20Sopenharmony_ci "eth_mdio", 41628c2ecf20Sopenharmony_ci "eth_rmii", 41638c2ecf20Sopenharmony_ci "eth_link_b", 41648c2ecf20Sopenharmony_ci "eth_magic_b", 41658c2ecf20Sopenharmony_ci "eth_mdio_b", 41668c2ecf20Sopenharmony_ci "eth_rmii_b", 41678c2ecf20Sopenharmony_ci}; 41688c2ecf20Sopenharmony_ci 41698c2ecf20Sopenharmony_cistatic const char * const hscif0_groups[] = { 41708c2ecf20Sopenharmony_ci "hscif0_data", 41718c2ecf20Sopenharmony_ci "hscif0_clk", 41728c2ecf20Sopenharmony_ci "hscif0_ctrl", 41738c2ecf20Sopenharmony_ci "hscif0_data_b", 41748c2ecf20Sopenharmony_ci "hscif0_clk_b", 41758c2ecf20Sopenharmony_ci}; 41768c2ecf20Sopenharmony_ci 41778c2ecf20Sopenharmony_cistatic const char * const hscif1_groups[] = { 41788c2ecf20Sopenharmony_ci "hscif1_data", 41798c2ecf20Sopenharmony_ci "hscif1_clk", 41808c2ecf20Sopenharmony_ci "hscif1_ctrl", 41818c2ecf20Sopenharmony_ci "hscif1_data_b", 41828c2ecf20Sopenharmony_ci "hscif1_ctrl_b", 41838c2ecf20Sopenharmony_ci}; 41848c2ecf20Sopenharmony_ci 41858c2ecf20Sopenharmony_cistatic const char * const hscif2_groups[] = { 41868c2ecf20Sopenharmony_ci "hscif2_data", 41878c2ecf20Sopenharmony_ci "hscif2_clk", 41888c2ecf20Sopenharmony_ci "hscif2_ctrl", 41898c2ecf20Sopenharmony_ci}; 41908c2ecf20Sopenharmony_ci 41918c2ecf20Sopenharmony_cistatic const char * const i2c0_groups[] = { 41928c2ecf20Sopenharmony_ci "i2c0", 41938c2ecf20Sopenharmony_ci "i2c0_b", 41948c2ecf20Sopenharmony_ci "i2c0_c", 41958c2ecf20Sopenharmony_ci "i2c0_d", 41968c2ecf20Sopenharmony_ci "i2c0_e", 41978c2ecf20Sopenharmony_ci}; 41988c2ecf20Sopenharmony_ci 41998c2ecf20Sopenharmony_cistatic const char * const i2c1_groups[] = { 42008c2ecf20Sopenharmony_ci "i2c1", 42018c2ecf20Sopenharmony_ci "i2c1_b", 42028c2ecf20Sopenharmony_ci "i2c1_c", 42038c2ecf20Sopenharmony_ci "i2c1_d", 42048c2ecf20Sopenharmony_ci "i2c1_e", 42058c2ecf20Sopenharmony_ci}; 42068c2ecf20Sopenharmony_ci 42078c2ecf20Sopenharmony_cistatic const char * const i2c2_groups[] = { 42088c2ecf20Sopenharmony_ci "i2c2", 42098c2ecf20Sopenharmony_ci "i2c2_b", 42108c2ecf20Sopenharmony_ci "i2c2_c", 42118c2ecf20Sopenharmony_ci "i2c2_d", 42128c2ecf20Sopenharmony_ci "i2c2_e", 42138c2ecf20Sopenharmony_ci}; 42148c2ecf20Sopenharmony_ci 42158c2ecf20Sopenharmony_cistatic const char * const i2c3_groups[] = { 42168c2ecf20Sopenharmony_ci "i2c3", 42178c2ecf20Sopenharmony_ci "i2c3_b", 42188c2ecf20Sopenharmony_ci "i2c3_c", 42198c2ecf20Sopenharmony_ci "i2c3_d", 42208c2ecf20Sopenharmony_ci "i2c3_e", 42218c2ecf20Sopenharmony_ci}; 42228c2ecf20Sopenharmony_ci 42238c2ecf20Sopenharmony_cistatic const char * const i2c4_groups[] = { 42248c2ecf20Sopenharmony_ci "i2c4", 42258c2ecf20Sopenharmony_ci "i2c4_b", 42268c2ecf20Sopenharmony_ci "i2c4_c", 42278c2ecf20Sopenharmony_ci "i2c4_d", 42288c2ecf20Sopenharmony_ci "i2c4_e", 42298c2ecf20Sopenharmony_ci}; 42308c2ecf20Sopenharmony_ci 42318c2ecf20Sopenharmony_cistatic const char * const i2c5_groups[] = { 42328c2ecf20Sopenharmony_ci "i2c5", 42338c2ecf20Sopenharmony_ci "i2c5_b", 42348c2ecf20Sopenharmony_ci "i2c5_c", 42358c2ecf20Sopenharmony_ci "i2c5_d", 42368c2ecf20Sopenharmony_ci}; 42378c2ecf20Sopenharmony_ci 42388c2ecf20Sopenharmony_cistatic const char * const intc_groups[] = { 42398c2ecf20Sopenharmony_ci "intc_irq0", 42408c2ecf20Sopenharmony_ci "intc_irq1", 42418c2ecf20Sopenharmony_ci "intc_irq2", 42428c2ecf20Sopenharmony_ci "intc_irq3", 42438c2ecf20Sopenharmony_ci "intc_irq4", 42448c2ecf20Sopenharmony_ci "intc_irq5", 42458c2ecf20Sopenharmony_ci "intc_irq6", 42468c2ecf20Sopenharmony_ci "intc_irq7", 42478c2ecf20Sopenharmony_ci "intc_irq8", 42488c2ecf20Sopenharmony_ci "intc_irq9", 42498c2ecf20Sopenharmony_ci}; 42508c2ecf20Sopenharmony_ci 42518c2ecf20Sopenharmony_cistatic const char * const mmc_groups[] = { 42528c2ecf20Sopenharmony_ci "mmc_data1", 42538c2ecf20Sopenharmony_ci "mmc_data4", 42548c2ecf20Sopenharmony_ci "mmc_data8", 42558c2ecf20Sopenharmony_ci "mmc_ctrl", 42568c2ecf20Sopenharmony_ci}; 42578c2ecf20Sopenharmony_ci 42588c2ecf20Sopenharmony_cistatic const char * const msiof0_groups[] = { 42598c2ecf20Sopenharmony_ci "msiof0_clk", 42608c2ecf20Sopenharmony_ci "msiof0_sync", 42618c2ecf20Sopenharmony_ci "msiof0_ss1", 42628c2ecf20Sopenharmony_ci "msiof0_ss2", 42638c2ecf20Sopenharmony_ci "msiof0_rx", 42648c2ecf20Sopenharmony_ci "msiof0_tx", 42658c2ecf20Sopenharmony_ci}; 42668c2ecf20Sopenharmony_ci 42678c2ecf20Sopenharmony_cistatic const char * const msiof1_groups[] = { 42688c2ecf20Sopenharmony_ci "msiof1_clk", 42698c2ecf20Sopenharmony_ci "msiof1_sync", 42708c2ecf20Sopenharmony_ci "msiof1_ss1", 42718c2ecf20Sopenharmony_ci "msiof1_ss2", 42728c2ecf20Sopenharmony_ci "msiof1_rx", 42738c2ecf20Sopenharmony_ci "msiof1_tx", 42748c2ecf20Sopenharmony_ci "msiof1_clk_b", 42758c2ecf20Sopenharmony_ci "msiof1_sync_b", 42768c2ecf20Sopenharmony_ci "msiof1_ss1_b", 42778c2ecf20Sopenharmony_ci "msiof1_ss2_b", 42788c2ecf20Sopenharmony_ci "msiof1_rx_b", 42798c2ecf20Sopenharmony_ci "msiof1_tx_b", 42808c2ecf20Sopenharmony_ci}; 42818c2ecf20Sopenharmony_ci 42828c2ecf20Sopenharmony_cistatic const char * const msiof2_groups[] = { 42838c2ecf20Sopenharmony_ci "msiof2_clk", 42848c2ecf20Sopenharmony_ci "msiof2_sync", 42858c2ecf20Sopenharmony_ci "msiof2_ss1", 42868c2ecf20Sopenharmony_ci "msiof2_ss2", 42878c2ecf20Sopenharmony_ci "msiof2_rx", 42888c2ecf20Sopenharmony_ci "msiof2_tx", 42898c2ecf20Sopenharmony_ci "msiof2_clk_b", 42908c2ecf20Sopenharmony_ci "msiof2_sync_b", 42918c2ecf20Sopenharmony_ci "msiof2_ss1_b", 42928c2ecf20Sopenharmony_ci "msiof2_ss2_b", 42938c2ecf20Sopenharmony_ci "msiof2_rx_b", 42948c2ecf20Sopenharmony_ci "msiof2_tx_b", 42958c2ecf20Sopenharmony_ci}; 42968c2ecf20Sopenharmony_ci 42978c2ecf20Sopenharmony_cistatic const char * const pwm0_groups[] = { 42988c2ecf20Sopenharmony_ci "pwm0", 42998c2ecf20Sopenharmony_ci "pwm0_b", 43008c2ecf20Sopenharmony_ci}; 43018c2ecf20Sopenharmony_ci 43028c2ecf20Sopenharmony_cistatic const char * const pwm1_groups[] = { 43038c2ecf20Sopenharmony_ci "pwm1", 43048c2ecf20Sopenharmony_ci "pwm1_b", 43058c2ecf20Sopenharmony_ci "pwm1_c", 43068c2ecf20Sopenharmony_ci}; 43078c2ecf20Sopenharmony_ci 43088c2ecf20Sopenharmony_cistatic const char * const pwm2_groups[] = { 43098c2ecf20Sopenharmony_ci "pwm2", 43108c2ecf20Sopenharmony_ci "pwm2_b", 43118c2ecf20Sopenharmony_ci "pwm2_c", 43128c2ecf20Sopenharmony_ci}; 43138c2ecf20Sopenharmony_ci 43148c2ecf20Sopenharmony_cistatic const char * const pwm3_groups[] = { 43158c2ecf20Sopenharmony_ci "pwm3", 43168c2ecf20Sopenharmony_ci "pwm3_b", 43178c2ecf20Sopenharmony_ci}; 43188c2ecf20Sopenharmony_ci 43198c2ecf20Sopenharmony_cistatic const char * const pwm4_groups[] = { 43208c2ecf20Sopenharmony_ci "pwm4", 43218c2ecf20Sopenharmony_ci "pwm4_b", 43228c2ecf20Sopenharmony_ci}; 43238c2ecf20Sopenharmony_ci 43248c2ecf20Sopenharmony_cistatic const char * const pwm5_groups[] = { 43258c2ecf20Sopenharmony_ci "pwm5", 43268c2ecf20Sopenharmony_ci "pwm5_b", 43278c2ecf20Sopenharmony_ci "pwm5_c", 43288c2ecf20Sopenharmony_ci}; 43298c2ecf20Sopenharmony_ci 43308c2ecf20Sopenharmony_cistatic const char * const pwm6_groups[] = { 43318c2ecf20Sopenharmony_ci "pwm6", 43328c2ecf20Sopenharmony_ci "pwm6_b", 43338c2ecf20Sopenharmony_ci}; 43348c2ecf20Sopenharmony_ci 43358c2ecf20Sopenharmony_cistatic const char * const qspi_groups[] = { 43368c2ecf20Sopenharmony_ci "qspi_ctrl", 43378c2ecf20Sopenharmony_ci "qspi_data2", 43388c2ecf20Sopenharmony_ci "qspi_data4", 43398c2ecf20Sopenharmony_ci}; 43408c2ecf20Sopenharmony_ci 43418c2ecf20Sopenharmony_cistatic const char * const scif0_groups[] = { 43428c2ecf20Sopenharmony_ci "scif0_data", 43438c2ecf20Sopenharmony_ci "scif0_data_b", 43448c2ecf20Sopenharmony_ci "scif0_data_c", 43458c2ecf20Sopenharmony_ci "scif0_data_d", 43468c2ecf20Sopenharmony_ci}; 43478c2ecf20Sopenharmony_ci 43488c2ecf20Sopenharmony_cistatic const char * const scif1_groups[] = { 43498c2ecf20Sopenharmony_ci "scif1_data", 43508c2ecf20Sopenharmony_ci "scif1_clk", 43518c2ecf20Sopenharmony_ci "scif1_data_b", 43528c2ecf20Sopenharmony_ci "scif1_clk_b", 43538c2ecf20Sopenharmony_ci "scif1_data_c", 43548c2ecf20Sopenharmony_ci "scif1_clk_c", 43558c2ecf20Sopenharmony_ci}; 43568c2ecf20Sopenharmony_ci 43578c2ecf20Sopenharmony_cistatic const char * const scif2_groups[] = { 43588c2ecf20Sopenharmony_ci "scif2_data", 43598c2ecf20Sopenharmony_ci "scif2_clk", 43608c2ecf20Sopenharmony_ci "scif2_data_b", 43618c2ecf20Sopenharmony_ci "scif2_clk_b", 43628c2ecf20Sopenharmony_ci "scif2_data_c", 43638c2ecf20Sopenharmony_ci "scif2_clk_c", 43648c2ecf20Sopenharmony_ci}; 43658c2ecf20Sopenharmony_ci 43668c2ecf20Sopenharmony_cistatic const char * const scif3_groups[] = { 43678c2ecf20Sopenharmony_ci "scif3_data", 43688c2ecf20Sopenharmony_ci "scif3_clk", 43698c2ecf20Sopenharmony_ci "scif3_data_b", 43708c2ecf20Sopenharmony_ci "scif3_clk_b", 43718c2ecf20Sopenharmony_ci}; 43728c2ecf20Sopenharmony_ci 43738c2ecf20Sopenharmony_cistatic const char * const scif4_groups[] = { 43748c2ecf20Sopenharmony_ci "scif4_data", 43758c2ecf20Sopenharmony_ci "scif4_data_b", 43768c2ecf20Sopenharmony_ci "scif4_data_c", 43778c2ecf20Sopenharmony_ci "scif4_data_d", 43788c2ecf20Sopenharmony_ci "scif4_data_e", 43798c2ecf20Sopenharmony_ci}; 43808c2ecf20Sopenharmony_ci 43818c2ecf20Sopenharmony_cistatic const char * const scif5_groups[] = { 43828c2ecf20Sopenharmony_ci "scif5_data", 43838c2ecf20Sopenharmony_ci "scif5_data_b", 43848c2ecf20Sopenharmony_ci "scif5_data_c", 43858c2ecf20Sopenharmony_ci "scif5_data_d", 43868c2ecf20Sopenharmony_ci}; 43878c2ecf20Sopenharmony_ci 43888c2ecf20Sopenharmony_cistatic const char * const scifa0_groups[] = { 43898c2ecf20Sopenharmony_ci "scifa0_data", 43908c2ecf20Sopenharmony_ci "scifa0_data_b", 43918c2ecf20Sopenharmony_ci "scifa0_data_c", 43928c2ecf20Sopenharmony_ci "scifa0_data_d", 43938c2ecf20Sopenharmony_ci}; 43948c2ecf20Sopenharmony_ci 43958c2ecf20Sopenharmony_cistatic const char * const scifa1_groups[] = { 43968c2ecf20Sopenharmony_ci "scifa1_data", 43978c2ecf20Sopenharmony_ci "scifa1_clk", 43988c2ecf20Sopenharmony_ci "scifa1_data_b", 43998c2ecf20Sopenharmony_ci "scifa1_clk_b", 44008c2ecf20Sopenharmony_ci "scifa1_data_c", 44018c2ecf20Sopenharmony_ci "scifa1_clk_c", 44028c2ecf20Sopenharmony_ci}; 44038c2ecf20Sopenharmony_ci 44048c2ecf20Sopenharmony_cistatic const char * const scifa2_groups[] = { 44058c2ecf20Sopenharmony_ci "scifa2_data", 44068c2ecf20Sopenharmony_ci "scifa2_clk", 44078c2ecf20Sopenharmony_ci "scifa2_data_b", 44088c2ecf20Sopenharmony_ci "scifa2_clk_b", 44098c2ecf20Sopenharmony_ci}; 44108c2ecf20Sopenharmony_ci 44118c2ecf20Sopenharmony_cistatic const char * const scifa3_groups[] = { 44128c2ecf20Sopenharmony_ci "scifa3_data", 44138c2ecf20Sopenharmony_ci "scifa3_clk", 44148c2ecf20Sopenharmony_ci "scifa3_data_b", 44158c2ecf20Sopenharmony_ci "scifa3_clk_b", 44168c2ecf20Sopenharmony_ci}; 44178c2ecf20Sopenharmony_ci 44188c2ecf20Sopenharmony_cistatic const char * const scifa4_groups[] = { 44198c2ecf20Sopenharmony_ci "scifa4_data", 44208c2ecf20Sopenharmony_ci "scifa4_data_b", 44218c2ecf20Sopenharmony_ci "scifa4_data_c", 44228c2ecf20Sopenharmony_ci "scifa4_data_d", 44238c2ecf20Sopenharmony_ci}; 44248c2ecf20Sopenharmony_ci 44258c2ecf20Sopenharmony_cistatic const char * const scifa5_groups[] = { 44268c2ecf20Sopenharmony_ci "scifa5_data", 44278c2ecf20Sopenharmony_ci "scifa5_data_b", 44288c2ecf20Sopenharmony_ci "scifa5_data_c", 44298c2ecf20Sopenharmony_ci "scifa5_data_d", 44308c2ecf20Sopenharmony_ci}; 44318c2ecf20Sopenharmony_ci 44328c2ecf20Sopenharmony_cistatic const char * const scifb0_groups[] = { 44338c2ecf20Sopenharmony_ci "scifb0_data", 44348c2ecf20Sopenharmony_ci "scifb0_clk", 44358c2ecf20Sopenharmony_ci "scifb0_ctrl", 44368c2ecf20Sopenharmony_ci}; 44378c2ecf20Sopenharmony_ci 44388c2ecf20Sopenharmony_cistatic const char * const scifb1_groups[] = { 44398c2ecf20Sopenharmony_ci "scifb1_data", 44408c2ecf20Sopenharmony_ci "scifb1_clk", 44418c2ecf20Sopenharmony_ci}; 44428c2ecf20Sopenharmony_ci 44438c2ecf20Sopenharmony_cistatic const char * const scifb2_groups[] = { 44448c2ecf20Sopenharmony_ci "scifb2_data", 44458c2ecf20Sopenharmony_ci "scifb2_clk", 44468c2ecf20Sopenharmony_ci "scifb2_ctrl", 44478c2ecf20Sopenharmony_ci}; 44488c2ecf20Sopenharmony_ci 44498c2ecf20Sopenharmony_cistatic const char * const scif_clk_groups[] = { 44508c2ecf20Sopenharmony_ci "scif_clk", 44518c2ecf20Sopenharmony_ci "scif_clk_b", 44528c2ecf20Sopenharmony_ci}; 44538c2ecf20Sopenharmony_ci 44548c2ecf20Sopenharmony_cistatic const char * const sdhi0_groups[] = { 44558c2ecf20Sopenharmony_ci "sdhi0_data1", 44568c2ecf20Sopenharmony_ci "sdhi0_data4", 44578c2ecf20Sopenharmony_ci "sdhi0_ctrl", 44588c2ecf20Sopenharmony_ci "sdhi0_cd", 44598c2ecf20Sopenharmony_ci "sdhi0_wp", 44608c2ecf20Sopenharmony_ci}; 44618c2ecf20Sopenharmony_ci 44628c2ecf20Sopenharmony_cistatic const char * const sdhi1_groups[] = { 44638c2ecf20Sopenharmony_ci "sdhi1_data1", 44648c2ecf20Sopenharmony_ci "sdhi1_data4", 44658c2ecf20Sopenharmony_ci "sdhi1_ctrl", 44668c2ecf20Sopenharmony_ci "sdhi1_cd", 44678c2ecf20Sopenharmony_ci "sdhi1_wp", 44688c2ecf20Sopenharmony_ci}; 44698c2ecf20Sopenharmony_ci 44708c2ecf20Sopenharmony_cistatic const char * const sdhi2_groups[] = { 44718c2ecf20Sopenharmony_ci "sdhi2_data1", 44728c2ecf20Sopenharmony_ci "sdhi2_data4", 44738c2ecf20Sopenharmony_ci "sdhi2_ctrl", 44748c2ecf20Sopenharmony_ci "sdhi2_cd", 44758c2ecf20Sopenharmony_ci "sdhi2_wp", 44768c2ecf20Sopenharmony_ci}; 44778c2ecf20Sopenharmony_ci 44788c2ecf20Sopenharmony_cistatic const char * const ssi_groups[] = { 44798c2ecf20Sopenharmony_ci "ssi0_data", 44808c2ecf20Sopenharmony_ci "ssi0129_ctrl", 44818c2ecf20Sopenharmony_ci "ssi1_data", 44828c2ecf20Sopenharmony_ci "ssi1_ctrl", 44838c2ecf20Sopenharmony_ci "ssi1_data_b", 44848c2ecf20Sopenharmony_ci "ssi1_ctrl_b", 44858c2ecf20Sopenharmony_ci "ssi2_data", 44868c2ecf20Sopenharmony_ci "ssi2_ctrl", 44878c2ecf20Sopenharmony_ci "ssi2_data_b", 44888c2ecf20Sopenharmony_ci "ssi2_ctrl_b", 44898c2ecf20Sopenharmony_ci "ssi3_data", 44908c2ecf20Sopenharmony_ci "ssi34_ctrl", 44918c2ecf20Sopenharmony_ci "ssi4_data", 44928c2ecf20Sopenharmony_ci "ssi4_ctrl", 44938c2ecf20Sopenharmony_ci "ssi4_data_b", 44948c2ecf20Sopenharmony_ci "ssi4_ctrl_b", 44958c2ecf20Sopenharmony_ci "ssi5_data", 44968c2ecf20Sopenharmony_ci "ssi5_ctrl", 44978c2ecf20Sopenharmony_ci "ssi5_data_b", 44988c2ecf20Sopenharmony_ci "ssi5_ctrl_b", 44998c2ecf20Sopenharmony_ci "ssi6_data", 45008c2ecf20Sopenharmony_ci "ssi6_ctrl", 45018c2ecf20Sopenharmony_ci "ssi6_data_b", 45028c2ecf20Sopenharmony_ci "ssi6_ctrl_b", 45038c2ecf20Sopenharmony_ci "ssi7_data", 45048c2ecf20Sopenharmony_ci "ssi78_ctrl", 45058c2ecf20Sopenharmony_ci "ssi7_data_b", 45068c2ecf20Sopenharmony_ci "ssi78_ctrl_b", 45078c2ecf20Sopenharmony_ci "ssi8_data", 45088c2ecf20Sopenharmony_ci "ssi8_data_b", 45098c2ecf20Sopenharmony_ci "ssi9_data", 45108c2ecf20Sopenharmony_ci "ssi9_ctrl", 45118c2ecf20Sopenharmony_ci "ssi9_data_b", 45128c2ecf20Sopenharmony_ci "ssi9_ctrl_b", 45138c2ecf20Sopenharmony_ci}; 45148c2ecf20Sopenharmony_ci 45158c2ecf20Sopenharmony_cistatic const char * const tpu_groups[] = { 45168c2ecf20Sopenharmony_ci "tpu_to0", 45178c2ecf20Sopenharmony_ci "tpu_to0_b", 45188c2ecf20Sopenharmony_ci "tpu_to0_c", 45198c2ecf20Sopenharmony_ci "tpu_to1", 45208c2ecf20Sopenharmony_ci "tpu_to1_b", 45218c2ecf20Sopenharmony_ci "tpu_to1_c", 45228c2ecf20Sopenharmony_ci "tpu_to2", 45238c2ecf20Sopenharmony_ci "tpu_to2_b", 45248c2ecf20Sopenharmony_ci "tpu_to2_c", 45258c2ecf20Sopenharmony_ci "tpu_to3", 45268c2ecf20Sopenharmony_ci "tpu_to3_b", 45278c2ecf20Sopenharmony_ci "tpu_to3_c", 45288c2ecf20Sopenharmony_ci}; 45298c2ecf20Sopenharmony_ci 45308c2ecf20Sopenharmony_cistatic const char * const usb0_groups[] = { 45318c2ecf20Sopenharmony_ci "usb0", 45328c2ecf20Sopenharmony_ci}; 45338c2ecf20Sopenharmony_ci 45348c2ecf20Sopenharmony_cistatic const char * const usb1_groups[] = { 45358c2ecf20Sopenharmony_ci "usb1", 45368c2ecf20Sopenharmony_ci}; 45378c2ecf20Sopenharmony_ci 45388c2ecf20Sopenharmony_cistatic const char * const vin0_groups[] = { 45398c2ecf20Sopenharmony_ci "vin0_data24", 45408c2ecf20Sopenharmony_ci "vin0_data20", 45418c2ecf20Sopenharmony_ci "vin0_data18", 45428c2ecf20Sopenharmony_ci "vin0_data16", 45438c2ecf20Sopenharmony_ci "vin0_data12", 45448c2ecf20Sopenharmony_ci "vin0_data10", 45458c2ecf20Sopenharmony_ci "vin0_data8", 45468c2ecf20Sopenharmony_ci "vin0_sync", 45478c2ecf20Sopenharmony_ci "vin0_field", 45488c2ecf20Sopenharmony_ci "vin0_clkenb", 45498c2ecf20Sopenharmony_ci "vin0_clk", 45508c2ecf20Sopenharmony_ci}; 45518c2ecf20Sopenharmony_ci 45528c2ecf20Sopenharmony_cistatic const char * const vin1_groups[] = { 45538c2ecf20Sopenharmony_ci "vin1_data12", 45548c2ecf20Sopenharmony_ci "vin1_data10", 45558c2ecf20Sopenharmony_ci "vin1_data8", 45568c2ecf20Sopenharmony_ci "vin1_sync", 45578c2ecf20Sopenharmony_ci "vin1_field", 45588c2ecf20Sopenharmony_ci "vin1_clkenb", 45598c2ecf20Sopenharmony_ci "vin1_clk", 45608c2ecf20Sopenharmony_ci}; 45618c2ecf20Sopenharmony_ci 45628c2ecf20Sopenharmony_cistatic const struct sh_pfc_function pinmux_functions[] = { 45638c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(audio_clk), 45648c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(avb), 45658c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(can0), 45668c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(can1), 45678c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(can_clk), 45688c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(du0), 45698c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(du1), 45708c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(eth), 45718c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(hscif0), 45728c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(hscif1), 45738c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(hscif2), 45748c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c0), 45758c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c1), 45768c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c2), 45778c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c3), 45788c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c4), 45798c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c5), 45808c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(intc), 45818c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(mmc), 45828c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(msiof0), 45838c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(msiof1), 45848c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(msiof2), 45858c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm0), 45868c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm1), 45878c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm2), 45888c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm3), 45898c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm4), 45908c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm5), 45918c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(pwm6), 45928c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(qspi), 45938c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif0), 45948c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif1), 45958c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif2), 45968c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif3), 45978c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif4), 45988c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif5), 45998c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa0), 46008c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa1), 46018c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa2), 46028c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa3), 46038c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa4), 46048c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifa5), 46058c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifb0), 46068c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifb1), 46078c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scifb2), 46088c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif_clk), 46098c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi0), 46108c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi1), 46118c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi2), 46128c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(ssi), 46138c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(tpu), 46148c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(usb0), 46158c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(usb1), 46168c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(vin0), 46178c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(vin1), 46188c2ecf20Sopenharmony_ci}; 46198c2ecf20Sopenharmony_ci 46208c2ecf20Sopenharmony_cistatic const struct pinmux_cfg_reg pinmux_config_regs[] = { 46218c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR0", 0xE6060004, 32, 1, GROUP( 46228c2ecf20Sopenharmony_ci GP_0_31_FN, FN_IP2_17_16, 46238c2ecf20Sopenharmony_ci GP_0_30_FN, FN_IP2_15_14, 46248c2ecf20Sopenharmony_ci GP_0_29_FN, FN_IP2_13_12, 46258c2ecf20Sopenharmony_ci GP_0_28_FN, FN_IP2_11_10, 46268c2ecf20Sopenharmony_ci GP_0_27_FN, FN_IP2_9_8, 46278c2ecf20Sopenharmony_ci GP_0_26_FN, FN_IP2_7_6, 46288c2ecf20Sopenharmony_ci GP_0_25_FN, FN_IP2_5_4, 46298c2ecf20Sopenharmony_ci GP_0_24_FN, FN_IP2_3_2, 46308c2ecf20Sopenharmony_ci GP_0_23_FN, FN_IP2_1_0, 46318c2ecf20Sopenharmony_ci GP_0_22_FN, FN_IP1_31_30, 46328c2ecf20Sopenharmony_ci GP_0_21_FN, FN_IP1_29_28, 46338c2ecf20Sopenharmony_ci GP_0_20_FN, FN_IP1_27, 46348c2ecf20Sopenharmony_ci GP_0_19_FN, FN_IP1_26, 46358c2ecf20Sopenharmony_ci GP_0_18_FN, FN_A2, 46368c2ecf20Sopenharmony_ci GP_0_17_FN, FN_IP1_24, 46378c2ecf20Sopenharmony_ci GP_0_16_FN, FN_IP1_23_22, 46388c2ecf20Sopenharmony_ci GP_0_15_FN, FN_IP1_21_20, 46398c2ecf20Sopenharmony_ci GP_0_14_FN, FN_IP1_19_18, 46408c2ecf20Sopenharmony_ci GP_0_13_FN, FN_IP1_17_15, 46418c2ecf20Sopenharmony_ci GP_0_12_FN, FN_IP1_14_13, 46428c2ecf20Sopenharmony_ci GP_0_11_FN, FN_IP1_12_11, 46438c2ecf20Sopenharmony_ci GP_0_10_FN, FN_IP1_10_8, 46448c2ecf20Sopenharmony_ci GP_0_9_FN, FN_IP1_7_6, 46458c2ecf20Sopenharmony_ci GP_0_8_FN, FN_IP1_5_4, 46468c2ecf20Sopenharmony_ci GP_0_7_FN, FN_IP1_3_2, 46478c2ecf20Sopenharmony_ci GP_0_6_FN, FN_IP1_1_0, 46488c2ecf20Sopenharmony_ci GP_0_5_FN, FN_IP0_31_30, 46498c2ecf20Sopenharmony_ci GP_0_4_FN, FN_IP0_29_28, 46508c2ecf20Sopenharmony_ci GP_0_3_FN, FN_IP0_27_26, 46518c2ecf20Sopenharmony_ci GP_0_2_FN, FN_IP0_25, 46528c2ecf20Sopenharmony_ci GP_0_1_FN, FN_IP0_24, 46538c2ecf20Sopenharmony_ci GP_0_0_FN, FN_IP0_23_22, )) 46548c2ecf20Sopenharmony_ci }, 46558c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR1", 0xE6060008, 32, 1, GROUP( 46568c2ecf20Sopenharmony_ci 0, 0, 46578c2ecf20Sopenharmony_ci 0, 0, 46588c2ecf20Sopenharmony_ci 0, 0, 46598c2ecf20Sopenharmony_ci 0, 0, 46608c2ecf20Sopenharmony_ci 0, 0, 46618c2ecf20Sopenharmony_ci 0, 0, 46628c2ecf20Sopenharmony_ci GP_1_25_FN, FN_DACK0, 46638c2ecf20Sopenharmony_ci GP_1_24_FN, FN_IP7_31, 46648c2ecf20Sopenharmony_ci GP_1_23_FN, FN_IP4_1_0, 46658c2ecf20Sopenharmony_ci GP_1_22_FN, FN_WE1_N, 46668c2ecf20Sopenharmony_ci GP_1_21_FN, FN_WE0_N, 46678c2ecf20Sopenharmony_ci GP_1_20_FN, FN_IP3_31, 46688c2ecf20Sopenharmony_ci GP_1_19_FN, FN_IP3_30, 46698c2ecf20Sopenharmony_ci GP_1_18_FN, FN_IP3_29_27, 46708c2ecf20Sopenharmony_ci GP_1_17_FN, FN_IP3_26_24, 46718c2ecf20Sopenharmony_ci GP_1_16_FN, FN_IP3_23_21, 46728c2ecf20Sopenharmony_ci GP_1_15_FN, FN_IP3_20_18, 46738c2ecf20Sopenharmony_ci GP_1_14_FN, FN_IP3_17_15, 46748c2ecf20Sopenharmony_ci GP_1_13_FN, FN_IP3_14_13, 46758c2ecf20Sopenharmony_ci GP_1_12_FN, FN_IP3_12, 46768c2ecf20Sopenharmony_ci GP_1_11_FN, FN_IP3_11, 46778c2ecf20Sopenharmony_ci GP_1_10_FN, FN_IP3_10, 46788c2ecf20Sopenharmony_ci GP_1_9_FN, FN_IP3_9_8, 46798c2ecf20Sopenharmony_ci GP_1_8_FN, FN_IP3_7_6, 46808c2ecf20Sopenharmony_ci GP_1_7_FN, FN_IP3_5_4, 46818c2ecf20Sopenharmony_ci GP_1_6_FN, FN_IP3_3_2, 46828c2ecf20Sopenharmony_ci GP_1_5_FN, FN_IP3_1_0, 46838c2ecf20Sopenharmony_ci GP_1_4_FN, FN_IP2_31_30, 46848c2ecf20Sopenharmony_ci GP_1_3_FN, FN_IP2_29_27, 46858c2ecf20Sopenharmony_ci GP_1_2_FN, FN_IP2_26_24, 46868c2ecf20Sopenharmony_ci GP_1_1_FN, FN_IP2_23_21, 46878c2ecf20Sopenharmony_ci GP_1_0_FN, FN_IP2_20_18, )) 46888c2ecf20Sopenharmony_ci }, 46898c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR2", 0xE606000C, 32, 1, GROUP( 46908c2ecf20Sopenharmony_ci GP_2_31_FN, FN_IP6_7_6, 46918c2ecf20Sopenharmony_ci GP_2_30_FN, FN_IP6_5_4, 46928c2ecf20Sopenharmony_ci GP_2_29_FN, FN_IP6_3_2, 46938c2ecf20Sopenharmony_ci GP_2_28_FN, FN_IP6_1_0, 46948c2ecf20Sopenharmony_ci GP_2_27_FN, FN_IP5_31_30, 46958c2ecf20Sopenharmony_ci GP_2_26_FN, FN_IP5_29_28, 46968c2ecf20Sopenharmony_ci GP_2_25_FN, FN_IP5_27_26, 46978c2ecf20Sopenharmony_ci GP_2_24_FN, FN_IP5_25_24, 46988c2ecf20Sopenharmony_ci GP_2_23_FN, FN_IP5_23_22, 46998c2ecf20Sopenharmony_ci GP_2_22_FN, FN_IP5_21_20, 47008c2ecf20Sopenharmony_ci GP_2_21_FN, FN_IP5_19_18, 47018c2ecf20Sopenharmony_ci GP_2_20_FN, FN_IP5_17_16, 47028c2ecf20Sopenharmony_ci GP_2_19_FN, FN_IP5_15_14, 47038c2ecf20Sopenharmony_ci GP_2_18_FN, FN_IP5_13_12, 47048c2ecf20Sopenharmony_ci GP_2_17_FN, FN_IP5_11_9, 47058c2ecf20Sopenharmony_ci GP_2_16_FN, FN_IP5_8_6, 47068c2ecf20Sopenharmony_ci GP_2_15_FN, FN_IP5_5_4, 47078c2ecf20Sopenharmony_ci GP_2_14_FN, FN_IP5_3_2, 47088c2ecf20Sopenharmony_ci GP_2_13_FN, FN_IP5_1_0, 47098c2ecf20Sopenharmony_ci GP_2_12_FN, FN_IP4_31_30, 47108c2ecf20Sopenharmony_ci GP_2_11_FN, FN_IP4_29_28, 47118c2ecf20Sopenharmony_ci GP_2_10_FN, FN_IP4_27_26, 47128c2ecf20Sopenharmony_ci GP_2_9_FN, FN_IP4_25_23, 47138c2ecf20Sopenharmony_ci GP_2_8_FN, FN_IP4_22_20, 47148c2ecf20Sopenharmony_ci GP_2_7_FN, FN_IP4_19_18, 47158c2ecf20Sopenharmony_ci GP_2_6_FN, FN_IP4_17_16, 47168c2ecf20Sopenharmony_ci GP_2_5_FN, FN_IP4_15_14, 47178c2ecf20Sopenharmony_ci GP_2_4_FN, FN_IP4_13_12, 47188c2ecf20Sopenharmony_ci GP_2_3_FN, FN_IP4_11_10, 47198c2ecf20Sopenharmony_ci GP_2_2_FN, FN_IP4_9_8, 47208c2ecf20Sopenharmony_ci GP_2_1_FN, FN_IP4_7_5, 47218c2ecf20Sopenharmony_ci GP_2_0_FN, FN_IP4_4_2 )) 47228c2ecf20Sopenharmony_ci }, 47238c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR3", 0xE6060010, 32, 1, GROUP( 47248c2ecf20Sopenharmony_ci GP_3_31_FN, FN_IP8_22_20, 47258c2ecf20Sopenharmony_ci GP_3_30_FN, FN_IP8_19_17, 47268c2ecf20Sopenharmony_ci GP_3_29_FN, FN_IP8_16_15, 47278c2ecf20Sopenharmony_ci GP_3_28_FN, FN_IP8_14_12, 47288c2ecf20Sopenharmony_ci GP_3_27_FN, FN_IP8_11_9, 47298c2ecf20Sopenharmony_ci GP_3_26_FN, FN_IP8_8_6, 47308c2ecf20Sopenharmony_ci GP_3_25_FN, FN_IP8_5_3, 47318c2ecf20Sopenharmony_ci GP_3_24_FN, FN_IP8_2_0, 47328c2ecf20Sopenharmony_ci GP_3_23_FN, FN_IP7_29_27, 47338c2ecf20Sopenharmony_ci GP_3_22_FN, FN_IP7_26_24, 47348c2ecf20Sopenharmony_ci GP_3_21_FN, FN_IP7_23_21, 47358c2ecf20Sopenharmony_ci GP_3_20_FN, FN_IP7_20_18, 47368c2ecf20Sopenharmony_ci GP_3_19_FN, FN_IP7_17_15, 47378c2ecf20Sopenharmony_ci GP_3_18_FN, FN_IP7_14_12, 47388c2ecf20Sopenharmony_ci GP_3_17_FN, FN_IP7_11_9, 47398c2ecf20Sopenharmony_ci GP_3_16_FN, FN_IP7_8_6, 47408c2ecf20Sopenharmony_ci GP_3_15_FN, FN_IP7_5_3, 47418c2ecf20Sopenharmony_ci GP_3_14_FN, FN_IP7_2_0, 47428c2ecf20Sopenharmony_ci GP_3_13_FN, FN_IP6_31_29, 47438c2ecf20Sopenharmony_ci GP_3_12_FN, FN_IP6_28_26, 47448c2ecf20Sopenharmony_ci GP_3_11_FN, FN_IP6_25_23, 47458c2ecf20Sopenharmony_ci GP_3_10_FN, FN_IP6_22_20, 47468c2ecf20Sopenharmony_ci GP_3_9_FN, FN_IP6_19_17, 47478c2ecf20Sopenharmony_ci GP_3_8_FN, FN_IP6_16, 47488c2ecf20Sopenharmony_ci GP_3_7_FN, FN_IP6_15, 47498c2ecf20Sopenharmony_ci GP_3_6_FN, FN_IP6_14, 47508c2ecf20Sopenharmony_ci GP_3_5_FN, FN_IP6_13, 47518c2ecf20Sopenharmony_ci GP_3_4_FN, FN_IP6_12, 47528c2ecf20Sopenharmony_ci GP_3_3_FN, FN_IP6_11, 47538c2ecf20Sopenharmony_ci GP_3_2_FN, FN_IP6_10, 47548c2ecf20Sopenharmony_ci GP_3_1_FN, FN_IP6_9, 47558c2ecf20Sopenharmony_ci GP_3_0_FN, FN_IP6_8 )) 47568c2ecf20Sopenharmony_ci }, 47578c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR4", 0xE6060014, 32, 1, GROUP( 47588c2ecf20Sopenharmony_ci GP_4_31_FN, FN_IP11_17_16, 47598c2ecf20Sopenharmony_ci GP_4_30_FN, FN_IP11_15_14, 47608c2ecf20Sopenharmony_ci GP_4_29_FN, FN_IP11_13_11, 47618c2ecf20Sopenharmony_ci GP_4_28_FN, FN_IP11_10_8, 47628c2ecf20Sopenharmony_ci GP_4_27_FN, FN_IP11_7_6, 47638c2ecf20Sopenharmony_ci GP_4_26_FN, FN_IP11_5_3, 47648c2ecf20Sopenharmony_ci GP_4_25_FN, FN_IP11_2_0, 47658c2ecf20Sopenharmony_ci GP_4_24_FN, FN_IP10_31_30, 47668c2ecf20Sopenharmony_ci GP_4_23_FN, FN_IP10_29_27, 47678c2ecf20Sopenharmony_ci GP_4_22_FN, FN_IP10_26_24, 47688c2ecf20Sopenharmony_ci GP_4_21_FN, FN_IP10_23_21, 47698c2ecf20Sopenharmony_ci GP_4_20_FN, FN_IP10_20_18, 47708c2ecf20Sopenharmony_ci GP_4_19_FN, FN_IP10_17_15, 47718c2ecf20Sopenharmony_ci GP_4_18_FN, FN_IP10_14_12, 47728c2ecf20Sopenharmony_ci GP_4_17_FN, FN_IP10_11_9, 47738c2ecf20Sopenharmony_ci GP_4_16_FN, FN_IP10_8_6, 47748c2ecf20Sopenharmony_ci GP_4_15_FN, FN_IP10_5_3, 47758c2ecf20Sopenharmony_ci GP_4_14_FN, FN_IP10_2_0, 47768c2ecf20Sopenharmony_ci GP_4_13_FN, FN_IP9_30_28, 47778c2ecf20Sopenharmony_ci GP_4_12_FN, FN_IP9_27_25, 47788c2ecf20Sopenharmony_ci GP_4_11_FN, FN_IP9_24_22, 47798c2ecf20Sopenharmony_ci GP_4_10_FN, FN_IP9_21_19, 47808c2ecf20Sopenharmony_ci GP_4_9_FN, FN_IP9_18_17, 47818c2ecf20Sopenharmony_ci GP_4_8_FN, FN_IP9_16_15, 47828c2ecf20Sopenharmony_ci GP_4_7_FN, FN_IP9_14_12, 47838c2ecf20Sopenharmony_ci GP_4_6_FN, FN_IP9_11_9, 47848c2ecf20Sopenharmony_ci GP_4_5_FN, FN_IP9_8_6, 47858c2ecf20Sopenharmony_ci GP_4_4_FN, FN_IP9_5_3, 47868c2ecf20Sopenharmony_ci GP_4_3_FN, FN_IP9_2_0, 47878c2ecf20Sopenharmony_ci GP_4_2_FN, FN_IP8_31_29, 47888c2ecf20Sopenharmony_ci GP_4_1_FN, FN_IP8_28_26, 47898c2ecf20Sopenharmony_ci GP_4_0_FN, FN_IP8_25_23 )) 47908c2ecf20Sopenharmony_ci }, 47918c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR5", 0xE6060018, 32, 1, GROUP( 47928c2ecf20Sopenharmony_ci 0, 0, 47938c2ecf20Sopenharmony_ci 0, 0, 47948c2ecf20Sopenharmony_ci 0, 0, 47958c2ecf20Sopenharmony_ci 0, 0, 47968c2ecf20Sopenharmony_ci GP_5_27_FN, FN_USB1_OVC, 47978c2ecf20Sopenharmony_ci GP_5_26_FN, FN_USB1_PWEN, 47988c2ecf20Sopenharmony_ci GP_5_25_FN, FN_USB0_OVC, 47998c2ecf20Sopenharmony_ci GP_5_24_FN, FN_USB0_PWEN, 48008c2ecf20Sopenharmony_ci GP_5_23_FN, FN_IP13_26_24, 48018c2ecf20Sopenharmony_ci GP_5_22_FN, FN_IP13_23_21, 48028c2ecf20Sopenharmony_ci GP_5_21_FN, FN_IP13_20_18, 48038c2ecf20Sopenharmony_ci GP_5_20_FN, FN_IP13_17_15, 48048c2ecf20Sopenharmony_ci GP_5_19_FN, FN_IP13_14_12, 48058c2ecf20Sopenharmony_ci GP_5_18_FN, FN_IP13_11_9, 48068c2ecf20Sopenharmony_ci GP_5_17_FN, FN_IP13_8_6, 48078c2ecf20Sopenharmony_ci GP_5_16_FN, FN_IP13_5_3, 48088c2ecf20Sopenharmony_ci GP_5_15_FN, FN_IP13_2_0, 48098c2ecf20Sopenharmony_ci GP_5_14_FN, FN_IP12_29_27, 48108c2ecf20Sopenharmony_ci GP_5_13_FN, FN_IP12_26_24, 48118c2ecf20Sopenharmony_ci GP_5_12_FN, FN_IP12_23_21, 48128c2ecf20Sopenharmony_ci GP_5_11_FN, FN_IP12_20_18, 48138c2ecf20Sopenharmony_ci GP_5_10_FN, FN_IP12_17_15, 48148c2ecf20Sopenharmony_ci GP_5_9_FN, FN_IP12_14_13, 48158c2ecf20Sopenharmony_ci GP_5_8_FN, FN_IP12_12_11, 48168c2ecf20Sopenharmony_ci GP_5_7_FN, FN_IP12_10_9, 48178c2ecf20Sopenharmony_ci GP_5_6_FN, FN_IP12_8_6, 48188c2ecf20Sopenharmony_ci GP_5_5_FN, FN_IP12_5_3, 48198c2ecf20Sopenharmony_ci GP_5_4_FN, FN_IP12_2_0, 48208c2ecf20Sopenharmony_ci GP_5_3_FN, FN_IP11_29_27, 48218c2ecf20Sopenharmony_ci GP_5_2_FN, FN_IP11_26_24, 48228c2ecf20Sopenharmony_ci GP_5_1_FN, FN_IP11_23_21, 48238c2ecf20Sopenharmony_ci GP_5_0_FN, FN_IP11_20_18 )) 48248c2ecf20Sopenharmony_ci }, 48258c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR6", 0xE606001C, 32, 1, GROUP( 48268c2ecf20Sopenharmony_ci 0, 0, 48278c2ecf20Sopenharmony_ci 0, 0, 48288c2ecf20Sopenharmony_ci 0, 0, 48298c2ecf20Sopenharmony_ci 0, 0, 48308c2ecf20Sopenharmony_ci 0, 0, 48318c2ecf20Sopenharmony_ci 0, 0, 48328c2ecf20Sopenharmony_ci GP_6_25_FN, FN_IP0_21_20, 48338c2ecf20Sopenharmony_ci GP_6_24_FN, FN_IP0_19_18, 48348c2ecf20Sopenharmony_ci GP_6_23_FN, FN_IP0_17, 48358c2ecf20Sopenharmony_ci GP_6_22_FN, FN_IP0_16, 48368c2ecf20Sopenharmony_ci GP_6_21_FN, FN_IP0_15, 48378c2ecf20Sopenharmony_ci GP_6_20_FN, FN_IP0_14, 48388c2ecf20Sopenharmony_ci GP_6_19_FN, FN_IP0_13, 48398c2ecf20Sopenharmony_ci GP_6_18_FN, FN_IP0_12, 48408c2ecf20Sopenharmony_ci GP_6_17_FN, FN_IP0_11, 48418c2ecf20Sopenharmony_ci GP_6_16_FN, FN_IP0_10, 48428c2ecf20Sopenharmony_ci GP_6_15_FN, FN_IP0_9_8, 48438c2ecf20Sopenharmony_ci GP_6_14_FN, FN_IP0_0, 48448c2ecf20Sopenharmony_ci GP_6_13_FN, FN_SD1_DATA3, 48458c2ecf20Sopenharmony_ci GP_6_12_FN, FN_SD1_DATA2, 48468c2ecf20Sopenharmony_ci GP_6_11_FN, FN_SD1_DATA1, 48478c2ecf20Sopenharmony_ci GP_6_10_FN, FN_SD1_DATA0, 48488c2ecf20Sopenharmony_ci GP_6_9_FN, FN_SD1_CMD, 48498c2ecf20Sopenharmony_ci GP_6_8_FN, FN_SD1_CLK, 48508c2ecf20Sopenharmony_ci GP_6_7_FN, FN_SD0_WP, 48518c2ecf20Sopenharmony_ci GP_6_6_FN, FN_SD0_CD, 48528c2ecf20Sopenharmony_ci GP_6_5_FN, FN_SD0_DATA3, 48538c2ecf20Sopenharmony_ci GP_6_4_FN, FN_SD0_DATA2, 48548c2ecf20Sopenharmony_ci GP_6_3_FN, FN_SD0_DATA1, 48558c2ecf20Sopenharmony_ci GP_6_2_FN, FN_SD0_DATA0, 48568c2ecf20Sopenharmony_ci GP_6_1_FN, FN_SD0_CMD, 48578c2ecf20Sopenharmony_ci GP_6_0_FN, FN_SD0_CLK )) 48588c2ecf20Sopenharmony_ci }, 48598c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR0", 0xE6060020, 32, 48608c2ecf20Sopenharmony_ci GROUP(2, 2, 2, 1, 1, 2, 2, 2, 1, 1, 1, 1, 48618c2ecf20Sopenharmony_ci 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1), 48628c2ecf20Sopenharmony_ci GROUP( 48638c2ecf20Sopenharmony_ci /* IP0_31_30 [2] */ 48648c2ecf20Sopenharmony_ci FN_D5, FN_SCIF4_RXD_B, FN_I2C0_SCL_D, 0, 48658c2ecf20Sopenharmony_ci /* IP0_29_28 [2] */ 48668c2ecf20Sopenharmony_ci FN_D4, FN_I2C3_SDA_B, FN_SCIF5_TXD_B, 0, 48678c2ecf20Sopenharmony_ci /* IP0_27_26 [2] */ 48688c2ecf20Sopenharmony_ci FN_D3, FN_I2C3_SCL_B, FN_SCIF5_RXD_B, 0, 48698c2ecf20Sopenharmony_ci /* IP0_25 [1] */ 48708c2ecf20Sopenharmony_ci FN_D2, FN_SCIFA3_TXD_B, 48718c2ecf20Sopenharmony_ci /* IP0_24 [1] */ 48728c2ecf20Sopenharmony_ci FN_D1, FN_SCIFA3_RXD_B, 48738c2ecf20Sopenharmony_ci /* IP0_23_22 [2] */ 48748c2ecf20Sopenharmony_ci FN_D0, FN_SCIFA3_SCK_B, FN_IRQ4, 0, 48758c2ecf20Sopenharmony_ci /* IP0_21_20 [2] */ 48768c2ecf20Sopenharmony_ci FN_MMC_D7, FN_SCIF0_TXD, FN_I2C2_SDA_B, FN_CAN1_TX, 48778c2ecf20Sopenharmony_ci /* IP0_19_18 [2] */ 48788c2ecf20Sopenharmony_ci FN_MMC_D6, FN_SCIF0_RXD, FN_I2C2_SCL_B, FN_CAN1_RX, 48798c2ecf20Sopenharmony_ci /* IP0_17 [1] */ 48808c2ecf20Sopenharmony_ci FN_MMC_D5, FN_SD2_WP, 48818c2ecf20Sopenharmony_ci /* IP0_16 [1] */ 48828c2ecf20Sopenharmony_ci FN_MMC_D4, FN_SD2_CD, 48838c2ecf20Sopenharmony_ci /* IP0_15 [1] */ 48848c2ecf20Sopenharmony_ci FN_MMC_D3, FN_SD2_DATA3, 48858c2ecf20Sopenharmony_ci /* IP0_14 [1] */ 48868c2ecf20Sopenharmony_ci FN_MMC_D2, FN_SD2_DATA2, 48878c2ecf20Sopenharmony_ci /* IP0_13 [1] */ 48888c2ecf20Sopenharmony_ci FN_MMC_D1, FN_SD2_DATA1, 48898c2ecf20Sopenharmony_ci /* IP0_12 [1] */ 48908c2ecf20Sopenharmony_ci FN_MMC_D0, FN_SD2_DATA0, 48918c2ecf20Sopenharmony_ci /* IP0_11 [1] */ 48928c2ecf20Sopenharmony_ci FN_MMC_CMD, FN_SD2_CMD, 48938c2ecf20Sopenharmony_ci /* IP0_10 [1] */ 48948c2ecf20Sopenharmony_ci FN_MMC_CLK, FN_SD2_CLK, 48958c2ecf20Sopenharmony_ci /* IP0_9_8 [2] */ 48968c2ecf20Sopenharmony_ci FN_SD1_WP, FN_IRQ7, FN_CAN0_TX, 0, 48978c2ecf20Sopenharmony_ci /* IP0_7 [1] */ 48988c2ecf20Sopenharmony_ci 0, 0, 48998c2ecf20Sopenharmony_ci /* IP0_6 [1] */ 49008c2ecf20Sopenharmony_ci 0, 0, 49018c2ecf20Sopenharmony_ci /* IP0_5 [1] */ 49028c2ecf20Sopenharmony_ci 0, 0, 49038c2ecf20Sopenharmony_ci /* IP0_4 [1] */ 49048c2ecf20Sopenharmony_ci 0, 0, 49058c2ecf20Sopenharmony_ci /* IP0_3 [1] */ 49068c2ecf20Sopenharmony_ci 0, 0, 49078c2ecf20Sopenharmony_ci /* IP0_2 [1] */ 49088c2ecf20Sopenharmony_ci 0, 0, 49098c2ecf20Sopenharmony_ci /* IP0_1 [1] */ 49108c2ecf20Sopenharmony_ci 0, 0, 49118c2ecf20Sopenharmony_ci /* IP0_0 [1] */ 49128c2ecf20Sopenharmony_ci FN_SD1_CD, FN_CAN0_RX, )) 49138c2ecf20Sopenharmony_ci }, 49148c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR1", 0xE6060024, 32, 49158c2ecf20Sopenharmony_ci GROUP(2, 2, 1, 1, 1, 1, 2, 2, 2, 3, 2, 2, 49168c2ecf20Sopenharmony_ci 3, 2, 2, 2, 2), 49178c2ecf20Sopenharmony_ci GROUP( 49188c2ecf20Sopenharmony_ci /* IP1_31_30 [2] */ 49198c2ecf20Sopenharmony_ci FN_A6, FN_SCIFB0_CTS_N, FN_SCIFA4_RXD_B, FN_TPUTO2_C, 49208c2ecf20Sopenharmony_ci /* IP1_29_28 [2] */ 49218c2ecf20Sopenharmony_ci FN_A5, FN_SCIFB0_RXD, FN_PWM4_B, FN_TPUTO3_C, 49228c2ecf20Sopenharmony_ci /* IP1_27 [1] */ 49238c2ecf20Sopenharmony_ci FN_A4, FN_SCIFB0_TXD, 49248c2ecf20Sopenharmony_ci /* IP1_26 [1] */ 49258c2ecf20Sopenharmony_ci FN_A3, FN_SCIFB0_SCK, 49268c2ecf20Sopenharmony_ci /* IP1_25 [1] */ 49278c2ecf20Sopenharmony_ci 0, 0, 49288c2ecf20Sopenharmony_ci /* IP1_24 [1] */ 49298c2ecf20Sopenharmony_ci FN_A1, FN_SCIFB1_TXD, 49308c2ecf20Sopenharmony_ci /* IP1_23_22 [2] */ 49318c2ecf20Sopenharmony_ci FN_A0, FN_SCIFB1_SCK, FN_PWM3_B, 0, 49328c2ecf20Sopenharmony_ci /* IP1_21_20 [2] */ 49338c2ecf20Sopenharmony_ci FN_D15, FN_SCIFA1_TXD, FN_I2C5_SDA_B, 0, 49348c2ecf20Sopenharmony_ci /* IP1_19_18 [2] */ 49358c2ecf20Sopenharmony_ci FN_D14, FN_SCIFA1_RXD, FN_I2C5_SCL_B, 0, 49368c2ecf20Sopenharmony_ci /* IP1_17_15 [3] */ 49378c2ecf20Sopenharmony_ci FN_D13, FN_SCIFA1_SCK, 0, FN_PWM2_C, FN_TCLK2_B, 49388c2ecf20Sopenharmony_ci 0, 0, 0, 49398c2ecf20Sopenharmony_ci /* IP1_14_13 [2] */ 49408c2ecf20Sopenharmony_ci FN_D12, FN_HSCIF2_HRTS_N, FN_SCIF1_TXD_C, FN_I2C1_SDA_D, 49418c2ecf20Sopenharmony_ci /* IP1_12_11 [2] */ 49428c2ecf20Sopenharmony_ci FN_D11, FN_HSCIF2_HCTS_N, FN_SCIF1_RXD_C, FN_I2C1_SCL_D, 49438c2ecf20Sopenharmony_ci /* IP1_10_8 [3] */ 49448c2ecf20Sopenharmony_ci FN_D10, FN_HSCIF2_HSCK, FN_SCIF1_SCK_C, FN_IRQ6, FN_PWM5_C, 49458c2ecf20Sopenharmony_ci 0, 0, 0, 49468c2ecf20Sopenharmony_ci /* IP1_7_6 [2] */ 49478c2ecf20Sopenharmony_ci FN_D9, FN_HSCIF2_HTX, FN_I2C1_SDA_B, 0, 49488c2ecf20Sopenharmony_ci /* IP1_5_4 [2] */ 49498c2ecf20Sopenharmony_ci FN_D8, FN_HSCIF2_HRX, FN_I2C1_SCL_B, 0, 49508c2ecf20Sopenharmony_ci /* IP1_3_2 [2] */ 49518c2ecf20Sopenharmony_ci FN_D7, FN_IRQ3, FN_TCLK1, FN_PWM6_B, 49528c2ecf20Sopenharmony_ci /* IP1_1_0 [2] */ 49538c2ecf20Sopenharmony_ci FN_D6, FN_SCIF4_TXD_B, FN_I2C0_SDA_D, 0, )) 49548c2ecf20Sopenharmony_ci }, 49558c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR2", 0xE6060028, 32, 49568c2ecf20Sopenharmony_ci GROUP(2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2), 49578c2ecf20Sopenharmony_ci GROUP( 49588c2ecf20Sopenharmony_ci /* IP2_31_30 [2] */ 49598c2ecf20Sopenharmony_ci FN_A20, FN_SPCLK, 0, 0, 49608c2ecf20Sopenharmony_ci /* IP2_29_27 [3] */ 49618c2ecf20Sopenharmony_ci FN_A19, FN_MSIOF2_SS2, FN_PWM4, FN_TPUTO2, 49628c2ecf20Sopenharmony_ci 0, 0, 0, 0, 49638c2ecf20Sopenharmony_ci /* IP2_26_24 [3] */ 49648c2ecf20Sopenharmony_ci FN_A18, FN_MSIOF2_SS1, FN_SCIF4_TXD_E, FN_CAN1_TX_B, 49658c2ecf20Sopenharmony_ci 0, 0, 0, 0, 49668c2ecf20Sopenharmony_ci /* IP2_23_21 [3] */ 49678c2ecf20Sopenharmony_ci FN_A17, FN_MSIOF2_SYNC, FN_SCIF4_RXD_E, FN_CAN1_RX_B, 49688c2ecf20Sopenharmony_ci 0, 0, 0, 0, 49698c2ecf20Sopenharmony_ci /* IP2_20_18 [3] */ 49708c2ecf20Sopenharmony_ci FN_A16, FN_MSIOF2_SCK, FN_HSCIF0_HSCK_B, FN_SPEEDIN, 49718c2ecf20Sopenharmony_ci 0, FN_CAN_CLK_C, FN_TPUTO2_B, 0, 49728c2ecf20Sopenharmony_ci /* IP2_17_16 [2] */ 49738c2ecf20Sopenharmony_ci FN_A15, FN_MSIOF2_TXD, FN_HSCIF0_HTX_B, FN_DACK1, 49748c2ecf20Sopenharmony_ci /* IP2_15_14 [2] */ 49758c2ecf20Sopenharmony_ci FN_A14, FN_MSIOF2_RXD, FN_HSCIF0_HRX_B, FN_DREQ1_N, 49768c2ecf20Sopenharmony_ci /* IP2_13_12 [2] */ 49778c2ecf20Sopenharmony_ci FN_A13, FN_MSIOF1_SS2, FN_SCIFA5_TXD_B, 0, 49788c2ecf20Sopenharmony_ci /* IP2_11_10 [2] */ 49798c2ecf20Sopenharmony_ci FN_A12, FN_MSIOF1_SS1, FN_SCIFA5_RXD_B, 0, 49808c2ecf20Sopenharmony_ci /* IP2_9_8 [2] */ 49818c2ecf20Sopenharmony_ci FN_A11, FN_MSIOF1_SYNC, FN_IIC0_SDA_B, 0, 49828c2ecf20Sopenharmony_ci /* IP2_7_6 [2] */ 49838c2ecf20Sopenharmony_ci FN_A10, FN_MSIOF1_SCK, FN_IIC0_SCL_B, 0, 49848c2ecf20Sopenharmony_ci /* IP2_5_4 [2] */ 49858c2ecf20Sopenharmony_ci FN_A9, FN_MSIOF1_TXD, FN_SCIFA0_TXD_B, 0, 49868c2ecf20Sopenharmony_ci /* IP2_3_2 [2] */ 49878c2ecf20Sopenharmony_ci FN_A8, FN_MSIOF1_RXD, FN_SCIFA0_RXD_B, 0, 49888c2ecf20Sopenharmony_ci /* IP2_1_0 [2] */ 49898c2ecf20Sopenharmony_ci FN_A7, FN_SCIFB0_RTS_N, FN_SCIFA4_TXD_B, 0, )) 49908c2ecf20Sopenharmony_ci }, 49918c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR3", 0xE606002C, 32, 49928c2ecf20Sopenharmony_ci GROUP(1, 1, 3, 3, 3, 3, 3, 2, 1, 1, 1, 2, 49938c2ecf20Sopenharmony_ci 2, 2, 2, 2), 49948c2ecf20Sopenharmony_ci GROUP( 49958c2ecf20Sopenharmony_ci /* IP3_31 [1] */ 49968c2ecf20Sopenharmony_ci FN_RD_WR_N, FN_ATAG1_N, 49978c2ecf20Sopenharmony_ci /* IP3_30 [1] */ 49988c2ecf20Sopenharmony_ci FN_RD_N, FN_ATACS11_N, 49998c2ecf20Sopenharmony_ci /* IP3_29_27 [3] */ 50008c2ecf20Sopenharmony_ci FN_BS_N, FN_DRACK0, FN_PWM1_C, FN_TPUTO0_C, FN_ATACS01_N, 50018c2ecf20Sopenharmony_ci 0, 0, 0, 50028c2ecf20Sopenharmony_ci /* IP3_26_24 [3] */ 50038c2ecf20Sopenharmony_ci FN_EX_CS5_N, FN_SCIFA2_TXD, FN_I2C2_SDA_E, FN_TS_SPSYNC_B, 50048c2ecf20Sopenharmony_ci 0, FN_FMIN, FN_SCIFB2_RTS_N, 0, 50058c2ecf20Sopenharmony_ci /* IP3_23_21 [3] */ 50068c2ecf20Sopenharmony_ci FN_EX_CS4_N, FN_SCIFA2_RXD, FN_I2C2_SCL_E, FN_TS_SDEN_B, 50078c2ecf20Sopenharmony_ci 0, FN_FMCLK, FN_SCIFB2_CTS_N, 0, 50088c2ecf20Sopenharmony_ci /* IP3_20_18 [3] */ 50098c2ecf20Sopenharmony_ci FN_EX_CS3_N, FN_SCIFA2_SCK, FN_SCIF4_TXD_C, FN_TS_SCK_B, 50108c2ecf20Sopenharmony_ci 0, FN_BPFCLK, FN_SCIFB2_SCK, 0, 50118c2ecf20Sopenharmony_ci /* IP3_17_15 [3] */ 50128c2ecf20Sopenharmony_ci FN_EX_CS2_N, FN_PWM0, FN_SCIF4_RXD_C, FN_TS_SDATA_B, 50138c2ecf20Sopenharmony_ci 0, FN_TPUTO3, FN_SCIFB2_TXD, 0, 50148c2ecf20Sopenharmony_ci /* IP3_14_13 [2] */ 50158c2ecf20Sopenharmony_ci FN_EX_CS1_N, FN_TPUTO3_B, FN_SCIFB2_RXD, FN_VI1_DATA11, 50168c2ecf20Sopenharmony_ci /* IP3_12 [1] */ 50178c2ecf20Sopenharmony_ci FN_EX_CS0_N, FN_VI1_DATA10, 50188c2ecf20Sopenharmony_ci /* IP3_11 [1] */ 50198c2ecf20Sopenharmony_ci FN_CS1_N_A26, FN_VI1_DATA9, 50208c2ecf20Sopenharmony_ci /* IP3_10 [1] */ 50218c2ecf20Sopenharmony_ci FN_CS0_N, FN_VI1_DATA8, 50228c2ecf20Sopenharmony_ci /* IP3_9_8 [2] */ 50238c2ecf20Sopenharmony_ci FN_A25, FN_SSL, FN_ATARD1_N, 0, 50248c2ecf20Sopenharmony_ci /* IP3_7_6 [2] */ 50258c2ecf20Sopenharmony_ci FN_A24, FN_IO3, FN_EX_WAIT2, 0, 50268c2ecf20Sopenharmony_ci /* IP3_5_4 [2] */ 50278c2ecf20Sopenharmony_ci FN_A23, FN_IO2, 0, FN_ATAWR1_N, 50288c2ecf20Sopenharmony_ci /* IP3_3_2 [2] */ 50298c2ecf20Sopenharmony_ci FN_A22, FN_MISO_IO1, 0, FN_ATADIR1_N, 50308c2ecf20Sopenharmony_ci /* IP3_1_0 [2] */ 50318c2ecf20Sopenharmony_ci FN_A21, FN_MOSI_IO0, 0, 0, )) 50328c2ecf20Sopenharmony_ci }, 50338c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR4", 0xE6060030, 32, 50348c2ecf20Sopenharmony_ci GROUP(2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 2), 50358c2ecf20Sopenharmony_ci GROUP( 50368c2ecf20Sopenharmony_ci /* IP4_31_30 [2] */ 50378c2ecf20Sopenharmony_ci FN_DU0_DG4, FN_LCDOUT12, 0, 0, 50388c2ecf20Sopenharmony_ci /* IP4_29_28 [2] */ 50398c2ecf20Sopenharmony_ci FN_DU0_DG3, FN_LCDOUT11, 0, 0, 50408c2ecf20Sopenharmony_ci /* IP4_27_26 [2] */ 50418c2ecf20Sopenharmony_ci FN_DU0_DG2, FN_LCDOUT10, 0, 0, 50428c2ecf20Sopenharmony_ci /* IP4_25_23 [3] */ 50438c2ecf20Sopenharmony_ci FN_DU0_DG1, FN_LCDOUT9, FN_SCIFA0_TXD_C, FN_I2C3_SDA_D, 50448c2ecf20Sopenharmony_ci 0, 0, 0, 0, 50458c2ecf20Sopenharmony_ci /* IP4_22_20 [3] */ 50468c2ecf20Sopenharmony_ci FN_DU0_DG0, FN_LCDOUT8, FN_SCIFA0_RXD_C, FN_I2C3_SCL_D, 50478c2ecf20Sopenharmony_ci 0, 0, 0, 0, 50488c2ecf20Sopenharmony_ci /* IP4_19_18 [2] */ 50498c2ecf20Sopenharmony_ci FN_DU0_DR7, FN_LCDOUT23, 0, 0, 50508c2ecf20Sopenharmony_ci /* IP4_17_16 [2] */ 50518c2ecf20Sopenharmony_ci FN_DU0_DR6, FN_LCDOUT22, 0, 0, 50528c2ecf20Sopenharmony_ci /* IP4_15_14 [2] */ 50538c2ecf20Sopenharmony_ci FN_DU0_DR5, FN_LCDOUT21, 0, 0, 50548c2ecf20Sopenharmony_ci /* IP4_13_12 [2] */ 50558c2ecf20Sopenharmony_ci FN_DU0_DR4, FN_LCDOUT20, 0, 0, 50568c2ecf20Sopenharmony_ci /* IP4_11_10 [2] */ 50578c2ecf20Sopenharmony_ci FN_DU0_DR3, FN_LCDOUT19, 0, 0, 50588c2ecf20Sopenharmony_ci /* IP4_9_8 [2] */ 50598c2ecf20Sopenharmony_ci FN_DU0_DR2, FN_LCDOUT18, 0, 0, 50608c2ecf20Sopenharmony_ci /* IP4_7_5 [3] */ 50618c2ecf20Sopenharmony_ci FN_DU0_DR1, FN_LCDOUT17, FN_SCIF5_TXD_C, FN_I2C2_SDA_D, 50628c2ecf20Sopenharmony_ci 0, 0, 0, 0, 50638c2ecf20Sopenharmony_ci /* IP4_4_2 [3] */ 50648c2ecf20Sopenharmony_ci FN_DU0_DR0, FN_LCDOUT16, FN_SCIF5_RXD_C, FN_I2C2_SCL_D, 50658c2ecf20Sopenharmony_ci 0, 0, 0, 0, 50668c2ecf20Sopenharmony_ci /* IP4_1_0 [2] */ 50678c2ecf20Sopenharmony_ci FN_EX_WAIT0, FN_CAN_CLK_B, FN_SCIF_CLK, 0, )) 50688c2ecf20Sopenharmony_ci }, 50698c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR5", 0xE6060034, 32, 50708c2ecf20Sopenharmony_ci GROUP(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 50718c2ecf20Sopenharmony_ci 2, 2, 2), 50728c2ecf20Sopenharmony_ci GROUP( 50738c2ecf20Sopenharmony_ci /* IP5_31_30 [2] */ 50748c2ecf20Sopenharmony_ci FN_DU0_EXHSYNC_DU0_HSYNC, FN_QSTH_QHS, 0, 0, 50758c2ecf20Sopenharmony_ci /* IP5_29_28 [2] */ 50768c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT1, FN_QSTVB_QVE, 0, 0, 50778c2ecf20Sopenharmony_ci /* IP5_27_26 [2] */ 50788c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT0, FN_QCLK, 0, 0, 50798c2ecf20Sopenharmony_ci /* IP5_25_24 [2] */ 50808c2ecf20Sopenharmony_ci FN_DU0_DOTCLKIN, FN_QSTVA_QVS, 0, 0, 50818c2ecf20Sopenharmony_ci /* IP5_23_22 [2] */ 50828c2ecf20Sopenharmony_ci FN_DU0_DB7, FN_LCDOUT7, 0, 0, 50838c2ecf20Sopenharmony_ci /* IP5_21_20 [2] */ 50848c2ecf20Sopenharmony_ci FN_DU0_DB6, FN_LCDOUT6, 0, 0, 50858c2ecf20Sopenharmony_ci /* IP5_19_18 [2] */ 50868c2ecf20Sopenharmony_ci FN_DU0_DB5, FN_LCDOUT5, 0, 0, 50878c2ecf20Sopenharmony_ci /* IP5_17_16 [2] */ 50888c2ecf20Sopenharmony_ci FN_DU0_DB4, FN_LCDOUT4, 0, 0, 50898c2ecf20Sopenharmony_ci /* IP5_15_14 [2] */ 50908c2ecf20Sopenharmony_ci FN_DU0_DB3, FN_LCDOUT3, 0, 0, 50918c2ecf20Sopenharmony_ci /* IP5_13_12 [2] */ 50928c2ecf20Sopenharmony_ci FN_DU0_DB2, FN_LCDOUT2, 0, 0, 50938c2ecf20Sopenharmony_ci /* IP5_11_9 [3] */ 50948c2ecf20Sopenharmony_ci FN_DU0_DB1, FN_LCDOUT1, FN_SCIFA4_TXD_C, FN_I2C4_SDA_D, 50958c2ecf20Sopenharmony_ci FN_CAN0_TX_C, 0, 0, 0, 50968c2ecf20Sopenharmony_ci /* IP5_8_6 [3] */ 50978c2ecf20Sopenharmony_ci FN_DU0_DB0, FN_LCDOUT0, FN_SCIFA4_RXD_C, FN_I2C4_SCL_D, 50988c2ecf20Sopenharmony_ci FN_CAN0_RX_C, 0, 0, 0, 50998c2ecf20Sopenharmony_ci /* IP5_5_4 [2] */ 51008c2ecf20Sopenharmony_ci FN_DU0_DG7, FN_LCDOUT15, 0, 0, 51018c2ecf20Sopenharmony_ci /* IP5_3_2 [2] */ 51028c2ecf20Sopenharmony_ci FN_DU0_DG6, FN_LCDOUT14, 0, 0, 51038c2ecf20Sopenharmony_ci /* IP5_1_0 [2] */ 51048c2ecf20Sopenharmony_ci FN_DU0_DG5, FN_LCDOUT13, 0, 0, )) 51058c2ecf20Sopenharmony_ci }, 51068c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR6", 0xE6060038, 32, 51078c2ecf20Sopenharmony_ci GROUP(3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 51088c2ecf20Sopenharmony_ci 1, 1, 2, 2, 2, 2), 51098c2ecf20Sopenharmony_ci GROUP( 51108c2ecf20Sopenharmony_ci /* IP6_31_29 [3] */ 51118c2ecf20Sopenharmony_ci FN_ETH_MDIO, FN_VI0_G0, FN_MSIOF2_RXD_B, FN_I2C5_SCL_D, 51128c2ecf20Sopenharmony_ci FN_AVB_TX_CLK, FN_ADIDATA, 0, 0, 51138c2ecf20Sopenharmony_ci /* IP6_28_26 [3] */ 51148c2ecf20Sopenharmony_ci FN_VI0_VSYNC_N, FN_SCIF0_TXD_B, FN_I2C0_SDA_C, 51158c2ecf20Sopenharmony_ci FN_AUDIO_CLKOUT_B, FN_AVB_TX_EN, 0, 0, 0, 51168c2ecf20Sopenharmony_ci /* IP6_25_23 [3] */ 51178c2ecf20Sopenharmony_ci FN_VI0_HSYNC_N, FN_SCIF0_RXD_B, FN_I2C0_SCL_C, FN_IERX_C, 51188c2ecf20Sopenharmony_ci FN_AVB_COL, 0, 0, 0, 51198c2ecf20Sopenharmony_ci /* IP6_22_20 [3] */ 51208c2ecf20Sopenharmony_ci FN_VI0_FIELD, FN_I2C3_SDA, FN_SCIFA5_TXD_C, FN_IECLK_C, 51218c2ecf20Sopenharmony_ci FN_AVB_RX_ER, 0, 0, 0, 51228c2ecf20Sopenharmony_ci /* IP6_19_17 [3] */ 51238c2ecf20Sopenharmony_ci FN_VI0_CLKENB, FN_I2C3_SCL, FN_SCIFA5_RXD_C, FN_IETX_C, 51248c2ecf20Sopenharmony_ci FN_AVB_RXD7, 0, 0, 0, 51258c2ecf20Sopenharmony_ci /* IP6_16 [1] */ 51268c2ecf20Sopenharmony_ci FN_VI0_DATA7_VI0_B7, FN_AVB_RXD6, 51278c2ecf20Sopenharmony_ci /* IP6_15 [1] */ 51288c2ecf20Sopenharmony_ci FN_VI0_DATA6_VI0_B6, FN_AVB_RXD5, 51298c2ecf20Sopenharmony_ci /* IP6_14 [1] */ 51308c2ecf20Sopenharmony_ci FN_VI0_DATA5_VI0_B5, FN_AVB_RXD4, 51318c2ecf20Sopenharmony_ci /* IP6_13 [1] */ 51328c2ecf20Sopenharmony_ci FN_VI0_DATA4_VI0_B4, FN_AVB_RXD3, 51338c2ecf20Sopenharmony_ci /* IP6_12 [1] */ 51348c2ecf20Sopenharmony_ci FN_VI0_DATA3_VI0_B3, FN_AVB_RXD2, 51358c2ecf20Sopenharmony_ci /* IP6_11 [1] */ 51368c2ecf20Sopenharmony_ci FN_VI0_DATA2_VI0_B2, FN_AVB_RXD1, 51378c2ecf20Sopenharmony_ci /* IP6_10 [1] */ 51388c2ecf20Sopenharmony_ci FN_VI0_DATA1_VI0_B1, FN_AVB_RXD0, 51398c2ecf20Sopenharmony_ci /* IP6_9 [1] */ 51408c2ecf20Sopenharmony_ci FN_VI0_DATA0_VI0_B0, FN_AVB_RX_DV, 51418c2ecf20Sopenharmony_ci /* IP6_8 [1] */ 51428c2ecf20Sopenharmony_ci FN_VI0_CLK, FN_AVB_RX_CLK, 51438c2ecf20Sopenharmony_ci /* IP6_7_6 [2] */ 51448c2ecf20Sopenharmony_ci FN_DU0_CDE, FN_QPOLB, 0, 0, 51458c2ecf20Sopenharmony_ci /* IP6_5_4 [2] */ 51468c2ecf20Sopenharmony_ci FN_DU0_DISP, FN_QPOLA, 0, 0, 51478c2ecf20Sopenharmony_ci /* IP6_3_2 [2] */ 51488c2ecf20Sopenharmony_ci FN_DU0_EXODDF_DU0_ODDF_DISP_CDE, FN_QCPV_QDE, 0, 51498c2ecf20Sopenharmony_ci 0, 51508c2ecf20Sopenharmony_ci /* IP6_1_0 [2] */ 51518c2ecf20Sopenharmony_ci FN_DU0_EXVSYNC_DU0_VSYNC, FN_QSTB_QHE, 0, 0, )) 51528c2ecf20Sopenharmony_ci }, 51538c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR7", 0xE606003C, 32, 51548c2ecf20Sopenharmony_ci GROUP(1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), 51558c2ecf20Sopenharmony_ci GROUP( 51568c2ecf20Sopenharmony_ci /* IP7_31 [1] */ 51578c2ecf20Sopenharmony_ci FN_DREQ0_N, FN_SCIFB1_RXD, 51588c2ecf20Sopenharmony_ci /* IP7_30 [1] */ 51598c2ecf20Sopenharmony_ci 0, 0, 51608c2ecf20Sopenharmony_ci /* IP7_29_27 [3] */ 51618c2ecf20Sopenharmony_ci FN_ETH_TXD0, FN_VI0_R2, FN_SCIF3_RXD_B, FN_I2C4_SCL_E, 51628c2ecf20Sopenharmony_ci FN_AVB_GTX_CLK, FN_SSI_WS6_B, 0, 0, 51638c2ecf20Sopenharmony_ci /* IP7_26_24 [3] */ 51648c2ecf20Sopenharmony_ci FN_ETH_MAGIC, FN_VI0_R1, FN_SCIF3_SCK_B, FN_AVB_TX_ER, 51658c2ecf20Sopenharmony_ci FN_SSI_SCK6_B, 0, 0, 0, 51668c2ecf20Sopenharmony_ci /* IP7_23_21 [3] */ 51678c2ecf20Sopenharmony_ci FN_ETH_TX_EN, FN_VI0_R0, FN_SCIF2_TXD_C, FN_IIC0_SDA_D, 51688c2ecf20Sopenharmony_ci FN_AVB_TXD7, FN_SSI_SDATA5_B, 0, 0, 51698c2ecf20Sopenharmony_ci /* IP7_20_18 [3] */ 51708c2ecf20Sopenharmony_ci FN_ETH_TXD1, FN_VI0_G7, FN_SCIF2_RXD_C, FN_IIC0_SCL_D, 51718c2ecf20Sopenharmony_ci FN_AVB_TXD6, FN_SSI_WS5_B, 0, 0, 51728c2ecf20Sopenharmony_ci /* IP7_17_15 [3] */ 51738c2ecf20Sopenharmony_ci FN_ETH_REFCLK, FN_VI0_G6, FN_SCIF2_SCK_C, FN_AVB_TXD5, 51748c2ecf20Sopenharmony_ci FN_SSI_SCK5_B, 0, 0, 0, 51758c2ecf20Sopenharmony_ci /* IP7_14_12 [3] */ 51768c2ecf20Sopenharmony_ci FN_ETH_LINK, FN_VI0_G5, FN_MSIOF2_SS2_B, FN_SCIF4_TXD_D, 51778c2ecf20Sopenharmony_ci FN_AVB_TXD4, FN_ADICHS2, 0, 0, 51788c2ecf20Sopenharmony_ci /* IP7_11_9 [3] */ 51798c2ecf20Sopenharmony_ci FN_ETH_RXD1, FN_VI0_G4, FN_MSIOF2_SS1_B, FN_SCIF4_RXD_D, 51808c2ecf20Sopenharmony_ci FN_AVB_TXD3, FN_ADICHS1, 0, 0, 51818c2ecf20Sopenharmony_ci /* IP7_8_6 [3] */ 51828c2ecf20Sopenharmony_ci FN_ETH_RXD0, FN_VI0_G3, FN_MSIOF2_SYNC_B, FN_CAN0_TX_B, 51838c2ecf20Sopenharmony_ci FN_AVB_TXD2, FN_ADICHS0, 0, 0, 51848c2ecf20Sopenharmony_ci /* IP7_5_3 [3] */ 51858c2ecf20Sopenharmony_ci FN_ETH_RX_ER, FN_VI0_G2, FN_MSIOF2_SCK_B, FN_CAN0_RX_B, 51868c2ecf20Sopenharmony_ci FN_AVB_TXD1, FN_ADICLK, 0, 0, 51878c2ecf20Sopenharmony_ci /* IP7_2_0 [3] */ 51888c2ecf20Sopenharmony_ci FN_ETH_CRS_DV, FN_VI0_G1, FN_MSIOF2_TXD_B, FN_I2C5_SDA_D, 51898c2ecf20Sopenharmony_ci FN_AVB_TXD0, FN_ADICS_SAMP, 0, 0, )) 51908c2ecf20Sopenharmony_ci }, 51918c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR8", 0xE6060040, 32, 51928c2ecf20Sopenharmony_ci GROUP(3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3), 51938c2ecf20Sopenharmony_ci GROUP( 51948c2ecf20Sopenharmony_ci /* IP8_31_29 [3] */ 51958c2ecf20Sopenharmony_ci FN_MSIOF0_RXD, FN_SCIF5_RXD, FN_I2C2_SCL_C, FN_DU1_DR2, 51968c2ecf20Sopenharmony_ci 0, FN_TS_SDEN_D, FN_FMCLK_C, 0, 51978c2ecf20Sopenharmony_ci /* IP8_28_26 [3] */ 51988c2ecf20Sopenharmony_ci FN_I2C1_SDA, FN_SCIF4_TXD, FN_IRQ5, FN_DU1_DR1, 51998c2ecf20Sopenharmony_ci 0, FN_TS_SCK_D, FN_BPFCLK_C, 0, 52008c2ecf20Sopenharmony_ci /* IP8_25_23 [3] */ 52018c2ecf20Sopenharmony_ci FN_I2C1_SCL, FN_SCIF4_RXD, FN_PWM5_B, FN_DU1_DR0, 52028c2ecf20Sopenharmony_ci 0, FN_TS_SDATA_D, FN_TPUTO1_B, 0, 52038c2ecf20Sopenharmony_ci /* IP8_22_20 [3] */ 52048c2ecf20Sopenharmony_ci FN_I2C0_SDA, FN_SCIF0_TXD_C, FN_TPUTO0, FN_CAN_CLK, 52058c2ecf20Sopenharmony_ci FN_DVC_MUTE, FN_CAN1_TX_D, 0, 0, 52068c2ecf20Sopenharmony_ci /* IP8_19_17 [3] */ 52078c2ecf20Sopenharmony_ci FN_I2C0_SCL, FN_SCIF0_RXD_C, FN_PWM5, FN_TCLK1_B, 52088c2ecf20Sopenharmony_ci FN_AVB_GTXREFCLK, FN_CAN1_RX_D, FN_TPUTO0_B, 0, 52098c2ecf20Sopenharmony_ci /* IP8_16_15 [2] */ 52108c2ecf20Sopenharmony_ci FN_HSCIF0_HSCK, FN_SCIF_CLK_B, FN_AVB_CRS, FN_AUDIO_CLKC_B, 52118c2ecf20Sopenharmony_ci /* IP8_14_12 [3] */ 52128c2ecf20Sopenharmony_ci FN_HSCIF0_HRTS_N, FN_VI0_R7, FN_SCIF0_TXD_D, FN_I2C0_SDA_E, 52138c2ecf20Sopenharmony_ci FN_AVB_PHY_INT, FN_SSI_SDATA8_B, 0, 0, 52148c2ecf20Sopenharmony_ci /* IP8_11_9 [3] */ 52158c2ecf20Sopenharmony_ci FN_HSCIF0_HCTS_N, FN_VI0_R6, FN_SCIF0_RXD_D, FN_I2C0_SCL_E, 52168c2ecf20Sopenharmony_ci FN_AVB_MAGIC, FN_SSI_SDATA7_B, 0, 0, 52178c2ecf20Sopenharmony_ci /* IP8_8_6 [3] */ 52188c2ecf20Sopenharmony_ci FN_HSCIF0_HTX, FN_VI0_R5, FN_I2C1_SDA_C, FN_AUDIO_CLKB_B, 52198c2ecf20Sopenharmony_ci FN_AVB_LINK, FN_SSI_WS78_B, 0, 0, 52208c2ecf20Sopenharmony_ci /* IP8_5_3 [3] */ 52218c2ecf20Sopenharmony_ci FN_HSCIF0_HRX, FN_VI0_R4, FN_I2C1_SCL_C, FN_AUDIO_CLKA_B, 52228c2ecf20Sopenharmony_ci FN_AVB_MDIO, FN_SSI_SCK78_B, 0, 0, 52238c2ecf20Sopenharmony_ci /* IP8_2_0 [3] */ 52248c2ecf20Sopenharmony_ci FN_ETH_MDC, FN_VI0_R3, FN_SCIF3_TXD_B, FN_I2C4_SDA_E, 52258c2ecf20Sopenharmony_ci FN_AVB_MDC, FN_SSI_SDATA6_B, 0, 0, )) 52268c2ecf20Sopenharmony_ci }, 52278c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR9", 0xE6060044, 32, 52288c2ecf20Sopenharmony_ci GROUP(1, 3, 3, 3, 3, 2, 2, 3, 3, 3, 3, 3), 52298c2ecf20Sopenharmony_ci GROUP( 52308c2ecf20Sopenharmony_ci /* IP9_31 [1] */ 52318c2ecf20Sopenharmony_ci 0, 0, 52328c2ecf20Sopenharmony_ci /* IP9_30_28 [3] */ 52338c2ecf20Sopenharmony_ci FN_SCIF1_SCK, FN_PWM3, FN_TCLK2, FN_DU1_DG5, 52348c2ecf20Sopenharmony_ci FN_SSI_SDATA1_B, 0, 0, 0, 52358c2ecf20Sopenharmony_ci /* IP9_27_25 [3] */ 52368c2ecf20Sopenharmony_ci FN_HSCIF1_HRTS_N, FN_SCIFA4_TXD, FN_IERX, FN_DU1_DG4, 52378c2ecf20Sopenharmony_ci FN_SSI_WS1_B, 0, 0, 0, 52388c2ecf20Sopenharmony_ci /* IP9_24_22 [3] */ 52398c2ecf20Sopenharmony_ci FN_HSCIF1_HCTS_N, FN_SCIFA4_RXD, FN_IECLK, FN_DU1_DG3, 52408c2ecf20Sopenharmony_ci FN_SSI_SCK1_B, 0, 0, 0, 52418c2ecf20Sopenharmony_ci /* IP9_21_19 [3] */ 52428c2ecf20Sopenharmony_ci FN_HSCIF1_HSCK, FN_PWM2, FN_IETX, FN_DU1_DG2, 52438c2ecf20Sopenharmony_ci FN_REMOCON_B, FN_SPEEDIN_B, 0, 0, 52448c2ecf20Sopenharmony_ci /* IP9_18_17 [2] */ 52458c2ecf20Sopenharmony_ci FN_HSCIF1_HTX, FN_I2C4_SDA, FN_TPUTO1, FN_DU1_DG1, 52468c2ecf20Sopenharmony_ci /* IP9_16_15 [2] */ 52478c2ecf20Sopenharmony_ci FN_HSCIF1_HRX, FN_I2C4_SCL, FN_PWM6, FN_DU1_DG0, 52488c2ecf20Sopenharmony_ci /* IP9_14_12 [3] */ 52498c2ecf20Sopenharmony_ci FN_MSIOF0_SS2, FN_SCIFA0_TXD, FN_TS_SPSYNC, FN_DU1_DR7, 52508c2ecf20Sopenharmony_ci 0, FN_FMIN_B, 0, 0, 52518c2ecf20Sopenharmony_ci /* IP9_11_9 [3] */ 52528c2ecf20Sopenharmony_ci FN_MSIOF0_SS1, FN_SCIFA0_RXD, FN_TS_SDEN, FN_DU1_DR6, 52538c2ecf20Sopenharmony_ci 0, FN_FMCLK_B, 0, 0, 52548c2ecf20Sopenharmony_ci /* IP9_8_6 [3] */ 52558c2ecf20Sopenharmony_ci FN_MSIOF0_SYNC, FN_PWM1, FN_TS_SCK, FN_DU1_DR5, 52568c2ecf20Sopenharmony_ci 0, FN_BPFCLK_B, 0, 0, 52578c2ecf20Sopenharmony_ci /* IP9_5_3 [3] */ 52588c2ecf20Sopenharmony_ci FN_MSIOF0_SCK, FN_IRQ0, FN_TS_SDATA, FN_DU1_DR4, 52598c2ecf20Sopenharmony_ci 0, FN_TPUTO1_C, 0, 0, 52608c2ecf20Sopenharmony_ci /* IP9_2_0 [3] */ 52618c2ecf20Sopenharmony_ci FN_MSIOF0_TXD, FN_SCIF5_TXD, FN_I2C2_SDA_C, FN_DU1_DR3, 52628c2ecf20Sopenharmony_ci 0, FN_TS_SPSYNC_D, FN_FMIN_C, 0, )) 52638c2ecf20Sopenharmony_ci }, 52648c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR10", 0xE6060048, 32, 52658c2ecf20Sopenharmony_ci GROUP(2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), 52668c2ecf20Sopenharmony_ci GROUP( 52678c2ecf20Sopenharmony_ci /* IP10_31_30 [2] */ 52688c2ecf20Sopenharmony_ci FN_SSI_SCK5, FN_SCIFA3_SCK, FN_DU1_DOTCLKIN, 0, 52698c2ecf20Sopenharmony_ci /* IP10_29_27 [3] */ 52708c2ecf20Sopenharmony_ci FN_I2C2_SDA, FN_SCIFA5_TXD, FN_DU1_DB7, FN_AUDIO_CLKOUT_C, 52718c2ecf20Sopenharmony_ci 0, 0, 0, 0, 52728c2ecf20Sopenharmony_ci /* IP10_26_24 [3] */ 52738c2ecf20Sopenharmony_ci FN_I2C2_SCL, FN_SCIFA5_RXD, FN_DU1_DB6, FN_AUDIO_CLKC_C, 52748c2ecf20Sopenharmony_ci FN_SSI_SDATA4_B, 0, 0, 0, 52758c2ecf20Sopenharmony_ci /* IP10_23_21 [3] */ 52768c2ecf20Sopenharmony_ci FN_SCIF3_TXD, FN_I2C1_SDA_E, FN_FMIN_D, FN_DU1_DB5, 52778c2ecf20Sopenharmony_ci FN_AUDIO_CLKB_C, FN_SSI_WS4_B, 0, 0, 52788c2ecf20Sopenharmony_ci /* IP10_20_18 [3] */ 52798c2ecf20Sopenharmony_ci FN_SCIF3_RXD, FN_I2C1_SCL_E, FN_FMCLK_D, FN_DU1_DB4, 52808c2ecf20Sopenharmony_ci FN_AUDIO_CLKA_C, FN_SSI_SCK4_B, 0, 0, 52818c2ecf20Sopenharmony_ci /* IP10_17_15 [3] */ 52828c2ecf20Sopenharmony_ci FN_SCIF3_SCK, FN_IRQ2, FN_BPFCLK_D, FN_DU1_DB3, 52838c2ecf20Sopenharmony_ci FN_SSI_SDATA9_B, 0, 0, 0, 52848c2ecf20Sopenharmony_ci /* IP10_14_12 [3] */ 52858c2ecf20Sopenharmony_ci FN_SCIF2_SCK, FN_IRQ1, FN_DU1_DB2, FN_SSI_WS9_B, 52868c2ecf20Sopenharmony_ci 0, 0, 0, 0, 52878c2ecf20Sopenharmony_ci /* IP10_11_9 [3] */ 52888c2ecf20Sopenharmony_ci FN_SCIF2_TXD, FN_IIC0_SDA, FN_DU1_DB1, FN_SSI_SCK9_B, 52898c2ecf20Sopenharmony_ci 0, 0, 0, 0, 52908c2ecf20Sopenharmony_ci /* IP10_8_6 [3] */ 52918c2ecf20Sopenharmony_ci FN_SCIF2_RXD, FN_IIC0_SCL, FN_DU1_DB0, FN_SSI_SDATA2_B, 52928c2ecf20Sopenharmony_ci 0, 0, 0, 0, 52938c2ecf20Sopenharmony_ci /* IP10_5_3 [3] */ 52948c2ecf20Sopenharmony_ci FN_SCIF1_TXD, FN_I2C5_SDA, FN_DU1_DG7, FN_SSI_WS2_B, 52958c2ecf20Sopenharmony_ci 0, 0, 0, 0, 52968c2ecf20Sopenharmony_ci /* IP10_2_0 [3] */ 52978c2ecf20Sopenharmony_ci FN_SCIF1_RXD, FN_I2C5_SCL, FN_DU1_DG6, FN_SSI_SCK2_B, 52988c2ecf20Sopenharmony_ci 0, 0, 0, 0, )) 52998c2ecf20Sopenharmony_ci }, 53008c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR11", 0xE606004C, 32, 53018c2ecf20Sopenharmony_ci GROUP(2, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3), 53028c2ecf20Sopenharmony_ci GROUP( 53038c2ecf20Sopenharmony_ci /* IP11_31_30 [2] */ 53048c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53058c2ecf20Sopenharmony_ci /* IP11_29_27 [3] */ 53068c2ecf20Sopenharmony_ci FN_SSI_SDATA0, FN_MSIOF1_SCK_B, FN_PWM0_B, FN_ADICLK_B, 53078c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53088c2ecf20Sopenharmony_ci /* IP11_26_24 [3] */ 53098c2ecf20Sopenharmony_ci FN_SSI_WS0129, FN_MSIOF1_TXD_B, FN_SCIF5_TXD_D, FN_ADICS_SAMP_B, 53108c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53118c2ecf20Sopenharmony_ci /* IP11_23_21 [3] */ 53128c2ecf20Sopenharmony_ci FN_SSI_SCK0129, FN_MSIOF1_RXD_B, FN_SCIF5_RXD_D, FN_ADIDATA_B, 53138c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53148c2ecf20Sopenharmony_ci /* IP11_20_18 [3] */ 53158c2ecf20Sopenharmony_ci FN_SSI_SDATA7, FN_SCIFA2_TXD_B, FN_IRQ8, FN_AUDIO_CLKA_D, 53168c2ecf20Sopenharmony_ci FN_CAN_CLK_D, 0, 0, 0, 53178c2ecf20Sopenharmony_ci /* IP11_17_16 [2] */ 53188c2ecf20Sopenharmony_ci FN_SSI_WS78, FN_SCIFA2_RXD_B, FN_I2C5_SCL_C, FN_DU1_CDE, 53198c2ecf20Sopenharmony_ci /* IP11_15_14 [2] */ 53208c2ecf20Sopenharmony_ci FN_SSI_SCK78, FN_SCIFA2_SCK_B, FN_I2C5_SDA_C, FN_DU1_DISP, 53218c2ecf20Sopenharmony_ci /* IP11_13_11 [3] */ 53228c2ecf20Sopenharmony_ci FN_SSI_SDATA6, FN_SCIFA1_TXD_B, FN_I2C4_SDA_C, 53238c2ecf20Sopenharmony_ci FN_DU1_EXODDF_DU1_ODDF_DISP_CDE, 0, 0, 0, 0, 53248c2ecf20Sopenharmony_ci /* IP11_10_8 [3] */ 53258c2ecf20Sopenharmony_ci FN_SSI_WS6, FN_SCIFA1_RXD_B, FN_I2C4_SCL_C, 53268c2ecf20Sopenharmony_ci FN_DU1_EXVSYNC_DU1_VSYNC, 0, 0, 0, 0, 53278c2ecf20Sopenharmony_ci /* IP11_7_6 [2] */ 53288c2ecf20Sopenharmony_ci FN_SSI_SCK6, FN_SCIFA1_SCK_B, FN_DU1_EXHSYNC_DU1_HSYNC, 0, 53298c2ecf20Sopenharmony_ci /* IP11_5_3 [3] */ 53308c2ecf20Sopenharmony_ci FN_SSI_SDATA5, FN_SCIFA3_TXD, FN_I2C3_SDA_C, FN_DU1_DOTCLKOUT1, 53318c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53328c2ecf20Sopenharmony_ci /* IP11_2_0 [3] */ 53338c2ecf20Sopenharmony_ci FN_SSI_WS5, FN_SCIFA3_RXD, FN_I2C3_SCL_C, FN_DU1_DOTCLKOUT0, 53348c2ecf20Sopenharmony_ci 0, 0, 0, 0, )) 53358c2ecf20Sopenharmony_ci }, 53368c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR12", 0xE6060050, 32, 53378c2ecf20Sopenharmony_ci GROUP(2, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3), 53388c2ecf20Sopenharmony_ci GROUP( 53398c2ecf20Sopenharmony_ci /* IP12_31_30 [2] */ 53408c2ecf20Sopenharmony_ci 0, 0, 0, 0, 53418c2ecf20Sopenharmony_ci /* IP12_29_27 [3] */ 53428c2ecf20Sopenharmony_ci FN_SSI_SCK2, FN_HSCIF1_HTX_B, FN_VI1_DATA2, 0, 53438c2ecf20Sopenharmony_ci FN_ATAG0_N, FN_ETH_RXD1_B, 0, 0, 53448c2ecf20Sopenharmony_ci /* IP12_26_24 [3] */ 53458c2ecf20Sopenharmony_ci FN_SSI_SDATA1, FN_HSCIF1_HRX_B, FN_VI1_DATA1, 0, 53468c2ecf20Sopenharmony_ci FN_ATAWR0_N, FN_ETH_RXD0_B, 0, 0, 53478c2ecf20Sopenharmony_ci /* IP12_23_21 [3] */ 53488c2ecf20Sopenharmony_ci FN_SSI_WS1, FN_SCIF1_TXD_B, FN_IIC0_SDA_C, FN_VI1_DATA0, 53498c2ecf20Sopenharmony_ci FN_CAN0_TX_D, 0, FN_ETH_RX_ER_B, 0, 53508c2ecf20Sopenharmony_ci /* IP12_20_18 [3] */ 53518c2ecf20Sopenharmony_ci FN_SSI_SCK1, FN_SCIF1_RXD_B, FN_IIC0_SCL_C, FN_VI1_CLK, 53528c2ecf20Sopenharmony_ci FN_CAN0_RX_D, 0, FN_ETH_CRS_DV_B, 0, 53538c2ecf20Sopenharmony_ci /* IP12_17_15 [3] */ 53548c2ecf20Sopenharmony_ci FN_SSI_SDATA8, FN_SCIF1_SCK_B, FN_PWM1_B, FN_IRQ9, 53558c2ecf20Sopenharmony_ci FN_REMOCON, FN_DACK2, FN_ETH_MDIO_B, 0, 53568c2ecf20Sopenharmony_ci /* IP12_14_13 [2] */ 53578c2ecf20Sopenharmony_ci FN_SSI_SDATA4, FN_MLB_DAT, FN_IERX_B, 0, 53588c2ecf20Sopenharmony_ci /* IP12_12_11 [2] */ 53598c2ecf20Sopenharmony_ci FN_SSI_WS4, FN_MLB_SIG, FN_IECLK_B, 0, 53608c2ecf20Sopenharmony_ci /* IP12_10_9 [2] */ 53618c2ecf20Sopenharmony_ci FN_SSI_SCK4, FN_MLB_CLK, FN_IETX_B, 0, 53628c2ecf20Sopenharmony_ci /* IP12_8_6 [3] */ 53638c2ecf20Sopenharmony_ci FN_SSI_SDATA3, FN_MSIOF1_SS2_B, FN_SCIFA1_TXD_C, FN_ADICHS2_B, 53648c2ecf20Sopenharmony_ci FN_CAN1_TX_C, FN_DREQ2_N, 0, 0, 53658c2ecf20Sopenharmony_ci /* IP12_5_3 [3] */ 53668c2ecf20Sopenharmony_ci FN_SSI_WS34, FN_MSIOF1_SS1_B, FN_SCIFA1_RXD_C, FN_ADICHS1_B, 53678c2ecf20Sopenharmony_ci FN_CAN1_RX_C, FN_DACK1_B, 0, 0, 53688c2ecf20Sopenharmony_ci /* IP12_2_0 [3] */ 53698c2ecf20Sopenharmony_ci FN_SSI_SCK34, FN_MSIOF1_SYNC_B, FN_SCIFA1_SCK_C, FN_ADICHS0_B, 53708c2ecf20Sopenharmony_ci 0, FN_DREQ1_N_B, 0, 0, )) 53718c2ecf20Sopenharmony_ci }, 53728c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR13", 0xE6060054, 32, 53738c2ecf20Sopenharmony_ci GROUP(1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3), 53748c2ecf20Sopenharmony_ci GROUP( 53758c2ecf20Sopenharmony_ci /* IP13_31 [1] */ 53768c2ecf20Sopenharmony_ci 0, 0, 53778c2ecf20Sopenharmony_ci /* IP13_30 [1] */ 53788c2ecf20Sopenharmony_ci 0, 0, 53798c2ecf20Sopenharmony_ci /* IP13_29 [1] */ 53808c2ecf20Sopenharmony_ci 0, 0, 53818c2ecf20Sopenharmony_ci /* IP13_28 [1] */ 53828c2ecf20Sopenharmony_ci 0, 0, 53838c2ecf20Sopenharmony_ci /* IP13_27 [1] */ 53848c2ecf20Sopenharmony_ci 0, 0, 53858c2ecf20Sopenharmony_ci /* IP13_26_24 [3] */ 53868c2ecf20Sopenharmony_ci FN_AUDIO_CLKOUT, FN_I2C4_SDA_B, FN_SCIFA5_TXD_D, FN_VI1_VSYNC_N, 53878c2ecf20Sopenharmony_ci FN_TS_SPSYNC_C, 0, FN_FMIN_E, 0, 53888c2ecf20Sopenharmony_ci /* IP13_23_21 [3] */ 53898c2ecf20Sopenharmony_ci FN_AUDIO_CLKC, FN_I2C4_SCL_B, FN_SCIFA5_RXD_D, FN_VI1_HSYNC_N, 53908c2ecf20Sopenharmony_ci FN_TS_SDEN_C, 0, FN_FMCLK_E, 0, 53918c2ecf20Sopenharmony_ci /* IP13_20_18 [3] */ 53928c2ecf20Sopenharmony_ci FN_AUDIO_CLKB, FN_I2C0_SDA_B, FN_SCIFA4_TXD_D, FN_VI1_FIELD, 53938c2ecf20Sopenharmony_ci FN_TS_SCK_C, 0, FN_BPFCLK_E, FN_ETH_MDC_B, 53948c2ecf20Sopenharmony_ci /* IP13_17_15 [3] */ 53958c2ecf20Sopenharmony_ci FN_AUDIO_CLKA, FN_I2C0_SCL_B, FN_SCIFA4_RXD_D, FN_VI1_CLKENB, 53968c2ecf20Sopenharmony_ci FN_TS_SDATA_C, 0, FN_ETH_TXD0_B, 0, 53978c2ecf20Sopenharmony_ci /* IP13_14_12 [3] */ 53988c2ecf20Sopenharmony_ci FN_SSI_SDATA9, FN_SCIF2_TXD_B, FN_I2C3_SDA_E, FN_VI1_DATA7, 53998c2ecf20Sopenharmony_ci FN_ATADIR0_N, FN_ETH_MAGIC_B, 0, 0, 54008c2ecf20Sopenharmony_ci /* IP13_11_9 [3] */ 54018c2ecf20Sopenharmony_ci FN_SSI_WS9, FN_SCIF2_RXD_B, FN_I2C3_SCL_E, FN_VI1_DATA6, 54028c2ecf20Sopenharmony_ci FN_ATARD0_N, FN_ETH_TX_EN_B, 0, 0, 54038c2ecf20Sopenharmony_ci /* IP13_8_6 [3] */ 54048c2ecf20Sopenharmony_ci FN_SSI_SCK9, FN_SCIF2_SCK_B, FN_PWM2_B, FN_VI1_DATA5, 54058c2ecf20Sopenharmony_ci 0, FN_EX_WAIT1, FN_ETH_TXD1_B, 0, 54068c2ecf20Sopenharmony_ci /* IP13_5_3 [2] */ 54078c2ecf20Sopenharmony_ci FN_SSI_SDATA2, FN_HSCIF1_HRTS_N_B, FN_SCIFA0_TXD_D, 54088c2ecf20Sopenharmony_ci FN_VI1_DATA4, 0, FN_ATACS10_N, FN_ETH_REFCLK_B, 0, 54098c2ecf20Sopenharmony_ci /* IP13_2_0 [3] */ 54108c2ecf20Sopenharmony_ci FN_SSI_WS2, FN_HSCIF1_HCTS_N_B, FN_SCIFA0_RXD_D, FN_VI1_DATA3, 54118c2ecf20Sopenharmony_ci 0, FN_ATACS00_N, FN_ETH_LINK_B, 0, )) 54128c2ecf20Sopenharmony_ci }, 54138c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL", 0xE6060090, 32, 54148c2ecf20Sopenharmony_ci GROUP(2, 1, 2, 3, 4, 1, 1, 3, 3, 3, 3, 3, 2, 1), 54158c2ecf20Sopenharmony_ci GROUP( 54168c2ecf20Sopenharmony_ci /* SEL_ADG [2] */ 54178c2ecf20Sopenharmony_ci FN_SEL_ADG_0, FN_SEL_ADG_1, FN_SEL_ADG_2, FN_SEL_ADG_3, 54188c2ecf20Sopenharmony_ci /* RESERVED [1] */ 54198c2ecf20Sopenharmony_ci 0, 0, 54208c2ecf20Sopenharmony_ci /* SEL_CAN [2] */ 54218c2ecf20Sopenharmony_ci FN_SEL_CAN_0, FN_SEL_CAN_1, FN_SEL_CAN_2, FN_SEL_CAN_3, 54228c2ecf20Sopenharmony_ci /* SEL_DARC [3] */ 54238c2ecf20Sopenharmony_ci FN_SEL_DARC_0, FN_SEL_DARC_1, FN_SEL_DARC_2, FN_SEL_DARC_3, 54248c2ecf20Sopenharmony_ci FN_SEL_DARC_4, 0, 0, 0, 54258c2ecf20Sopenharmony_ci /* RESERVED [4] */ 54268c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54278c2ecf20Sopenharmony_ci /* SEL_ETH [1] */ 54288c2ecf20Sopenharmony_ci FN_SEL_ETH_0, FN_SEL_ETH_1, 54298c2ecf20Sopenharmony_ci /* RESERVED [1] */ 54308c2ecf20Sopenharmony_ci 0, 0, 54318c2ecf20Sopenharmony_ci /* SEL_IC200 [3] */ 54328c2ecf20Sopenharmony_ci FN_SEL_I2C00_0, FN_SEL_I2C00_1, FN_SEL_I2C00_2, FN_SEL_I2C00_3, 54338c2ecf20Sopenharmony_ci FN_SEL_I2C00_4, 0, 0, 0, 54348c2ecf20Sopenharmony_ci /* SEL_I2C01 [3] */ 54358c2ecf20Sopenharmony_ci FN_SEL_I2C01_0, FN_SEL_I2C01_1, FN_SEL_I2C01_2, FN_SEL_I2C01_3, 54368c2ecf20Sopenharmony_ci FN_SEL_I2C01_4, 0, 0, 0, 54378c2ecf20Sopenharmony_ci /* SEL_I2C02 [3] */ 54388c2ecf20Sopenharmony_ci FN_SEL_I2C02_0, FN_SEL_I2C02_1, FN_SEL_I2C02_2, FN_SEL_I2C02_3, 54398c2ecf20Sopenharmony_ci FN_SEL_I2C02_4, 0, 0, 0, 54408c2ecf20Sopenharmony_ci /* SEL_I2C03 [3] */ 54418c2ecf20Sopenharmony_ci FN_SEL_I2C03_0, FN_SEL_I2C03_1, FN_SEL_I2C03_2, FN_SEL_I2C03_3, 54428c2ecf20Sopenharmony_ci FN_SEL_I2C03_4, 0, 0, 0, 54438c2ecf20Sopenharmony_ci /* SEL_I2C04 [3] */ 54448c2ecf20Sopenharmony_ci FN_SEL_I2C04_0, FN_SEL_I2C04_1, FN_SEL_I2C04_2, FN_SEL_I2C04_3, 54458c2ecf20Sopenharmony_ci FN_SEL_I2C04_4, 0, 0, 0, 54468c2ecf20Sopenharmony_ci /* SEL_I2C05 [2] */ 54478c2ecf20Sopenharmony_ci FN_SEL_I2C05_0, FN_SEL_I2C05_1, FN_SEL_I2C05_2, FN_SEL_I2C05_3, 54488c2ecf20Sopenharmony_ci /* RESERVED [1] */ 54498c2ecf20Sopenharmony_ci 0, 0, )) 54508c2ecf20Sopenharmony_ci }, 54518c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL2", 0xE6060094, 32, 54528c2ecf20Sopenharmony_ci GROUP(2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 54538c2ecf20Sopenharmony_ci 2, 2, 1, 1, 2, 2, 2, 1, 1, 2), 54548c2ecf20Sopenharmony_ci GROUP( 54558c2ecf20Sopenharmony_ci /* SEL_IEB [2] */ 54568c2ecf20Sopenharmony_ci FN_SEL_IEB_0, FN_SEL_IEB_1, FN_SEL_IEB_2, 0, 54578c2ecf20Sopenharmony_ci /* SEL_IIC0 [2] */ 54588c2ecf20Sopenharmony_ci FN_SEL_IIC0_0, FN_SEL_IIC0_1, FN_SEL_IIC0_2, FN_SEL_IIC0_3, 54598c2ecf20Sopenharmony_ci /* SEL_LBS [1] */ 54608c2ecf20Sopenharmony_ci FN_SEL_LBS_0, FN_SEL_LBS_1, 54618c2ecf20Sopenharmony_ci /* SEL_MSI1 [1] */ 54628c2ecf20Sopenharmony_ci FN_SEL_MSI1_0, FN_SEL_MSI1_1, 54638c2ecf20Sopenharmony_ci /* SEL_MSI2 [1] */ 54648c2ecf20Sopenharmony_ci FN_SEL_MSI2_0, FN_SEL_MSI2_1, 54658c2ecf20Sopenharmony_ci /* SEL_RAD [1] */ 54668c2ecf20Sopenharmony_ci FN_SEL_RAD_0, FN_SEL_RAD_1, 54678c2ecf20Sopenharmony_ci /* SEL_RCN [1] */ 54688c2ecf20Sopenharmony_ci FN_SEL_RCN_0, FN_SEL_RCN_1, 54698c2ecf20Sopenharmony_ci /* SEL_RSP [1] */ 54708c2ecf20Sopenharmony_ci FN_SEL_RSP_0, FN_SEL_RSP_1, 54718c2ecf20Sopenharmony_ci /* SEL_SCIFA0 [2] */ 54728c2ecf20Sopenharmony_ci FN_SEL_SCIFA0_0, FN_SEL_SCIFA0_1, FN_SEL_SCIFA0_2, 54738c2ecf20Sopenharmony_ci FN_SEL_SCIFA0_3, 54748c2ecf20Sopenharmony_ci /* SEL_SCIFA1 [2] */ 54758c2ecf20Sopenharmony_ci FN_SEL_SCIFA1_0, FN_SEL_SCIFA1_1, FN_SEL_SCIFA1_2, 0, 54768c2ecf20Sopenharmony_ci /* SEL_SCIFA2 [1] */ 54778c2ecf20Sopenharmony_ci FN_SEL_SCIFA2_0, FN_SEL_SCIFA2_1, 54788c2ecf20Sopenharmony_ci /* SEL_SCIFA3 [1] */ 54798c2ecf20Sopenharmony_ci FN_SEL_SCIFA3_0, FN_SEL_SCIFA3_1, 54808c2ecf20Sopenharmony_ci /* SEL_SCIFA4 [2] */ 54818c2ecf20Sopenharmony_ci FN_SEL_SCIFA4_0, FN_SEL_SCIFA4_1, FN_SEL_SCIFA4_2, 54828c2ecf20Sopenharmony_ci FN_SEL_SCIFA4_3, 54838c2ecf20Sopenharmony_ci /* SEL_SCIFA5 [2] */ 54848c2ecf20Sopenharmony_ci FN_SEL_SCIFA5_0, FN_SEL_SCIFA5_1, FN_SEL_SCIFA5_2, 54858c2ecf20Sopenharmony_ci FN_SEL_SCIFA5_3, 54868c2ecf20Sopenharmony_ci /* RESERVED [1] */ 54878c2ecf20Sopenharmony_ci 0, 0, 54888c2ecf20Sopenharmony_ci /* SEL_TMU [1] */ 54898c2ecf20Sopenharmony_ci FN_SEL_TMU_0, FN_SEL_TMU_1, 54908c2ecf20Sopenharmony_ci /* SEL_TSIF0 [2] */ 54918c2ecf20Sopenharmony_ci FN_SEL_TSIF0_0, FN_SEL_TSIF0_1, FN_SEL_TSIF0_2, FN_SEL_TSIF0_3, 54928c2ecf20Sopenharmony_ci /* SEL_CAN0 [2] */ 54938c2ecf20Sopenharmony_ci FN_SEL_CAN0_0, FN_SEL_CAN0_1, FN_SEL_CAN0_2, FN_SEL_CAN0_3, 54948c2ecf20Sopenharmony_ci /* SEL_CAN1 [2] */ 54958c2ecf20Sopenharmony_ci FN_SEL_CAN1_0, FN_SEL_CAN1_1, FN_SEL_CAN1_2, FN_SEL_CAN1_3, 54968c2ecf20Sopenharmony_ci /* SEL_HSCIF0 [1] */ 54978c2ecf20Sopenharmony_ci FN_SEL_HSCIF0_0, FN_SEL_HSCIF0_1, 54988c2ecf20Sopenharmony_ci /* SEL_HSCIF1 [1] */ 54998c2ecf20Sopenharmony_ci FN_SEL_HSCIF1_0, FN_SEL_HSCIF1_1, 55008c2ecf20Sopenharmony_ci /* RESERVED [2] */ 55018c2ecf20Sopenharmony_ci 0, 0, 0, 0, )) 55028c2ecf20Sopenharmony_ci }, 55038c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL3", 0xE6060098, 32, 55048c2ecf20Sopenharmony_ci GROUP(2, 2, 2, 1, 3, 2, 1, 1, 1, 1, 1, 1, 55058c2ecf20Sopenharmony_ci 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), 55068c2ecf20Sopenharmony_ci GROUP( 55078c2ecf20Sopenharmony_ci /* SEL_SCIF0 [2] */ 55088c2ecf20Sopenharmony_ci FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2, FN_SEL_SCIF0_3, 55098c2ecf20Sopenharmony_ci /* SEL_SCIF1 [2] */ 55108c2ecf20Sopenharmony_ci FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2, 0, 55118c2ecf20Sopenharmony_ci /* SEL_SCIF2 [2] */ 55128c2ecf20Sopenharmony_ci FN_SEL_SCIF2_0, FN_SEL_SCIF2_1, FN_SEL_SCIF2_2, 0, 55138c2ecf20Sopenharmony_ci /* SEL_SCIF3 [1] */ 55148c2ecf20Sopenharmony_ci FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, 55158c2ecf20Sopenharmony_ci /* SEL_SCIF4 [3] */ 55168c2ecf20Sopenharmony_ci FN_SEL_SCIF4_0, FN_SEL_SCIF4_1, FN_SEL_SCIF4_2, FN_SEL_SCIF4_3, 55178c2ecf20Sopenharmony_ci FN_SEL_SCIF4_4, 0, 0, 0, 55188c2ecf20Sopenharmony_ci /* SEL_SCIF5 [2] */ 55198c2ecf20Sopenharmony_ci FN_SEL_SCIF5_0, FN_SEL_SCIF5_1, FN_SEL_SCIF5_2, FN_SEL_SCIF5_3, 55208c2ecf20Sopenharmony_ci /* SEL_SSI1 [1] */ 55218c2ecf20Sopenharmony_ci FN_SEL_SSI1_0, FN_SEL_SSI1_1, 55228c2ecf20Sopenharmony_ci /* SEL_SSI2 [1] */ 55238c2ecf20Sopenharmony_ci FN_SEL_SSI2_0, FN_SEL_SSI2_1, 55248c2ecf20Sopenharmony_ci /* SEL_SSI4 [1] */ 55258c2ecf20Sopenharmony_ci FN_SEL_SSI4_0, FN_SEL_SSI4_1, 55268c2ecf20Sopenharmony_ci /* SEL_SSI5 [1] */ 55278c2ecf20Sopenharmony_ci FN_SEL_SSI5_0, FN_SEL_SSI5_1, 55288c2ecf20Sopenharmony_ci /* SEL_SSI6 [1] */ 55298c2ecf20Sopenharmony_ci FN_SEL_SSI6_0, FN_SEL_SSI6_1, 55308c2ecf20Sopenharmony_ci /* SEL_SSI7 [1] */ 55318c2ecf20Sopenharmony_ci FN_SEL_SSI7_0, FN_SEL_SSI7_1, 55328c2ecf20Sopenharmony_ci /* SEL_SSI8 [1] */ 55338c2ecf20Sopenharmony_ci FN_SEL_SSI8_0, FN_SEL_SSI8_1, 55348c2ecf20Sopenharmony_ci /* SEL_SSI9 [1] */ 55358c2ecf20Sopenharmony_ci FN_SEL_SSI9_0, FN_SEL_SSI9_1, 55368c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55378c2ecf20Sopenharmony_ci 0, 0, 55388c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55398c2ecf20Sopenharmony_ci 0, 0, 55408c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55418c2ecf20Sopenharmony_ci 0, 0, 55428c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55438c2ecf20Sopenharmony_ci 0, 0, 55448c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55458c2ecf20Sopenharmony_ci 0, 0, 55468c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55478c2ecf20Sopenharmony_ci 0, 0, 55488c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55498c2ecf20Sopenharmony_ci 0, 0, 55508c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55518c2ecf20Sopenharmony_ci 0, 0, 55528c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55538c2ecf20Sopenharmony_ci 0, 0, 55548c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55558c2ecf20Sopenharmony_ci 0, 0, 55568c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55578c2ecf20Sopenharmony_ci 0, 0, 55588c2ecf20Sopenharmony_ci /* RESERVED [1] */ 55598c2ecf20Sopenharmony_ci 0, 0, )) 55608c2ecf20Sopenharmony_ci }, 55618c2ecf20Sopenharmony_ci { }, 55628c2ecf20Sopenharmony_ci}; 55638c2ecf20Sopenharmony_ci 55648c2ecf20Sopenharmony_cistatic int r8a7794_pin_to_pocctrl(struct sh_pfc *pfc, unsigned int pin, u32 *pocctrl) 55658c2ecf20Sopenharmony_ci{ 55668c2ecf20Sopenharmony_ci *pocctrl = 0xe606006c; 55678c2ecf20Sopenharmony_ci 55688c2ecf20Sopenharmony_ci switch (pin & 0x1f) { 55698c2ecf20Sopenharmony_ci case 6: return 23; 55708c2ecf20Sopenharmony_ci case 7: return 16; 55718c2ecf20Sopenharmony_ci case 14: return 15; 55728c2ecf20Sopenharmony_ci case 15: return 8; 55738c2ecf20Sopenharmony_ci case 0 ... 5: 55748c2ecf20Sopenharmony_ci case 8 ... 13: 55758c2ecf20Sopenharmony_ci return 22 - (pin & 0x1f); 55768c2ecf20Sopenharmony_ci case 16 ... 23: 55778c2ecf20Sopenharmony_ci return 47 - (pin & 0x1f); 55788c2ecf20Sopenharmony_ci } 55798c2ecf20Sopenharmony_ci 55808c2ecf20Sopenharmony_ci return -EINVAL; 55818c2ecf20Sopenharmony_ci} 55828c2ecf20Sopenharmony_ci 55838c2ecf20Sopenharmony_cistatic const struct soc_device_attribute r8a7794_tdsel[] = { 55848c2ecf20Sopenharmony_ci { .soc_id = "r8a7794", .revision = "ES1.0" }, 55858c2ecf20Sopenharmony_ci { /* sentinel */ } 55868c2ecf20Sopenharmony_ci}; 55878c2ecf20Sopenharmony_ci 55888c2ecf20Sopenharmony_cistatic int r8a7794_pinmux_soc_init(struct sh_pfc *pfc) 55898c2ecf20Sopenharmony_ci{ 55908c2ecf20Sopenharmony_ci /* Initialize TDSEL on old revisions */ 55918c2ecf20Sopenharmony_ci if (soc_device_match(r8a7794_tdsel)) 55928c2ecf20Sopenharmony_ci sh_pfc_write(pfc, 0xe6060068, 0x55555500); 55938c2ecf20Sopenharmony_ci 55948c2ecf20Sopenharmony_ci return 0; 55958c2ecf20Sopenharmony_ci} 55968c2ecf20Sopenharmony_ci 55978c2ecf20Sopenharmony_cistatic const struct sh_pfc_soc_operations r8a7794_pinmux_ops = { 55988c2ecf20Sopenharmony_ci .init = r8a7794_pinmux_soc_init, 55998c2ecf20Sopenharmony_ci .pin_to_pocctrl = r8a7794_pin_to_pocctrl, 56008c2ecf20Sopenharmony_ci}; 56018c2ecf20Sopenharmony_ci 56028c2ecf20Sopenharmony_ci#ifdef CONFIG_PINCTRL_PFC_R8A7745 56038c2ecf20Sopenharmony_ciconst struct sh_pfc_soc_info r8a7745_pinmux_info = { 56048c2ecf20Sopenharmony_ci .name = "r8a77450_pfc", 56058c2ecf20Sopenharmony_ci .ops = &r8a7794_pinmux_ops, 56068c2ecf20Sopenharmony_ci .unlock_reg = 0xe6060000, /* PMMR */ 56078c2ecf20Sopenharmony_ci 56088c2ecf20Sopenharmony_ci .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END }, 56098c2ecf20Sopenharmony_ci 56108c2ecf20Sopenharmony_ci .pins = pinmux_pins, 56118c2ecf20Sopenharmony_ci .nr_pins = ARRAY_SIZE(pinmux_pins), 56128c2ecf20Sopenharmony_ci .groups = pinmux_groups, 56138c2ecf20Sopenharmony_ci .nr_groups = ARRAY_SIZE(pinmux_groups), 56148c2ecf20Sopenharmony_ci .functions = pinmux_functions, 56158c2ecf20Sopenharmony_ci .nr_functions = ARRAY_SIZE(pinmux_functions), 56168c2ecf20Sopenharmony_ci 56178c2ecf20Sopenharmony_ci .cfg_regs = pinmux_config_regs, 56188c2ecf20Sopenharmony_ci 56198c2ecf20Sopenharmony_ci .pinmux_data = pinmux_data, 56208c2ecf20Sopenharmony_ci .pinmux_data_size = ARRAY_SIZE(pinmux_data), 56218c2ecf20Sopenharmony_ci}; 56228c2ecf20Sopenharmony_ci#endif 56238c2ecf20Sopenharmony_ci 56248c2ecf20Sopenharmony_ci#ifdef CONFIG_PINCTRL_PFC_R8A7794 56258c2ecf20Sopenharmony_ciconst struct sh_pfc_soc_info r8a7794_pinmux_info = { 56268c2ecf20Sopenharmony_ci .name = "r8a77940_pfc", 56278c2ecf20Sopenharmony_ci .ops = &r8a7794_pinmux_ops, 56288c2ecf20Sopenharmony_ci .unlock_reg = 0xe6060000, /* PMMR */ 56298c2ecf20Sopenharmony_ci 56308c2ecf20Sopenharmony_ci .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END }, 56318c2ecf20Sopenharmony_ci 56328c2ecf20Sopenharmony_ci .pins = pinmux_pins, 56338c2ecf20Sopenharmony_ci .nr_pins = ARRAY_SIZE(pinmux_pins), 56348c2ecf20Sopenharmony_ci .groups = pinmux_groups, 56358c2ecf20Sopenharmony_ci .nr_groups = ARRAY_SIZE(pinmux_groups), 56368c2ecf20Sopenharmony_ci .functions = pinmux_functions, 56378c2ecf20Sopenharmony_ci .nr_functions = ARRAY_SIZE(pinmux_functions), 56388c2ecf20Sopenharmony_ci 56398c2ecf20Sopenharmony_ci .cfg_regs = pinmux_config_regs, 56408c2ecf20Sopenharmony_ci 56418c2ecf20Sopenharmony_ci .pinmux_data = pinmux_data, 56428c2ecf20Sopenharmony_ci .pinmux_data_size = ARRAY_SIZE(pinmux_data), 56438c2ecf20Sopenharmony_ci}; 56448c2ecf20Sopenharmony_ci#endif 5645