18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * R8A77470 processor support - PFC hardware block. 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2018 Renesas Electronics Corp. 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#include <linux/errno.h> 98c2ecf20Sopenharmony_ci#include <linux/kernel.h> 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci#include "sh_pfc.h" 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci#define CPU_ALL_GP(fn, sfx) \ 148c2ecf20Sopenharmony_ci PORT_GP_4(0, fn, sfx), \ 158c2ecf20Sopenharmony_ci PORT_GP_1(0, 4, fn, sfx), \ 168c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 5, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 178c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 6, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 188c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 7, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 198c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 8, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 208c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 9, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 218c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 10, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 228c2ecf20Sopenharmony_ci PORT_GP_1(0, 11, fn, sfx), \ 238c2ecf20Sopenharmony_ci PORT_GP_1(0, 12, fn, sfx), \ 248c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 13, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 258c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 14, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 268c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 15, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 278c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 16, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 288c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 17, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 298c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 18, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 308c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 19, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 318c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 20, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 328c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 21, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 338c2ecf20Sopenharmony_ci PORT_GP_CFG_1(0, 22, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 348c2ecf20Sopenharmony_ci PORT_GP_23(1, fn, sfx), \ 358c2ecf20Sopenharmony_ci PORT_GP_32(2, fn, sfx), \ 368c2ecf20Sopenharmony_ci PORT_GP_17(3, fn, sfx), \ 378c2ecf20Sopenharmony_ci PORT_GP_1(3, 27, fn, sfx), \ 388c2ecf20Sopenharmony_ci PORT_GP_1(3, 28, fn, sfx), \ 398c2ecf20Sopenharmony_ci PORT_GP_1(3, 29, fn, sfx), \ 408c2ecf20Sopenharmony_ci PORT_GP_14(4, fn, sfx), \ 418c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 14, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 428c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 15, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 438c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 16, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 448c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 17, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 458c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 18, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 468c2ecf20Sopenharmony_ci PORT_GP_CFG_1(4, 19, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE), \ 478c2ecf20Sopenharmony_ci PORT_GP_1(4, 20, fn, sfx), \ 488c2ecf20Sopenharmony_ci PORT_GP_1(4, 21, fn, sfx), \ 498c2ecf20Sopenharmony_ci PORT_GP_1(4, 22, fn, sfx), \ 508c2ecf20Sopenharmony_ci PORT_GP_1(4, 23, fn, sfx), \ 518c2ecf20Sopenharmony_ci PORT_GP_1(4, 24, fn, sfx), \ 528c2ecf20Sopenharmony_ci PORT_GP_1(4, 25, fn, sfx), \ 538c2ecf20Sopenharmony_ci PORT_GP_32(5, fn, sfx) 548c2ecf20Sopenharmony_ci 558c2ecf20Sopenharmony_cienum { 568c2ecf20Sopenharmony_ci PINMUX_RESERVED = 0, 578c2ecf20Sopenharmony_ci 588c2ecf20Sopenharmony_ci PINMUX_DATA_BEGIN, 598c2ecf20Sopenharmony_ci GP_ALL(DATA), 608c2ecf20Sopenharmony_ci PINMUX_DATA_END, 618c2ecf20Sopenharmony_ci 628c2ecf20Sopenharmony_ci PINMUX_FUNCTION_BEGIN, 638c2ecf20Sopenharmony_ci GP_ALL(FN), 648c2ecf20Sopenharmony_ci 658c2ecf20Sopenharmony_ci /* GPSR0 */ 668c2ecf20Sopenharmony_ci FN_USB0_PWEN, FN_USB0_OVC, FN_USB1_PWEN, FN_USB1_OVC, FN_CLKOUT, 678c2ecf20Sopenharmony_ci FN_IP0_3_0, FN_IP0_7_4, FN_IP0_11_8, FN_IP0_15_12, FN_IP0_19_16, 688c2ecf20Sopenharmony_ci FN_IP0_23_20, FN_IP0_27_24, FN_IP0_31_28, FN_MMC0_CLK_SDHI1_CLK, 698c2ecf20Sopenharmony_ci FN_MMC0_CMD_SDHI1_CMD, FN_MMC0_D0_SDHI1_D0, FN_MMC0_D1_SDHI1_D1, 708c2ecf20Sopenharmony_ci FN_MMC0_D2_SDHI1_D2, FN_MMC0_D3_SDHI1_D3, FN_IP1_3_0, 718c2ecf20Sopenharmony_ci FN_IP1_7_4, FN_MMC0_D6, FN_MMC0_D7, 728c2ecf20Sopenharmony_ci 738c2ecf20Sopenharmony_ci /* GPSR1 */ 748c2ecf20Sopenharmony_ci FN_IP1_11_8, FN_IP1_15_12, FN_IP1_19_16, FN_IP1_23_20, FN_IP1_27_24, 758c2ecf20Sopenharmony_ci FN_IP1_31_28, FN_IP2_3_0, FN_IP2_7_4, FN_IP2_11_8, FN_IP2_15_12, 768c2ecf20Sopenharmony_ci FN_IP2_19_16, FN_IP2_23_20, FN_IP2_27_24, FN_IP2_31_28, FN_IP3_3_0, 778c2ecf20Sopenharmony_ci FN_IP3_7_4, FN_IP3_11_8, FN_IP3_15_12, FN_IP3_19_16, FN_IP3_23_20, 788c2ecf20Sopenharmony_ci FN_IP3_27_24, FN_IP3_31_28, FN_IP4_3_0, 798c2ecf20Sopenharmony_ci 808c2ecf20Sopenharmony_ci /* GPSR2 */ 818c2ecf20Sopenharmony_ci FN_IP4_7_4, FN_IP4_11_8, FN_IP4_15_12, FN_IP4_19_16, FN_IP4_23_20, 828c2ecf20Sopenharmony_ci FN_IP4_27_24, FN_IP4_31_28, FN_IP5_3_0, FN_IP5_7_4, FN_IP5_11_8, 838c2ecf20Sopenharmony_ci FN_IP5_15_12, FN_IP5_19_16, FN_IP5_23_20, FN_IP5_27_24, FN_IP5_31_28, 848c2ecf20Sopenharmony_ci FN_IP6_3_0, FN_IP6_7_4, FN_IP6_11_8, FN_IP6_15_12, FN_IP6_19_16, 858c2ecf20Sopenharmony_ci FN_IP6_23_20, FN_IP6_27_24, FN_IP6_31_28, FN_IP7_3_0, FN_IP7_7_4, 868c2ecf20Sopenharmony_ci FN_IP7_11_8, FN_IP7_15_12, FN_IP7_19_16, FN_IP7_23_20, FN_IP7_27_24, 878c2ecf20Sopenharmony_ci FN_IP7_31_28, FN_IP8_3_0, 888c2ecf20Sopenharmony_ci 898c2ecf20Sopenharmony_ci /* GPSR3 */ 908c2ecf20Sopenharmony_ci FN_IP8_7_4, FN_IP8_11_8, FN_IP8_15_12, FN_IP8_19_16, FN_IP8_23_20, 918c2ecf20Sopenharmony_ci FN_IP8_27_24, FN_IP8_31_28, FN_IP9_3_0, FN_IP9_7_4, FN_IP9_11_8, 928c2ecf20Sopenharmony_ci FN_IP9_15_12, FN_IP9_19_16, FN_IP9_23_20, FN_IP9_27_24, FN_IP9_31_28, 938c2ecf20Sopenharmony_ci FN_IP10_3_0, FN_IP10_7_4, FN_IP10_11_8, FN_IP10_15_12, FN_IP10_19_16, 948c2ecf20Sopenharmony_ci 958c2ecf20Sopenharmony_ci /* GPSR4 */ 968c2ecf20Sopenharmony_ci FN_IP10_23_20, FN_IP10_27_24, FN_IP10_31_28, FN_IP11_3_0, FN_IP11_7_4, 978c2ecf20Sopenharmony_ci FN_IP11_11_8, FN_IP11_15_12, FN_IP11_19_16, FN_IP11_23_20, 988c2ecf20Sopenharmony_ci FN_IP11_27_24, FN_IP11_31_28, FN_IP12_3_0, FN_IP12_7_4, FN_IP12_11_8, 998c2ecf20Sopenharmony_ci FN_IP12_15_12, FN_IP12_19_16, FN_IP12_23_20, FN_IP12_27_24, 1008c2ecf20Sopenharmony_ci FN_IP12_31_28, FN_IP13_3_0, FN_IP13_7_4, FN_IP13_11_8, FN_IP13_15_12, 1018c2ecf20Sopenharmony_ci FN_IP13_19_16, FN_IP13_23_20, FN_IP13_27_24, 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_ci /* GPSR5 */ 1048c2ecf20Sopenharmony_ci FN_IP13_31_28, FN_IP14_3_0, FN_IP14_7_4, FN_IP14_11_8, FN_IP14_15_12, 1058c2ecf20Sopenharmony_ci FN_IP14_19_16, FN_IP14_23_20, FN_IP14_27_24, FN_IP14_31_28, 1068c2ecf20Sopenharmony_ci FN_IP15_3_0, FN_IP15_7_4, FN_IP15_11_8, FN_IP15_15_12, FN_IP15_19_16, 1078c2ecf20Sopenharmony_ci FN_IP15_23_20, FN_IP15_27_24, FN_IP15_31_28, FN_IP16_3_0, FN_IP16_7_4, 1088c2ecf20Sopenharmony_ci FN_IP16_11_8, FN_IP16_15_12, FN_IP16_19_16, FN_IP16_23_20, 1098c2ecf20Sopenharmony_ci FN_IP16_27_24, FN_IP16_31_28, FN_IP17_3_0, FN_IP17_7_4, FN_IP17_11_8, 1108c2ecf20Sopenharmony_ci FN_IP17_15_12, FN_IP17_19_16, FN_IP17_23_20, FN_IP17_27_24, 1118c2ecf20Sopenharmony_ci 1128c2ecf20Sopenharmony_ci /* IPSR0 */ 1138c2ecf20Sopenharmony_ci FN_SD0_CLK, FN_SSI_SCK1_C, FN_RX3_C, 1148c2ecf20Sopenharmony_ci FN_SD0_CMD, FN_SSI_WS1_C, FN_TX3_C, 1158c2ecf20Sopenharmony_ci FN_SD0_DAT0, FN_SSI_SDATA1_C, FN_RX4_E, 1168c2ecf20Sopenharmony_ci FN_SD0_DAT1, FN_SSI_SCK0129_B, FN_TX4_E, 1178c2ecf20Sopenharmony_ci FN_SD0_DAT2, FN_SSI_WS0129_B, FN_RX5_E, 1188c2ecf20Sopenharmony_ci FN_SD0_DAT3, FN_SSI_SDATA0_B, FN_TX5_E, 1198c2ecf20Sopenharmony_ci FN_SD0_CD, FN_CAN0_RX_A, 1208c2ecf20Sopenharmony_ci FN_SD0_WP, FN_IRQ7, FN_CAN0_TX_A, 1218c2ecf20Sopenharmony_ci 1228c2ecf20Sopenharmony_ci /* IPSR1 */ 1238c2ecf20Sopenharmony_ci FN_MMC0_D4, FN_SD1_CD, 1248c2ecf20Sopenharmony_ci FN_MMC0_D5, FN_SD1_WP, 1258c2ecf20Sopenharmony_ci FN_D0, FN_SCL3_B, FN_RX5_B, FN_IRQ4, FN_MSIOF2_RXD_C, FN_SSI_SDATA5_B, 1268c2ecf20Sopenharmony_ci FN_D1, FN_SDA3_B, FN_TX5_B, FN_MSIOF2_TXD_C, FN_SSI_WS5_B, 1278c2ecf20Sopenharmony_ci FN_D2, FN_RX4_B, FN_SCL0_D, FN_PWM1_C, FN_MSIOF2_SCK_C, FN_SSI_SCK5_B, 1288c2ecf20Sopenharmony_ci FN_D3, FN_TX4_B, FN_SDA0_D, FN_PWM0_A, FN_MSIOF2_SYNC_C, 1298c2ecf20Sopenharmony_ci FN_D4, FN_IRQ3, FN_TCLK1_A, FN_PWM6_C, 1308c2ecf20Sopenharmony_ci FN_D5, FN_HRX2, FN_SCL1_B, FN_PWM2_C, FN_TCLK2_B, 1318c2ecf20Sopenharmony_ci 1328c2ecf20Sopenharmony_ci /* IPSR2 */ 1338c2ecf20Sopenharmony_ci FN_D6, FN_HTX2, FN_SDA1_B, FN_PWM4_C, 1348c2ecf20Sopenharmony_ci FN_D7, FN_HSCK2, FN_SCIF1_SCK_C, FN_IRQ6, FN_PWM5_C, 1358c2ecf20Sopenharmony_ci FN_D8, FN_HCTS2_N, FN_RX1_C, FN_SCL1_D, FN_PWM3_C, 1368c2ecf20Sopenharmony_ci FN_D9, FN_HRTS2_N, FN_TX1_C, FN_SDA1_D, 1378c2ecf20Sopenharmony_ci FN_D10, FN_MSIOF2_RXD_A, FN_HRX0_B, 1388c2ecf20Sopenharmony_ci FN_D11, FN_MSIOF2_TXD_A, FN_HTX0_B, 1398c2ecf20Sopenharmony_ci FN_D12, FN_MSIOF2_SCK_A, FN_HSCK0, FN_CAN_CLK_C, 1408c2ecf20Sopenharmony_ci FN_D13, FN_MSIOF2_SYNC_A, FN_RX4_C, 1418c2ecf20Sopenharmony_ci 1428c2ecf20Sopenharmony_ci /* IPSR3 */ 1438c2ecf20Sopenharmony_ci FN_D14, FN_MSIOF2_SS1, FN_TX4_C, FN_CAN1_RX_B, FN_AVB_AVTP_CAPTURE_A, 1448c2ecf20Sopenharmony_ci FN_D15, FN_MSIOF2_SS2, FN_PWM4_A, FN_CAN1_TX_B, FN_IRQ2, FN_AVB_AVTP_MATCH_A, 1458c2ecf20Sopenharmony_ci FN_QSPI0_SPCLK, FN_WE0_N, 1468c2ecf20Sopenharmony_ci FN_QSPI0_MOSI_QSPI0_IO0, FN_BS_N, 1478c2ecf20Sopenharmony_ci FN_QSPI0_MISO_QSPI0_IO1, FN_RD_WR_N, 1488c2ecf20Sopenharmony_ci FN_QSPI0_IO2, FN_CS0_N, 1498c2ecf20Sopenharmony_ci FN_QSPI0_IO3, FN_RD_N, 1508c2ecf20Sopenharmony_ci FN_QSPI0_SSL, FN_WE1_N, 1518c2ecf20Sopenharmony_ci 1528c2ecf20Sopenharmony_ci /* IPSR4 */ 1538c2ecf20Sopenharmony_ci FN_EX_WAIT0, FN_CAN_CLK_B, FN_SCIF_CLK_A, 1548c2ecf20Sopenharmony_ci FN_DU0_DR0, FN_RX5_C, FN_SCL2_D, FN_A0, 1558c2ecf20Sopenharmony_ci FN_DU0_DR1, FN_TX5_C, FN_SDA2_D, FN_A1, 1568c2ecf20Sopenharmony_ci FN_DU0_DR2, FN_RX0_D, FN_SCL0_E, FN_A2, 1578c2ecf20Sopenharmony_ci FN_DU0_DR3, FN_TX0_D, FN_SDA0_E, FN_PWM0_B, FN_A3, 1588c2ecf20Sopenharmony_ci FN_DU0_DR4, FN_RX1_D, FN_A4, 1598c2ecf20Sopenharmony_ci FN_DU0_DR5, FN_TX1_D, FN_PWM1_B, FN_A5, 1608c2ecf20Sopenharmony_ci FN_DU0_DR6, FN_RX2_C, FN_A6, 1618c2ecf20Sopenharmony_ci 1628c2ecf20Sopenharmony_ci /* IPSR5 */ 1638c2ecf20Sopenharmony_ci FN_DU0_DR7, FN_TX2_C, FN_PWM2_B, FN_A7, 1648c2ecf20Sopenharmony_ci FN_DU0_DG0, FN_RX3_B, FN_SCL3_D, FN_A8, 1658c2ecf20Sopenharmony_ci FN_DU0_DG1, FN_TX3_B, FN_SDA3_D, FN_PWM3_B, FN_A9, 1668c2ecf20Sopenharmony_ci FN_DU0_DG2, FN_RX4_D, FN_A10, 1678c2ecf20Sopenharmony_ci FN_DU0_DG3, FN_TX4_D, FN_PWM4_B, FN_A11, 1688c2ecf20Sopenharmony_ci FN_DU0_DG4, FN_HRX0_A, FN_A12, 1698c2ecf20Sopenharmony_ci FN_DU0_DG5, FN_HTX0_A, FN_PWM5_B, FN_A13, 1708c2ecf20Sopenharmony_ci FN_DU0_DG6, FN_HRX1_C, FN_A14, 1718c2ecf20Sopenharmony_ci 1728c2ecf20Sopenharmony_ci /* IPSR6 */ 1738c2ecf20Sopenharmony_ci FN_DU0_DG7, FN_HTX1_C, FN_PWM6_B, FN_A15, 1748c2ecf20Sopenharmony_ci FN_DU0_DB0, FN_SCL4_D, FN_CAN0_RX_C, FN_A16, 1758c2ecf20Sopenharmony_ci FN_DU0_DB1, FN_SDA4_D, FN_CAN0_TX_C, FN_A17, 1768c2ecf20Sopenharmony_ci FN_DU0_DB2, FN_HCTS0_N, FN_A18, 1778c2ecf20Sopenharmony_ci FN_DU0_DB3, FN_HRTS0_N, FN_A19, 1788c2ecf20Sopenharmony_ci FN_DU0_DB4, FN_HCTS1_N_C, FN_A20, 1798c2ecf20Sopenharmony_ci FN_DU0_DB5, FN_HRTS1_N_C, FN_A21, 1808c2ecf20Sopenharmony_ci FN_DU0_DB6, FN_A22, 1818c2ecf20Sopenharmony_ci 1828c2ecf20Sopenharmony_ci /* IPSR7 */ 1838c2ecf20Sopenharmony_ci FN_DU0_DB7, FN_A23, 1848c2ecf20Sopenharmony_ci FN_DU0_DOTCLKIN, FN_A24, 1858c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT0, FN_A25, 1868c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT1, FN_MSIOF2_RXD_B, FN_CS1_N_A26, 1878c2ecf20Sopenharmony_ci FN_DU0_EXHSYNC_DU0_HSYNC, FN_MSIOF2_TXD_B, FN_DREQ0_N, 1888c2ecf20Sopenharmony_ci FN_DU0_EXVSYNC_DU0_VSYNC, FN_MSIOF2_SYNC_B, FN_DACK0, 1898c2ecf20Sopenharmony_ci FN_DU0_EXODDF_DU0_ODDF_DISP_CDE, FN_MSIOF2_SCK_B, FN_DRACK0, 1908c2ecf20Sopenharmony_ci FN_DU0_DISP, FN_CAN1_RX_C, 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_ci /* IPSR8 */ 1938c2ecf20Sopenharmony_ci FN_DU0_CDE, FN_CAN1_TX_C, 1948c2ecf20Sopenharmony_ci FN_VI1_CLK, FN_AVB_RX_CLK, FN_ETH_REF_CLK, 1958c2ecf20Sopenharmony_ci FN_VI1_DATA0, FN_AVB_RX_DV, FN_ETH_CRS_DV, 1968c2ecf20Sopenharmony_ci FN_VI1_DATA1, FN_AVB_RXD0, FN_ETH_RXD0, 1978c2ecf20Sopenharmony_ci FN_VI1_DATA2, FN_AVB_RXD1, FN_ETH_RXD1, 1988c2ecf20Sopenharmony_ci FN_VI1_DATA3, FN_AVB_RXD2, FN_ETH_MDIO, 1998c2ecf20Sopenharmony_ci FN_VI1_DATA4, FN_AVB_RXD3, FN_ETH_RX_ER, 2008c2ecf20Sopenharmony_ci FN_VI1_DATA5, FN_AVB_RXD4, FN_ETH_LINK, 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_ci /* IPSR9 */ 2038c2ecf20Sopenharmony_ci FN_VI1_DATA6, FN_AVB_RXD5, FN_ETH_TXD1, 2048c2ecf20Sopenharmony_ci FN_VI1_DATA7, FN_AVB_RXD6, FN_ETH_TX_EN, 2058c2ecf20Sopenharmony_ci FN_VI1_CLKENB, FN_SCL3_A, FN_AVB_RXD7, FN_ETH_MAGIC, 2068c2ecf20Sopenharmony_ci FN_VI1_FIELD, FN_SDA3_A, FN_AVB_RX_ER, FN_ETH_TXD0, 2078c2ecf20Sopenharmony_ci FN_VI1_HSYNC_N, FN_RX0_B, FN_SCL0_C, FN_AVB_GTXREFCLK, FN_ETH_MDC, 2088c2ecf20Sopenharmony_ci FN_VI1_VSYNC_N, FN_TX0_B, FN_SDA0_C, FN_AUDIO_CLKOUT_B, FN_AVB_TX_CLK, 2098c2ecf20Sopenharmony_ci FN_VI1_DATA8, FN_SCL2_B, FN_AVB_TX_EN, 2108c2ecf20Sopenharmony_ci FN_VI1_DATA9, FN_SDA2_B, FN_AVB_TXD0, 2118c2ecf20Sopenharmony_ci 2128c2ecf20Sopenharmony_ci /* IPSR10 */ 2138c2ecf20Sopenharmony_ci FN_VI1_DATA10, FN_CAN0_RX_B, FN_AVB_TXD1, 2148c2ecf20Sopenharmony_ci FN_VI1_DATA11, FN_CAN0_TX_B, FN_AVB_TXD2, 2158c2ecf20Sopenharmony_ci FN_AVB_TXD3, FN_AUDIO_CLKA_B, FN_SSI_SCK1_D, FN_RX5_F, FN_MSIOF0_RXD_B, 2168c2ecf20Sopenharmony_ci FN_AVB_TXD4, FN_AUDIO_CLKB_B, FN_SSI_WS1_D, FN_TX5_F, FN_MSIOF0_TXD_B, 2178c2ecf20Sopenharmony_ci FN_AVB_TXD5, FN_SCIF_CLK_B, FN_AUDIO_CLKC_B, FN_SSI_SDATA1_D, FN_MSIOF0_SCK_B, 2188c2ecf20Sopenharmony_ci FN_SCL0_A, FN_RX0_C, FN_PWM5_A, FN_TCLK1_B, FN_AVB_TXD6, FN_CAN1_RX_D, FN_MSIOF0_SYNC_B, 2198c2ecf20Sopenharmony_ci FN_SDA0_A, FN_TX0_C, FN_IRQ5, FN_CAN_CLK_A, FN_AVB_GTX_CLK, FN_CAN1_TX_D, FN_DVC_MUTE, 2208c2ecf20Sopenharmony_ci FN_SCL1_A, FN_RX4_A, FN_PWM5_D, FN_DU1_DR0, FN_SSI_SCK6_B, FN_VI0_G0, 2218c2ecf20Sopenharmony_ci 2228c2ecf20Sopenharmony_ci /* IPSR11 */ 2238c2ecf20Sopenharmony_ci FN_SDA1_A, FN_TX4_A, FN_DU1_DR1, FN_SSI_WS6_B, FN_VI0_G1, 2248c2ecf20Sopenharmony_ci FN_MSIOF0_RXD_A, FN_RX5_A, FN_SCL2_C, FN_DU1_DR2, FN_QSPI1_MOSI_QSPI1_IO0, FN_SSI_SDATA6_B, FN_VI0_G2, 2258c2ecf20Sopenharmony_ci FN_MSIOF0_TXD_A, FN_TX5_A, FN_SDA2_C, FN_DU1_DR3, FN_QSPI1_MISO_QSPI1_IO1, FN_SSI_WS78_B, FN_VI0_G3, 2268c2ecf20Sopenharmony_ci FN_MSIOF0_SCK_A, FN_IRQ0, FN_DU1_DR4, FN_QSPI1_SPCLK, FN_SSI_SCK78_B, FN_VI0_G4, 2278c2ecf20Sopenharmony_ci FN_MSIOF0_SYNC_A, FN_PWM1_A, FN_DU1_DR5, FN_QSPI1_IO2, FN_SSI_SDATA7_B, 2288c2ecf20Sopenharmony_ci FN_MSIOF0_SS1_A, FN_DU1_DR6, FN_QSPI1_IO3, FN_SSI_SDATA8_B, 2298c2ecf20Sopenharmony_ci FN_MSIOF0_SS2_A, FN_DU1_DR7, FN_QSPI1_SSL, 2308c2ecf20Sopenharmony_ci FN_HRX1_A, FN_SCL4_A, FN_PWM6_A, FN_DU1_DG0, FN_RX0_A, 2318c2ecf20Sopenharmony_ci 2328c2ecf20Sopenharmony_ci /* IPSR12 */ 2338c2ecf20Sopenharmony_ci FN_HTX1_A, FN_SDA4_A, FN_DU1_DG1, FN_TX0_A, 2348c2ecf20Sopenharmony_ci FN_HCTS1_N_A, FN_PWM2_A, FN_DU1_DG2, FN_REMOCON_B, 2358c2ecf20Sopenharmony_ci FN_HRTS1_N_A, FN_DU1_DG3, FN_SSI_WS1_B, FN_IRQ1, 2368c2ecf20Sopenharmony_ci FN_SD2_CLK, FN_HSCK1, FN_DU1_DG4, FN_SSI_SCK1_B, 2378c2ecf20Sopenharmony_ci FN_SD2_CMD, FN_SCIF1_SCK_A, FN_TCLK2_A, FN_DU1_DG5, FN_SSI_SCK2_B, FN_PWM3_A, 2388c2ecf20Sopenharmony_ci FN_SD2_DAT0, FN_RX1_A, FN_SCL1_E, FN_DU1_DG6, FN_SSI_SDATA1_B, 2398c2ecf20Sopenharmony_ci FN_SD2_DAT1, FN_TX1_A, FN_SDA1_E, FN_DU1_DG7, FN_SSI_WS2_B, 2408c2ecf20Sopenharmony_ci FN_SD2_DAT2, FN_RX2_A, FN_DU1_DB0, FN_SSI_SDATA2_B, 2418c2ecf20Sopenharmony_ci 2428c2ecf20Sopenharmony_ci /* IPSR13 */ 2438c2ecf20Sopenharmony_ci FN_SD2_DAT3, FN_TX2_A, FN_DU1_DB1, FN_SSI_WS9_B, 2448c2ecf20Sopenharmony_ci FN_SD2_CD, FN_SCIF2_SCK_A, FN_DU1_DB2, FN_SSI_SCK9_B, 2458c2ecf20Sopenharmony_ci FN_SD2_WP, FN_SCIF3_SCK, FN_DU1_DB3, FN_SSI_SDATA9_B, 2468c2ecf20Sopenharmony_ci FN_RX3_A, FN_SCL1_C, FN_MSIOF1_RXD_B, FN_DU1_DB4, FN_AUDIO_CLKA_C, FN_SSI_SDATA4_B, 2478c2ecf20Sopenharmony_ci FN_TX3_A, FN_SDA1_C, FN_MSIOF1_TXD_B, FN_DU1_DB5, FN_AUDIO_CLKB_C, FN_SSI_WS4_B, 2488c2ecf20Sopenharmony_ci FN_SCL2_A, FN_MSIOF1_SCK_B, FN_DU1_DB6, FN_AUDIO_CLKC_C, FN_SSI_SCK4_B, 2498c2ecf20Sopenharmony_ci FN_SDA2_A, FN_MSIOF1_SYNC_B, FN_DU1_DB7, FN_AUDIO_CLKOUT_C, 2508c2ecf20Sopenharmony_ci FN_SSI_SCK5_A, FN_DU1_DOTCLKOUT1, 2518c2ecf20Sopenharmony_ci 2528c2ecf20Sopenharmony_ci /* IPSR14 */ 2538c2ecf20Sopenharmony_ci FN_SSI_WS5_A, FN_SCL3_C, FN_DU1_DOTCLKIN, 2548c2ecf20Sopenharmony_ci FN_SSI_SDATA5_A, FN_SDA3_C, FN_DU1_DOTCLKOUT0, 2558c2ecf20Sopenharmony_ci FN_SSI_SCK6_A, FN_DU1_EXODDF_DU1_ODDF_DISP_CDE, 2568c2ecf20Sopenharmony_ci FN_SSI_WS6_A, FN_SCL4_C, FN_DU1_EXHSYNC_DU1_HSYNC, 2578c2ecf20Sopenharmony_ci FN_SSI_SDATA6_A, FN_SDA4_C, FN_DU1_EXVSYNC_DU1_VSYNC, 2588c2ecf20Sopenharmony_ci FN_SSI_SCK78_A, FN_SDA4_E, FN_DU1_DISP, 2598c2ecf20Sopenharmony_ci FN_SSI_WS78_A, FN_SCL4_E, FN_DU1_CDE, 2608c2ecf20Sopenharmony_ci FN_SSI_SDATA7_A, FN_IRQ8, FN_AUDIO_CLKA_D, FN_CAN_CLK_D, FN_VI0_G5, 2618c2ecf20Sopenharmony_ci 2628c2ecf20Sopenharmony_ci /* IPSR15 */ 2638c2ecf20Sopenharmony_ci FN_SSI_SCK0129_A, FN_MSIOF1_RXD_A, FN_RX5_D, FN_VI0_G6, 2648c2ecf20Sopenharmony_ci FN_SSI_WS0129_A, FN_MSIOF1_TXD_A, FN_TX5_D, FN_VI0_G7, 2658c2ecf20Sopenharmony_ci FN_SSI_SDATA0_A, FN_MSIOF1_SYNC_A, FN_PWM0_C, FN_VI0_R0, 2668c2ecf20Sopenharmony_ci FN_SSI_SCK34, FN_MSIOF1_SCK_A, FN_AVB_MDC, FN_DACK1, FN_VI0_R1, 2678c2ecf20Sopenharmony_ci FN_SSI_WS34, FN_MSIOF1_SS1_A, FN_AVB_MDIO, FN_CAN1_RX_A, FN_DREQ1_N, FN_VI0_R2, 2688c2ecf20Sopenharmony_ci FN_SSI_SDATA3, FN_MSIOF1_SS2_A, FN_AVB_LINK, FN_CAN1_TX_A, FN_DREQ2_N, FN_VI0_R3, 2698c2ecf20Sopenharmony_ci FN_SSI_SCK4_A, FN_AVB_MAGIC, FN_VI0_R4, 2708c2ecf20Sopenharmony_ci FN_SSI_WS4_A, FN_AVB_PHY_INT, FN_VI0_R5, 2718c2ecf20Sopenharmony_ci 2728c2ecf20Sopenharmony_ci /* IPSR16 */ 2738c2ecf20Sopenharmony_ci FN_SSI_SDATA4_A, FN_AVB_CRS, FN_VI0_R6, 2748c2ecf20Sopenharmony_ci FN_SSI_SCK1_A, FN_SCIF1_SCK_B, FN_PWM1_D, FN_IRQ9, FN_REMOCON_A, FN_DACK2, FN_VI0_CLK, FN_AVB_COL, 2758c2ecf20Sopenharmony_ci FN_SSI_SDATA8_A, FN_RX1_B, FN_CAN0_RX_D, FN_AVB_AVTP_CAPTURE_B, FN_VI0_R7, 2768c2ecf20Sopenharmony_ci FN_SSI_WS1_A, FN_TX1_B, FN_CAN0_TX_D, FN_AVB_AVTP_MATCH_B, FN_VI0_DATA0_VI0_B0, 2778c2ecf20Sopenharmony_ci FN_SSI_SDATA1_A, FN_HRX1_B, FN_VI0_DATA1_VI0_B1, 2788c2ecf20Sopenharmony_ci FN_SSI_SCK2_A, FN_HTX1_B, FN_AVB_TXD7, FN_VI0_DATA2_VI0_B2, 2798c2ecf20Sopenharmony_ci FN_SSI_WS2_A, FN_HCTS1_N_B, FN_AVB_TX_ER, FN_VI0_DATA3_VI0_B3, 2808c2ecf20Sopenharmony_ci FN_SSI_SDATA2_A, FN_HRTS1_N_B, FN_VI0_DATA4_VI0_B4, 2818c2ecf20Sopenharmony_ci 2828c2ecf20Sopenharmony_ci /* IPSR17 */ 2838c2ecf20Sopenharmony_ci FN_SSI_SCK9_A, FN_RX2_B, FN_SCL3_E, FN_EX_WAIT1, FN_VI0_DATA5_VI0_B5, 2848c2ecf20Sopenharmony_ci FN_SSI_WS9_A, FN_TX2_B, FN_SDA3_E, FN_VI0_DATA6_VI0_B6, 2858c2ecf20Sopenharmony_ci FN_SSI_SDATA9_A, FN_SCIF2_SCK_B, FN_PWM2_D, FN_VI0_DATA7_VI0_B7, 2868c2ecf20Sopenharmony_ci FN_AUDIO_CLKA_A, FN_SCL0_B, FN_VI0_CLKENB, 2878c2ecf20Sopenharmony_ci FN_AUDIO_CLKB_A, FN_SDA0_B, FN_VI0_FIELD, 2888c2ecf20Sopenharmony_ci FN_AUDIO_CLKC_A, FN_SCL4_B, FN_VI0_HSYNC_N, 2898c2ecf20Sopenharmony_ci FN_AUDIO_CLKOUT_A, FN_SDA4_B, FN_VI0_VSYNC_N, 2908c2ecf20Sopenharmony_ci 2918c2ecf20Sopenharmony_ci /* MOD_SEL0 */ 2928c2ecf20Sopenharmony_ci FN_SEL_ADGA_0, FN_SEL_ADGA_1, FN_SEL_ADGA_2, FN_SEL_ADGA_3, 2938c2ecf20Sopenharmony_ci FN_SEL_CANCLK_0, FN_SEL_CANCLK_1, FN_SEL_CANCLK_2, FN_SEL_CANCLK_3, 2948c2ecf20Sopenharmony_ci FN_SEL_CAN1_0, FN_SEL_CAN1_1, FN_SEL_CAN1_2, FN_SEL_CAN1_3, 2958c2ecf20Sopenharmony_ci FN_SEL_CAN0_0, FN_SEL_CAN0_1, FN_SEL_CAN0_2, FN_SEL_CAN0_3, 2968c2ecf20Sopenharmony_ci FN_SEL_I2C04_0, FN_SEL_I2C04_1, FN_SEL_I2C04_2, FN_SEL_I2C04_3, FN_SEL_I2C04_4, 2978c2ecf20Sopenharmony_ci FN_SEL_I2C03_0, FN_SEL_I2C03_1, FN_SEL_I2C03_2, FN_SEL_I2C03_3, FN_SEL_I2C03_4, 2988c2ecf20Sopenharmony_ci FN_SEL_I2C02_0, FN_SEL_I2C02_1, FN_SEL_I2C02_2, FN_SEL_I2C02_3, 2998c2ecf20Sopenharmony_ci FN_SEL_I2C01_0, FN_SEL_I2C01_1, FN_SEL_I2C01_2, FN_SEL_I2C01_3, FN_SEL_I2C01_4, 3008c2ecf20Sopenharmony_ci FN_SEL_I2C00_0, FN_SEL_I2C00_1, FN_SEL_I2C00_2, FN_SEL_I2C00_3, FN_SEL_I2C00_4, 3018c2ecf20Sopenharmony_ci FN_SEL_AVB_0, FN_SEL_AVB_1, 3028c2ecf20Sopenharmony_ci 3038c2ecf20Sopenharmony_ci /* MOD_SEL1 */ 3048c2ecf20Sopenharmony_ci FN_SEL_SCIFCLK_0, FN_SEL_SCIFCLK_1, 3058c2ecf20Sopenharmony_ci FN_SEL_SCIF5_0, FN_SEL_SCIF5_1, FN_SEL_SCIF5_2, FN_SEL_SCIF5_3, FN_SEL_SCIF5_4, FN_SEL_SCIF5_5, 3068c2ecf20Sopenharmony_ci FN_SEL_SCIF4_0, FN_SEL_SCIF4_1, FN_SEL_SCIF4_2, FN_SEL_SCIF4_3, FN_SEL_SCIF4_4, 3078c2ecf20Sopenharmony_ci FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, FN_SEL_SCIF3_2, 3088c2ecf20Sopenharmony_ci FN_SEL_SCIF2_0, FN_SEL_SCIF2_1, FN_SEL_SCIF2_2, 3098c2ecf20Sopenharmony_ci FN_SEL_SCIF2_CLK_0, FN_SEL_SCIF2_CLK_1, 3108c2ecf20Sopenharmony_ci FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2, FN_SEL_SCIF1_3, 3118c2ecf20Sopenharmony_ci FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2, FN_SEL_SCIF0_3, 3128c2ecf20Sopenharmony_ci FN_SEL_MSIOF2_0, FN_SEL_MSIOF2_1, FN_SEL_MSIOF2_2, 3138c2ecf20Sopenharmony_ci FN_SEL_MSIOF1_0, FN_SEL_MSIOF1_1, 3148c2ecf20Sopenharmony_ci FN_SEL_MSIOF0_0, FN_SEL_MSIOF0_1, 3158c2ecf20Sopenharmony_ci FN_SEL_RCN_0, FN_SEL_RCN_1, 3168c2ecf20Sopenharmony_ci FN_SEL_TMU2_0, FN_SEL_TMU2_1, 3178c2ecf20Sopenharmony_ci FN_SEL_TMU1_0, FN_SEL_TMU1_1, 3188c2ecf20Sopenharmony_ci FN_SEL_HSCIF1_0, FN_SEL_HSCIF1_1, FN_SEL_HSCIF1_2, 3198c2ecf20Sopenharmony_ci FN_SEL_HSCIF0_0, FN_SEL_HSCIF0_1, 3208c2ecf20Sopenharmony_ci 3218c2ecf20Sopenharmony_ci /* MOD_SEL2 */ 3228c2ecf20Sopenharmony_ci FN_SEL_ADGB_0, FN_SEL_ADGB_1, FN_SEL_ADGB_2, 3238c2ecf20Sopenharmony_ci FN_SEL_ADGC_0, FN_SEL_ADGC_1, FN_SEL_ADGC_2, 3248c2ecf20Sopenharmony_ci FN_SEL_SSI9_0, FN_SEL_SSI9_1, 3258c2ecf20Sopenharmony_ci FN_SEL_SSI8_0, FN_SEL_SSI8_1, 3268c2ecf20Sopenharmony_ci FN_SEL_SSI7_0, FN_SEL_SSI7_1, 3278c2ecf20Sopenharmony_ci FN_SEL_SSI6_0, FN_SEL_SSI6_1, 3288c2ecf20Sopenharmony_ci FN_SEL_SSI5_0, FN_SEL_SSI5_1, 3298c2ecf20Sopenharmony_ci FN_SEL_SSI4_0, FN_SEL_SSI4_1, 3308c2ecf20Sopenharmony_ci FN_SEL_SSI2_0, FN_SEL_SSI2_1, 3318c2ecf20Sopenharmony_ci FN_SEL_SSI1_0, FN_SEL_SSI1_1, FN_SEL_SSI1_2, FN_SEL_SSI1_3, 3328c2ecf20Sopenharmony_ci FN_SEL_SSI0_0, FN_SEL_SSI0_1, 3338c2ecf20Sopenharmony_ci PINMUX_FUNCTION_END, 3348c2ecf20Sopenharmony_ci 3358c2ecf20Sopenharmony_ci PINMUX_MARK_BEGIN, 3368c2ecf20Sopenharmony_ci 3378c2ecf20Sopenharmony_ci USB0_PWEN_MARK, USB0_OVC_MARK, USB1_PWEN_MARK, USB1_OVC_MARK, 3388c2ecf20Sopenharmony_ci CLKOUT_MARK, MMC0_CLK_SDHI1_CLK_MARK, MMC0_CMD_SDHI1_CMD_MARK, 3398c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, MMC0_D1_SDHI1_D1_MARK, 3408c2ecf20Sopenharmony_ci MMC0_D2_SDHI1_D2_MARK, MMC0_D3_SDHI1_D3_MARK, MMC0_D6_MARK, 3418c2ecf20Sopenharmony_ci MMC0_D7_MARK, 3428c2ecf20Sopenharmony_ci 3438c2ecf20Sopenharmony_ci /* IPSR0 */ 3448c2ecf20Sopenharmony_ci SD0_CLK_MARK, SSI_SCK1_C_MARK, RX3_C_MARK, 3458c2ecf20Sopenharmony_ci SD0_CMD_MARK, SSI_WS1_C_MARK, TX3_C_MARK, 3468c2ecf20Sopenharmony_ci SD0_DAT0_MARK, SSI_SDATA1_C_MARK, RX4_E_MARK, 3478c2ecf20Sopenharmony_ci SD0_DAT1_MARK, SSI_SCK0129_B_MARK, TX4_E_MARK, 3488c2ecf20Sopenharmony_ci SD0_DAT2_MARK, SSI_WS0129_B_MARK, RX5_E_MARK, 3498c2ecf20Sopenharmony_ci SD0_DAT3_MARK, SSI_SDATA0_B_MARK, TX5_E_MARK, 3508c2ecf20Sopenharmony_ci SD0_CD_MARK, CAN0_RX_A_MARK, 3518c2ecf20Sopenharmony_ci SD0_WP_MARK, IRQ7_MARK, CAN0_TX_A_MARK, 3528c2ecf20Sopenharmony_ci 3538c2ecf20Sopenharmony_ci /* IPSR1 */ 3548c2ecf20Sopenharmony_ci MMC0_D4_MARK, SD1_CD_MARK, 3558c2ecf20Sopenharmony_ci MMC0_D5_MARK, SD1_WP_MARK, 3568c2ecf20Sopenharmony_ci D0_MARK, SCL3_B_MARK, RX5_B_MARK, IRQ4_MARK, MSIOF2_RXD_C_MARK, SSI_SDATA5_B_MARK, 3578c2ecf20Sopenharmony_ci D1_MARK, SDA3_B_MARK, TX5_B_MARK, MSIOF2_TXD_C_MARK, SSI_WS5_B_MARK, 3588c2ecf20Sopenharmony_ci D2_MARK, RX4_B_MARK, SCL0_D_MARK, PWM1_C_MARK, MSIOF2_SCK_C_MARK, SSI_SCK5_B_MARK, 3598c2ecf20Sopenharmony_ci D3_MARK, TX4_B_MARK, SDA0_D_MARK, PWM0_A_MARK, MSIOF2_SYNC_C_MARK, 3608c2ecf20Sopenharmony_ci D4_MARK, IRQ3_MARK, TCLK1_A_MARK, PWM6_C_MARK, 3618c2ecf20Sopenharmony_ci D5_MARK, HRX2_MARK, SCL1_B_MARK, PWM2_C_MARK, TCLK2_B_MARK, 3628c2ecf20Sopenharmony_ci 3638c2ecf20Sopenharmony_ci /* IPSR2 */ 3648c2ecf20Sopenharmony_ci D6_MARK, HTX2_MARK, SDA1_B_MARK, PWM4_C_MARK, 3658c2ecf20Sopenharmony_ci D7_MARK, HSCK2_MARK, SCIF1_SCK_C_MARK, IRQ6_MARK, PWM5_C_MARK, 3668c2ecf20Sopenharmony_ci D8_MARK, HCTS2_N_MARK, RX1_C_MARK, SCL1_D_MARK, PWM3_C_MARK, 3678c2ecf20Sopenharmony_ci D9_MARK, HRTS2_N_MARK, TX1_C_MARK, SDA1_D_MARK, 3688c2ecf20Sopenharmony_ci D10_MARK, MSIOF2_RXD_A_MARK, HRX0_B_MARK, 3698c2ecf20Sopenharmony_ci D11_MARK, MSIOF2_TXD_A_MARK, HTX0_B_MARK, 3708c2ecf20Sopenharmony_ci D12_MARK, MSIOF2_SCK_A_MARK, HSCK0_MARK, CAN_CLK_C_MARK, 3718c2ecf20Sopenharmony_ci D13_MARK, MSIOF2_SYNC_A_MARK, RX4_C_MARK, 3728c2ecf20Sopenharmony_ci 3738c2ecf20Sopenharmony_ci /* IPSR3 */ 3748c2ecf20Sopenharmony_ci D14_MARK, MSIOF2_SS1_MARK, TX4_C_MARK, CAN1_RX_B_MARK, AVB_AVTP_CAPTURE_A_MARK, 3758c2ecf20Sopenharmony_ci D15_MARK, MSIOF2_SS2_MARK, PWM4_A_MARK, CAN1_TX_B_MARK, IRQ2_MARK, AVB_AVTP_MATCH_A_MARK, 3768c2ecf20Sopenharmony_ci QSPI0_SPCLK_MARK, WE0_N_MARK, 3778c2ecf20Sopenharmony_ci QSPI0_MOSI_QSPI0_IO0_MARK, BS_N_MARK, 3788c2ecf20Sopenharmony_ci QSPI0_MISO_QSPI0_IO1_MARK, RD_WR_N_MARK, 3798c2ecf20Sopenharmony_ci QSPI0_IO2_MARK, CS0_N_MARK, 3808c2ecf20Sopenharmony_ci QSPI0_IO3_MARK, RD_N_MARK, 3818c2ecf20Sopenharmony_ci QSPI0_SSL_MARK, WE1_N_MARK, 3828c2ecf20Sopenharmony_ci 3838c2ecf20Sopenharmony_ci /* IPSR4 */ 3848c2ecf20Sopenharmony_ci EX_WAIT0_MARK, CAN_CLK_B_MARK, SCIF_CLK_A_MARK, 3858c2ecf20Sopenharmony_ci DU0_DR0_MARK, RX5_C_MARK, SCL2_D_MARK, A0_MARK, 3868c2ecf20Sopenharmony_ci DU0_DR1_MARK, TX5_C_MARK, SDA2_D_MARK, A1_MARK, 3878c2ecf20Sopenharmony_ci DU0_DR2_MARK, RX0_D_MARK, SCL0_E_MARK, A2_MARK, 3888c2ecf20Sopenharmony_ci DU0_DR3_MARK, TX0_D_MARK, SDA0_E_MARK, PWM0_B_MARK, A3_MARK, 3898c2ecf20Sopenharmony_ci DU0_DR4_MARK, RX1_D_MARK, A4_MARK, 3908c2ecf20Sopenharmony_ci DU0_DR5_MARK, TX1_D_MARK, PWM1_B_MARK, A5_MARK, 3918c2ecf20Sopenharmony_ci DU0_DR6_MARK, RX2_C_MARK, A6_MARK, 3928c2ecf20Sopenharmony_ci 3938c2ecf20Sopenharmony_ci /* IPSR5 */ 3948c2ecf20Sopenharmony_ci DU0_DR7_MARK, TX2_C_MARK, PWM2_B_MARK, A7_MARK, 3958c2ecf20Sopenharmony_ci DU0_DG0_MARK, RX3_B_MARK, SCL3_D_MARK, A8_MARK, 3968c2ecf20Sopenharmony_ci DU0_DG1_MARK, TX3_B_MARK, SDA3_D_MARK, PWM3_B_MARK, A9_MARK, 3978c2ecf20Sopenharmony_ci DU0_DG2_MARK, RX4_D_MARK, A10_MARK, 3988c2ecf20Sopenharmony_ci DU0_DG3_MARK, TX4_D_MARK, PWM4_B_MARK, A11_MARK, 3998c2ecf20Sopenharmony_ci DU0_DG4_MARK, HRX0_A_MARK, A12_MARK, 4008c2ecf20Sopenharmony_ci DU0_DG5_MARK, HTX0_A_MARK, PWM5_B_MARK, A13_MARK, 4018c2ecf20Sopenharmony_ci DU0_DG6_MARK, HRX1_C_MARK, A14_MARK, 4028c2ecf20Sopenharmony_ci 4038c2ecf20Sopenharmony_ci /* IPSR6 */ 4048c2ecf20Sopenharmony_ci DU0_DG7_MARK, HTX1_C_MARK, PWM6_B_MARK, A15_MARK, 4058c2ecf20Sopenharmony_ci DU0_DB0_MARK, SCL4_D_MARK, CAN0_RX_C_MARK, A16_MARK, 4068c2ecf20Sopenharmony_ci DU0_DB1_MARK, SDA4_D_MARK, CAN0_TX_C_MARK, A17_MARK, 4078c2ecf20Sopenharmony_ci DU0_DB2_MARK, HCTS0_N_MARK, A18_MARK, 4088c2ecf20Sopenharmony_ci DU0_DB3_MARK, HRTS0_N_MARK, A19_MARK, 4098c2ecf20Sopenharmony_ci DU0_DB4_MARK, HCTS1_N_C_MARK, A20_MARK, 4108c2ecf20Sopenharmony_ci DU0_DB5_MARK, HRTS1_N_C_MARK, A21_MARK, 4118c2ecf20Sopenharmony_ci DU0_DB6_MARK, A22_MARK, 4128c2ecf20Sopenharmony_ci 4138c2ecf20Sopenharmony_ci /* IPSR7 */ 4148c2ecf20Sopenharmony_ci DU0_DB7_MARK, A23_MARK, 4158c2ecf20Sopenharmony_ci DU0_DOTCLKIN_MARK, A24_MARK, 4168c2ecf20Sopenharmony_ci DU0_DOTCLKOUT0_MARK, A25_MARK, 4178c2ecf20Sopenharmony_ci DU0_DOTCLKOUT1_MARK, MSIOF2_RXD_B_MARK, CS1_N_A26_MARK, 4188c2ecf20Sopenharmony_ci DU0_EXHSYNC_DU0_HSYNC_MARK, MSIOF2_TXD_B_MARK, DREQ0_N_MARK, 4198c2ecf20Sopenharmony_ci DU0_EXVSYNC_DU0_VSYNC_MARK, MSIOF2_SYNC_B_MARK, DACK0_MARK, 4208c2ecf20Sopenharmony_ci DU0_EXODDF_DU0_ODDF_DISP_CDE_MARK, MSIOF2_SCK_B_MARK, DRACK0_MARK, 4218c2ecf20Sopenharmony_ci DU0_DISP_MARK, CAN1_RX_C_MARK, 4228c2ecf20Sopenharmony_ci 4238c2ecf20Sopenharmony_ci /* IPSR8 */ 4248c2ecf20Sopenharmony_ci DU0_CDE_MARK, CAN1_TX_C_MARK, 4258c2ecf20Sopenharmony_ci VI1_CLK_MARK, AVB_RX_CLK_MARK, ETH_REF_CLK_MARK, 4268c2ecf20Sopenharmony_ci VI1_DATA0_MARK, AVB_RX_DV_MARK, ETH_CRS_DV_MARK, 4278c2ecf20Sopenharmony_ci VI1_DATA1_MARK, AVB_RXD0_MARK, ETH_RXD0_MARK, 4288c2ecf20Sopenharmony_ci VI1_DATA2_MARK, AVB_RXD1_MARK, ETH_RXD1_MARK, 4298c2ecf20Sopenharmony_ci VI1_DATA3_MARK, AVB_RXD2_MARK, ETH_MDIO_MARK, 4308c2ecf20Sopenharmony_ci VI1_DATA4_MARK, AVB_RXD3_MARK, ETH_RX_ER_MARK, 4318c2ecf20Sopenharmony_ci VI1_DATA5_MARK, AVB_RXD4_MARK, ETH_LINK_MARK, 4328c2ecf20Sopenharmony_ci 4338c2ecf20Sopenharmony_ci /* IPSR9 */ 4348c2ecf20Sopenharmony_ci VI1_DATA6_MARK, AVB_RXD5_MARK, ETH_TXD1_MARK, 4358c2ecf20Sopenharmony_ci VI1_DATA7_MARK, AVB_RXD6_MARK, ETH_TX_EN_MARK, 4368c2ecf20Sopenharmony_ci VI1_CLKENB_MARK, SCL3_A_MARK, AVB_RXD7_MARK, ETH_MAGIC_MARK, 4378c2ecf20Sopenharmony_ci VI1_FIELD_MARK, SDA3_A_MARK, AVB_RX_ER_MARK, ETH_TXD0_MARK, 4388c2ecf20Sopenharmony_ci VI1_HSYNC_N_MARK, RX0_B_MARK, SCL0_C_MARK, AVB_GTXREFCLK_MARK, ETH_MDC_MARK, 4398c2ecf20Sopenharmony_ci VI1_VSYNC_N_MARK, TX0_B_MARK, SDA0_C_MARK, AUDIO_CLKOUT_B_MARK, AVB_TX_CLK_MARK, 4408c2ecf20Sopenharmony_ci VI1_DATA8_MARK, SCL2_B_MARK, AVB_TX_EN_MARK, 4418c2ecf20Sopenharmony_ci VI1_DATA9_MARK, SDA2_B_MARK, AVB_TXD0_MARK, 4428c2ecf20Sopenharmony_ci 4438c2ecf20Sopenharmony_ci /* IPSR10 */ 4448c2ecf20Sopenharmony_ci VI1_DATA10_MARK, CAN0_RX_B_MARK, AVB_TXD1_MARK, 4458c2ecf20Sopenharmony_ci VI1_DATA11_MARK, CAN0_TX_B_MARK, AVB_TXD2_MARK, 4468c2ecf20Sopenharmony_ci AVB_TXD3_MARK, AUDIO_CLKA_B_MARK, SSI_SCK1_D_MARK, RX5_F_MARK, MSIOF0_RXD_B_MARK, 4478c2ecf20Sopenharmony_ci AVB_TXD4_MARK, AUDIO_CLKB_B_MARK, SSI_WS1_D_MARK, TX5_F_MARK, MSIOF0_TXD_B_MARK, 4488c2ecf20Sopenharmony_ci AVB_TXD5_MARK, SCIF_CLK_B_MARK, AUDIO_CLKC_B_MARK, SSI_SDATA1_D_MARK, MSIOF0_SCK_B_MARK, 4498c2ecf20Sopenharmony_ci SCL0_A_MARK, RX0_C_MARK, PWM5_A_MARK, TCLK1_B_MARK, AVB_TXD6_MARK, CAN1_RX_D_MARK, MSIOF0_SYNC_B_MARK, 4508c2ecf20Sopenharmony_ci SDA0_A_MARK, TX0_C_MARK, IRQ5_MARK, CAN_CLK_A_MARK, AVB_GTX_CLK_MARK, CAN1_TX_D_MARK, DVC_MUTE_MARK, 4518c2ecf20Sopenharmony_ci SCL1_A_MARK, RX4_A_MARK, PWM5_D_MARK, DU1_DR0_MARK, SSI_SCK6_B_MARK, VI0_G0_MARK, 4528c2ecf20Sopenharmony_ci 4538c2ecf20Sopenharmony_ci /* IPSR11 */ 4548c2ecf20Sopenharmony_ci SDA1_A_MARK, TX4_A_MARK, DU1_DR1_MARK, SSI_WS6_B_MARK, VI0_G1_MARK, 4558c2ecf20Sopenharmony_ci MSIOF0_RXD_A_MARK, RX5_A_MARK, SCL2_C_MARK, DU1_DR2_MARK, QSPI1_MOSI_QSPI1_IO0_MARK, SSI_SDATA6_B_MARK, VI0_G2_MARK, 4568c2ecf20Sopenharmony_ci MSIOF0_TXD_A_MARK, TX5_A_MARK, SDA2_C_MARK, DU1_DR3_MARK, QSPI1_MISO_QSPI1_IO1_MARK, SSI_WS78_B_MARK, VI0_G3_MARK, 4578c2ecf20Sopenharmony_ci MSIOF0_SCK_A_MARK, IRQ0_MARK, DU1_DR4_MARK, QSPI1_SPCLK_MARK, SSI_SCK78_B_MARK, VI0_G4_MARK, 4588c2ecf20Sopenharmony_ci MSIOF0_SYNC_A_MARK, PWM1_A_MARK, DU1_DR5_MARK, QSPI1_IO2_MARK, SSI_SDATA7_B_MARK, 4598c2ecf20Sopenharmony_ci MSIOF0_SS1_A_MARK, DU1_DR6_MARK, QSPI1_IO3_MARK, SSI_SDATA8_B_MARK, 4608c2ecf20Sopenharmony_ci MSIOF0_SS2_A_MARK, DU1_DR7_MARK, QSPI1_SSL_MARK, 4618c2ecf20Sopenharmony_ci HRX1_A_MARK, SCL4_A_MARK, PWM6_A_MARK, DU1_DG0_MARK, RX0_A_MARK, 4628c2ecf20Sopenharmony_ci 4638c2ecf20Sopenharmony_ci /* IPSR12 */ 4648c2ecf20Sopenharmony_ci HTX1_A_MARK, SDA4_A_MARK, DU1_DG1_MARK, TX0_A_MARK, 4658c2ecf20Sopenharmony_ci HCTS1_N_A_MARK, PWM2_A_MARK, DU1_DG2_MARK, REMOCON_B_MARK, 4668c2ecf20Sopenharmony_ci HRTS1_N_A_MARK, DU1_DG3_MARK, SSI_WS1_B_MARK, IRQ1_MARK, 4678c2ecf20Sopenharmony_ci SD2_CLK_MARK, HSCK1_MARK, DU1_DG4_MARK, SSI_SCK1_B_MARK, 4688c2ecf20Sopenharmony_ci SD2_CMD_MARK, SCIF1_SCK_A_MARK, TCLK2_A_MARK, DU1_DG5_MARK, SSI_SCK2_B_MARK, PWM3_A_MARK, 4698c2ecf20Sopenharmony_ci SD2_DAT0_MARK, RX1_A_MARK, SCL1_E_MARK, DU1_DG6_MARK, SSI_SDATA1_B_MARK, 4708c2ecf20Sopenharmony_ci SD2_DAT1_MARK, TX1_A_MARK, SDA1_E_MARK, DU1_DG7_MARK, SSI_WS2_B_MARK, 4718c2ecf20Sopenharmony_ci SD2_DAT2_MARK, RX2_A_MARK, DU1_DB0_MARK, SSI_SDATA2_B_MARK, 4728c2ecf20Sopenharmony_ci 4738c2ecf20Sopenharmony_ci /* IPSR13 */ 4748c2ecf20Sopenharmony_ci SD2_DAT3_MARK, TX2_A_MARK, DU1_DB1_MARK, SSI_WS9_B_MARK, 4758c2ecf20Sopenharmony_ci SD2_CD_MARK, SCIF2_SCK_A_MARK, DU1_DB2_MARK, SSI_SCK9_B_MARK, 4768c2ecf20Sopenharmony_ci SD2_WP_MARK, SCIF3_SCK_MARK, DU1_DB3_MARK, SSI_SDATA9_B_MARK, 4778c2ecf20Sopenharmony_ci RX3_A_MARK, SCL1_C_MARK, MSIOF1_RXD_B_MARK, DU1_DB4_MARK, AUDIO_CLKA_C_MARK, SSI_SDATA4_B_MARK, 4788c2ecf20Sopenharmony_ci TX3_A_MARK, SDA1_C_MARK, MSIOF1_TXD_B_MARK, DU1_DB5_MARK, AUDIO_CLKB_C_MARK, SSI_WS4_B_MARK, 4798c2ecf20Sopenharmony_ci SCL2_A_MARK, MSIOF1_SCK_B_MARK, DU1_DB6_MARK, AUDIO_CLKC_C_MARK, SSI_SCK4_B_MARK, 4808c2ecf20Sopenharmony_ci SDA2_A_MARK, MSIOF1_SYNC_B_MARK, DU1_DB7_MARK, AUDIO_CLKOUT_C_MARK, 4818c2ecf20Sopenharmony_ci SSI_SCK5_A_MARK, DU1_DOTCLKOUT1_MARK, 4828c2ecf20Sopenharmony_ci 4838c2ecf20Sopenharmony_ci /* IPSR14 */ 4848c2ecf20Sopenharmony_ci SSI_WS5_A_MARK, SCL3_C_MARK, DU1_DOTCLKIN_MARK, 4858c2ecf20Sopenharmony_ci SSI_SDATA5_A_MARK, SDA3_C_MARK, DU1_DOTCLKOUT0_MARK, 4868c2ecf20Sopenharmony_ci SSI_SCK6_A_MARK, DU1_EXODDF_DU1_ODDF_DISP_CDE_MARK, 4878c2ecf20Sopenharmony_ci SSI_WS6_A_MARK, SCL4_C_MARK, DU1_EXHSYNC_DU1_HSYNC_MARK, 4888c2ecf20Sopenharmony_ci SSI_SDATA6_A_MARK, SDA4_C_MARK, DU1_EXVSYNC_DU1_VSYNC_MARK, 4898c2ecf20Sopenharmony_ci SSI_SCK78_A_MARK, SDA4_E_MARK, DU1_DISP_MARK, 4908c2ecf20Sopenharmony_ci SSI_WS78_A_MARK, SCL4_E_MARK, DU1_CDE_MARK, 4918c2ecf20Sopenharmony_ci SSI_SDATA7_A_MARK, IRQ8_MARK, AUDIO_CLKA_D_MARK, CAN_CLK_D_MARK, VI0_G5_MARK, 4928c2ecf20Sopenharmony_ci 4938c2ecf20Sopenharmony_ci /* IPSR15 */ 4948c2ecf20Sopenharmony_ci SSI_SCK0129_A_MARK, MSIOF1_RXD_A_MARK, RX5_D_MARK, VI0_G6_MARK, 4958c2ecf20Sopenharmony_ci SSI_WS0129_A_MARK, MSIOF1_TXD_A_MARK, TX5_D_MARK, VI0_G7_MARK, 4968c2ecf20Sopenharmony_ci SSI_SDATA0_A_MARK, MSIOF1_SYNC_A_MARK, PWM0_C_MARK, VI0_R0_MARK, 4978c2ecf20Sopenharmony_ci SSI_SCK34_MARK, MSIOF1_SCK_A_MARK, AVB_MDC_MARK, DACK1_MARK, VI0_R1_MARK, 4988c2ecf20Sopenharmony_ci SSI_WS34_MARK, MSIOF1_SS1_A_MARK, AVB_MDIO_MARK, CAN1_RX_A_MARK, DREQ1_N_MARK, VI0_R2_MARK, 4998c2ecf20Sopenharmony_ci SSI_SDATA3_MARK, MSIOF1_SS2_A_MARK, AVB_LINK_MARK, CAN1_TX_A_MARK, DREQ2_N_MARK, VI0_R3_MARK, 5008c2ecf20Sopenharmony_ci SSI_SCK4_A_MARK, AVB_MAGIC_MARK, VI0_R4_MARK, 5018c2ecf20Sopenharmony_ci SSI_WS4_A_MARK, AVB_PHY_INT_MARK, VI0_R5_MARK, 5028c2ecf20Sopenharmony_ci 5038c2ecf20Sopenharmony_ci /* IPSR16 */ 5048c2ecf20Sopenharmony_ci SSI_SDATA4_A_MARK, AVB_CRS_MARK, VI0_R6_MARK, 5058c2ecf20Sopenharmony_ci SSI_SCK1_A_MARK, SCIF1_SCK_B_MARK, PWM1_D_MARK, IRQ9_MARK, REMOCON_A_MARK, DACK2_MARK, VI0_CLK_MARK, AVB_COL_MARK, 5068c2ecf20Sopenharmony_ci SSI_SDATA8_A_MARK, RX1_B_MARK, CAN0_RX_D_MARK, AVB_AVTP_CAPTURE_B_MARK, VI0_R7_MARK, 5078c2ecf20Sopenharmony_ci SSI_WS1_A_MARK, TX1_B_MARK, CAN0_TX_D_MARK, AVB_AVTP_MATCH_B_MARK, VI0_DATA0_VI0_B0_MARK, 5088c2ecf20Sopenharmony_ci SSI_SDATA1_A_MARK, HRX1_B_MARK, VI0_DATA1_VI0_B1_MARK, 5098c2ecf20Sopenharmony_ci SSI_SCK2_A_MARK, HTX1_B_MARK, AVB_TXD7_MARK, VI0_DATA2_VI0_B2_MARK, 5108c2ecf20Sopenharmony_ci SSI_WS2_A_MARK, HCTS1_N_B_MARK, AVB_TX_ER_MARK, VI0_DATA3_VI0_B3_MARK, 5118c2ecf20Sopenharmony_ci SSI_SDATA2_A_MARK, HRTS1_N_B_MARK, VI0_DATA4_VI0_B4_MARK, 5128c2ecf20Sopenharmony_ci 5138c2ecf20Sopenharmony_ci /* IPSR17 */ 5148c2ecf20Sopenharmony_ci SSI_SCK9_A_MARK, RX2_B_MARK, SCL3_E_MARK, EX_WAIT1_MARK, VI0_DATA5_VI0_B5_MARK, 5158c2ecf20Sopenharmony_ci SSI_WS9_A_MARK, TX2_B_MARK, SDA3_E_MARK, VI0_DATA6_VI0_B6_MARK, 5168c2ecf20Sopenharmony_ci SSI_SDATA9_A_MARK, SCIF2_SCK_B_MARK, PWM2_D_MARK, VI0_DATA7_VI0_B7_MARK, 5178c2ecf20Sopenharmony_ci AUDIO_CLKA_A_MARK, SCL0_B_MARK, VI0_CLKENB_MARK, 5188c2ecf20Sopenharmony_ci AUDIO_CLKB_A_MARK, SDA0_B_MARK, VI0_FIELD_MARK, 5198c2ecf20Sopenharmony_ci AUDIO_CLKC_A_MARK, SCL4_B_MARK, VI0_HSYNC_N_MARK, 5208c2ecf20Sopenharmony_ci AUDIO_CLKOUT_A_MARK, SDA4_B_MARK, VI0_VSYNC_N_MARK, 5218c2ecf20Sopenharmony_ci 5228c2ecf20Sopenharmony_ci PINMUX_MARK_END, 5238c2ecf20Sopenharmony_ci}; 5248c2ecf20Sopenharmony_ci 5258c2ecf20Sopenharmony_cistatic const u16 pinmux_data[] = { 5268c2ecf20Sopenharmony_ci PINMUX_DATA_GP_ALL(), /* PINMUX_DATA(GP_M_N_DATA, GP_M_N_FN...), */ 5278c2ecf20Sopenharmony_ci 5288c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB0_PWEN), 5298c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB0_OVC), 5308c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB1_PWEN), 5318c2ecf20Sopenharmony_ci PINMUX_SINGLE(USB1_OVC), 5328c2ecf20Sopenharmony_ci PINMUX_SINGLE(CLKOUT), 5338c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_CLK_SDHI1_CLK), 5348c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_CMD_SDHI1_CMD), 5358c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D0_SDHI1_D0), 5368c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D1_SDHI1_D1), 5378c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D2_SDHI1_D2), 5388c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D3_SDHI1_D3), 5398c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D6), 5408c2ecf20Sopenharmony_ci PINMUX_SINGLE(MMC0_D7), 5418c2ecf20Sopenharmony_ci 5428c2ecf20Sopenharmony_ci /* IPSR0 */ 5438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_3_0, SD0_CLK), 5448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_3_0, SSI_SCK1_C, SEL_SSI1_2), 5458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_3_0, RX3_C, SEL_SCIF3_2), 5468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_7_4, SD0_CMD), 5478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_7_4, SSI_WS1_C, SEL_SSI1_2), 5488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_7_4, TX3_C, SEL_SCIF3_2), 5498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_11_8, SD0_DAT0), 5508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_11_8, SSI_SDATA1_C, SEL_SSI1_2), 5518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_11_8, RX4_E, SEL_SCIF4_4), 5528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_15_12, SD0_DAT1), 5538c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_15_12, SSI_SCK0129_B, SEL_SSI0_1), 5548c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_15_12, TX4_E, SEL_SCIF4_4), 5558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_19_16, SD0_DAT2), 5568c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_19_16, SSI_WS0129_B, SEL_SSI0_1), 5578c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_19_16, RX5_E, SEL_SCIF5_4), 5588c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_23_20, SD0_DAT3), 5598c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_23_20, SSI_SDATA0_B, SEL_SSI0_1), 5608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_23_20, TX5_E, SEL_SCIF5_4), 5618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_27_24, SD0_CD), 5628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_27_24, CAN0_RX_A, SEL_CAN0_0), 5638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_31_28, SD0_WP), 5648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP0_31_28, IRQ7), 5658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP0_31_28, CAN0_TX_A, SEL_CAN0_0), 5668c2ecf20Sopenharmony_ci 5678c2ecf20Sopenharmony_ci /* IPSR1 */ 5688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_3_0, MMC0_D4), 5698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_3_0, SD1_CD), 5708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_7_4, MMC0_D5), 5718c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_7_4, SD1_WP), 5728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_11_8, D0), 5738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_11_8, SCL3_B, SEL_I2C03_1), 5748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_11_8, RX5_B, SEL_SCIF5_1), 5758c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_11_8, IRQ4), 5768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_11_8, MSIOF2_RXD_C, SEL_MSIOF2_2), 5778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_11_8, SSI_SDATA5_B, SEL_SSI5_1), 5788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_15_12, D1), 5798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_15_12, SDA3_B, SEL_I2C03_1), 5808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_15_12, TX5_B, SEL_SCIF5_1), 5818c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_15_12, MSIOF2_TXD_C, SEL_MSIOF2_2), 5828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_15_12, SSI_WS5_B, SEL_SSI5_1), 5838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_19_16, D2), 5848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_16, RX4_B, SEL_SCIF4_1), 5858c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_16, SCL0_D, SEL_I2C00_3), 5868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_19_16, PWM1_C), 5878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_16, MSIOF2_SCK_C, SEL_MSIOF2_2), 5888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_19_16, SSI_SCK5_B, SEL_SSI5_1), 5898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_23_20, D3), 5908c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_23_20, TX4_B, SEL_SCIF4_1), 5918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_23_20, SDA0_D, SEL_I2C00_3), 5928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_23_20, PWM0_A), 5938c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_23_20, MSIOF2_SYNC_C, SEL_MSIOF2_2), 5948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_27_24, D4), 5958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_27_24, IRQ3), 5968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_27_24, TCLK1_A, SEL_TMU1_0), 5978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_27_24, PWM6_C), 5988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_28, D5), 5998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_28, HRX2), 6008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_31_28, SCL1_B, SEL_I2C01_1), 6018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP1_31_28, PWM2_C), 6028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP1_31_28, TCLK2_B, SEL_TMU2_1), 6038c2ecf20Sopenharmony_ci 6048c2ecf20Sopenharmony_ci /* IPSR2 */ 6058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_3_0, D6), 6068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_3_0, HTX2), 6078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_3_0, SDA1_B, SEL_I2C01_1), 6088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_3_0, PWM4_C), 6098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_7_4, D7), 6108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_7_4, HSCK2), 6118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_7_4, SCIF1_SCK_C, SEL_SCIF1_2), 6128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_7_4, IRQ6), 6138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_7_4, PWM5_C), 6148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_11_8, D8), 6158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_11_8, HCTS2_N), 6168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_11_8, RX1_C, SEL_SCIF1_2), 6178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_11_8, SCL1_D, SEL_I2C01_3), 6188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_11_8, PWM3_C), 6198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_15_12, D9), 6208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_15_12, HRTS2_N), 6218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_15_12, TX1_C, SEL_SCIF1_2), 6228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_15_12, SDA1_D, SEL_I2C01_3), 6238c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_19_16, D10), 6248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_19_16, MSIOF2_RXD_A, SEL_MSIOF2_0), 6258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_19_16, HRX0_B, SEL_HSCIF0_1), 6268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_23_20, D11), 6278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_23_20, MSIOF2_TXD_A, SEL_MSIOF2_0), 6288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_23_20, HTX0_B, SEL_HSCIF0_1), 6298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_27_24, D12), 6308c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_27_24, MSIOF2_SCK_A, SEL_MSIOF2_0), 6318c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_27_24, HSCK0), 6328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_27_24, CAN_CLK_C, SEL_CANCLK_2), 6338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP2_31_28, D13), 6348c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_31_28, MSIOF2_SYNC_A, SEL_MSIOF2_0), 6358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP2_31_28, RX4_C, SEL_SCIF4_2), 6368c2ecf20Sopenharmony_ci 6378c2ecf20Sopenharmony_ci /* IPSR3 */ 6388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_3_0, D14), 6398c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_3_0, MSIOF2_SS1), 6408c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_3_0, TX4_C, SEL_SCIF4_2), 6418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_3_0, CAN1_RX_B, SEL_CAN1_1), 6428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_3_0, AVB_AVTP_CAPTURE_A, SEL_AVB_0), 6438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_4, D15), 6448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_4, MSIOF2_SS2), 6458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_4, PWM4_A), 6468c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_7_4, CAN1_TX_B, SEL_CAN1_1), 6478c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_7_4, IRQ2), 6488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP3_7_4, AVB_AVTP_MATCH_A, SEL_AVB_0), 6498c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_11_8, QSPI0_SPCLK), 6508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_11_8, WE0_N), 6518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_15_12, QSPI0_MOSI_QSPI0_IO0), 6528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_15_12, BS_N), 6538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_19_16, QSPI0_MISO_QSPI0_IO1), 6548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_19_16, RD_WR_N), 6558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_23_20, QSPI0_IO2), 6568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_23_20, CS0_N), 6578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_27_24, QSPI0_IO3), 6588c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_27_24, RD_N), 6598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_31_28, QSPI0_SSL), 6608c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP3_31_28, WE1_N), 6618c2ecf20Sopenharmony_ci 6628c2ecf20Sopenharmony_ci /* IPSR4 */ 6638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_3_0, EX_WAIT0), 6648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_3_0, CAN_CLK_B, SEL_CANCLK_1), 6658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_3_0, SCIF_CLK_A, SEL_SCIFCLK_0), 6668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_7_4, DU0_DR0), 6678c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_7_4, RX5_C, SEL_SCIF5_2), 6688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_7_4, SCL2_D, SEL_I2C02_3), 6698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_7_4, A0), 6708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_11_8, DU0_DR1), 6718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_11_8, TX5_C, SEL_SCIF5_2), 6728c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_11_8, SDA2_D, SEL_I2C02_3), 6738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_11_8, A1), 6748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_15_12, DU0_DR2), 6758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_15_12, RX0_D, SEL_SCIF0_3), 6768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_15_12, SCL0_E, SEL_I2C00_4), 6778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_15_12, A2), 6788c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_19_16, DU0_DR3), 6798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_19_16, TX0_D, SEL_SCIF0_3), 6808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_19_16, SDA0_E, SEL_I2C00_4), 6818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_19_16, PWM0_B), 6828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_19_16, A3), 6838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_23_20, DU0_DR4), 6848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_23_20, RX1_D, SEL_SCIF1_3), 6858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_23_20, A4), 6868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_27_24, DU0_DR5), 6878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_27_24, TX1_D, SEL_SCIF1_3), 6888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_27_24, PWM1_B), 6898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_27_24, A5), 6908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_31_28, DU0_DR6), 6918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP4_31_28, RX2_C, SEL_SCIF2_2), 6928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP4_31_28, A6), 6938c2ecf20Sopenharmony_ci 6948c2ecf20Sopenharmony_ci /* IPSR5 */ 6958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_3_0, DU0_DR7), 6968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_3_0, TX2_C, SEL_SCIF2_2), 6978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_3_0, PWM2_B), 6988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_3_0, A7), 6998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_7_4, DU0_DG0), 7008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_7_4, RX3_B, SEL_SCIF3_1), 7018c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_7_4, SCL3_D, SEL_I2C03_3), 7028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_7_4, A8), 7038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_11_8, DU0_DG1), 7048c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_11_8, TX3_B, SEL_SCIF3_1), 7058c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_11_8, SDA3_D, SEL_I2C03_3), 7068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_11_8, PWM3_B), 7078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_11_8, A9), 7088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_15_12, DU0_DG2), 7098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_15_12, RX4_D, SEL_SCIF4_3), 7108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_15_12, A10), 7118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_19_16, DU0_DG3), 7128c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_19_16, TX4_D, SEL_SCIF4_3), 7138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_19_16, PWM4_B), 7148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_19_16, A11), 7158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_23_20, DU0_DG4), 7168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_23_20, HRX0_A, SEL_HSCIF0_0), 7178c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_23_20, A12), 7188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_27_24, DU0_DG5), 7198c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_27_24, HTX0_A, SEL_HSCIF0_0), 7208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_27_24, PWM5_B), 7218c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_27_24, A13), 7228c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_31_28, DU0_DG6), 7238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP5_31_28, HRX1_C, SEL_HSCIF1_2), 7248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP5_31_28, A14), 7258c2ecf20Sopenharmony_ci 7268c2ecf20Sopenharmony_ci /* IPSR6 */ 7278c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_3_0, DU0_DG7), 7288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_3_0, HTX1_C, SEL_HSCIF1_2), 7298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_3_0, PWM6_B), 7308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_3_0, A15), 7318c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_7_4, DU0_DB0), 7328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_7_4, SCL4_D, SEL_I2C04_3), 7338c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_7_4, CAN0_RX_C, SEL_CAN0_2), 7348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_7_4, A16), 7358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_11_8, DU0_DB1), 7368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_11_8, SDA4_D, SEL_I2C04_3), 7378c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_11_8, CAN0_TX_C, SEL_CAN0_2), 7388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_11_8, A17), 7398c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_15_12, DU0_DB2), 7408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_15_12, HCTS0_N), 7418c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_15_12, A18), 7428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_19_16, DU0_DB3), 7438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_19_16, HRTS0_N), 7448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_19_16, A19), 7458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_23_20, DU0_DB4), 7468c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_23_20, HCTS1_N_C, SEL_HSCIF1_2), 7478c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_23_20, A20), 7488c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_27_24, DU0_DB5), 7498c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP6_27_24, HRTS1_N_C, SEL_HSCIF1_2), 7508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_27_24, A21), 7518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_31_28, DU0_DB6), 7528c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP6_31_28, A22), 7538c2ecf20Sopenharmony_ci 7548c2ecf20Sopenharmony_ci /* IPSR7 */ 7558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_3_0, DU0_DB7), 7568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_3_0, A23), 7578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_7_4, DU0_DOTCLKIN), 7588c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_7_4, A24), 7598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_11_8, DU0_DOTCLKOUT0), 7608c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_11_8, A25), 7618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_15_12, DU0_DOTCLKOUT1), 7628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_15_12, MSIOF2_RXD_B, SEL_MSIOF2_1), 7638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_15_12, CS1_N_A26), 7648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_19_16, DU0_EXHSYNC_DU0_HSYNC), 7658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_19_16, MSIOF2_TXD_B, SEL_MSIOF2_1), 7668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_19_16, DREQ0_N), 7678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_23_20, DU0_EXVSYNC_DU0_VSYNC), 7688c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_23_20, MSIOF2_SYNC_B, SEL_MSIOF2_1), 7698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_23_20, DACK0), 7708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_27_24, DU0_EXODDF_DU0_ODDF_DISP_CDE), 7718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_27_24, MSIOF2_SCK_B, SEL_MSIOF2_1), 7728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_27_24, DRACK0), 7738c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP7_31_28, DU0_DISP), 7748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP7_31_28, CAN1_RX_C, SEL_CAN1_2), 7758c2ecf20Sopenharmony_ci 7768c2ecf20Sopenharmony_ci /* IPSR8 */ 7778c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_3_0, DU0_CDE), 7788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP8_3_0, CAN1_TX_C, SEL_CAN1_2), 7798c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_7_4, VI1_CLK), 7808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_7_4, AVB_RX_CLK), 7818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_7_4, ETH_REF_CLK), 7828c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_8, VI1_DATA0), 7838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_8, AVB_RX_DV), 7848c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_11_8, ETH_CRS_DV), 7858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_15_12, VI1_DATA1), 7868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_15_12, AVB_RXD0), 7878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_15_12, ETH_RXD0), 7888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_16, VI1_DATA2), 7898c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_16, AVB_RXD1), 7908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_19_16, ETH_RXD1), 7918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_23_20, VI1_DATA3), 7928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_23_20, AVB_RXD2), 7938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_23_20, ETH_MDIO), 7948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_27_24, VI1_DATA4), 7958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_27_24, AVB_RXD3), 7968c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_27_24, ETH_RX_ER), 7978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_31_28, VI1_DATA5), 7988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_31_28, AVB_RXD4), 7998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP8_31_28, ETH_LINK), 8008c2ecf20Sopenharmony_ci 8018c2ecf20Sopenharmony_ci /* IPSR9 */ 8028c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_3_0, VI1_DATA6), 8038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_3_0, AVB_RXD5), 8048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_3_0, ETH_TXD1), 8058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_7_4, VI1_DATA7), 8068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_7_4, AVB_RXD6), 8078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_7_4, ETH_TX_EN), 8088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_11_8, VI1_CLKENB), 8098c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_11_8, SCL3_A, SEL_I2C03_0), 8108c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_11_8, AVB_RXD7), 8118c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_11_8, ETH_MAGIC), 8128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_15_12, VI1_FIELD), 8138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_15_12, SDA3_A, SEL_I2C03_0), 8148c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_15_12, AVB_RX_ER), 8158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_15_12, ETH_TXD0), 8168c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_19_16, VI1_HSYNC_N), 8178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_19_16, RX0_B, SEL_SCIF0_1), 8188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_19_16, SCL0_C, SEL_I2C00_2), 8198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_19_16, AVB_GTXREFCLK), 8208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_19_16, ETH_MDC), 8218c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_23_20, VI1_VSYNC_N), 8228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_23_20, TX0_B, SEL_SCIF0_1), 8238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_23_20, SDA0_C, SEL_I2C00_2), 8248c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_23_20, AUDIO_CLKOUT_B), 8258c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_23_20, AVB_TX_CLK), 8268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_27_24, VI1_DATA8), 8278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_27_24, SCL2_B, SEL_I2C02_1), 8288c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_27_24, AVB_TX_EN), 8298c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_31_28, VI1_DATA9), 8308c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP9_31_28, SDA2_B, SEL_I2C02_1), 8318c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP9_31_28, AVB_TXD0), 8328c2ecf20Sopenharmony_ci 8338c2ecf20Sopenharmony_ci /* IPSR10 */ 8348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_3_0, VI1_DATA10), 8358c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_3_0, CAN0_RX_B, SEL_CAN0_1), 8368c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_3_0, AVB_TXD1), 8378c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_7_4, VI1_DATA11), 8388c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_7_4, CAN0_TX_B, SEL_CAN0_1), 8398c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_7_4, AVB_TXD2), 8408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_11_8, AVB_TXD3), 8418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_8, AUDIO_CLKA_B, SEL_ADGA_1), 8428c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_8, SSI_SCK1_D, SEL_SSI1_3), 8438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_8, RX5_F, SEL_SCIF5_5), 8448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_11_8, MSIOF0_RXD_B, SEL_MSIOF0_1), 8458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_15_12, AVB_TXD4), 8468c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_15_12, AUDIO_CLKB_B, SEL_ADGB_1), 8478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_15_12, SSI_WS1_D, SEL_SSI1_3), 8488c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_15_12, TX5_F, SEL_SCIF5_5), 8498c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_15_12, MSIOF0_TXD_B, SEL_MSIOF0_1), 8508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_19_16, AVB_TXD5), 8518c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_19_16, SCIF_CLK_B, SEL_SCIFCLK_1), 8528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_19_16, AUDIO_CLKC_B, SEL_ADGC_1), 8538c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_19_16, SSI_SDATA1_D, SEL_SSI1_3), 8548c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_19_16, MSIOF0_SCK_B, SEL_MSIOF0_1), 8558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_20, SCL0_A, SEL_I2C00_0), 8568c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_20, RX0_C, SEL_SCIF0_2), 8578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_23_20, PWM5_A), 8588c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_20, TCLK1_B, SEL_TMU1_1), 8598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_23_20, AVB_TXD6), 8608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_20, CAN1_RX_D, SEL_CAN1_3), 8618c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_23_20, MSIOF0_SYNC_B, SEL_MSIOF0_1), 8628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_27_24, SDA0_A, SEL_I2C00_0), 8638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_27_24, TX0_C, SEL_SCIF0_2), 8648c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_27_24, IRQ5), 8658c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_27_24, CAN_CLK_A, SEL_CANCLK_0), 8668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_27_24, AVB_GTX_CLK), 8678c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_27_24, CAN1_TX_D, SEL_CAN1_3), 8688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_27_24, DVC_MUTE), 8698c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_31_28, SCL1_A, SEL_I2C01_0), 8708c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_31_28, RX4_A, SEL_SCIF4_0), 8718c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_31_28, PWM5_D), 8728c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_31_28, DU1_DR0), 8738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP10_31_28, SSI_SCK6_B, SEL_SSI6_1), 8748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP10_31_28, VI0_G0), 8758c2ecf20Sopenharmony_ci 8768c2ecf20Sopenharmony_ci /* IPSR11 */ 8778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_3_0, SDA1_A, SEL_I2C01_0), 8788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_3_0, TX4_A, SEL_SCIF4_0), 8798c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_3_0, DU1_DR1), 8808c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_3_0, SSI_WS6_B, SEL_SSI6_1), 8818c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_3_0, VI0_G1), 8828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_4, MSIOF0_RXD_A, SEL_MSIOF0_0), 8838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_4, RX5_A, SEL_SCIF5_0), 8848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_4, SCL2_C, SEL_I2C02_2), 8858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_7_4, DU1_DR2), 8868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_7_4, QSPI1_MOSI_QSPI1_IO0), 8878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_7_4, SSI_SDATA6_B, SEL_SSI6_1), 8888c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_7_4, VI0_G2), 8898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_11_8, MSIOF0_TXD_A, SEL_MSIOF0_0), 8908c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_11_8, TX5_A, SEL_SCIF5_0), 8918c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_11_8, SDA2_C, SEL_I2C02_2), 8928c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_11_8, DU1_DR3), 8938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_11_8, QSPI1_MISO_QSPI1_IO1), 8948c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_11_8, SSI_WS78_B, SEL_SSI7_1), 8958c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_11_8, VI0_G3), 8968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_15_12, MSIOF0_SCK_A, SEL_MSIOF0_0), 8978c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_15_12, IRQ0), 8988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_15_12, DU1_DR4), 8998c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_15_12, QSPI1_SPCLK), 9008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_15_12, SSI_SCK78_B, SEL_SSI7_1), 9018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_15_12, VI0_G4), 9028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_19_16, MSIOF0_SYNC_A, SEL_MSIOF0_0), 9038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_19_16, PWM1_A), 9048c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_19_16, DU1_DR5), 9058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_19_16, QSPI1_IO2), 9068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_19_16, SSI_SDATA7_B, SEL_SSI7_1), 9078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_23_20, MSIOF0_SS1_A, SEL_MSIOF0_0), 9088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_23_20, DU1_DR6), 9098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_23_20, QSPI1_IO3), 9108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_23_20, SSI_SDATA8_B, SEL_SSI8_1), 9118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_27_24, MSIOF0_SS2_A, SEL_MSIOF0_0), 9128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_27_24, DU1_DR7), 9138c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_27_24, QSPI1_SSL), 9148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_31_28, HRX1_A, SEL_HSCIF1_0), 9158c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_31_28, SCL4_A, SEL_I2C04_0), 9168c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_31_28, PWM6_A), 9178c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP11_31_28, DU1_DG0), 9188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP11_31_28, RX0_A, SEL_SCIF0_0), 9198c2ecf20Sopenharmony_ci 9208c2ecf20Sopenharmony_ci /* IPSR12 */ 9218c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_3_0, HTX1_A, SEL_HSCIF1_0), 9228c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_3_0, SDA4_A, SEL_I2C04_0), 9238c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_3_0, DU1_DG1), 9248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_3_0, TX0_A, SEL_SCIF0_0), 9258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_7_4, HCTS1_N_A, SEL_HSCIF1_0), 9268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_7_4, PWM2_A), 9278c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_7_4, DU1_DG2), 9288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_7_4, REMOCON_B, SEL_RCN_1), 9298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_11_8, HRTS1_N_A, SEL_HSCIF1_0), 9308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_11_8, DU1_DG3), 9318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_11_8, SSI_WS1_B, SEL_SSI1_1), 9328c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_11_8, IRQ1), 9338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_15_12, SD2_CLK), 9348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_15_12, HSCK1), 9358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_15_12, DU1_DG4), 9368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_15_12, SSI_SCK1_B, SEL_SSI1_1), 9378c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_19_16, SD2_CMD), 9388c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_19_16, SCIF1_SCK_A, SEL_SCIF1_0), 9398c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_19_16, TCLK2_A, SEL_TMU2_0), 9408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_19_16, DU1_DG5), 9418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_19_16, SSI_SCK2_B, SEL_SSI2_1), 9428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_19_16, PWM3_A), 9438c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_23_20, SD2_DAT0), 9448c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_20, RX1_A, SEL_SCIF1_0), 9458c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_20, SCL1_E, SEL_I2C01_4), 9468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_23_20, DU1_DG6), 9478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_23_20, SSI_SDATA1_B, SEL_SSI1_1), 9488c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_27_24, SD2_DAT1), 9498c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_27_24, TX1_A, SEL_SCIF1_0), 9508c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_27_24, SDA1_E, SEL_I2C01_4), 9518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_27_24, DU1_DG7), 9528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_27_24, SSI_WS2_B, SEL_SSI2_1), 9538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_31_28, SD2_DAT2), 9548c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_31_28, RX2_A, SEL_SCIF2_0), 9558c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP12_31_28, DU1_DB0), 9568c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP12_31_28, SSI_SDATA2_B, SEL_SSI2_1), 9578c2ecf20Sopenharmony_ci 9588c2ecf20Sopenharmony_ci /* IPSR13 */ 9598c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_3_0, SD2_DAT3), 9608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_3_0, TX2_A, SEL_SCIF2_0), 9618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_3_0, DU1_DB1), 9628c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_3_0, SSI_WS9_B, SEL_SSI9_1), 9638c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_7_4, SD2_CD), 9648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_7_4, SCIF2_SCK_A, SEL_SCIF2_CLK_0), 9658c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_7_4, DU1_DB2), 9668c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_7_4, SSI_SCK9_B, SEL_SSI9_1), 9678c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_11_8, SD2_WP), 9688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_11_8, SCIF3_SCK), 9698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_11_8, DU1_DB3), 9708c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_11_8, SSI_SDATA9_B, SEL_SSI9_1), 9718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_15_12, RX3_A, SEL_SCIF3_0), 9728c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_15_12, SCL1_C, SEL_I2C01_2), 9738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_15_12, MSIOF1_RXD_B, SEL_MSIOF1_1), 9748c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_15_12, DU1_DB4), 9758c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_15_12, AUDIO_CLKA_C, SEL_ADGA_2), 9768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_15_12, SSI_SDATA4_B, SEL_SSI4_1), 9778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_19_16, TX3_A, SEL_SCIF3_0), 9788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_19_16, SDA1_C, SEL_I2C01_2), 9798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_19_16, MSIOF1_TXD_B, SEL_MSIOF1_1), 9808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_19_16, DU1_DB5), 9818c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_19_16, AUDIO_CLKB_C, SEL_ADGB_2), 9828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_19_16, SSI_WS4_B, SEL_SSI4_1), 9838c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_20, SCL2_A, SEL_I2C02_0), 9848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_20, MSIOF1_SCK_B, SEL_MSIOF1_1), 9858c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_23_20, DU1_DB6), 9868c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_20, AUDIO_CLKC_C, SEL_ADGC_2), 9878c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_23_20, SSI_SCK4_B, SEL_SSI4_1), 9888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_27_24, SDA2_A, SEL_I2C02_0), 9898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_27_24, MSIOF1_SYNC_B, SEL_MSIOF1_1), 9908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_27_24, DU1_DB7), 9918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_27_24, AUDIO_CLKOUT_C), 9928c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP13_31_28, SSI_SCK5_A, SEL_SSI5_0), 9938c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP13_31_28, DU1_DOTCLKOUT1), 9948c2ecf20Sopenharmony_ci 9958c2ecf20Sopenharmony_ci /* IPSR14 */ 9968c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_3_0, SSI_WS5_A, SEL_SSI5_0), 9978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_3_0, SCL3_C, SEL_I2C03_2), 9988c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_3_0, DU1_DOTCLKIN), 9998c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_7_4, SSI_SDATA5_A, SEL_SSI5_0), 10008c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_7_4, SDA3_C, SEL_I2C03_2), 10018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_7_4, DU1_DOTCLKOUT0), 10028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_11_8, SSI_SCK6_A, SEL_SSI6_0), 10038c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_11_8, DU1_EXODDF_DU1_ODDF_DISP_CDE), 10048c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_15_12, SSI_WS6_A, SEL_SSI6_0), 10058c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_15_12, SCL4_C, SEL_I2C04_2), 10068c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_15_12, DU1_EXHSYNC_DU1_HSYNC), 10078c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_19_16, SSI_SDATA6_A, SEL_SSI6_0), 10088c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_19_16, SDA4_C, SEL_I2C04_2), 10098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_19_16, DU1_EXVSYNC_DU1_VSYNC), 10108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_23_20, SSI_SCK78_A, SEL_SSI7_0), 10118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_23_20, SDA4_E, SEL_I2C04_4), 10128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_23_20, DU1_DISP), 10138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_27_24, SSI_WS78_A, SEL_SSI7_0), 10148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_27_24, SCL4_E, SEL_I2C04_4), 10158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_27_24, DU1_CDE), 10168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_31_28, SSI_SDATA7_A, SEL_SSI7_0), 10178c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_31_28, IRQ8), 10188c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_31_28, AUDIO_CLKA_D, SEL_ADGA_3), 10198c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP14_31_28, CAN_CLK_D, SEL_CANCLK_3), 10208c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP14_31_28, VI0_G5), 10218c2ecf20Sopenharmony_ci 10228c2ecf20Sopenharmony_ci /* IPSR15 */ 10238c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_3_0, SSI_SCK0129_A, SEL_SSI0_0), 10248c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_3_0, MSIOF1_RXD_A, SEL_MSIOF1_0), 10258c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_3_0, RX5_D, SEL_SCIF5_3), 10268c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_3_0, VI0_G6), 10278c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_7_4, SSI_WS0129_A, SEL_SSI0_0), 10288c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_7_4, MSIOF1_TXD_A, SEL_MSIOF1_0), 10298c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_7_4, TX5_D, SEL_SCIF5_3), 10308c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_7_4, VI0_G7), 10318c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_11_8, SSI_SDATA0_A, SEL_SSI0_0), 10328c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_11_8, MSIOF1_SYNC_A, SEL_MSIOF1_0), 10338c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_11_8, PWM0_C), 10348c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_11_8, VI0_R0), 10358c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_15_12, SSI_SCK34), 10368c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_15_12, MSIOF1_SCK_A, SEL_MSIOF1_0), 10378c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_15_12, AVB_MDC), 10388c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_15_12, DACK1), 10398c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_15_12, VI0_R1), 10408c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_19_16, SSI_WS34), 10418c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_19_16, MSIOF1_SS1_A, SEL_MSIOF1_0), 10428c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_19_16, AVB_MDIO), 10438c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_19_16, CAN1_RX_A, SEL_CAN1_0), 10448c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_19_16, DREQ1_N), 10458c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_19_16, VI0_R2), 10468c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_23_20, SSI_SDATA3), 10478c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_23_20, MSIOF1_SS2_A, SEL_MSIOF1_0), 10488c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_23_20, AVB_LINK), 10498c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_23_20, CAN1_TX_A, SEL_CAN1_0), 10508c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_23_20, DREQ2_N), 10518c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_23_20, VI0_R3), 10528c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_27_24, SSI_SCK4_A, SEL_SSI4_0), 10538c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_27_24, AVB_MAGIC), 10548c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_27_24, VI0_R4), 10558c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP15_31_28, SSI_WS4_A, SEL_SSI4_0), 10568c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_31_28, AVB_PHY_INT), 10578c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP15_31_28, VI0_R5), 10588c2ecf20Sopenharmony_ci 10598c2ecf20Sopenharmony_ci /* IPSR16 */ 10608c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_3_0, SSI_SDATA4_A, SEL_SSI4_0), 10618c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_3_0, AVB_CRS), 10628c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_3_0, VI0_R6), 10638c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_7_4, SSI_SCK1_A, SEL_SSI1_0), 10648c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_7_4, SCIF1_SCK_B, SEL_SCIF1_1), 10658c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_7_4, PWM1_D), 10668c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_7_4, IRQ9), 10678c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_7_4, REMOCON_A, SEL_RCN_0), 10688c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_7_4, DACK2), 10698c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_7_4, VI0_CLK), 10708c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_7_4, AVB_COL), 10718c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_11_8, SSI_SDATA8_A, SEL_SSI8_0), 10728c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_11_8, RX1_B, SEL_SCIF1_1), 10738c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_11_8, CAN0_RX_D, SEL_CAN0_3), 10748c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_11_8, AVB_AVTP_CAPTURE_B, SEL_AVB_1), 10758c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_11_8, VI0_R7), 10768c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_15_12, SSI_WS1_A, SEL_SSI1_0), 10778c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_15_12, TX1_B, SEL_SCIF1_1), 10788c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_15_12, CAN0_TX_D, SEL_CAN0_3), 10798c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_15_12, AVB_AVTP_MATCH_B, SEL_AVB_1), 10808c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_15_12, VI0_DATA0_VI0_B0), 10818c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_19_16, SSI_SDATA1_A, SEL_SSI1_0), 10828c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_19_16, HRX1_B, SEL_HSCIF1_1), 10838c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_19_16, VI0_DATA1_VI0_B1), 10848c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_23_20, SSI_SCK2_A, SEL_SSI2_0), 10858c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_23_20, HTX1_B, SEL_HSCIF1_1), 10868c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_23_20, AVB_TXD7), 10878c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_23_20, VI0_DATA2_VI0_B2), 10888c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_27_24, SSI_WS2_A, SEL_SSI2_0), 10898c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_27_24, HCTS1_N_B, SEL_HSCIF1_1), 10908c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_27_24, AVB_TX_ER), 10918c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_27_24, VI0_DATA3_VI0_B3), 10928c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_31_28, SSI_SDATA2_A, SEL_SSI2_0), 10938c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP16_31_28, HRTS1_N_B, SEL_HSCIF1_1), 10948c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP16_31_28, VI0_DATA4_VI0_B4), 10958c2ecf20Sopenharmony_ci 10968c2ecf20Sopenharmony_ci /* IPSR17 */ 10978c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_3_0, SSI_SCK9_A, SEL_SSI9_0), 10988c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_3_0, RX2_B, SEL_SCIF2_1), 10998c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_3_0, SCL3_E, SEL_I2C03_4), 11008c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_3_0, EX_WAIT1), 11018c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_3_0, VI0_DATA5_VI0_B5), 11028c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_7_4, SSI_WS9_A, SEL_SSI9_0), 11038c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_7_4, TX2_B, SEL_SCIF2_1), 11048c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_7_4, SDA3_E, SEL_I2C03_4), 11058c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_7_4, VI0_DATA6_VI0_B6), 11068c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_11_8, SSI_SDATA9_A, SEL_SSI9_0), 11078c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_11_8, SCIF2_SCK_B), 11088c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_11_8, PWM2_D), 11098c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_11_8, VI0_DATA7_VI0_B7), 11108c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_15_12, AUDIO_CLKA_A, SEL_ADGA_0), 11118c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_15_12, SCL0_B, SEL_I2C00_1), 11128c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_15_12, VI0_CLKENB), 11138c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_19_16, AUDIO_CLKB_A, SEL_ADGB_0), 11148c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_19_16, SDA0_B, SEL_I2C00_1), 11158c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_19_16, VI0_FIELD), 11168c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_23_20, AUDIO_CLKC_A, SEL_ADGC_0), 11178c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_23_20, SCL4_B, SEL_I2C04_1), 11188c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_23_20, VI0_HSYNC_N), 11198c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_27_24, AUDIO_CLKOUT_A), 11208c2ecf20Sopenharmony_ci PINMUX_IPSR_MSEL(IP17_27_24, SDA4_B, SEL_I2C04_1), 11218c2ecf20Sopenharmony_ci PINMUX_IPSR_GPSR(IP17_27_24, VI0_VSYNC_N), 11228c2ecf20Sopenharmony_ci}; 11238c2ecf20Sopenharmony_ci 11248c2ecf20Sopenharmony_cistatic const struct sh_pfc_pin pinmux_pins[] = { 11258c2ecf20Sopenharmony_ci PINMUX_GPIO_GP_ALL(), 11268c2ecf20Sopenharmony_ci}; 11278c2ecf20Sopenharmony_ci 11288c2ecf20Sopenharmony_ci/* - AVB -------------------------------------------------------------------- */ 11298c2ecf20Sopenharmony_cistatic const unsigned int avb_col_pins[] = { 11308c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), 11318c2ecf20Sopenharmony_ci}; 11328c2ecf20Sopenharmony_cistatic const unsigned int avb_col_mux[] = { 11338c2ecf20Sopenharmony_ci AVB_COL_MARK, 11348c2ecf20Sopenharmony_ci}; 11358c2ecf20Sopenharmony_cistatic const unsigned int avb_crs_pins[] = { 11368c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), 11378c2ecf20Sopenharmony_ci}; 11388c2ecf20Sopenharmony_cistatic const unsigned int avb_crs_mux[] = { 11398c2ecf20Sopenharmony_ci AVB_CRS_MARK, 11408c2ecf20Sopenharmony_ci}; 11418c2ecf20Sopenharmony_cistatic const unsigned int avb_link_pins[] = { 11428c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 14), 11438c2ecf20Sopenharmony_ci}; 11448c2ecf20Sopenharmony_cistatic const unsigned int avb_link_mux[] = { 11458c2ecf20Sopenharmony_ci AVB_LINK_MARK, 11468c2ecf20Sopenharmony_ci}; 11478c2ecf20Sopenharmony_cistatic const unsigned int avb_magic_pins[] = { 11488c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 15), 11498c2ecf20Sopenharmony_ci}; 11508c2ecf20Sopenharmony_cistatic const unsigned int avb_magic_mux[] = { 11518c2ecf20Sopenharmony_ci AVB_MAGIC_MARK, 11528c2ecf20Sopenharmony_ci}; 11538c2ecf20Sopenharmony_cistatic const unsigned int avb_phy_int_pins[] = { 11548c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 16), 11558c2ecf20Sopenharmony_ci}; 11568c2ecf20Sopenharmony_cistatic const unsigned int avb_phy_int_mux[] = { 11578c2ecf20Sopenharmony_ci AVB_PHY_INT_MARK, 11588c2ecf20Sopenharmony_ci}; 11598c2ecf20Sopenharmony_cistatic const unsigned int avb_mdio_pins[] = { 11608c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 13), 11618c2ecf20Sopenharmony_ci}; 11628c2ecf20Sopenharmony_cistatic const unsigned int avb_mdio_mux[] = { 11638c2ecf20Sopenharmony_ci AVB_MDC_MARK, AVB_MDIO_MARK, 11648c2ecf20Sopenharmony_ci}; 11658c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_tx_rx_pins[] = { 11668c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 12), RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 15), 11678c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 16), RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 13), 11688c2ecf20Sopenharmony_ci 11698c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 0), RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3), 11708c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 4), RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 1), 11718c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 10), 11728c2ecf20Sopenharmony_ci}; 11738c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_tx_rx_mux[] = { 11748c2ecf20Sopenharmony_ci AVB_TX_CLK_MARK, AVB_TXD0_MARK, AVB_TXD1_MARK, AVB_TXD2_MARK, 11758c2ecf20Sopenharmony_ci AVB_TXD3_MARK, AVB_TX_EN_MARK, 11768c2ecf20Sopenharmony_ci 11778c2ecf20Sopenharmony_ci AVB_RX_CLK_MARK, AVB_RXD0_MARK, AVB_RXD1_MARK, AVB_RXD2_MARK, 11788c2ecf20Sopenharmony_ci AVB_RXD3_MARK, AVB_RX_DV_MARK, AVB_RX_ER_MARK, 11798c2ecf20Sopenharmony_ci}; 11808c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_tx_er_pins[] = { 11818c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 23), 11828c2ecf20Sopenharmony_ci}; 11838c2ecf20Sopenharmony_cistatic const unsigned int avb_mii_tx_er_mux[] = { 11848c2ecf20Sopenharmony_ci AVB_TX_ER_MARK, 11858c2ecf20Sopenharmony_ci}; 11868c2ecf20Sopenharmony_cistatic const unsigned int avb_gmii_tx_rx_pins[] = { 11878c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 1), RCAR_GP_PIN(3, 11), RCAR_GP_PIN(3, 12), 11888c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 11898c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), RCAR_GP_PIN(3, 29), 11908c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), RCAR_GP_PIN(5, 22), RCAR_GP_PIN(3, 13), 11918c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 23), 11928c2ecf20Sopenharmony_ci 11938c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 0), RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3), 11948c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 4), RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 6), 11958c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 7), RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9), 11968c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 1), RCAR_GP_PIN(3, 10), 11978c2ecf20Sopenharmony_ci}; 11988c2ecf20Sopenharmony_cistatic const unsigned int avb_gmii_tx_rx_mux[] = { 11998c2ecf20Sopenharmony_ci AVB_GTX_CLK_MARK, AVB_GTXREFCLK_MARK, AVB_TX_CLK_MARK, AVB_TXD0_MARK, 12008c2ecf20Sopenharmony_ci AVB_TXD1_MARK, AVB_TXD2_MARK, AVB_TXD3_MARK, AVB_TXD4_MARK, 12018c2ecf20Sopenharmony_ci AVB_TXD5_MARK, AVB_TXD6_MARK, AVB_TXD7_MARK, AVB_TX_EN_MARK, 12028c2ecf20Sopenharmony_ci AVB_TX_ER_MARK, 12038c2ecf20Sopenharmony_ci 12048c2ecf20Sopenharmony_ci AVB_RX_CLK_MARK, AVB_RXD0_MARK, AVB_RXD1_MARK, AVB_RXD2_MARK, 12058c2ecf20Sopenharmony_ci AVB_RXD3_MARK, AVB_RXD4_MARK, AVB_RXD5_MARK, AVB_RXD6_MARK, 12068c2ecf20Sopenharmony_ci AVB_RXD7_MARK, AVB_RX_DV_MARK, AVB_RX_ER_MARK, 12078c2ecf20Sopenharmony_ci}; 12088c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_match_a_pins[] = { 12098c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 15), 12108c2ecf20Sopenharmony_ci}; 12118c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_match_a_mux[] = { 12128c2ecf20Sopenharmony_ci AVB_AVTP_MATCH_A_MARK, 12138c2ecf20Sopenharmony_ci}; 12148c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_capture_a_pins[] = { 12158c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 14), 12168c2ecf20Sopenharmony_ci}; 12178c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_capture_a_mux[] = { 12188c2ecf20Sopenharmony_ci AVB_AVTP_CAPTURE_A_MARK, 12198c2ecf20Sopenharmony_ci}; 12208c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_match_b_pins[] = { 12218c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), 12228c2ecf20Sopenharmony_ci}; 12238c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_match_b_mux[] = { 12248c2ecf20Sopenharmony_ci AVB_AVTP_MATCH_B_MARK, 12258c2ecf20Sopenharmony_ci}; 12268c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_capture_b_pins[] = { 12278c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 19), 12288c2ecf20Sopenharmony_ci}; 12298c2ecf20Sopenharmony_cistatic const unsigned int avb_avtp_capture_b_mux[] = { 12308c2ecf20Sopenharmony_ci AVB_AVTP_CAPTURE_B_MARK, 12318c2ecf20Sopenharmony_ci}; 12328c2ecf20Sopenharmony_ci/* - DU --------------------------------------------------------------------- */ 12338c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb666_pins[] = { 12348c2ecf20Sopenharmony_ci /* R[7:2], G[7:2], B[7:2] */ 12358c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 5), 12368c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 2), 12378c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13), 12388c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 12), RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10), 12398c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 22), RCAR_GP_PIN(2, 21), 12408c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 20), RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 18), 12418c2ecf20Sopenharmony_ci}; 12428c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb666_mux[] = { 12438c2ecf20Sopenharmony_ci DU0_DR7_MARK, DU0_DR6_MARK, DU0_DR5_MARK, DU0_DR4_MARK, 12448c2ecf20Sopenharmony_ci DU0_DR3_MARK, DU0_DR2_MARK, 12458c2ecf20Sopenharmony_ci DU0_DG7_MARK, DU0_DG6_MARK, DU0_DG5_MARK, DU0_DG4_MARK, 12468c2ecf20Sopenharmony_ci DU0_DG3_MARK, DU0_DG2_MARK, 12478c2ecf20Sopenharmony_ci DU0_DB7_MARK, DU0_DB6_MARK, DU0_DB5_MARK, DU0_DB4_MARK, 12488c2ecf20Sopenharmony_ci DU0_DB3_MARK, DU0_DB2_MARK, 12498c2ecf20Sopenharmony_ci}; 12508c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb888_pins[] = { 12518c2ecf20Sopenharmony_ci /* R[7:0], G[7:0], B[7:0] */ 12528c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 5), 12538c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 2), 12548c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 1), RCAR_GP_PIN(2, 0), 12558c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13), 12568c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 12), RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10), 12578c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 9), RCAR_GP_PIN(2, 8), 12588c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 22), RCAR_GP_PIN(2, 21), 12598c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 20), RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 18), 12608c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 16), 12618c2ecf20Sopenharmony_ci}; 12628c2ecf20Sopenharmony_cistatic const unsigned int du0_rgb888_mux[] = { 12638c2ecf20Sopenharmony_ci DU0_DR7_MARK, DU0_DR6_MARK, DU0_DR5_MARK, DU0_DR4_MARK, 12648c2ecf20Sopenharmony_ci DU0_DR3_MARK, DU0_DR2_MARK, DU0_DR1_MARK, DU0_DR0_MARK, 12658c2ecf20Sopenharmony_ci DU0_DG7_MARK, DU0_DG6_MARK, DU0_DG5_MARK, DU0_DG4_MARK, 12668c2ecf20Sopenharmony_ci DU0_DG3_MARK, DU0_DG2_MARK, DU0_DG1_MARK, DU0_DG0_MARK, 12678c2ecf20Sopenharmony_ci DU0_DB7_MARK, DU0_DB6_MARK, DU0_DB5_MARK, DU0_DB4_MARK, 12688c2ecf20Sopenharmony_ci DU0_DB3_MARK, DU0_DB2_MARK, DU0_DB1_MARK, DU0_DB0_MARK, 12698c2ecf20Sopenharmony_ci}; 12708c2ecf20Sopenharmony_cistatic const unsigned int du0_clk0_out_pins[] = { 12718c2ecf20Sopenharmony_ci /* DOTCLKOUT0 */ 12728c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 25), 12738c2ecf20Sopenharmony_ci}; 12748c2ecf20Sopenharmony_cistatic const unsigned int du0_clk0_out_mux[] = { 12758c2ecf20Sopenharmony_ci DU0_DOTCLKOUT0_MARK 12768c2ecf20Sopenharmony_ci}; 12778c2ecf20Sopenharmony_cistatic const unsigned int du0_clk1_out_pins[] = { 12788c2ecf20Sopenharmony_ci /* DOTCLKOUT1 */ 12798c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 26), 12808c2ecf20Sopenharmony_ci}; 12818c2ecf20Sopenharmony_cistatic const unsigned int du0_clk1_out_mux[] = { 12828c2ecf20Sopenharmony_ci DU0_DOTCLKOUT1_MARK 12838c2ecf20Sopenharmony_ci}; 12848c2ecf20Sopenharmony_cistatic const unsigned int du0_clk_in_pins[] = { 12858c2ecf20Sopenharmony_ci /* CLKIN */ 12868c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 24), 12878c2ecf20Sopenharmony_ci}; 12888c2ecf20Sopenharmony_cistatic const unsigned int du0_clk_in_mux[] = { 12898c2ecf20Sopenharmony_ci DU0_DOTCLKIN_MARK 12908c2ecf20Sopenharmony_ci}; 12918c2ecf20Sopenharmony_cistatic const unsigned int du0_sync_pins[] = { 12928c2ecf20Sopenharmony_ci /* EXVSYNC/VSYNC, EXHSYNC/HSYNC */ 12938c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 28), RCAR_GP_PIN(2, 27), 12948c2ecf20Sopenharmony_ci}; 12958c2ecf20Sopenharmony_cistatic const unsigned int du0_sync_mux[] = { 12968c2ecf20Sopenharmony_ci DU0_EXVSYNC_DU0_VSYNC_MARK, DU0_EXHSYNC_DU0_HSYNC_MARK 12978c2ecf20Sopenharmony_ci}; 12988c2ecf20Sopenharmony_cistatic const unsigned int du0_oddf_pins[] = { 12998c2ecf20Sopenharmony_ci /* EXODDF/ODDF/DISP/CDE */ 13008c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 29), 13018c2ecf20Sopenharmony_ci}; 13028c2ecf20Sopenharmony_cistatic const unsigned int du0_oddf_mux[] = { 13038c2ecf20Sopenharmony_ci DU0_EXODDF_DU0_ODDF_DISP_CDE_MARK, 13048c2ecf20Sopenharmony_ci}; 13058c2ecf20Sopenharmony_cistatic const unsigned int du0_cde_pins[] = { 13068c2ecf20Sopenharmony_ci /* CDE */ 13078c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 31), 13088c2ecf20Sopenharmony_ci}; 13098c2ecf20Sopenharmony_cistatic const unsigned int du0_cde_mux[] = { 13108c2ecf20Sopenharmony_ci DU0_CDE_MARK, 13118c2ecf20Sopenharmony_ci}; 13128c2ecf20Sopenharmony_cistatic const unsigned int du0_disp_pins[] = { 13138c2ecf20Sopenharmony_ci /* DISP */ 13148c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 30), 13158c2ecf20Sopenharmony_ci}; 13168c2ecf20Sopenharmony_cistatic const unsigned int du0_disp_mux[] = { 13178c2ecf20Sopenharmony_ci DU0_DISP_MARK 13188c2ecf20Sopenharmony_ci}; 13198c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb666_pins[] = { 13208c2ecf20Sopenharmony_ci /* R[7:2], G[7:2], B[7:2] */ 13218c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 9), RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 7), 13228c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 5), RCAR_GP_PIN(4, 4), 13238c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 17), RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 15), 13248c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 13), RCAR_GP_PIN(4, 12), 13258c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 25), RCAR_GP_PIN(4, 24), RCAR_GP_PIN(4, 23), 13268c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 21), RCAR_GP_PIN(4, 20), 13278c2ecf20Sopenharmony_ci}; 13288c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb666_mux[] = { 13298c2ecf20Sopenharmony_ci DU1_DR7_MARK, DU1_DR6_MARK, DU1_DR5_MARK, DU1_DR4_MARK, 13308c2ecf20Sopenharmony_ci DU1_DR3_MARK, DU1_DR2_MARK, 13318c2ecf20Sopenharmony_ci DU1_DG7_MARK, DU1_DG6_MARK, DU1_DG5_MARK, DU1_DG4_MARK, 13328c2ecf20Sopenharmony_ci DU1_DG3_MARK, DU1_DG2_MARK, 13338c2ecf20Sopenharmony_ci DU1_DB7_MARK, DU1_DB6_MARK, DU1_DB5_MARK, DU1_DB4_MARK, 13348c2ecf20Sopenharmony_ci DU1_DB3_MARK, DU1_DB2_MARK, 13358c2ecf20Sopenharmony_ci}; 13368c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb888_pins[] = { 13378c2ecf20Sopenharmony_ci /* R[7:0], G[7:0], B[7:0] */ 13388c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 9), RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 7), 13398c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 5), RCAR_GP_PIN(4, 4), 13408c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2), 13418c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 17), RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 15), 13428c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 13), RCAR_GP_PIN(4, 12), 13438c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 10), 13448c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 25), RCAR_GP_PIN(4, 24), RCAR_GP_PIN(4, 23), 13458c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 21), RCAR_GP_PIN(4, 20), 13468c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 19), RCAR_GP_PIN(4, 18), 13478c2ecf20Sopenharmony_ci}; 13488c2ecf20Sopenharmony_cistatic const unsigned int du1_rgb888_mux[] = { 13498c2ecf20Sopenharmony_ci DU1_DR7_MARK, DU1_DR6_MARK, DU1_DR5_MARK, DU1_DR4_MARK, 13508c2ecf20Sopenharmony_ci DU1_DR3_MARK, DU1_DR2_MARK, DU1_DR1_MARK, DU1_DR0_MARK, 13518c2ecf20Sopenharmony_ci DU1_DG7_MARK, DU1_DG6_MARK, DU1_DG5_MARK, DU1_DG4_MARK, 13528c2ecf20Sopenharmony_ci DU1_DG3_MARK, DU1_DG2_MARK, DU1_DG1_MARK, DU1_DG0_MARK, 13538c2ecf20Sopenharmony_ci DU1_DB7_MARK, DU1_DB6_MARK, DU1_DB5_MARK, DU1_DB4_MARK, 13548c2ecf20Sopenharmony_ci DU1_DB3_MARK, DU1_DB2_MARK, DU1_DB1_MARK, DU1_DB0_MARK, 13558c2ecf20Sopenharmony_ci}; 13568c2ecf20Sopenharmony_cistatic const unsigned int du1_clk0_out_pins[] = { 13578c2ecf20Sopenharmony_ci /* DOTCLKOUT0 */ 13588c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 2), 13598c2ecf20Sopenharmony_ci}; 13608c2ecf20Sopenharmony_cistatic const unsigned int du1_clk0_out_mux[] = { 13618c2ecf20Sopenharmony_ci DU1_DOTCLKOUT0_MARK 13628c2ecf20Sopenharmony_ci}; 13638c2ecf20Sopenharmony_cistatic const unsigned int du1_clk1_out_pins[] = { 13648c2ecf20Sopenharmony_ci /* DOTCLKOUT1 */ 13658c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 0), 13668c2ecf20Sopenharmony_ci}; 13678c2ecf20Sopenharmony_cistatic const unsigned int du1_clk1_out_mux[] = { 13688c2ecf20Sopenharmony_ci DU1_DOTCLKOUT1_MARK 13698c2ecf20Sopenharmony_ci}; 13708c2ecf20Sopenharmony_cistatic const unsigned int du1_clk_in_pins[] = { 13718c2ecf20Sopenharmony_ci /* DOTCLKIN */ 13728c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 1), 13738c2ecf20Sopenharmony_ci}; 13748c2ecf20Sopenharmony_cistatic const unsigned int du1_clk_in_mux[] = { 13758c2ecf20Sopenharmony_ci DU1_DOTCLKIN_MARK 13768c2ecf20Sopenharmony_ci}; 13778c2ecf20Sopenharmony_cistatic const unsigned int du1_sync_pins[] = { 13788c2ecf20Sopenharmony_ci /* EXVSYNC/VSYNC, EXHSYNC/HSYNC */ 13798c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 4), 13808c2ecf20Sopenharmony_ci}; 13818c2ecf20Sopenharmony_cistatic const unsigned int du1_sync_mux[] = { 13828c2ecf20Sopenharmony_ci DU1_EXVSYNC_DU1_VSYNC_MARK, DU1_EXHSYNC_DU1_HSYNC_MARK 13838c2ecf20Sopenharmony_ci}; 13848c2ecf20Sopenharmony_cistatic const unsigned int du1_oddf_pins[] = { 13858c2ecf20Sopenharmony_ci /* EXODDF/ODDF/DISP/CDE */ 13868c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 3), 13878c2ecf20Sopenharmony_ci}; 13888c2ecf20Sopenharmony_cistatic const unsigned int du1_oddf_mux[] = { 13898c2ecf20Sopenharmony_ci DU1_EXODDF_DU1_ODDF_DISP_CDE_MARK, 13908c2ecf20Sopenharmony_ci}; 13918c2ecf20Sopenharmony_cistatic const unsigned int du1_cde_pins[] = { 13928c2ecf20Sopenharmony_ci /* CDE */ 13938c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 7), 13948c2ecf20Sopenharmony_ci}; 13958c2ecf20Sopenharmony_cistatic const unsigned int du1_cde_mux[] = { 13968c2ecf20Sopenharmony_ci DU1_CDE_MARK 13978c2ecf20Sopenharmony_ci}; 13988c2ecf20Sopenharmony_cistatic const unsigned int du1_disp_pins[] = { 13998c2ecf20Sopenharmony_ci /* DISP */ 14008c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 6), 14018c2ecf20Sopenharmony_ci}; 14028c2ecf20Sopenharmony_cistatic const unsigned int du1_disp_mux[] = { 14038c2ecf20Sopenharmony_ci DU1_DISP_MARK 14048c2ecf20Sopenharmony_ci}; 14058c2ecf20Sopenharmony_ci/* - I2C0 ------------------------------------------------------------------- */ 14068c2ecf20Sopenharmony_cistatic const unsigned int i2c0_a_pins[] = { 14078c2ecf20Sopenharmony_ci /* SCL, SDA */ 14088c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), RCAR_GP_PIN(4, 1), 14098c2ecf20Sopenharmony_ci}; 14108c2ecf20Sopenharmony_cistatic const unsigned int i2c0_a_mux[] = { 14118c2ecf20Sopenharmony_ci SCL0_A_MARK, SDA0_A_MARK, 14128c2ecf20Sopenharmony_ci}; 14138c2ecf20Sopenharmony_cistatic const unsigned int i2c0_b_pins[] = { 14148c2ecf20Sopenharmony_ci /* SCL, SDA */ 14158c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 28), RCAR_GP_PIN(5, 29), 14168c2ecf20Sopenharmony_ci}; 14178c2ecf20Sopenharmony_cistatic const unsigned int i2c0_b_mux[] = { 14188c2ecf20Sopenharmony_ci SCL0_B_MARK, SDA0_B_MARK, 14198c2ecf20Sopenharmony_ci}; 14208c2ecf20Sopenharmony_cistatic const unsigned int i2c0_c_pins[] = { 14218c2ecf20Sopenharmony_ci /* SCL, SDA */ 14228c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), RCAR_GP_PIN(3, 12), 14238c2ecf20Sopenharmony_ci}; 14248c2ecf20Sopenharmony_cistatic const unsigned int i2c0_c_mux[] = { 14258c2ecf20Sopenharmony_ci SCL0_C_MARK, SDA0_C_MARK, 14268c2ecf20Sopenharmony_ci}; 14278c2ecf20Sopenharmony_cistatic const unsigned int i2c0_d_pins[] = { 14288c2ecf20Sopenharmony_ci /* SCL, SDA */ 14298c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3), 14308c2ecf20Sopenharmony_ci}; 14318c2ecf20Sopenharmony_cistatic const unsigned int i2c0_d_mux[] = { 14328c2ecf20Sopenharmony_ci SCL0_D_MARK, SDA0_D_MARK, 14338c2ecf20Sopenharmony_ci}; 14348c2ecf20Sopenharmony_cistatic const unsigned int i2c0_e_pins[] = { 14358c2ecf20Sopenharmony_ci /* SCL, SDA */ 14368c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3), 14378c2ecf20Sopenharmony_ci}; 14388c2ecf20Sopenharmony_cistatic const unsigned int i2c0_e_mux[] = { 14398c2ecf20Sopenharmony_ci SCL0_E_MARK, SDA0_E_MARK, 14408c2ecf20Sopenharmony_ci}; 14418c2ecf20Sopenharmony_ci/* - I2C1 ------------------------------------------------------------------- */ 14428c2ecf20Sopenharmony_cistatic const unsigned int i2c1_a_pins[] = { 14438c2ecf20Sopenharmony_ci /* SCL, SDA */ 14448c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3), 14458c2ecf20Sopenharmony_ci}; 14468c2ecf20Sopenharmony_cistatic const unsigned int i2c1_a_mux[] = { 14478c2ecf20Sopenharmony_ci SCL1_A_MARK, SDA1_A_MARK, 14488c2ecf20Sopenharmony_ci}; 14498c2ecf20Sopenharmony_cistatic const unsigned int i2c1_b_pins[] = { 14508c2ecf20Sopenharmony_ci /* SCL, SDA */ 14518c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 5), RCAR_GP_PIN(1, 6), 14528c2ecf20Sopenharmony_ci}; 14538c2ecf20Sopenharmony_cistatic const unsigned int i2c1_b_mux[] = { 14548c2ecf20Sopenharmony_ci SCL1_B_MARK, SDA1_B_MARK, 14558c2ecf20Sopenharmony_ci}; 14568c2ecf20Sopenharmony_cistatic const unsigned int i2c1_c_pins[] = { 14578c2ecf20Sopenharmony_ci /* SCL, SDA */ 14588c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 23), 14598c2ecf20Sopenharmony_ci}; 14608c2ecf20Sopenharmony_cistatic const unsigned int i2c1_c_mux[] = { 14618c2ecf20Sopenharmony_ci SCL1_C_MARK, SDA1_C_MARK, 14628c2ecf20Sopenharmony_ci}; 14638c2ecf20Sopenharmony_cistatic const unsigned int i2c1_d_pins[] = { 14648c2ecf20Sopenharmony_ci /* SCL, SDA */ 14658c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 8), RCAR_GP_PIN(1, 9), 14668c2ecf20Sopenharmony_ci}; 14678c2ecf20Sopenharmony_cistatic const unsigned int i2c1_d_mux[] = { 14688c2ecf20Sopenharmony_ci SCL1_D_MARK, SDA1_D_MARK, 14698c2ecf20Sopenharmony_ci}; 14708c2ecf20Sopenharmony_cistatic const unsigned int i2c1_e_pins[] = { 14718c2ecf20Sopenharmony_ci /* SCL, SDA */ 14728c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 17), 14738c2ecf20Sopenharmony_ci}; 14748c2ecf20Sopenharmony_cistatic const unsigned int i2c1_e_mux[] = { 14758c2ecf20Sopenharmony_ci SCL1_E_MARK, SDA1_E_MARK, 14768c2ecf20Sopenharmony_ci}; 14778c2ecf20Sopenharmony_ci/* - I2C2 ------------------------------------------------------------------- */ 14788c2ecf20Sopenharmony_cistatic const unsigned int i2c2_a_pins[] = { 14798c2ecf20Sopenharmony_ci /* SCL, SDA */ 14808c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 24), RCAR_GP_PIN(4, 25), 14818c2ecf20Sopenharmony_ci}; 14828c2ecf20Sopenharmony_cistatic const unsigned int i2c2_a_mux[] = { 14838c2ecf20Sopenharmony_ci SCL2_A_MARK, SDA2_A_MARK, 14848c2ecf20Sopenharmony_ci}; 14858c2ecf20Sopenharmony_cistatic const unsigned int i2c2_b_pins[] = { 14868c2ecf20Sopenharmony_ci /* SCL, SDA */ 14878c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 14), 14888c2ecf20Sopenharmony_ci}; 14898c2ecf20Sopenharmony_cistatic const unsigned int i2c2_b_mux[] = { 14908c2ecf20Sopenharmony_ci SCL2_B_MARK, SDA2_B_MARK, 14918c2ecf20Sopenharmony_ci}; 14928c2ecf20Sopenharmony_cistatic const unsigned int i2c2_c_pins[] = { 14938c2ecf20Sopenharmony_ci /* SCL, SDA */ 14948c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), 14958c2ecf20Sopenharmony_ci}; 14968c2ecf20Sopenharmony_cistatic const unsigned int i2c2_c_mux[] = { 14978c2ecf20Sopenharmony_ci SCL2_C_MARK, SDA2_C_MARK, 14988c2ecf20Sopenharmony_ci}; 14998c2ecf20Sopenharmony_cistatic const unsigned int i2c2_d_pins[] = { 15008c2ecf20Sopenharmony_ci /* SCL, SDA */ 15018c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1), 15028c2ecf20Sopenharmony_ci}; 15038c2ecf20Sopenharmony_cistatic const unsigned int i2c2_d_mux[] = { 15048c2ecf20Sopenharmony_ci SCL2_D_MARK, SDA2_D_MARK, 15058c2ecf20Sopenharmony_ci}; 15068c2ecf20Sopenharmony_ci/* - I2C3 ------------------------------------------------------------------- */ 15078c2ecf20Sopenharmony_cistatic const unsigned int i2c3_a_pins[] = { 15088c2ecf20Sopenharmony_ci /* SCL, SDA */ 15098c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 9), RCAR_GP_PIN(3, 10), 15108c2ecf20Sopenharmony_ci}; 15118c2ecf20Sopenharmony_cistatic const unsigned int i2c3_a_mux[] = { 15128c2ecf20Sopenharmony_ci SCL3_A_MARK, SDA3_A_MARK, 15138c2ecf20Sopenharmony_ci}; 15148c2ecf20Sopenharmony_cistatic const unsigned int i2c3_b_pins[] = { 15158c2ecf20Sopenharmony_ci /* SCL, SDA */ 15168c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), RCAR_GP_PIN(1, 1), 15178c2ecf20Sopenharmony_ci}; 15188c2ecf20Sopenharmony_cistatic const unsigned int i2c3_b_mux[] = { 15198c2ecf20Sopenharmony_ci SCL3_B_MARK, SDA3_B_MARK, 15208c2ecf20Sopenharmony_ci}; 15218c2ecf20Sopenharmony_cistatic const unsigned int i2c3_c_pins[] = { 15228c2ecf20Sopenharmony_ci /* SCL, SDA */ 15238c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2), 15248c2ecf20Sopenharmony_ci}; 15258c2ecf20Sopenharmony_cistatic const unsigned int i2c3_c_mux[] = { 15268c2ecf20Sopenharmony_ci SCL3_C_MARK, SDA3_C_MARK, 15278c2ecf20Sopenharmony_ci}; 15288c2ecf20Sopenharmony_cistatic const unsigned int i2c3_d_pins[] = { 15298c2ecf20Sopenharmony_ci /* SCL, SDA */ 15308c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9), 15318c2ecf20Sopenharmony_ci}; 15328c2ecf20Sopenharmony_cistatic const unsigned int i2c3_d_mux[] = { 15338c2ecf20Sopenharmony_ci SCL3_D_MARK, SDA3_D_MARK, 15348c2ecf20Sopenharmony_ci}; 15358c2ecf20Sopenharmony_cistatic const unsigned int i2c3_e_pins[] = { 15368c2ecf20Sopenharmony_ci /* SCL, SDA */ 15378c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 25), RCAR_GP_PIN(5, 26), 15388c2ecf20Sopenharmony_ci}; 15398c2ecf20Sopenharmony_cistatic const unsigned int i2c3_e_mux[] = { 15408c2ecf20Sopenharmony_ci SCL3_E_MARK, SDA3_E_MARK, 15418c2ecf20Sopenharmony_ci}; 15428c2ecf20Sopenharmony_ci/* - I2C4 ------------------------------------------------------------------- */ 15438c2ecf20Sopenharmony_cistatic const unsigned int i2c4_a_pins[] = { 15448c2ecf20Sopenharmony_ci /* SCL, SDA */ 15458c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 10), RCAR_GP_PIN(4, 11), 15468c2ecf20Sopenharmony_ci}; 15478c2ecf20Sopenharmony_cistatic const unsigned int i2c4_a_mux[] = { 15488c2ecf20Sopenharmony_ci SCL4_A_MARK, SDA4_A_MARK, 15498c2ecf20Sopenharmony_ci}; 15508c2ecf20Sopenharmony_cistatic const unsigned int i2c4_b_pins[] = { 15518c2ecf20Sopenharmony_ci /* SCL, SDA */ 15528c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 30), RCAR_GP_PIN(5, 31), 15538c2ecf20Sopenharmony_ci}; 15548c2ecf20Sopenharmony_cistatic const unsigned int i2c4_b_mux[] = { 15558c2ecf20Sopenharmony_ci SCL4_B_MARK, SDA4_B_MARK, 15568c2ecf20Sopenharmony_ci}; 15578c2ecf20Sopenharmony_cistatic const unsigned int i2c4_c_pins[] = { 15588c2ecf20Sopenharmony_ci /* SCL, SDA */ 15598c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 4), RCAR_GP_PIN(5, 5), 15608c2ecf20Sopenharmony_ci}; 15618c2ecf20Sopenharmony_cistatic const unsigned int i2c4_c_mux[] = { 15628c2ecf20Sopenharmony_ci SCL4_C_MARK, SDA4_C_MARK, 15638c2ecf20Sopenharmony_ci}; 15648c2ecf20Sopenharmony_cistatic const unsigned int i2c4_d_pins[] = { 15658c2ecf20Sopenharmony_ci /* SCL, SDA */ 15668c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 16), RCAR_GP_PIN(2, 17), 15678c2ecf20Sopenharmony_ci}; 15688c2ecf20Sopenharmony_cistatic const unsigned int i2c4_d_mux[] = { 15698c2ecf20Sopenharmony_ci SCL4_D_MARK, SDA4_D_MARK, 15708c2ecf20Sopenharmony_ci}; 15718c2ecf20Sopenharmony_cistatic const unsigned int i2c4_e_pins[] = { 15728c2ecf20Sopenharmony_ci /* SCL, SDA */ 15738c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 7), RCAR_GP_PIN(5, 6), 15748c2ecf20Sopenharmony_ci}; 15758c2ecf20Sopenharmony_cistatic const unsigned int i2c4_e_mux[] = { 15768c2ecf20Sopenharmony_ci SCL4_E_MARK, SDA4_E_MARK, 15778c2ecf20Sopenharmony_ci}; 15788c2ecf20Sopenharmony_ci/* - MMC -------------------------------------------------------------------- */ 15798c2ecf20Sopenharmony_cistatic const unsigned int mmc_data1_pins[] = { 15808c2ecf20Sopenharmony_ci /* D0 */ 15818c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 15), 15828c2ecf20Sopenharmony_ci}; 15838c2ecf20Sopenharmony_cistatic const unsigned int mmc_data1_mux[] = { 15848c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, 15858c2ecf20Sopenharmony_ci}; 15868c2ecf20Sopenharmony_cistatic const unsigned int mmc_data4_pins[] = { 15878c2ecf20Sopenharmony_ci /* D[0:3] */ 15888c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 16), 15898c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 17), RCAR_GP_PIN(0, 18), 15908c2ecf20Sopenharmony_ci}; 15918c2ecf20Sopenharmony_cistatic const unsigned int mmc_data4_mux[] = { 15928c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, MMC0_D1_SDHI1_D1_MARK, 15938c2ecf20Sopenharmony_ci MMC0_D2_SDHI1_D2_MARK, MMC0_D3_SDHI1_D3_MARK, 15948c2ecf20Sopenharmony_ci}; 15958c2ecf20Sopenharmony_cistatic const unsigned int mmc_data8_pins[] = { 15968c2ecf20Sopenharmony_ci /* D[0:3] */ 15978c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 16), 15988c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 17), RCAR_GP_PIN(0, 18), 15998c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 19), RCAR_GP_PIN(0, 20), 16008c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 21), RCAR_GP_PIN(0, 22), 16018c2ecf20Sopenharmony_ci}; 16028c2ecf20Sopenharmony_cistatic const unsigned int mmc_data8_mux[] = { 16038c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, MMC0_D1_SDHI1_D1_MARK, 16048c2ecf20Sopenharmony_ci MMC0_D2_SDHI1_D2_MARK, MMC0_D3_SDHI1_D3_MARK, 16058c2ecf20Sopenharmony_ci MMC0_D4_MARK, MMC0_D5_MARK, 16068c2ecf20Sopenharmony_ci MMC0_D6_MARK, MMC0_D7_MARK, 16078c2ecf20Sopenharmony_ci}; 16088c2ecf20Sopenharmony_cistatic const unsigned int mmc_ctrl_pins[] = { 16098c2ecf20Sopenharmony_ci /* CLK, CMD */ 16108c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 13), RCAR_GP_PIN(0, 14), 16118c2ecf20Sopenharmony_ci}; 16128c2ecf20Sopenharmony_cistatic const unsigned int mmc_ctrl_mux[] = { 16138c2ecf20Sopenharmony_ci MMC0_CLK_SDHI1_CLK_MARK, MMC0_CMD_SDHI1_CMD_MARK, 16148c2ecf20Sopenharmony_ci}; 16158c2ecf20Sopenharmony_ci/* - QSPI ------------------------------------------------------------------- */ 16168c2ecf20Sopenharmony_cistatic const unsigned int qspi0_ctrl_pins[] = { 16178c2ecf20Sopenharmony_ci /* SPCLK, SSL */ 16188c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 16), RCAR_GP_PIN(1, 21), 16198c2ecf20Sopenharmony_ci}; 16208c2ecf20Sopenharmony_cistatic const unsigned int qspi0_ctrl_mux[] = { 16218c2ecf20Sopenharmony_ci QSPI0_SPCLK_MARK, QSPI0_SSL_MARK, 16228c2ecf20Sopenharmony_ci}; 16238c2ecf20Sopenharmony_cistatic const unsigned int qspi0_data2_pins[] = { 16248c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1 */ 16258c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 17), RCAR_GP_PIN(1, 18), 16268c2ecf20Sopenharmony_ci}; 16278c2ecf20Sopenharmony_cistatic const unsigned int qspi0_data2_mux[] = { 16288c2ecf20Sopenharmony_ci QSPI0_MOSI_QSPI0_IO0_MARK, QSPI0_MISO_QSPI0_IO1_MARK, 16298c2ecf20Sopenharmony_ci}; 16308c2ecf20Sopenharmony_cistatic const unsigned int qspi0_data4_pins[] = { 16318c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1, IO2, IO3 */ 16328c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 17), RCAR_GP_PIN(1, 18), RCAR_GP_PIN(1, 19), 16338c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 20), 16348c2ecf20Sopenharmony_ci}; 16358c2ecf20Sopenharmony_cistatic const unsigned int qspi0_data4_mux[] = { 16368c2ecf20Sopenharmony_ci QSPI0_MOSI_QSPI0_IO0_MARK, QSPI0_MISO_QSPI0_IO1_MARK, 16378c2ecf20Sopenharmony_ci QSPI0_IO2_MARK, QSPI0_IO3_MARK, 16388c2ecf20Sopenharmony_ci}; 16398c2ecf20Sopenharmony_cistatic const unsigned int qspi1_ctrl_pins[] = { 16408c2ecf20Sopenharmony_ci /* SPCLK, SSL */ 16418c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 9), 16428c2ecf20Sopenharmony_ci}; 16438c2ecf20Sopenharmony_cistatic const unsigned int qspi1_ctrl_mux[] = { 16448c2ecf20Sopenharmony_ci QSPI1_SPCLK_MARK, QSPI1_SSL_MARK, 16458c2ecf20Sopenharmony_ci}; 16468c2ecf20Sopenharmony_cistatic const unsigned int qspi1_data2_pins[] = { 16478c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1 */ 16488c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), 16498c2ecf20Sopenharmony_ci}; 16508c2ecf20Sopenharmony_cistatic const unsigned int qspi1_data2_mux[] = { 16518c2ecf20Sopenharmony_ci QSPI1_MOSI_QSPI1_IO0_MARK, QSPI1_MISO_QSPI1_IO1_MARK, 16528c2ecf20Sopenharmony_ci}; 16538c2ecf20Sopenharmony_cistatic const unsigned int qspi1_data4_pins[] = { 16548c2ecf20Sopenharmony_ci /* MOSI_IO0, MISO_IO1, IO2, IO3 */ 16558c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), RCAR_GP_PIN(4, 7), 16568c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 8), 16578c2ecf20Sopenharmony_ci}; 16588c2ecf20Sopenharmony_cistatic const unsigned int qspi1_data4_mux[] = { 16598c2ecf20Sopenharmony_ci QSPI1_MOSI_QSPI1_IO0_MARK, QSPI1_MISO_QSPI1_IO1_MARK, 16608c2ecf20Sopenharmony_ci QSPI1_IO2_MARK, QSPI1_IO3_MARK, 16618c2ecf20Sopenharmony_ci}; 16628c2ecf20Sopenharmony_ci/* - SCIF0 ------------------------------------------------------------------ */ 16638c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_a_pins[] = { 16648c2ecf20Sopenharmony_ci /* RX, TX */ 16658c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 10), RCAR_GP_PIN(4, 11), 16668c2ecf20Sopenharmony_ci}; 16678c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_a_mux[] = { 16688c2ecf20Sopenharmony_ci RX0_A_MARK, TX0_A_MARK, 16698c2ecf20Sopenharmony_ci}; 16708c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_b_pins[] = { 16718c2ecf20Sopenharmony_ci /* RX, TX */ 16728c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), RCAR_GP_PIN(3, 12), 16738c2ecf20Sopenharmony_ci}; 16748c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_b_mux[] = { 16758c2ecf20Sopenharmony_ci RX0_B_MARK, TX0_B_MARK, 16768c2ecf20Sopenharmony_ci}; 16778c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_c_pins[] = { 16788c2ecf20Sopenharmony_ci /* RX, TX */ 16798c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 0), RCAR_GP_PIN(4, 1), 16808c2ecf20Sopenharmony_ci}; 16818c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_c_mux[] = { 16828c2ecf20Sopenharmony_ci RX0_C_MARK, TX0_C_MARK, 16838c2ecf20Sopenharmony_ci}; 16848c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_d_pins[] = { 16858c2ecf20Sopenharmony_ci /* RX, TX */ 16868c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3), 16878c2ecf20Sopenharmony_ci}; 16888c2ecf20Sopenharmony_cistatic const unsigned int scif0_data_d_mux[] = { 16898c2ecf20Sopenharmony_ci RX0_D_MARK, TX0_D_MARK, 16908c2ecf20Sopenharmony_ci}; 16918c2ecf20Sopenharmony_ci/* - SCIF1 ------------------------------------------------------------------ */ 16928c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_a_pins[] = { 16938c2ecf20Sopenharmony_ci /* RX, TX */ 16948c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 17), 16958c2ecf20Sopenharmony_ci}; 16968c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_a_mux[] = { 16978c2ecf20Sopenharmony_ci RX1_A_MARK, TX1_A_MARK, 16988c2ecf20Sopenharmony_ci}; 16998c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_a_pins[] = { 17008c2ecf20Sopenharmony_ci /* SCK */ 17018c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 15), 17028c2ecf20Sopenharmony_ci}; 17038c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_a_mux[] = { 17048c2ecf20Sopenharmony_ci SCIF1_SCK_A_MARK, 17058c2ecf20Sopenharmony_ci}; 17068c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_b_pins[] = { 17078c2ecf20Sopenharmony_ci /* RX, TX */ 17088c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 19), RCAR_GP_PIN(5, 20), 17098c2ecf20Sopenharmony_ci}; 17108c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_b_mux[] = { 17118c2ecf20Sopenharmony_ci RX1_B_MARK, TX1_B_MARK, 17128c2ecf20Sopenharmony_ci}; 17138c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_b_pins[] = { 17148c2ecf20Sopenharmony_ci /* SCK */ 17158c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), 17168c2ecf20Sopenharmony_ci}; 17178c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_b_mux[] = { 17188c2ecf20Sopenharmony_ci SCIF1_SCK_B_MARK, 17198c2ecf20Sopenharmony_ci}; 17208c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_c_pins[] = { 17218c2ecf20Sopenharmony_ci /* RX, TX */ 17228c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 8), RCAR_GP_PIN(1, 9), 17238c2ecf20Sopenharmony_ci}; 17248c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_c_mux[] = { 17258c2ecf20Sopenharmony_ci RX1_C_MARK, TX1_C_MARK, 17268c2ecf20Sopenharmony_ci}; 17278c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_c_pins[] = { 17288c2ecf20Sopenharmony_ci /* SCK */ 17298c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 7), 17308c2ecf20Sopenharmony_ci}; 17318c2ecf20Sopenharmony_cistatic const unsigned int scif1_clk_c_mux[] = { 17328c2ecf20Sopenharmony_ci SCIF1_SCK_C_MARK, 17338c2ecf20Sopenharmony_ci}; 17348c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_d_pins[] = { 17358c2ecf20Sopenharmony_ci /* RX, TX */ 17368c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5), 17378c2ecf20Sopenharmony_ci}; 17388c2ecf20Sopenharmony_cistatic const unsigned int scif1_data_d_mux[] = { 17398c2ecf20Sopenharmony_ci RX1_D_MARK, TX1_D_MARK, 17408c2ecf20Sopenharmony_ci}; 17418c2ecf20Sopenharmony_ci/* - SCIF2 ------------------------------------------------------------------ */ 17428c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_a_pins[] = { 17438c2ecf20Sopenharmony_ci /* RX, TX */ 17448c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 18), RCAR_GP_PIN(4, 19), 17458c2ecf20Sopenharmony_ci}; 17468c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_a_mux[] = { 17478c2ecf20Sopenharmony_ci RX2_A_MARK, TX2_A_MARK, 17488c2ecf20Sopenharmony_ci}; 17498c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_a_pins[] = { 17508c2ecf20Sopenharmony_ci /* SCK */ 17518c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), 17528c2ecf20Sopenharmony_ci}; 17538c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_a_mux[] = { 17548c2ecf20Sopenharmony_ci SCIF2_SCK_A_MARK, 17558c2ecf20Sopenharmony_ci}; 17568c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_b_pins[] = { 17578c2ecf20Sopenharmony_ci /* RX, TX */ 17588c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 25), RCAR_GP_PIN(5, 26), 17598c2ecf20Sopenharmony_ci}; 17608c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_b_mux[] = { 17618c2ecf20Sopenharmony_ci RX2_B_MARK, TX2_B_MARK, 17628c2ecf20Sopenharmony_ci}; 17638c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_b_pins[] = { 17648c2ecf20Sopenharmony_ci /* SCK */ 17658c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 27), 17668c2ecf20Sopenharmony_ci}; 17678c2ecf20Sopenharmony_cistatic const unsigned int scif2_clk_b_mux[] = { 17688c2ecf20Sopenharmony_ci SCIF2_SCK_B_MARK, 17698c2ecf20Sopenharmony_ci}; 17708c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_c_pins[] = { 17718c2ecf20Sopenharmony_ci /* RX, TX */ 17728c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 7), 17738c2ecf20Sopenharmony_ci}; 17748c2ecf20Sopenharmony_cistatic const unsigned int scif2_data_c_mux[] = { 17758c2ecf20Sopenharmony_ci RX2_C_MARK, TX2_C_MARK, 17768c2ecf20Sopenharmony_ci}; 17778c2ecf20Sopenharmony_ci/* - SCIF3 ------------------------------------------------------------------ */ 17788c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_a_pins[] = { 17798c2ecf20Sopenharmony_ci /* RX, TX */ 17808c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 23), 17818c2ecf20Sopenharmony_ci}; 17828c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_a_mux[] = { 17838c2ecf20Sopenharmony_ci RX3_A_MARK, TX3_A_MARK, 17848c2ecf20Sopenharmony_ci}; 17858c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_pins[] = { 17868c2ecf20Sopenharmony_ci /* SCK */ 17878c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 21), 17888c2ecf20Sopenharmony_ci}; 17898c2ecf20Sopenharmony_cistatic const unsigned int scif3_clk_mux[] = { 17908c2ecf20Sopenharmony_ci SCIF3_SCK_MARK, 17918c2ecf20Sopenharmony_ci}; 17928c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_b_pins[] = { 17938c2ecf20Sopenharmony_ci /* RX, TX */ 17948c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9), 17958c2ecf20Sopenharmony_ci}; 17968c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_b_mux[] = { 17978c2ecf20Sopenharmony_ci RX3_B_MARK, TX3_B_MARK, 17988c2ecf20Sopenharmony_ci}; 17998c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_c_pins[] = { 18008c2ecf20Sopenharmony_ci /* RX, TX */ 18018c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 6), 18028c2ecf20Sopenharmony_ci}; 18038c2ecf20Sopenharmony_cistatic const unsigned int scif3_data_c_mux[] = { 18048c2ecf20Sopenharmony_ci RX3_C_MARK, TX3_C_MARK, 18058c2ecf20Sopenharmony_ci}; 18068c2ecf20Sopenharmony_ci/* - SCIF4 ------------------------------------------------------------------ */ 18078c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_a_pins[] = { 18088c2ecf20Sopenharmony_ci /* RX, TX */ 18098c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3), 18108c2ecf20Sopenharmony_ci}; 18118c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_a_mux[] = { 18128c2ecf20Sopenharmony_ci RX4_A_MARK, TX4_A_MARK, 18138c2ecf20Sopenharmony_ci}; 18148c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_b_pins[] = { 18158c2ecf20Sopenharmony_ci /* RX, TX */ 18168c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3), 18178c2ecf20Sopenharmony_ci}; 18188c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_b_mux[] = { 18198c2ecf20Sopenharmony_ci RX4_B_MARK, TX4_B_MARK, 18208c2ecf20Sopenharmony_ci}; 18218c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_c_pins[] = { 18228c2ecf20Sopenharmony_ci /* RX, TX */ 18238c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 13), RCAR_GP_PIN(1, 14), 18248c2ecf20Sopenharmony_ci}; 18258c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_c_mux[] = { 18268c2ecf20Sopenharmony_ci RX4_C_MARK, TX4_C_MARK, 18278c2ecf20Sopenharmony_ci}; 18288c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_d_pins[] = { 18298c2ecf20Sopenharmony_ci /* RX, TX */ 18308c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 10), RCAR_GP_PIN(2, 11), 18318c2ecf20Sopenharmony_ci}; 18328c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_d_mux[] = { 18338c2ecf20Sopenharmony_ci RX4_D_MARK, TX4_D_MARK, 18348c2ecf20Sopenharmony_ci}; 18358c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_e_pins[] = { 18368c2ecf20Sopenharmony_ci /* RX, TX */ 18378c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 8), 18388c2ecf20Sopenharmony_ci}; 18398c2ecf20Sopenharmony_cistatic const unsigned int scif4_data_e_mux[] = { 18408c2ecf20Sopenharmony_ci RX4_E_MARK, TX4_E_MARK, 18418c2ecf20Sopenharmony_ci}; 18428c2ecf20Sopenharmony_ci/* - SCIF5 ------------------------------------------------------------------ */ 18438c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_a_pins[] = { 18448c2ecf20Sopenharmony_ci /* RX, TX */ 18458c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), 18468c2ecf20Sopenharmony_ci}; 18478c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_a_mux[] = { 18488c2ecf20Sopenharmony_ci RX5_A_MARK, TX5_A_MARK, 18498c2ecf20Sopenharmony_ci}; 18508c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_b_pins[] = { 18518c2ecf20Sopenharmony_ci /* RX, TX */ 18528c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 0), RCAR_GP_PIN(1, 1), 18538c2ecf20Sopenharmony_ci}; 18548c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_b_mux[] = { 18558c2ecf20Sopenharmony_ci RX5_B_MARK, TX5_B_MARK, 18568c2ecf20Sopenharmony_ci}; 18578c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_c_pins[] = { 18588c2ecf20Sopenharmony_ci /* RX, TX */ 18598c2ecf20Sopenharmony_ci RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1), 18608c2ecf20Sopenharmony_ci}; 18618c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_c_mux[] = { 18628c2ecf20Sopenharmony_ci RX5_C_MARK, TX5_C_MARK, 18638c2ecf20Sopenharmony_ci}; 18648c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_d_pins[] = { 18658c2ecf20Sopenharmony_ci /* RX, TX */ 18668c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 10), 18678c2ecf20Sopenharmony_ci}; 18688c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_d_mux[] = { 18698c2ecf20Sopenharmony_ci RX5_D_MARK, TX5_D_MARK, 18708c2ecf20Sopenharmony_ci}; 18718c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_e_pins[] = { 18728c2ecf20Sopenharmony_ci /* RX, TX */ 18738c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 9), RCAR_GP_PIN(0, 10), 18748c2ecf20Sopenharmony_ci}; 18758c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_e_mux[] = { 18768c2ecf20Sopenharmony_ci RX5_E_MARK, TX5_E_MARK, 18778c2ecf20Sopenharmony_ci}; 18788c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_f_pins[] = { 18798c2ecf20Sopenharmony_ci /* RX, TX */ 18808c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 27), RCAR_GP_PIN(3, 28), 18818c2ecf20Sopenharmony_ci}; 18828c2ecf20Sopenharmony_cistatic const unsigned int scif5_data_f_mux[] = { 18838c2ecf20Sopenharmony_ci RX5_F_MARK, TX5_F_MARK, 18848c2ecf20Sopenharmony_ci}; 18858c2ecf20Sopenharmony_ci/* - SCIF Clock ------------------------------------------------------------- */ 18868c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_a_pins[] = { 18878c2ecf20Sopenharmony_ci /* SCIF_CLK */ 18888c2ecf20Sopenharmony_ci RCAR_GP_PIN(1, 22), 18898c2ecf20Sopenharmony_ci}; 18908c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_a_mux[] = { 18918c2ecf20Sopenharmony_ci SCIF_CLK_A_MARK, 18928c2ecf20Sopenharmony_ci}; 18938c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_b_pins[] = { 18948c2ecf20Sopenharmony_ci /* SCIF_CLK */ 18958c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 29), 18968c2ecf20Sopenharmony_ci}; 18978c2ecf20Sopenharmony_cistatic const unsigned int scif_clk_b_mux[] = { 18988c2ecf20Sopenharmony_ci SCIF_CLK_B_MARK, 18998c2ecf20Sopenharmony_ci}; 19008c2ecf20Sopenharmony_ci/* - SDHI0 ------------------------------------------------------------------ */ 19018c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data1_pins[] = { 19028c2ecf20Sopenharmony_ci /* D0 */ 19038c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 7), 19048c2ecf20Sopenharmony_ci}; 19058c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data1_mux[] = { 19068c2ecf20Sopenharmony_ci SD0_DAT0_MARK, 19078c2ecf20Sopenharmony_ci}; 19088c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data4_pins[] = { 19098c2ecf20Sopenharmony_ci /* D[0:3] */ 19108c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 8), 19118c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 9), RCAR_GP_PIN(0, 10), 19128c2ecf20Sopenharmony_ci}; 19138c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_data4_mux[] = { 19148c2ecf20Sopenharmony_ci SD0_DAT0_MARK, SD0_DAT1_MARK, SD0_DAT2_MARK, SD0_DAT3_MARK, 19158c2ecf20Sopenharmony_ci}; 19168c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_ctrl_pins[] = { 19178c2ecf20Sopenharmony_ci /* CLK, CMD */ 19188c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 6), 19198c2ecf20Sopenharmony_ci}; 19208c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_ctrl_mux[] = { 19218c2ecf20Sopenharmony_ci SD0_CLK_MARK, SD0_CMD_MARK, 19228c2ecf20Sopenharmony_ci}; 19238c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_cd_pins[] = { 19248c2ecf20Sopenharmony_ci /* CD */ 19258c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 11), 19268c2ecf20Sopenharmony_ci}; 19278c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_cd_mux[] = { 19288c2ecf20Sopenharmony_ci SD0_CD_MARK, 19298c2ecf20Sopenharmony_ci}; 19308c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_wp_pins[] = { 19318c2ecf20Sopenharmony_ci /* WP */ 19328c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 12), 19338c2ecf20Sopenharmony_ci}; 19348c2ecf20Sopenharmony_cistatic const unsigned int sdhi0_wp_mux[] = { 19358c2ecf20Sopenharmony_ci SD0_WP_MARK, 19368c2ecf20Sopenharmony_ci}; 19378c2ecf20Sopenharmony_ci/* - SDHI1 ------------------------------------------------------------------ */ 19388c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data1_pins[] = { 19398c2ecf20Sopenharmony_ci /* D0 */ 19408c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 15), 19418c2ecf20Sopenharmony_ci}; 19428c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data1_mux[] = { 19438c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, 19448c2ecf20Sopenharmony_ci}; 19458c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data4_pins[] = { 19468c2ecf20Sopenharmony_ci /* D[0:3] */ 19478c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 16), 19488c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 17), RCAR_GP_PIN(0, 18), 19498c2ecf20Sopenharmony_ci}; 19508c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_data4_mux[] = { 19518c2ecf20Sopenharmony_ci MMC0_D0_SDHI1_D0_MARK, MMC0_D1_SDHI1_D1_MARK, 19528c2ecf20Sopenharmony_ci MMC0_D2_SDHI1_D2_MARK, MMC0_D3_SDHI1_D3_MARK, 19538c2ecf20Sopenharmony_ci}; 19548c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_ctrl_pins[] = { 19558c2ecf20Sopenharmony_ci /* CLK, CMD */ 19568c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 13), RCAR_GP_PIN(0, 14), 19578c2ecf20Sopenharmony_ci}; 19588c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_ctrl_mux[] = { 19598c2ecf20Sopenharmony_ci MMC0_CLK_SDHI1_CLK_MARK, MMC0_CMD_SDHI1_CMD_MARK, 19608c2ecf20Sopenharmony_ci}; 19618c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_cd_pins[] = { 19628c2ecf20Sopenharmony_ci /* CD */ 19638c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 19), 19648c2ecf20Sopenharmony_ci}; 19658c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_cd_mux[] = { 19668c2ecf20Sopenharmony_ci SD1_CD_MARK, 19678c2ecf20Sopenharmony_ci}; 19688c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_wp_pins[] = { 19698c2ecf20Sopenharmony_ci /* WP */ 19708c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 20), 19718c2ecf20Sopenharmony_ci}; 19728c2ecf20Sopenharmony_cistatic const unsigned int sdhi1_wp_mux[] = { 19738c2ecf20Sopenharmony_ci SD1_WP_MARK, 19748c2ecf20Sopenharmony_ci}; 19758c2ecf20Sopenharmony_ci/* - SDHI2 ------------------------------------------------------------------ */ 19768c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data1_pins[] = { 19778c2ecf20Sopenharmony_ci /* D0 */ 19788c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), 19798c2ecf20Sopenharmony_ci}; 19808c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data1_mux[] = { 19818c2ecf20Sopenharmony_ci SD2_DAT0_MARK, 19828c2ecf20Sopenharmony_ci}; 19838c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data4_pins[] = { 19848c2ecf20Sopenharmony_ci /* D[0:3] */ 19858c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 17), 19868c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 18), RCAR_GP_PIN(4, 19), 19878c2ecf20Sopenharmony_ci}; 19888c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_data4_mux[] = { 19898c2ecf20Sopenharmony_ci SD2_DAT0_MARK, SD2_DAT1_MARK, SD2_DAT2_MARK, SD2_DAT3_MARK, 19908c2ecf20Sopenharmony_ci}; 19918c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_ctrl_pins[] = { 19928c2ecf20Sopenharmony_ci /* CLK, CMD */ 19938c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 15), 19948c2ecf20Sopenharmony_ci}; 19958c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_ctrl_mux[] = { 19968c2ecf20Sopenharmony_ci SD2_CLK_MARK, SD2_CMD_MARK, 19978c2ecf20Sopenharmony_ci}; 19988c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_cd_pins[] = { 19998c2ecf20Sopenharmony_ci /* CD */ 20008c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 20), 20018c2ecf20Sopenharmony_ci}; 20028c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_cd_mux[] = { 20038c2ecf20Sopenharmony_ci SD2_CD_MARK, 20048c2ecf20Sopenharmony_ci}; 20058c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_wp_pins[] = { 20068c2ecf20Sopenharmony_ci /* WP */ 20078c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 21), 20088c2ecf20Sopenharmony_ci}; 20098c2ecf20Sopenharmony_cistatic const unsigned int sdhi2_wp_mux[] = { 20108c2ecf20Sopenharmony_ci SD2_WP_MARK, 20118c2ecf20Sopenharmony_ci}; 20128c2ecf20Sopenharmony_ci/* - USB0 ------------------------------------------------------------------- */ 20138c2ecf20Sopenharmony_cistatic const unsigned int usb0_pins[] = { 20148c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 0), /* PWEN */ 20158c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 1), /* OVC */ 20168c2ecf20Sopenharmony_ci}; 20178c2ecf20Sopenharmony_cistatic const unsigned int usb0_mux[] = { 20188c2ecf20Sopenharmony_ci USB0_PWEN_MARK, 20198c2ecf20Sopenharmony_ci USB0_OVC_MARK, 20208c2ecf20Sopenharmony_ci}; 20218c2ecf20Sopenharmony_ci/* - USB1 ------------------------------------------------------------------- */ 20228c2ecf20Sopenharmony_cistatic const unsigned int usb1_pins[] = { 20238c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 2), /* PWEN */ 20248c2ecf20Sopenharmony_ci RCAR_GP_PIN(0, 3), /* OVC */ 20258c2ecf20Sopenharmony_ci}; 20268c2ecf20Sopenharmony_cistatic const unsigned int usb1_mux[] = { 20278c2ecf20Sopenharmony_ci USB1_PWEN_MARK, 20288c2ecf20Sopenharmony_ci USB1_OVC_MARK, 20298c2ecf20Sopenharmony_ci}; 20308c2ecf20Sopenharmony_ci/* - VIN0 ------------------------------------------------------------------- */ 20318c2ecf20Sopenharmony_cistatic const union vin_data vin0_data_pins = { 20328c2ecf20Sopenharmony_ci .data24 = { 20338c2ecf20Sopenharmony_ci /* B */ 20348c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 20), RCAR_GP_PIN(5, 21), 20358c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), RCAR_GP_PIN(5, 23), 20368c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 24), RCAR_GP_PIN(5, 25), 20378c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 26), RCAR_GP_PIN(5, 27), 20388c2ecf20Sopenharmony_ci /* G */ 20398c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3), 20408c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), 20418c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(5, 8), 20428c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 10), 20438c2ecf20Sopenharmony_ci /* R */ 20448c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 12), 20458c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14), 20468c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16), 20478c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), RCAR_GP_PIN(5, 19), 20488c2ecf20Sopenharmony_ci }, 20498c2ecf20Sopenharmony_ci}; 20508c2ecf20Sopenharmony_cistatic const union vin_data vin0_data_mux = { 20518c2ecf20Sopenharmony_ci .data24 = { 20528c2ecf20Sopenharmony_ci /* B */ 20538c2ecf20Sopenharmony_ci VI0_DATA0_VI0_B0_MARK, VI0_DATA1_VI0_B1_MARK, 20548c2ecf20Sopenharmony_ci VI0_DATA2_VI0_B2_MARK, VI0_DATA3_VI0_B3_MARK, 20558c2ecf20Sopenharmony_ci VI0_DATA4_VI0_B4_MARK, VI0_DATA5_VI0_B5_MARK, 20568c2ecf20Sopenharmony_ci VI0_DATA6_VI0_B6_MARK, VI0_DATA7_VI0_B7_MARK, 20578c2ecf20Sopenharmony_ci /* G */ 20588c2ecf20Sopenharmony_ci VI0_G0_MARK, VI0_G1_MARK, 20598c2ecf20Sopenharmony_ci VI0_G2_MARK, VI0_G3_MARK, 20608c2ecf20Sopenharmony_ci VI0_G4_MARK, VI0_G5_MARK, 20618c2ecf20Sopenharmony_ci VI0_G6_MARK, VI0_G7_MARK, 20628c2ecf20Sopenharmony_ci /* R */ 20638c2ecf20Sopenharmony_ci VI0_R0_MARK, VI0_R1_MARK, 20648c2ecf20Sopenharmony_ci VI0_R2_MARK, VI0_R3_MARK, 20658c2ecf20Sopenharmony_ci VI0_R4_MARK, VI0_R5_MARK, 20668c2ecf20Sopenharmony_ci VI0_R6_MARK, VI0_R7_MARK, 20678c2ecf20Sopenharmony_ci }, 20688c2ecf20Sopenharmony_ci}; 20698c2ecf20Sopenharmony_cistatic const unsigned int vin0_data18_pins[] = { 20708c2ecf20Sopenharmony_ci /* B */ 20718c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 22), RCAR_GP_PIN(5, 23), 20728c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 24), RCAR_GP_PIN(5, 25), 20738c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 26), RCAR_GP_PIN(5, 27), 20748c2ecf20Sopenharmony_ci /* G */ 20758c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5), 20768c2ecf20Sopenharmony_ci RCAR_GP_PIN(4, 6), RCAR_GP_PIN(5, 8), 20778c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 10), 20788c2ecf20Sopenharmony_ci /* R */ 20798c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14), 20808c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16), 20818c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 17), RCAR_GP_PIN(5, 19), 20828c2ecf20Sopenharmony_ci}; 20838c2ecf20Sopenharmony_cistatic const unsigned int vin0_data18_mux[] = { 20848c2ecf20Sopenharmony_ci /* B */ 20858c2ecf20Sopenharmony_ci VI0_DATA2_VI0_B2_MARK, VI0_DATA3_VI0_B3_MARK, 20868c2ecf20Sopenharmony_ci VI0_DATA4_VI0_B4_MARK, VI0_DATA5_VI0_B5_MARK, 20878c2ecf20Sopenharmony_ci VI0_DATA6_VI0_B6_MARK, VI0_DATA7_VI0_B7_MARK, 20888c2ecf20Sopenharmony_ci /* G */ 20898c2ecf20Sopenharmony_ci VI0_G2_MARK, VI0_G3_MARK, 20908c2ecf20Sopenharmony_ci VI0_G4_MARK, VI0_G5_MARK, 20918c2ecf20Sopenharmony_ci VI0_G6_MARK, VI0_G7_MARK, 20928c2ecf20Sopenharmony_ci /* R */ 20938c2ecf20Sopenharmony_ci VI0_R2_MARK, VI0_R3_MARK, 20948c2ecf20Sopenharmony_ci VI0_R4_MARK, VI0_R5_MARK, 20958c2ecf20Sopenharmony_ci VI0_R6_MARK, VI0_R7_MARK, 20968c2ecf20Sopenharmony_ci}; 20978c2ecf20Sopenharmony_cistatic const unsigned int vin0_sync_pins[] = { 20988c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 30), /* HSYNC */ 20998c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 31), /* VSYNC */ 21008c2ecf20Sopenharmony_ci}; 21018c2ecf20Sopenharmony_cistatic const unsigned int vin0_sync_mux[] = { 21028c2ecf20Sopenharmony_ci VI0_HSYNC_N_MARK, 21038c2ecf20Sopenharmony_ci VI0_VSYNC_N_MARK, 21048c2ecf20Sopenharmony_ci}; 21058c2ecf20Sopenharmony_cistatic const unsigned int vin0_field_pins[] = { 21068c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 29), 21078c2ecf20Sopenharmony_ci}; 21088c2ecf20Sopenharmony_cistatic const unsigned int vin0_field_mux[] = { 21098c2ecf20Sopenharmony_ci VI0_FIELD_MARK, 21108c2ecf20Sopenharmony_ci}; 21118c2ecf20Sopenharmony_cistatic const unsigned int vin0_clkenb_pins[] = { 21128c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 28), 21138c2ecf20Sopenharmony_ci}; 21148c2ecf20Sopenharmony_cistatic const unsigned int vin0_clkenb_mux[] = { 21158c2ecf20Sopenharmony_ci VI0_CLKENB_MARK, 21168c2ecf20Sopenharmony_ci}; 21178c2ecf20Sopenharmony_cistatic const unsigned int vin0_clk_pins[] = { 21188c2ecf20Sopenharmony_ci RCAR_GP_PIN(5, 18), 21198c2ecf20Sopenharmony_ci}; 21208c2ecf20Sopenharmony_cistatic const unsigned int vin0_clk_mux[] = { 21218c2ecf20Sopenharmony_ci VI0_CLK_MARK, 21228c2ecf20Sopenharmony_ci}; 21238c2ecf20Sopenharmony_ci/* - VIN1 ------------------------------------------------------------------- */ 21248c2ecf20Sopenharmony_cistatic const union vin_data12 vin1_data_pins = { 21258c2ecf20Sopenharmony_ci .data12 = { 21268c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 1), RCAR_GP_PIN(3, 2), 21278c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), 21288c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 5), RCAR_GP_PIN(3, 6), 21298c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 7), RCAR_GP_PIN(3, 8), 21308c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 14), 21318c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), 21328c2ecf20Sopenharmony_ci }, 21338c2ecf20Sopenharmony_ci}; 21348c2ecf20Sopenharmony_cistatic const union vin_data12 vin1_data_mux = { 21358c2ecf20Sopenharmony_ci .data12 = { 21368c2ecf20Sopenharmony_ci VI1_DATA0_MARK, VI1_DATA1_MARK, 21378c2ecf20Sopenharmony_ci VI1_DATA2_MARK, VI1_DATA3_MARK, 21388c2ecf20Sopenharmony_ci VI1_DATA4_MARK, VI1_DATA5_MARK, 21398c2ecf20Sopenharmony_ci VI1_DATA6_MARK, VI1_DATA7_MARK, 21408c2ecf20Sopenharmony_ci VI1_DATA8_MARK, VI1_DATA9_MARK, 21418c2ecf20Sopenharmony_ci VI1_DATA10_MARK, VI1_DATA11_MARK, 21428c2ecf20Sopenharmony_ci }, 21438c2ecf20Sopenharmony_ci}; 21448c2ecf20Sopenharmony_cistatic const unsigned int vin1_sync_pins[] = { 21458c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 11), /* HSYNC */ 21468c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 12), /* VSYNC */ 21478c2ecf20Sopenharmony_ci}; 21488c2ecf20Sopenharmony_cistatic const unsigned int vin1_sync_mux[] = { 21498c2ecf20Sopenharmony_ci VI1_HSYNC_N_MARK, 21508c2ecf20Sopenharmony_ci VI1_VSYNC_N_MARK, 21518c2ecf20Sopenharmony_ci}; 21528c2ecf20Sopenharmony_cistatic const unsigned int vin1_field_pins[] = { 21538c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 10), 21548c2ecf20Sopenharmony_ci}; 21558c2ecf20Sopenharmony_cistatic const unsigned int vin1_field_mux[] = { 21568c2ecf20Sopenharmony_ci VI1_FIELD_MARK, 21578c2ecf20Sopenharmony_ci}; 21588c2ecf20Sopenharmony_cistatic const unsigned int vin1_clkenb_pins[] = { 21598c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 9), 21608c2ecf20Sopenharmony_ci}; 21618c2ecf20Sopenharmony_cistatic const unsigned int vin1_clkenb_mux[] = { 21628c2ecf20Sopenharmony_ci VI1_CLKENB_MARK, 21638c2ecf20Sopenharmony_ci}; 21648c2ecf20Sopenharmony_cistatic const unsigned int vin1_clk_pins[] = { 21658c2ecf20Sopenharmony_ci RCAR_GP_PIN(3, 0), 21668c2ecf20Sopenharmony_ci}; 21678c2ecf20Sopenharmony_cistatic const unsigned int vin1_clk_mux[] = { 21688c2ecf20Sopenharmony_ci VI1_CLK_MARK, 21698c2ecf20Sopenharmony_ci}; 21708c2ecf20Sopenharmony_ci 21718c2ecf20Sopenharmony_cistatic const struct sh_pfc_pin_group pinmux_groups[] = { 21728c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_col), 21738c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_crs), 21748c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_link), 21758c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_magic), 21768c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_phy_int), 21778c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_mdio), 21788c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_mii_tx_rx), 21798c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_mii_tx_er), 21808c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_gmii_tx_rx), 21818c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_avtp_match_a), 21828c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_avtp_capture_a), 21838c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_avtp_match_b), 21848c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(avb_avtp_capture_b), 21858c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_rgb666), 21868c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_rgb888), 21878c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk0_out), 21888c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk1_out), 21898c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_clk_in), 21908c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_sync), 21918c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_oddf), 21928c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_cde), 21938c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du0_disp), 21948c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_rgb666), 21958c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_rgb888), 21968c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk0_out), 21978c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk1_out), 21988c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_clk_in), 21998c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_sync), 22008c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_oddf), 22018c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_cde), 22028c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(du1_disp), 22038c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_a), 22048c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_b), 22058c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_c), 22068c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_d), 22078c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c0_e), 22088c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_a), 22098c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_b), 22108c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_c), 22118c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_d), 22128c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c1_e), 22138c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_a), 22148c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_b), 22158c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_c), 22168c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c2_d), 22178c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_a), 22188c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_b), 22198c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_c), 22208c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_d), 22218c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c3_e), 22228c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_a), 22238c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_b), 22248c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_c), 22258c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_d), 22268c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(i2c4_e), 22278c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data1), 22288c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data4), 22298c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_data8), 22308c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(mmc_ctrl), 22318c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi0_ctrl), 22328c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi0_data2), 22338c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi0_data4), 22348c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi1_ctrl), 22358c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi1_data2), 22368c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(qspi1_data4), 22378c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_a), 22388c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_b), 22398c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_c), 22408c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif0_data_d), 22418c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_a), 22428c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk_a), 22438c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_b), 22448c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk_b), 22458c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_c), 22468c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_clk_c), 22478c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif1_data_d), 22488c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data_a), 22498c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_clk_a), 22508c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data_b), 22518c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_clk_b), 22528c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif2_data_c), 22538c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_data_a), 22548c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_clk), 22558c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_data_b), 22568c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif3_data_c), 22578c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_a), 22588c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_b), 22598c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_c), 22608c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_d), 22618c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif4_data_e), 22628c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_a), 22638c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_b), 22648c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_c), 22658c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_d), 22668c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_e), 22678c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif5_data_f), 22688c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif_clk_a), 22698c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(scif_clk_b), 22708c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_data1), 22718c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_data4), 22728c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_ctrl), 22738c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_cd), 22748c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi0_wp), 22758c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_data1), 22768c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_data4), 22778c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_ctrl), 22788c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_cd), 22798c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi1_wp), 22808c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_data1), 22818c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_data4), 22828c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_ctrl), 22838c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_cd), 22848c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(sdhi2_wp), 22858c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(usb0), 22868c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(usb1), 22878c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 24), 22888c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 20), 22898c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_data18), 22908c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 16), 22918c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 12), 22928c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 10), 22938c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin0_data, 8), 22948c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_sync), 22958c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_field), 22968c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_clkenb), 22978c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin0_clk), 22988c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 12), 22998c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 10), 23008c2ecf20Sopenharmony_ci VIN_DATA_PIN_GROUP(vin1_data, 8), 23018c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_sync), 23028c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_field), 23038c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_clkenb), 23048c2ecf20Sopenharmony_ci SH_PFC_PIN_GROUP(vin1_clk), 23058c2ecf20Sopenharmony_ci}; 23068c2ecf20Sopenharmony_ci 23078c2ecf20Sopenharmony_cistatic const char * const avb_groups[] = { 23088c2ecf20Sopenharmony_ci "avb_col", 23098c2ecf20Sopenharmony_ci "avb_crs", 23108c2ecf20Sopenharmony_ci "avb_link", 23118c2ecf20Sopenharmony_ci "avb_magic", 23128c2ecf20Sopenharmony_ci "avb_phy_int", 23138c2ecf20Sopenharmony_ci "avb_mdio", 23148c2ecf20Sopenharmony_ci "avb_mii_tx_rx", 23158c2ecf20Sopenharmony_ci "avb_mii_tx_er", 23168c2ecf20Sopenharmony_ci "avb_gmii_tx_rx", 23178c2ecf20Sopenharmony_ci "avb_avtp_match_a", 23188c2ecf20Sopenharmony_ci "avb_avtp_capture_a", 23198c2ecf20Sopenharmony_ci "avb_avtp_match_b", 23208c2ecf20Sopenharmony_ci "avb_avtp_capture_b", 23218c2ecf20Sopenharmony_ci}; 23228c2ecf20Sopenharmony_ci 23238c2ecf20Sopenharmony_cistatic const char * const du0_groups[] = { 23248c2ecf20Sopenharmony_ci "du0_rgb666", 23258c2ecf20Sopenharmony_ci "du0_rgb888", 23268c2ecf20Sopenharmony_ci "du0_clk0_out", 23278c2ecf20Sopenharmony_ci "du0_clk1_out", 23288c2ecf20Sopenharmony_ci "du0_clk_in", 23298c2ecf20Sopenharmony_ci "du0_sync", 23308c2ecf20Sopenharmony_ci "du0_oddf", 23318c2ecf20Sopenharmony_ci "du0_cde", 23328c2ecf20Sopenharmony_ci "du0_disp", 23338c2ecf20Sopenharmony_ci}; 23348c2ecf20Sopenharmony_ci 23358c2ecf20Sopenharmony_cistatic const char * const du1_groups[] = { 23368c2ecf20Sopenharmony_ci "du1_rgb666", 23378c2ecf20Sopenharmony_ci "du1_rgb888", 23388c2ecf20Sopenharmony_ci "du1_clk0_out", 23398c2ecf20Sopenharmony_ci "du1_clk1_out", 23408c2ecf20Sopenharmony_ci "du1_clk_in", 23418c2ecf20Sopenharmony_ci "du1_sync", 23428c2ecf20Sopenharmony_ci "du1_oddf", 23438c2ecf20Sopenharmony_ci "du1_cde", 23448c2ecf20Sopenharmony_ci "du1_disp", 23458c2ecf20Sopenharmony_ci}; 23468c2ecf20Sopenharmony_ci 23478c2ecf20Sopenharmony_cistatic const char * const i2c0_groups[] = { 23488c2ecf20Sopenharmony_ci "i2c0_a", 23498c2ecf20Sopenharmony_ci "i2c0_b", 23508c2ecf20Sopenharmony_ci "i2c0_c", 23518c2ecf20Sopenharmony_ci "i2c0_d", 23528c2ecf20Sopenharmony_ci "i2c0_e", 23538c2ecf20Sopenharmony_ci}; 23548c2ecf20Sopenharmony_ci 23558c2ecf20Sopenharmony_cistatic const char * const i2c1_groups[] = { 23568c2ecf20Sopenharmony_ci "i2c1_a", 23578c2ecf20Sopenharmony_ci "i2c1_b", 23588c2ecf20Sopenharmony_ci "i2c1_c", 23598c2ecf20Sopenharmony_ci "i2c1_d", 23608c2ecf20Sopenharmony_ci "i2c1_e", 23618c2ecf20Sopenharmony_ci}; 23628c2ecf20Sopenharmony_ci 23638c2ecf20Sopenharmony_cistatic const char * const i2c2_groups[] = { 23648c2ecf20Sopenharmony_ci "i2c2_a", 23658c2ecf20Sopenharmony_ci "i2c2_b", 23668c2ecf20Sopenharmony_ci "i2c2_c", 23678c2ecf20Sopenharmony_ci "i2c2_d", 23688c2ecf20Sopenharmony_ci}; 23698c2ecf20Sopenharmony_ci 23708c2ecf20Sopenharmony_cistatic const char * const i2c3_groups[] = { 23718c2ecf20Sopenharmony_ci "i2c3_a", 23728c2ecf20Sopenharmony_ci "i2c3_b", 23738c2ecf20Sopenharmony_ci "i2c3_c", 23748c2ecf20Sopenharmony_ci "i2c3_d", 23758c2ecf20Sopenharmony_ci "i2c3_e", 23768c2ecf20Sopenharmony_ci}; 23778c2ecf20Sopenharmony_ci 23788c2ecf20Sopenharmony_cistatic const char * const i2c4_groups[] = { 23798c2ecf20Sopenharmony_ci "i2c4_a", 23808c2ecf20Sopenharmony_ci "i2c4_b", 23818c2ecf20Sopenharmony_ci "i2c4_c", 23828c2ecf20Sopenharmony_ci "i2c4_d", 23838c2ecf20Sopenharmony_ci "i2c4_e", 23848c2ecf20Sopenharmony_ci}; 23858c2ecf20Sopenharmony_ci 23868c2ecf20Sopenharmony_cistatic const char * const mmc_groups[] = { 23878c2ecf20Sopenharmony_ci "mmc_data1", 23888c2ecf20Sopenharmony_ci "mmc_data4", 23898c2ecf20Sopenharmony_ci "mmc_data8", 23908c2ecf20Sopenharmony_ci "mmc_ctrl", 23918c2ecf20Sopenharmony_ci}; 23928c2ecf20Sopenharmony_ci 23938c2ecf20Sopenharmony_cistatic const char * const qspi0_groups[] = { 23948c2ecf20Sopenharmony_ci "qspi0_ctrl", 23958c2ecf20Sopenharmony_ci "qspi0_data2", 23968c2ecf20Sopenharmony_ci "qspi0_data4", 23978c2ecf20Sopenharmony_ci}; 23988c2ecf20Sopenharmony_ci 23998c2ecf20Sopenharmony_cistatic const char * const qspi1_groups[] = { 24008c2ecf20Sopenharmony_ci "qspi1_ctrl", 24018c2ecf20Sopenharmony_ci "qspi1_data2", 24028c2ecf20Sopenharmony_ci "qspi1_data4", 24038c2ecf20Sopenharmony_ci}; 24048c2ecf20Sopenharmony_ci 24058c2ecf20Sopenharmony_cistatic const char * const scif0_groups[] = { 24068c2ecf20Sopenharmony_ci "scif0_data_a", 24078c2ecf20Sopenharmony_ci "scif0_data_b", 24088c2ecf20Sopenharmony_ci "scif0_data_c", 24098c2ecf20Sopenharmony_ci "scif0_data_d", 24108c2ecf20Sopenharmony_ci}; 24118c2ecf20Sopenharmony_ci 24128c2ecf20Sopenharmony_cistatic const char * const scif1_groups[] = { 24138c2ecf20Sopenharmony_ci "scif1_data_a", 24148c2ecf20Sopenharmony_ci "scif1_clk_a", 24158c2ecf20Sopenharmony_ci "scif1_data_b", 24168c2ecf20Sopenharmony_ci "scif1_clk_b", 24178c2ecf20Sopenharmony_ci "scif1_data_c", 24188c2ecf20Sopenharmony_ci "scif1_clk_c", 24198c2ecf20Sopenharmony_ci "scif1_data_d", 24208c2ecf20Sopenharmony_ci}; 24218c2ecf20Sopenharmony_ci 24228c2ecf20Sopenharmony_cistatic const char * const scif2_groups[] = { 24238c2ecf20Sopenharmony_ci "scif2_data_a", 24248c2ecf20Sopenharmony_ci "scif2_clk_a", 24258c2ecf20Sopenharmony_ci "scif2_data_b", 24268c2ecf20Sopenharmony_ci "scif2_clk_b", 24278c2ecf20Sopenharmony_ci "scif2_data_c", 24288c2ecf20Sopenharmony_ci}; 24298c2ecf20Sopenharmony_ci 24308c2ecf20Sopenharmony_cistatic const char * const scif3_groups[] = { 24318c2ecf20Sopenharmony_ci "scif3_data_a", 24328c2ecf20Sopenharmony_ci "scif3_clk", 24338c2ecf20Sopenharmony_ci "scif3_data_b", 24348c2ecf20Sopenharmony_ci "scif3_data_c", 24358c2ecf20Sopenharmony_ci}; 24368c2ecf20Sopenharmony_ci 24378c2ecf20Sopenharmony_cistatic const char * const scif4_groups[] = { 24388c2ecf20Sopenharmony_ci "scif4_data_a", 24398c2ecf20Sopenharmony_ci "scif4_data_b", 24408c2ecf20Sopenharmony_ci "scif4_data_c", 24418c2ecf20Sopenharmony_ci "scif4_data_d", 24428c2ecf20Sopenharmony_ci "scif4_data_e", 24438c2ecf20Sopenharmony_ci}; 24448c2ecf20Sopenharmony_ci 24458c2ecf20Sopenharmony_cistatic const char * const scif5_groups[] = { 24468c2ecf20Sopenharmony_ci "scif5_data_a", 24478c2ecf20Sopenharmony_ci "scif5_data_b", 24488c2ecf20Sopenharmony_ci "scif5_data_c", 24498c2ecf20Sopenharmony_ci "scif5_data_d", 24508c2ecf20Sopenharmony_ci "scif5_data_e", 24518c2ecf20Sopenharmony_ci "scif5_data_f", 24528c2ecf20Sopenharmony_ci}; 24538c2ecf20Sopenharmony_ci 24548c2ecf20Sopenharmony_cistatic const char * const scif_clk_groups[] = { 24558c2ecf20Sopenharmony_ci "scif_clk_a", 24568c2ecf20Sopenharmony_ci "scif_clk_b", 24578c2ecf20Sopenharmony_ci}; 24588c2ecf20Sopenharmony_ci 24598c2ecf20Sopenharmony_cistatic const char * const sdhi0_groups[] = { 24608c2ecf20Sopenharmony_ci "sdhi0_data1", 24618c2ecf20Sopenharmony_ci "sdhi0_data4", 24628c2ecf20Sopenharmony_ci "sdhi0_ctrl", 24638c2ecf20Sopenharmony_ci "sdhi0_cd", 24648c2ecf20Sopenharmony_ci "sdhi0_wp", 24658c2ecf20Sopenharmony_ci}; 24668c2ecf20Sopenharmony_ci 24678c2ecf20Sopenharmony_cistatic const char * const sdhi1_groups[] = { 24688c2ecf20Sopenharmony_ci "sdhi1_data1", 24698c2ecf20Sopenharmony_ci "sdhi1_data4", 24708c2ecf20Sopenharmony_ci "sdhi1_ctrl", 24718c2ecf20Sopenharmony_ci "sdhi1_cd", 24728c2ecf20Sopenharmony_ci "sdhi1_wp", 24738c2ecf20Sopenharmony_ci}; 24748c2ecf20Sopenharmony_ci 24758c2ecf20Sopenharmony_cistatic const char * const sdhi2_groups[] = { 24768c2ecf20Sopenharmony_ci "sdhi2_data1", 24778c2ecf20Sopenharmony_ci "sdhi2_data4", 24788c2ecf20Sopenharmony_ci "sdhi2_ctrl", 24798c2ecf20Sopenharmony_ci "sdhi2_cd", 24808c2ecf20Sopenharmony_ci "sdhi2_wp", 24818c2ecf20Sopenharmony_ci}; 24828c2ecf20Sopenharmony_ci 24838c2ecf20Sopenharmony_cistatic const char * const usb0_groups[] = { 24848c2ecf20Sopenharmony_ci "usb0", 24858c2ecf20Sopenharmony_ci}; 24868c2ecf20Sopenharmony_ci 24878c2ecf20Sopenharmony_cistatic const char * const usb1_groups[] = { 24888c2ecf20Sopenharmony_ci "usb1", 24898c2ecf20Sopenharmony_ci}; 24908c2ecf20Sopenharmony_ci 24918c2ecf20Sopenharmony_cistatic const char * const vin0_groups[] = { 24928c2ecf20Sopenharmony_ci "vin0_data24", 24938c2ecf20Sopenharmony_ci "vin0_data20", 24948c2ecf20Sopenharmony_ci "vin0_data18", 24958c2ecf20Sopenharmony_ci "vin0_data16", 24968c2ecf20Sopenharmony_ci "vin0_data12", 24978c2ecf20Sopenharmony_ci "vin0_data10", 24988c2ecf20Sopenharmony_ci "vin0_data8", 24998c2ecf20Sopenharmony_ci "vin0_sync", 25008c2ecf20Sopenharmony_ci "vin0_field", 25018c2ecf20Sopenharmony_ci "vin0_clkenb", 25028c2ecf20Sopenharmony_ci "vin0_clk", 25038c2ecf20Sopenharmony_ci}; 25048c2ecf20Sopenharmony_ci 25058c2ecf20Sopenharmony_cistatic const char * const vin1_groups[] = { 25068c2ecf20Sopenharmony_ci "vin1_data12", 25078c2ecf20Sopenharmony_ci "vin1_data10", 25088c2ecf20Sopenharmony_ci "vin1_data8", 25098c2ecf20Sopenharmony_ci "vin1_sync", 25108c2ecf20Sopenharmony_ci "vin1_field", 25118c2ecf20Sopenharmony_ci "vin1_clkenb", 25128c2ecf20Sopenharmony_ci "vin1_clk", 25138c2ecf20Sopenharmony_ci}; 25148c2ecf20Sopenharmony_ci 25158c2ecf20Sopenharmony_cistatic const struct sh_pfc_function pinmux_functions[] = { 25168c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(avb), 25178c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(du0), 25188c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(du1), 25198c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c0), 25208c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c1), 25218c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c2), 25228c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c3), 25238c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(i2c4), 25248c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(mmc), 25258c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(qspi0), 25268c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(qspi1), 25278c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif0), 25288c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif1), 25298c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif2), 25308c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif3), 25318c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif4), 25328c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif5), 25338c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(scif_clk), 25348c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi0), 25358c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi1), 25368c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(sdhi2), 25378c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(usb0), 25388c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(usb1), 25398c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(vin0), 25408c2ecf20Sopenharmony_ci SH_PFC_FUNCTION(vin1), 25418c2ecf20Sopenharmony_ci}; 25428c2ecf20Sopenharmony_ci 25438c2ecf20Sopenharmony_cistatic const struct pinmux_cfg_reg pinmux_config_regs[] = { 25448c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR0", 0xE6060004, 32, 1, GROUP( 25458c2ecf20Sopenharmony_ci 0, 0, 25468c2ecf20Sopenharmony_ci 0, 0, 25478c2ecf20Sopenharmony_ci 0, 0, 25488c2ecf20Sopenharmony_ci 0, 0, 25498c2ecf20Sopenharmony_ci 0, 0, 25508c2ecf20Sopenharmony_ci 0, 0, 25518c2ecf20Sopenharmony_ci 0, 0, 25528c2ecf20Sopenharmony_ci 0, 0, 25538c2ecf20Sopenharmony_ci 0, 0, 25548c2ecf20Sopenharmony_ci GP_0_22_FN, FN_MMC0_D7, 25558c2ecf20Sopenharmony_ci GP_0_21_FN, FN_MMC0_D6, 25568c2ecf20Sopenharmony_ci GP_0_20_FN, FN_IP1_7_4, 25578c2ecf20Sopenharmony_ci GP_0_19_FN, FN_IP1_3_0, 25588c2ecf20Sopenharmony_ci GP_0_18_FN, FN_MMC0_D3_SDHI1_D3, 25598c2ecf20Sopenharmony_ci GP_0_17_FN, FN_MMC0_D2_SDHI1_D2, 25608c2ecf20Sopenharmony_ci GP_0_16_FN, FN_MMC0_D1_SDHI1_D1, 25618c2ecf20Sopenharmony_ci GP_0_15_FN, FN_MMC0_D0_SDHI1_D0, 25628c2ecf20Sopenharmony_ci GP_0_14_FN, FN_MMC0_CMD_SDHI1_CMD, 25638c2ecf20Sopenharmony_ci GP_0_13_FN, FN_MMC0_CLK_SDHI1_CLK, 25648c2ecf20Sopenharmony_ci GP_0_12_FN, FN_IP0_31_28, 25658c2ecf20Sopenharmony_ci GP_0_11_FN, FN_IP0_27_24, 25668c2ecf20Sopenharmony_ci GP_0_10_FN, FN_IP0_23_20, 25678c2ecf20Sopenharmony_ci GP_0_9_FN, FN_IP0_19_16, 25688c2ecf20Sopenharmony_ci GP_0_8_FN, FN_IP0_15_12, 25698c2ecf20Sopenharmony_ci GP_0_7_FN, FN_IP0_11_8, 25708c2ecf20Sopenharmony_ci GP_0_6_FN, FN_IP0_7_4, 25718c2ecf20Sopenharmony_ci GP_0_5_FN, FN_IP0_3_0, 25728c2ecf20Sopenharmony_ci GP_0_4_FN, FN_CLKOUT, 25738c2ecf20Sopenharmony_ci GP_0_3_FN, FN_USB1_OVC, 25748c2ecf20Sopenharmony_ci GP_0_2_FN, FN_USB1_PWEN, 25758c2ecf20Sopenharmony_ci GP_0_1_FN, FN_USB0_OVC, 25768c2ecf20Sopenharmony_ci GP_0_0_FN, FN_USB0_PWEN, )) 25778c2ecf20Sopenharmony_ci }, 25788c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR1", 0xE6060008, 32, 1, GROUP( 25798c2ecf20Sopenharmony_ci 0, 0, 25808c2ecf20Sopenharmony_ci 0, 0, 25818c2ecf20Sopenharmony_ci 0, 0, 25828c2ecf20Sopenharmony_ci 0, 0, 25838c2ecf20Sopenharmony_ci 0, 0, 25848c2ecf20Sopenharmony_ci 0, 0, 25858c2ecf20Sopenharmony_ci 0, 0, 25868c2ecf20Sopenharmony_ci 0, 0, 25878c2ecf20Sopenharmony_ci 0, 0, 25888c2ecf20Sopenharmony_ci GP_1_22_FN, FN_IP4_3_0, 25898c2ecf20Sopenharmony_ci GP_1_21_FN, FN_IP3_31_28, 25908c2ecf20Sopenharmony_ci GP_1_20_FN, FN_IP3_27_24, 25918c2ecf20Sopenharmony_ci GP_1_19_FN, FN_IP3_23_20, 25928c2ecf20Sopenharmony_ci GP_1_18_FN, FN_IP3_19_16, 25938c2ecf20Sopenharmony_ci GP_1_17_FN, FN_IP3_15_12, 25948c2ecf20Sopenharmony_ci GP_1_16_FN, FN_IP3_11_8, 25958c2ecf20Sopenharmony_ci GP_1_15_FN, FN_IP3_7_4, 25968c2ecf20Sopenharmony_ci GP_1_14_FN, FN_IP3_3_0, 25978c2ecf20Sopenharmony_ci GP_1_13_FN, FN_IP2_31_28, 25988c2ecf20Sopenharmony_ci GP_1_12_FN, FN_IP2_27_24, 25998c2ecf20Sopenharmony_ci GP_1_11_FN, FN_IP2_23_20, 26008c2ecf20Sopenharmony_ci GP_1_10_FN, FN_IP2_19_16, 26018c2ecf20Sopenharmony_ci GP_1_9_FN, FN_IP2_15_12, 26028c2ecf20Sopenharmony_ci GP_1_8_FN, FN_IP2_11_8, 26038c2ecf20Sopenharmony_ci GP_1_7_FN, FN_IP2_7_4, 26048c2ecf20Sopenharmony_ci GP_1_6_FN, FN_IP2_3_0, 26058c2ecf20Sopenharmony_ci GP_1_5_FN, FN_IP1_31_28, 26068c2ecf20Sopenharmony_ci GP_1_4_FN, FN_IP1_27_24, 26078c2ecf20Sopenharmony_ci GP_1_3_FN, FN_IP1_23_20, 26088c2ecf20Sopenharmony_ci GP_1_2_FN, FN_IP1_19_16, 26098c2ecf20Sopenharmony_ci GP_1_1_FN, FN_IP1_15_12, 26108c2ecf20Sopenharmony_ci GP_1_0_FN, FN_IP1_11_8, )) 26118c2ecf20Sopenharmony_ci }, 26128c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR2", 0xE606000C, 32, 1, GROUP( 26138c2ecf20Sopenharmony_ci GP_2_31_FN, FN_IP8_3_0, 26148c2ecf20Sopenharmony_ci GP_2_30_FN, FN_IP7_31_28, 26158c2ecf20Sopenharmony_ci GP_2_29_FN, FN_IP7_27_24, 26168c2ecf20Sopenharmony_ci GP_2_28_FN, FN_IP7_23_20, 26178c2ecf20Sopenharmony_ci GP_2_27_FN, FN_IP7_19_16, 26188c2ecf20Sopenharmony_ci GP_2_26_FN, FN_IP7_15_12, 26198c2ecf20Sopenharmony_ci GP_2_25_FN, FN_IP7_11_8, 26208c2ecf20Sopenharmony_ci GP_2_24_FN, FN_IP7_7_4, 26218c2ecf20Sopenharmony_ci GP_2_23_FN, FN_IP7_3_0, 26228c2ecf20Sopenharmony_ci GP_2_22_FN, FN_IP6_31_28, 26238c2ecf20Sopenharmony_ci GP_2_21_FN, FN_IP6_27_24, 26248c2ecf20Sopenharmony_ci GP_2_20_FN, FN_IP6_23_20, 26258c2ecf20Sopenharmony_ci GP_2_19_FN, FN_IP6_19_16, 26268c2ecf20Sopenharmony_ci GP_2_18_FN, FN_IP6_15_12, 26278c2ecf20Sopenharmony_ci GP_2_17_FN, FN_IP6_11_8, 26288c2ecf20Sopenharmony_ci GP_2_16_FN, FN_IP6_7_4, 26298c2ecf20Sopenharmony_ci GP_2_15_FN, FN_IP6_3_0, 26308c2ecf20Sopenharmony_ci GP_2_14_FN, FN_IP5_31_28, 26318c2ecf20Sopenharmony_ci GP_2_13_FN, FN_IP5_27_24, 26328c2ecf20Sopenharmony_ci GP_2_12_FN, FN_IP5_23_20, 26338c2ecf20Sopenharmony_ci GP_2_11_FN, FN_IP5_19_16, 26348c2ecf20Sopenharmony_ci GP_2_10_FN, FN_IP5_15_12, 26358c2ecf20Sopenharmony_ci GP_2_9_FN, FN_IP5_11_8, 26368c2ecf20Sopenharmony_ci GP_2_8_FN, FN_IP5_7_4, 26378c2ecf20Sopenharmony_ci GP_2_7_FN, FN_IP5_3_0, 26388c2ecf20Sopenharmony_ci GP_2_6_FN, FN_IP4_31_28, 26398c2ecf20Sopenharmony_ci GP_2_5_FN, FN_IP4_27_24, 26408c2ecf20Sopenharmony_ci GP_2_4_FN, FN_IP4_23_20, 26418c2ecf20Sopenharmony_ci GP_2_3_FN, FN_IP4_19_16, 26428c2ecf20Sopenharmony_ci GP_2_2_FN, FN_IP4_15_12, 26438c2ecf20Sopenharmony_ci GP_2_1_FN, FN_IP4_11_8, 26448c2ecf20Sopenharmony_ci GP_2_0_FN, FN_IP4_7_4, )) 26458c2ecf20Sopenharmony_ci }, 26468c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR3", 0xE6060010, 32, 1, GROUP( 26478c2ecf20Sopenharmony_ci 0, 0, 26488c2ecf20Sopenharmony_ci 0, 0, 26498c2ecf20Sopenharmony_ci GP_3_29_FN, FN_IP10_19_16, 26508c2ecf20Sopenharmony_ci GP_3_28_FN, FN_IP10_15_12, 26518c2ecf20Sopenharmony_ci GP_3_27_FN, FN_IP10_11_8, 26528c2ecf20Sopenharmony_ci 0, 0, 26538c2ecf20Sopenharmony_ci 0, 0, 26548c2ecf20Sopenharmony_ci 0, 0, 26558c2ecf20Sopenharmony_ci 0, 0, 26568c2ecf20Sopenharmony_ci 0, 0, 26578c2ecf20Sopenharmony_ci 0, 0, 26588c2ecf20Sopenharmony_ci 0, 0, 26598c2ecf20Sopenharmony_ci 0, 0, 26608c2ecf20Sopenharmony_ci 0, 0, 26618c2ecf20Sopenharmony_ci 0, 0, 26628c2ecf20Sopenharmony_ci GP_3_16_FN, FN_IP10_7_4, 26638c2ecf20Sopenharmony_ci GP_3_15_FN, FN_IP10_3_0, 26648c2ecf20Sopenharmony_ci GP_3_14_FN, FN_IP9_31_28, 26658c2ecf20Sopenharmony_ci GP_3_13_FN, FN_IP9_27_24, 26668c2ecf20Sopenharmony_ci GP_3_12_FN, FN_IP9_23_20, 26678c2ecf20Sopenharmony_ci GP_3_11_FN, FN_IP9_19_16, 26688c2ecf20Sopenharmony_ci GP_3_10_FN, FN_IP9_15_12, 26698c2ecf20Sopenharmony_ci GP_3_9_FN, FN_IP9_11_8, 26708c2ecf20Sopenharmony_ci GP_3_8_FN, FN_IP9_7_4, 26718c2ecf20Sopenharmony_ci GP_3_7_FN, FN_IP9_3_0, 26728c2ecf20Sopenharmony_ci GP_3_6_FN, FN_IP8_31_28, 26738c2ecf20Sopenharmony_ci GP_3_5_FN, FN_IP8_27_24, 26748c2ecf20Sopenharmony_ci GP_3_4_FN, FN_IP8_23_20, 26758c2ecf20Sopenharmony_ci GP_3_3_FN, FN_IP8_19_16, 26768c2ecf20Sopenharmony_ci GP_3_2_FN, FN_IP8_15_12, 26778c2ecf20Sopenharmony_ci GP_3_1_FN, FN_IP8_11_8, 26788c2ecf20Sopenharmony_ci GP_3_0_FN, FN_IP8_7_4, )) 26798c2ecf20Sopenharmony_ci }, 26808c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR4", 0xE6060014, 32, 1, GROUP( 26818c2ecf20Sopenharmony_ci 0, 0, 26828c2ecf20Sopenharmony_ci 0, 0, 26838c2ecf20Sopenharmony_ci 0, 0, 26848c2ecf20Sopenharmony_ci 0, 0, 26858c2ecf20Sopenharmony_ci 0, 0, 26868c2ecf20Sopenharmony_ci 0, 0, 26878c2ecf20Sopenharmony_ci GP_4_25_FN, FN_IP13_27_24, 26888c2ecf20Sopenharmony_ci GP_4_24_FN, FN_IP13_23_20, 26898c2ecf20Sopenharmony_ci GP_4_23_FN, FN_IP13_19_16, 26908c2ecf20Sopenharmony_ci GP_4_22_FN, FN_IP13_15_12, 26918c2ecf20Sopenharmony_ci GP_4_21_FN, FN_IP13_11_8, 26928c2ecf20Sopenharmony_ci GP_4_20_FN, FN_IP13_7_4, 26938c2ecf20Sopenharmony_ci GP_4_19_FN, FN_IP13_3_0, 26948c2ecf20Sopenharmony_ci GP_4_18_FN, FN_IP12_31_28, 26958c2ecf20Sopenharmony_ci GP_4_17_FN, FN_IP12_27_24, 26968c2ecf20Sopenharmony_ci GP_4_16_FN, FN_IP12_23_20, 26978c2ecf20Sopenharmony_ci GP_4_15_FN, FN_IP12_19_16, 26988c2ecf20Sopenharmony_ci GP_4_14_FN, FN_IP12_15_12, 26998c2ecf20Sopenharmony_ci GP_4_13_FN, FN_IP12_11_8, 27008c2ecf20Sopenharmony_ci GP_4_12_FN, FN_IP12_7_4, 27018c2ecf20Sopenharmony_ci GP_4_11_FN, FN_IP12_3_0, 27028c2ecf20Sopenharmony_ci GP_4_10_FN, FN_IP11_31_28, 27038c2ecf20Sopenharmony_ci GP_4_9_FN, FN_IP11_27_24, 27048c2ecf20Sopenharmony_ci GP_4_8_FN, FN_IP11_23_20, 27058c2ecf20Sopenharmony_ci GP_4_7_FN, FN_IP11_19_16, 27068c2ecf20Sopenharmony_ci GP_4_6_FN, FN_IP11_15_12, 27078c2ecf20Sopenharmony_ci GP_4_5_FN, FN_IP11_11_8, 27088c2ecf20Sopenharmony_ci GP_4_4_FN, FN_IP11_7_4, 27098c2ecf20Sopenharmony_ci GP_4_3_FN, FN_IP11_3_0, 27108c2ecf20Sopenharmony_ci GP_4_2_FN, FN_IP10_31_28, 27118c2ecf20Sopenharmony_ci GP_4_1_FN, FN_IP10_27_24, 27128c2ecf20Sopenharmony_ci GP_4_0_FN, FN_IP10_23_20, )) 27138c2ecf20Sopenharmony_ci }, 27148c2ecf20Sopenharmony_ci { PINMUX_CFG_REG("GPSR5", 0xE6060018, 32, 1, GROUP( 27158c2ecf20Sopenharmony_ci GP_5_31_FN, FN_IP17_27_24, 27168c2ecf20Sopenharmony_ci GP_5_30_FN, FN_IP17_23_20, 27178c2ecf20Sopenharmony_ci GP_5_29_FN, FN_IP17_19_16, 27188c2ecf20Sopenharmony_ci GP_5_28_FN, FN_IP17_15_12, 27198c2ecf20Sopenharmony_ci GP_5_27_FN, FN_IP17_11_8, 27208c2ecf20Sopenharmony_ci GP_5_26_FN, FN_IP17_7_4, 27218c2ecf20Sopenharmony_ci GP_5_25_FN, FN_IP17_3_0, 27228c2ecf20Sopenharmony_ci GP_5_24_FN, FN_IP16_31_28, 27238c2ecf20Sopenharmony_ci GP_5_23_FN, FN_IP16_27_24, 27248c2ecf20Sopenharmony_ci GP_5_22_FN, FN_IP16_23_20, 27258c2ecf20Sopenharmony_ci GP_5_21_FN, FN_IP16_19_16, 27268c2ecf20Sopenharmony_ci GP_5_20_FN, FN_IP16_15_12, 27278c2ecf20Sopenharmony_ci GP_5_19_FN, FN_IP16_11_8, 27288c2ecf20Sopenharmony_ci GP_5_18_FN, FN_IP16_7_4, 27298c2ecf20Sopenharmony_ci GP_5_17_FN, FN_IP16_3_0, 27308c2ecf20Sopenharmony_ci GP_5_16_FN, FN_IP15_31_28, 27318c2ecf20Sopenharmony_ci GP_5_15_FN, FN_IP15_27_24, 27328c2ecf20Sopenharmony_ci GP_5_14_FN, FN_IP15_23_20, 27338c2ecf20Sopenharmony_ci GP_5_13_FN, FN_IP15_19_16, 27348c2ecf20Sopenharmony_ci GP_5_12_FN, FN_IP15_15_12, 27358c2ecf20Sopenharmony_ci GP_5_11_FN, FN_IP15_11_8, 27368c2ecf20Sopenharmony_ci GP_5_10_FN, FN_IP15_7_4, 27378c2ecf20Sopenharmony_ci GP_5_9_FN, FN_IP15_3_0, 27388c2ecf20Sopenharmony_ci GP_5_8_FN, FN_IP14_31_28, 27398c2ecf20Sopenharmony_ci GP_5_7_FN, FN_IP14_27_24, 27408c2ecf20Sopenharmony_ci GP_5_6_FN, FN_IP14_23_20, 27418c2ecf20Sopenharmony_ci GP_5_5_FN, FN_IP14_19_16, 27428c2ecf20Sopenharmony_ci GP_5_4_FN, FN_IP14_15_12, 27438c2ecf20Sopenharmony_ci GP_5_3_FN, FN_IP14_11_8, 27448c2ecf20Sopenharmony_ci GP_5_2_FN, FN_IP14_7_4, 27458c2ecf20Sopenharmony_ci GP_5_1_FN, FN_IP14_3_0, 27468c2ecf20Sopenharmony_ci GP_5_0_FN, FN_IP13_31_28, )) 27478c2ecf20Sopenharmony_ci }, 27488c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR0", 0xE6060040, 32, 27498c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 27508c2ecf20Sopenharmony_ci GROUP( 27518c2ecf20Sopenharmony_ci /* IP0_31_28 [4] */ 27528c2ecf20Sopenharmony_ci FN_SD0_WP, FN_IRQ7, FN_CAN0_TX_A, 0, 0, 0, 0, 0, 27538c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27548c2ecf20Sopenharmony_ci /* IP0_27_24 [4] */ 27558c2ecf20Sopenharmony_ci FN_SD0_CD, 0, FN_CAN0_RX_A, 0, 0, 0, 0, 0, 27568c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27578c2ecf20Sopenharmony_ci /* IP0_23_20 [4] */ 27588c2ecf20Sopenharmony_ci FN_SD0_DAT3, 0, 0, FN_SSI_SDATA0_B, FN_TX5_E, 0, 0, 0, 27598c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27608c2ecf20Sopenharmony_ci /* IP0_19_16 [4] */ 27618c2ecf20Sopenharmony_ci FN_SD0_DAT2, 0, 0, FN_SSI_WS0129_B, FN_RX5_E, 0, 0, 0, 27628c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27638c2ecf20Sopenharmony_ci /* IP0_15_12 [4] */ 27648c2ecf20Sopenharmony_ci FN_SD0_DAT1, 0, 0, FN_SSI_SCK0129_B, FN_TX4_E, 0, 0, 0, 27658c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27668c2ecf20Sopenharmony_ci /* IP0_11_8 [4] */ 27678c2ecf20Sopenharmony_ci FN_SD0_DAT0, 0, 0, FN_SSI_SDATA1_C, FN_RX4_E, 0, 0, 0, 27688c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27698c2ecf20Sopenharmony_ci /* IP0_7_4 [4] */ 27708c2ecf20Sopenharmony_ci FN_SD0_CMD, 0, 0, FN_SSI_WS1_C, FN_TX3_C, 0, 0, 0, 27718c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27728c2ecf20Sopenharmony_ci /* IP0_3_0 [4] */ 27738c2ecf20Sopenharmony_ci FN_SD0_CLK, 0, 0, FN_SSI_SCK1_C, FN_RX3_C, 0, 0, 0, 27748c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, )) 27758c2ecf20Sopenharmony_ci }, 27768c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR1", 0xE6060044, 32, 27778c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 27788c2ecf20Sopenharmony_ci GROUP( 27798c2ecf20Sopenharmony_ci /* IP1_31_28 [4] */ 27808c2ecf20Sopenharmony_ci FN_D5, FN_HRX2, FN_SCL1_B, FN_PWM2_C, FN_TCLK2_B, 0, 0, 0, 27818c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27828c2ecf20Sopenharmony_ci /* IP1_27_24 [4] */ 27838c2ecf20Sopenharmony_ci FN_D4, 0, FN_IRQ3, FN_TCLK1_A, FN_PWM6_C, 0, 0, 0, 27848c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 27858c2ecf20Sopenharmony_ci /* IP1_23_20 [4] */ 27868c2ecf20Sopenharmony_ci FN_D3, 0, FN_TX4_B, FN_SDA0_D, FN_PWM0_A, 27878c2ecf20Sopenharmony_ci FN_MSIOF2_SYNC_C, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27888c2ecf20Sopenharmony_ci /* IP1_19_16 [4] */ 27898c2ecf20Sopenharmony_ci FN_D2, 0, FN_RX4_B, FN_SCL0_D, FN_PWM1_C, 27908c2ecf20Sopenharmony_ci FN_MSIOF2_SCK_C, FN_SSI_SCK5_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27918c2ecf20Sopenharmony_ci /* IP1_15_12 [4] */ 27928c2ecf20Sopenharmony_ci FN_D1, 0, FN_SDA3_B, FN_TX5_B, 0, FN_MSIOF2_TXD_C, 27938c2ecf20Sopenharmony_ci FN_SSI_WS5_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27948c2ecf20Sopenharmony_ci /* IP1_11_8 [4] */ 27958c2ecf20Sopenharmony_ci FN_D0, 0, FN_SCL3_B, FN_RX5_B, FN_IRQ4, 27968c2ecf20Sopenharmony_ci FN_MSIOF2_RXD_C, FN_SSI_SDATA5_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27978c2ecf20Sopenharmony_ci /* IP1_7_4 [4] */ 27988c2ecf20Sopenharmony_ci FN_MMC0_D5, FN_SD1_WP, 0, 0, 0, 0, 0, 0, 27998c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28008c2ecf20Sopenharmony_ci /* IP1_3_0 [4] */ 28018c2ecf20Sopenharmony_ci FN_MMC0_D4, FN_SD1_CD, 0, 0, 0, 0, 0, 0, 28028c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, )) 28038c2ecf20Sopenharmony_ci }, 28048c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR2", 0xE6060048, 32, 28058c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 28068c2ecf20Sopenharmony_ci GROUP( 28078c2ecf20Sopenharmony_ci /* IP2_31_28 [4] */ 28088c2ecf20Sopenharmony_ci FN_D13, FN_MSIOF2_SYNC_A, 0, FN_RX4_C, 0, 0, 0, 0, 0, 28098c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 28108c2ecf20Sopenharmony_ci /* IP2_27_24 [4] */ 28118c2ecf20Sopenharmony_ci FN_D12, FN_MSIOF2_SCK_A, FN_HSCK0, 0, FN_CAN_CLK_C, 28128c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28138c2ecf20Sopenharmony_ci /* IP2_23_20 [4] */ 28148c2ecf20Sopenharmony_ci FN_D11, FN_MSIOF2_TXD_A, FN_HTX0_B, 0, 0, 0, 0, 0, 0, 28158c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 28168c2ecf20Sopenharmony_ci /* IP2_19_16 [4] */ 28178c2ecf20Sopenharmony_ci FN_D10, FN_MSIOF2_RXD_A, FN_HRX0_B, 0, 0, 0, 0, 0, 0, 28188c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 28198c2ecf20Sopenharmony_ci /* IP2_15_12 [4] */ 28208c2ecf20Sopenharmony_ci FN_D9, FN_HRTS2_N, FN_TX1_C, FN_SDA1_D, 0, 0, 0, 28218c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 28228c2ecf20Sopenharmony_ci /* IP2_11_8 [4] */ 28238c2ecf20Sopenharmony_ci FN_D8, FN_HCTS2_N, FN_RX1_C, FN_SCL1_D, FN_PWM3_C, 0, 28248c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28258c2ecf20Sopenharmony_ci /* IP2_7_4 [4] */ 28268c2ecf20Sopenharmony_ci FN_D7, FN_HSCK2, FN_SCIF1_SCK_C, FN_IRQ6, FN_PWM5_C, 28278c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28288c2ecf20Sopenharmony_ci /* IP2_3_0 [4] */ 28298c2ecf20Sopenharmony_ci FN_D6, FN_HTX2, FN_SDA1_B, FN_PWM4_C, 0, 0, 0, 0, 28308c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, )) 28318c2ecf20Sopenharmony_ci }, 28328c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR3", 0xE606004C, 32, 28338c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 28348c2ecf20Sopenharmony_ci GROUP( 28358c2ecf20Sopenharmony_ci /* IP3_31_28 [4] */ 28368c2ecf20Sopenharmony_ci FN_QSPI0_SSL, FN_WE1_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28378c2ecf20Sopenharmony_ci 0, 0, 28388c2ecf20Sopenharmony_ci /* IP3_27_24 [4] */ 28398c2ecf20Sopenharmony_ci FN_QSPI0_IO3, FN_RD_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28408c2ecf20Sopenharmony_ci 0, 0, 28418c2ecf20Sopenharmony_ci /* IP3_23_20 [4] */ 28428c2ecf20Sopenharmony_ci FN_QSPI0_IO2, FN_CS0_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28438c2ecf20Sopenharmony_ci 0, 0, 28448c2ecf20Sopenharmony_ci /* IP3_19_16 [4] */ 28458c2ecf20Sopenharmony_ci FN_QSPI0_MISO_QSPI0_IO1, FN_RD_WR_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28468c2ecf20Sopenharmony_ci 0, 0, 0, 0, 28478c2ecf20Sopenharmony_ci /* IP3_15_12 [4] */ 28488c2ecf20Sopenharmony_ci FN_QSPI0_MOSI_QSPI0_IO0, FN_BS_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28498c2ecf20Sopenharmony_ci 0, 0, 0, 28508c2ecf20Sopenharmony_ci /* IP3_11_8 [4] */ 28518c2ecf20Sopenharmony_ci FN_QSPI0_SPCLK, FN_WE0_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28528c2ecf20Sopenharmony_ci 0, 0, 28538c2ecf20Sopenharmony_ci /* IP3_7_4 [4] */ 28548c2ecf20Sopenharmony_ci FN_D15, FN_MSIOF2_SS2, FN_PWM4_A, 0, FN_CAN1_TX_B, FN_IRQ2, 28558c2ecf20Sopenharmony_ci FN_AVB_AVTP_MATCH_A, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28568c2ecf20Sopenharmony_ci /* IP3_3_0 [4] */ 28578c2ecf20Sopenharmony_ci FN_D14, FN_MSIOF2_SS1, 0, FN_TX4_C, FN_CAN1_RX_B, 28588c2ecf20Sopenharmony_ci 0, FN_AVB_AVTP_CAPTURE_A, 28598c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, )) 28608c2ecf20Sopenharmony_ci }, 28618c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR4", 0xE6060050, 32, 28628c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 28638c2ecf20Sopenharmony_ci GROUP( 28648c2ecf20Sopenharmony_ci /* IP4_31_28 [4] */ 28658c2ecf20Sopenharmony_ci FN_DU0_DR6, 0, FN_RX2_C, 0, 0, 0, FN_A6, 0, 28668c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28678c2ecf20Sopenharmony_ci /* IP4_27_24 [4] */ 28688c2ecf20Sopenharmony_ci FN_DU0_DR5, 0, FN_TX1_D, 0, FN_PWM1_B, 0, FN_A5, 0, 28698c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28708c2ecf20Sopenharmony_ci /* IP4_23_20 [4] */ 28718c2ecf20Sopenharmony_ci FN_DU0_DR4, 0, FN_RX1_D, 0, 0, 0, FN_A4, 0, 0, 0, 0, 28728c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 28738c2ecf20Sopenharmony_ci /* IP4_19_16 [4] */ 28748c2ecf20Sopenharmony_ci FN_DU0_DR3, 0, FN_TX0_D, FN_SDA0_E, FN_PWM0_B, 0, 28758c2ecf20Sopenharmony_ci FN_A3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28768c2ecf20Sopenharmony_ci /* IP4_15_12 [4] */ 28778c2ecf20Sopenharmony_ci FN_DU0_DR2, 0, FN_RX0_D, FN_SCL0_E, 0, 0, FN_A2, 0, 28788c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28798c2ecf20Sopenharmony_ci /* IP4_11_8 [4] */ 28808c2ecf20Sopenharmony_ci FN_DU0_DR1, 0, FN_TX5_C, FN_SDA2_D, 0, 0, FN_A1, 0, 28818c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28828c2ecf20Sopenharmony_ci /* IP4_7_4 [4] */ 28838c2ecf20Sopenharmony_ci FN_DU0_DR0, 0, FN_RX5_C, FN_SCL2_D, 0, 0, FN_A0, 0, 28848c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 28858c2ecf20Sopenharmony_ci /* IP4_3_0 [4] */ 28868c2ecf20Sopenharmony_ci FN_EX_WAIT0, FN_CAN_CLK_B, FN_SCIF_CLK_A, 0, 0, 0, 0, 28878c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, )) 28888c2ecf20Sopenharmony_ci }, 28898c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR5", 0xE6060054, 32, 28908c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 28918c2ecf20Sopenharmony_ci GROUP( 28928c2ecf20Sopenharmony_ci /* IP5_31_28 [4] */ 28938c2ecf20Sopenharmony_ci FN_DU0_DG6, 0, FN_HRX1_C, 0, 0, 0, FN_A14, 0, 0, 0, 28948c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 28958c2ecf20Sopenharmony_ci /* IP5_27_24 [4] */ 28968c2ecf20Sopenharmony_ci FN_DU0_DG5, 0, FN_HTX0_A, 0, FN_PWM5_B, 0, FN_A13, 28978c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 28988c2ecf20Sopenharmony_ci /* IP5_23_20 [4] */ 28998c2ecf20Sopenharmony_ci FN_DU0_DG4, 0, FN_HRX0_A, 0, 0, 0, FN_A12, 0, 0, 0, 29008c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29018c2ecf20Sopenharmony_ci /* IP5_19_16 [4] */ 29028c2ecf20Sopenharmony_ci FN_DU0_DG3, 0, FN_TX4_D, 0, FN_PWM4_B, 0, FN_A11, 0, 29038c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 29048c2ecf20Sopenharmony_ci /* IP5_15_12 [4] */ 29058c2ecf20Sopenharmony_ci FN_DU0_DG2, 0, FN_RX4_D, 0, 0, 0, FN_A10, 0, 0, 0, 29068c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29078c2ecf20Sopenharmony_ci /* IP5_11_8 [4] */ 29088c2ecf20Sopenharmony_ci FN_DU0_DG1, 0, FN_TX3_B, FN_SDA3_D, FN_PWM3_B, 0, 29098c2ecf20Sopenharmony_ci FN_A9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29108c2ecf20Sopenharmony_ci /* IP5_7_4 [4] */ 29118c2ecf20Sopenharmony_ci FN_DU0_DG0, 0, FN_RX3_B, FN_SCL3_D, 0, 0, FN_A8, 0, 29128c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 29138c2ecf20Sopenharmony_ci /* IP5_3_0 [4] */ 29148c2ecf20Sopenharmony_ci FN_DU0_DR7, 0, FN_TX2_C, 0, FN_PWM2_B, 0, FN_A7, 0, 29158c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, )) 29168c2ecf20Sopenharmony_ci }, 29178c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR6", 0xE6060058, 32, 29188c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 29198c2ecf20Sopenharmony_ci GROUP( 29208c2ecf20Sopenharmony_ci /* IP6_31_28 [4] */ 29218c2ecf20Sopenharmony_ci FN_DU0_DB6, 0, 0, 0, 0, 0, FN_A22, 0, 0, 29228c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 29238c2ecf20Sopenharmony_ci /* IP6_27_24 [4] */ 29248c2ecf20Sopenharmony_ci FN_DU0_DB5, 0, FN_HRTS1_N_C, 0, 0, 0, 29258c2ecf20Sopenharmony_ci FN_A21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29268c2ecf20Sopenharmony_ci /* IP6_23_20 [4] */ 29278c2ecf20Sopenharmony_ci FN_DU0_DB4, 0, FN_HCTS1_N_C, 0, 0, 0, 29288c2ecf20Sopenharmony_ci FN_A20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29298c2ecf20Sopenharmony_ci /* IP6_19_16 [4] */ 29308c2ecf20Sopenharmony_ci FN_DU0_DB3, 0, FN_HRTS0_N, 0, 0, 0, FN_A19, 0, 0, 0, 29318c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29328c2ecf20Sopenharmony_ci /* IP6_15_12 [4] */ 29338c2ecf20Sopenharmony_ci FN_DU0_DB2, 0, FN_HCTS0_N, 0, 0, 0, FN_A18, 0, 0, 0, 29348c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29358c2ecf20Sopenharmony_ci /* IP6_11_8 [4] */ 29368c2ecf20Sopenharmony_ci FN_DU0_DB1, 0, 0, FN_SDA4_D, FN_CAN0_TX_C, 0, FN_A17, 29378c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 29388c2ecf20Sopenharmony_ci /* IP6_7_4 [4] */ 29398c2ecf20Sopenharmony_ci FN_DU0_DB0, 0, 0, FN_SCL4_D, FN_CAN0_RX_C, 0, FN_A16, 29408c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 29418c2ecf20Sopenharmony_ci /* IP6_3_0 [4] */ 29428c2ecf20Sopenharmony_ci FN_DU0_DG7, 0, FN_HTX1_C, 0, FN_PWM6_B, 0, FN_A15, 29438c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, )) 29448c2ecf20Sopenharmony_ci }, 29458c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR7", 0xE606005C, 32, 29468c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 29478c2ecf20Sopenharmony_ci GROUP( 29488c2ecf20Sopenharmony_ci /* IP7_31_28 [4] */ 29498c2ecf20Sopenharmony_ci FN_DU0_DISP, 0, 0, 0, FN_CAN1_RX_C, 0, 0, 0, 0, 0, 0, 29508c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 29518c2ecf20Sopenharmony_ci /* IP7_27_24 [4] */ 29528c2ecf20Sopenharmony_ci FN_DU0_EXODDF_DU0_ODDF_DISP_CDE, 0, FN_MSIOF2_SCK_B, 29538c2ecf20Sopenharmony_ci 0, 0, 0, FN_DRACK0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29548c2ecf20Sopenharmony_ci /* IP7_23_20 [4] */ 29558c2ecf20Sopenharmony_ci FN_DU0_EXVSYNC_DU0_VSYNC, 0, FN_MSIOF2_SYNC_B, 0, 29568c2ecf20Sopenharmony_ci 0, 0, FN_DACK0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29578c2ecf20Sopenharmony_ci /* IP7_19_16 [4] */ 29588c2ecf20Sopenharmony_ci FN_DU0_EXHSYNC_DU0_HSYNC, 0, FN_MSIOF2_TXD_B, 0, 29598c2ecf20Sopenharmony_ci 0, 0, FN_DREQ0_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29608c2ecf20Sopenharmony_ci /* IP7_15_12 [4] */ 29618c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT1, 0, FN_MSIOF2_RXD_B, 0, 0, 0, 29628c2ecf20Sopenharmony_ci FN_CS1_N_A26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29638c2ecf20Sopenharmony_ci /* IP7_11_8 [4] */ 29648c2ecf20Sopenharmony_ci FN_DU0_DOTCLKOUT0, 0, 0, 0, 0, 0, FN_A25, 0, 0, 0, 0, 29658c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 29668c2ecf20Sopenharmony_ci /* IP7_7_4 [4] */ 29678c2ecf20Sopenharmony_ci FN_DU0_DOTCLKIN, 0, 0, 0, 0, 0, FN_A24, 0, 0, 0, 29688c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29698c2ecf20Sopenharmony_ci /* IP7_3_0 [4] */ 29708c2ecf20Sopenharmony_ci FN_DU0_DB7, 0, 0, 0, 0, 0, FN_A23, 0, 0, 29718c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, )) 29728c2ecf20Sopenharmony_ci }, 29738c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR8", 0xE6060060, 32, 29748c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 29758c2ecf20Sopenharmony_ci GROUP( 29768c2ecf20Sopenharmony_ci /* IP8_31_28 [4] */ 29778c2ecf20Sopenharmony_ci FN_VI1_DATA5, 0, 0, 0, FN_AVB_RXD4, FN_ETH_LINK, 0, 0, 0, 0, 29788c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29798c2ecf20Sopenharmony_ci /* IP8_27_24 [4] */ 29808c2ecf20Sopenharmony_ci FN_VI1_DATA4, 0, 0, 0, FN_AVB_RXD3, FN_ETH_RX_ER, 0, 0, 0, 0, 29818c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29828c2ecf20Sopenharmony_ci /* IP8_23_20 [4] */ 29838c2ecf20Sopenharmony_ci FN_VI1_DATA3, 0, 0, 0, FN_AVB_RXD2, FN_ETH_MDIO, 0, 0, 0, 0, 29848c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29858c2ecf20Sopenharmony_ci /* IP8_19_16 [4] */ 29868c2ecf20Sopenharmony_ci FN_VI1_DATA2, 0, 0, 0, FN_AVB_RXD1, FN_ETH_RXD1, 0, 0, 0, 0, 29878c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29888c2ecf20Sopenharmony_ci /* IP8_15_12 [4] */ 29898c2ecf20Sopenharmony_ci FN_VI1_DATA1, 0, 0, 0, FN_AVB_RXD0, FN_ETH_RXD0, 0, 0, 0, 0, 29908c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 29918c2ecf20Sopenharmony_ci /* IP8_11_8 [4] */ 29928c2ecf20Sopenharmony_ci FN_VI1_DATA0, 0, 0, 0, FN_AVB_RX_DV, FN_ETH_CRS_DV, 0, 0, 0, 29938c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 29948c2ecf20Sopenharmony_ci /* IP8_7_4 [4] */ 29958c2ecf20Sopenharmony_ci FN_VI1_CLK, 0, 0, 0, FN_AVB_RX_CLK, FN_ETH_REF_CLK, 0, 0, 0, 29968c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 29978c2ecf20Sopenharmony_ci /* IP8_3_0 [4] */ 29988c2ecf20Sopenharmony_ci FN_DU0_CDE, 0, 0, 0, FN_CAN1_TX_C, 0, 0, 0, 0, 0, 0, 0, 29998c2ecf20Sopenharmony_ci 0, 0, 0, 0, )) 30008c2ecf20Sopenharmony_ci }, 30018c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR9", 0xE6060064, 32, 30028c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 30038c2ecf20Sopenharmony_ci GROUP( 30048c2ecf20Sopenharmony_ci /* IP9_31_28 [4] */ 30058c2ecf20Sopenharmony_ci FN_VI1_DATA9, 0, 0, FN_SDA2_B, FN_AVB_TXD0, 0, 0, 0, 0, 0, 0, 30068c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 30078c2ecf20Sopenharmony_ci /* IP9_27_24 [4] */ 30088c2ecf20Sopenharmony_ci FN_VI1_DATA8, 0, 0, FN_SCL2_B, FN_AVB_TX_EN, 0, 0, 0, 0, 0, 0, 30098c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 30108c2ecf20Sopenharmony_ci /* IP9_23_20 [4] */ 30118c2ecf20Sopenharmony_ci FN_VI1_VSYNC_N, FN_TX0_B, FN_SDA0_C, FN_AUDIO_CLKOUT_B, 30128c2ecf20Sopenharmony_ci FN_AVB_TX_CLK, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30138c2ecf20Sopenharmony_ci /* IP9_19_16 [4] */ 30148c2ecf20Sopenharmony_ci FN_VI1_HSYNC_N, FN_RX0_B, FN_SCL0_C, 0, FN_AVB_GTXREFCLK, 30158c2ecf20Sopenharmony_ci FN_ETH_MDC, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30168c2ecf20Sopenharmony_ci /* IP9_15_12 [4] */ 30178c2ecf20Sopenharmony_ci FN_VI1_FIELD, FN_SDA3_A, 0, 0, FN_AVB_RX_ER, FN_ETH_TXD0, 0, 30188c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 30198c2ecf20Sopenharmony_ci /* IP9_11_8 [4] */ 30208c2ecf20Sopenharmony_ci FN_VI1_CLKENB, FN_SCL3_A, 0, 0, FN_AVB_RXD7, FN_ETH_MAGIC, 0, 30218c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 30228c2ecf20Sopenharmony_ci /* IP9_7_4 [4] */ 30238c2ecf20Sopenharmony_ci FN_VI1_DATA7, 0, 0, 0, FN_AVB_RXD6, FN_ETH_TX_EN, 0, 0, 0, 0, 30248c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 30258c2ecf20Sopenharmony_ci /* IP9_3_0 [4] */ 30268c2ecf20Sopenharmony_ci FN_VI1_DATA6, 0, 0, 0, FN_AVB_RXD5, FN_ETH_TXD1, 0, 0, 0, 0, 30278c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, )) 30288c2ecf20Sopenharmony_ci }, 30298c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR10", 0xE6060068, 32, 30308c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 30318c2ecf20Sopenharmony_ci GROUP( 30328c2ecf20Sopenharmony_ci /* IP10_31_28 [4] */ 30338c2ecf20Sopenharmony_ci FN_SCL1_A, FN_RX4_A, FN_PWM5_D, FN_DU1_DR0, 0, 0, 30348c2ecf20Sopenharmony_ci FN_SSI_SCK6_B, FN_VI0_G0, 0, 0, 0, 0, 0, 0, 0, 0, 30358c2ecf20Sopenharmony_ci /* IP10_27_24 [4] */ 30368c2ecf20Sopenharmony_ci FN_SDA0_A, FN_TX0_C, FN_IRQ5, FN_CAN_CLK_A, FN_AVB_GTX_CLK, 30378c2ecf20Sopenharmony_ci FN_CAN1_TX_D, FN_DVC_MUTE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30388c2ecf20Sopenharmony_ci /* IP10_23_20 [4] */ 30398c2ecf20Sopenharmony_ci FN_SCL0_A, FN_RX0_C, FN_PWM5_A, FN_TCLK1_B, FN_AVB_TXD6, 30408c2ecf20Sopenharmony_ci FN_CAN1_RX_D, FN_MSIOF0_SYNC_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30418c2ecf20Sopenharmony_ci /* IP10_19_16 [4] */ 30428c2ecf20Sopenharmony_ci FN_AVB_TXD5, FN_SCIF_CLK_B, FN_AUDIO_CLKC_B, 0, 30438c2ecf20Sopenharmony_ci FN_SSI_SDATA1_D, 0, FN_MSIOF0_SCK_B, 0, 0, 0, 0, 0, 0, 0, 30448c2ecf20Sopenharmony_ci 0, 0, 30458c2ecf20Sopenharmony_ci /* IP10_15_12 [4] */ 30468c2ecf20Sopenharmony_ci FN_AVB_TXD4, 0, FN_AUDIO_CLKB_B, 0, FN_SSI_WS1_D, FN_TX5_F, 30478c2ecf20Sopenharmony_ci FN_MSIOF0_TXD_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30488c2ecf20Sopenharmony_ci /* IP10_11_8 [4] */ 30498c2ecf20Sopenharmony_ci FN_AVB_TXD3, 0, FN_AUDIO_CLKA_B, 0, FN_SSI_SCK1_D, FN_RX5_F, 30508c2ecf20Sopenharmony_ci FN_MSIOF0_RXD_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30518c2ecf20Sopenharmony_ci /* IP10_7_4 [4] */ 30528c2ecf20Sopenharmony_ci FN_VI1_DATA11, 0, 0, FN_CAN0_TX_B, FN_AVB_TXD2, 0, 0, 0, 0, 30538c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 30548c2ecf20Sopenharmony_ci /* IP10_3_0 [4] */ 30558c2ecf20Sopenharmony_ci FN_VI1_DATA10, 0, 0, FN_CAN0_RX_B, FN_AVB_TXD1, 0, 0, 0, 0, 30568c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, )) 30578c2ecf20Sopenharmony_ci }, 30588c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR11", 0xE606006C, 32, 30598c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 30608c2ecf20Sopenharmony_ci GROUP( 30618c2ecf20Sopenharmony_ci /* IP11_31_28 [4] */ 30628c2ecf20Sopenharmony_ci FN_HRX1_A, FN_SCL4_A, FN_PWM6_A, FN_DU1_DG0, FN_RX0_A, 0, 0, 30638c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 30648c2ecf20Sopenharmony_ci /* IP11_27_24 [4] */ 30658c2ecf20Sopenharmony_ci FN_MSIOF0_SS2_A, 0, 0, FN_DU1_DR7, 0, 30668c2ecf20Sopenharmony_ci FN_QSPI1_SSL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30678c2ecf20Sopenharmony_ci /* IP11_23_20 [4] */ 30688c2ecf20Sopenharmony_ci FN_MSIOF0_SS1_A, 0, 0, FN_DU1_DR6, 0, 30698c2ecf20Sopenharmony_ci FN_QSPI1_IO3, FN_SSI_SDATA8_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30708c2ecf20Sopenharmony_ci /* IP11_19_16 [4] */ 30718c2ecf20Sopenharmony_ci FN_MSIOF0_SYNC_A, FN_PWM1_A, 0, FN_DU1_DR5, 30728c2ecf20Sopenharmony_ci 0, FN_QSPI1_IO2, FN_SSI_SDATA7_B, 0, 0, 0, 0, 0, 30738c2ecf20Sopenharmony_ci 0, 0, 0, 0, 30748c2ecf20Sopenharmony_ci /* IP11_15_12 [4] */ 30758c2ecf20Sopenharmony_ci FN_MSIOF0_SCK_A, FN_IRQ0, 0, FN_DU1_DR4, 30768c2ecf20Sopenharmony_ci 0, FN_QSPI1_SPCLK, FN_SSI_SCK78_B, FN_VI0_G4, 30778c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 30788c2ecf20Sopenharmony_ci /* IP11_11_8 [4] */ 30798c2ecf20Sopenharmony_ci FN_MSIOF0_TXD_A, FN_TX5_A, FN_SDA2_C, FN_DU1_DR3, 0, 30808c2ecf20Sopenharmony_ci FN_QSPI1_MISO_QSPI1_IO1, FN_SSI_WS78_B, FN_VI0_G3, 30818c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 30828c2ecf20Sopenharmony_ci /* IP11_7_4 [4] */ 30838c2ecf20Sopenharmony_ci FN_MSIOF0_RXD_A, FN_RX5_A, FN_SCL2_C, FN_DU1_DR2, 0, 30848c2ecf20Sopenharmony_ci FN_QSPI1_MOSI_QSPI1_IO0, FN_SSI_SDATA6_B, FN_VI0_G2, 30858c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 30868c2ecf20Sopenharmony_ci /* IP11_3_0 [4] */ 30878c2ecf20Sopenharmony_ci FN_SDA1_A, FN_TX4_A, 0, FN_DU1_DR1, 0, 0, FN_SSI_WS6_B, 30888c2ecf20Sopenharmony_ci FN_VI0_G1, 0, 0, 0, 0, 0, 0, 0, 0, )) 30898c2ecf20Sopenharmony_ci }, 30908c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR12", 0xE6060070, 32, 30918c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 30928c2ecf20Sopenharmony_ci GROUP( 30938c2ecf20Sopenharmony_ci /* IP12_31_28 [4] */ 30948c2ecf20Sopenharmony_ci FN_SD2_DAT2, FN_RX2_A, 0, FN_DU1_DB0, FN_SSI_SDATA2_B, 0, 0, 30958c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 30968c2ecf20Sopenharmony_ci /* IP12_27_24 [4] */ 30978c2ecf20Sopenharmony_ci FN_SD2_DAT1, FN_TX1_A, FN_SDA1_E, FN_DU1_DG7, FN_SSI_WS2_B, 30988c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30998c2ecf20Sopenharmony_ci /* IP12_23_20 [4] */ 31008c2ecf20Sopenharmony_ci FN_SD2_DAT0, FN_RX1_A, FN_SCL1_E, FN_DU1_DG6, 31018c2ecf20Sopenharmony_ci FN_SSI_SDATA1_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31028c2ecf20Sopenharmony_ci /* IP12_19_16 [4] */ 31038c2ecf20Sopenharmony_ci FN_SD2_CMD, FN_SCIF1_SCK_A, FN_TCLK2_A, FN_DU1_DG5, 31048c2ecf20Sopenharmony_ci FN_SSI_SCK2_B, FN_PWM3_A, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31058c2ecf20Sopenharmony_ci /* IP12_15_12 [4] */ 31068c2ecf20Sopenharmony_ci FN_SD2_CLK, FN_HSCK1, 0, FN_DU1_DG4, FN_SSI_SCK1_B, 0, 0, 0, 31078c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 31088c2ecf20Sopenharmony_ci /* IP12_11_8 [4] */ 31098c2ecf20Sopenharmony_ci FN_HRTS1_N_A, 0, 0, FN_DU1_DG3, FN_SSI_WS1_B, FN_IRQ1, 0, 0, 31108c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 31118c2ecf20Sopenharmony_ci /* IP12_7_4 [4] */ 31128c2ecf20Sopenharmony_ci FN_HCTS1_N_A, FN_PWM2_A, 0, FN_DU1_DG2, FN_REMOCON_B, 31138c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31148c2ecf20Sopenharmony_ci /* IP12_3_0 [4] */ 31158c2ecf20Sopenharmony_ci FN_HTX1_A, FN_SDA4_A, 0, FN_DU1_DG1, FN_TX0_A, 0, 0, 0, 0, 0, 31168c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, )) 31178c2ecf20Sopenharmony_ci }, 31188c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR13", 0xE6060074, 32, 31198c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 31208c2ecf20Sopenharmony_ci GROUP( 31218c2ecf20Sopenharmony_ci /* IP13_31_28 [4] */ 31228c2ecf20Sopenharmony_ci FN_SSI_SCK5_A, 0, 0, FN_DU1_DOTCLKOUT1, 0, 0, 0, 0, 0, 0, 0, 31238c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 31248c2ecf20Sopenharmony_ci /* IP13_27_24 [4] */ 31258c2ecf20Sopenharmony_ci FN_SDA2_A, 0, FN_MSIOF1_SYNC_B, FN_DU1_DB7, FN_AUDIO_CLKOUT_C, 31268c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31278c2ecf20Sopenharmony_ci /* IP13_23_20 [4] */ 31288c2ecf20Sopenharmony_ci FN_SCL2_A, 0, FN_MSIOF1_SCK_B, FN_DU1_DB6, FN_AUDIO_CLKC_C, 31298c2ecf20Sopenharmony_ci FN_SSI_SCK4_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31308c2ecf20Sopenharmony_ci /* IP13_19_16 [4] */ 31318c2ecf20Sopenharmony_ci FN_TX3_A, FN_SDA1_C, FN_MSIOF1_TXD_B, FN_DU1_DB5, 31328c2ecf20Sopenharmony_ci FN_AUDIO_CLKB_C, FN_SSI_WS4_B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31338c2ecf20Sopenharmony_ci /* IP13_15_12 [4] */ 31348c2ecf20Sopenharmony_ci FN_RX3_A, FN_SCL1_C, FN_MSIOF1_RXD_B, FN_DU1_DB4, 31358c2ecf20Sopenharmony_ci FN_AUDIO_CLKA_C, FN_SSI_SDATA4_B, 0, 0, 0, 0, 0, 0, 0, 0, 31368c2ecf20Sopenharmony_ci 0, 0, 31378c2ecf20Sopenharmony_ci /* IP13_11_8 [4] */ 31388c2ecf20Sopenharmony_ci FN_SD2_WP, FN_SCIF3_SCK, 0, FN_DU1_DB3, FN_SSI_SDATA9_B, 0, 31398c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31408c2ecf20Sopenharmony_ci /* IP13_7_4 [4] */ 31418c2ecf20Sopenharmony_ci FN_SD2_CD, FN_SCIF2_SCK_A, 0, FN_DU1_DB2, FN_SSI_SCK9_B, 0, 0, 31428c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 31438c2ecf20Sopenharmony_ci /* IP13_3_0 [4] */ 31448c2ecf20Sopenharmony_ci FN_SD2_DAT3, FN_TX2_A, 0, FN_DU1_DB1, FN_SSI_WS9_B, 0, 0, 0, 31458c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, )) 31468c2ecf20Sopenharmony_ci }, 31478c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR14", 0xE6060078, 32, 31488c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 31498c2ecf20Sopenharmony_ci GROUP( 31508c2ecf20Sopenharmony_ci /* IP14_31_28 [4] */ 31518c2ecf20Sopenharmony_ci FN_SSI_SDATA7_A, 0, 0, FN_IRQ8, FN_AUDIO_CLKA_D, FN_CAN_CLK_D, 31528c2ecf20Sopenharmony_ci FN_VI0_G5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31538c2ecf20Sopenharmony_ci /* IP14_27_24 [4] */ 31548c2ecf20Sopenharmony_ci FN_SSI_WS78_A, 0, FN_SCL4_E, FN_DU1_CDE, 0, 0, 0, 0, 0, 0, 0, 31558c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 31568c2ecf20Sopenharmony_ci /* IP14_23_20 [4] */ 31578c2ecf20Sopenharmony_ci FN_SSI_SCK78_A, 0, FN_SDA4_E, FN_DU1_DISP, 0, 0, 0, 0, 0, 0, 31588c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 31598c2ecf20Sopenharmony_ci /* IP14_19_16 [4] */ 31608c2ecf20Sopenharmony_ci FN_SSI_SDATA6_A, 0, FN_SDA4_C, FN_DU1_EXVSYNC_DU1_VSYNC, 0, 0, 31618c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31628c2ecf20Sopenharmony_ci /* IP14_15_12 [4] */ 31638c2ecf20Sopenharmony_ci FN_SSI_WS6_A, 0, FN_SCL4_C, FN_DU1_EXHSYNC_DU1_HSYNC, 0, 0, 0, 31648c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 31658c2ecf20Sopenharmony_ci /* IP14_11_8 [4] */ 31668c2ecf20Sopenharmony_ci FN_SSI_SCK6_A, 0, 0, FN_DU1_EXODDF_DU1_ODDF_DISP_CDE, 0, 0, 31678c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31688c2ecf20Sopenharmony_ci /* IP14_7_4 [4] */ 31698c2ecf20Sopenharmony_ci FN_SSI_SDATA5_A, 0, FN_SDA3_C, FN_DU1_DOTCLKOUT0, 0, 0, 0, 31708c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 31718c2ecf20Sopenharmony_ci /* IP14_3_0 [4] */ 31728c2ecf20Sopenharmony_ci FN_SSI_WS5_A, 0, FN_SCL3_C, FN_DU1_DOTCLKIN, 0, 0, 0, 0, 0, 0, 31738c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, )) 31748c2ecf20Sopenharmony_ci }, 31758c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR15", 0xE606007C, 32, 31768c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 31778c2ecf20Sopenharmony_ci GROUP( 31788c2ecf20Sopenharmony_ci /* IP15_31_28 [4] */ 31798c2ecf20Sopenharmony_ci FN_SSI_WS4_A, 0, FN_AVB_PHY_INT, 0, 0, 0, FN_VI0_R5, 0, 0, 0, 31808c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 31818c2ecf20Sopenharmony_ci /* IP15_27_24 [4] */ 31828c2ecf20Sopenharmony_ci FN_SSI_SCK4_A, 0, FN_AVB_MAGIC, 0, 0, 0, FN_VI0_R4, 0, 0, 0, 31838c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 31848c2ecf20Sopenharmony_ci /* IP15_23_20 [4] */ 31858c2ecf20Sopenharmony_ci FN_SSI_SDATA3, FN_MSIOF1_SS2_A, FN_AVB_LINK, 0, FN_CAN1_TX_A, 31868c2ecf20Sopenharmony_ci FN_DREQ2_N, FN_VI0_R3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31878c2ecf20Sopenharmony_ci /* IP15_19_16 [4] */ 31888c2ecf20Sopenharmony_ci FN_SSI_WS34, FN_MSIOF1_SS1_A, FN_AVB_MDIO, 0, FN_CAN1_RX_A, 31898c2ecf20Sopenharmony_ci FN_DREQ1_N, FN_VI0_R2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31908c2ecf20Sopenharmony_ci /* IP15_15_12 [4] */ 31918c2ecf20Sopenharmony_ci FN_SSI_SCK34, FN_MSIOF1_SCK_A, FN_AVB_MDC, 0, 0, FN_DACK1, 31928c2ecf20Sopenharmony_ci FN_VI0_R1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31938c2ecf20Sopenharmony_ci /* IP15_11_8 [4] */ 31948c2ecf20Sopenharmony_ci FN_SSI_SDATA0_A, FN_MSIOF1_SYNC_A, FN_PWM0_C, 0, 0, 0, 31958c2ecf20Sopenharmony_ci FN_VI0_R0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31968c2ecf20Sopenharmony_ci /* IP15_7_4 [4] */ 31978c2ecf20Sopenharmony_ci FN_SSI_WS0129_A, FN_MSIOF1_TXD_A, FN_TX5_D, 0, 0, 0, 31988c2ecf20Sopenharmony_ci FN_VI0_G7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31998c2ecf20Sopenharmony_ci /* IP15_3_0 [4] */ 32008c2ecf20Sopenharmony_ci FN_SSI_SCK0129_A, FN_MSIOF1_RXD_A, FN_RX5_D, 0, 0, 0, 32018c2ecf20Sopenharmony_ci FN_VI0_G6, 0, 0, 0, 0, 0, 0, 0, 0, 0, )) 32028c2ecf20Sopenharmony_ci }, 32038c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR16", 0xE6060080, 32, 32048c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 32058c2ecf20Sopenharmony_ci GROUP( 32068c2ecf20Sopenharmony_ci /* IP16_31_28 [4] */ 32078c2ecf20Sopenharmony_ci FN_SSI_SDATA2_A, FN_HRTS1_N_B, 0, 0, 0, 0, 32088c2ecf20Sopenharmony_ci FN_VI0_DATA4_VI0_B4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32098c2ecf20Sopenharmony_ci /* IP16_27_24 [4] */ 32108c2ecf20Sopenharmony_ci FN_SSI_WS2_A, FN_HCTS1_N_B, 0, 0, 0, FN_AVB_TX_ER, 32118c2ecf20Sopenharmony_ci FN_VI0_DATA3_VI0_B3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32128c2ecf20Sopenharmony_ci /* IP16_23_20 [4] */ 32138c2ecf20Sopenharmony_ci FN_SSI_SCK2_A, FN_HTX1_B, 0, 0, 0, FN_AVB_TXD7, 32148c2ecf20Sopenharmony_ci FN_VI0_DATA2_VI0_B2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32158c2ecf20Sopenharmony_ci /* IP16_19_16 [4] */ 32168c2ecf20Sopenharmony_ci FN_SSI_SDATA1_A, FN_HRX1_B, 0, 0, 0, 0, FN_VI0_DATA1_VI0_B1, 32178c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 32188c2ecf20Sopenharmony_ci /* IP16_15_12 [4] */ 32198c2ecf20Sopenharmony_ci FN_SSI_WS1_A, FN_TX1_B, 0, 0, FN_CAN0_TX_D, 32208c2ecf20Sopenharmony_ci FN_AVB_AVTP_MATCH_B, FN_VI0_DATA0_VI0_B0, 0, 0, 0, 0, 0, 0, 32218c2ecf20Sopenharmony_ci 0, 0, 0, 32228c2ecf20Sopenharmony_ci /* IP16_11_8 [4] */ 32238c2ecf20Sopenharmony_ci FN_SSI_SDATA8_A, FN_RX1_B, 0, 0, FN_CAN0_RX_D, 32248c2ecf20Sopenharmony_ci FN_AVB_AVTP_CAPTURE_B, FN_VI0_R7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32258c2ecf20Sopenharmony_ci /* IP16_7_4 [4] */ 32268c2ecf20Sopenharmony_ci FN_SSI_SCK1_A, FN_SCIF1_SCK_B, FN_PWM1_D, FN_IRQ9, FN_REMOCON_A, 32278c2ecf20Sopenharmony_ci FN_DACK2, FN_VI0_CLK, FN_AVB_COL, 0, 0, 0, 0, 0, 0, 0, 0, 32288c2ecf20Sopenharmony_ci /* IP16_3_0 [4] */ 32298c2ecf20Sopenharmony_ci FN_SSI_SDATA4_A, 0, FN_AVB_CRS, 0, 0, 0, FN_VI0_R6, 0, 0, 0, 32308c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, )) 32318c2ecf20Sopenharmony_ci }, 32328c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("IPSR17", 0xE6060084, 32, 32338c2ecf20Sopenharmony_ci GROUP(4, 4, 4, 4, 4, 4, 4, 4), 32348c2ecf20Sopenharmony_ci GROUP( 32358c2ecf20Sopenharmony_ci /* IP17_31_28 [4] */ 32368c2ecf20Sopenharmony_ci 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32378c2ecf20Sopenharmony_ci /* IP17_27_24 [4] */ 32388c2ecf20Sopenharmony_ci FN_AUDIO_CLKOUT_A, FN_SDA4_B, 0, 0, 0, 0, 32398c2ecf20Sopenharmony_ci FN_VI0_VSYNC_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32408c2ecf20Sopenharmony_ci /* IP17_23_20 [4] */ 32418c2ecf20Sopenharmony_ci FN_AUDIO_CLKC_A, FN_SCL4_B, 0, 0, 0, 0, 32428c2ecf20Sopenharmony_ci FN_VI0_HSYNC_N, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32438c2ecf20Sopenharmony_ci /* IP17_19_16 [4] */ 32448c2ecf20Sopenharmony_ci FN_AUDIO_CLKB_A, FN_SDA0_B, 0, 0, 0, 0, 32458c2ecf20Sopenharmony_ci FN_VI0_FIELD, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32468c2ecf20Sopenharmony_ci /* IP17_15_12 [4] */ 32478c2ecf20Sopenharmony_ci FN_AUDIO_CLKA_A, FN_SCL0_B, 0, 0, 0, 0, 32488c2ecf20Sopenharmony_ci FN_VI0_CLKENB, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32498c2ecf20Sopenharmony_ci /* IP17_11_8 [4] */ 32508c2ecf20Sopenharmony_ci FN_SSI_SDATA9_A, FN_SCIF2_SCK_B, FN_PWM2_D, 0, 0, 0, 32518c2ecf20Sopenharmony_ci FN_VI0_DATA7_VI0_B7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32528c2ecf20Sopenharmony_ci /* IP17_7_4 [4] */ 32538c2ecf20Sopenharmony_ci FN_SSI_WS9_A, FN_TX2_B, FN_SDA3_E, 0, 0, 0, 32548c2ecf20Sopenharmony_ci FN_VI0_DATA6_VI0_B6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32558c2ecf20Sopenharmony_ci /* IP17_3_0 [4] */ 32568c2ecf20Sopenharmony_ci FN_SSI_SCK9_A, FN_RX2_B, FN_SCL3_E, 0, 0, FN_EX_WAIT1, 32578c2ecf20Sopenharmony_ci FN_VI0_DATA5_VI0_B5, 0, 0, 0, 0, 0, 0, 0, 0, 0, )) 32588c2ecf20Sopenharmony_ci }, 32598c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL0", 0xE60600C0, 32, 32608c2ecf20Sopenharmony_ci GROUP(1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 2, 1, 32618c2ecf20Sopenharmony_ci 3, 3, 1, 2, 3, 3, 1), 32628c2ecf20Sopenharmony_ci GROUP( 32638c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32648c2ecf20Sopenharmony_ci 0, 0, 32658c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32668c2ecf20Sopenharmony_ci 0, 0, 32678c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32688c2ecf20Sopenharmony_ci 0, 0, 32698c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32708c2ecf20Sopenharmony_ci 0, 0, 32718c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32728c2ecf20Sopenharmony_ci 0, 0, 32738c2ecf20Sopenharmony_ci /* SEL_ADGA [2] */ 32748c2ecf20Sopenharmony_ci FN_SEL_ADGA_0, FN_SEL_ADGA_1, FN_SEL_ADGA_2, FN_SEL_ADGA_3, 32758c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32768c2ecf20Sopenharmony_ci 0, 0, 32778c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32788c2ecf20Sopenharmony_ci 0, 0, 32798c2ecf20Sopenharmony_ci /* SEL_CANCLK [2] */ 32808c2ecf20Sopenharmony_ci FN_SEL_CANCLK_0, FN_SEL_CANCLK_1, FN_SEL_CANCLK_2, 32818c2ecf20Sopenharmony_ci FN_SEL_CANCLK_3, 32828c2ecf20Sopenharmony_ci /* SEL_CAN1 [2] */ 32838c2ecf20Sopenharmony_ci FN_SEL_CAN1_0, FN_SEL_CAN1_1, FN_SEL_CAN1_2, FN_SEL_CAN1_3, 32848c2ecf20Sopenharmony_ci /* SEL_CAN0 [2] */ 32858c2ecf20Sopenharmony_ci FN_SEL_CAN0_0, FN_SEL_CAN0_1, FN_SEL_CAN0_2, FN_SEL_CAN0_3, 32868c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32878c2ecf20Sopenharmony_ci 0, 0, 32888c2ecf20Sopenharmony_ci /* SEL_I2C04 [3] */ 32898c2ecf20Sopenharmony_ci FN_SEL_I2C04_0, FN_SEL_I2C04_1, FN_SEL_I2C04_2, FN_SEL_I2C04_3, 32908c2ecf20Sopenharmony_ci FN_SEL_I2C04_4, 0, 0, 0, 32918c2ecf20Sopenharmony_ci /* SEL_I2C03 [3] */ 32928c2ecf20Sopenharmony_ci FN_SEL_I2C03_0, FN_SEL_I2C03_1, FN_SEL_I2C03_2, FN_SEL_I2C03_3, 32938c2ecf20Sopenharmony_ci FN_SEL_I2C03_4, 0, 0, 0, 32948c2ecf20Sopenharmony_ci /* RESERVED [1] */ 32958c2ecf20Sopenharmony_ci 0, 0, 32968c2ecf20Sopenharmony_ci /* SEL_I2C02 [2] */ 32978c2ecf20Sopenharmony_ci FN_SEL_I2C02_0, FN_SEL_I2C02_1, FN_SEL_I2C02_2, FN_SEL_I2C02_3, 32988c2ecf20Sopenharmony_ci /* SEL_I2C01 [3] */ 32998c2ecf20Sopenharmony_ci FN_SEL_I2C01_0, FN_SEL_I2C01_1, FN_SEL_I2C01_2, FN_SEL_I2C01_3, 33008c2ecf20Sopenharmony_ci FN_SEL_I2C01_4, 0, 0, 0, 33018c2ecf20Sopenharmony_ci /* SEL_I2C00 [3] */ 33028c2ecf20Sopenharmony_ci FN_SEL_I2C00_0, FN_SEL_I2C00_1, FN_SEL_I2C00_2, FN_SEL_I2C00_3, 33038c2ecf20Sopenharmony_ci FN_SEL_I2C00_4, 0, 0, 0, 33048c2ecf20Sopenharmony_ci /* SEL_AVB [1] */ 33058c2ecf20Sopenharmony_ci FN_SEL_AVB_0, FN_SEL_AVB_1, )) 33068c2ecf20Sopenharmony_ci }, 33078c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL1", 0xE60600C4, 32, 33088c2ecf20Sopenharmony_ci GROUP(1, 3, 3, 2, 2, 1, 2, 2, 2, 1, 1, 1, 33098c2ecf20Sopenharmony_ci 1, 1, 2, 1, 1, 2, 2, 1), 33108c2ecf20Sopenharmony_ci GROUP( 33118c2ecf20Sopenharmony_ci /* SEL_SCIFCLK [1] */ 33128c2ecf20Sopenharmony_ci FN_SEL_SCIFCLK_0, FN_SEL_SCIFCLK_1, 33138c2ecf20Sopenharmony_ci /* SEL_SCIF5 [3] */ 33148c2ecf20Sopenharmony_ci FN_SEL_SCIF5_0, FN_SEL_SCIF5_1, FN_SEL_SCIF5_2, FN_SEL_SCIF5_3, 33158c2ecf20Sopenharmony_ci FN_SEL_SCIF5_4, FN_SEL_SCIF5_5, 0, 0, 33168c2ecf20Sopenharmony_ci /* SEL_SCIF4 [3] */ 33178c2ecf20Sopenharmony_ci FN_SEL_SCIF4_0, FN_SEL_SCIF4_1, FN_SEL_SCIF4_2, FN_SEL_SCIF4_3, 33188c2ecf20Sopenharmony_ci FN_SEL_SCIF4_4, 0, 0, 0, 33198c2ecf20Sopenharmony_ci /* SEL_SCIF3 [2] */ 33208c2ecf20Sopenharmony_ci FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, FN_SEL_SCIF3_2, 0, 33218c2ecf20Sopenharmony_ci /* SEL_SCIF2 [2] */ 33228c2ecf20Sopenharmony_ci FN_SEL_SCIF2_0, FN_SEL_SCIF2_1, FN_SEL_SCIF2_2, 0, 33238c2ecf20Sopenharmony_ci /* SEL_SCIF2_CLK [1] */ 33248c2ecf20Sopenharmony_ci FN_SEL_SCIF2_CLK_0, FN_SEL_SCIF2_CLK_1, 33258c2ecf20Sopenharmony_ci /* SEL_SCIF1 [2] */ 33268c2ecf20Sopenharmony_ci FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2, FN_SEL_SCIF1_3, 33278c2ecf20Sopenharmony_ci /* SEL_SCIF0 [2] */ 33288c2ecf20Sopenharmony_ci FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2, FN_SEL_SCIF0_3, 33298c2ecf20Sopenharmony_ci /* SEL_MSIOF2 [2] */ 33308c2ecf20Sopenharmony_ci FN_SEL_MSIOF2_0, FN_SEL_MSIOF2_1, FN_SEL_MSIOF2_2, 0, 33318c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33328c2ecf20Sopenharmony_ci 0, 0, 33338c2ecf20Sopenharmony_ci /* SEL_MSIOF1 [1] */ 33348c2ecf20Sopenharmony_ci FN_SEL_MSIOF1_0, FN_SEL_MSIOF1_1, 33358c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33368c2ecf20Sopenharmony_ci 0, 0, 33378c2ecf20Sopenharmony_ci /* SEL_MSIOF0 [1] */ 33388c2ecf20Sopenharmony_ci FN_SEL_MSIOF0_0, FN_SEL_MSIOF0_1, 33398c2ecf20Sopenharmony_ci /* SEL_RCN [1] */ 33408c2ecf20Sopenharmony_ci FN_SEL_RCN_0, FN_SEL_RCN_1, 33418c2ecf20Sopenharmony_ci /* RESERVED [2] */ 33428c2ecf20Sopenharmony_ci 0, 0, 0, 0, 33438c2ecf20Sopenharmony_ci /* SEL_TMU2 [1] */ 33448c2ecf20Sopenharmony_ci FN_SEL_TMU2_0, FN_SEL_TMU2_1, 33458c2ecf20Sopenharmony_ci /* SEL_TMU1 [1] */ 33468c2ecf20Sopenharmony_ci FN_SEL_TMU1_0, FN_SEL_TMU1_1, 33478c2ecf20Sopenharmony_ci /* RESERVED [2] */ 33488c2ecf20Sopenharmony_ci 0, 0, 0, 0, 33498c2ecf20Sopenharmony_ci /* SEL_HSCIF1 [2] */ 33508c2ecf20Sopenharmony_ci FN_SEL_HSCIF1_0, FN_SEL_HSCIF1_1, FN_SEL_HSCIF1_2, 0, 33518c2ecf20Sopenharmony_ci /* SEL_HSCIF0 [1] */ 33528c2ecf20Sopenharmony_ci FN_SEL_HSCIF0_0, FN_SEL_HSCIF0_1, )) 33538c2ecf20Sopenharmony_ci }, 33548c2ecf20Sopenharmony_ci { PINMUX_CFG_REG_VAR("MOD_SEL2", 0xE60600C8, 32, 33558c2ecf20Sopenharmony_ci GROUP(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 33568c2ecf20Sopenharmony_ci 2, 2, 2, 2, 2, 2, 2, 2, 2), 33578c2ecf20Sopenharmony_ci GROUP( 33588c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33598c2ecf20Sopenharmony_ci 0, 0, 33608c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33618c2ecf20Sopenharmony_ci 0, 0, 33628c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33638c2ecf20Sopenharmony_ci 0, 0, 33648c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33658c2ecf20Sopenharmony_ci 0, 0, 33668c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33678c2ecf20Sopenharmony_ci 0, 0, 33688c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33698c2ecf20Sopenharmony_ci 0, 0, 33708c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33718c2ecf20Sopenharmony_ci 0, 0, 33728c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33738c2ecf20Sopenharmony_ci 0, 0, 33748c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33758c2ecf20Sopenharmony_ci 0, 0, 33768c2ecf20Sopenharmony_ci /* RESERVED [1] */ 33778c2ecf20Sopenharmony_ci 0, 0, 33788c2ecf20Sopenharmony_ci /* SEL_ADGB [2] */ 33798c2ecf20Sopenharmony_ci FN_SEL_ADGB_0, FN_SEL_ADGB_1, FN_SEL_ADGB_2, 0, 33808c2ecf20Sopenharmony_ci /* SEL_ADGC [2] */ 33818c2ecf20Sopenharmony_ci FN_SEL_ADGC_0, FN_SEL_ADGC_1, FN_SEL_ADGC_2, 0, 33828c2ecf20Sopenharmony_ci /* SEL_SSI9 [2] */ 33838c2ecf20Sopenharmony_ci FN_SEL_SSI9_0, FN_SEL_SSI9_1, 0, 0, 33848c2ecf20Sopenharmony_ci /* SEL_SSI8 [2] */ 33858c2ecf20Sopenharmony_ci FN_SEL_SSI8_0, FN_SEL_SSI8_1, 0, 0, 33868c2ecf20Sopenharmony_ci /* SEL_SSI7 [2] */ 33878c2ecf20Sopenharmony_ci FN_SEL_SSI7_0, FN_SEL_SSI7_1, 0, 0, 33888c2ecf20Sopenharmony_ci /* SEL_SSI6 [2] */ 33898c2ecf20Sopenharmony_ci FN_SEL_SSI6_0, FN_SEL_SSI6_1, 0, 0, 33908c2ecf20Sopenharmony_ci /* SEL_SSI5 [2] */ 33918c2ecf20Sopenharmony_ci FN_SEL_SSI5_0, FN_SEL_SSI5_1, 0, 0, 33928c2ecf20Sopenharmony_ci /* SEL_SSI4 [2] */ 33938c2ecf20Sopenharmony_ci FN_SEL_SSI4_0, FN_SEL_SSI4_1, 0, 0, 33948c2ecf20Sopenharmony_ci /* SEL_SSI2 [2] */ 33958c2ecf20Sopenharmony_ci FN_SEL_SSI2_0, FN_SEL_SSI2_1, 0, 0, 33968c2ecf20Sopenharmony_ci /* SEL_SSI1 [2] */ 33978c2ecf20Sopenharmony_ci FN_SEL_SSI1_0, FN_SEL_SSI1_1, FN_SEL_SSI1_2, FN_SEL_SSI1_3, 33988c2ecf20Sopenharmony_ci /* SEL_SSI0 [2] */ 33998c2ecf20Sopenharmony_ci FN_SEL_SSI0_0, FN_SEL_SSI0_1, 0, 0, )) 34008c2ecf20Sopenharmony_ci }, 34018c2ecf20Sopenharmony_ci { }, 34028c2ecf20Sopenharmony_ci}; 34038c2ecf20Sopenharmony_ci 34048c2ecf20Sopenharmony_cistatic int r8a77470_pin_to_pocctrl(struct sh_pfc *pfc, unsigned int pin, 34058c2ecf20Sopenharmony_ci u32 *pocctrl) 34068c2ecf20Sopenharmony_ci{ 34078c2ecf20Sopenharmony_ci int bit = -EINVAL; 34088c2ecf20Sopenharmony_ci 34098c2ecf20Sopenharmony_ci *pocctrl = 0xe60600b0; 34108c2ecf20Sopenharmony_ci 34118c2ecf20Sopenharmony_ci if (pin >= RCAR_GP_PIN(0, 5) && pin <= RCAR_GP_PIN(0, 10)) 34128c2ecf20Sopenharmony_ci bit = 0; 34138c2ecf20Sopenharmony_ci 34148c2ecf20Sopenharmony_ci if (pin >= RCAR_GP_PIN(0, 13) && pin <= RCAR_GP_PIN(0, 22)) 34158c2ecf20Sopenharmony_ci bit = 2; 34168c2ecf20Sopenharmony_ci 34178c2ecf20Sopenharmony_ci if (pin >= RCAR_GP_PIN(4, 14) && pin <= RCAR_GP_PIN(4, 19)) 34188c2ecf20Sopenharmony_ci bit = 1; 34198c2ecf20Sopenharmony_ci 34208c2ecf20Sopenharmony_ci return bit; 34218c2ecf20Sopenharmony_ci} 34228c2ecf20Sopenharmony_ci 34238c2ecf20Sopenharmony_cistatic const struct sh_pfc_soc_operations r8a77470_pinmux_ops = { 34248c2ecf20Sopenharmony_ci .pin_to_pocctrl = r8a77470_pin_to_pocctrl, 34258c2ecf20Sopenharmony_ci}; 34268c2ecf20Sopenharmony_ci 34278c2ecf20Sopenharmony_ci#ifdef CONFIG_PINCTRL_PFC_R8A77470 34288c2ecf20Sopenharmony_ciconst struct sh_pfc_soc_info r8a77470_pinmux_info = { 34298c2ecf20Sopenharmony_ci .name = "r8a77470_pfc", 34308c2ecf20Sopenharmony_ci .ops = &r8a77470_pinmux_ops, 34318c2ecf20Sopenharmony_ci .unlock_reg = 0xe6060000, /* PMMR */ 34328c2ecf20Sopenharmony_ci 34338c2ecf20Sopenharmony_ci .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END }, 34348c2ecf20Sopenharmony_ci 34358c2ecf20Sopenharmony_ci .pins = pinmux_pins, 34368c2ecf20Sopenharmony_ci .nr_pins = ARRAY_SIZE(pinmux_pins), 34378c2ecf20Sopenharmony_ci .groups = pinmux_groups, 34388c2ecf20Sopenharmony_ci .nr_groups = ARRAY_SIZE(pinmux_groups), 34398c2ecf20Sopenharmony_ci .functions = pinmux_functions, 34408c2ecf20Sopenharmony_ci .nr_functions = ARRAY_SIZE(pinmux_functions), 34418c2ecf20Sopenharmony_ci 34428c2ecf20Sopenharmony_ci .cfg_regs = pinmux_config_regs, 34438c2ecf20Sopenharmony_ci 34448c2ecf20Sopenharmony_ci .pinmux_data = pinmux_data, 34458c2ecf20Sopenharmony_ci .pinmux_data_size = ARRAY_SIZE(pinmux_data), 34468c2ecf20Sopenharmony_ci}; 34478c2ecf20Sopenharmony_ci#endif 3448