18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * SH7734 processor support - PFC hardware block
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright (C) 2012  Renesas Solutions Corp.
68c2ecf20Sopenharmony_ci * Copyright (C) 2012  Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
78c2ecf20Sopenharmony_ci */
88c2ecf20Sopenharmony_ci#include <linux/init.h>
98c2ecf20Sopenharmony_ci#include <linux/kernel.h>
108c2ecf20Sopenharmony_ci#include <cpu/sh7734.h>
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#include "sh_pfc.h"
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#define CPU_ALL_GP(fn, sfx)						\
158c2ecf20Sopenharmony_ci	PORT_GP_32(0, fn, sfx),						\
168c2ecf20Sopenharmony_ci	PORT_GP_32(1, fn, sfx),						\
178c2ecf20Sopenharmony_ci	PORT_GP_32(2, fn, sfx),						\
188c2ecf20Sopenharmony_ci	PORT_GP_32(3, fn, sfx),						\
198c2ecf20Sopenharmony_ci	PORT_GP_32(4, fn, sfx),						\
208c2ecf20Sopenharmony_ci	PORT_GP_12(5, fn, sfx)
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci#undef _GP_DATA
238c2ecf20Sopenharmony_ci#define _GP_DATA(bank, pin, name, sfx, cfg)				\
248c2ecf20Sopenharmony_ci	PINMUX_DATA(name##_DATA, name##_FN, name##_IN, name##_OUT)
258c2ecf20Sopenharmony_ci
268c2ecf20Sopenharmony_ci#define _GP_INOUTSEL(bank, pin, name, sfx, cfg)	name##_IN, name##_OUT
278c2ecf20Sopenharmony_ci#define _GP_INDT(bank, pin, name, sfx, cfg)	name##_DATA
288c2ecf20Sopenharmony_ci#define GP_INOUTSEL(bank)	PORT_GP_32_REV(bank, _GP_INOUTSEL, unused)
298c2ecf20Sopenharmony_ci#define GP_INDT(bank)		PORT_GP_32_REV(bank, _GP_INDT, unused)
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_cienum {
328c2ecf20Sopenharmony_ci	PINMUX_RESERVED = 0,
338c2ecf20Sopenharmony_ci
348c2ecf20Sopenharmony_ci	PINMUX_DATA_BEGIN,
358c2ecf20Sopenharmony_ci	GP_ALL(DATA), /* GP_0_0_DATA -> GP_5_11_DATA */
368c2ecf20Sopenharmony_ci	PINMUX_DATA_END,
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci	PINMUX_INPUT_BEGIN,
398c2ecf20Sopenharmony_ci	GP_ALL(IN), /* GP_0_0_IN -> GP_5_11_IN */
408c2ecf20Sopenharmony_ci	PINMUX_INPUT_END,
418c2ecf20Sopenharmony_ci
428c2ecf20Sopenharmony_ci	PINMUX_OUTPUT_BEGIN,
438c2ecf20Sopenharmony_ci	GP_ALL(OUT), /* GP_0_0_OUT -> GP_5_11_OUT */
448c2ecf20Sopenharmony_ci	PINMUX_OUTPUT_END,
458c2ecf20Sopenharmony_ci
468c2ecf20Sopenharmony_ci	PINMUX_FUNCTION_BEGIN,
478c2ecf20Sopenharmony_ci	GP_ALL(FN), /* GP_0_0_FN -> GP_5_11_FN */
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci	/* GPSR0 */
508c2ecf20Sopenharmony_ci	FN_IP1_9_8, FN_IP1_11_10, FN_IP1_13_12, FN_IP1_15_14,
518c2ecf20Sopenharmony_ci	FN_IP0_7_6, FN_IP0_9_8, FN_IP0_11_10, FN_IP0_13_12,
528c2ecf20Sopenharmony_ci	FN_IP0_15_14, FN_IP0_17_16, FN_IP0_19_18, FN_IP0_21_20,
538c2ecf20Sopenharmony_ci	FN_IP0_23_22, FN_IP0_25_24, FN_IP0_27_26, FN_IP0_29_28,
548c2ecf20Sopenharmony_ci	FN_IP0_31_30, FN_IP1_1_0, FN_IP1_3_2, FN_IP1_5_4,
558c2ecf20Sopenharmony_ci	FN_IP1_7_6, FN_IP11_28, FN_IP0_1_0, FN_IP0_3_2,
568c2ecf20Sopenharmony_ci	FN_IP0_5_4, FN_IP1_17_16, FN_IP1_19_18, FN_IP1_22_20,
578c2ecf20Sopenharmony_ci	FN_IP1_25_23, FN_IP1_28_26, FN_IP1_31_29, FN_IP2_2_0,
588c2ecf20Sopenharmony_ci
598c2ecf20Sopenharmony_ci	/* GPSR1 */
608c2ecf20Sopenharmony_ci	FN_IP3_20, FN_IP3_29_27, FN_IP11_20_19, FN_IP11_22_21,
618c2ecf20Sopenharmony_ci	FN_IP2_16_14, FN_IP2_19_17, FN_IP2_22_20, FN_IP2_24_23,
628c2ecf20Sopenharmony_ci	FN_IP2_27_25, FN_IP2_30_28, FN_IP3_1_0, FN_CLKOUT,
638c2ecf20Sopenharmony_ci	FN_BS, FN_CS0, FN_IP3_2, FN_EX_CS0,
648c2ecf20Sopenharmony_ci	FN_IP3_5_3, FN_IP3_8_6, FN_IP3_11_9, FN_IP3_14_12,
658c2ecf20Sopenharmony_ci	FN_IP3_17_15, FN_RD, FN_IP3_19_18, FN_WE0,
668c2ecf20Sopenharmony_ci	FN_WE1, FN_IP2_4_3, FN_IP3_23_21, FN_IP3_26_24,
678c2ecf20Sopenharmony_ci	FN_IP2_7_5, FN_IP2_10_8, FN_IP2_13_11, FN_IP11_25_23,
688c2ecf20Sopenharmony_ci
698c2ecf20Sopenharmony_ci	/* GPSR2 */
708c2ecf20Sopenharmony_ci	FN_IP11_6_4, FN_IP11_9_7, FN_IP11_11_10, FN_IP4_2_0,
718c2ecf20Sopenharmony_ci	FN_IP8_29_28, FN_IP11_27_26, FN_IP8_22_20, FN_IP8_25_23,
728c2ecf20Sopenharmony_ci	FN_IP11_12, FN_IP8_27_26, FN_IP4_5_3, FN_IP4_8_6,
738c2ecf20Sopenharmony_ci	FN_IP4_11_9, FN_IP4_14_12, FN_IP4_17_15, FN_IP4_19_18,
748c2ecf20Sopenharmony_ci	FN_IP4_21_20, FN_IP4_23_22, FN_IP4_25_24, FN_IP4_27_26,
758c2ecf20Sopenharmony_ci	FN_IP4_29_28, FN_IP4_31_30, FN_IP5_2_0, FN_IP5_5_3,
768c2ecf20Sopenharmony_ci	FN_IP5_8_6, FN_IP5_11_9, FN_IP5_14_12, FN_IP5_17_15,
778c2ecf20Sopenharmony_ci	FN_IP5_20_18, FN_IP5_22_21, FN_IP5_24_23, FN_IP5_26_25,
788c2ecf20Sopenharmony_ci
798c2ecf20Sopenharmony_ci	/* GPSR3 */
808c2ecf20Sopenharmony_ci	FN_IP6_2_0, FN_IP6_5_3, FN_IP6_7_6, FN_IP6_9_8,
818c2ecf20Sopenharmony_ci	FN_IP6_11_10, FN_IP6_13_12, FN_IP6_15_14, FN_IP6_17_16,
828c2ecf20Sopenharmony_ci	FN_IP6_20_18, FN_IP6_23_21, FN_IP7_2_0, FN_IP7_5_3,
838c2ecf20Sopenharmony_ci	FN_IP7_8_6, FN_IP7_11_9, FN_IP7_14_12, FN_IP7_17_15,
848c2ecf20Sopenharmony_ci	FN_IP7_20_18, FN_IP7_23_21, FN_IP7_26_24, FN_IP7_28_27,
858c2ecf20Sopenharmony_ci	FN_IP7_30_29, FN_IP8_1_0, FN_IP8_3_2, FN_IP8_5_4,
868c2ecf20Sopenharmony_ci	FN_IP8_7_6, FN_IP8_9_8, FN_IP8_11_10, FN_IP8_13_12,
878c2ecf20Sopenharmony_ci	FN_IP8_15_14, FN_IP8_17_16, FN_IP8_19_18, FN_IP9_1_0,
888c2ecf20Sopenharmony_ci
898c2ecf20Sopenharmony_ci	/* GPSR4 */
908c2ecf20Sopenharmony_ci	FN_IP9_19_18, FN_IP9_21_20, FN_IP9_23_22, FN_IP9_25_24,
918c2ecf20Sopenharmony_ci	FN_IP9_11_10, FN_IP9_13_12, FN_IP9_15_14, FN_IP9_17_16,
928c2ecf20Sopenharmony_ci	FN_IP9_3_2, FN_IP9_5_4, FN_IP9_7_6, FN_IP9_9_8,
938c2ecf20Sopenharmony_ci	FN_IP9_27_26, FN_IP9_29_28, FN_IP10_2_0, FN_IP10_5_3,
948c2ecf20Sopenharmony_ci	FN_IP10_8_6, FN_IP10_11_9, FN_IP10_14_12, FN_IP10_15,
958c2ecf20Sopenharmony_ci	FN_IP10_18_16, FN_IP10_21_19, FN_IP11_0, FN_IP11_1,
968c2ecf20Sopenharmony_ci	FN_SCL0, FN_IP11_2, FN_PENC0, FN_IP11_15_13, /* Need check*/
978c2ecf20Sopenharmony_ci	FN_USB_OVC0, FN_IP11_18_16,
988c2ecf20Sopenharmony_ci	FN_IP10_22, FN_IP10_24_23,
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_ci	/* GPSR5 */
1018c2ecf20Sopenharmony_ci	FN_IP10_25, FN_IP11_3, FN_IRQ2_B, FN_IRQ3_B,
1028c2ecf20Sopenharmony_ci	FN_IP10_27_26, /* 10 */
1038c2ecf20Sopenharmony_ci	FN_IP10_29_28, /* 11 */
1048c2ecf20Sopenharmony_ci
1058c2ecf20Sopenharmony_ci	/* IPSR0 */
1068c2ecf20Sopenharmony_ci	FN_A15, FN_ST0_VCO_CLKIN, FN_LCD_DATA15_A, FN_TIOC3D_C,
1078c2ecf20Sopenharmony_ci	FN_A14, FN_LCD_DATA14_A, FN_TIOC3C_C,
1088c2ecf20Sopenharmony_ci	FN_A13, FN_LCD_DATA13_A, FN_TIOC3B_C,
1098c2ecf20Sopenharmony_ci	FN_A12, FN_LCD_DATA12_A, FN_TIOC3A_C,
1108c2ecf20Sopenharmony_ci	FN_A11, FN_ST0_D7, FN_LCD_DATA11_A, FN_TIOC2B_C,
1118c2ecf20Sopenharmony_ci	FN_A10, FN_ST0_D6, FN_LCD_DATA10_A, FN_TIOC2A_C,
1128c2ecf20Sopenharmony_ci	FN_A9, FN_ST0_D5, FN_LCD_DATA9_A, FN_TIOC1B_C,
1138c2ecf20Sopenharmony_ci	FN_A8, FN_ST0_D4, FN_LCD_DATA8_A, FN_TIOC1A_C,
1148c2ecf20Sopenharmony_ci	FN_A7, FN_ST0_D3, FN_LCD_DATA7_A, FN_TIOC0D_C,
1158c2ecf20Sopenharmony_ci	FN_A6, FN_ST0_D2, FN_LCD_DATA6_A, FN_TIOC0C_C,
1168c2ecf20Sopenharmony_ci	FN_A5, FN_ST0_D1, FN_LCD_DATA5_A, FN_TIOC0B_C,
1178c2ecf20Sopenharmony_ci	FN_A4, FN_ST0_D0, FN_LCD_DATA4_A, FN_TIOC0A_C,
1188c2ecf20Sopenharmony_ci	FN_A3, FN_ST0_VLD, FN_LCD_DATA3_A, FN_TCLKD_C,
1198c2ecf20Sopenharmony_ci	FN_A2, FN_ST0_SYC, FN_LCD_DATA2_A, FN_TCLKC_C,
1208c2ecf20Sopenharmony_ci	FN_A1, FN_ST0_REQ, FN_LCD_DATA1_A, FN_TCLKB_C,
1218c2ecf20Sopenharmony_ci	FN_A0, FN_ST0_CLKIN, FN_LCD_DATA0_A, FN_TCLKA_C,
1228c2ecf20Sopenharmony_ci
1238c2ecf20Sopenharmony_ci	/* IPSR1 */
1248c2ecf20Sopenharmony_ci	FN_D3, FN_SD0_DAT3_A, FN_MMC_D3_A, FN_ST1_D6, FN_FD3_A,
1258c2ecf20Sopenharmony_ci	FN_D2, FN_SD0_DAT2_A, FN_MMC_D2_A, FN_ST1_D5, FN_FD2_A,
1268c2ecf20Sopenharmony_ci	FN_D1, FN_SD0_DAT1_A, FN_MMC_D1_A, FN_ST1_D4, FN_FD1_A,
1278c2ecf20Sopenharmony_ci	FN_D0, FN_SD0_DAT0_A, FN_MMC_D0_A, FN_ST1_D3, FN_FD0_A,
1288c2ecf20Sopenharmony_ci	FN_A25, FN_TX2_D, FN_ST1_D2,
1298c2ecf20Sopenharmony_ci	FN_A24, FN_RX2_D, FN_ST1_D1,
1308c2ecf20Sopenharmony_ci	FN_A23, FN_ST1_D0, FN_LCD_M_DISP_A,
1318c2ecf20Sopenharmony_ci	FN_A22, FN_ST1_VLD, FN_LCD_VEPWC_A,
1328c2ecf20Sopenharmony_ci	FN_A21, FN_ST1_SYC, FN_LCD_VCPWC_A,
1338c2ecf20Sopenharmony_ci	FN_A20, FN_ST1_REQ, FN_LCD_FLM_A,
1348c2ecf20Sopenharmony_ci	FN_A19, FN_ST1_CLKIN, FN_LCD_CLK_A,	FN_TIOC4D_C,
1358c2ecf20Sopenharmony_ci	FN_A18, FN_ST1_PWM, FN_LCD_CL2_A, FN_TIOC4C_C,
1368c2ecf20Sopenharmony_ci	FN_A17, FN_ST1_VCO_CLKIN, FN_LCD_CL1_A,	FN_TIOC4B_C,
1378c2ecf20Sopenharmony_ci	FN_A16, FN_ST0_PWM, FN_LCD_DON_A, FN_TIOC4A_C,
1388c2ecf20Sopenharmony_ci
1398c2ecf20Sopenharmony_ci	/* IPSR2 */
1408c2ecf20Sopenharmony_ci	FN_D14, FN_TX2_B, FN_FSE_A, FN_ET0_TX_CLK_B,
1418c2ecf20Sopenharmony_ci	FN_D13, FN_RX2_B, FN_FRB_A,	FN_ET0_ETXD6_B,
1428c2ecf20Sopenharmony_ci	FN_D12, FN_FWE_A, FN_ET0_ETXD5_B,
1438c2ecf20Sopenharmony_ci	FN_D11, FN_RSPI_MISO_A, FN_QMI_QIO1_A, FN_FRE_A,
1448c2ecf20Sopenharmony_ci		FN_ET0_ETXD3_B,
1458c2ecf20Sopenharmony_ci	FN_D10, FN_RSPI_MOSI_A, FN_QMO_QIO0_A, FN_FALE_A,
1468c2ecf20Sopenharmony_ci		FN_ET0_ETXD2_B,
1478c2ecf20Sopenharmony_ci	FN_D9, FN_SD0_CMD_A, FN_MMC_CMD_A, FN_QIO3_A, FN_FCLE_A,
1488c2ecf20Sopenharmony_ci		FN_ET0_ETXD1_B,
1498c2ecf20Sopenharmony_ci	FN_D8, FN_SD0_CLK_A, FN_MMC_CLK_A, FN_QIO2_A, FN_FCE_A,
1508c2ecf20Sopenharmony_ci		FN_ET0_GTX_CLK_B,
1518c2ecf20Sopenharmony_ci	FN_D7, FN_RSPI_SSL_A, FN_MMC_D7_A, FN_QSSL_A, FN_FD7_A,
1528c2ecf20Sopenharmony_ci	FN_D6, FN_RSPI_RSPCK_A, FN_MMC_D6_A, FN_QSPCLK_A, FN_FD6_A,
1538c2ecf20Sopenharmony_ci	FN_D5, FN_SD0_WP_A, FN_MMC_D5_A, FN_FD5_A,
1548c2ecf20Sopenharmony_ci	FN_D4, FN_SD0_CD_A, FN_MMC_D4_A, FN_ST1_D7, FN_FD4_A,
1558c2ecf20Sopenharmony_ci
1568c2ecf20Sopenharmony_ci	/* IPSR3 */
1578c2ecf20Sopenharmony_ci	FN_DRACK0, FN_SD1_DAT2_A, FN_ATAG, FN_TCLK1_A, FN_ET0_ETXD7,
1588c2ecf20Sopenharmony_ci	FN_EX_WAIT2, FN_SD1_DAT1_A, FN_DACK2, FN_CAN1_RX_C,
1598c2ecf20Sopenharmony_ci		FN_ET0_MAGIC_C, FN_ET0_ETXD6_A,
1608c2ecf20Sopenharmony_ci	FN_EX_WAIT1, FN_SD1_DAT0_A, FN_DREQ2, FN_CAN1_TX_C,
1618c2ecf20Sopenharmony_ci		FN_ET0_LINK_C, FN_ET0_ETXD5_A,
1628c2ecf20Sopenharmony_ci	FN_EX_WAIT0, FN_TCLK1_B,
1638c2ecf20Sopenharmony_ci	FN_RD_WR, FN_TCLK0, FN_CAN_CLK_B, FN_ET0_ETXD4,
1648c2ecf20Sopenharmony_ci	FN_EX_CS5, FN_SD1_CMD_A, FN_ATADIR, FN_QSSL_B, FN_ET0_ETXD3_A,
1658c2ecf20Sopenharmony_ci	FN_EX_CS4, FN_SD1_WP_A, FN_ATAWR, FN_QMI_QIO1_B, FN_ET0_ETXD2_A,
1668c2ecf20Sopenharmony_ci	FN_EX_CS3, FN_SD1_CD_A, FN_ATARD, FN_QMO_QIO0_B, FN_ET0_ETXD1_A,
1678c2ecf20Sopenharmony_ci	FN_EX_CS2, FN_TX3_B, FN_ATACS1, FN_QSPCLK_B, FN_ET0_GTX_CLK_A,
1688c2ecf20Sopenharmony_ci	FN_EX_CS1, FN_RX3_B, FN_ATACS0, FN_QIO2_B, FN_ET0_ETXD0,
1698c2ecf20Sopenharmony_ci	FN_CS1_A26, FN_QIO3_B,
1708c2ecf20Sopenharmony_ci	FN_D15, FN_SCK2_B,
1718c2ecf20Sopenharmony_ci
1728c2ecf20Sopenharmony_ci	/* IPSR4 */
1738c2ecf20Sopenharmony_ci	FN_SCK2_A, FN_VI0_G3,
1748c2ecf20Sopenharmony_ci	FN_RTS1_B, FN_VI0_G2,
1758c2ecf20Sopenharmony_ci	FN_CTS1_B, FN_VI0_DATA7_VI0_G1,
1768c2ecf20Sopenharmony_ci	FN_TX1_B, FN_VI0_DATA6_VI0_G0, FN_ET0_PHY_INT_A,
1778c2ecf20Sopenharmony_ci	FN_RX1_B, FN_VI0_DATA5_VI0_B5, FN_ET0_MAGIC_A,
1788c2ecf20Sopenharmony_ci	FN_SCK1_B, FN_VI0_DATA4_VI0_B4, FN_ET0_LINK_A,
1798c2ecf20Sopenharmony_ci	FN_RTS0_B, FN_VI0_DATA3_VI0_B3, FN_ET0_MDIO_A,
1808c2ecf20Sopenharmony_ci	FN_CTS0_B, FN_VI0_DATA2_VI0_B2, FN_RMII0_MDIO_A, FN_ET0_MDC,
1818c2ecf20Sopenharmony_ci	FN_HTX0_A, FN_TX1_A, FN_VI0_DATA1_VI0_B1, FN_RMII0_MDC_A, FN_ET0_COL,
1828c2ecf20Sopenharmony_ci	FN_HRX0_A, FN_RX1_A, FN_VI0_DATA0_VI0_B0, FN_RMII0_CRS_DV_A, FN_ET0_CRS,
1838c2ecf20Sopenharmony_ci	FN_HSCK0_A, FN_SCK1_A, FN_VI0_VSYNC, FN_RMII0_RX_ER_A, FN_ET0_RX_ER,
1848c2ecf20Sopenharmony_ci	FN_HRTS0_A, FN_RTS1_A, FN_VI0_HSYNC, FN_RMII0_TXD_EN_A, FN_ET0_RX_DV,
1858c2ecf20Sopenharmony_ci	FN_HCTS0_A, FN_CTS1_A, FN_VI0_FIELD, FN_RMII0_RXD1_A, FN_ET0_ERXD7,
1868c2ecf20Sopenharmony_ci
1878c2ecf20Sopenharmony_ci	/* IPSR5 */
1888c2ecf20Sopenharmony_ci	FN_SD2_CLK_A, FN_RX2_A, FN_VI0_G4, FN_ET0_RX_CLK_B,
1898c2ecf20Sopenharmony_ci	FN_SD2_CMD_A, FN_TX2_A, FN_VI0_G5, FN_ET0_ERXD2_B,
1908c2ecf20Sopenharmony_ci	FN_SD2_DAT0_A, FN_RX3_A, FN_VI0_R0, FN_ET0_ERXD3_B,
1918c2ecf20Sopenharmony_ci	FN_SD2_DAT1_A, FN_TX3_A, FN_VI0_R1, FN_ET0_MDIO_B,
1928c2ecf20Sopenharmony_ci	FN_SD2_DAT2_A, FN_RX4_A, FN_VI0_R2, FN_ET0_LINK_B,
1938c2ecf20Sopenharmony_ci	FN_SD2_DAT3_A, FN_TX4_A, FN_VI0_R3, FN_ET0_MAGIC_B,
1948c2ecf20Sopenharmony_ci	FN_SD2_CD_A, FN_RX5_A, FN_VI0_R4, FN_ET0_PHY_INT_B,
1958c2ecf20Sopenharmony_ci	FN_SD2_WP_A, FN_TX5_A, FN_VI0_R5,
1968c2ecf20Sopenharmony_ci	FN_REF125CK, FN_ADTRG, FN_RX5_C,
1978c2ecf20Sopenharmony_ci	FN_REF50CK, FN_CTS1_E, FN_HCTS0_D,
1988c2ecf20Sopenharmony_ci
1998c2ecf20Sopenharmony_ci	/* IPSR6 */
2008c2ecf20Sopenharmony_ci	FN_DU0_DR0, FN_SCIF_CLK_B, FN_HRX0_D, FN_IETX_A, FN_TCLKA_A, FN_HIFD00,
2018c2ecf20Sopenharmony_ci	FN_DU0_DR1, FN_SCK0_B, FN_HTX0_D, FN_IERX_A, FN_TCLKB_A, FN_HIFD01,
2028c2ecf20Sopenharmony_ci	FN_DU0_DR2, FN_RX0_B, FN_TCLKC_A, FN_HIFD02,
2038c2ecf20Sopenharmony_ci	FN_DU0_DR3, FN_TX0_B, FN_TCLKD_A, FN_HIFD03,
2048c2ecf20Sopenharmony_ci	FN_DU0_DR4, FN_CTS0_C, FN_TIOC0A_A, FN_HIFD04,
2058c2ecf20Sopenharmony_ci	FN_DU0_DR5, FN_RTS0_C, FN_TIOC0B_A, FN_HIFD05,
2068c2ecf20Sopenharmony_ci	FN_DU0_DR6, FN_SCK1_C, FN_TIOC0C_A, FN_HIFD06,
2078c2ecf20Sopenharmony_ci	FN_DU0_DR7, FN_RX1_C, FN_TIOC0D_A, FN_HIFD07,
2088c2ecf20Sopenharmony_ci	FN_DU0_DG0, FN_TX1_C, FN_HSCK0_D, FN_IECLK_A, FN_TIOC1A_A, FN_HIFD08,
2098c2ecf20Sopenharmony_ci	FN_DU0_DG1, FN_CTS1_C, FN_HRTS0_D, FN_TIOC1B_A, FN_HIFD09,
2108c2ecf20Sopenharmony_ci
2118c2ecf20Sopenharmony_ci	/* IPSR7 */
2128c2ecf20Sopenharmony_ci	FN_DU0_DG2, FN_RTS1_C, FN_RMII0_MDC_B, FN_TIOC2A_A, FN_HIFD10,
2138c2ecf20Sopenharmony_ci	FN_DU0_DG3, FN_SCK2_C, FN_RMII0_MDIO_B, FN_TIOC2B_A, FN_HIFD11,
2148c2ecf20Sopenharmony_ci	FN_DU0_DG4, FN_RX2_C, FN_RMII0_CRS_DV_B, FN_TIOC3A_A, FN_HIFD12,
2158c2ecf20Sopenharmony_ci	FN_DU0_DG5, FN_TX2_C, FN_RMII0_RX_ER_B, FN_TIOC3B_A, FN_HIFD13,
2168c2ecf20Sopenharmony_ci	FN_DU0_DG6, FN_RX3_C, FN_RMII0_RXD0_B, FN_TIOC3C_A, FN_HIFD14,
2178c2ecf20Sopenharmony_ci	FN_DU0_DG7, FN_TX3_C, FN_RMII0_RXD1_B, FN_TIOC3D_A, FN_HIFD15,
2188c2ecf20Sopenharmony_ci	FN_DU0_DB0, FN_RX4_C, FN_RMII0_TXD_EN_B, FN_TIOC4A_A, FN_HIFCS,
2198c2ecf20Sopenharmony_ci	FN_DU0_DB1, FN_TX4_C, FN_RMII0_TXD0_B, FN_TIOC4B_A, FN_HIFRS,
2208c2ecf20Sopenharmony_ci	FN_DU0_DB2, FN_RX5_B, FN_RMII0_TXD1_B, FN_TIOC4C_A, FN_HIFWR,
2218c2ecf20Sopenharmony_ci	FN_DU0_DB3, FN_TX5_B, FN_TIOC4D_A, FN_HIFRD,
2228c2ecf20Sopenharmony_ci	FN_DU0_DB4, FN_HIFINT,
2238c2ecf20Sopenharmony_ci
2248c2ecf20Sopenharmony_ci	/* IPSR8 */
2258c2ecf20Sopenharmony_ci	FN_DU0_DB5, FN_HIFDREQ,
2268c2ecf20Sopenharmony_ci	FN_DU0_DB6, FN_HIFRDY,
2278c2ecf20Sopenharmony_ci	FN_DU0_DB7, FN_SSI_SCK0_B, FN_HIFEBL_B,
2288c2ecf20Sopenharmony_ci	FN_DU0_DOTCLKIN, FN_HSPI_CS0_C, FN_SSI_WS0_B,
2298c2ecf20Sopenharmony_ci	FN_DU0_DOTCLKOUT, FN_HSPI_CLK0_C, FN_SSI_SDATA0_B,
2308c2ecf20Sopenharmony_ci	FN_DU0_EXHSYNC_DU0_HSYNC, FN_HSPI_TX0_C, FN_SSI_SCK1_B,
2318c2ecf20Sopenharmony_ci	FN_DU0_EXVSYNC_DU0_VSYNC, FN_HSPI_RX0_C, FN_SSI_WS1_B,
2328c2ecf20Sopenharmony_ci	FN_DU0_EXODDF_DU0_ODDF, FN_CAN0_RX_B, FN_HSCK0_B, FN_SSI_SDATA1_B,
2338c2ecf20Sopenharmony_ci	FN_DU0_DISP, FN_CAN0_TX_B, FN_HRX0_B, FN_AUDIO_CLKA_B,
2348c2ecf20Sopenharmony_ci	FN_DU0_CDE, FN_HTX0_B, FN_AUDIO_CLKB_B, FN_LCD_VCPWC_B,
2358c2ecf20Sopenharmony_ci	FN_IRQ0_A, FN_HSPI_TX_B, FN_RX3_E, FN_ET0_ERXD0,
2368c2ecf20Sopenharmony_ci	FN_IRQ1_A, FN_HSPI_RX_B, FN_TX3_E, FN_ET0_ERXD1,
2378c2ecf20Sopenharmony_ci	FN_IRQ2_A, FN_CTS0_A, FN_HCTS0_B, FN_ET0_ERXD2_A,
2388c2ecf20Sopenharmony_ci	FN_IRQ3_A, FN_RTS0_A, FN_HRTS0_B, FN_ET0_ERXD3_A,
2398c2ecf20Sopenharmony_ci
2408c2ecf20Sopenharmony_ci	/* IPSR9 */
2418c2ecf20Sopenharmony_ci	FN_VI1_CLK_A, FN_FD0_B, FN_LCD_DATA0_B,
2428c2ecf20Sopenharmony_ci	FN_VI1_0_A, FN_FD1_B, FN_LCD_DATA1_B,
2438c2ecf20Sopenharmony_ci	FN_VI1_1_A, FN_FD2_B, FN_LCD_DATA2_B,
2448c2ecf20Sopenharmony_ci	FN_VI1_2_A, FN_FD3_B, FN_LCD_DATA3_B,
2458c2ecf20Sopenharmony_ci	FN_VI1_3_A, FN_FD4_B, FN_LCD_DATA4_B,
2468c2ecf20Sopenharmony_ci	FN_VI1_4_A, FN_FD5_B, FN_LCD_DATA5_B,
2478c2ecf20Sopenharmony_ci	FN_VI1_5_A, FN_FD6_B, FN_LCD_DATA6_B,
2488c2ecf20Sopenharmony_ci	FN_VI1_6_A, FN_FD7_B, FN_LCD_DATA7_B,
2498c2ecf20Sopenharmony_ci	FN_VI1_7_A, FN_FCE_B, FN_LCD_DATA8_B,
2508c2ecf20Sopenharmony_ci	FN_SSI_SCK0_A, FN_TIOC1A_B, FN_LCD_DATA9_B,
2518c2ecf20Sopenharmony_ci	FN_SSI_WS0_A, FN_TIOC1B_B, FN_LCD_DATA10_B,
2528c2ecf20Sopenharmony_ci	FN_SSI_SDATA0_A, FN_VI1_0_B, FN_TIOC2A_B, FN_LCD_DATA11_B,
2538c2ecf20Sopenharmony_ci	FN_SSI_SCK1_A, FN_VI1_1_B, FN_TIOC2B_B, FN_LCD_DATA12_B,
2548c2ecf20Sopenharmony_ci	FN_SSI_WS1_A, FN_VI1_2_B, FN_LCD_DATA13_B,
2558c2ecf20Sopenharmony_ci	FN_SSI_SDATA1_A, FN_VI1_3_B, FN_LCD_DATA14_B,
2568c2ecf20Sopenharmony_ci
2578c2ecf20Sopenharmony_ci	/* IPSR10 */
2588c2ecf20Sopenharmony_ci	FN_SSI_SCK23, FN_VI1_4_B, FN_RX1_D, FN_FCLE_B, FN_LCD_DATA15_B,
2598c2ecf20Sopenharmony_ci	FN_SSI_WS23, FN_VI1_5_B, FN_TX1_D, FN_HSCK0_C, FN_FALE_B, FN_LCD_DON_B,
2608c2ecf20Sopenharmony_ci	FN_SSI_SDATA2, FN_VI1_6_B, FN_HRX0_C, FN_FRE_B, FN_LCD_CL1_B,
2618c2ecf20Sopenharmony_ci	FN_SSI_SDATA3, FN_VI1_7_B, FN_HTX0_C, FN_FWE_B, FN_LCD_CL2_B,
2628c2ecf20Sopenharmony_ci	FN_AUDIO_CLKA_A, FN_VI1_CLK_B, FN_SCK1_D, FN_IECLK_B, FN_LCD_FLM_B,
2638c2ecf20Sopenharmony_ci	FN_AUDIO_CLKB_A, FN_LCD_CLK_B,
2648c2ecf20Sopenharmony_ci	FN_AUDIO_CLKC, FN_SCK1_E, FN_HCTS0_C, FN_FRB_B, FN_LCD_VEPWC_B,
2658c2ecf20Sopenharmony_ci	FN_AUDIO_CLKOUT, FN_TX1_E, FN_HRTS0_C, FN_FSE_B, FN_LCD_M_DISP_B,
2668c2ecf20Sopenharmony_ci	FN_CAN_CLK_A, FN_RX4_D,
2678c2ecf20Sopenharmony_ci	FN_CAN0_TX_A, FN_TX4_D, FN_MLB_CLK,
2688c2ecf20Sopenharmony_ci	FN_CAN1_RX_A, FN_IRQ1_B,
2698c2ecf20Sopenharmony_ci	FN_CAN0_RX_A, FN_IRQ0_B, FN_MLB_SIG,
2708c2ecf20Sopenharmony_ci	FN_CAN1_TX_A, FN_TX5_C, FN_MLB_DAT,
2718c2ecf20Sopenharmony_ci
2728c2ecf20Sopenharmony_ci	/* IPSR11 */
2738c2ecf20Sopenharmony_ci	FN_SCL1, FN_SCIF_CLK_C,
2748c2ecf20Sopenharmony_ci	FN_SDA1, FN_RX1_E,
2758c2ecf20Sopenharmony_ci	FN_SDA0, FN_HIFEBL_A,
2768c2ecf20Sopenharmony_ci	FN_SDSELF, FN_RTS1_E,
2778c2ecf20Sopenharmony_ci	FN_SCIF_CLK_A, FN_HSPI_CLK_A, FN_VI0_CLK, FN_RMII0_TXD0_A, FN_ET0_ERXD4,
2788c2ecf20Sopenharmony_ci	FN_SCK0_A, FN_HSPI_CS_A, FN_VI0_CLKENB, FN_RMII0_TXD1_A, FN_ET0_ERXD5,
2798c2ecf20Sopenharmony_ci	FN_RX0_A, FN_HSPI_RX_A, FN_RMII0_RXD0_A, FN_ET0_ERXD6,
2808c2ecf20Sopenharmony_ci	FN_TX0_A, FN_HSPI_TX_A,
2818c2ecf20Sopenharmony_ci	FN_PENC1, FN_TX3_D, FN_CAN1_TX_B, FN_TX5_D, FN_IETX_B,
2828c2ecf20Sopenharmony_ci	FN_USB_OVC1, FN_RX3_D, FN_CAN1_RX_B, FN_RX5_D, FN_IERX_B,
2838c2ecf20Sopenharmony_ci	FN_DREQ0, FN_SD1_CLK_A, FN_ET0_TX_EN,
2848c2ecf20Sopenharmony_ci	FN_DACK0, FN_SD1_DAT3_A, FN_ET0_TX_ER,
2858c2ecf20Sopenharmony_ci	FN_DREQ1, FN_HSPI_CLK_B, FN_RX4_B, FN_ET0_PHY_INT_C, FN_ET0_TX_CLK_A,
2868c2ecf20Sopenharmony_ci	FN_DACK1, FN_HSPI_CS_B, FN_TX4_B, FN_ET0_RX_CLK_A,
2878c2ecf20Sopenharmony_ci	FN_PRESETOUT, FN_ST_CLKOUT,
2888c2ecf20Sopenharmony_ci
2898c2ecf20Sopenharmony_ci	/* MOD_SEL1 */
2908c2ecf20Sopenharmony_ci	FN_SEL_IEBUS_0, FN_SEL_IEBUS_1,
2918c2ecf20Sopenharmony_ci	FN_SEL_RQSPI_0, FN_SEL_RQSPI_1,
2928c2ecf20Sopenharmony_ci	FN_SEL_VIN1_0, FN_SEL_VIN1_1,
2938c2ecf20Sopenharmony_ci	FN_SEL_HIF_0, FN_SEL_HIF_1,
2948c2ecf20Sopenharmony_ci	FN_SEL_RSPI_0, FN_SEL_RSPI_1,
2958c2ecf20Sopenharmony_ci	FN_SEL_LCDC_0, FN_SEL_LCDC_1,
2968c2ecf20Sopenharmony_ci	FN_SEL_ET0_CTL_0, FN_SEL_ET0_CTL_1, FN_SEL_ET0_CTL_2,
2978c2ecf20Sopenharmony_ci	FN_SEL_ET0_0, FN_SEL_ET0_1,
2988c2ecf20Sopenharmony_ci	FN_SEL_RMII_0, FN_SEL_RMII_1,
2998c2ecf20Sopenharmony_ci	FN_SEL_TMU_0, FN_SEL_TMU_1,
3008c2ecf20Sopenharmony_ci	FN_SEL_HSPI_0, FN_SEL_HSPI_1, FN_SEL_HSPI_2,
3018c2ecf20Sopenharmony_ci	FN_SEL_HSCIF_0, FN_SEL_HSCIF_1, FN_SEL_HSCIF_2, FN_SEL_HSCIF_3,
3028c2ecf20Sopenharmony_ci	FN_SEL_RCAN_CLK_0, FN_SEL_RCAN_CLK_1,
3038c2ecf20Sopenharmony_ci	FN_SEL_RCAN1_0, FN_SEL_RCAN1_1, FN_SEL_RCAN1_2,
3048c2ecf20Sopenharmony_ci	FN_SEL_RCAN0_0, FN_SEL_RCAN0_1,
3058c2ecf20Sopenharmony_ci	FN_SEL_SDHI2_0, FN_SEL_SDHI2_1,
3068c2ecf20Sopenharmony_ci	FN_SEL_SDHI1_0, FN_SEL_SDHI1_1,
3078c2ecf20Sopenharmony_ci	FN_SEL_SDHI0_0, FN_SEL_SDHI0_1,
3088c2ecf20Sopenharmony_ci	FN_SEL_SSI1_0, FN_SEL_SSI1_1,
3098c2ecf20Sopenharmony_ci	FN_SEL_SSI0_0, FN_SEL_SSI0_1,
3108c2ecf20Sopenharmony_ci	FN_SEL_AUDIO_CLKB_0, FN_SEL_AUDIO_CLKB_1,
3118c2ecf20Sopenharmony_ci	FN_SEL_AUDIO_CLKA_0, FN_SEL_AUDIO_CLKA_1,
3128c2ecf20Sopenharmony_ci	FN_SEL_FLCTL_0, FN_SEL_FLCTL_1,
3138c2ecf20Sopenharmony_ci	FN_SEL_MMC_0, FN_SEL_MMC_1,
3148c2ecf20Sopenharmony_ci	FN_SEL_INTC_0, FN_SEL_INTC_1,
3158c2ecf20Sopenharmony_ci
3168c2ecf20Sopenharmony_ci	/* MOD_SEL2 */
3178c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CLK_0, FN_SEL_MTU2_CLK_1,
3188c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CH4_0, FN_SEL_MTU2_CH4_1,
3198c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CH3_0, FN_SEL_MTU2_CH3_1,
3208c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CH2_0, FN_SEL_MTU2_CH2_1, FN_SEL_MTU2_CH2_2,
3218c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CH1_0, FN_SEL_MTU2_CH1_1, FN_SEL_MTU2_CH1_2,
3228c2ecf20Sopenharmony_ci	FN_SEL_MTU2_CH0_0, FN_SEL_MTU2_CH0_1,
3238c2ecf20Sopenharmony_ci	FN_SEL_SCIF5_0, FN_SEL_SCIF5_1,
3248c2ecf20Sopenharmony_ci	FN_SEL_SCIF5_2, FN_SEL_SCIF5_3,
3258c2ecf20Sopenharmony_ci	FN_SEL_SCIF4_0, FN_SEL_SCIF4_1,
3268c2ecf20Sopenharmony_ci	FN_SEL_SCIF4_2, FN_SEL_SCIF4_3,
3278c2ecf20Sopenharmony_ci	FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, FN_SEL_SCIF3_2,
3288c2ecf20Sopenharmony_ci		FN_SEL_SCIF3_3, FN_SEL_SCIF3_4,
3298c2ecf20Sopenharmony_ci	FN_SEL_SCIF2_0, FN_SEL_SCIF2_1, FN_SEL_SCIF2_2,
3308c2ecf20Sopenharmony_ci		FN_SEL_SCIF2_3,
3318c2ecf20Sopenharmony_ci	FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2,
3328c2ecf20Sopenharmony_ci		FN_SEL_SCIF1_3, FN_SEL_SCIF1_4,
3338c2ecf20Sopenharmony_ci	FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2,
3348c2ecf20Sopenharmony_ci	FN_SEL_SCIF_CLK_0, FN_SEL_SCIF_CLK_1, FN_SEL_SCIF_CLK_2,
3358c2ecf20Sopenharmony_ci
3368c2ecf20Sopenharmony_ci	PINMUX_FUNCTION_END,
3378c2ecf20Sopenharmony_ci
3388c2ecf20Sopenharmony_ci	PINMUX_MARK_BEGIN,
3398c2ecf20Sopenharmony_ci
3408c2ecf20Sopenharmony_ci	CLKOUT_MARK, BS_MARK, CS0_MARK, EX_CS0_MARK, RD_MARK,
3418c2ecf20Sopenharmony_ci	WE0_MARK, WE1_MARK,
3428c2ecf20Sopenharmony_ci
3438c2ecf20Sopenharmony_ci	SCL0_MARK, PENC0_MARK, USB_OVC0_MARK,
3448c2ecf20Sopenharmony_ci
3458c2ecf20Sopenharmony_ci	IRQ2_B_MARK, IRQ3_B_MARK,
3468c2ecf20Sopenharmony_ci
3478c2ecf20Sopenharmony_ci	/* IPSR0 */
3488c2ecf20Sopenharmony_ci	A15_MARK, ST0_VCO_CLKIN_MARK, LCD_DATA15_A_MARK, TIOC3D_C_MARK,
3498c2ecf20Sopenharmony_ci	A14_MARK, LCD_DATA14_A_MARK, TIOC3C_C_MARK,
3508c2ecf20Sopenharmony_ci	A13_MARK, LCD_DATA13_A_MARK, TIOC3B_C_MARK,
3518c2ecf20Sopenharmony_ci	A12_MARK, LCD_DATA12_A_MARK, TIOC3A_C_MARK,
3528c2ecf20Sopenharmony_ci	A11_MARK, ST0_D7_MARK, LCD_DATA11_A_MARK, TIOC2B_C_MARK,
3538c2ecf20Sopenharmony_ci	A10_MARK, ST0_D6_MARK, LCD_DATA10_A_MARK, TIOC2A_C_MARK,
3548c2ecf20Sopenharmony_ci	A9_MARK, ST0_D5_MARK, LCD_DATA9_A_MARK, TIOC1B_C_MARK,
3558c2ecf20Sopenharmony_ci	A8_MARK, ST0_D4_MARK, LCD_DATA8_A_MARK, TIOC1A_C_MARK,
3568c2ecf20Sopenharmony_ci	A7_MARK, ST0_D3_MARK, LCD_DATA7_A_MARK, TIOC0D_C_MARK,
3578c2ecf20Sopenharmony_ci	A6_MARK, ST0_D2_MARK, LCD_DATA6_A_MARK, TIOC0C_C_MARK,
3588c2ecf20Sopenharmony_ci	A5_MARK, ST0_D1_MARK, LCD_DATA5_A_MARK, TIOC0B_C_MARK,
3598c2ecf20Sopenharmony_ci	A4_MARK, ST0_D0_MARK, LCD_DATA4_A_MARK, TIOC0A_C_MARK,
3608c2ecf20Sopenharmony_ci	A3_MARK, ST0_VLD_MARK, LCD_DATA3_A_MARK, TCLKD_C_MARK,
3618c2ecf20Sopenharmony_ci	A2_MARK, ST0_SYC_MARK, LCD_DATA2_A_MARK, TCLKC_C_MARK,
3628c2ecf20Sopenharmony_ci	A1_MARK, ST0_REQ_MARK, LCD_DATA1_A_MARK, TCLKB_C_MARK,
3638c2ecf20Sopenharmony_ci	A0_MARK, ST0_CLKIN_MARK, LCD_DATA0_A_MARK, TCLKA_C_MARK,
3648c2ecf20Sopenharmony_ci
3658c2ecf20Sopenharmony_ci	/* IPSR1 */
3668c2ecf20Sopenharmony_ci	D3_MARK, SD0_DAT3_A_MARK, MMC_D3_A_MARK, ST1_D6_MARK, FD3_A_MARK,
3678c2ecf20Sopenharmony_ci	D2_MARK, SD0_DAT2_A_MARK, MMC_D2_A_MARK, ST1_D5_MARK, FD2_A_MARK,
3688c2ecf20Sopenharmony_ci	D1_MARK, SD0_DAT1_A_MARK, MMC_D1_A_MARK, ST1_D4_MARK, FD1_A_MARK,
3698c2ecf20Sopenharmony_ci	D0_MARK, SD0_DAT0_A_MARK, MMC_D0_A_MARK, ST1_D3_MARK, FD0_A_MARK,
3708c2ecf20Sopenharmony_ci	A25_MARK, TX2_D_MARK, ST1_D2_MARK,
3718c2ecf20Sopenharmony_ci	A24_MARK, RX2_D_MARK, ST1_D1_MARK,
3728c2ecf20Sopenharmony_ci	A23_MARK, ST1_D0_MARK, LCD_M_DISP_A_MARK,
3738c2ecf20Sopenharmony_ci	A22_MARK, ST1_VLD_MARK, LCD_VEPWC_A_MARK,
3748c2ecf20Sopenharmony_ci	A21_MARK, ST1_SYC_MARK, LCD_VCPWC_A_MARK,
3758c2ecf20Sopenharmony_ci	A20_MARK, ST1_REQ_MARK, LCD_FLM_A_MARK,
3768c2ecf20Sopenharmony_ci	A19_MARK, ST1_CLKIN_MARK, LCD_CLK_A_MARK,	TIOC4D_C_MARK,
3778c2ecf20Sopenharmony_ci	A18_MARK, ST1_PWM_MARK, LCD_CL2_A_MARK, TIOC4C_C_MARK,
3788c2ecf20Sopenharmony_ci	A17_MARK, ST1_VCO_CLKIN_MARK, LCD_CL1_A_MARK, TIOC4B_C_MARK,
3798c2ecf20Sopenharmony_ci	A16_MARK, ST0_PWM_MARK, LCD_DON_A_MARK, TIOC4A_C_MARK,
3808c2ecf20Sopenharmony_ci
3818c2ecf20Sopenharmony_ci	/* IPSR2 */
3828c2ecf20Sopenharmony_ci	D14_MARK, TX2_B_MARK, FSE_A_MARK, ET0_TX_CLK_B_MARK,
3838c2ecf20Sopenharmony_ci	D13_MARK, RX2_B_MARK, FRB_A_MARK, ET0_ETXD6_B_MARK,
3848c2ecf20Sopenharmony_ci	D12_MARK, FWE_A_MARK, ET0_ETXD5_B_MARK,
3858c2ecf20Sopenharmony_ci	D11_MARK, RSPI_MISO_A_MARK, QMI_QIO1_A_MARK, FRE_A_MARK,
3868c2ecf20Sopenharmony_ci		ET0_ETXD3_B_MARK,
3878c2ecf20Sopenharmony_ci	D10_MARK, RSPI_MOSI_A_MARK, QMO_QIO0_A_MARK, FALE_A_MARK,
3888c2ecf20Sopenharmony_ci		ET0_ETXD2_B_MARK,
3898c2ecf20Sopenharmony_ci	D9_MARK, SD0_CMD_A_MARK, MMC_CMD_A_MARK, QIO3_A_MARK,
3908c2ecf20Sopenharmony_ci		FCLE_A_MARK, ET0_ETXD1_B_MARK,
3918c2ecf20Sopenharmony_ci	D8_MARK, SD0_CLK_A_MARK, MMC_CLK_A_MARK, QIO2_A_MARK,
3928c2ecf20Sopenharmony_ci		FCE_A_MARK, ET0_GTX_CLK_B_MARK,
3938c2ecf20Sopenharmony_ci	D7_MARK, RSPI_SSL_A_MARK, MMC_D7_A_MARK, QSSL_A_MARK,
3948c2ecf20Sopenharmony_ci		FD7_A_MARK,
3958c2ecf20Sopenharmony_ci	D6_MARK, RSPI_RSPCK_A_MARK, MMC_D6_A_MARK, QSPCLK_A_MARK,
3968c2ecf20Sopenharmony_ci		FD6_A_MARK,
3978c2ecf20Sopenharmony_ci	D5_MARK, SD0_WP_A_MARK, MMC_D5_A_MARK, FD5_A_MARK,
3988c2ecf20Sopenharmony_ci	D4_MARK, SD0_CD_A_MARK, MMC_D4_A_MARK, ST1_D7_MARK,
3998c2ecf20Sopenharmony_ci		FD4_A_MARK,
4008c2ecf20Sopenharmony_ci
4018c2ecf20Sopenharmony_ci	/* IPSR3 */
4028c2ecf20Sopenharmony_ci	DRACK0_MARK, SD1_DAT2_A_MARK, ATAG_MARK, TCLK1_A_MARK, ET0_ETXD7_MARK,
4038c2ecf20Sopenharmony_ci	EX_WAIT2_MARK, SD1_DAT1_A_MARK, DACK2_MARK, CAN1_RX_C_MARK,
4048c2ecf20Sopenharmony_ci		ET0_MAGIC_C_MARK, ET0_ETXD6_A_MARK,
4058c2ecf20Sopenharmony_ci	EX_WAIT1_MARK, SD1_DAT0_A_MARK, DREQ2_MARK, CAN1_TX_C_MARK,
4068c2ecf20Sopenharmony_ci		ET0_LINK_C_MARK, ET0_ETXD5_A_MARK,
4078c2ecf20Sopenharmony_ci	EX_WAIT0_MARK, TCLK1_B_MARK,
4088c2ecf20Sopenharmony_ci	RD_WR_MARK, TCLK0_MARK, CAN_CLK_B_MARK, ET0_ETXD4_MARK,
4098c2ecf20Sopenharmony_ci	EX_CS5_MARK, SD1_CMD_A_MARK, ATADIR_MARK, QSSL_B_MARK,
4108c2ecf20Sopenharmony_ci		ET0_ETXD3_A_MARK,
4118c2ecf20Sopenharmony_ci	EX_CS4_MARK, SD1_WP_A_MARK, ATAWR_MARK, QMI_QIO1_B_MARK,
4128c2ecf20Sopenharmony_ci		ET0_ETXD2_A_MARK,
4138c2ecf20Sopenharmony_ci	EX_CS3_MARK, SD1_CD_A_MARK, ATARD_MARK, QMO_QIO0_B_MARK,
4148c2ecf20Sopenharmony_ci		ET0_ETXD1_A_MARK,
4158c2ecf20Sopenharmony_ci	EX_CS2_MARK, TX3_B_MARK, ATACS1_MARK, QSPCLK_B_MARK,
4168c2ecf20Sopenharmony_ci		ET0_GTX_CLK_A_MARK,
4178c2ecf20Sopenharmony_ci	EX_CS1_MARK, RX3_B_MARK, ATACS0_MARK, QIO2_B_MARK,
4188c2ecf20Sopenharmony_ci		ET0_ETXD0_MARK,
4198c2ecf20Sopenharmony_ci	CS1_A26_MARK, QIO3_B_MARK,
4208c2ecf20Sopenharmony_ci	D15_MARK, SCK2_B_MARK,
4218c2ecf20Sopenharmony_ci
4228c2ecf20Sopenharmony_ci	/* IPSR4 */
4238c2ecf20Sopenharmony_ci	SCK2_A_MARK, VI0_G3_MARK,
4248c2ecf20Sopenharmony_ci	RTS1_B_MARK, VI0_G2_MARK,
4258c2ecf20Sopenharmony_ci	CTS1_B_MARK, VI0_DATA7_VI0_G1_MARK,
4268c2ecf20Sopenharmony_ci	TX1_B_MARK, VI0_DATA6_VI0_G0_MARK, ET0_PHY_INT_A_MARK,
4278c2ecf20Sopenharmony_ci	RX1_B_MARK, VI0_DATA5_VI0_B5_MARK, ET0_MAGIC_A_MARK,
4288c2ecf20Sopenharmony_ci	SCK1_B_MARK, VI0_DATA4_VI0_B4_MARK, ET0_LINK_A_MARK,
4298c2ecf20Sopenharmony_ci	RTS0_B_MARK, VI0_DATA3_VI0_B3_MARK, ET0_MDIO_A_MARK,
4308c2ecf20Sopenharmony_ci	CTS0_B_MARK, VI0_DATA2_VI0_B2_MARK, RMII0_MDIO_A_MARK,
4318c2ecf20Sopenharmony_ci		ET0_MDC_MARK,
4328c2ecf20Sopenharmony_ci	HTX0_A_MARK, TX1_A_MARK, VI0_DATA1_VI0_B1_MARK,
4338c2ecf20Sopenharmony_ci		RMII0_MDC_A_MARK, ET0_COL_MARK,
4348c2ecf20Sopenharmony_ci	HRX0_A_MARK, RX1_A_MARK, VI0_DATA0_VI0_B0_MARK,
4358c2ecf20Sopenharmony_ci		RMII0_CRS_DV_A_MARK, ET0_CRS_MARK,
4368c2ecf20Sopenharmony_ci	HSCK0_A_MARK, SCK1_A_MARK, VI0_VSYNC_MARK,
4378c2ecf20Sopenharmony_ci		RMII0_RX_ER_A_MARK, ET0_RX_ER_MARK,
4388c2ecf20Sopenharmony_ci	HRTS0_A_MARK, RTS1_A_MARK, VI0_HSYNC_MARK,
4398c2ecf20Sopenharmony_ci		RMII0_TXD_EN_A_MARK, ET0_RX_DV_MARK,
4408c2ecf20Sopenharmony_ci	HCTS0_A_MARK, CTS1_A_MARK, VI0_FIELD_MARK,
4418c2ecf20Sopenharmony_ci		RMII0_RXD1_A_MARK, ET0_ERXD7_MARK,
4428c2ecf20Sopenharmony_ci
4438c2ecf20Sopenharmony_ci	/* IPSR5 */
4448c2ecf20Sopenharmony_ci	SD2_CLK_A_MARK, RX2_A_MARK, VI0_G4_MARK, ET0_RX_CLK_B_MARK,
4458c2ecf20Sopenharmony_ci	SD2_CMD_A_MARK, TX2_A_MARK, VI0_G5_MARK, ET0_ERXD2_B_MARK,
4468c2ecf20Sopenharmony_ci	SD2_DAT0_A_MARK, RX3_A_MARK, VI0_R0_MARK, ET0_ERXD3_B_MARK,
4478c2ecf20Sopenharmony_ci	SD2_DAT1_A_MARK, TX3_A_MARK, VI0_R1_MARK, ET0_MDIO_B_MARK,
4488c2ecf20Sopenharmony_ci	SD2_DAT2_A_MARK, RX4_A_MARK, VI0_R2_MARK, ET0_LINK_B_MARK,
4498c2ecf20Sopenharmony_ci	SD2_DAT3_A_MARK, TX4_A_MARK, VI0_R3_MARK, ET0_MAGIC_B_MARK,
4508c2ecf20Sopenharmony_ci	SD2_CD_A_MARK, RX5_A_MARK, VI0_R4_MARK, ET0_PHY_INT_B_MARK,
4518c2ecf20Sopenharmony_ci	SD2_WP_A_MARK, TX5_A_MARK, VI0_R5_MARK,
4528c2ecf20Sopenharmony_ci	REF125CK_MARK, ADTRG_MARK, RX5_C_MARK,
4538c2ecf20Sopenharmony_ci	REF50CK_MARK, CTS1_E_MARK, HCTS0_D_MARK,
4548c2ecf20Sopenharmony_ci
4558c2ecf20Sopenharmony_ci	/* IPSR6 */
4568c2ecf20Sopenharmony_ci	DU0_DR0_MARK, SCIF_CLK_B_MARK, HRX0_D_MARK, IETX_A_MARK,
4578c2ecf20Sopenharmony_ci		TCLKA_A_MARK, HIFD00_MARK,
4588c2ecf20Sopenharmony_ci	DU0_DR1_MARK, SCK0_B_MARK, HTX0_D_MARK, IERX_A_MARK,
4598c2ecf20Sopenharmony_ci		TCLKB_A_MARK, HIFD01_MARK,
4608c2ecf20Sopenharmony_ci	DU0_DR2_MARK, RX0_B_MARK, TCLKC_A_MARK, HIFD02_MARK,
4618c2ecf20Sopenharmony_ci	DU0_DR3_MARK, TX0_B_MARK, TCLKD_A_MARK, HIFD03_MARK,
4628c2ecf20Sopenharmony_ci	DU0_DR4_MARK, CTS0_C_MARK, TIOC0A_A_MARK, HIFD04_MARK,
4638c2ecf20Sopenharmony_ci	DU0_DR5_MARK, RTS0_C_MARK, TIOC0B_A_MARK, HIFD05_MARK,
4648c2ecf20Sopenharmony_ci	DU0_DR6_MARK, SCK1_C_MARK, TIOC0C_A_MARK, HIFD06_MARK,
4658c2ecf20Sopenharmony_ci	DU0_DR7_MARK, RX1_C_MARK, TIOC0D_A_MARK, HIFD07_MARK,
4668c2ecf20Sopenharmony_ci	DU0_DG0_MARK, TX1_C_MARK, HSCK0_D_MARK, IECLK_A_MARK,
4678c2ecf20Sopenharmony_ci		TIOC1A_A_MARK, HIFD08_MARK,
4688c2ecf20Sopenharmony_ci	DU0_DG1_MARK, CTS1_C_MARK, HRTS0_D_MARK, TIOC1B_A_MARK,
4698c2ecf20Sopenharmony_ci		HIFD09_MARK,
4708c2ecf20Sopenharmony_ci
4718c2ecf20Sopenharmony_ci	/* IPSR7 */
4728c2ecf20Sopenharmony_ci	DU0_DG2_MARK, RTS1_C_MARK, RMII0_MDC_B_MARK, TIOC2A_A_MARK,
4738c2ecf20Sopenharmony_ci		HIFD10_MARK,
4748c2ecf20Sopenharmony_ci	DU0_DG3_MARK, SCK2_C_MARK, RMII0_MDIO_B_MARK, TIOC2B_A_MARK,
4758c2ecf20Sopenharmony_ci		HIFD11_MARK,
4768c2ecf20Sopenharmony_ci	DU0_DG4_MARK, RX2_C_MARK, RMII0_CRS_DV_B_MARK, TIOC3A_A_MARK,
4778c2ecf20Sopenharmony_ci		HIFD12_MARK,
4788c2ecf20Sopenharmony_ci	DU0_DG5_MARK, TX2_C_MARK, RMII0_RX_ER_B_MARK, TIOC3B_A_MARK,
4798c2ecf20Sopenharmony_ci		HIFD13_MARK,
4808c2ecf20Sopenharmony_ci	DU0_DG6_MARK, RX3_C_MARK, RMII0_RXD0_B_MARK, TIOC3C_A_MARK,
4818c2ecf20Sopenharmony_ci		HIFD14_MARK,
4828c2ecf20Sopenharmony_ci	DU0_DG7_MARK, TX3_C_MARK, RMII0_RXD1_B_MARK, TIOC3D_A_MARK,
4838c2ecf20Sopenharmony_ci		HIFD15_MARK,
4848c2ecf20Sopenharmony_ci	DU0_DB0_MARK, RX4_C_MARK, RMII0_TXD_EN_B_MARK, TIOC4A_A_MARK,
4858c2ecf20Sopenharmony_ci		HIFCS_MARK,
4868c2ecf20Sopenharmony_ci	DU0_DB1_MARK, TX4_C_MARK, RMII0_TXD0_B_MARK, TIOC4B_A_MARK,
4878c2ecf20Sopenharmony_ci		HIFRS_MARK,
4888c2ecf20Sopenharmony_ci	DU0_DB2_MARK, RX5_B_MARK, RMII0_TXD1_B_MARK, TIOC4C_A_MARK,
4898c2ecf20Sopenharmony_ci		HIFWR_MARK,
4908c2ecf20Sopenharmony_ci	DU0_DB3_MARK, TX5_B_MARK, TIOC4D_A_MARK, HIFRD_MARK,
4918c2ecf20Sopenharmony_ci	DU0_DB4_MARK, HIFINT_MARK,
4928c2ecf20Sopenharmony_ci
4938c2ecf20Sopenharmony_ci	/* IPSR8 */
4948c2ecf20Sopenharmony_ci	DU0_DB5_MARK, HIFDREQ_MARK,
4958c2ecf20Sopenharmony_ci	DU0_DB6_MARK, HIFRDY_MARK,
4968c2ecf20Sopenharmony_ci	DU0_DB7_MARK, SSI_SCK0_B_MARK, HIFEBL_B_MARK,
4978c2ecf20Sopenharmony_ci	DU0_DOTCLKIN_MARK, HSPI_CS0_C_MARK, SSI_WS0_B_MARK,
4988c2ecf20Sopenharmony_ci	DU0_DOTCLKOUT_MARK, HSPI_CLK0_C_MARK, SSI_SDATA0_B_MARK,
4998c2ecf20Sopenharmony_ci	DU0_EXHSYNC_DU0_HSYNC_MARK, HSPI_TX0_C_MARK, SSI_SCK1_B_MARK,
5008c2ecf20Sopenharmony_ci	DU0_EXVSYNC_DU0_VSYNC_MARK, HSPI_RX0_C_MARK, SSI_WS1_B_MARK,
5018c2ecf20Sopenharmony_ci	DU0_EXODDF_DU0_ODDF_MARK, CAN0_RX_B_MARK, HSCK0_B_MARK,
5028c2ecf20Sopenharmony_ci		SSI_SDATA1_B_MARK,
5038c2ecf20Sopenharmony_ci	DU0_DISP_MARK, CAN0_TX_B_MARK, HRX0_B_MARK, AUDIO_CLKA_B_MARK,
5048c2ecf20Sopenharmony_ci	DU0_CDE_MARK, HTX0_B_MARK, AUDIO_CLKB_B_MARK, LCD_VCPWC_B_MARK,
5058c2ecf20Sopenharmony_ci	IRQ0_A_MARK, HSPI_TX_B_MARK, RX3_E_MARK, ET0_ERXD0_MARK,
5068c2ecf20Sopenharmony_ci	IRQ1_A_MARK, HSPI_RX_B_MARK, TX3_E_MARK, ET0_ERXD1_MARK,
5078c2ecf20Sopenharmony_ci	IRQ2_A_MARK, CTS0_A_MARK, HCTS0_B_MARK, ET0_ERXD2_A_MARK,
5088c2ecf20Sopenharmony_ci	IRQ3_A_MARK, RTS0_A_MARK, HRTS0_B_MARK, ET0_ERXD3_A_MARK,
5098c2ecf20Sopenharmony_ci
5108c2ecf20Sopenharmony_ci	/* IPSR9 */
5118c2ecf20Sopenharmony_ci	VI1_CLK_A_MARK, FD0_B_MARK, LCD_DATA0_B_MARK,
5128c2ecf20Sopenharmony_ci	VI1_0_A_MARK, FD1_B_MARK, LCD_DATA1_B_MARK,
5138c2ecf20Sopenharmony_ci	VI1_1_A_MARK, FD2_B_MARK, LCD_DATA2_B_MARK,
5148c2ecf20Sopenharmony_ci	VI1_2_A_MARK, FD3_B_MARK, LCD_DATA3_B_MARK,
5158c2ecf20Sopenharmony_ci	VI1_3_A_MARK, FD4_B_MARK, LCD_DATA4_B_MARK,
5168c2ecf20Sopenharmony_ci	VI1_4_A_MARK, FD5_B_MARK, LCD_DATA5_B_MARK,
5178c2ecf20Sopenharmony_ci	VI1_5_A_MARK, FD6_B_MARK, LCD_DATA6_B_MARK,
5188c2ecf20Sopenharmony_ci	VI1_6_A_MARK, FD7_B_MARK, LCD_DATA7_B_MARK,
5198c2ecf20Sopenharmony_ci	VI1_7_A_MARK, FCE_B_MARK, LCD_DATA8_B_MARK,
5208c2ecf20Sopenharmony_ci	SSI_SCK0_A_MARK, TIOC1A_B_MARK, LCD_DATA9_B_MARK,
5218c2ecf20Sopenharmony_ci	SSI_WS0_A_MARK, TIOC1B_B_MARK, LCD_DATA10_B_MARK,
5228c2ecf20Sopenharmony_ci	SSI_SDATA0_A_MARK, VI1_0_B_MARK, TIOC2A_B_MARK, LCD_DATA11_B_MARK,
5238c2ecf20Sopenharmony_ci	SSI_SCK1_A_MARK, VI1_1_B_MARK, TIOC2B_B_MARK, LCD_DATA12_B_MARK,
5248c2ecf20Sopenharmony_ci	SSI_WS1_A_MARK, VI1_2_B_MARK, LCD_DATA13_B_MARK,
5258c2ecf20Sopenharmony_ci	SSI_SDATA1_A_MARK, VI1_3_B_MARK, LCD_DATA14_B_MARK,
5268c2ecf20Sopenharmony_ci
5278c2ecf20Sopenharmony_ci	/* IPSR10 */
5288c2ecf20Sopenharmony_ci	SSI_SCK23_MARK, VI1_4_B_MARK, RX1_D_MARK, FCLE_B_MARK,
5298c2ecf20Sopenharmony_ci		LCD_DATA15_B_MARK,
5308c2ecf20Sopenharmony_ci	SSI_WS23_MARK, VI1_5_B_MARK, TX1_D_MARK, HSCK0_C_MARK,
5318c2ecf20Sopenharmony_ci		FALE_B_MARK, LCD_DON_B_MARK,
5328c2ecf20Sopenharmony_ci	SSI_SDATA2_MARK, VI1_6_B_MARK, HRX0_C_MARK, FRE_B_MARK,
5338c2ecf20Sopenharmony_ci		LCD_CL1_B_MARK,
5348c2ecf20Sopenharmony_ci	SSI_SDATA3_MARK, VI1_7_B_MARK, HTX0_C_MARK, FWE_B_MARK,
5358c2ecf20Sopenharmony_ci		LCD_CL2_B_MARK,
5368c2ecf20Sopenharmony_ci	AUDIO_CLKA_A_MARK, VI1_CLK_B_MARK, SCK1_D_MARK, IECLK_B_MARK,
5378c2ecf20Sopenharmony_ci		LCD_FLM_B_MARK,
5388c2ecf20Sopenharmony_ci	AUDIO_CLKB_A_MARK, LCD_CLK_B_MARK,
5398c2ecf20Sopenharmony_ci	AUDIO_CLKC_MARK, SCK1_E_MARK, HCTS0_C_MARK, FRB_B_MARK,
5408c2ecf20Sopenharmony_ci		LCD_VEPWC_B_MARK,
5418c2ecf20Sopenharmony_ci	AUDIO_CLKOUT_MARK, TX1_E_MARK, HRTS0_C_MARK, FSE_B_MARK,
5428c2ecf20Sopenharmony_ci		LCD_M_DISP_B_MARK,
5438c2ecf20Sopenharmony_ci	CAN_CLK_A_MARK, RX4_D_MARK,
5448c2ecf20Sopenharmony_ci	CAN0_TX_A_MARK, TX4_D_MARK, MLB_CLK_MARK,
5458c2ecf20Sopenharmony_ci	CAN1_RX_A_MARK, IRQ1_B_MARK,
5468c2ecf20Sopenharmony_ci	CAN0_RX_A_MARK, IRQ0_B_MARK, MLB_SIG_MARK,
5478c2ecf20Sopenharmony_ci	CAN1_TX_A_MARK, TX5_C_MARK, MLB_DAT_MARK,
5488c2ecf20Sopenharmony_ci
5498c2ecf20Sopenharmony_ci	/* IPSR11 */
5508c2ecf20Sopenharmony_ci	SCL1_MARK, SCIF_CLK_C_MARK,
5518c2ecf20Sopenharmony_ci	SDA1_MARK, RX1_E_MARK,
5528c2ecf20Sopenharmony_ci	SDA0_MARK, HIFEBL_A_MARK,
5538c2ecf20Sopenharmony_ci	SDSELF_MARK, RTS1_E_MARK,
5548c2ecf20Sopenharmony_ci	SCIF_CLK_A_MARK, HSPI_CLK_A_MARK, VI0_CLK_MARK, RMII0_TXD0_A_MARK,
5558c2ecf20Sopenharmony_ci		ET0_ERXD4_MARK,
5568c2ecf20Sopenharmony_ci	SCK0_A_MARK, HSPI_CS_A_MARK, VI0_CLKENB_MARK, RMII0_TXD1_A_MARK,
5578c2ecf20Sopenharmony_ci		ET0_ERXD5_MARK,
5588c2ecf20Sopenharmony_ci	RX0_A_MARK, HSPI_RX_A_MARK, RMII0_RXD0_A_MARK, ET0_ERXD6_MARK,
5598c2ecf20Sopenharmony_ci	TX0_A_MARK, HSPI_TX_A_MARK,
5608c2ecf20Sopenharmony_ci	PENC1_MARK, TX3_D_MARK, CAN1_TX_B_MARK, TX5_D_MARK,
5618c2ecf20Sopenharmony_ci		IETX_B_MARK,
5628c2ecf20Sopenharmony_ci	USB_OVC1_MARK, RX3_D_MARK, CAN1_RX_B_MARK, RX5_D_MARK,
5638c2ecf20Sopenharmony_ci		IERX_B_MARK,
5648c2ecf20Sopenharmony_ci	DREQ0_MARK, SD1_CLK_A_MARK, ET0_TX_EN_MARK,
5658c2ecf20Sopenharmony_ci	DACK0_MARK, SD1_DAT3_A_MARK, ET0_TX_ER_MARK,
5668c2ecf20Sopenharmony_ci	DREQ1_MARK, HSPI_CLK_B_MARK, RX4_B_MARK, ET0_PHY_INT_C_MARK,
5678c2ecf20Sopenharmony_ci		ET0_TX_CLK_A_MARK,
5688c2ecf20Sopenharmony_ci	DACK1_MARK, HSPI_CS_B_MARK, TX4_B_MARK, ET0_RX_CLK_A_MARK,
5698c2ecf20Sopenharmony_ci	PRESETOUT_MARK, ST_CLKOUT_MARK,
5708c2ecf20Sopenharmony_ci
5718c2ecf20Sopenharmony_ci	PINMUX_MARK_END,
5728c2ecf20Sopenharmony_ci};
5738c2ecf20Sopenharmony_ci
5748c2ecf20Sopenharmony_cistatic const u16 pinmux_data[] = {
5758c2ecf20Sopenharmony_ci	PINMUX_DATA_GP_ALL(), /* PINMUX_DATA(GP_M_N_DATA, GP_M_N_FN...), */
5768c2ecf20Sopenharmony_ci
5778c2ecf20Sopenharmony_ci	PINMUX_SINGLE(CLKOUT),
5788c2ecf20Sopenharmony_ci	PINMUX_SINGLE(BS),
5798c2ecf20Sopenharmony_ci	PINMUX_SINGLE(CS0),
5808c2ecf20Sopenharmony_ci	PINMUX_SINGLE(EX_CS0),
5818c2ecf20Sopenharmony_ci	PINMUX_SINGLE(RD),
5828c2ecf20Sopenharmony_ci	PINMUX_SINGLE(WE0),
5838c2ecf20Sopenharmony_ci	PINMUX_SINGLE(WE1),
5848c2ecf20Sopenharmony_ci	PINMUX_SINGLE(SCL0),
5858c2ecf20Sopenharmony_ci	PINMUX_SINGLE(PENC0),
5868c2ecf20Sopenharmony_ci	PINMUX_SINGLE(USB_OVC0),
5878c2ecf20Sopenharmony_ci	PINMUX_SINGLE(IRQ2_B),
5888c2ecf20Sopenharmony_ci	PINMUX_SINGLE(IRQ3_B),
5898c2ecf20Sopenharmony_ci
5908c2ecf20Sopenharmony_ci	/* IPSR0 */
5918c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_1_0, A0),
5928c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_1_0, ST0_CLKIN),
5938c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_1_0, LCD_DATA0_A, SEL_LCDC_0),
5948c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_1_0, TCLKA_C, SEL_MTU2_CLK_1),
5958c2ecf20Sopenharmony_ci
5968c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_3_2, A1),
5978c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_3_2, ST0_REQ),
5988c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_3_2, LCD_DATA1_A, SEL_LCDC_0),
5998c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_3_2, TCLKB_C, SEL_MTU2_CLK_1),
6008c2ecf20Sopenharmony_ci
6018c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_5_4, A2),
6028c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_5_4, ST0_SYC),
6038c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_5_4, LCD_DATA2_A, SEL_LCDC_0),
6048c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_5_4, TCLKC_C, SEL_MTU2_CLK_1),
6058c2ecf20Sopenharmony_ci
6068c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_7_6, A3),
6078c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_7_6, ST0_VLD),
6088c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_7_6, LCD_DATA3_A, SEL_LCDC_0),
6098c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_7_6, TCLKD_C, SEL_MTU2_CLK_1),
6108c2ecf20Sopenharmony_ci
6118c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_9_8, A4),
6128c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_9_8, ST0_D0),
6138c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_9_8, LCD_DATA4_A, SEL_LCDC_0),
6148c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_9_8, TIOC0A_C, SEL_MTU2_CH0_1),
6158c2ecf20Sopenharmony_ci
6168c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_11_10, A5),
6178c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_11_10, ST0_D1),
6188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_11_10, LCD_DATA5_A, SEL_LCDC_0),
6198c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_11_10, TIOC0B_C, SEL_MTU2_CH0_1),
6208c2ecf20Sopenharmony_ci
6218c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_13_12, A6),
6228c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_13_12, ST0_D2),
6238c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_13_12, LCD_DATA6_A, SEL_LCDC_0),
6248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_13_12, TIOC0C_C, SEL_MTU2_CH0_1),
6258c2ecf20Sopenharmony_ci
6268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_15_14, A7),
6278c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_15_14, ST0_D3),
6288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_15_14, LCD_DATA7_A, SEL_LCDC_0),
6298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_15_14, TIOC0D_C, SEL_MTU2_CH0_1),
6308c2ecf20Sopenharmony_ci
6318c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_17_16, A8),
6328c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_17_16, ST0_D4),
6338c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_17_16, LCD_DATA8_A, SEL_LCDC_0),
6348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_17_16, TIOC1A_C, SEL_MTU2_CH1_2),
6358c2ecf20Sopenharmony_ci
6368c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_19_18, A9),
6378c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_19_18, ST0_D5),
6388c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_19_18, LCD_DATA9_A, SEL_LCDC_0),
6398c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_19_18, TIOC1B_C, SEL_MTU2_CH1_2),
6408c2ecf20Sopenharmony_ci
6418c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_21_20, A10),
6428c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_21_20, ST0_D6),
6438c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_21_20, LCD_DATA10_A, SEL_LCDC_0),
6448c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_21_20, TIOC2A_C, SEL_MTU2_CH2_2),
6458c2ecf20Sopenharmony_ci
6468c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_23_22, A11),
6478c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_23_22, ST0_D7),
6488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_23_22, LCD_DATA11_A, SEL_LCDC_0),
6498c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_23_22, TIOC2B_C, SEL_MTU2_CH2_2),
6508c2ecf20Sopenharmony_ci
6518c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_25_24, A12),
6528c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_25_24, LCD_DATA12_A, SEL_LCDC_0),
6538c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_25_24, TIOC3A_C, SEL_MTU2_CH3_1),
6548c2ecf20Sopenharmony_ci
6558c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_27_26, A13),
6568c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_27_26, LCD_DATA13_A, SEL_LCDC_0),
6578c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_27_26, TIOC3B_C, SEL_MTU2_CH3_1),
6588c2ecf20Sopenharmony_ci
6598c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_29_28, A14),
6608c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_29_28, LCD_DATA14_A, SEL_LCDC_0),
6618c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_29_28, TIOC3C_C, SEL_MTU2_CH3_1),
6628c2ecf20Sopenharmony_ci
6638c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_31_30, A15),
6648c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP0_31_30, ST0_VCO_CLKIN),
6658c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_31_30, LCD_DATA15_A, SEL_LCDC_0),
6668c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP0_31_30, TIOC3D_C, SEL_MTU2_CH3_1),
6678c2ecf20Sopenharmony_ci
6688c2ecf20Sopenharmony_ci
6698c2ecf20Sopenharmony_ci	/* IPSR1 */
6708c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_1_0, A16),
6718c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_1_0, ST0_PWM),
6728c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_1_0, LCD_DON_A, SEL_LCDC_0),
6738c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_1_0, TIOC4A_C, SEL_MTU2_CH4_1),
6748c2ecf20Sopenharmony_ci
6758c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_3_2, A17),
6768c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_3_2, ST1_VCO_CLKIN),
6778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_3_2, LCD_CL1_A, SEL_LCDC_0),
6788c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_3_2, TIOC4B_C, SEL_MTU2_CH4_1),
6798c2ecf20Sopenharmony_ci
6808c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_5_4, A18),
6818c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_5_4, ST1_PWM),
6828c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_5_4, LCD_CL2_A, SEL_LCDC_0),
6838c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_5_4, TIOC4C_C, SEL_MTU2_CH4_1),
6848c2ecf20Sopenharmony_ci
6858c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_7_6, A19),
6868c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_7_6, ST1_CLKIN),
6878c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_7_6, LCD_CLK_A, SEL_LCDC_0),
6888c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_7_6, TIOC4D_C, SEL_MTU2_CH4_1),
6898c2ecf20Sopenharmony_ci
6908c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_9_8, A20),
6918c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_9_8, ST1_REQ),
6928c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_9_8, LCD_FLM_A, SEL_LCDC_0),
6938c2ecf20Sopenharmony_ci
6948c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_11_10, A21),
6958c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_11_10, ST1_SYC),
6968c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_11_10, LCD_VCPWC_A, SEL_LCDC_0),
6978c2ecf20Sopenharmony_ci
6988c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_13_12, A22),
6998c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_13_12, ST1_VLD),
7008c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_13_12, LCD_VEPWC_A, SEL_LCDC_0),
7018c2ecf20Sopenharmony_ci
7028c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_15_14, A23),
7038c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_15_14, ST1_D0),
7048c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_15_14, LCD_M_DISP_A, SEL_LCDC_0),
7058c2ecf20Sopenharmony_ci
7068c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_17_16, A24),
7078c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_17_16, RX2_D, SEL_SCIF2_3),
7088c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_17_16, ST1_D1),
7098c2ecf20Sopenharmony_ci
7108c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_19_18, A25),
7118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_17_16, RX2_D, SEL_SCIF2_3),
7128c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_17_16, ST1_D2),
7138c2ecf20Sopenharmony_ci
7148c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_22_20, D0),
7158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_22_20, SD0_DAT0_A, SEL_SDHI0_0),
7168c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_22_20, MMC_D0_A, SEL_MMC_0),
7178c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_22_20, ST1_D3),
7188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_22_20, FD0_A, SEL_FLCTL_0),
7198c2ecf20Sopenharmony_ci
7208c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_25_23, D1),
7218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_25_23, SD0_DAT0_A, SEL_SDHI0_0),
7228c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_25_23, MMC_D1_A, SEL_MMC_0),
7238c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_25_23, ST1_D4),
7248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_25_23, FD1_A, SEL_FLCTL_0),
7258c2ecf20Sopenharmony_ci
7268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_28_26, D2),
7278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_28_26, SD0_DAT0_A, SEL_SDHI0_0),
7288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_28_26, MMC_D2_A, SEL_MMC_0),
7298c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_28_26, ST1_D5),
7308c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_28_26, FD2_A, SEL_FLCTL_0),
7318c2ecf20Sopenharmony_ci
7328c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_31_29, D3),
7338c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_31_29, SD0_DAT0_A, SEL_SDHI0_0),
7348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_31_29, MMC_D3_A, SEL_MMC_0),
7358c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP1_31_29, ST1_D6),
7368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP1_31_29, FD3_A, SEL_FLCTL_0),
7378c2ecf20Sopenharmony_ci
7388c2ecf20Sopenharmony_ci	/* IPSR2 */
7398c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_2_0, D4),
7408c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_2_0, SD0_CD_A, SEL_SDHI0_0),
7418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_2_0, MMC_D4_A, SEL_MMC_0),
7428c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_2_0, ST1_D7),
7438c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_2_0, FD4_A, SEL_FLCTL_0),
7448c2ecf20Sopenharmony_ci
7458c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_4_3, D5),
7468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_4_3, SD0_WP_A, SEL_SDHI0_0),
7478c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_4_3, MMC_D5_A, SEL_MMC_0),
7488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_4_3, FD5_A, SEL_FLCTL_0),
7498c2ecf20Sopenharmony_ci
7508c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_7_5, D6),
7518c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_7_5, RSPI_RSPCK_A, SEL_RSPI_0),
7528c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_7_5, MMC_D6_A, SEL_MMC_0),
7538c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_7_5, QSPCLK_A, SEL_RQSPI_0),
7548c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_7_5, FD6_A, SEL_FLCTL_0),
7558c2ecf20Sopenharmony_ci
7568c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_10_8, D7),
7578c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_10_8, RSPI_SSL_A, SEL_RSPI_0),
7588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_10_8, MMC_D7_A, SEL_MMC_0),
7598c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_10_8, QSSL_A, SEL_RQSPI_0),
7608c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_10_8, FD7_A, SEL_FLCTL_0),
7618c2ecf20Sopenharmony_ci
7628c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_13_11, D8),
7638c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_13_11, SD0_CLK_A, SEL_SDHI0_0),
7648c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_13_11, MMC_CLK_A, SEL_MMC_0),
7658c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_13_11, QIO2_A, SEL_RQSPI_0),
7668c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_13_11, FCE_A, SEL_FLCTL_0),
7678c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_13_11, ET0_GTX_CLK_B, SEL_ET0_1),
7688c2ecf20Sopenharmony_ci
7698c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_16_14, D9),
7708c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_16_14, SD0_CMD_A, SEL_SDHI0_0),
7718c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_16_14, MMC_CMD_A, SEL_MMC_0),
7728c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_16_14, QIO3_A, SEL_RQSPI_0),
7738c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_16_14, FCLE_A, SEL_FLCTL_0),
7748c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_16_14, ET0_ETXD1_B, SEL_ET0_1),
7758c2ecf20Sopenharmony_ci
7768c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_19_17, D10),
7778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_19_17, RSPI_MOSI_A, SEL_RSPI_0),
7788c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_19_17, QMO_QIO0_A, SEL_RQSPI_0),
7798c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_19_17, FALE_A, SEL_FLCTL_0),
7808c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_19_17, ET0_ETXD2_B, SEL_ET0_1),
7818c2ecf20Sopenharmony_ci
7828c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_22_20, D11),
7838c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_22_20, RSPI_MISO_A, SEL_RSPI_0),
7848c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_22_20, QMI_QIO1_A, SEL_RQSPI_0),
7858c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_22_20, FRE_A, SEL_FLCTL_0),
7868c2ecf20Sopenharmony_ci
7878c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_24_23, D12),
7888c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_24_23, FWE_A, SEL_FLCTL_0),
7898c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_24_23, ET0_ETXD5_B, SEL_ET0_1),
7908c2ecf20Sopenharmony_ci
7918c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_27_25, D13),
7928c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_27_25, RX2_B, SEL_SCIF2_1),
7938c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_27_25, FRB_A, SEL_FLCTL_0),
7948c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_27_25, ET0_ETXD6_B, SEL_ET0_1),
7958c2ecf20Sopenharmony_ci
7968c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP2_30_28, D14),
7978c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_30_28, TX2_B, SEL_SCIF2_1),
7988c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_30_28, FSE_A, SEL_FLCTL_0),
7998c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP2_30_28, ET0_TX_CLK_B, SEL_ET0_1),
8008c2ecf20Sopenharmony_ci
8018c2ecf20Sopenharmony_ci	/* IPSR3 */
8028c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_1_0, D15),
8038c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_1_0, SCK2_B, SEL_SCIF2_1),
8048c2ecf20Sopenharmony_ci
8058c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_2, CS1_A26),
8068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_2, QIO3_B, SEL_RQSPI_1),
8078c2ecf20Sopenharmony_ci
8088c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_5_3, EX_CS1),
8098c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_5_3, RX3_B, SEL_SCIF2_1),
8108c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_5_3, ATACS0),
8118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_5_3, QIO2_B, SEL_RQSPI_1),
8128c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_5_3, ET0_ETXD0),
8138c2ecf20Sopenharmony_ci
8148c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_8_6, EX_CS2),
8158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_8_6, TX3_B, SEL_SCIF3_1),
8168c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_8_6, ATACS1),
8178c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_8_6, QSPCLK_B, SEL_RQSPI_1),
8188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_8_6, ET0_GTX_CLK_A, SEL_ET0_0),
8198c2ecf20Sopenharmony_ci
8208c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_11_9, EX_CS3),
8218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_11_9, SD1_CD_A, SEL_SDHI1_0),
8228c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_11_9, ATARD),
8238c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_11_9, QMO_QIO0_B, SEL_RQSPI_1),
8248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_11_9, ET0_ETXD1_A, SEL_ET0_0),
8258c2ecf20Sopenharmony_ci
8268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_14_12, EX_CS4),
8278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_14_12, SD1_WP_A, SEL_SDHI1_0),
8288c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_14_12, ATAWR),
8298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_14_12, QMI_QIO1_B, SEL_RQSPI_1),
8308c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_14_12, ET0_ETXD2_A, SEL_ET0_0),
8318c2ecf20Sopenharmony_ci
8328c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_17_15, EX_CS5),
8338c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_17_15, SD1_CMD_A, SEL_SDHI1_0),
8348c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_17_15, ATADIR),
8358c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_17_15, QSSL_B, SEL_RQSPI_1),
8368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_17_15, ET0_ETXD3_A, SEL_ET0_0),
8378c2ecf20Sopenharmony_ci
8388c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_19_18, RD_WR),
8398c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_19_18, TCLK0),
8408c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_19_18, CAN_CLK_B, SEL_RCAN_CLK_1),
8418c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_19_18, ET0_ETXD4),
8428c2ecf20Sopenharmony_ci
8438c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_20, EX_WAIT0),
8448c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_20, TCLK1_B, SEL_TMU_1),
8458c2ecf20Sopenharmony_ci
8468c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_23_21, EX_WAIT1),
8478c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_23_21, SD1_DAT0_A, SEL_SDHI1_0),
8488c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_23_21, DREQ2),
8498c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_23_21, CAN1_TX_C, SEL_RCAN1_2),
8508c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_23_21, ET0_LINK_C, SEL_ET0_CTL_2),
8518c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_23_21, ET0_ETXD5_A, SEL_ET0_0),
8528c2ecf20Sopenharmony_ci
8538c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_26_24, EX_WAIT2),
8548c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_26_24, SD1_DAT1_A, SEL_SDHI1_0),
8558c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_26_24, DACK2),
8568c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_26_24, CAN1_RX_C, SEL_RCAN1_2),
8578c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_26_24, ET0_MAGIC_C, SEL_ET0_CTL_2),
8588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_26_24, ET0_ETXD6_A, SEL_ET0_0),
8598c2ecf20Sopenharmony_ci
8608c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_29_27, DRACK0),
8618c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_29_27, SD1_DAT2_A, SEL_SDHI1_0),
8628c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_29_27, ATAG),
8638c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP3_29_27, TCLK1_A, SEL_TMU_0),
8648c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP3_29_27, ET0_ETXD7),
8658c2ecf20Sopenharmony_ci
8668c2ecf20Sopenharmony_ci	/* IPSR4 */
8678c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_2_0, HCTS0_A, SEL_HSCIF_0),
8688c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_2_0, CTS1_A, SEL_SCIF1_0),
8698c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_2_0, VI0_FIELD),
8708c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_2_0, RMII0_RXD1_A, SEL_RMII_0),
8718c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_2_0, ET0_ERXD7),
8728c2ecf20Sopenharmony_ci
8738c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_5_3, HRTS0_A, SEL_HSCIF_0),
8748c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_5_3, RTS1_A, SEL_SCIF1_0),
8758c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_5_3, VI0_HSYNC),
8768c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_5_3, RMII0_TXD_EN_A, SEL_RMII_0),
8778c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_5_3, ET0_RX_DV),
8788c2ecf20Sopenharmony_ci
8798c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_8_6, HSCK0_A, SEL_HSCIF_0),
8808c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_8_6, SCK1_A, SEL_SCIF1_0),
8818c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_8_6, VI0_VSYNC),
8828c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_8_6, RMII0_RX_ER_A, SEL_RMII_0),
8838c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_8_6, ET0_RX_ER),
8848c2ecf20Sopenharmony_ci
8858c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_11_9, HRX0_A, SEL_HSCIF_0),
8868c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_11_9, RX1_A, SEL_SCIF1_0),
8878c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_11_9, VI0_DATA0_VI0_B0),
8888c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_11_9, RMII0_CRS_DV_A, SEL_RMII_0),
8898c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_11_9, ET0_CRS),
8908c2ecf20Sopenharmony_ci
8918c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_14_12, HTX0_A, SEL_HSCIF_0),
8928c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_14_12, TX1_A, SEL_SCIF1_0),
8938c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_14_12, VI0_DATA1_VI0_B1),
8948c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_14_12, RMII0_MDC_A, SEL_RMII_0),
8958c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_14_12, ET0_COL),
8968c2ecf20Sopenharmony_ci
8978c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_17_15, CTS0_B, SEL_SCIF0_1),
8988c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_17_15, VI0_DATA2_VI0_B2),
8998c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_17_15, RMII0_MDIO_A, SEL_RMII_0),
9008c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_17_15, ET0_MDC),
9018c2ecf20Sopenharmony_ci
9028c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_19_18, RTS0_B, SEL_SCIF0_1),
9038c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_19_18, VI0_DATA3_VI0_B3),
9048c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_19_18, ET0_MDIO_A, SEL_ET0_0),
9058c2ecf20Sopenharmony_ci
9068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_21_20, SCK1_B, SEL_SCIF1_1),
9078c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_21_20, VI0_DATA4_VI0_B4),
9088c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_21_20, ET0_LINK_A, SEL_ET0_CTL_0),
9098c2ecf20Sopenharmony_ci
9108c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_23_22, RX1_B, SEL_SCIF1_1),
9118c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_23_22, VI0_DATA5_VI0_B5),
9128c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_23_22, ET0_MAGIC_A, SEL_ET0_CTL_0),
9138c2ecf20Sopenharmony_ci
9148c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_25_24, TX1_B, SEL_SCIF1_1),
9158c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_25_24, VI0_DATA6_VI0_G0),
9168c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_25_24, ET0_PHY_INT_A, SEL_ET0_CTL_0),
9178c2ecf20Sopenharmony_ci
9188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_27_26, CTS1_B, SEL_SCIF1_1),
9198c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_27_26, VI0_DATA7_VI0_G1),
9208c2ecf20Sopenharmony_ci
9218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_29_28, RTS1_B, SEL_SCIF1_1),
9228c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_29_28, VI0_G2),
9238c2ecf20Sopenharmony_ci
9248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_31_30, SCK2_A, SEL_SCIF2_0),
9258c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_31_30, VI0_G3),
9268c2ecf20Sopenharmony_ci
9278c2ecf20Sopenharmony_ci	/* IPSR5 */
9288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_2_0, SD2_CLK_A, SEL_SDHI2_0),
9298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_2_0, RX2_A, SEL_SCIF2_0),
9308c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_2_0, VI0_G4),
9318c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_2_0, ET0_RX_CLK_B, SEL_ET0_1),
9328c2ecf20Sopenharmony_ci
9338c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_5_3, SD2_CMD_A, SEL_SDHI2_0),
9348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_5_3, TX2_A, SEL_SCIF2_0),
9358c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_5_3, VI0_G5),
9368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_5_3, ET0_ERXD2_B, SEL_ET0_1),
9378c2ecf20Sopenharmony_ci
9388c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_8_6, SD2_DAT0_A, SEL_SDHI2_0),
9398c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_8_6, RX3_A, SEL_SCIF3_0),
9408c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP4_8_6, VI0_R0),
9418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP4_8_6, ET0_ERXD2_B, SEL_ET0_1),
9428c2ecf20Sopenharmony_ci
9438c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_11_9, SD2_DAT1_A, SEL_SDHI2_0),
9448c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_11_9, TX3_A, SEL_SCIF3_0),
9458c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_11_9, VI0_R1),
9468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_11_9, ET0_MDIO_B, SEL_ET0_1),
9478c2ecf20Sopenharmony_ci
9488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_14_12, SD2_DAT2_A, SEL_SDHI2_0),
9498c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_14_12, RX4_A, SEL_SCIF4_0),
9508c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_14_12, VI0_R2),
9518c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_14_12, ET0_LINK_B, SEL_ET0_CTL_1),
9528c2ecf20Sopenharmony_ci
9538c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_17_15, SD2_DAT3_A, SEL_SDHI2_0),
9548c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_17_15, TX4_A, SEL_SCIF4_0),
9558c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_17_15, VI0_R3),
9568c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_17_15, ET0_MAGIC_B, SEL_ET0_CTL_1),
9578c2ecf20Sopenharmony_ci
9588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_20_18, SD2_CD_A, SEL_SDHI2_0),
9598c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_20_18, RX5_A, SEL_SCIF5_0),
9608c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_20_18, VI0_R4),
9618c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_20_18, ET0_PHY_INT_B, SEL_ET0_CTL_1),
9628c2ecf20Sopenharmony_ci
9638c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_22_21, SD2_WP_A, SEL_SDHI2_0),
9648c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_22_21, TX5_A, SEL_SCIF5_0),
9658c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_22_21, VI0_R5),
9668c2ecf20Sopenharmony_ci
9678c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_24_23, REF125CK),
9688c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_24_23, ADTRG),
9698c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_24_23, RX5_C, SEL_SCIF5_2),
9708c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP5_26_25, REF50CK),
9718c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_26_25, CTS1_E, SEL_SCIF1_3),
9728c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP5_26_25, HCTS0_D, SEL_HSCIF_3),
9738c2ecf20Sopenharmony_ci
9748c2ecf20Sopenharmony_ci	/* IPSR6 */
9758c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_2_0, DU0_DR0),
9768c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_2_0, SCIF_CLK_B, SEL_SCIF_CLK_1),
9778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_2_0, HRX0_D, SEL_HSCIF_3),
9788c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_2_0, IETX_A, SEL_IEBUS_0),
9798c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_2_0, TCLKA_A, SEL_MTU2_CLK_0),
9808c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_2_0, HIFD00),
9818c2ecf20Sopenharmony_ci
9828c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_5_3, DU0_DR1),
9838c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_5_3, SCK0_B, SEL_SCIF0_1),
9848c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_5_3, HTX0_D, SEL_HSCIF_3),
9858c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_5_3, IERX_A, SEL_IEBUS_0),
9868c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_5_3, TCLKB_A, SEL_MTU2_CLK_0),
9878c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_5_3, HIFD01),
9888c2ecf20Sopenharmony_ci
9898c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_7_6, DU0_DR2),
9908c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_7_6, RX0_B, SEL_SCIF0_1),
9918c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_7_6, TCLKC_A, SEL_MTU2_CLK_0),
9928c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_7_6, HIFD02),
9938c2ecf20Sopenharmony_ci
9948c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_9_8, DU0_DR3),
9958c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_9_8, TX0_B, SEL_SCIF0_1),
9968c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_9_8, TCLKD_A, SEL_MTU2_CLK_0),
9978c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_9_8, HIFD03),
9988c2ecf20Sopenharmony_ci
9998c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_11_10, DU0_DR4),
10008c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_11_10, CTS0_C, SEL_SCIF0_2),
10018c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_11_10, TIOC0A_A, SEL_MTU2_CH0_0),
10028c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_11_10, HIFD04),
10038c2ecf20Sopenharmony_ci
10048c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_13_12, DU0_DR5),
10058c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_13_12, RTS0_C, SEL_SCIF0_1),
10068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_13_12, TIOC0B_A, SEL_MTU2_CH0_0),
10078c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_13_12, HIFD05),
10088c2ecf20Sopenharmony_ci
10098c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_15_14, DU0_DR6),
10108c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_15_14, SCK1_C, SEL_SCIF1_2),
10118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_15_14, TIOC0C_A, SEL_MTU2_CH0_0),
10128c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_15_14, HIFD06),
10138c2ecf20Sopenharmony_ci
10148c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_17_16, DU0_DR7),
10158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_17_16, RX1_C, SEL_SCIF1_2),
10168c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_17_16, TIOC0D_A, SEL_MTU2_CH0_0),
10178c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_17_16, HIFD07),
10188c2ecf20Sopenharmony_ci
10198c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_20_18, DU0_DG0),
10208c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_20_18, TX1_C, SEL_SCIF1_2),
10218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_20_18, HSCK0_D, SEL_HSCIF_3),
10228c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_20_18, IECLK_A, SEL_IEBUS_0),
10238c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_20_18, TIOC1A_A, SEL_MTU2_CH1_0),
10248c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_20_18, HIFD08),
10258c2ecf20Sopenharmony_ci
10268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_23_21, DU0_DG1),
10278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_23_21, CTS1_C, SEL_SCIF1_2),
10288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_23_21, HRTS0_D, SEL_HSCIF_3),
10298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP6_23_21, TIOC1B_A, SEL_MTU2_CH1_0),
10308c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP6_23_21, HIFD09),
10318c2ecf20Sopenharmony_ci
10328c2ecf20Sopenharmony_ci	/* IPSR7 */
10338c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_2_0, DU0_DG2),
10348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_2_0, RTS1_C, SEL_SCIF1_2),
10358c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_2_0, RMII0_MDC_B, SEL_RMII_1),
10368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_2_0, TIOC2A_A, SEL_MTU2_CH2_0),
10378c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_2_0, HIFD10),
10388c2ecf20Sopenharmony_ci
10398c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_5_3, DU0_DG3),
10408c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_5_3, SCK2_C, SEL_SCIF2_2),
10418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_5_3, RMII0_MDIO_B, SEL_RMII_1),
10428c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_5_3, TIOC2B_A, SEL_MTU2_CH2_0),
10438c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_5_3, HIFD11),
10448c2ecf20Sopenharmony_ci
10458c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_8_6, DU0_DG4),
10468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_8_6, RX2_C, SEL_SCIF2_2),
10478c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_8_6, RMII0_CRS_DV_B, SEL_RMII_1),
10488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_8_6, TIOC3A_A, SEL_MTU2_CH3_0),
10498c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_8_6, HIFD12),
10508c2ecf20Sopenharmony_ci
10518c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_11_9, DU0_DG5),
10528c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_11_9, TX2_C, SEL_SCIF2_2),
10538c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_11_9, RMII0_RX_ER_B, SEL_RMII_1),
10548c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_11_9, TIOC3B_A, SEL_MTU2_CH3_0),
10558c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_11_9, HIFD13),
10568c2ecf20Sopenharmony_ci
10578c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_14_12, DU0_DG6),
10588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_14_12, RX3_C, SEL_SCIF3_2),
10598c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_14_12, RMII0_RXD0_B, SEL_RMII_1),
10608c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_14_12, TIOC3C_A, SEL_MTU2_CH3_0),
10618c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_14_12, HIFD14),
10628c2ecf20Sopenharmony_ci
10638c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_17_15, DU0_DG7),
10648c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_17_15, TX3_C, SEL_SCIF3_2),
10658c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_17_15, RMII0_RXD1_B, SEL_RMII_1),
10668c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_17_15, TIOC3D_A, SEL_MTU2_CH3_0),
10678c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_17_15, HIFD15),
10688c2ecf20Sopenharmony_ci
10698c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_20_18, DU0_DB0),
10708c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_20_18, RX4_C, SEL_SCIF4_2),
10718c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_20_18, RMII0_TXD_EN_B, SEL_RMII_1),
10728c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_20_18, TIOC4A_A, SEL_MTU2_CH4_0),
10738c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_20_18, HIFCS),
10748c2ecf20Sopenharmony_ci
10758c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_23_21, DU0_DB1),
10768c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_23_21, TX4_C, SEL_SCIF4_2),
10778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_23_21, RMII0_TXD0_B, SEL_RMII_1),
10788c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_23_21, TIOC4B_A, SEL_MTU2_CH4_0),
10798c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_23_21, HIFWR),
10808c2ecf20Sopenharmony_ci
10818c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_26_24, DU0_DB2),
10828c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_26_24, RX5_B, SEL_SCIF5_1),
10838c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_26_24, RMII0_TXD1_B, SEL_RMII_1),
10848c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_26_24, TIOC4C_A, SEL_MTU2_CH4_0),
10858c2ecf20Sopenharmony_ci
10868c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_28_27, DU0_DB3),
10878c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_28_27, TX5_B, SEL_SCIF5_1),
10888c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP7_28_27, TIOC4D_A, SEL_MTU2_CH4_0),
10898c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_28_27, HIFRD),
10908c2ecf20Sopenharmony_ci
10918c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_30_29, DU0_DB4),
10928c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP7_30_29, HIFINT),
10938c2ecf20Sopenharmony_ci
10948c2ecf20Sopenharmony_ci	/* IPSR8 */
10958c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_1_0, DU0_DB5),
10968c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_1_0, HIFDREQ),
10978c2ecf20Sopenharmony_ci
10988c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_3_2, DU0_DB6),
10998c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_3_2, HIFRDY),
11008c2ecf20Sopenharmony_ci
11018c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_5_4, DU0_DB7),
11028c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_5_4, SSI_SCK0_B, SEL_SSI0_1),
11038c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_5_4, HIFEBL_B, SEL_HIF_1),
11048c2ecf20Sopenharmony_ci
11058c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_7_6, DU0_DOTCLKIN),
11068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_7_6, HSPI_CS0_C, SEL_HSPI_2),
11078c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_7_6, SSI_WS0_B, SEL_SSI0_1),
11088c2ecf20Sopenharmony_ci
11098c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_9_8, DU0_DOTCLKOUT),
11108c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_9_8, HSPI_CLK0_C, SEL_HSPI_2),
11118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_9_8, SSI_SDATA0_B, SEL_SSI0_1),
11128c2ecf20Sopenharmony_ci
11138c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_11_10, DU0_EXHSYNC_DU0_HSYNC),
11148c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_11_10, HSPI_TX0_C, SEL_HSPI_2),
11158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_11_10, SSI_SCK1_B, SEL_SSI1_1),
11168c2ecf20Sopenharmony_ci
11178c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_13_12, DU0_EXVSYNC_DU0_VSYNC),
11188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_13_12, HSPI_RX0_C, SEL_HSPI_2),
11198c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_13_12, SSI_WS1_B, SEL_SSI1_1),
11208c2ecf20Sopenharmony_ci
11218c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_15_14, DU0_EXODDF_DU0_ODDF),
11228c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_15_14, CAN0_RX_B, SEL_RCAN0_1),
11238c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_15_14, HSCK0_B, SEL_HSCIF_1),
11248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_15_14, SSI_SDATA1_B, SEL_SSI1_1),
11258c2ecf20Sopenharmony_ci
11268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_17_16, DU0_DISP),
11278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_17_16, CAN0_TX_B, SEL_RCAN0_1),
11288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_17_16, HRX0_B, SEL_HSCIF_1),
11298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_17_16, AUDIO_CLKA_B, SEL_AUDIO_CLKA_1),
11308c2ecf20Sopenharmony_ci
11318c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_19_18, DU0_CDE),
11328c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_19_18, HTX0_B, SEL_HSCIF_1),
11338c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_19_18, AUDIO_CLKB_B, SEL_AUDIO_CLKB_1),
11348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_19_18, LCD_VCPWC_B, SEL_LCDC_1),
11358c2ecf20Sopenharmony_ci
11368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_22_20, IRQ0_A, SEL_INTC_0),
11378c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_22_20, HSPI_TX_B, SEL_HSPI_1),
11388c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_22_20, RX3_E, SEL_SCIF3_4),
11398c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_22_20, ET0_ERXD0),
11408c2ecf20Sopenharmony_ci
11418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_25_23, IRQ1_A, SEL_INTC_0),
11428c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_25_23, HSPI_RX_B, SEL_HSPI_1),
11438c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_25_23, TX3_E, SEL_SCIF3_4),
11448c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP8_25_23, ET0_ERXD1),
11458c2ecf20Sopenharmony_ci
11468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_27_26, IRQ2_A, SEL_INTC_0),
11478c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_27_26, CTS0_A, SEL_SCIF0_0),
11488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_27_26, HCTS0_B, SEL_HSCIF_1),
11498c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_27_26, ET0_ERXD2_A, SEL_ET0_0),
11508c2ecf20Sopenharmony_ci
11518c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_29_28, IRQ3_A, SEL_INTC_0),
11528c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_29_28, RTS0_A, SEL_SCIF0_0),
11538c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_29_28, HRTS0_B, SEL_HSCIF_1),
11548c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP8_29_28, ET0_ERXD3_A, SEL_ET0_0),
11558c2ecf20Sopenharmony_ci
11568c2ecf20Sopenharmony_ci	/* IPSR9 */
11578c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_1_0, VI1_CLK_A, SEL_VIN1_0),
11588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_1_0, FD0_B, SEL_FLCTL_1),
11598c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_1_0, LCD_DATA0_B, SEL_LCDC_1),
11608c2ecf20Sopenharmony_ci
11618c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_3_2, VI1_0_A, SEL_VIN1_0),
11628c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_3_2, FD1_B, SEL_FLCTL_1),
11638c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_3_2, LCD_DATA1_B, SEL_LCDC_1),
11648c2ecf20Sopenharmony_ci
11658c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_5_4, VI1_1_A, SEL_VIN1_0),
11668c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_5_4, FD2_B, SEL_FLCTL_1),
11678c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_5_4, LCD_DATA2_B, SEL_LCDC_1),
11688c2ecf20Sopenharmony_ci
11698c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_7_6, VI1_2_A, SEL_VIN1_0),
11708c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_7_6, FD3_B, SEL_FLCTL_1),
11718c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_7_6, LCD_DATA3_B, SEL_LCDC_1),
11728c2ecf20Sopenharmony_ci
11738c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_9_8, VI1_3_A, SEL_VIN1_0),
11748c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_9_8, FD4_B, SEL_FLCTL_1),
11758c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_9_8, LCD_DATA4_B, SEL_LCDC_1),
11768c2ecf20Sopenharmony_ci
11778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_11_10, VI1_4_A, SEL_VIN1_0),
11788c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_11_10, FD5_B, SEL_FLCTL_1),
11798c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_11_10, LCD_DATA5_B, SEL_LCDC_1),
11808c2ecf20Sopenharmony_ci
11818c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_13_12, VI1_5_A, SEL_VIN1_0),
11828c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_13_12, FD6_B, SEL_FLCTL_1),
11838c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_13_12, LCD_DATA6_B, SEL_LCDC_1),
11848c2ecf20Sopenharmony_ci
11858c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_15_14, VI1_6_A, SEL_VIN1_0),
11868c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_15_14, FD7_B, SEL_FLCTL_1),
11878c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_15_14, LCD_DATA7_B, SEL_LCDC_1),
11888c2ecf20Sopenharmony_ci
11898c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_17_16, VI1_7_A, SEL_VIN1_0),
11908c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_17_16, FCE_B, SEL_FLCTL_1),
11918c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_17_16, LCD_DATA8_B, SEL_LCDC_1),
11928c2ecf20Sopenharmony_ci
11938c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_19_18, SSI_SCK0_A, SEL_SSI0_0),
11948c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_19_18, TIOC1A_B, SEL_MTU2_CH1_1),
11958c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_19_18, LCD_DATA9_B, SEL_LCDC_1),
11968c2ecf20Sopenharmony_ci
11978c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_21_20, SSI_WS0_A, SEL_SSI0_0),
11988c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_21_20, TIOC1B_B, SEL_MTU2_CH1_1),
11998c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_21_20, LCD_DATA10_B, SEL_LCDC_1),
12008c2ecf20Sopenharmony_ci
12018c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_23_22, SSI_SDATA0_A, SEL_SSI0_0),
12028c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_23_22, VI1_0_B, SEL_VIN1_1),
12038c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_23_22, TIOC2A_B, SEL_MTU2_CH2_1),
12048c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_23_22, LCD_DATA11_B, SEL_LCDC_1),
12058c2ecf20Sopenharmony_ci
12068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_25_24, SSI_SCK1_A, SEL_SSI1_0),
12078c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_25_24, VI1_1_B, SEL_VIN1_1),
12088c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_25_24, TIOC2B_B, SEL_MTU2_CH2_1),
12098c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_25_24, LCD_DATA12_B, SEL_LCDC_1),
12108c2ecf20Sopenharmony_ci
12118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_27_26, SSI_WS1_A, SEL_SSI1_0),
12128c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_27_26, VI1_2_B, SEL_VIN1_1),
12138c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_27_26, LCD_DATA13_B, SEL_LCDC_1),
12148c2ecf20Sopenharmony_ci
12158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_29_28, SSI_SDATA1_A, SEL_SSI1_0),
12168c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_29_28, VI1_3_B, SEL_VIN1_1),
12178c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP9_29_28, LCD_DATA14_B, SEL_LCDC_1),
12188c2ecf20Sopenharmony_ci
12198c2ecf20Sopenharmony_ci	/* IPSE10 */
12208c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_2_0, SSI_SCK23),
12218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_2_0, VI1_4_B, SEL_VIN1_1),
12228c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_2_0, RX1_D, SEL_SCIF1_3),
12238c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_2_0, FCLE_B, SEL_FLCTL_1),
12248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_2_0, LCD_DATA15_B, SEL_LCDC_1),
12258c2ecf20Sopenharmony_ci
12268c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_5_3, SSI_WS23),
12278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_5_3, VI1_5_B, SEL_VIN1_1),
12288c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_5_3, TX1_D, SEL_SCIF1_3),
12298c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_5_3, HSCK0_C, SEL_HSCIF_2),
12308c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_5_3, FALE_B, SEL_FLCTL_1),
12318c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_5_3, LCD_DON_B, SEL_LCDC_1),
12328c2ecf20Sopenharmony_ci
12338c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_8_6, SSI_SDATA2),
12348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_8_6, VI1_6_B, SEL_VIN1_1),
12358c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_8_6, HRX0_C, SEL_HSCIF_2),
12368c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_8_6, FRE_B, SEL_FLCTL_1),
12378c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_8_6, LCD_CL1_B, SEL_LCDC_1),
12388c2ecf20Sopenharmony_ci
12398c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_11_9, SSI_SDATA3),
12408c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_11_9, VI1_7_B, SEL_VIN1_1),
12418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_11_9, HTX0_C, SEL_HSCIF_2),
12428c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_11_9, FWE_B, SEL_FLCTL_1),
12438c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_11_9, LCD_CL2_B, SEL_LCDC_1),
12448c2ecf20Sopenharmony_ci
12458c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_14_12, AUDIO_CLKA_A, SEL_AUDIO_CLKA_0),
12468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_14_12, VI1_CLK_B, SEL_VIN1_1),
12478c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_14_12, SCK1_D, SEL_SCIF1_3),
12488c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_14_12, IECLK_B, SEL_IEBUS_1),
12498c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_14_12, LCD_FLM_B, SEL_LCDC_1),
12508c2ecf20Sopenharmony_ci
12518c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_15, AUDIO_CLKB_A, SEL_AUDIO_CLKB_0),
12528c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_15, LCD_CLK_B, SEL_LCDC_1),
12538c2ecf20Sopenharmony_ci
12548c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_18_16, AUDIO_CLKC),
12558c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_18_16, SCK1_E, SEL_SCIF1_4),
12568c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_18_16, HCTS0_C, SEL_HSCIF_2),
12578c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_18_16, FRB_B, SEL_FLCTL_1),
12588c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_18_16, LCD_VEPWC_B, SEL_LCDC_1),
12598c2ecf20Sopenharmony_ci
12608c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_21_19, AUDIO_CLKOUT),
12618c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_21_19, TX1_E, SEL_SCIF1_4),
12628c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_21_19, HRTS0_C, SEL_HSCIF_2),
12638c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_21_19, FSE_B, SEL_FLCTL_1),
12648c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_21_19, LCD_M_DISP_B, SEL_LCDC_1),
12658c2ecf20Sopenharmony_ci
12668c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_22, CAN_CLK_A, SEL_RCAN_CLK_0),
12678c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_22, RX4_D, SEL_SCIF4_3),
12688c2ecf20Sopenharmony_ci
12698c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_24_23, CAN0_TX_A, SEL_RCAN0_0),
12708c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_24_23, TX4_D, SEL_SCIF4_3),
12718c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_24_23, MLB_CLK),
12728c2ecf20Sopenharmony_ci
12738c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_25, CAN1_RX_A, SEL_RCAN1_0),
12748c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_25, IRQ1_B, SEL_INTC_1),
12758c2ecf20Sopenharmony_ci
12768c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_27_26, CAN0_RX_A, SEL_RCAN0_0),
12778c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_27_26, IRQ0_B, SEL_INTC_1),
12788c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_27_26, MLB_SIG),
12798c2ecf20Sopenharmony_ci
12808c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_29_28, CAN1_TX_A, SEL_RCAN1_0),
12818c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP10_29_28, TX5_C, SEL_SCIF1_2),
12828c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP10_29_28, MLB_DAT),
12838c2ecf20Sopenharmony_ci
12848c2ecf20Sopenharmony_ci	/* IPSR11 */
12858c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_0, SCL1),
12868c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_0, SCIF_CLK_C, SEL_SCIF_CLK_2),
12878c2ecf20Sopenharmony_ci
12888c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_1, SDA1),
12898c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_0, RX1_E, SEL_SCIF1_4),
12908c2ecf20Sopenharmony_ci
12918c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_2, SDA0),
12928c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_2, HIFEBL_A, SEL_HIF_0),
12938c2ecf20Sopenharmony_ci
12948c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_3, SDSELF),
12958c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_3, RTS1_E, SEL_SCIF1_3),
12968c2ecf20Sopenharmony_ci
12978c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_6_4, SCIF_CLK_A, SEL_SCIF_CLK_0),
12988c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_6_4, HSPI_CLK_A, SEL_HSPI_0),
12998c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_6_4, VI0_CLK),
13008c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_6_4, RMII0_TXD0_A, SEL_RMII_0),
13018c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_6_4, ET0_ERXD4),
13028c2ecf20Sopenharmony_ci
13038c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_9_7, SCK0_A, SEL_SCIF0_0),
13048c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_9_7, HSPI_CS_A, SEL_HSPI_0),
13058c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_9_7, VI0_CLKENB),
13068c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_9_7, RMII0_TXD1_A, SEL_RMII_0),
13078c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_9_7, ET0_ERXD5),
13088c2ecf20Sopenharmony_ci
13098c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_11_10, RX0_A, SEL_SCIF0_0),
13108c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_11_10, HSPI_RX_A, SEL_HSPI_0),
13118c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_11_10, RMII0_RXD0_A, SEL_RMII_0),
13128c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_11_10, ET0_ERXD6),
13138c2ecf20Sopenharmony_ci
13148c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_12, TX0_A, SEL_SCIF0_0),
13158c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_12, HSPI_TX_A, SEL_HSPI_0),
13168c2ecf20Sopenharmony_ci
13178c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_15_13, PENC1),
13188c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_15_13, TX3_D, SEL_SCIF3_3),
13198c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_15_13, CAN1_TX_B,  SEL_RCAN1_1),
13208c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_15_13, TX5_D, SEL_SCIF5_3),
13218c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_15_13, IETX_B, SEL_IEBUS_1),
13228c2ecf20Sopenharmony_ci
13238c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_18_16, USB_OVC1),
13248c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_18_16, RX3_D, SEL_SCIF3_3),
13258c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_18_16, CAN1_RX_B, SEL_RCAN1_1),
13268c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_18_16, RX5_D, SEL_SCIF5_3),
13278c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_18_16, IERX_B, SEL_IEBUS_1),
13288c2ecf20Sopenharmony_ci
13298c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_20_19, DREQ0),
13308c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_20_19, SD1_CLK_A, SEL_SDHI1_0),
13318c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_20_19, ET0_TX_EN),
13328c2ecf20Sopenharmony_ci
13338c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_22_21, DACK0),
13348c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_22_21, SD1_DAT3_A, SEL_SDHI1_0),
13358c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_22_21, ET0_TX_ER),
13368c2ecf20Sopenharmony_ci
13378c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_25_23, DREQ1),
13388c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_25_23, HSPI_CLK_B, SEL_HSPI_1),
13398c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_25_23, RX4_B, SEL_SCIF4_1),
13408c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_25_23, ET0_PHY_INT_C, SEL_ET0_CTL_0),
13418c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_25_23, ET0_TX_CLK_A, SEL_ET0_0),
13428c2ecf20Sopenharmony_ci
13438c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_27_26, DACK1),
13448c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_27_26, HSPI_CS_B, SEL_HSPI_1),
13458c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_27_26, TX4_B, SEL_SCIF3_1),
13468c2ecf20Sopenharmony_ci	PINMUX_IPSR_MSEL(IP11_27_26, ET0_RX_CLK_A, SEL_ET0_0),
13478c2ecf20Sopenharmony_ci
13488c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_28, PRESETOUT),
13498c2ecf20Sopenharmony_ci	PINMUX_IPSR_GPSR(IP11_28, ST_CLKOUT),
13508c2ecf20Sopenharmony_ci};
13518c2ecf20Sopenharmony_ci
13528c2ecf20Sopenharmony_cistatic const struct sh_pfc_pin pinmux_pins[] = {
13538c2ecf20Sopenharmony_ci	PINMUX_GPIO_GP_ALL(),
13548c2ecf20Sopenharmony_ci};
13558c2ecf20Sopenharmony_ci
13568c2ecf20Sopenharmony_ci#define PINMUX_FN_BASE	ARRAY_SIZE(pinmux_pins)
13578c2ecf20Sopenharmony_ci
13588c2ecf20Sopenharmony_cistatic const struct pinmux_func pinmux_func_gpios[] = {
13598c2ecf20Sopenharmony_ci	GPIO_FN(CLKOUT), GPIO_FN(BS), GPIO_FN(CS0), GPIO_FN(EX_CS0),
13608c2ecf20Sopenharmony_ci	GPIO_FN(RD), GPIO_FN(WE0), GPIO_FN(WE1),
13618c2ecf20Sopenharmony_ci	GPIO_FN(SCL0), GPIO_FN(PENC0), GPIO_FN(USB_OVC0),
13628c2ecf20Sopenharmony_ci	GPIO_FN(IRQ2_B), GPIO_FN(IRQ3_B),
13638c2ecf20Sopenharmony_ci
13648c2ecf20Sopenharmony_ci	/* IPSR0 */
13658c2ecf20Sopenharmony_ci	GPIO_FN(A0), GPIO_FN(ST0_CLKIN), GPIO_FN(LCD_DATA0_A),
13668c2ecf20Sopenharmony_ci	GPIO_FN(TCLKA_C),
13678c2ecf20Sopenharmony_ci	GPIO_FN(A1), GPIO_FN(ST0_REQ), GPIO_FN(LCD_DATA1_A),
13688c2ecf20Sopenharmony_ci	GPIO_FN(TCLKB_C),
13698c2ecf20Sopenharmony_ci	GPIO_FN(A2), GPIO_FN(ST0_SYC), GPIO_FN(LCD_DATA2_A),
13708c2ecf20Sopenharmony_ci	GPIO_FN(TCLKC_C),
13718c2ecf20Sopenharmony_ci	GPIO_FN(A3), GPIO_FN(ST0_VLD), GPIO_FN(LCD_DATA3_A),
13728c2ecf20Sopenharmony_ci	GPIO_FN(TCLKD_C),
13738c2ecf20Sopenharmony_ci	GPIO_FN(A4), GPIO_FN(ST0_D0), GPIO_FN(LCD_DATA4_A),
13748c2ecf20Sopenharmony_ci	GPIO_FN(TIOC0A_C),
13758c2ecf20Sopenharmony_ci	GPIO_FN(A5), GPIO_FN(ST0_D1), GPIO_FN(LCD_DATA5_A),
13768c2ecf20Sopenharmony_ci	GPIO_FN(TIOC0B_C),
13778c2ecf20Sopenharmony_ci	GPIO_FN(A6), GPIO_FN(ST0_D2), GPIO_FN(LCD_DATA6_A),
13788c2ecf20Sopenharmony_ci	GPIO_FN(TIOC0C_C),
13798c2ecf20Sopenharmony_ci	GPIO_FN(A7), GPIO_FN(ST0_D3), GPIO_FN(LCD_DATA7_A),
13808c2ecf20Sopenharmony_ci	GPIO_FN(TIOC0D_C),
13818c2ecf20Sopenharmony_ci	GPIO_FN(A8), GPIO_FN(ST0_D4), GPIO_FN(LCD_DATA8_A),
13828c2ecf20Sopenharmony_ci	GPIO_FN(TIOC1A_C),
13838c2ecf20Sopenharmony_ci	GPIO_FN(A9), GPIO_FN(ST0_D5), GPIO_FN(LCD_DATA9_A),
13848c2ecf20Sopenharmony_ci	GPIO_FN(TIOC1B_C),
13858c2ecf20Sopenharmony_ci	GPIO_FN(A10), GPIO_FN(ST0_D6), GPIO_FN(LCD_DATA10_A),
13868c2ecf20Sopenharmony_ci	GPIO_FN(TIOC2A_C),
13878c2ecf20Sopenharmony_ci	GPIO_FN(A11), GPIO_FN(ST0_D7), GPIO_FN(LCD_DATA11_A),
13888c2ecf20Sopenharmony_ci	GPIO_FN(TIOC2B_C),
13898c2ecf20Sopenharmony_ci	GPIO_FN(A12), GPIO_FN(LCD_DATA12_A), GPIO_FN(TIOC3A_C),
13908c2ecf20Sopenharmony_ci	GPIO_FN(A13), GPIO_FN(LCD_DATA13_A), GPIO_FN(TIOC3B_C),
13918c2ecf20Sopenharmony_ci	GPIO_FN(A14), GPIO_FN(LCD_DATA14_A), GPIO_FN(TIOC3C_C),
13928c2ecf20Sopenharmony_ci	GPIO_FN(A15), GPIO_FN(ST0_VCO_CLKIN), GPIO_FN(LCD_DATA15_A),
13938c2ecf20Sopenharmony_ci	GPIO_FN(TIOC3D_C),
13948c2ecf20Sopenharmony_ci
13958c2ecf20Sopenharmony_ci	/* IPSR1 */
13968c2ecf20Sopenharmony_ci	GPIO_FN(A16), GPIO_FN(ST0_PWM), GPIO_FN(LCD_DON_A),
13978c2ecf20Sopenharmony_ci	GPIO_FN(TIOC4A_C),
13988c2ecf20Sopenharmony_ci	GPIO_FN(A17), GPIO_FN(ST1_VCO_CLKIN), GPIO_FN(LCD_CL1_A),
13998c2ecf20Sopenharmony_ci	GPIO_FN(TIOC4B_C),
14008c2ecf20Sopenharmony_ci	GPIO_FN(A18), GPIO_FN(ST1_PWM), GPIO_FN(LCD_CL2_A),
14018c2ecf20Sopenharmony_ci	GPIO_FN(TIOC4C_C),
14028c2ecf20Sopenharmony_ci	GPIO_FN(A19), GPIO_FN(ST1_CLKIN), GPIO_FN(LCD_CLK_A),
14038c2ecf20Sopenharmony_ci	GPIO_FN(TIOC4D_C),
14048c2ecf20Sopenharmony_ci	GPIO_FN(A20), GPIO_FN(ST1_REQ), GPIO_FN(LCD_FLM_A),
14058c2ecf20Sopenharmony_ci	GPIO_FN(A21), GPIO_FN(ST1_SYC), GPIO_FN(LCD_VCPWC_A),
14068c2ecf20Sopenharmony_ci	GPIO_FN(A22), GPIO_FN(ST1_VLD), GPIO_FN(LCD_VEPWC_A),
14078c2ecf20Sopenharmony_ci	GPIO_FN(A23), GPIO_FN(ST1_D0), GPIO_FN(LCD_M_DISP_A),
14088c2ecf20Sopenharmony_ci	GPIO_FN(A24), GPIO_FN(RX2_D), GPIO_FN(ST1_D1),
14098c2ecf20Sopenharmony_ci	GPIO_FN(A25), GPIO_FN(TX2_D), GPIO_FN(ST1_D2),
14108c2ecf20Sopenharmony_ci	GPIO_FN(D0), GPIO_FN(SD0_DAT0_A), GPIO_FN(MMC_D0_A),
14118c2ecf20Sopenharmony_ci	GPIO_FN(ST1_D3), GPIO_FN(FD0_A),
14128c2ecf20Sopenharmony_ci	GPIO_FN(D1), GPIO_FN(SD0_DAT1_A), GPIO_FN(MMC_D1_A),
14138c2ecf20Sopenharmony_ci	GPIO_FN(ST1_D4), GPIO_FN(FD1_A),
14148c2ecf20Sopenharmony_ci	GPIO_FN(D2), GPIO_FN(SD0_DAT2_A), GPIO_FN(MMC_D2_A),
14158c2ecf20Sopenharmony_ci	GPIO_FN(ST1_D5), GPIO_FN(FD2_A),
14168c2ecf20Sopenharmony_ci	GPIO_FN(D3), GPIO_FN(SD0_DAT3_A), GPIO_FN(MMC_D3_A),
14178c2ecf20Sopenharmony_ci	GPIO_FN(ST1_D6), GPIO_FN(FD3_A),
14188c2ecf20Sopenharmony_ci
14198c2ecf20Sopenharmony_ci	/* IPSR2 */
14208c2ecf20Sopenharmony_ci	GPIO_FN(D4), GPIO_FN(SD0_CD_A), GPIO_FN(MMC_D4_A), GPIO_FN(ST1_D7),
14218c2ecf20Sopenharmony_ci	GPIO_FN(FD4_A),
14228c2ecf20Sopenharmony_ci	GPIO_FN(D5), GPIO_FN(SD0_WP_A), GPIO_FN(MMC_D5_A), GPIO_FN(FD5_A),
14238c2ecf20Sopenharmony_ci	GPIO_FN(D6), GPIO_FN(RSPI_RSPCK_A), GPIO_FN(MMC_D6_A),
14248c2ecf20Sopenharmony_ci		GPIO_FN(QSPCLK_A),
14258c2ecf20Sopenharmony_ci	GPIO_FN(FD6_A),
14268c2ecf20Sopenharmony_ci	GPIO_FN(D7), GPIO_FN(RSPI_SSL_A), GPIO_FN(MMC_D7_A), GPIO_FN(QSSL_A),
14278c2ecf20Sopenharmony_ci	GPIO_FN(FD7_A),
14288c2ecf20Sopenharmony_ci	GPIO_FN(D8), GPIO_FN(SD0_CLK_A), GPIO_FN(MMC_CLK_A), GPIO_FN(QIO2_A),
14298c2ecf20Sopenharmony_ci	GPIO_FN(FCE_A), GPIO_FN(ET0_GTX_CLK_B),
14308c2ecf20Sopenharmony_ci	GPIO_FN(D9), GPIO_FN(SD0_CMD_A), GPIO_FN(MMC_CMD_A), GPIO_FN(QIO3_A),
14318c2ecf20Sopenharmony_ci	GPIO_FN(FCLE_A), GPIO_FN(ET0_ETXD1_B),
14328c2ecf20Sopenharmony_ci	GPIO_FN(D10), GPIO_FN(RSPI_MOSI_A), GPIO_FN(QMO_QIO0_A),
14338c2ecf20Sopenharmony_ci		GPIO_FN(FALE_A), GPIO_FN(ET0_ETXD2_B),
14348c2ecf20Sopenharmony_ci	GPIO_FN(D11), GPIO_FN(RSPI_MISO_A), GPIO_FN(QMI_QIO1_A), GPIO_FN(FRE_A),
14358c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ETXD3_B),
14368c2ecf20Sopenharmony_ci	GPIO_FN(D12), GPIO_FN(FWE_A), GPIO_FN(ET0_ETXD5_B),
14378c2ecf20Sopenharmony_ci	GPIO_FN(D13), GPIO_FN(RX2_B), GPIO_FN(FRB_A), GPIO_FN(ET0_ETXD6_B),
14388c2ecf20Sopenharmony_ci	GPIO_FN(D14), GPIO_FN(TX2_B), GPIO_FN(FSE_A), GPIO_FN(ET0_TX_CLK_B),
14398c2ecf20Sopenharmony_ci
14408c2ecf20Sopenharmony_ci	/* IPSR3 */
14418c2ecf20Sopenharmony_ci	GPIO_FN(D15), GPIO_FN(SCK2_B),
14428c2ecf20Sopenharmony_ci	GPIO_FN(CS1_A26), GPIO_FN(QIO3_B),
14438c2ecf20Sopenharmony_ci	GPIO_FN(EX_CS1), GPIO_FN(RX3_B), GPIO_FN(ATACS0), GPIO_FN(QIO2_B),
14448c2ecf20Sopenharmony_ci	GPIO_FN(ET0_ETXD0),
14458c2ecf20Sopenharmony_ci	GPIO_FN(EX_CS2), GPIO_FN(TX3_B), GPIO_FN(ATACS1), GPIO_FN(QSPCLK_B),
14468c2ecf20Sopenharmony_ci	GPIO_FN(ET0_GTX_CLK_A),
14478c2ecf20Sopenharmony_ci	GPIO_FN(EX_CS3), GPIO_FN(SD1_CD_A), GPIO_FN(ATARD), GPIO_FN(QMO_QIO0_B),
14488c2ecf20Sopenharmony_ci	GPIO_FN(ET0_ETXD1_A),
14498c2ecf20Sopenharmony_ci	GPIO_FN(EX_CS4), GPIO_FN(SD1_WP_A), GPIO_FN(ATAWR), GPIO_FN(QMI_QIO1_B),
14508c2ecf20Sopenharmony_ci	GPIO_FN(ET0_ETXD2_A),
14518c2ecf20Sopenharmony_ci	GPIO_FN(EX_CS5), GPIO_FN(SD1_CMD_A), GPIO_FN(ATADIR), GPIO_FN(QSSL_B),
14528c2ecf20Sopenharmony_ci	GPIO_FN(ET0_ETXD3_A),
14538c2ecf20Sopenharmony_ci	GPIO_FN(RD_WR), GPIO_FN(TCLK0), GPIO_FN(CAN_CLK_B), GPIO_FN(ET0_ETXD4),
14548c2ecf20Sopenharmony_ci	GPIO_FN(EX_WAIT0), GPIO_FN(TCLK1_B),
14558c2ecf20Sopenharmony_ci	GPIO_FN(EX_WAIT1), GPIO_FN(SD1_DAT0_A), GPIO_FN(DREQ2),
14568c2ecf20Sopenharmony_ci		GPIO_FN(CAN1_TX_C), GPIO_FN(ET0_LINK_C), GPIO_FN(ET0_ETXD5_A),
14578c2ecf20Sopenharmony_ci	GPIO_FN(EX_WAIT2), GPIO_FN(SD1_DAT1_A), GPIO_FN(DACK2),
14588c2ecf20Sopenharmony_ci		GPIO_FN(CAN1_RX_C), GPIO_FN(ET0_MAGIC_C), GPIO_FN(ET0_ETXD6_A),
14598c2ecf20Sopenharmony_ci	GPIO_FN(DRACK0), GPIO_FN(SD1_DAT2_A), GPIO_FN(ATAG), GPIO_FN(TCLK1_A),
14608c2ecf20Sopenharmony_ci	GPIO_FN(ET0_ETXD7),
14618c2ecf20Sopenharmony_ci
14628c2ecf20Sopenharmony_ci	/* IPSR4 */
14638c2ecf20Sopenharmony_ci	GPIO_FN(HCTS0_A), GPIO_FN(CTS1_A), GPIO_FN(VI0_FIELD),
14648c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_RXD1_A), GPIO_FN(ET0_ERXD7),
14658c2ecf20Sopenharmony_ci	GPIO_FN(HRTS0_A), GPIO_FN(RTS1_A), GPIO_FN(VI0_HSYNC),
14668c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_TXD_EN_A), GPIO_FN(ET0_RX_DV),
14678c2ecf20Sopenharmony_ci	GPIO_FN(HSCK0_A), GPIO_FN(SCK1_A), GPIO_FN(VI0_VSYNC),
14688c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_RX_ER_A), GPIO_FN(ET0_RX_ER),
14698c2ecf20Sopenharmony_ci	GPIO_FN(HRX0_A), GPIO_FN(RX1_A), GPIO_FN(VI0_DATA0_VI0_B0),
14708c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_CRS_DV_A), GPIO_FN(ET0_CRS),
14718c2ecf20Sopenharmony_ci	GPIO_FN(HTX0_A), GPIO_FN(TX1_A), GPIO_FN(VI0_DATA1_VI0_B1),
14728c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_MDC_A), GPIO_FN(ET0_COL),
14738c2ecf20Sopenharmony_ci	GPIO_FN(CTS0_B), GPIO_FN(VI0_DATA2_VI0_B2), GPIO_FN(RMII0_MDIO_A),
14748c2ecf20Sopenharmony_ci		GPIO_FN(ET0_MDC),
14758c2ecf20Sopenharmony_ci	GPIO_FN(RTS0_B), GPIO_FN(VI0_DATA3_VI0_B3), GPIO_FN(ET0_MDIO_A),
14768c2ecf20Sopenharmony_ci	GPIO_FN(SCK1_B), GPIO_FN(VI0_DATA4_VI0_B4), GPIO_FN(ET0_LINK_A),
14778c2ecf20Sopenharmony_ci	GPIO_FN(RX1_B), GPIO_FN(VI0_DATA5_VI0_B5), GPIO_FN(ET0_MAGIC_A),
14788c2ecf20Sopenharmony_ci	GPIO_FN(TX1_B), GPIO_FN(VI0_DATA6_VI0_G0), GPIO_FN(ET0_PHY_INT_A),
14798c2ecf20Sopenharmony_ci	GPIO_FN(CTS1_B), GPIO_FN(VI0_DATA7_VI0_G1),
14808c2ecf20Sopenharmony_ci	GPIO_FN(RTS1_B), GPIO_FN(VI0_G2),
14818c2ecf20Sopenharmony_ci	GPIO_FN(SCK2_A), GPIO_FN(VI0_G3),
14828c2ecf20Sopenharmony_ci
14838c2ecf20Sopenharmony_ci	/* IPSR5 */
14848c2ecf20Sopenharmony_ci	GPIO_FN(REF50CK), GPIO_FN(CTS1_E), GPIO_FN(HCTS0_D),
14858c2ecf20Sopenharmony_ci	GPIO_FN(REF125CK), GPIO_FN(ADTRG), GPIO_FN(RX5_C),
14868c2ecf20Sopenharmony_ci	GPIO_FN(SD2_WP_A), GPIO_FN(TX5_A), GPIO_FN(VI0_R5),
14878c2ecf20Sopenharmony_ci	GPIO_FN(SD2_CD_A), GPIO_FN(RX5_A), GPIO_FN(VI0_R4),
14888c2ecf20Sopenharmony_ci		GPIO_FN(ET0_PHY_INT_B),
14898c2ecf20Sopenharmony_ci	GPIO_FN(SD2_DAT3_A), GPIO_FN(TX4_A), GPIO_FN(VI0_R3),
14908c2ecf20Sopenharmony_ci		GPIO_FN(ET0_MAGIC_B),
14918c2ecf20Sopenharmony_ci	GPIO_FN(SD2_DAT2_A), GPIO_FN(RX4_A), GPIO_FN(VI0_R2),
14928c2ecf20Sopenharmony_ci		GPIO_FN(ET0_LINK_B),
14938c2ecf20Sopenharmony_ci	GPIO_FN(SD2_DAT1_A), GPIO_FN(TX3_A), GPIO_FN(VI0_R1),
14948c2ecf20Sopenharmony_ci		GPIO_FN(ET0_MDIO_B),
14958c2ecf20Sopenharmony_ci	GPIO_FN(SD2_DAT0_A), GPIO_FN(RX3_A), GPIO_FN(VI0_R0),
14968c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD3_B),
14978c2ecf20Sopenharmony_ci	GPIO_FN(SD2_CMD_A), GPIO_FN(TX2_A), GPIO_FN(VI0_G5),
14988c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD2_B),
14998c2ecf20Sopenharmony_ci	GPIO_FN(SD2_CLK_A), GPIO_FN(RX2_A), GPIO_FN(VI0_G4),
15008c2ecf20Sopenharmony_ci		GPIO_FN(ET0_RX_CLK_B),
15018c2ecf20Sopenharmony_ci
15028c2ecf20Sopenharmony_ci	/* IPSR6 */
15038c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG1), GPIO_FN(CTS1_C), GPIO_FN(HRTS0_D),
15048c2ecf20Sopenharmony_ci		GPIO_FN(TIOC1B_A), GPIO_FN(HIFD09),
15058c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG0), GPIO_FN(TX1_C), GPIO_FN(HSCK0_D),
15068c2ecf20Sopenharmony_ci		GPIO_FN(IECLK_A), GPIO_FN(TIOC1A_A), GPIO_FN(HIFD08),
15078c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR7), GPIO_FN(RX1_C), GPIO_FN(TIOC0D_A),
15088c2ecf20Sopenharmony_ci		GPIO_FN(HIFD07),
15098c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR6), GPIO_FN(SCK1_C), GPIO_FN(TIOC0C_A),
15108c2ecf20Sopenharmony_ci		GPIO_FN(HIFD06),
15118c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR5), GPIO_FN(RTS0_C), GPIO_FN(TIOC0B_A),
15128c2ecf20Sopenharmony_ci		GPIO_FN(HIFD05),
15138c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR4), GPIO_FN(CTS0_C), GPIO_FN(TIOC0A_A),
15148c2ecf20Sopenharmony_ci		GPIO_FN(HIFD04),
15158c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR3), GPIO_FN(TX0_B), GPIO_FN(TCLKD_A), GPIO_FN(HIFD03),
15168c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR2), GPIO_FN(RX0_B), GPIO_FN(TCLKC_A), GPIO_FN(HIFD02),
15178c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR1), GPIO_FN(SCK0_B), GPIO_FN(HTX0_D),
15188c2ecf20Sopenharmony_ci		GPIO_FN(IERX_A), GPIO_FN(TCLKB_A), GPIO_FN(HIFD01),
15198c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DR0), GPIO_FN(SCIF_CLK_B), GPIO_FN(HRX0_D),
15208c2ecf20Sopenharmony_ci		GPIO_FN(IETX_A), GPIO_FN(TCLKA_A), GPIO_FN(HIFD00),
15218c2ecf20Sopenharmony_ci
15228c2ecf20Sopenharmony_ci	/* IPSR7 */
15238c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB4), GPIO_FN(HIFINT),
15248c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB3), GPIO_FN(TX5_B), GPIO_FN(TIOC4D_A), GPIO_FN(HIFRD),
15258c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB2), GPIO_FN(RX5_B), GPIO_FN(RMII0_TXD1_B),
15268c2ecf20Sopenharmony_ci		GPIO_FN(TIOC4C_A), GPIO_FN(HIFWR),
15278c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB1), GPIO_FN(TX4_C), GPIO_FN(RMII0_TXD0_B),
15288c2ecf20Sopenharmony_ci		GPIO_FN(TIOC4B_A), GPIO_FN(HIFRS),
15298c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB0), GPIO_FN(RX4_C), GPIO_FN(RMII0_TXD_EN_B),
15308c2ecf20Sopenharmony_ci		GPIO_FN(TIOC4A_A), GPIO_FN(HIFCS),
15318c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG7), GPIO_FN(TX3_C), GPIO_FN(RMII0_RXD1_B),
15328c2ecf20Sopenharmony_ci		GPIO_FN(TIOC3D_A), GPIO_FN(HIFD15),
15338c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG6), GPIO_FN(RX3_C), GPIO_FN(RMII0_RXD0_B),
15348c2ecf20Sopenharmony_ci		GPIO_FN(TIOC3C_A), GPIO_FN(HIFD14),
15358c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG5), GPIO_FN(TX2_C), GPIO_FN(RMII0_RX_ER_B),
15368c2ecf20Sopenharmony_ci		GPIO_FN(TIOC3B_A), GPIO_FN(HIFD13),
15378c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG4), GPIO_FN(RX2_C), GPIO_FN(RMII0_CRS_DV_B),
15388c2ecf20Sopenharmony_ci		GPIO_FN(TIOC3A_A), GPIO_FN(HIFD12),
15398c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG3), GPIO_FN(SCK2_C), GPIO_FN(RMII0_MDIO_B),
15408c2ecf20Sopenharmony_ci		GPIO_FN(TIOC2B_A), GPIO_FN(HIFD11),
15418c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DG2), GPIO_FN(RTS1_C), GPIO_FN(RMII0_MDC_B),
15428c2ecf20Sopenharmony_ci		GPIO_FN(TIOC2A_A), GPIO_FN(HIFD10),
15438c2ecf20Sopenharmony_ci
15448c2ecf20Sopenharmony_ci	/* IPSR8 */
15458c2ecf20Sopenharmony_ci	GPIO_FN(IRQ3_A), GPIO_FN(RTS0_A), GPIO_FN(HRTS0_B),
15468c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD3_A),
15478c2ecf20Sopenharmony_ci	GPIO_FN(IRQ2_A), GPIO_FN(CTS0_A), GPIO_FN(HCTS0_B),
15488c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD2_A),
15498c2ecf20Sopenharmony_ci	GPIO_FN(IRQ1_A), GPIO_FN(HSPI_RX_B), GPIO_FN(TX3_E),
15508c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD1),
15518c2ecf20Sopenharmony_ci	GPIO_FN(IRQ0_A), GPIO_FN(HSPI_TX_B), GPIO_FN(RX3_E),
15528c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD0),
15538c2ecf20Sopenharmony_ci	GPIO_FN(DU0_CDE), GPIO_FN(HTX0_B), GPIO_FN(AUDIO_CLKB_B),
15548c2ecf20Sopenharmony_ci		GPIO_FN(LCD_VCPWC_B),
15558c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DISP), GPIO_FN(CAN0_TX_B), GPIO_FN(HRX0_B),
15568c2ecf20Sopenharmony_ci		GPIO_FN(AUDIO_CLKA_B),
15578c2ecf20Sopenharmony_ci	GPIO_FN(DU0_EXODDF_DU0_ODDF), GPIO_FN(CAN0_RX_B), GPIO_FN(HSCK0_B),
15588c2ecf20Sopenharmony_ci		GPIO_FN(SSI_SDATA1_B),
15598c2ecf20Sopenharmony_ci	GPIO_FN(DU0_EXVSYNC_DU0_VSYNC), GPIO_FN(HSPI_RX0_C),
15608c2ecf20Sopenharmony_ci		GPIO_FN(SSI_WS1_B),
15618c2ecf20Sopenharmony_ci	GPIO_FN(DU0_EXHSYNC_DU0_HSYNC), GPIO_FN(HSPI_TX0_C),
15628c2ecf20Sopenharmony_ci		GPIO_FN(SSI_SCK1_B),
15638c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DOTCLKOUT), GPIO_FN(HSPI_CLK0_C),
15648c2ecf20Sopenharmony_ci		GPIO_FN(SSI_SDATA0_B),
15658c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DOTCLKIN), GPIO_FN(HSPI_CS0_C),
15668c2ecf20Sopenharmony_ci		GPIO_FN(SSI_WS0_B),
15678c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB7), GPIO_FN(SSI_SCK0_B), GPIO_FN(HIFEBL_B),
15688c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB6), GPIO_FN(HIFRDY),
15698c2ecf20Sopenharmony_ci	GPIO_FN(DU0_DB5), GPIO_FN(HIFDREQ),
15708c2ecf20Sopenharmony_ci
15718c2ecf20Sopenharmony_ci	/* IPSR9 */
15728c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SDATA1_A), GPIO_FN(VI1_3_B), GPIO_FN(LCD_DATA14_B),
15738c2ecf20Sopenharmony_ci	GPIO_FN(SSI_WS1_A), GPIO_FN(VI1_2_B), GPIO_FN(LCD_DATA13_B),
15748c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SCK1_A), GPIO_FN(VI1_1_B), GPIO_FN(TIOC2B_B),
15758c2ecf20Sopenharmony_ci		GPIO_FN(LCD_DATA12_B),
15768c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SDATA0_A), GPIO_FN(VI1_0_B), GPIO_FN(TIOC2A_B),
15778c2ecf20Sopenharmony_ci		GPIO_FN(LCD_DATA11_B),
15788c2ecf20Sopenharmony_ci	GPIO_FN(SSI_WS0_A), GPIO_FN(TIOC1B_B), GPIO_FN(LCD_DATA10_B),
15798c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SCK0_A), GPIO_FN(TIOC1A_B), GPIO_FN(LCD_DATA9_B),
15808c2ecf20Sopenharmony_ci	GPIO_FN(VI1_7_A), GPIO_FN(FCE_B), GPIO_FN(LCD_DATA8_B),
15818c2ecf20Sopenharmony_ci	GPIO_FN(VI1_6_A), GPIO_FN(FD7_B), GPIO_FN(LCD_DATA7_B),
15828c2ecf20Sopenharmony_ci	GPIO_FN(VI1_5_A), GPIO_FN(FD6_B), GPIO_FN(LCD_DATA6_B),
15838c2ecf20Sopenharmony_ci	GPIO_FN(VI1_4_A), GPIO_FN(FD5_B), GPIO_FN(LCD_DATA5_B),
15848c2ecf20Sopenharmony_ci	GPIO_FN(VI1_3_A), GPIO_FN(FD4_B), GPIO_FN(LCD_DATA4_B),
15858c2ecf20Sopenharmony_ci	GPIO_FN(VI1_2_A), GPIO_FN(FD3_B), GPIO_FN(LCD_DATA3_B),
15868c2ecf20Sopenharmony_ci	GPIO_FN(VI1_1_A), GPIO_FN(FD2_B), GPIO_FN(LCD_DATA2_B),
15878c2ecf20Sopenharmony_ci	GPIO_FN(VI1_0_A), GPIO_FN(FD1_B), GPIO_FN(LCD_DATA1_B),
15888c2ecf20Sopenharmony_ci	GPIO_FN(VI1_CLK_A), GPIO_FN(FD0_B), GPIO_FN(LCD_DATA0_B),
15898c2ecf20Sopenharmony_ci
15908c2ecf20Sopenharmony_ci	/* IPSR10 */
15918c2ecf20Sopenharmony_ci	GPIO_FN(CAN1_TX_A), GPIO_FN(TX5_C), GPIO_FN(MLB_DAT),
15928c2ecf20Sopenharmony_ci	GPIO_FN(CAN0_RX_A), GPIO_FN(IRQ0_B), GPIO_FN(MLB_SIG),
15938c2ecf20Sopenharmony_ci	GPIO_FN(CAN1_RX_A), GPIO_FN(IRQ1_B),
15948c2ecf20Sopenharmony_ci	GPIO_FN(CAN0_TX_A), GPIO_FN(TX4_D), GPIO_FN(MLB_CLK),
15958c2ecf20Sopenharmony_ci	GPIO_FN(CAN_CLK_A), GPIO_FN(RX4_D),
15968c2ecf20Sopenharmony_ci	GPIO_FN(AUDIO_CLKOUT), GPIO_FN(TX1_E), GPIO_FN(HRTS0_C),
15978c2ecf20Sopenharmony_ci		GPIO_FN(FSE_B), GPIO_FN(LCD_M_DISP_B),
15988c2ecf20Sopenharmony_ci	GPIO_FN(AUDIO_CLKC), GPIO_FN(SCK1_E), GPIO_FN(HCTS0_C),
15998c2ecf20Sopenharmony_ci		GPIO_FN(FRB_B), GPIO_FN(LCD_VEPWC_B),
16008c2ecf20Sopenharmony_ci	GPIO_FN(AUDIO_CLKB_A), GPIO_FN(LCD_CLK_B),
16018c2ecf20Sopenharmony_ci	GPIO_FN(AUDIO_CLKA_A), GPIO_FN(VI1_CLK_B), GPIO_FN(SCK1_D),
16028c2ecf20Sopenharmony_ci		GPIO_FN(IECLK_B), GPIO_FN(LCD_FLM_B),
16038c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SDATA3), GPIO_FN(VI1_7_B), GPIO_FN(HTX0_C),
16048c2ecf20Sopenharmony_ci		GPIO_FN(FWE_B), GPIO_FN(LCD_CL2_B),
16058c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SDATA2), GPIO_FN(VI1_6_B), GPIO_FN(HRX0_C),
16068c2ecf20Sopenharmony_ci		GPIO_FN(FRE_B), GPIO_FN(LCD_CL1_B),
16078c2ecf20Sopenharmony_ci	GPIO_FN(SSI_WS23), GPIO_FN(VI1_5_B), GPIO_FN(TX1_D),
16088c2ecf20Sopenharmony_ci		GPIO_FN(HSCK0_C), GPIO_FN(FALE_B), GPIO_FN(LCD_DON_B),
16098c2ecf20Sopenharmony_ci	GPIO_FN(SSI_SCK23), GPIO_FN(VI1_4_B), GPIO_FN(RX1_D),
16108c2ecf20Sopenharmony_ci		GPIO_FN(FCLE_B), GPIO_FN(LCD_DATA15_B),
16118c2ecf20Sopenharmony_ci
16128c2ecf20Sopenharmony_ci	/* IPSR11 */
16138c2ecf20Sopenharmony_ci	GPIO_FN(PRESETOUT), GPIO_FN(ST_CLKOUT),
16148c2ecf20Sopenharmony_ci	GPIO_FN(DACK1), GPIO_FN(HSPI_CS_B), GPIO_FN(TX4_B),
16158c2ecf20Sopenharmony_ci		GPIO_FN(ET0_RX_CLK_A),
16168c2ecf20Sopenharmony_ci	GPIO_FN(DREQ1), GPIO_FN(HSPI_CLK_B), GPIO_FN(RX4_B),
16178c2ecf20Sopenharmony_ci		GPIO_FN(ET0_PHY_INT_C), GPIO_FN(ET0_TX_CLK_A),
16188c2ecf20Sopenharmony_ci	GPIO_FN(DACK0), GPIO_FN(SD1_DAT3_A), GPIO_FN(ET0_TX_ER),
16198c2ecf20Sopenharmony_ci	GPIO_FN(DREQ0), GPIO_FN(SD1_CLK_A), GPIO_FN(ET0_TX_EN),
16208c2ecf20Sopenharmony_ci	GPIO_FN(USB_OVC1), GPIO_FN(RX3_D), GPIO_FN(CAN1_RX_B),
16218c2ecf20Sopenharmony_ci		GPIO_FN(RX5_D), GPIO_FN(IERX_B),
16228c2ecf20Sopenharmony_ci	GPIO_FN(PENC1), GPIO_FN(TX3_D), GPIO_FN(CAN1_TX_B),
16238c2ecf20Sopenharmony_ci		GPIO_FN(TX5_D), GPIO_FN(IETX_B),
16248c2ecf20Sopenharmony_ci	GPIO_FN(TX0_A), GPIO_FN(HSPI_TX_A),
16258c2ecf20Sopenharmony_ci	GPIO_FN(RX0_A), GPIO_FN(HSPI_RX_A), GPIO_FN(RMII0_RXD0_A),
16268c2ecf20Sopenharmony_ci		GPIO_FN(ET0_ERXD6),
16278c2ecf20Sopenharmony_ci	GPIO_FN(SCK0_A), GPIO_FN(HSPI_CS_A), GPIO_FN(VI0_CLKENB),
16288c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_TXD1_A), GPIO_FN(ET0_ERXD5),
16298c2ecf20Sopenharmony_ci	GPIO_FN(SCIF_CLK_A), GPIO_FN(HSPI_CLK_A), GPIO_FN(VI0_CLK),
16308c2ecf20Sopenharmony_ci		GPIO_FN(RMII0_TXD0_A), GPIO_FN(ET0_ERXD4),
16318c2ecf20Sopenharmony_ci	GPIO_FN(SDSELF), GPIO_FN(RTS1_E),
16328c2ecf20Sopenharmony_ci	GPIO_FN(SDA0), GPIO_FN(HIFEBL_A),
16338c2ecf20Sopenharmony_ci	GPIO_FN(SDA1), GPIO_FN(RX1_E),
16348c2ecf20Sopenharmony_ci	GPIO_FN(SCL1), GPIO_FN(SCIF_CLK_C),
16358c2ecf20Sopenharmony_ci};
16368c2ecf20Sopenharmony_ci
16378c2ecf20Sopenharmony_cistatic const struct pinmux_cfg_reg pinmux_config_regs[] = {
16388c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR0", 0xFFFC0004, 32, 1, GROUP(
16398c2ecf20Sopenharmony_ci		GP_0_31_FN, FN_IP2_2_0,
16408c2ecf20Sopenharmony_ci		GP_0_30_FN, FN_IP1_31_29,
16418c2ecf20Sopenharmony_ci		GP_0_29_FN, FN_IP1_28_26,
16428c2ecf20Sopenharmony_ci		GP_0_28_FN, FN_IP1_25_23,
16438c2ecf20Sopenharmony_ci		GP_0_27_FN, FN_IP1_22_20,
16448c2ecf20Sopenharmony_ci		GP_0_26_FN, FN_IP1_19_18,
16458c2ecf20Sopenharmony_ci		GP_0_25_FN, FN_IP1_17_16,
16468c2ecf20Sopenharmony_ci		GP_0_24_FN, FN_IP0_5_4,
16478c2ecf20Sopenharmony_ci		GP_0_23_FN, FN_IP0_3_2,
16488c2ecf20Sopenharmony_ci		GP_0_22_FN, FN_IP0_1_0,
16498c2ecf20Sopenharmony_ci		GP_0_21_FN, FN_IP11_28,
16508c2ecf20Sopenharmony_ci		GP_0_20_FN, FN_IP1_7_6,
16518c2ecf20Sopenharmony_ci		GP_0_19_FN, FN_IP1_5_4,
16528c2ecf20Sopenharmony_ci		GP_0_18_FN, FN_IP1_3_2,
16538c2ecf20Sopenharmony_ci		GP_0_17_FN, FN_IP1_1_0,
16548c2ecf20Sopenharmony_ci		GP_0_16_FN, FN_IP0_31_30,
16558c2ecf20Sopenharmony_ci		GP_0_15_FN, FN_IP0_29_28,
16568c2ecf20Sopenharmony_ci		GP_0_14_FN, FN_IP0_27_26,
16578c2ecf20Sopenharmony_ci		GP_0_13_FN, FN_IP0_25_24,
16588c2ecf20Sopenharmony_ci		GP_0_12_FN, FN_IP0_23_22,
16598c2ecf20Sopenharmony_ci		GP_0_11_FN, FN_IP0_21_20,
16608c2ecf20Sopenharmony_ci		GP_0_10_FN, FN_IP0_19_18,
16618c2ecf20Sopenharmony_ci		GP_0_9_FN, FN_IP0_17_16,
16628c2ecf20Sopenharmony_ci		GP_0_8_FN, FN_IP0_15_14,
16638c2ecf20Sopenharmony_ci		GP_0_7_FN, FN_IP0_13_12,
16648c2ecf20Sopenharmony_ci		GP_0_6_FN, FN_IP0_11_10,
16658c2ecf20Sopenharmony_ci		GP_0_5_FN, FN_IP0_9_8,
16668c2ecf20Sopenharmony_ci		GP_0_4_FN, FN_IP0_7_6,
16678c2ecf20Sopenharmony_ci		GP_0_3_FN, FN_IP1_15_14,
16688c2ecf20Sopenharmony_ci		GP_0_2_FN, FN_IP1_13_12,
16698c2ecf20Sopenharmony_ci		GP_0_1_FN, FN_IP1_11_10,
16708c2ecf20Sopenharmony_ci		GP_0_0_FN, FN_IP1_9_8 ))
16718c2ecf20Sopenharmony_ci	},
16728c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR1", 0xFFFC0008, 32, 1, GROUP(
16738c2ecf20Sopenharmony_ci		GP_1_31_FN, FN_IP11_25_23,
16748c2ecf20Sopenharmony_ci		GP_1_30_FN, FN_IP2_13_11,
16758c2ecf20Sopenharmony_ci		GP_1_29_FN, FN_IP2_10_8,
16768c2ecf20Sopenharmony_ci		GP_1_28_FN, FN_IP2_7_5,
16778c2ecf20Sopenharmony_ci		GP_1_27_FN, FN_IP3_26_24,
16788c2ecf20Sopenharmony_ci		GP_1_26_FN, FN_IP3_23_21,
16798c2ecf20Sopenharmony_ci		GP_1_25_FN, FN_IP2_4_3,
16808c2ecf20Sopenharmony_ci		GP_1_24_FN, FN_WE1,
16818c2ecf20Sopenharmony_ci		GP_1_23_FN, FN_WE0,
16828c2ecf20Sopenharmony_ci		GP_1_22_FN, FN_IP3_19_18,
16838c2ecf20Sopenharmony_ci		GP_1_21_FN, FN_RD,
16848c2ecf20Sopenharmony_ci		GP_1_20_FN, FN_IP3_17_15,
16858c2ecf20Sopenharmony_ci		GP_1_19_FN, FN_IP3_14_12,
16868c2ecf20Sopenharmony_ci		GP_1_18_FN, FN_IP3_11_9,
16878c2ecf20Sopenharmony_ci		GP_1_17_FN, FN_IP3_8_6,
16888c2ecf20Sopenharmony_ci		GP_1_16_FN, FN_IP3_5_3,
16898c2ecf20Sopenharmony_ci		GP_1_15_FN, FN_EX_CS0,
16908c2ecf20Sopenharmony_ci		GP_1_14_FN, FN_IP3_2,
16918c2ecf20Sopenharmony_ci		GP_1_13_FN, FN_CS0,
16928c2ecf20Sopenharmony_ci		GP_1_12_FN, FN_BS,
16938c2ecf20Sopenharmony_ci		GP_1_11_FN, FN_CLKOUT,
16948c2ecf20Sopenharmony_ci		GP_1_10_FN, FN_IP3_1_0,
16958c2ecf20Sopenharmony_ci		GP_1_9_FN, FN_IP2_30_28,
16968c2ecf20Sopenharmony_ci		GP_1_8_FN, FN_IP2_27_25,
16978c2ecf20Sopenharmony_ci		GP_1_7_FN, FN_IP2_24_23,
16988c2ecf20Sopenharmony_ci		GP_1_6_FN, FN_IP2_22_20,
16998c2ecf20Sopenharmony_ci		GP_1_5_FN, FN_IP2_19_17,
17008c2ecf20Sopenharmony_ci		GP_1_4_FN, FN_IP2_16_14,
17018c2ecf20Sopenharmony_ci		GP_1_3_FN, FN_IP11_22_21,
17028c2ecf20Sopenharmony_ci		GP_1_2_FN, FN_IP11_20_19,
17038c2ecf20Sopenharmony_ci		GP_1_1_FN, FN_IP3_29_27,
17048c2ecf20Sopenharmony_ci		GP_1_0_FN, FN_IP3_20 ))
17058c2ecf20Sopenharmony_ci	},
17068c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR2", 0xFFFC000C, 32, 1, GROUP(
17078c2ecf20Sopenharmony_ci		GP_2_31_FN, FN_IP4_31_30,
17088c2ecf20Sopenharmony_ci		GP_2_30_FN, FN_IP5_2_0,
17098c2ecf20Sopenharmony_ci		GP_2_29_FN, FN_IP5_5_3,
17108c2ecf20Sopenharmony_ci		GP_2_28_FN, FN_IP5_8_6,
17118c2ecf20Sopenharmony_ci		GP_2_27_FN, FN_IP5_11_9,
17128c2ecf20Sopenharmony_ci		GP_2_26_FN, FN_IP5_14_12,
17138c2ecf20Sopenharmony_ci		GP_2_25_FN, FN_IP5_17_15,
17148c2ecf20Sopenharmony_ci		GP_2_24_FN, FN_IP5_20_18,
17158c2ecf20Sopenharmony_ci		GP_2_23_FN, FN_IP5_22_21,
17168c2ecf20Sopenharmony_ci		GP_2_22_FN, FN_IP5_24_23,
17178c2ecf20Sopenharmony_ci		GP_2_21_FN, FN_IP5_26_25,
17188c2ecf20Sopenharmony_ci		GP_2_20_FN, FN_IP4_29_28,
17198c2ecf20Sopenharmony_ci		GP_2_19_FN, FN_IP4_27_26,
17208c2ecf20Sopenharmony_ci		GP_2_18_FN, FN_IP4_25_24,
17218c2ecf20Sopenharmony_ci		GP_2_17_FN, FN_IP4_23_22,
17228c2ecf20Sopenharmony_ci		GP_2_16_FN, FN_IP4_21_20,
17238c2ecf20Sopenharmony_ci		GP_2_15_FN, FN_IP4_19_18,
17248c2ecf20Sopenharmony_ci		GP_2_14_FN, FN_IP4_17_15,
17258c2ecf20Sopenharmony_ci		GP_2_13_FN, FN_IP4_14_12,
17268c2ecf20Sopenharmony_ci		GP_2_12_FN, FN_IP4_11_9,
17278c2ecf20Sopenharmony_ci		GP_2_11_FN, FN_IP4_8_6,
17288c2ecf20Sopenharmony_ci		GP_2_10_FN, FN_IP4_5_3,
17298c2ecf20Sopenharmony_ci		GP_2_9_FN, FN_IP8_27_26,
17308c2ecf20Sopenharmony_ci		GP_2_8_FN, FN_IP11_12,
17318c2ecf20Sopenharmony_ci		GP_2_7_FN, FN_IP8_25_23,
17328c2ecf20Sopenharmony_ci		GP_2_6_FN, FN_IP8_22_20,
17338c2ecf20Sopenharmony_ci		GP_2_5_FN, FN_IP11_27_26,
17348c2ecf20Sopenharmony_ci		GP_2_4_FN, FN_IP8_29_28,
17358c2ecf20Sopenharmony_ci		GP_2_3_FN, FN_IP4_2_0,
17368c2ecf20Sopenharmony_ci		GP_2_2_FN, FN_IP11_11_10,
17378c2ecf20Sopenharmony_ci		GP_2_1_FN, FN_IP11_9_7,
17388c2ecf20Sopenharmony_ci		GP_2_0_FN, FN_IP11_6_4 ))
17398c2ecf20Sopenharmony_ci	},
17408c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR3", 0xFFFC0010, 32, 1, GROUP(
17418c2ecf20Sopenharmony_ci		GP_3_31_FN, FN_IP9_1_0,
17428c2ecf20Sopenharmony_ci		GP_3_30_FN, FN_IP8_19_18,
17438c2ecf20Sopenharmony_ci		GP_3_29_FN, FN_IP8_17_16,
17448c2ecf20Sopenharmony_ci		GP_3_28_FN, FN_IP8_15_14,
17458c2ecf20Sopenharmony_ci		GP_3_27_FN, FN_IP8_13_12,
17468c2ecf20Sopenharmony_ci		GP_3_26_FN, FN_IP8_11_10,
17478c2ecf20Sopenharmony_ci		GP_3_25_FN, FN_IP8_9_8,
17488c2ecf20Sopenharmony_ci		GP_3_24_FN, FN_IP8_7_6,
17498c2ecf20Sopenharmony_ci		GP_3_23_FN, FN_IP8_5_4,
17508c2ecf20Sopenharmony_ci		GP_3_22_FN, FN_IP8_3_2,
17518c2ecf20Sopenharmony_ci		GP_3_21_FN, FN_IP8_1_0,
17528c2ecf20Sopenharmony_ci		GP_3_20_FN, FN_IP7_30_29,
17538c2ecf20Sopenharmony_ci		GP_3_19_FN, FN_IP7_28_27,
17548c2ecf20Sopenharmony_ci		GP_3_18_FN, FN_IP7_26_24,
17558c2ecf20Sopenharmony_ci		GP_3_17_FN, FN_IP7_23_21,
17568c2ecf20Sopenharmony_ci		GP_3_16_FN, FN_IP7_20_18,
17578c2ecf20Sopenharmony_ci		GP_3_15_FN, FN_IP7_17_15,
17588c2ecf20Sopenharmony_ci		GP_3_14_FN, FN_IP7_14_12,
17598c2ecf20Sopenharmony_ci		GP_3_13_FN, FN_IP7_11_9,
17608c2ecf20Sopenharmony_ci		GP_3_12_FN, FN_IP7_8_6,
17618c2ecf20Sopenharmony_ci		GP_3_11_FN, FN_IP7_5_3,
17628c2ecf20Sopenharmony_ci		GP_3_10_FN, FN_IP7_2_0,
17638c2ecf20Sopenharmony_ci		GP_3_9_FN, FN_IP6_23_21,
17648c2ecf20Sopenharmony_ci		GP_3_8_FN, FN_IP6_20_18,
17658c2ecf20Sopenharmony_ci		GP_3_7_FN, FN_IP6_17_16,
17668c2ecf20Sopenharmony_ci		GP_3_6_FN, FN_IP6_15_14,
17678c2ecf20Sopenharmony_ci		GP_3_5_FN, FN_IP6_13_12,
17688c2ecf20Sopenharmony_ci		GP_3_4_FN, FN_IP6_11_10,
17698c2ecf20Sopenharmony_ci		GP_3_3_FN, FN_IP6_9_8,
17708c2ecf20Sopenharmony_ci		GP_3_2_FN, FN_IP6_7_6,
17718c2ecf20Sopenharmony_ci		GP_3_1_FN, FN_IP6_5_3,
17728c2ecf20Sopenharmony_ci		GP_3_0_FN, FN_IP6_2_0 ))
17738c2ecf20Sopenharmony_ci	},
17748c2ecf20Sopenharmony_ci
17758c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR4", 0xFFFC0014, 32, 1, GROUP(
17768c2ecf20Sopenharmony_ci		GP_4_31_FN, FN_IP10_24_23,
17778c2ecf20Sopenharmony_ci		GP_4_30_FN, FN_IP10_22,
17788c2ecf20Sopenharmony_ci		GP_4_29_FN, FN_IP11_18_16,
17798c2ecf20Sopenharmony_ci		GP_4_28_FN, FN_USB_OVC0,
17808c2ecf20Sopenharmony_ci		GP_4_27_FN, FN_IP11_15_13,
17818c2ecf20Sopenharmony_ci		GP_4_26_FN, FN_PENC0,
17828c2ecf20Sopenharmony_ci		GP_4_25_FN, FN_IP11_2,
17838c2ecf20Sopenharmony_ci		GP_4_24_FN, FN_SCL0,
17848c2ecf20Sopenharmony_ci		GP_4_23_FN, FN_IP11_1,
17858c2ecf20Sopenharmony_ci		GP_4_22_FN, FN_IP11_0,
17868c2ecf20Sopenharmony_ci		GP_4_21_FN, FN_IP10_21_19,
17878c2ecf20Sopenharmony_ci		GP_4_20_FN, FN_IP10_18_16,
17888c2ecf20Sopenharmony_ci		GP_4_19_FN, FN_IP10_15,
17898c2ecf20Sopenharmony_ci		GP_4_18_FN, FN_IP10_14_12,
17908c2ecf20Sopenharmony_ci		GP_4_17_FN, FN_IP10_11_9,
17918c2ecf20Sopenharmony_ci		GP_4_16_FN, FN_IP10_8_6,
17928c2ecf20Sopenharmony_ci		GP_4_15_FN, FN_IP10_5_3,
17938c2ecf20Sopenharmony_ci		GP_4_14_FN, FN_IP10_2_0,
17948c2ecf20Sopenharmony_ci		GP_4_13_FN, FN_IP9_29_28,
17958c2ecf20Sopenharmony_ci		GP_4_12_FN, FN_IP9_27_26,
17968c2ecf20Sopenharmony_ci		GP_4_11_FN, FN_IP9_9_8,
17978c2ecf20Sopenharmony_ci		GP_4_10_FN, FN_IP9_7_6,
17988c2ecf20Sopenharmony_ci		GP_4_9_FN, FN_IP9_5_4,
17998c2ecf20Sopenharmony_ci		GP_4_8_FN, FN_IP9_3_2,
18008c2ecf20Sopenharmony_ci		GP_4_7_FN, FN_IP9_17_16,
18018c2ecf20Sopenharmony_ci		GP_4_6_FN, FN_IP9_15_14,
18028c2ecf20Sopenharmony_ci		GP_4_5_FN, FN_IP9_13_12,
18038c2ecf20Sopenharmony_ci		GP_4_4_FN, FN_IP9_11_10,
18048c2ecf20Sopenharmony_ci		GP_4_3_FN, FN_IP9_25_24,
18058c2ecf20Sopenharmony_ci		GP_4_2_FN, FN_IP9_23_22,
18068c2ecf20Sopenharmony_ci		GP_4_1_FN, FN_IP9_21_20,
18078c2ecf20Sopenharmony_ci		GP_4_0_FN, FN_IP9_19_18 ))
18088c2ecf20Sopenharmony_ci	},
18098c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("GPSR5", 0xFFFC0018, 32, 1, GROUP(
18108c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 31 - 28 */
18118c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 27 - 24 */
18128c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 23 - 20 */
18138c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 19 - 16 */
18148c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 15 - 12 */
18158c2ecf20Sopenharmony_ci		GP_5_11_FN, FN_IP10_29_28,
18168c2ecf20Sopenharmony_ci		GP_5_10_FN, FN_IP10_27_26,
18178c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 9 - 6 */
18188c2ecf20Sopenharmony_ci		0, 0, 0, 0, /* 5, 4 */
18198c2ecf20Sopenharmony_ci		GP_5_3_FN, FN_IRQ3_B,
18208c2ecf20Sopenharmony_ci		GP_5_2_FN, FN_IRQ2_B,
18218c2ecf20Sopenharmony_ci		GP_5_1_FN, FN_IP11_3,
18228c2ecf20Sopenharmony_ci		GP_5_0_FN, FN_IP10_25 ))
18238c2ecf20Sopenharmony_ci	},
18248c2ecf20Sopenharmony_ci
18258c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR0", 0xFFFC001C, 32,
18268c2ecf20Sopenharmony_ci			GROUP(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
18278c2ecf20Sopenharmony_ci			GROUP(
18288c2ecf20Sopenharmony_ci		/* IP0_31_30 [2] */
18298c2ecf20Sopenharmony_ci		FN_A15, FN_ST0_VCO_CLKIN, FN_LCD_DATA15_A,
18308c2ecf20Sopenharmony_ci			FN_TIOC3D_C,
18318c2ecf20Sopenharmony_ci		/* IP0_29_28 [2] */
18328c2ecf20Sopenharmony_ci		FN_A14, FN_LCD_DATA14_A, FN_TIOC3C_C, 0,
18338c2ecf20Sopenharmony_ci		/* IP0_27_26 [2] */
18348c2ecf20Sopenharmony_ci		FN_A13, FN_LCD_DATA13_A, FN_TIOC3B_C, 0,
18358c2ecf20Sopenharmony_ci		/* IP0_25_24 [2] */
18368c2ecf20Sopenharmony_ci		FN_A12, FN_LCD_DATA12_A, FN_TIOC3A_C, 0,
18378c2ecf20Sopenharmony_ci		/* IP0_23_22 [2] */
18388c2ecf20Sopenharmony_ci		FN_A11, FN_ST0_D7, FN_LCD_DATA11_A, FN_TIOC2B_C,
18398c2ecf20Sopenharmony_ci		/* IP0_21_20 [2] */
18408c2ecf20Sopenharmony_ci		FN_A10, FN_ST0_D6, FN_LCD_DATA10_A, FN_TIOC2A_C,
18418c2ecf20Sopenharmony_ci		/* IP0_19_18 [2] */
18428c2ecf20Sopenharmony_ci		FN_A9, FN_ST0_D5, FN_LCD_DATA9_A, FN_TIOC1B_C,
18438c2ecf20Sopenharmony_ci		/* IP0_17_16 [2] */
18448c2ecf20Sopenharmony_ci		FN_A8, FN_ST0_D4, FN_LCD_DATA8_A, FN_TIOC1A_C,
18458c2ecf20Sopenharmony_ci		/* IP0_15_14 [2] */
18468c2ecf20Sopenharmony_ci		FN_A7, FN_ST0_D3, FN_LCD_DATA7_A, FN_TIOC0D_C,
18478c2ecf20Sopenharmony_ci		/* IP0_13_12 [2] */
18488c2ecf20Sopenharmony_ci		FN_A6, FN_ST0_D2, FN_LCD_DATA6_A, FN_TIOC0C_C,
18498c2ecf20Sopenharmony_ci		/* IP0_11_10 [2] */
18508c2ecf20Sopenharmony_ci		FN_A5, FN_ST0_D1, FN_LCD_DATA5_A, FN_TIOC0B_C,
18518c2ecf20Sopenharmony_ci		/* IP0_9_8 [2] */
18528c2ecf20Sopenharmony_ci		FN_A4, FN_ST0_D0, FN_LCD_DATA4_A, FN_TIOC0A_C,
18538c2ecf20Sopenharmony_ci		/* IP0_7_6 [2] */
18548c2ecf20Sopenharmony_ci		FN_A3, FN_ST0_VLD, FN_LCD_DATA3_A, FN_TCLKD_C,
18558c2ecf20Sopenharmony_ci		/* IP0_5_4 [2] */
18568c2ecf20Sopenharmony_ci		FN_A2, FN_ST0_SYC, FN_LCD_DATA2_A, FN_TCLKC_C,
18578c2ecf20Sopenharmony_ci		/* IP0_3_2 [2] */
18588c2ecf20Sopenharmony_ci		FN_A1, FN_ST0_REQ, FN_LCD_DATA1_A, FN_TCLKB_C,
18598c2ecf20Sopenharmony_ci		/* IP0_1_0 [2] */
18608c2ecf20Sopenharmony_ci		FN_A0, FN_ST0_CLKIN, FN_LCD_DATA0_A, FN_TCLKA_C ))
18618c2ecf20Sopenharmony_ci	},
18628c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR1", 0xFFFC0020, 32,
18638c2ecf20Sopenharmony_ci			GROUP(3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
18648c2ecf20Sopenharmony_ci			GROUP(
18658c2ecf20Sopenharmony_ci		/* IP1_31_29 [3] */
18668c2ecf20Sopenharmony_ci		FN_D3, FN_SD0_DAT3_A, FN_MMC_D3_A, FN_ST1_D6,
18678c2ecf20Sopenharmony_ci			FN_FD3_A, 0, 0, 0,
18688c2ecf20Sopenharmony_ci		/* IP1_28_26 [3] */
18698c2ecf20Sopenharmony_ci		FN_D2, FN_SD0_DAT2_A, FN_MMC_D2_A, FN_ST1_D5,
18708c2ecf20Sopenharmony_ci			FN_FD2_A, 0, 0, 0,
18718c2ecf20Sopenharmony_ci		/* IP1_25_23 [3] */
18728c2ecf20Sopenharmony_ci		FN_D1, FN_SD0_DAT1_A, FN_MMC_D1_A, FN_ST1_D4,
18738c2ecf20Sopenharmony_ci			FN_FD1_A, 0, 0, 0,
18748c2ecf20Sopenharmony_ci		/* IP1_22_20 [3] */
18758c2ecf20Sopenharmony_ci		FN_D0, FN_SD0_DAT0_A, FN_MMC_D0_A, FN_ST1_D3,
18768c2ecf20Sopenharmony_ci			FN_FD0_A, 0, 0, 0,
18778c2ecf20Sopenharmony_ci		/* IP1_19_18 [2] */
18788c2ecf20Sopenharmony_ci		FN_A25, FN_TX2_D, FN_ST1_D2, 0,
18798c2ecf20Sopenharmony_ci		/* IP1_17_16 [2] */
18808c2ecf20Sopenharmony_ci		FN_A24, FN_RX2_D, FN_ST1_D1, 0,
18818c2ecf20Sopenharmony_ci		/* IP1_15_14 [2] */
18828c2ecf20Sopenharmony_ci		FN_A23, FN_ST1_D0, FN_LCD_M_DISP_A, 0,
18838c2ecf20Sopenharmony_ci		/* IP1_13_12 [2] */
18848c2ecf20Sopenharmony_ci		FN_A22, FN_ST1_VLD, FN_LCD_VEPWC_A, 0,
18858c2ecf20Sopenharmony_ci		/* IP1_11_10 [2] */
18868c2ecf20Sopenharmony_ci		FN_A21, FN_ST1_SYC, FN_LCD_VCPWC_A, 0,
18878c2ecf20Sopenharmony_ci		/* IP1_9_8 [2] */
18888c2ecf20Sopenharmony_ci		FN_A20, FN_ST1_REQ, FN_LCD_FLM_A, 0,
18898c2ecf20Sopenharmony_ci		/* IP1_7_6 [2] */
18908c2ecf20Sopenharmony_ci		FN_A19, FN_ST1_CLKIN, FN_LCD_CLK_A,	FN_TIOC4D_C,
18918c2ecf20Sopenharmony_ci		/* IP1_5_4 [2] */
18928c2ecf20Sopenharmony_ci		FN_A18, FN_ST1_PWM, FN_LCD_CL2_A, FN_TIOC4C_C,
18938c2ecf20Sopenharmony_ci		/* IP1_3_2 [2] */
18948c2ecf20Sopenharmony_ci		FN_A17, FN_ST1_VCO_CLKIN, FN_LCD_CL1_A,	FN_TIOC4B_C,
18958c2ecf20Sopenharmony_ci		/* IP1_1_0 [2] */
18968c2ecf20Sopenharmony_ci		FN_A16, FN_ST0_PWM, FN_LCD_DON_A, FN_TIOC4A_C ))
18978c2ecf20Sopenharmony_ci	},
18988c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR2", 0xFFFC0024, 32,
18998c2ecf20Sopenharmony_ci			     GROUP(1, 3, 3, 2, 3, 3, 3, 3, 3, 3, 2, 3),
19008c2ecf20Sopenharmony_ci			     GROUP(
19018c2ecf20Sopenharmony_ci		/* IP2_31 [1] */
19028c2ecf20Sopenharmony_ci		0, 0,
19038c2ecf20Sopenharmony_ci		/* IP2_30_28 [3] */
19048c2ecf20Sopenharmony_ci		FN_D14, FN_TX2_B, 0, FN_FSE_A,
19058c2ecf20Sopenharmony_ci			FN_ET0_TX_CLK_B, 0, 0, 0,
19068c2ecf20Sopenharmony_ci		/* IP2_27_25 [3] */
19078c2ecf20Sopenharmony_ci		FN_D13, FN_RX2_B, 0, FN_FRB_A,
19088c2ecf20Sopenharmony_ci			FN_ET0_ETXD6_B, 0, 0, 0,
19098c2ecf20Sopenharmony_ci		/* IP2_24_23 [2] */
19108c2ecf20Sopenharmony_ci		FN_D12, 0, FN_FWE_A, FN_ET0_ETXD5_B,
19118c2ecf20Sopenharmony_ci		/* IP2_22_20 [3] */
19128c2ecf20Sopenharmony_ci		FN_D11, FN_RSPI_MISO_A, 0, FN_QMI_QIO1_A,
19138c2ecf20Sopenharmony_ci			FN_FRE_A, FN_ET0_ETXD3_B, 0, 0,
19148c2ecf20Sopenharmony_ci		/* IP2_19_17 [3] */
19158c2ecf20Sopenharmony_ci		FN_D10, FN_RSPI_MOSI_A, 0, FN_QMO_QIO0_A,
19168c2ecf20Sopenharmony_ci			FN_FALE_A, FN_ET0_ETXD2_B, 0, 0,
19178c2ecf20Sopenharmony_ci		/* IP2_16_14 [3] */
19188c2ecf20Sopenharmony_ci		FN_D9, FN_SD0_CMD_A, FN_MMC_CMD_A, FN_QIO3_A,
19198c2ecf20Sopenharmony_ci			FN_FCLE_A, FN_ET0_ETXD1_B, 0, 0,
19208c2ecf20Sopenharmony_ci		/* IP2_13_11 [3] */
19218c2ecf20Sopenharmony_ci		FN_D8, FN_SD0_CLK_A, FN_MMC_CLK_A, FN_QIO2_A,
19228c2ecf20Sopenharmony_ci			FN_FCE_A, FN_ET0_GTX_CLK_B, 0, 0,
19238c2ecf20Sopenharmony_ci		/* IP2_10_8 [3] */
19248c2ecf20Sopenharmony_ci		FN_D7, FN_RSPI_SSL_A, FN_MMC_D7_A, FN_QSSL_A,
19258c2ecf20Sopenharmony_ci			FN_FD7_A, 0, 0, 0,
19268c2ecf20Sopenharmony_ci		/* IP2_7_5 [3] */
19278c2ecf20Sopenharmony_ci		FN_D6, FN_RSPI_RSPCK_A, FN_MMC_D6_A, FN_QSPCLK_A,
19288c2ecf20Sopenharmony_ci			FN_FD6_A, 0, 0, 0,
19298c2ecf20Sopenharmony_ci		/* IP2_4_3 [2] */
19308c2ecf20Sopenharmony_ci		FN_D5, FN_SD0_WP_A, FN_MMC_D5_A, FN_FD5_A,
19318c2ecf20Sopenharmony_ci		/* IP2_2_0 [3] */
19328c2ecf20Sopenharmony_ci		FN_D4, FN_SD0_CD_A, FN_MMC_D4_A, FN_ST1_D7,
19338c2ecf20Sopenharmony_ci			FN_FD4_A, 0, 0, 0 ))
19348c2ecf20Sopenharmony_ci	},
19358c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR3", 0xFFFC0028, 32,
19368c2ecf20Sopenharmony_ci			     GROUP(2, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 1, 2),
19378c2ecf20Sopenharmony_ci			     GROUP(
19388c2ecf20Sopenharmony_ci	    /* IP3_31_30 [2] */
19398c2ecf20Sopenharmony_ci		0, 0, 0, 0,
19408c2ecf20Sopenharmony_ci	    /* IP3_29_27 [3] */
19418c2ecf20Sopenharmony_ci		FN_DRACK0, FN_SD1_DAT2_A, FN_ATAG, FN_TCLK1_A,
19428c2ecf20Sopenharmony_ci		FN_ET0_ETXD7, 0, 0, 0,
19438c2ecf20Sopenharmony_ci	    /* IP3_26_24 [3] */
19448c2ecf20Sopenharmony_ci		FN_EX_WAIT2, FN_SD1_DAT1_A, FN_DACK2, FN_CAN1_RX_C,
19458c2ecf20Sopenharmony_ci		FN_ET0_MAGIC_C, FN_ET0_ETXD6_A, 0, 0,
19468c2ecf20Sopenharmony_ci	    /* IP3_23_21 [3] */
19478c2ecf20Sopenharmony_ci		FN_EX_WAIT1, FN_SD1_DAT0_A, FN_DREQ2, FN_CAN1_TX_C,
19488c2ecf20Sopenharmony_ci		FN_ET0_LINK_C, FN_ET0_ETXD5_A, 0, 0,
19498c2ecf20Sopenharmony_ci	    /* IP3_20 [1] */
19508c2ecf20Sopenharmony_ci		FN_EX_WAIT0, FN_TCLK1_B,
19518c2ecf20Sopenharmony_ci	    /* IP3_19_18 [2] */
19528c2ecf20Sopenharmony_ci		FN_RD_WR, FN_TCLK0, FN_CAN_CLK_B, FN_ET0_ETXD4,
19538c2ecf20Sopenharmony_ci	    /* IP3_17_15 [3] */
19548c2ecf20Sopenharmony_ci		FN_EX_CS5, FN_SD1_CMD_A, FN_ATADIR, FN_QSSL_B,
19558c2ecf20Sopenharmony_ci		FN_ET0_ETXD3_A, 0, 0, 0,
19568c2ecf20Sopenharmony_ci	    /* IP3_14_12 [3] */
19578c2ecf20Sopenharmony_ci		FN_EX_CS4, FN_SD1_WP_A, FN_ATAWR, FN_QMI_QIO1_B,
19588c2ecf20Sopenharmony_ci		FN_ET0_ETXD2_A, 0, 0, 0,
19598c2ecf20Sopenharmony_ci	    /* IP3_11_9 [3] */
19608c2ecf20Sopenharmony_ci		FN_EX_CS3, FN_SD1_CD_A, FN_ATARD, FN_QMO_QIO0_B,
19618c2ecf20Sopenharmony_ci		FN_ET0_ETXD1_A, 0, 0, 0,
19628c2ecf20Sopenharmony_ci	    /* IP3_8_6 [3] */
19638c2ecf20Sopenharmony_ci		FN_EX_CS2, FN_TX3_B, FN_ATACS1, FN_QSPCLK_B,
19648c2ecf20Sopenharmony_ci		FN_ET0_GTX_CLK_A, 0, 0, 0,
19658c2ecf20Sopenharmony_ci	    /* IP3_5_3 [3] */
19668c2ecf20Sopenharmony_ci		FN_EX_CS1, FN_RX3_B, FN_ATACS0, FN_QIO2_B,
19678c2ecf20Sopenharmony_ci		FN_ET0_ETXD0, 0, 0, 0,
19688c2ecf20Sopenharmony_ci	    /* IP3_2 [1] */
19698c2ecf20Sopenharmony_ci		FN_CS1_A26, FN_QIO3_B,
19708c2ecf20Sopenharmony_ci	    /* IP3_1_0 [2] */
19718c2ecf20Sopenharmony_ci		FN_D15, FN_SCK2_B, 0, 0 ))
19728c2ecf20Sopenharmony_ci	},
19738c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR4", 0xFFFC002C, 32,
19748c2ecf20Sopenharmony_ci			     GROUP(2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3),
19758c2ecf20Sopenharmony_ci			     GROUP(
19768c2ecf20Sopenharmony_ci	    /* IP4_31_30 [2] */
19778c2ecf20Sopenharmony_ci		0, FN_SCK2_A, FN_VI0_G3, 0,
19788c2ecf20Sopenharmony_ci	    /* IP4_29_28 [2] */
19798c2ecf20Sopenharmony_ci		0, FN_RTS1_B, FN_VI0_G2, 0,
19808c2ecf20Sopenharmony_ci	    /* IP4_27_26 [2] */
19818c2ecf20Sopenharmony_ci		0, FN_CTS1_B, FN_VI0_DATA7_VI0_G1, 0,
19828c2ecf20Sopenharmony_ci	    /* IP4_25_24 [2] */
19838c2ecf20Sopenharmony_ci		0, FN_TX1_B, FN_VI0_DATA6_VI0_G0, FN_ET0_PHY_INT_A,
19848c2ecf20Sopenharmony_ci	    /* IP4_23_22 [2] */
19858c2ecf20Sopenharmony_ci		0, FN_RX1_B, FN_VI0_DATA5_VI0_B5, FN_ET0_MAGIC_A,
19868c2ecf20Sopenharmony_ci	    /* IP4_21_20 [2] */
19878c2ecf20Sopenharmony_ci		0, FN_SCK1_B, FN_VI0_DATA4_VI0_B4, FN_ET0_LINK_A,
19888c2ecf20Sopenharmony_ci	    /* IP4_19_18 [2] */
19898c2ecf20Sopenharmony_ci		0, FN_RTS0_B, FN_VI0_DATA3_VI0_B3, FN_ET0_MDIO_A,
19908c2ecf20Sopenharmony_ci	    /* IP4_17_15 [3] */
19918c2ecf20Sopenharmony_ci		0, FN_CTS0_B, FN_VI0_DATA2_VI0_B2, FN_RMII0_MDIO_A,
19928c2ecf20Sopenharmony_ci			FN_ET0_MDC, 0, 0, 0,
19938c2ecf20Sopenharmony_ci	    /* IP4_14_12 [3] */
19948c2ecf20Sopenharmony_ci		FN_HTX0_A, FN_TX1_A, FN_VI0_DATA1_VI0_B1, FN_RMII0_MDC_A,
19958c2ecf20Sopenharmony_ci			FN_ET0_COL, 0, 0, 0,
19968c2ecf20Sopenharmony_ci	    /* IP4_11_9 [3] */
19978c2ecf20Sopenharmony_ci		FN_HRX0_A, FN_RX1_A, FN_VI0_DATA0_VI0_B0, FN_RMII0_CRS_DV_A,
19988c2ecf20Sopenharmony_ci			FN_ET0_CRS, 0, 0, 0,
19998c2ecf20Sopenharmony_ci	    /* IP4_8_6 [3] */
20008c2ecf20Sopenharmony_ci		FN_HSCK0_A, FN_SCK1_A, FN_VI0_VSYNC, FN_RMII0_RX_ER_A,
20018c2ecf20Sopenharmony_ci			FN_ET0_RX_ER, 0, 0, 0,
20028c2ecf20Sopenharmony_ci	    /* IP4_5_3 [3] */
20038c2ecf20Sopenharmony_ci		FN_HRTS0_A, FN_RTS1_A, FN_VI0_HSYNC, FN_RMII0_TXD_EN_A,
20048c2ecf20Sopenharmony_ci			FN_ET0_RX_DV, 0, 0, 0,
20058c2ecf20Sopenharmony_ci	    /* IP4_2_0 [3] */
20068c2ecf20Sopenharmony_ci		FN_HCTS0_A, FN_CTS1_A, FN_VI0_FIELD, FN_RMII0_RXD1_A,
20078c2ecf20Sopenharmony_ci			FN_ET0_ERXD7, 0, 0, 0 ))
20088c2ecf20Sopenharmony_ci	},
20098c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR5", 0xFFFC0030, 32,
20108c2ecf20Sopenharmony_ci			     GROUP(1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3,
20118c2ecf20Sopenharmony_ci				   3, 3, 3),
20128c2ecf20Sopenharmony_ci			     GROUP(
20138c2ecf20Sopenharmony_ci	    /* IP5_31 [1] */
20148c2ecf20Sopenharmony_ci	    0, 0,
20158c2ecf20Sopenharmony_ci	    /* IP5_30 [1] */
20168c2ecf20Sopenharmony_ci	    0, 0,
20178c2ecf20Sopenharmony_ci	    /* IP5_29 [1] */
20188c2ecf20Sopenharmony_ci	    0, 0,
20198c2ecf20Sopenharmony_ci	    /* IP5_28 [1] */
20208c2ecf20Sopenharmony_ci	    0, 0,
20218c2ecf20Sopenharmony_ci	    /* IP5_27 [1] */
20228c2ecf20Sopenharmony_ci	    0, 0,
20238c2ecf20Sopenharmony_ci	    /* IP5_26_25 [2] */
20248c2ecf20Sopenharmony_ci		FN_REF50CK, FN_CTS1_E, FN_HCTS0_D, 0,
20258c2ecf20Sopenharmony_ci	    /* IP5_24_23 [2] */
20268c2ecf20Sopenharmony_ci		FN_REF125CK, FN_ADTRG, FN_RX5_C, 0,
20278c2ecf20Sopenharmony_ci	    /* IP5_22_21 [2] */
20288c2ecf20Sopenharmony_ci		FN_SD2_WP_A, FN_TX5_A, FN_VI0_R5, 0,
20298c2ecf20Sopenharmony_ci	    /* IP5_20_18 [3] */
20308c2ecf20Sopenharmony_ci		FN_SD2_CD_A, FN_RX5_A, FN_VI0_R4, 0,
20318c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_PHY_INT_B,
20328c2ecf20Sopenharmony_ci	    /* IP5_17_15 [3] */
20338c2ecf20Sopenharmony_ci		FN_SD2_DAT3_A, FN_TX4_A, FN_VI0_R3, 0,
20348c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_MAGIC_B,
20358c2ecf20Sopenharmony_ci	    /* IP5_14_12 [3] */
20368c2ecf20Sopenharmony_ci		FN_SD2_DAT2_A, FN_RX4_A, FN_VI0_R2, 0,
20378c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_LINK_B,
20388c2ecf20Sopenharmony_ci	    /* IP5_11_9 [3] */
20398c2ecf20Sopenharmony_ci		FN_SD2_DAT1_A, FN_TX3_A, FN_VI0_R1, 0,
20408c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_MDIO_B,
20418c2ecf20Sopenharmony_ci	    /* IP5_8_6 [3] */
20428c2ecf20Sopenharmony_ci		FN_SD2_DAT0_A, FN_RX3_A, FN_VI0_R0, 0,
20438c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_ERXD3_B,
20448c2ecf20Sopenharmony_ci	    /* IP5_5_3 [3] */
20458c2ecf20Sopenharmony_ci		FN_SD2_CMD_A, FN_TX2_A, FN_VI0_G5, 0,
20468c2ecf20Sopenharmony_ci		0, 0, 0, FN_ET0_ERXD2_B,
20478c2ecf20Sopenharmony_ci	    /* IP5_2_0 [3] */
20488c2ecf20Sopenharmony_ci		FN_SD2_CLK_A, FN_RX2_A, FN_VI0_G4, 0,
20498c2ecf20Sopenharmony_ci		FN_ET0_RX_CLK_B, 0, 0, 0 ))
20508c2ecf20Sopenharmony_ci	},
20518c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR6", 0xFFFC0034, 32,
20528c2ecf20Sopenharmony_ci			     GROUP(1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 2, 2,
20538c2ecf20Sopenharmony_ci				   2, 2, 2, 2, 3, 3),
20548c2ecf20Sopenharmony_ci			     GROUP(
20558c2ecf20Sopenharmony_ci	    /* IP5_31 [1] */
20568c2ecf20Sopenharmony_ci	    0, 0,
20578c2ecf20Sopenharmony_ci	    /* IP6_30 [1] */
20588c2ecf20Sopenharmony_ci	    0, 0,
20598c2ecf20Sopenharmony_ci	    /* IP6_29 [1] */
20608c2ecf20Sopenharmony_ci	    0, 0,
20618c2ecf20Sopenharmony_ci	    /* IP6_28 [1] */
20628c2ecf20Sopenharmony_ci	    0, 0,
20638c2ecf20Sopenharmony_ci	    /* IP6_27 [1] */
20648c2ecf20Sopenharmony_ci	    0, 0,
20658c2ecf20Sopenharmony_ci	    /* IP6_26 [1] */
20668c2ecf20Sopenharmony_ci	    0, 0,
20678c2ecf20Sopenharmony_ci	    /* IP6_25 [1] */
20688c2ecf20Sopenharmony_ci	    0, 0,
20698c2ecf20Sopenharmony_ci	    /* IP6_24 [1] */
20708c2ecf20Sopenharmony_ci	    0, 0,
20718c2ecf20Sopenharmony_ci	    /* IP6_23_21 [3] */
20728c2ecf20Sopenharmony_ci		FN_DU0_DG1, FN_CTS1_C, FN_HRTS0_D, FN_TIOC1B_A,
20738c2ecf20Sopenharmony_ci		FN_HIFD09, 0, 0, 0,
20748c2ecf20Sopenharmony_ci	    /* IP6_20_18 [3] */
20758c2ecf20Sopenharmony_ci		FN_DU0_DG0, FN_TX1_C, FN_HSCK0_D, FN_IECLK_A,
20768c2ecf20Sopenharmony_ci		FN_TIOC1A_A, FN_HIFD08, 0, 0,
20778c2ecf20Sopenharmony_ci	    /* IP6_17_16 [2] */
20788c2ecf20Sopenharmony_ci		FN_DU0_DR7, FN_RX1_C, FN_TIOC0D_A, FN_HIFD07,
20798c2ecf20Sopenharmony_ci	    /* IP6_15_14 [2] */
20808c2ecf20Sopenharmony_ci		FN_DU0_DR6, FN_SCK1_C, FN_TIOC0C_A, FN_HIFD06,
20818c2ecf20Sopenharmony_ci	    /* IP6_13_12 [2] */
20828c2ecf20Sopenharmony_ci		FN_DU0_DR5, FN_RTS0_C, FN_TIOC0B_A, FN_HIFD05,
20838c2ecf20Sopenharmony_ci	    /* IP6_11_10 [2] */
20848c2ecf20Sopenharmony_ci		FN_DU0_DR4, FN_CTS0_C, FN_TIOC0A_A, FN_HIFD04,
20858c2ecf20Sopenharmony_ci	    /* IP6_9_8 [2] */
20868c2ecf20Sopenharmony_ci		FN_DU0_DR3, FN_TX0_B, FN_TCLKD_A, FN_HIFD03,
20878c2ecf20Sopenharmony_ci	    /* IP6_7_6 [2] */
20888c2ecf20Sopenharmony_ci		FN_DU0_DR2, FN_RX0_B, FN_TCLKC_A, FN_HIFD02,
20898c2ecf20Sopenharmony_ci	    /* IP6_5_3 [3] */
20908c2ecf20Sopenharmony_ci		FN_DU0_DR1, FN_SCK0_B, FN_HTX0_D, FN_IERX_A,
20918c2ecf20Sopenharmony_ci		FN_TCLKB_A, FN_HIFD01, 0, 0,
20928c2ecf20Sopenharmony_ci	    /* IP6_2_0 [3] */
20938c2ecf20Sopenharmony_ci		FN_DU0_DR0, FN_SCIF_CLK_B, FN_HRX0_D, FN_IETX_A,
20948c2ecf20Sopenharmony_ci		FN_TCLKA_A, FN_HIFD00, 0, 0 ))
20958c2ecf20Sopenharmony_ci	},
20968c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR7", 0xFFFC0038, 32,
20978c2ecf20Sopenharmony_ci			     GROUP(1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3),
20988c2ecf20Sopenharmony_ci			     GROUP(
20998c2ecf20Sopenharmony_ci	    /* IP7_31 [1] */
21008c2ecf20Sopenharmony_ci	    0, 0,
21018c2ecf20Sopenharmony_ci	    /* IP7_30_29 [2] */
21028c2ecf20Sopenharmony_ci		FN_DU0_DB4, 0, FN_HIFINT, 0,
21038c2ecf20Sopenharmony_ci	    /* IP7_28_27 [2] */
21048c2ecf20Sopenharmony_ci		FN_DU0_DB3, FN_TX5_B, FN_TIOC4D_A, FN_HIFRD,
21058c2ecf20Sopenharmony_ci	    /* IP7_26_24 [3] */
21068c2ecf20Sopenharmony_ci		FN_DU0_DB2, FN_RX5_B, FN_RMII0_TXD1_B, FN_TIOC4C_A,
21078c2ecf20Sopenharmony_ci		FN_HIFWR, 0, 0, 0,
21088c2ecf20Sopenharmony_ci	    /* IP7_23_21 [3] */
21098c2ecf20Sopenharmony_ci		FN_DU0_DB1, FN_TX4_C, FN_RMII0_TXD0_B, FN_TIOC4B_A,
21108c2ecf20Sopenharmony_ci		FN_HIFRS, 0, 0, 0,
21118c2ecf20Sopenharmony_ci	    /* IP7_20_18 [3] */
21128c2ecf20Sopenharmony_ci		FN_DU0_DB0, FN_RX4_C, FN_RMII0_TXD_EN_B, FN_TIOC4A_A,
21138c2ecf20Sopenharmony_ci		FN_HIFCS, 0, 0, 0,
21148c2ecf20Sopenharmony_ci	    /* IP7_17_15 [3] */
21158c2ecf20Sopenharmony_ci		FN_DU0_DG7, FN_TX3_C, FN_RMII0_RXD1_B, FN_TIOC3D_A,
21168c2ecf20Sopenharmony_ci		FN_HIFD15, 0, 0, 0,
21178c2ecf20Sopenharmony_ci	    /* IP7_14_12 [3] */
21188c2ecf20Sopenharmony_ci		FN_DU0_DG6, FN_RX3_C, FN_RMII0_RXD0_B, FN_TIOC3C_A,
21198c2ecf20Sopenharmony_ci		FN_HIFD14, 0, 0, 0,
21208c2ecf20Sopenharmony_ci	    /* IP7_11_9 [3] */
21218c2ecf20Sopenharmony_ci		FN_DU0_DG5, FN_TX2_C, FN_RMII0_RX_ER_B, FN_TIOC3B_A,
21228c2ecf20Sopenharmony_ci		FN_HIFD13, 0, 0, 0,
21238c2ecf20Sopenharmony_ci	    /* IP7_8_6 [3] */
21248c2ecf20Sopenharmony_ci		FN_DU0_DG4, FN_RX2_C, FN_RMII0_CRS_DV_B, FN_TIOC3A_A,
21258c2ecf20Sopenharmony_ci		FN_HIFD12, 0, 0, 0,
21268c2ecf20Sopenharmony_ci	    /* IP7_5_3 [3] */
21278c2ecf20Sopenharmony_ci		FN_DU0_DG3, FN_SCK2_C, FN_RMII0_MDIO_B, FN_TIOC2B_A,
21288c2ecf20Sopenharmony_ci		FN_HIFD11, 0, 0, 0,
21298c2ecf20Sopenharmony_ci	    /* IP7_2_0 [3] */
21308c2ecf20Sopenharmony_ci		FN_DU0_DG2, FN_RTS1_C, FN_RMII0_MDC_B, FN_TIOC2A_A,
21318c2ecf20Sopenharmony_ci		FN_HIFD10, 0, 0, 0 ))
21328c2ecf20Sopenharmony_ci	},
21338c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR8", 0xFFFC003C, 32,
21348c2ecf20Sopenharmony_ci			     GROUP(2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2,
21358c2ecf20Sopenharmony_ci				   2, 2, 2),
21368c2ecf20Sopenharmony_ci			     GROUP(
21378c2ecf20Sopenharmony_ci	    /* IP9_31_30 [2] */
21388c2ecf20Sopenharmony_ci	    0, 0, 0, 0,
21398c2ecf20Sopenharmony_ci	    /* IP8_29_28 [2] */
21408c2ecf20Sopenharmony_ci		FN_IRQ3_A, FN_RTS0_A, FN_HRTS0_B, FN_ET0_ERXD3_A,
21418c2ecf20Sopenharmony_ci	    /* IP8_27_26 [2] */
21428c2ecf20Sopenharmony_ci		FN_IRQ2_A, FN_CTS0_A, FN_HCTS0_B, FN_ET0_ERXD2_A,
21438c2ecf20Sopenharmony_ci	    /* IP8_25_23 [3] */
21448c2ecf20Sopenharmony_ci		FN_IRQ1_A, 0, FN_HSPI_RX_B, FN_TX3_E,
21458c2ecf20Sopenharmony_ci			FN_ET0_ERXD1, 0, 0, 0,
21468c2ecf20Sopenharmony_ci	    /* IP8_22_20 [3] */
21478c2ecf20Sopenharmony_ci		FN_IRQ0_A, 0, FN_HSPI_TX_B, FN_RX3_E,
21488c2ecf20Sopenharmony_ci			FN_ET0_ERXD0, 0, 0, 0,
21498c2ecf20Sopenharmony_ci	    /* IP8_19_18 [2] */
21508c2ecf20Sopenharmony_ci		FN_DU0_CDE, FN_HTX0_B, FN_AUDIO_CLKB_B, FN_LCD_VCPWC_B,
21518c2ecf20Sopenharmony_ci	    /* IP8_17_16 [2] */
21528c2ecf20Sopenharmony_ci		FN_DU0_DISP, FN_CAN0_TX_B, FN_HRX0_B, FN_AUDIO_CLKA_B,
21538c2ecf20Sopenharmony_ci	    /* IP8_15_14 [2] */
21548c2ecf20Sopenharmony_ci		FN_DU0_EXODDF_DU0_ODDF, FN_CAN0_RX_B, FN_HSCK0_B,
21558c2ecf20Sopenharmony_ci			FN_SSI_SDATA1_B,
21568c2ecf20Sopenharmony_ci	    /* IP8_13_12 [2] */
21578c2ecf20Sopenharmony_ci		FN_DU0_EXVSYNC_DU0_VSYNC, 0, FN_HSPI_RX0_C, FN_SSI_WS1_B,
21588c2ecf20Sopenharmony_ci	    /* IP8_11_10 [2] */
21598c2ecf20Sopenharmony_ci		FN_DU0_EXHSYNC_DU0_HSYNC, 0, FN_HSPI_TX0_C, FN_SSI_SCK1_B,
21608c2ecf20Sopenharmony_ci	    /* IP8_9_8 [2] */
21618c2ecf20Sopenharmony_ci		FN_DU0_DOTCLKOUT, 0, FN_HSPI_CLK0_C, FN_SSI_SDATA0_B,
21628c2ecf20Sopenharmony_ci	    /* IP8_7_6 [2] */
21638c2ecf20Sopenharmony_ci		FN_DU0_DOTCLKIN, 0, FN_HSPI_CS0_C, FN_SSI_WS0_B,
21648c2ecf20Sopenharmony_ci	    /* IP8_5_4 [2] */
21658c2ecf20Sopenharmony_ci		FN_DU0_DB7, 0, FN_SSI_SCK0_B, FN_HIFEBL_B,
21668c2ecf20Sopenharmony_ci	    /* IP8_3_2 [2] */
21678c2ecf20Sopenharmony_ci		FN_DU0_DB6, 0, FN_HIFRDY, 0,
21688c2ecf20Sopenharmony_ci	    /* IP8_1_0 [2] */
21698c2ecf20Sopenharmony_ci		FN_DU0_DB5, 0, FN_HIFDREQ, 0 ))
21708c2ecf20Sopenharmony_ci	},
21718c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR9", 0xFFFC0040, 32,
21728c2ecf20Sopenharmony_ci			     GROUP(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
21738c2ecf20Sopenharmony_ci				   2, 2, 2, 2),
21748c2ecf20Sopenharmony_ci			     GROUP(
21758c2ecf20Sopenharmony_ci	    /* IP9_31_30 [2] */
21768c2ecf20Sopenharmony_ci	    0, 0, 0, 0,
21778c2ecf20Sopenharmony_ci	    /* IP9_29_28 [2] */
21788c2ecf20Sopenharmony_ci		FN_SSI_SDATA1_A, FN_VI1_3_B, FN_LCD_DATA14_B, 0,
21798c2ecf20Sopenharmony_ci	    /* IP9_27_26 [2] */
21808c2ecf20Sopenharmony_ci		FN_SSI_WS1_A, FN_VI1_2_B, FN_LCD_DATA13_B, 0,
21818c2ecf20Sopenharmony_ci	    /* IP9_25_24 [2] */
21828c2ecf20Sopenharmony_ci		FN_SSI_SCK1_A, FN_VI1_1_B, FN_TIOC2B_B, FN_LCD_DATA12_B,
21838c2ecf20Sopenharmony_ci	    /* IP9_23_22 [2] */
21848c2ecf20Sopenharmony_ci		FN_SSI_SDATA0_A, FN_VI1_0_B, FN_TIOC2A_B, FN_LCD_DATA11_B,
21858c2ecf20Sopenharmony_ci	    /* IP9_21_20 [2] */
21868c2ecf20Sopenharmony_ci		FN_SSI_WS0_A, FN_TIOC1B_B, FN_LCD_DATA10_B, 0,
21878c2ecf20Sopenharmony_ci	    /* IP9_19_18 [2] */
21888c2ecf20Sopenharmony_ci		FN_SSI_SCK0_A, FN_TIOC1A_B, FN_LCD_DATA9_B, 0,
21898c2ecf20Sopenharmony_ci	    /* IP9_17_16 [2] */
21908c2ecf20Sopenharmony_ci		FN_VI1_7_A, FN_FCE_B, FN_LCD_DATA8_B, 0,
21918c2ecf20Sopenharmony_ci	    /* IP9_15_14 [2] */
21928c2ecf20Sopenharmony_ci		FN_VI1_6_A, 0, FN_FD7_B, FN_LCD_DATA7_B,
21938c2ecf20Sopenharmony_ci	    /* IP9_13_12 [2] */
21948c2ecf20Sopenharmony_ci		FN_VI1_5_A, 0, FN_FD6_B, FN_LCD_DATA6_B,
21958c2ecf20Sopenharmony_ci	    /* IP9_11_10 [2] */
21968c2ecf20Sopenharmony_ci		FN_VI1_4_A, 0, FN_FD5_B, FN_LCD_DATA5_B,
21978c2ecf20Sopenharmony_ci	    /* IP9_9_8 [2] */
21988c2ecf20Sopenharmony_ci		FN_VI1_3_A, 0, FN_FD4_B, FN_LCD_DATA4_B,
21998c2ecf20Sopenharmony_ci	    /* IP9_7_6 [2] */
22008c2ecf20Sopenharmony_ci		FN_VI1_2_A, 0, FN_FD3_B, FN_LCD_DATA3_B,
22018c2ecf20Sopenharmony_ci	    /* IP9_5_4 [2] */
22028c2ecf20Sopenharmony_ci		FN_VI1_1_A, 0, FN_FD2_B, FN_LCD_DATA2_B,
22038c2ecf20Sopenharmony_ci	    /* IP9_3_2 [2] */
22048c2ecf20Sopenharmony_ci		FN_VI1_0_A, 0, FN_FD1_B, FN_LCD_DATA1_B,
22058c2ecf20Sopenharmony_ci	    /* IP9_1_0 [2] */
22068c2ecf20Sopenharmony_ci		FN_VI1_CLK_A, 0, FN_FD0_B, FN_LCD_DATA0_B ))
22078c2ecf20Sopenharmony_ci	},
22088c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR10", 0xFFFC0044, 32,
22098c2ecf20Sopenharmony_ci			     GROUP(2, 2, 2, 1, 2, 1, 3, 3, 1, 3, 3, 3, 3, 3),
22108c2ecf20Sopenharmony_ci			     GROUP(
22118c2ecf20Sopenharmony_ci	    /* IP9_31_30 [2] */
22128c2ecf20Sopenharmony_ci	    0, 0, 0, 0,
22138c2ecf20Sopenharmony_ci	    /* IP10_29_28 [2] */
22148c2ecf20Sopenharmony_ci		FN_CAN1_TX_A, FN_TX5_C, FN_MLB_DAT, 0,
22158c2ecf20Sopenharmony_ci	    /* IP10_27_26 [2] */
22168c2ecf20Sopenharmony_ci		FN_CAN0_RX_A, FN_IRQ0_B, FN_MLB_SIG, 0,
22178c2ecf20Sopenharmony_ci	    /* IP10_25 [1] */
22188c2ecf20Sopenharmony_ci		FN_CAN1_RX_A, FN_IRQ1_B,
22198c2ecf20Sopenharmony_ci	    /* IP10_24_23 [2] */
22208c2ecf20Sopenharmony_ci		FN_CAN0_TX_A, FN_TX4_D, FN_MLB_CLK, 0,
22218c2ecf20Sopenharmony_ci	    /* IP10_22 [1] */
22228c2ecf20Sopenharmony_ci		FN_CAN_CLK_A, FN_RX4_D,
22238c2ecf20Sopenharmony_ci	    /* IP10_21_19 [3] */
22248c2ecf20Sopenharmony_ci		FN_AUDIO_CLKOUT, FN_TX1_E, 0, FN_HRTS0_C, FN_FSE_B,
22258c2ecf20Sopenharmony_ci		FN_LCD_M_DISP_B, 0, 0,
22268c2ecf20Sopenharmony_ci	    /* IP10_18_16 [3] */
22278c2ecf20Sopenharmony_ci		FN_AUDIO_CLKC, FN_SCK1_E, 0, FN_HCTS0_C, FN_FRB_B,
22288c2ecf20Sopenharmony_ci		FN_LCD_VEPWC_B, 0, 0,
22298c2ecf20Sopenharmony_ci	    /* IP10_15 [1] */
22308c2ecf20Sopenharmony_ci		FN_AUDIO_CLKB_A, FN_LCD_CLK_B,
22318c2ecf20Sopenharmony_ci	    /* IP10_14_12 [3] */
22328c2ecf20Sopenharmony_ci		FN_AUDIO_CLKA_A, FN_VI1_CLK_B, FN_SCK1_D, FN_IECLK_B,
22338c2ecf20Sopenharmony_ci		FN_LCD_FLM_B, 0, 0, 0,
22348c2ecf20Sopenharmony_ci	    /* IP10_11_9 [3] */
22358c2ecf20Sopenharmony_ci		FN_SSI_SDATA3, FN_VI1_7_B, 0, FN_HTX0_C, FN_FWE_B,
22368c2ecf20Sopenharmony_ci		FN_LCD_CL2_B, 0, 0,
22378c2ecf20Sopenharmony_ci	    /* IP10_8_6 [3] */
22388c2ecf20Sopenharmony_ci		FN_SSI_SDATA2, FN_VI1_6_B, 0, FN_HRX0_C, FN_FRE_B,
22398c2ecf20Sopenharmony_ci		FN_LCD_CL1_B, 0, 0,
22408c2ecf20Sopenharmony_ci	    /* IP10_5_3 [3] */
22418c2ecf20Sopenharmony_ci		FN_SSI_WS23, FN_VI1_5_B, FN_TX1_D, FN_HSCK0_C, FN_FALE_B,
22428c2ecf20Sopenharmony_ci		FN_LCD_DON_B, 0, 0,
22438c2ecf20Sopenharmony_ci	    /* IP10_2_0 [3] */
22448c2ecf20Sopenharmony_ci		FN_SSI_SCK23, FN_VI1_4_B, FN_RX1_D, FN_FCLE_B,
22458c2ecf20Sopenharmony_ci		FN_LCD_DATA15_B, 0, 0, 0 ))
22468c2ecf20Sopenharmony_ci	},
22478c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("IPSR11", 0xFFFC0048, 32,
22488c2ecf20Sopenharmony_ci			     GROUP(3, 1, 2, 3, 2, 2, 3, 3, 1, 2, 3, 3,
22498c2ecf20Sopenharmony_ci				   1, 1, 1, 1),
22508c2ecf20Sopenharmony_ci			     GROUP(
22518c2ecf20Sopenharmony_ci	    /* IP11_31_29 [3] */
22528c2ecf20Sopenharmony_ci	    0, 0, 0, 0, 0, 0, 0, 0,
22538c2ecf20Sopenharmony_ci	    /* IP11_28 [1] */
22548c2ecf20Sopenharmony_ci		FN_PRESETOUT, FN_ST_CLKOUT,
22558c2ecf20Sopenharmony_ci	    /* IP11_27_26 [2] */
22568c2ecf20Sopenharmony_ci		FN_DACK1, FN_HSPI_CS_B, FN_TX4_B, FN_ET0_RX_CLK_A,
22578c2ecf20Sopenharmony_ci	    /* IP11_25_23 [3] */
22588c2ecf20Sopenharmony_ci		FN_DREQ1, FN_HSPI_CLK_B, FN_RX4_B, FN_ET0_PHY_INT_C,
22598c2ecf20Sopenharmony_ci		FN_ET0_TX_CLK_A, 0, 0, 0,
22608c2ecf20Sopenharmony_ci	    /* IP11_22_21 [2] */
22618c2ecf20Sopenharmony_ci		FN_DACK0, FN_SD1_DAT3_A, FN_ET0_TX_ER, 0,
22628c2ecf20Sopenharmony_ci	    /* IP11_20_19 [2] */
22638c2ecf20Sopenharmony_ci		FN_DREQ0, FN_SD1_CLK_A, FN_ET0_TX_EN, 0,
22648c2ecf20Sopenharmony_ci	    /* IP11_18_16 [3] */
22658c2ecf20Sopenharmony_ci		FN_USB_OVC1, FN_RX3_D, FN_CAN1_RX_B, FN_RX5_D,
22668c2ecf20Sopenharmony_ci		FN_IERX_B, 0, 0, 0,
22678c2ecf20Sopenharmony_ci	    /* IP11_15_13 [3] */
22688c2ecf20Sopenharmony_ci		FN_PENC1, FN_TX3_D, FN_CAN1_TX_B, FN_TX5_D,
22698c2ecf20Sopenharmony_ci		FN_IETX_B, 0, 0, 0,
22708c2ecf20Sopenharmony_ci	    /* IP11_12 [1] */
22718c2ecf20Sopenharmony_ci		FN_TX0_A, FN_HSPI_TX_A,
22728c2ecf20Sopenharmony_ci	    /* IP11_11_10 [2] */
22738c2ecf20Sopenharmony_ci		FN_RX0_A, FN_HSPI_RX_A, FN_RMII0_RXD0_A, FN_ET0_ERXD6,
22748c2ecf20Sopenharmony_ci	    /* IP11_9_7 [3] */
22758c2ecf20Sopenharmony_ci		FN_SCK0_A, FN_HSPI_CS_A, FN_VI0_CLKENB, FN_RMII0_TXD1_A,
22768c2ecf20Sopenharmony_ci		FN_ET0_ERXD5, 0, 0, 0,
22778c2ecf20Sopenharmony_ci	    /* IP11_6_4 [3] */
22788c2ecf20Sopenharmony_ci		FN_SCIF_CLK_A, FN_HSPI_CLK_A, FN_VI0_CLK, FN_RMII0_TXD0_A,
22798c2ecf20Sopenharmony_ci		FN_ET0_ERXD4, 0, 0, 0,
22808c2ecf20Sopenharmony_ci	    /* IP11_3 [1] */
22818c2ecf20Sopenharmony_ci		FN_SDSELF, FN_RTS1_E,
22828c2ecf20Sopenharmony_ci	    /* IP11_2 [1] */
22838c2ecf20Sopenharmony_ci		FN_SDA0, FN_HIFEBL_A,
22848c2ecf20Sopenharmony_ci	    /* IP11_1 [1] */
22858c2ecf20Sopenharmony_ci		FN_SDA1, FN_RX1_E,
22868c2ecf20Sopenharmony_ci	    /* IP11_0 [1] */
22878c2ecf20Sopenharmony_ci		FN_SCL1, FN_SCIF_CLK_C ))
22888c2ecf20Sopenharmony_ci	},
22898c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("MOD_SEL1", 0xFFFC004C, 32,
22908c2ecf20Sopenharmony_ci			     GROUP(3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2,
22918c2ecf20Sopenharmony_ci				   2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1),
22928c2ecf20Sopenharmony_ci			     GROUP(
22938c2ecf20Sopenharmony_ci		/* SEL1_31_29 [3] */
22948c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0,
22958c2ecf20Sopenharmony_ci		/* SEL1_28 [1] */
22968c2ecf20Sopenharmony_ci		FN_SEL_IEBUS_0, FN_SEL_IEBUS_1,
22978c2ecf20Sopenharmony_ci		/* SEL1_27 [1] */
22988c2ecf20Sopenharmony_ci		FN_SEL_RQSPI_0, FN_SEL_RQSPI_1,
22998c2ecf20Sopenharmony_ci		/* SEL1_26 [1] */
23008c2ecf20Sopenharmony_ci		FN_SEL_VIN1_0, FN_SEL_VIN1_1,
23018c2ecf20Sopenharmony_ci		/* SEL1_25 [1] */
23028c2ecf20Sopenharmony_ci		FN_SEL_HIF_0, FN_SEL_HIF_1,
23038c2ecf20Sopenharmony_ci		/* SEL1_24 [1] */
23048c2ecf20Sopenharmony_ci		FN_SEL_RSPI_0, FN_SEL_RSPI_1,
23058c2ecf20Sopenharmony_ci		/* SEL1_23 [1] */
23068c2ecf20Sopenharmony_ci		FN_SEL_LCDC_0, FN_SEL_LCDC_1,
23078c2ecf20Sopenharmony_ci		/* SEL1_22_21 [2] */
23088c2ecf20Sopenharmony_ci		FN_SEL_ET0_CTL_0, FN_SEL_ET0_CTL_1, FN_SEL_ET0_CTL_2, 0,
23098c2ecf20Sopenharmony_ci		/* SEL1_20 [1] */
23108c2ecf20Sopenharmony_ci		FN_SEL_ET0_0, FN_SEL_ET0_1,
23118c2ecf20Sopenharmony_ci		/* SEL1_19 [1] */
23128c2ecf20Sopenharmony_ci		FN_SEL_RMII_0, FN_SEL_RMII_1,
23138c2ecf20Sopenharmony_ci		/* SEL1_18 [1] */
23148c2ecf20Sopenharmony_ci		FN_SEL_TMU_0, FN_SEL_TMU_1,
23158c2ecf20Sopenharmony_ci		/* SEL1_17_16 [2] */
23168c2ecf20Sopenharmony_ci		FN_SEL_HSPI_0, FN_SEL_HSPI_1, FN_SEL_HSPI_2, 0,
23178c2ecf20Sopenharmony_ci		/* SEL1_15_14 [2] */
23188c2ecf20Sopenharmony_ci		FN_SEL_HSCIF_0, FN_SEL_HSCIF_1, FN_SEL_HSCIF_2, FN_SEL_HSCIF_3,
23198c2ecf20Sopenharmony_ci		/* SEL1_13 [1] */
23208c2ecf20Sopenharmony_ci		FN_SEL_RCAN_CLK_0, FN_SEL_RCAN_CLK_1,
23218c2ecf20Sopenharmony_ci		/* SEL1_12_11 [2] */
23228c2ecf20Sopenharmony_ci		FN_SEL_RCAN1_0, FN_SEL_RCAN1_1, FN_SEL_RCAN1_2, 0,
23238c2ecf20Sopenharmony_ci		/* SEL1_10 [1] */
23248c2ecf20Sopenharmony_ci		FN_SEL_RCAN0_0, FN_SEL_RCAN0_1,
23258c2ecf20Sopenharmony_ci		/* SEL1_9 [1] */
23268c2ecf20Sopenharmony_ci		FN_SEL_SDHI2_0, FN_SEL_SDHI2_1,
23278c2ecf20Sopenharmony_ci		/* SEL1_8 [1] */
23288c2ecf20Sopenharmony_ci		FN_SEL_SDHI1_0, FN_SEL_SDHI1_1,
23298c2ecf20Sopenharmony_ci		/* SEL1_7 [1] */
23308c2ecf20Sopenharmony_ci		FN_SEL_SDHI0_0, FN_SEL_SDHI0_1,
23318c2ecf20Sopenharmony_ci		/* SEL1_6 [1] */
23328c2ecf20Sopenharmony_ci		FN_SEL_SSI1_0, FN_SEL_SSI1_1,
23338c2ecf20Sopenharmony_ci		/* SEL1_5 [1] */
23348c2ecf20Sopenharmony_ci		FN_SEL_SSI0_0, FN_SEL_SSI0_1,
23358c2ecf20Sopenharmony_ci		/* SEL1_4 [1] */
23368c2ecf20Sopenharmony_ci		FN_SEL_AUDIO_CLKB_0, FN_SEL_AUDIO_CLKB_1,
23378c2ecf20Sopenharmony_ci		/* SEL1_3 [1] */
23388c2ecf20Sopenharmony_ci		FN_SEL_AUDIO_CLKA_0, FN_SEL_AUDIO_CLKA_1,
23398c2ecf20Sopenharmony_ci		/* SEL1_2 [1] */
23408c2ecf20Sopenharmony_ci		FN_SEL_FLCTL_0, FN_SEL_FLCTL_1,
23418c2ecf20Sopenharmony_ci		/* SEL1_1 [1] */
23428c2ecf20Sopenharmony_ci		FN_SEL_MMC_0, FN_SEL_MMC_1,
23438c2ecf20Sopenharmony_ci		/* SEL1_0 [1] */
23448c2ecf20Sopenharmony_ci		FN_SEL_INTC_0, FN_SEL_INTC_1 ))
23458c2ecf20Sopenharmony_ci	},
23468c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG_VAR("MOD_SEL2", 0xFFFC0050, 32,
23478c2ecf20Sopenharmony_ci			     GROUP(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
23488c2ecf20Sopenharmony_ci				   2, 1, 2, 2, 3, 2, 3, 2, 2),
23498c2ecf20Sopenharmony_ci			     GROUP(
23508c2ecf20Sopenharmony_ci		/* SEL2_31 [1] */
23518c2ecf20Sopenharmony_ci		0, 0,
23528c2ecf20Sopenharmony_ci		/* SEL2_30 [1] */
23538c2ecf20Sopenharmony_ci		0, 0,
23548c2ecf20Sopenharmony_ci		/* SEL2_29 [1] */
23558c2ecf20Sopenharmony_ci		0, 0,
23568c2ecf20Sopenharmony_ci		/* SEL2_28 [1] */
23578c2ecf20Sopenharmony_ci		0, 0,
23588c2ecf20Sopenharmony_ci		/* SEL2_27 [1] */
23598c2ecf20Sopenharmony_ci		0, 0,
23608c2ecf20Sopenharmony_ci		/* SEL2_26 [1] */
23618c2ecf20Sopenharmony_ci		0, 0,
23628c2ecf20Sopenharmony_ci		/* SEL2_25 [1] */
23638c2ecf20Sopenharmony_ci		0, 0,
23648c2ecf20Sopenharmony_ci		/* SEL2_24 [1] */
23658c2ecf20Sopenharmony_ci		0, 0,
23668c2ecf20Sopenharmony_ci		/* SEL2_23 [1] */
23678c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CLK_0, FN_SEL_MTU2_CLK_1,
23688c2ecf20Sopenharmony_ci		/* SEL2_22 [1] */
23698c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CH4_0, FN_SEL_MTU2_CH4_1,
23708c2ecf20Sopenharmony_ci		/* SEL2_21 [1] */
23718c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CH3_0, FN_SEL_MTU2_CH3_1,
23728c2ecf20Sopenharmony_ci		/* SEL2_20_19 [2] */
23738c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CH2_0, FN_SEL_MTU2_CH2_1, FN_SEL_MTU2_CH2_2, 0,
23748c2ecf20Sopenharmony_ci		/* SEL2_18_17 [2] */
23758c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CH1_0, FN_SEL_MTU2_CH1_1, FN_SEL_MTU2_CH1_2, 0,
23768c2ecf20Sopenharmony_ci		/* SEL2_16 [1] */
23778c2ecf20Sopenharmony_ci		FN_SEL_MTU2_CH0_0, FN_SEL_MTU2_CH0_1,
23788c2ecf20Sopenharmony_ci		/* SEL2_15_14 [2] */
23798c2ecf20Sopenharmony_ci		FN_SEL_SCIF5_0, FN_SEL_SCIF5_1, FN_SEL_SCIF5_2, FN_SEL_SCIF5_3,
23808c2ecf20Sopenharmony_ci		/* SEL2_13_12 [2] */
23818c2ecf20Sopenharmony_ci		FN_SEL_SCIF4_0, FN_SEL_SCIF4_1, FN_SEL_SCIF4_2, FN_SEL_SCIF4_3,
23828c2ecf20Sopenharmony_ci		/* SEL2_11_9 [3] */
23838c2ecf20Sopenharmony_ci		FN_SEL_SCIF3_0, FN_SEL_SCIF3_1, FN_SEL_SCIF3_2, FN_SEL_SCIF3_3,
23848c2ecf20Sopenharmony_ci		FN_SEL_SCIF3_4, 0, 0, 0,
23858c2ecf20Sopenharmony_ci		/* SEL2_8_7 [2] */
23868c2ecf20Sopenharmony_ci		FN_SEL_SCIF2_0, FN_SEL_SCIF2_1, FN_SEL_SCIF2_2, FN_SEL_SCIF2_3,
23878c2ecf20Sopenharmony_ci		/* SEL2_6_4 [3] */
23888c2ecf20Sopenharmony_ci		FN_SEL_SCIF1_0, FN_SEL_SCIF1_1, FN_SEL_SCIF1_2, FN_SEL_SCIF1_3,
23898c2ecf20Sopenharmony_ci			FN_SEL_SCIF1_4, 0, 0, 0,
23908c2ecf20Sopenharmony_ci		/* SEL2_3_2 [2] */
23918c2ecf20Sopenharmony_ci		FN_SEL_SCIF0_0, FN_SEL_SCIF0_1, FN_SEL_SCIF0_2, 0,
23928c2ecf20Sopenharmony_ci		/* SEL2_1_0 [2] */
23938c2ecf20Sopenharmony_ci		FN_SEL_SCIF_CLK_0, FN_SEL_SCIF_CLK_1, FN_SEL_SCIF_CLK_2, 0  ))
23948c2ecf20Sopenharmony_ci	},
23958c2ecf20Sopenharmony_ci	/* GPIO 0 - 5*/
23968c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL0", 0xFFC40004, 32, 1, GROUP(GP_INOUTSEL(0)))
23978c2ecf20Sopenharmony_ci	},
23988c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL1", 0xFFC41004, 32, 1, GROUP(GP_INOUTSEL(1)))
23998c2ecf20Sopenharmony_ci	},
24008c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL2", 0xFFC42004, 32, 1, GROUP(GP_INOUTSEL(2)))
24018c2ecf20Sopenharmony_ci	},
24028c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL3", 0xFFC43004, 32, 1, GROUP(GP_INOUTSEL(3)))
24038c2ecf20Sopenharmony_ci	},
24048c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL4", 0xFFC44004, 32, 1, GROUP(GP_INOUTSEL(4)))
24058c2ecf20Sopenharmony_ci	},
24068c2ecf20Sopenharmony_ci	{ PINMUX_CFG_REG("INOUTSEL5", 0xffc45004, 32, 1, GROUP(
24078c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 31 - 24 */
24088c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 23 - 16 */
24098c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, /* 15 - 12 */
24108c2ecf20Sopenharmony_ci		GP_5_11_IN, GP_5_11_OUT,
24118c2ecf20Sopenharmony_ci		GP_5_10_IN, GP_5_10_OUT,
24128c2ecf20Sopenharmony_ci		GP_5_9_IN, GP_5_9_OUT,
24138c2ecf20Sopenharmony_ci		GP_5_8_IN, GP_5_8_OUT,
24148c2ecf20Sopenharmony_ci		GP_5_7_IN, GP_5_7_OUT,
24158c2ecf20Sopenharmony_ci		GP_5_6_IN, GP_5_6_OUT,
24168c2ecf20Sopenharmony_ci		GP_5_5_IN, GP_5_5_OUT,
24178c2ecf20Sopenharmony_ci		GP_5_4_IN, GP_5_4_OUT,
24188c2ecf20Sopenharmony_ci		GP_5_3_IN, GP_5_3_OUT,
24198c2ecf20Sopenharmony_ci		GP_5_2_IN, GP_5_2_OUT,
24208c2ecf20Sopenharmony_ci		GP_5_1_IN, GP_5_1_OUT,
24218c2ecf20Sopenharmony_ci		GP_5_0_IN, GP_5_0_OUT ))
24228c2ecf20Sopenharmony_ci	},
24238c2ecf20Sopenharmony_ci	{ },
24248c2ecf20Sopenharmony_ci};
24258c2ecf20Sopenharmony_ci
24268c2ecf20Sopenharmony_cistatic const struct pinmux_data_reg pinmux_data_regs[] = {
24278c2ecf20Sopenharmony_ci	/* GPIO 0 - 5*/
24288c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT0", 0xFFC4000C, 32, GROUP(GP_INDT(0))) },
24298c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT1", 0xFFC4100C, 32, GROUP(GP_INDT(1))) },
24308c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT2", 0xFFC4200C, 32, GROUP(GP_INDT(2))) },
24318c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT3", 0xFFC4300C, 32, GROUP(GP_INDT(3))) },
24328c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT4", 0xFFC4400C, 32, GROUP(GP_INDT(4))) },
24338c2ecf20Sopenharmony_ci	{ PINMUX_DATA_REG("INDT5", 0xFFC4500C, 32, GROUP(
24348c2ecf20Sopenharmony_ci		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
24358c2ecf20Sopenharmony_ci		0, 0, 0, 0,
24368c2ecf20Sopenharmony_ci		GP_5_11_DATA, GP_5_10_DATA, GP_5_9_DATA, GP_5_8_DATA,
24378c2ecf20Sopenharmony_ci		GP_5_7_DATA, GP_5_6_DATA, GP_5_5_DATA, GP_5_4_DATA,
24388c2ecf20Sopenharmony_ci		GP_5_3_DATA, GP_5_2_DATA, GP_5_1_DATA, GP_5_0_DATA ))
24398c2ecf20Sopenharmony_ci	},
24408c2ecf20Sopenharmony_ci	{ },
24418c2ecf20Sopenharmony_ci};
24428c2ecf20Sopenharmony_ci
24438c2ecf20Sopenharmony_ciconst struct sh_pfc_soc_info sh7734_pinmux_info = {
24448c2ecf20Sopenharmony_ci	.name = "sh7734_pfc",
24458c2ecf20Sopenharmony_ci
24468c2ecf20Sopenharmony_ci	.unlock_reg = 0xFFFC0000,
24478c2ecf20Sopenharmony_ci
24488c2ecf20Sopenharmony_ci	.input = { PINMUX_INPUT_BEGIN, PINMUX_INPUT_END },
24498c2ecf20Sopenharmony_ci	.output = { PINMUX_OUTPUT_BEGIN, PINMUX_OUTPUT_END },
24508c2ecf20Sopenharmony_ci	.function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END },
24518c2ecf20Sopenharmony_ci
24528c2ecf20Sopenharmony_ci	.pins = pinmux_pins,
24538c2ecf20Sopenharmony_ci	.nr_pins = ARRAY_SIZE(pinmux_pins),
24548c2ecf20Sopenharmony_ci	.func_gpios = pinmux_func_gpios,
24558c2ecf20Sopenharmony_ci	.nr_func_gpios = ARRAY_SIZE(pinmux_func_gpios),
24568c2ecf20Sopenharmony_ci
24578c2ecf20Sopenharmony_ci	.cfg_regs = pinmux_config_regs,
24588c2ecf20Sopenharmony_ci	.data_regs = pinmux_data_regs,
24598c2ecf20Sopenharmony_ci
24608c2ecf20Sopenharmony_ci	.pinmux_data = pinmux_data,
24618c2ecf20Sopenharmony_ci	.pinmux_data_size = ARRAY_SIZE(pinmux_data),
24628c2ecf20Sopenharmony_ci};
2463