blob: 6fe2d743418366e03f1c9a2793af31da64277b0c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Marek Vasut7d35e642017-10-08 20:57:37 +02002/*
3 * R8A77995 processor support - PFC hardware block.
4 *
5 * Copyright (C) 2017 Renesas Electronics Corp.
6 *
Marek Vasut0e8e9892021-04-26 22:04:11 +02007 * This file is based on the drivers/pinctrl/renesas/pfc-r8a7796.c
Marek Vasut7d35e642017-10-08 20:57:37 +02008 *
9 * R-Car Gen3 processor support - PFC hardware block.
10 *
11 * Copyright (C) 2015 Renesas Electronics Corporation
Marek Vasut7d35e642017-10-08 20:57:37 +020012 */
13
Marek Vasut7d35e642017-10-08 20:57:37 +020014#include <dm.h>
15#include <errno.h>
16#include <dm/pinctrl.h>
17#include <linux/kernel.h>
18
19#include "sh_pfc.h"
20
Marek Vasutb8f61132023-01-26 21:01:46 +010021#define CPU_ALL_GP(fn, sfx) \
22 PORT_GP_CFG_9(0, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
23 PORT_GP_CFG_32(1, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
24 PORT_GP_CFG_32(2, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
Marek Vasutf5ba8ca2023-09-17 16:08:46 +020025 PORT_GP_CFG_10(3, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE_18_33 | SH_PFC_PIN_CFG_PULL_UP_DOWN), \
Marek Vasutb8f61132023-01-26 21:01:46 +010026 PORT_GP_CFG_32(4, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
27 PORT_GP_CFG_21(5, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
28 PORT_GP_CFG_14(6, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN)
29
30#define CPU_ALL_NOGP(fn) \
31 PIN_NOGP_CFG(DU_DOTCLKIN0, "DU_DOTCLKIN0", fn, SH_PFC_PIN_CFG_PULL_DOWN), \
32 PIN_NOGP_CFG(FSCLKST_N, "FSCLKST#", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
33 PIN_NOGP_CFG(MLB_REF, "MLB_REF", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
34 PIN_NOGP_CFG(PRESETOUT_N, "PRESETOUT#", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
35 PIN_NOGP_CFG(TCK, "TCK", fn, SH_PFC_PIN_CFG_PULL_UP), \
36 PIN_NOGP_CFG(TDI, "TDI", fn, SH_PFC_PIN_CFG_PULL_UP), \
37 PIN_NOGP_CFG(TMS, "TMS", fn, SH_PFC_PIN_CFG_PULL_UP), \
Marek Vasutf5ba8ca2023-09-17 16:08:46 +020038 PIN_NOGP_CFG(TRST_N, "TRST#", fn, SH_PFC_PIN_CFG_PULL_UP), \
39 PIN_NOGP_CFG(VDDQ_AVB0, "VDDQ_AVB0", fn, SH_PFC_PIN_CFG_IO_VOLTAGE_25_33)
Marek Vasut7d35e642017-10-08 20:57:37 +020040
41/*
42 * F_() : just information
43 * FM() : macro for FN_xxx / xxx_MARK
44 */
45
46/* GPSR0 */
47#define GPSR0_8 F_(MLB_SIG, IP0_27_24)
48#define GPSR0_7 F_(MLB_DAT, IP0_23_20)
49#define GPSR0_6 F_(MLB_CLK, IP0_19_16)
50#define GPSR0_5 F_(MSIOF2_RXD, IP0_15_12)
51#define GPSR0_4 F_(MSIOF2_TXD, IP0_11_8)
52#define GPSR0_3 F_(MSIOF2_SCK, IP0_7_4)
53#define GPSR0_2 F_(IRQ0_A, IP0_3_0)
54#define GPSR0_1 FM(USB0_OVC)
55#define GPSR0_0 FM(USB0_PWEN)
56
57/* GPSR1 */
58#define GPSR1_31 F_(QPOLB, IP4_27_24)
59#define GPSR1_30 F_(QPOLA, IP4_23_20)
60#define GPSR1_29 F_(DU_CDE, IP4_19_16)
61#define GPSR1_28 F_(DU_DISP_CDE, IP4_15_12)
62#define GPSR1_27 F_(DU_DISP, IP4_11_8)
63#define GPSR1_26 F_(DU_VSYNC, IP4_7_4)
64#define GPSR1_25 F_(DU_HSYNC, IP4_3_0)
65#define GPSR1_24 F_(DU_DOTCLKOUT0, IP3_31_28)
66#define GPSR1_23 F_(DU_DR7, IP3_27_24)
67#define GPSR1_22 F_(DU_DR6, IP3_23_20)
68#define GPSR1_21 F_(DU_DR5, IP3_19_16)
69#define GPSR1_20 F_(DU_DR4, IP3_15_12)
70#define GPSR1_19 F_(DU_DR3, IP3_11_8)
71#define GPSR1_18 F_(DU_DR2, IP3_7_4)
72#define GPSR1_17 F_(DU_DR1, IP3_3_0)
73#define GPSR1_16 F_(DU_DR0, IP2_31_28)
74#define GPSR1_15 F_(DU_DG7, IP2_27_24)
75#define GPSR1_14 F_(DU_DG6, IP2_23_20)
76#define GPSR1_13 F_(DU_DG5, IP2_19_16)
77#define GPSR1_12 F_(DU_DG4, IP2_15_12)
78#define GPSR1_11 F_(DU_DG3, IP2_11_8)
79#define GPSR1_10 F_(DU_DG2, IP2_7_4)
80#define GPSR1_9 F_(DU_DG1, IP2_3_0)
81#define GPSR1_8 F_(DU_DG0, IP1_31_28)
82#define GPSR1_7 F_(DU_DB7, IP1_27_24)
83#define GPSR1_6 F_(DU_DB6, IP1_23_20)
84#define GPSR1_5 F_(DU_DB5, IP1_19_16)
85#define GPSR1_4 F_(DU_DB4, IP1_15_12)
86#define GPSR1_3 F_(DU_DB3, IP1_11_8)
87#define GPSR1_2 F_(DU_DB2, IP1_7_4)
88#define GPSR1_1 F_(DU_DB1, IP1_3_0)
89#define GPSR1_0 F_(DU_DB0, IP0_31_28)
90
91/* GPSR2 */
92#define GPSR2_31 F_(NFCE_N, IP8_19_16)
93#define GPSR2_30 F_(NFCLE, IP8_15_12)
94#define GPSR2_29 F_(NFALE, IP8_11_8)
95#define GPSR2_28 F_(VI4_CLKENB, IP8_7_4)
96#define GPSR2_27 F_(VI4_FIELD, IP8_3_0)
97#define GPSR2_26 F_(VI4_HSYNC_N, IP7_31_28)
98#define GPSR2_25 F_(VI4_VSYNC_N, IP7_27_24)
99#define GPSR2_24 F_(VI4_DATA23, IP7_23_20)
100#define GPSR2_23 F_(VI4_DATA22, IP7_19_16)
101#define GPSR2_22 F_(VI4_DATA21, IP7_15_12)
102#define GPSR2_21 F_(VI4_DATA20, IP7_11_8)
103#define GPSR2_20 F_(VI4_DATA19, IP7_7_4)
104#define GPSR2_19 F_(VI4_DATA18, IP7_3_0)
105#define GPSR2_18 F_(VI4_DATA17, IP6_31_28)
106#define GPSR2_17 F_(VI4_DATA16, IP6_27_24)
107#define GPSR2_16 F_(VI4_DATA15, IP6_23_20)
108#define GPSR2_15 F_(VI4_DATA14, IP6_19_16)
109#define GPSR2_14 F_(VI4_DATA13, IP6_15_12)
110#define GPSR2_13 F_(VI4_DATA12, IP6_11_8)
111#define GPSR2_12 F_(VI4_DATA11, IP6_7_4)
112#define GPSR2_11 F_(VI4_DATA10, IP6_3_0)
113#define GPSR2_10 F_(VI4_DATA9, IP5_31_28)
114#define GPSR2_9 F_(VI4_DATA8, IP5_27_24)
115#define GPSR2_8 F_(VI4_DATA7, IP5_23_20)
116#define GPSR2_7 F_(VI4_DATA6, IP5_19_16)
117#define GPSR2_6 F_(VI4_DATA5, IP5_15_12)
118#define GPSR2_5 FM(VI4_DATA4)
119#define GPSR2_4 F_(VI4_DATA3, IP5_11_8)
120#define GPSR2_3 F_(VI4_DATA2, IP5_7_4)
121#define GPSR2_2 F_(VI4_DATA1, IP5_3_0)
122#define GPSR2_1 F_(VI4_DATA0, IP4_31_28)
123#define GPSR2_0 FM(VI4_CLK)
124
125/* GPSR3 */
126#define GPSR3_9 F_(NFDATA7, IP9_31_28)
127#define GPSR3_8 F_(NFDATA6, IP9_27_24)
128#define GPSR3_7 F_(NFDATA5, IP9_23_20)
129#define GPSR3_6 F_(NFDATA4, IP9_19_16)
130#define GPSR3_5 F_(NFDATA3, IP9_15_12)
131#define GPSR3_4 F_(NFDATA2, IP9_11_8)
132#define GPSR3_3 F_(NFDATA1, IP9_7_4)
133#define GPSR3_2 F_(NFDATA0, IP9_3_0)
134#define GPSR3_1 F_(NFWE_N, IP8_31_28)
135#define GPSR3_0 F_(NFRE_N, IP8_27_24)
136
137/* GPSR4 */
138#define GPSR4_31 F_(CAN0_RX_A, IP12_27_24)
139#define GPSR4_30 F_(CAN1_TX_A, IP13_7_4)
140#define GPSR4_29 F_(CAN1_RX_A, IP13_3_0)
141#define GPSR4_28 F_(CAN0_TX_A, IP12_31_28)
142#define GPSR4_27 FM(TX2)
143#define GPSR4_26 FM(RX2)
144#define GPSR4_25 F_(SCK2, IP12_11_8)
145#define GPSR4_24 F_(TX1_A, IP12_7_4)
146#define GPSR4_23 F_(RX1_A, IP12_3_0)
147#define GPSR4_22 F_(SCK1_A, IP11_31_28)
148#define GPSR4_21 F_(TX0_A, IP11_27_24)
149#define GPSR4_20 F_(RX0_A, IP11_23_20)
150#define GPSR4_19 F_(SCK0_A, IP11_19_16)
151#define GPSR4_18 F_(MSIOF1_RXD, IP11_15_12)
152#define GPSR4_17 F_(MSIOF1_TXD, IP11_11_8)
153#define GPSR4_16 F_(MSIOF1_SCK, IP11_7_4)
154#define GPSR4_15 FM(MSIOF0_RXD)
155#define GPSR4_14 FM(MSIOF0_TXD)
156#define GPSR4_13 FM(MSIOF0_SYNC)
157#define GPSR4_12 FM(MSIOF0_SCK)
158#define GPSR4_11 F_(SDA1, IP11_3_0)
159#define GPSR4_10 F_(SCL1, IP10_31_28)
160#define GPSR4_9 FM(SDA0)
161#define GPSR4_8 FM(SCL0)
162#define GPSR4_7 F_(SSI_WS4_A, IP10_27_24)
163#define GPSR4_6 F_(SSI_SDATA4_A, IP10_23_20)
164#define GPSR4_5 F_(SSI_SCK4_A, IP10_19_16)
165#define GPSR4_4 F_(SSI_WS34, IP10_15_12)
166#define GPSR4_3 F_(SSI_SDATA3, IP10_11_8)
167#define GPSR4_2 F_(SSI_SCK34, IP10_7_4)
168#define GPSR4_1 F_(AUDIO_CLKA, IP10_3_0)
169#define GPSR4_0 F_(NFRB_N, IP8_23_20)
170
171/* GPSR5 */
172#define GPSR5_20 FM(AVB0_LINK)
173#define GPSR5_19 FM(AVB0_PHY_INT)
174#define GPSR5_18 FM(AVB0_MAGIC)
175#define GPSR5_17 FM(AVB0_MDC)
176#define GPSR5_16 FM(AVB0_MDIO)
177#define GPSR5_15 FM(AVB0_TXCREFCLK)
178#define GPSR5_14 FM(AVB0_TD3)
179#define GPSR5_13 FM(AVB0_TD2)
180#define GPSR5_12 FM(AVB0_TD1)
181#define GPSR5_11 FM(AVB0_TD0)
182#define GPSR5_10 FM(AVB0_TXC)
183#define GPSR5_9 FM(AVB0_TX_CTL)
184#define GPSR5_8 FM(AVB0_RD3)
185#define GPSR5_7 FM(AVB0_RD2)
186#define GPSR5_6 FM(AVB0_RD1)
187#define GPSR5_5 FM(AVB0_RD0)
188#define GPSR5_4 FM(AVB0_RXC)
189#define GPSR5_3 FM(AVB0_RX_CTL)
190#define GPSR5_2 F_(CAN_CLK, IP12_23_20)
191#define GPSR5_1 F_(TPU0TO1_A, IP12_19_16)
192#define GPSR5_0 F_(TPU0TO0_A, IP12_15_12)
193
194/* GPSR6 */
195#define GPSR6_13 FM(RPC_INT_N)
196#define GPSR6_12 FM(RPC_RESET_N)
197#define GPSR6_11 FM(QSPI1_SSL)
198#define GPSR6_10 FM(QSPI1_IO3)
199#define GPSR6_9 FM(QSPI1_IO2)
200#define GPSR6_8 FM(QSPI1_MISO_IO1)
201#define GPSR6_7 FM(QSPI1_MOSI_IO0)
202#define GPSR6_6 FM(QSPI1_SPCLK)
203#define GPSR6_5 FM(QSPI0_SSL)
204#define GPSR6_4 FM(QSPI0_IO3)
205#define GPSR6_3 FM(QSPI0_IO2)
206#define GPSR6_2 FM(QSPI0_MISO_IO1)
207#define GPSR6_1 FM(QSPI0_MOSI_IO0)
208#define GPSR6_0 FM(QSPI0_SPCLK)
209
210/* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 - F */
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200211#define IP0_3_0 FM(IRQ0_A) FM(MSIOF2_SYNC_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
212#define IP0_7_4 FM(MSIOF2_SCK) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
Marek Vasut7d35e642017-10-08 20:57:37 +0200213#define IP0_11_8 FM(MSIOF2_TXD) FM(SCL3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
214#define IP0_15_12 FM(MSIOF2_RXD) FM(SDA3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
215#define IP0_19_16 FM(MLB_CLK) FM(MSIOF2_SYNC_A) FM(SCK5_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
216#define IP0_23_20 FM(MLB_DAT) FM(MSIOF2_SS1) FM(RX5_A) FM(SCL3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
217#define IP0_27_24 FM(MLB_SIG) FM(MSIOF2_SS2) FM(TX5_A) FM(SDA3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
218#define IP0_31_28 FM(DU_DB0) FM(LCDOUT0) FM(MSIOF3_TXD_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
219#define IP1_3_0 FM(DU_DB1) FM(LCDOUT1) FM(MSIOF3_RXD_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
220#define IP1_7_4 FM(DU_DB2) FM(LCDOUT2) FM(IRQ0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
221#define IP1_11_8 FM(DU_DB3) FM(LCDOUT3) FM(SCK5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
222#define IP1_15_12 FM(DU_DB4) FM(LCDOUT4) FM(RX5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
223#define IP1_19_16 FM(DU_DB5) FM(LCDOUT5) FM(TX5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
224#define IP1_23_20 FM(DU_DB6) FM(LCDOUT6) FM(MSIOF3_SS1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
225#define IP1_27_24 FM(DU_DB7) FM(LCDOUT7) FM(MSIOF3_SS2_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
226#define IP1_31_28 FM(DU_DG0) FM(LCDOUT8) FM(MSIOF3_SCK_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
227#define IP2_3_0 FM(DU_DG1) FM(LCDOUT9) FM(MSIOF3_SYNC_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
228#define IP2_7_4 FM(DU_DG2) FM(LCDOUT10) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
229#define IP2_11_8 FM(DU_DG3) FM(LCDOUT11) FM(IRQ1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
230#define IP2_15_12 FM(DU_DG4) FM(LCDOUT12) FM(HSCK3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
231#define IP2_19_16 FM(DU_DG5) FM(LCDOUT13) FM(HTX3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
232#define IP2_23_20 FM(DU_DG6) FM(LCDOUT14) FM(HRX3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
233#define IP2_27_24 FM(DU_DG7) FM(LCDOUT15) FM(SCK4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
234#define IP2_31_28 FM(DU_DR0) FM(LCDOUT16) FM(RX4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
235#define IP3_3_0 FM(DU_DR1) FM(LCDOUT17) FM(TX4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
236#define IP3_7_4 FM(DU_DR2) FM(LCDOUT18) FM(PWM0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
237#define IP3_11_8 FM(DU_DR3) FM(LCDOUT19) FM(PWM1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
238#define IP3_15_12 FM(DU_DR4) FM(LCDOUT20) FM(TCLK2_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
239#define IP3_19_16 FM(DU_DR5) FM(LCDOUT21) FM(NMI) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
240#define IP3_23_20 FM(DU_DR6) FM(LCDOUT22) FM(PWM2_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
241#define IP3_27_24 FM(DU_DR7) FM(LCDOUT23) FM(TCLK1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
242#define IP3_31_28 FM(DU_DOTCLKOUT0) FM(QCLK) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
243
244/* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 - F */
245#define IP4_3_0 FM(DU_HSYNC) FM(QSTH_QHS) FM(IRQ3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
246#define IP4_7_4 FM(DU_VSYNC) FM(QSTVA_QVS) FM(IRQ4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
247#define IP4_11_8 FM(DU_DISP) FM(QSTVB_QVE) FM(PWM3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
248#define IP4_15_12 FM(DU_DISP_CDE) FM(QCPV_QDE) FM(IRQ2_B) FM(DU_DOTCLKIN1)F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
249#define IP4_19_16 FM(DU_CDE) FM(QSTB_QHE) FM(SCK3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
250#define IP4_23_20 FM(QPOLA) F_(0, 0) FM(RX3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
251#define IP4_27_24 FM(QPOLB) F_(0, 0) FM(TX3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
252#define IP4_31_28 FM(VI4_DATA0) FM(PWM0_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
253#define IP5_3_0 FM(VI4_DATA1) FM(PWM1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
254#define IP5_7_4 FM(VI4_DATA2) FM(PWM2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
255#define IP5_11_8 FM(VI4_DATA3) FM(PWM3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
256#define IP5_15_12 FM(VI4_DATA5) FM(SCK4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
257#define IP5_19_16 FM(VI4_DATA6) FM(IRQ2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
258#define IP5_23_20 FM(VI4_DATA7) FM(TCLK2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
259#define IP5_27_24 FM(VI4_DATA8) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
260#define IP5_31_28 FM(VI4_DATA9) FM(MSIOF3_SS2_A) FM(IRQ1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
261#define IP6_3_0 FM(VI4_DATA10) FM(RX4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
262#define IP6_7_4 FM(VI4_DATA11) FM(TX4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
263#define IP6_11_8 FM(VI4_DATA12) FM(TCLK1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
264#define IP6_15_12 FM(VI4_DATA13) FM(MSIOF3_SS1_A) FM(HCTS3_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
265#define IP6_19_16 FM(VI4_DATA14) FM(SSI_SCK4_B) FM(HRTS3_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
266#define IP6_23_20 FM(VI4_DATA15) FM(SSI_SDATA4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
267#define IP6_27_24 FM(VI4_DATA16) FM(HRX3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
268#define IP6_31_28 FM(VI4_DATA17) FM(HTX3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
269#define IP7_3_0 FM(VI4_DATA18) FM(HSCK3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
270#define IP7_7_4 FM(VI4_DATA19) FM(SSI_WS4_B) F_(0, 0) F_(0, 0) FM(NFDATA15) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
271#define IP7_11_8 FM(VI4_DATA20) FM(MSIOF3_SYNC_A) F_(0, 0) F_(0, 0) FM(NFDATA14) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
272#define IP7_15_12 FM(VI4_DATA21) FM(MSIOF3_TXD_A) F_(0, 0) F_(0, 0) FM(NFDATA13) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
273#define IP7_19_16 FM(VI4_DATA22) FM(MSIOF3_RXD_A) F_(0, 0) F_(0, 0) FM(NFDATA12) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
274#define IP7_23_20 FM(VI4_DATA23) FM(MSIOF3_SCK_A) F_(0, 0) F_(0, 0) FM(NFDATA11) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
275#define IP7_27_24 FM(VI4_VSYNC_N) FM(SCK1_B) F_(0, 0) F_(0, 0) FM(NFDATA10) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
276#define IP7_31_28 FM(VI4_HSYNC_N) FM(RX1_B) F_(0, 0) F_(0, 0) FM(NFDATA9) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
277
278/* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 - F */
279#define IP8_3_0 FM(VI4_FIELD) FM(AUDIO_CLKB) FM(IRQ5_A) FM(SCIF_CLK) FM(NFDATA8) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
280#define IP8_7_4 FM(VI4_CLKENB) FM(TX1_B) F_(0, 0) F_(0, 0) FM(NFWP_N) FM(DVC_MUTE_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
281#define IP8_11_8 FM(NFALE) FM(SCL2_B) FM(IRQ3_B) FM(PWM0_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
282#define IP8_15_12 FM(NFCLE) FM(SDA2_B) FM(SCK3_A) FM(PWM1_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
283#define IP8_19_16 FM(NFCE_N) F_(0, 0) FM(RX3_A) FM(PWM2_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
284#define IP8_23_20 FM(NFRB_N) F_(0, 0) FM(TX3_A) FM(PWM3_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
285#define IP8_27_24 FM(NFRE_N) FM(MMC_CMD) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
286#define IP8_31_28 FM(NFWE_N) FM(MMC_CLK) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
287#define IP9_3_0 FM(NFDATA0) FM(MMC_D0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
288#define IP9_7_4 FM(NFDATA1) FM(MMC_D1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
289#define IP9_11_8 FM(NFDATA2) FM(MMC_D2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
290#define IP9_15_12 FM(NFDATA3) FM(MMC_D3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
291#define IP9_19_16 FM(NFDATA4) FM(MMC_D4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
292#define IP9_23_20 FM(NFDATA5) FM(MMC_D5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
293#define IP9_27_24 FM(NFDATA6) FM(MMC_D6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
294#define IP9_31_28 FM(NFDATA7) FM(MMC_D7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
295#define IP10_3_0 FM(AUDIO_CLKA) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(DVC_MUTE_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
296#define IP10_7_4 FM(SSI_SCK34) FM(FSO_CFE_0_N_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
297#define IP10_11_8 FM(SSI_SDATA3) FM(FSO_CFE_1_N_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
298#define IP10_15_12 FM(SSI_WS34) FM(FSO_TOE_N_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
299#define IP10_19_16 FM(SSI_SCK4_A) FM(HSCK0) FM(AUDIO_CLKOUT) FM(CAN0_RX_B) FM(IRQ4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
300#define IP10_23_20 FM(SSI_SDATA4_A) FM(HTX0) FM(SCL2_A) FM(CAN1_RX_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
301#define IP10_27_24 FM(SSI_WS4_A) FM(HRX0) FM(SDA2_A) FM(CAN1_TX_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
302#define IP10_31_28 FM(SCL1) FM(CTS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200303#define IP11_3_0 FM(SDA1) FM(RTS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
Marek Vasut7d35e642017-10-08 20:57:37 +0200304#define IP11_7_4 FM(MSIOF1_SCK) FM(AVB0_AVTP_PPS_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
305#define IP11_11_8 FM(MSIOF1_TXD) FM(AVB0_AVTP_CAPTURE_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
306#define IP11_15_12 FM(MSIOF1_RXD) FM(AVB0_AVTP_MATCH_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
307#define IP11_19_16 FM(SCK0_A) FM(MSIOF1_SYNC) FM(FSO_CFE_0_N_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
308#define IP11_23_20 FM(RX0_A) FM(MSIOF0_SS1) FM(FSO_CFE_1_N_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
309#define IP11_27_24 FM(TX0_A) FM(MSIOF0_SS2) FM(FSO_TOE_N_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
310#define IP11_31_28 FM(SCK1_A) FM(MSIOF1_SS2) FM(TPU0TO2_B) FM(CAN0_TX_B) FM(AUDIO_CLKOUT1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
311
312/* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 - F */
313#define IP12_3_0 FM(RX1_A) FM(CTS0_N) FM(TPU0TO0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200314#define IP12_7_4 FM(TX1_A) FM(RTS0_N) FM(TPU0TO1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
Marek Vasut7d35e642017-10-08 20:57:37 +0200315#define IP12_11_8 FM(SCK2) FM(MSIOF1_SS1) FM(TPU0TO3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
316#define IP12_15_12 FM(TPU0TO0_A) FM(AVB0_AVTP_CAPTURE_A) FM(HCTS0_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
317#define IP12_19_16 FM(TPU0TO1_A) FM(AVB0_AVTP_MATCH_A) FM(HRTS0_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
318#define IP12_23_20 FM(CAN_CLK) FM(AVB0_AVTP_PPS_A) FM(SCK0_B) FM(IRQ5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
319#define IP12_27_24 FM(CAN0_RX_A) FM(CANFD0_RX) FM(RX0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
320#define IP12_31_28 FM(CAN0_TX_A) FM(CANFD0_TX) FM(TX0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
321#define IP13_3_0 FM(CAN1_RX_A) FM(CANFD1_RX) FM(TPU0TO2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
322#define IP13_7_4 FM(CAN1_TX_A) FM(CANFD1_TX) FM(TPU0TO3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
323
324#define PINMUX_GPSR \
325\
326 GPSR1_31 GPSR2_31 GPSR4_31 \
327 GPSR1_30 GPSR2_30 GPSR4_30 \
328 GPSR1_29 GPSR2_29 GPSR4_29 \
329 GPSR1_28 GPSR2_28 GPSR4_28 \
330 GPSR1_27 GPSR2_27 GPSR4_27 \
331 GPSR1_26 GPSR2_26 GPSR4_26 \
332 GPSR1_25 GPSR2_25 GPSR4_25 \
333 GPSR1_24 GPSR2_24 GPSR4_24 \
334 GPSR1_23 GPSR2_23 GPSR4_23 \
335 GPSR1_22 GPSR2_22 GPSR4_22 \
336 GPSR1_21 GPSR2_21 GPSR4_21 \
337 GPSR1_20 GPSR2_20 GPSR4_20 GPSR5_20 \
338 GPSR1_19 GPSR2_19 GPSR4_19 GPSR5_19 \
339 GPSR1_18 GPSR2_18 GPSR4_18 GPSR5_18 \
340 GPSR1_17 GPSR2_17 GPSR4_17 GPSR5_17 \
341 GPSR1_16 GPSR2_16 GPSR4_16 GPSR5_16 \
342 GPSR1_15 GPSR2_15 GPSR4_15 GPSR5_15 \
343 GPSR1_14 GPSR2_14 GPSR4_14 GPSR5_14 \
344 GPSR1_13 GPSR2_13 GPSR4_13 GPSR5_13 GPSR6_13 \
345 GPSR1_12 GPSR2_12 GPSR4_12 GPSR5_12 GPSR6_12 \
346 GPSR1_11 GPSR2_11 GPSR4_11 GPSR5_11 GPSR6_11 \
347 GPSR1_10 GPSR2_10 GPSR4_10 GPSR5_10 GPSR6_10 \
348 GPSR1_9 GPSR2_9 GPSR3_9 GPSR4_9 GPSR5_9 GPSR6_9 \
349GPSR0_8 GPSR1_8 GPSR2_8 GPSR3_8 GPSR4_8 GPSR5_8 GPSR6_8 \
350GPSR0_7 GPSR1_7 GPSR2_7 GPSR3_7 GPSR4_7 GPSR5_7 GPSR6_7 \
351GPSR0_6 GPSR1_6 GPSR2_6 GPSR3_6 GPSR4_6 GPSR5_6 GPSR6_6 \
352GPSR0_5 GPSR1_5 GPSR2_5 GPSR3_5 GPSR4_5 GPSR5_5 GPSR6_5 \
353GPSR0_4 GPSR1_4 GPSR2_4 GPSR3_4 GPSR4_4 GPSR5_4 GPSR6_4 \
354GPSR0_3 GPSR1_3 GPSR2_3 GPSR3_3 GPSR4_3 GPSR5_3 GPSR6_3 \
355GPSR0_2 GPSR1_2 GPSR2_2 GPSR3_2 GPSR4_2 GPSR5_2 GPSR6_2 \
356GPSR0_1 GPSR1_1 GPSR2_1 GPSR3_1 GPSR4_1 GPSR5_1 GPSR6_1 \
357GPSR0_0 GPSR1_0 GPSR2_0 GPSR3_0 GPSR4_0 GPSR5_0 GPSR6_0
358
359#define PINMUX_IPSR \
360\
361FM(IP0_3_0) IP0_3_0 FM(IP1_3_0) IP1_3_0 FM(IP2_3_0) IP2_3_0 FM(IP3_3_0) IP3_3_0 \
362FM(IP0_7_4) IP0_7_4 FM(IP1_7_4) IP1_7_4 FM(IP2_7_4) IP2_7_4 FM(IP3_7_4) IP3_7_4 \
363FM(IP0_11_8) IP0_11_8 FM(IP1_11_8) IP1_11_8 FM(IP2_11_8) IP2_11_8 FM(IP3_11_8) IP3_11_8 \
364FM(IP0_15_12) IP0_15_12 FM(IP1_15_12) IP1_15_12 FM(IP2_15_12) IP2_15_12 FM(IP3_15_12) IP3_15_12 \
365FM(IP0_19_16) IP0_19_16 FM(IP1_19_16) IP1_19_16 FM(IP2_19_16) IP2_19_16 FM(IP3_19_16) IP3_19_16 \
366FM(IP0_23_20) IP0_23_20 FM(IP1_23_20) IP1_23_20 FM(IP2_23_20) IP2_23_20 FM(IP3_23_20) IP3_23_20 \
367FM(IP0_27_24) IP0_27_24 FM(IP1_27_24) IP1_27_24 FM(IP2_27_24) IP2_27_24 FM(IP3_27_24) IP3_27_24 \
368FM(IP0_31_28) IP0_31_28 FM(IP1_31_28) IP1_31_28 FM(IP2_31_28) IP2_31_28 FM(IP3_31_28) IP3_31_28 \
369\
370FM(IP4_3_0) IP4_3_0 FM(IP5_3_0) IP5_3_0 FM(IP6_3_0) IP6_3_0 FM(IP7_3_0) IP7_3_0 \
371FM(IP4_7_4) IP4_7_4 FM(IP5_7_4) IP5_7_4 FM(IP6_7_4) IP6_7_4 FM(IP7_7_4) IP7_7_4 \
372FM(IP4_11_8) IP4_11_8 FM(IP5_11_8) IP5_11_8 FM(IP6_11_8) IP6_11_8 FM(IP7_11_8) IP7_11_8 \
373FM(IP4_15_12) IP4_15_12 FM(IP5_15_12) IP5_15_12 FM(IP6_15_12) IP6_15_12 FM(IP7_15_12) IP7_15_12 \
374FM(IP4_19_16) IP4_19_16 FM(IP5_19_16) IP5_19_16 FM(IP6_19_16) IP6_19_16 FM(IP7_19_16) IP7_19_16 \
375FM(IP4_23_20) IP4_23_20 FM(IP5_23_20) IP5_23_20 FM(IP6_23_20) IP6_23_20 FM(IP7_23_20) IP7_23_20 \
376FM(IP4_27_24) IP4_27_24 FM(IP5_27_24) IP5_27_24 FM(IP6_27_24) IP6_27_24 FM(IP7_27_24) IP7_27_24 \
377FM(IP4_31_28) IP4_31_28 FM(IP5_31_28) IP5_31_28 FM(IP6_31_28) IP6_31_28 FM(IP7_31_28) IP7_31_28 \
378\
379FM(IP8_3_0) IP8_3_0 FM(IP9_3_0) IP9_3_0 FM(IP10_3_0) IP10_3_0 FM(IP11_3_0) IP11_3_0 \
380FM(IP8_7_4) IP8_7_4 FM(IP9_7_4) IP9_7_4 FM(IP10_7_4) IP10_7_4 FM(IP11_7_4) IP11_7_4 \
381FM(IP8_11_8) IP8_11_8 FM(IP9_11_8) IP9_11_8 FM(IP10_11_8) IP10_11_8 FM(IP11_11_8) IP11_11_8 \
382FM(IP8_15_12) IP8_15_12 FM(IP9_15_12) IP9_15_12 FM(IP10_15_12) IP10_15_12 FM(IP11_15_12) IP11_15_12 \
383FM(IP8_19_16) IP8_19_16 FM(IP9_19_16) IP9_19_16 FM(IP10_19_16) IP10_19_16 FM(IP11_19_16) IP11_19_16 \
384FM(IP8_23_20) IP8_23_20 FM(IP9_23_20) IP9_23_20 FM(IP10_23_20) IP10_23_20 FM(IP11_23_20) IP11_23_20 \
385FM(IP8_27_24) IP8_27_24 FM(IP9_27_24) IP9_27_24 FM(IP10_27_24) IP10_27_24 FM(IP11_27_24) IP11_27_24 \
386FM(IP8_31_28) IP8_31_28 FM(IP9_31_28) IP9_31_28 FM(IP10_31_28) IP10_31_28 FM(IP11_31_28) IP11_31_28 \
387\
388FM(IP12_3_0) IP12_3_0 FM(IP13_3_0) IP13_3_0 \
389FM(IP12_7_4) IP12_7_4 FM(IP13_7_4) IP13_7_4 \
390FM(IP12_11_8) IP12_11_8 \
391FM(IP12_15_12) IP12_15_12 \
392FM(IP12_19_16) IP12_19_16 \
393FM(IP12_23_20) IP12_23_20 \
394FM(IP12_27_24) IP12_27_24 \
395FM(IP12_31_28) IP12_31_28 \
396
Marek Vasut88e81ec2019-03-04 22:39:51 +0100397/* The bit numbering in MOD_SEL fields is reversed */
398#define REV4(f0, f1, f2, f3) f0 f2 f1 f3
399
Marek Vasut7d35e642017-10-08 20:57:37 +0200400/* MOD_SEL0 */ /* 0 */ /* 1 */ /* 2 */ /* 3 */
401#define MOD_SEL0_30 FM(SEL_MSIOF2_0) FM(SEL_MSIOF2_1)
402#define MOD_SEL0_29 FM(SEL_I2C3_0) FM(SEL_I2C3_1)
403#define MOD_SEL0_28 FM(SEL_SCIF5_0) FM(SEL_SCIF5_1)
404#define MOD_SEL0_27 FM(SEL_MSIOF3_0) FM(SEL_MSIOF3_1)
405#define MOD_SEL0_26 FM(SEL_HSCIF3_0) FM(SEL_HSCIF3_1)
406#define MOD_SEL0_25 FM(SEL_SCIF4_0) FM(SEL_SCIF4_1)
Marek Vasut88e81ec2019-03-04 22:39:51 +0100407#define MOD_SEL0_24_23 REV4(FM(SEL_PWM0_0), FM(SEL_PWM0_1), FM(SEL_PWM0_2), F_(0, 0))
408#define MOD_SEL0_22_21 REV4(FM(SEL_PWM1_0), FM(SEL_PWM1_1), FM(SEL_PWM1_2), F_(0, 0))
409#define MOD_SEL0_20_19 REV4(FM(SEL_PWM2_0), FM(SEL_PWM2_1), FM(SEL_PWM2_2), F_(0, 0))
410#define MOD_SEL0_18_17 REV4(FM(SEL_PWM3_0), FM(SEL_PWM3_1), FM(SEL_PWM3_2), F_(0, 0))
Marek Vasut7d35e642017-10-08 20:57:37 +0200411#define MOD_SEL0_15 FM(SEL_IRQ_0_0) FM(SEL_IRQ_0_1)
412#define MOD_SEL0_14 FM(SEL_IRQ_1_0) FM(SEL_IRQ_1_1)
413#define MOD_SEL0_13 FM(SEL_IRQ_2_0) FM(SEL_IRQ_2_1)
414#define MOD_SEL0_12 FM(SEL_IRQ_3_0) FM(SEL_IRQ_3_1)
415#define MOD_SEL0_11 FM(SEL_IRQ_4_0) FM(SEL_IRQ_4_1)
416#define MOD_SEL0_10 FM(SEL_IRQ_5_0) FM(SEL_IRQ_5_1)
417#define MOD_SEL0_5 FM(SEL_TMU_0_0) FM(SEL_TMU_0_1)
418#define MOD_SEL0_4 FM(SEL_TMU_1_0) FM(SEL_TMU_1_1)
419#define MOD_SEL0_3 FM(SEL_SCIF3_0) FM(SEL_SCIF3_1)
420#define MOD_SEL0_2 FM(SEL_SCIF1_0) FM(SEL_SCIF1_1)
421#define MOD_SEL0_1 FM(SEL_SCU_0) FM(SEL_SCU_1)
422#define MOD_SEL0_0 FM(SEL_RFSO_0) FM(SEL_RFSO_1)
423
424#define MOD_SEL1_31 FM(SEL_CAN0_0) FM(SEL_CAN0_1)
425#define MOD_SEL1_30 FM(SEL_CAN1_0) FM(SEL_CAN1_1)
426#define MOD_SEL1_29 FM(SEL_I2C2_0) FM(SEL_I2C2_1)
427#define MOD_SEL1_28 FM(SEL_ETHERAVB_0) FM(SEL_ETHERAVB_1)
428#define MOD_SEL1_27 FM(SEL_SCIF0_0) FM(SEL_SCIF0_1)
429#define MOD_SEL1_26 FM(SEL_SSIF4_0) FM(SEL_SSIF4_1)
430
Marek Vasut7d35e642017-10-08 20:57:37 +0200431#define PINMUX_MOD_SELS \
432\
433 MOD_SEL1_31 \
434MOD_SEL0_30 MOD_SEL1_30 \
435MOD_SEL0_29 MOD_SEL1_29 \
436MOD_SEL0_28 MOD_SEL1_28 \
437MOD_SEL0_27 MOD_SEL1_27 \
438MOD_SEL0_26 MOD_SEL1_26 \
439MOD_SEL0_25 \
440MOD_SEL0_24_23 \
441MOD_SEL0_22_21 \
442MOD_SEL0_20_19 \
443MOD_SEL0_18_17 \
444MOD_SEL0_15 \
445MOD_SEL0_14 \
446MOD_SEL0_13 \
447MOD_SEL0_12 \
448MOD_SEL0_11 \
449MOD_SEL0_10 \
450MOD_SEL0_5 \
451MOD_SEL0_4 \
452MOD_SEL0_3 \
453MOD_SEL0_2 \
454MOD_SEL0_1 \
455MOD_SEL0_0
456
457enum {
458 PINMUX_RESERVED = 0,
459
460 PINMUX_DATA_BEGIN,
461 GP_ALL(DATA),
462 PINMUX_DATA_END,
463
464#define F_(x, y)
465#define FM(x) FN_##x,
466 PINMUX_FUNCTION_BEGIN,
467 GP_ALL(FN),
468 PINMUX_GPSR
469 PINMUX_IPSR
470 PINMUX_MOD_SELS
471 PINMUX_FUNCTION_END,
472#undef F_
473#undef FM
474
475#define F_(x, y)
476#define FM(x) x##_MARK,
477 PINMUX_MARK_BEGIN,
478 PINMUX_GPSR
479 PINMUX_IPSR
480 PINMUX_MOD_SELS
481 PINMUX_MARK_END,
482#undef F_
483#undef FM
484};
485
Marek Vasut7d35e642017-10-08 20:57:37 +0200486static const u16 pinmux_data[] = {
487 PINMUX_DATA_GP_ALL(),
488
489 PINMUX_SINGLE(USB0_OVC),
490 PINMUX_SINGLE(USB0_PWEN),
491 PINMUX_SINGLE(VI4_DATA4),
492 PINMUX_SINGLE(VI4_CLK),
493 PINMUX_SINGLE(TX2),
494 PINMUX_SINGLE(RX2),
495 PINMUX_SINGLE(AVB0_LINK),
496 PINMUX_SINGLE(AVB0_PHY_INT),
497 PINMUX_SINGLE(AVB0_MAGIC),
498 PINMUX_SINGLE(AVB0_MDC),
499 PINMUX_SINGLE(AVB0_MDIO),
500 PINMUX_SINGLE(AVB0_TXCREFCLK),
501 PINMUX_SINGLE(AVB0_TD3),
502 PINMUX_SINGLE(AVB0_TD2),
503 PINMUX_SINGLE(AVB0_TD1),
504 PINMUX_SINGLE(AVB0_TD0),
505 PINMUX_SINGLE(AVB0_TXC),
506 PINMUX_SINGLE(AVB0_TX_CTL),
507 PINMUX_SINGLE(AVB0_RD3),
508 PINMUX_SINGLE(AVB0_RD2),
509 PINMUX_SINGLE(AVB0_RD1),
510 PINMUX_SINGLE(AVB0_RD0),
511 PINMUX_SINGLE(AVB0_RXC),
512 PINMUX_SINGLE(AVB0_RX_CTL),
513 PINMUX_SINGLE(RPC_INT_N),
514 PINMUX_SINGLE(RPC_RESET_N),
515 PINMUX_SINGLE(QSPI1_SSL),
516 PINMUX_SINGLE(QSPI1_IO3),
517 PINMUX_SINGLE(QSPI1_IO2),
518 PINMUX_SINGLE(QSPI1_MISO_IO1),
519 PINMUX_SINGLE(QSPI1_MOSI_IO0),
520 PINMUX_SINGLE(QSPI1_SPCLK),
521 PINMUX_SINGLE(QSPI0_SSL),
522 PINMUX_SINGLE(QSPI0_IO3),
523 PINMUX_SINGLE(QSPI0_IO2),
524 PINMUX_SINGLE(QSPI0_MISO_IO1),
525 PINMUX_SINGLE(QSPI0_MOSI_IO0),
526 PINMUX_SINGLE(QSPI0_SPCLK),
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200527 PINMUX_SINGLE(SCL0),
528 PINMUX_SINGLE(SDA0),
Marek Vasut88e81ec2019-03-04 22:39:51 +0100529 PINMUX_SINGLE(MSIOF0_RXD),
530 PINMUX_SINGLE(MSIOF0_TXD),
531 PINMUX_SINGLE(MSIOF0_SYNC),
532 PINMUX_SINGLE(MSIOF0_SCK),
Marek Vasut7d35e642017-10-08 20:57:37 +0200533
534 /* IPSR0 */
535 PINMUX_IPSR_MSEL(IP0_3_0, IRQ0_A, SEL_IRQ_0_0),
536 PINMUX_IPSR_MSEL(IP0_3_0, MSIOF2_SYNC_B, SEL_MSIOF2_1),
Marek Vasut7d35e642017-10-08 20:57:37 +0200537
538 PINMUX_IPSR_GPSR(IP0_7_4, MSIOF2_SCK),
Marek Vasut7d35e642017-10-08 20:57:37 +0200539
540 PINMUX_IPSR_GPSR(IP0_11_8, MSIOF2_TXD),
541 PINMUX_IPSR_MSEL(IP0_11_8, SCL3_A, SEL_I2C3_0),
542
543 PINMUX_IPSR_GPSR(IP0_15_12, MSIOF2_RXD),
544 PINMUX_IPSR_MSEL(IP0_15_12, SDA3_A, SEL_I2C3_0),
545
546 PINMUX_IPSR_GPSR(IP0_19_16, MLB_CLK),
547 PINMUX_IPSR_MSEL(IP0_19_16, MSIOF2_SYNC_A, SEL_MSIOF2_0),
548 PINMUX_IPSR_MSEL(IP0_19_16, SCK5_A, SEL_SCIF5_0),
549
550 PINMUX_IPSR_GPSR(IP0_23_20, MLB_DAT),
551 PINMUX_IPSR_GPSR(IP0_23_20, MSIOF2_SS1),
552 PINMUX_IPSR_MSEL(IP0_23_20, RX5_A, SEL_SCIF5_0),
553 PINMUX_IPSR_MSEL(IP0_23_20, SCL3_B, SEL_I2C3_1),
554
555 PINMUX_IPSR_GPSR(IP0_27_24, MLB_SIG),
556 PINMUX_IPSR_GPSR(IP0_27_24, MSIOF2_SS2),
557 PINMUX_IPSR_MSEL(IP0_27_24, TX5_A, SEL_SCIF5_0),
558 PINMUX_IPSR_MSEL(IP0_27_24, SDA3_B, SEL_I2C3_1),
559
560 PINMUX_IPSR_GPSR(IP0_31_28, DU_DB0),
561 PINMUX_IPSR_GPSR(IP0_31_28, LCDOUT0),
562 PINMUX_IPSR_MSEL(IP0_31_28, MSIOF3_TXD_B, SEL_MSIOF3_1),
563
564 /* IPSR1 */
565 PINMUX_IPSR_GPSR(IP1_3_0, DU_DB1),
566 PINMUX_IPSR_GPSR(IP1_3_0, LCDOUT1),
567 PINMUX_IPSR_MSEL(IP1_3_0, MSIOF3_RXD_B, SEL_MSIOF3_1),
568
569 PINMUX_IPSR_GPSR(IP1_7_4, DU_DB2),
570 PINMUX_IPSR_GPSR(IP1_7_4, LCDOUT2),
571 PINMUX_IPSR_MSEL(IP1_7_4, IRQ0_B, SEL_IRQ_0_1),
572
573 PINMUX_IPSR_GPSR(IP1_11_8, DU_DB3),
574 PINMUX_IPSR_GPSR(IP1_11_8, LCDOUT3),
575 PINMUX_IPSR_MSEL(IP1_11_8, SCK5_B, SEL_SCIF5_1),
576
577 PINMUX_IPSR_GPSR(IP1_15_12, DU_DB4),
578 PINMUX_IPSR_GPSR(IP1_15_12, LCDOUT4),
579 PINMUX_IPSR_MSEL(IP1_15_12, RX5_B, SEL_SCIF5_1),
580
581 PINMUX_IPSR_GPSR(IP1_19_16, DU_DB5),
582 PINMUX_IPSR_GPSR(IP1_19_16, LCDOUT5),
583 PINMUX_IPSR_MSEL(IP1_19_16, TX5_B, SEL_SCIF5_1),
584
585 PINMUX_IPSR_GPSR(IP1_23_20, DU_DB6),
586 PINMUX_IPSR_GPSR(IP1_23_20, LCDOUT6),
587 PINMUX_IPSR_MSEL(IP1_23_20, MSIOF3_SS1_B, SEL_MSIOF3_1),
588
589 PINMUX_IPSR_GPSR(IP1_27_24, DU_DB7),
590 PINMUX_IPSR_GPSR(IP1_27_24, LCDOUT7),
591 PINMUX_IPSR_MSEL(IP1_27_24, MSIOF3_SS2_B, SEL_MSIOF3_1),
592
593 PINMUX_IPSR_GPSR(IP1_31_28, DU_DG0),
594 PINMUX_IPSR_GPSR(IP1_31_28, LCDOUT8),
595 PINMUX_IPSR_MSEL(IP1_31_28, MSIOF3_SCK_B, SEL_MSIOF3_1),
596
597 /* IPSR2 */
598 PINMUX_IPSR_GPSR(IP2_3_0, DU_DG1),
599 PINMUX_IPSR_GPSR(IP2_3_0, LCDOUT9),
600 PINMUX_IPSR_MSEL(IP2_3_0, MSIOF3_SYNC_B, SEL_MSIOF3_1),
601
602 PINMUX_IPSR_GPSR(IP2_7_4, DU_DG2),
603 PINMUX_IPSR_GPSR(IP2_7_4, LCDOUT10),
604
605 PINMUX_IPSR_GPSR(IP2_11_8, DU_DG3),
606 PINMUX_IPSR_GPSR(IP2_11_8, LCDOUT11),
607 PINMUX_IPSR_MSEL(IP2_11_8, IRQ1_A, SEL_IRQ_1_0),
608
609 PINMUX_IPSR_GPSR(IP2_15_12, DU_DG4),
610 PINMUX_IPSR_GPSR(IP2_15_12, LCDOUT12),
611 PINMUX_IPSR_MSEL(IP2_15_12, HSCK3_B, SEL_HSCIF3_1),
612
613 PINMUX_IPSR_GPSR(IP2_19_16, DU_DG5),
614 PINMUX_IPSR_GPSR(IP2_19_16, LCDOUT13),
615 PINMUX_IPSR_MSEL(IP2_19_16, HTX3_B, SEL_HSCIF3_1),
616
617 PINMUX_IPSR_GPSR(IP2_23_20, DU_DG6),
618 PINMUX_IPSR_GPSR(IP2_23_20, LCDOUT14),
619 PINMUX_IPSR_MSEL(IP2_23_20, HRX3_B, SEL_HSCIF3_1),
620
621 PINMUX_IPSR_GPSR(IP2_27_24, DU_DG7),
622 PINMUX_IPSR_GPSR(IP2_27_24, LCDOUT15),
623 PINMUX_IPSR_MSEL(IP2_27_24, SCK4_B, SEL_SCIF4_1),
624
625 PINMUX_IPSR_GPSR(IP2_31_28, DU_DR0),
626 PINMUX_IPSR_GPSR(IP2_31_28, LCDOUT16),
627 PINMUX_IPSR_MSEL(IP2_31_28, RX4_B, SEL_SCIF4_1),
628
629 /* IPSR3 */
630 PINMUX_IPSR_GPSR(IP3_3_0, DU_DR1),
631 PINMUX_IPSR_GPSR(IP3_3_0, LCDOUT17),
632 PINMUX_IPSR_MSEL(IP3_3_0, TX4_B, SEL_SCIF4_1),
633
634 PINMUX_IPSR_GPSR(IP3_7_4, DU_DR2),
635 PINMUX_IPSR_GPSR(IP3_7_4, LCDOUT18),
636 PINMUX_IPSR_MSEL(IP3_7_4, PWM0_B, SEL_PWM0_2),
637
638 PINMUX_IPSR_GPSR(IP3_11_8, DU_DR3),
639 PINMUX_IPSR_GPSR(IP3_11_8, LCDOUT19),
640 PINMUX_IPSR_MSEL(IP3_11_8, PWM1_B, SEL_PWM1_2),
641
642 PINMUX_IPSR_GPSR(IP3_15_12, DU_DR4),
643 PINMUX_IPSR_GPSR(IP3_15_12, LCDOUT20),
644 PINMUX_IPSR_MSEL(IP3_15_12, TCLK2_B, SEL_TMU_0_1),
645
646 PINMUX_IPSR_GPSR(IP3_19_16, DU_DR5),
647 PINMUX_IPSR_GPSR(IP3_19_16, LCDOUT21),
648 PINMUX_IPSR_GPSR(IP3_19_16, NMI),
649
650 PINMUX_IPSR_GPSR(IP3_23_20, DU_DR6),
651 PINMUX_IPSR_GPSR(IP3_23_20, LCDOUT22),
652 PINMUX_IPSR_MSEL(IP3_23_20, PWM2_B, SEL_PWM2_2),
653
654 PINMUX_IPSR_GPSR(IP3_27_24, DU_DR7),
655 PINMUX_IPSR_GPSR(IP3_27_24, LCDOUT23),
656 PINMUX_IPSR_MSEL(IP3_27_24, TCLK1_B, SEL_TMU_1_1),
657
658 PINMUX_IPSR_GPSR(IP3_31_28, DU_DOTCLKOUT0),
659 PINMUX_IPSR_GPSR(IP3_31_28, QCLK),
660
661 /* IPSR4 */
662 PINMUX_IPSR_GPSR(IP4_3_0, DU_HSYNC),
663 PINMUX_IPSR_GPSR(IP4_3_0, QSTH_QHS),
664 PINMUX_IPSR_MSEL(IP4_3_0, IRQ3_A, SEL_IRQ_3_0),
665
666 PINMUX_IPSR_GPSR(IP4_7_4, DU_VSYNC),
667 PINMUX_IPSR_GPSR(IP4_7_4, QSTVA_QVS),
668 PINMUX_IPSR_MSEL(IP4_7_4, IRQ4_A, SEL_IRQ_4_0),
669
670 PINMUX_IPSR_GPSR(IP4_11_8, DU_DISP),
671 PINMUX_IPSR_GPSR(IP4_11_8, QSTVB_QVE),
672 PINMUX_IPSR_MSEL(IP4_11_8, PWM3_B, SEL_PWM3_2),
673
674 PINMUX_IPSR_GPSR(IP4_15_12, DU_DISP_CDE),
675 PINMUX_IPSR_GPSR(IP4_15_12, QCPV_QDE),
676 PINMUX_IPSR_MSEL(IP4_15_12, IRQ2_B, SEL_IRQ_2_1),
677 PINMUX_IPSR_GPSR(IP4_15_12, DU_DOTCLKIN1),
678
679 PINMUX_IPSR_GPSR(IP4_19_16, DU_CDE),
680 PINMUX_IPSR_GPSR(IP4_19_16, QSTB_QHE),
681 PINMUX_IPSR_MSEL(IP4_19_16, SCK3_B, SEL_SCIF3_1),
682
683 PINMUX_IPSR_GPSR(IP4_23_20, QPOLA),
684 PINMUX_IPSR_MSEL(IP4_23_20, RX3_B, SEL_SCIF3_1),
685
686 PINMUX_IPSR_GPSR(IP4_27_24, QPOLB),
687 PINMUX_IPSR_MSEL(IP4_27_24, TX3_B, SEL_SCIF3_1),
688
689 PINMUX_IPSR_GPSR(IP4_31_28, VI4_DATA0),
690 PINMUX_IPSR_MSEL(IP4_31_28, PWM0_A, SEL_PWM0_0),
691
692 /* IPSR5 */
693 PINMUX_IPSR_GPSR(IP5_3_0, VI4_DATA1),
694 PINMUX_IPSR_MSEL(IP5_3_0, PWM1_A, SEL_PWM1_0),
695
696 PINMUX_IPSR_GPSR(IP5_7_4, VI4_DATA2),
697 PINMUX_IPSR_MSEL(IP5_7_4, PWM2_A, SEL_PWM2_0),
698
699 PINMUX_IPSR_GPSR(IP5_11_8, VI4_DATA3),
700 PINMUX_IPSR_MSEL(IP5_11_8, PWM3_A, SEL_PWM3_0),
701
702 PINMUX_IPSR_GPSR(IP5_15_12, VI4_DATA5),
703 PINMUX_IPSR_MSEL(IP5_15_12, SCK4_A, SEL_SCIF4_0),
704
705 PINMUX_IPSR_GPSR(IP5_19_16, VI4_DATA6),
706 PINMUX_IPSR_MSEL(IP5_19_16, IRQ2_A, SEL_IRQ_2_0),
707
708 PINMUX_IPSR_GPSR(IP5_23_20, VI4_DATA7),
709 PINMUX_IPSR_MSEL(IP5_23_20, TCLK2_A, SEL_TMU_0_0),
710
711 PINMUX_IPSR_GPSR(IP5_27_24, VI4_DATA8),
712
713 PINMUX_IPSR_GPSR(IP5_31_28, VI4_DATA9),
714 PINMUX_IPSR_MSEL(IP5_31_28, MSIOF3_SS2_A, SEL_MSIOF3_0),
715 PINMUX_IPSR_MSEL(IP5_31_28, IRQ1_B, SEL_IRQ_1_1),
716
717 /* IPSR6 */
718 PINMUX_IPSR_GPSR(IP6_3_0, VI4_DATA10),
719 PINMUX_IPSR_MSEL(IP6_3_0, RX4_A, SEL_SCIF4_0),
720
721 PINMUX_IPSR_GPSR(IP6_7_4, VI4_DATA11),
722 PINMUX_IPSR_MSEL(IP6_7_4, TX4_A, SEL_SCIF4_0),
723
724 PINMUX_IPSR_GPSR(IP6_11_8, VI4_DATA12),
725 PINMUX_IPSR_MSEL(IP6_11_8, TCLK1_A, SEL_TMU_1_0),
726
727 PINMUX_IPSR_GPSR(IP6_15_12, VI4_DATA13),
728 PINMUX_IPSR_MSEL(IP6_15_12, MSIOF3_SS1_A, SEL_MSIOF3_0),
729 PINMUX_IPSR_GPSR(IP6_15_12, HCTS3_N),
730
731 PINMUX_IPSR_GPSR(IP6_19_16, VI4_DATA14),
732 PINMUX_IPSR_MSEL(IP6_19_16, SSI_SCK4_B, SEL_SSIF4_1),
733 PINMUX_IPSR_GPSR(IP6_19_16, HRTS3_N),
734
735 PINMUX_IPSR_GPSR(IP6_23_20, VI4_DATA15),
736 PINMUX_IPSR_MSEL(IP6_23_20, SSI_SDATA4_B, SEL_SSIF4_1),
737
738 PINMUX_IPSR_GPSR(IP6_27_24, VI4_DATA16),
739 PINMUX_IPSR_MSEL(IP6_27_24, HRX3_A, SEL_HSCIF3_0),
740
741 PINMUX_IPSR_GPSR(IP6_31_28, VI4_DATA17),
742 PINMUX_IPSR_MSEL(IP6_31_28, HTX3_A, SEL_HSCIF3_0),
743
744 /* IPSR7 */
745 PINMUX_IPSR_GPSR(IP7_3_0, VI4_DATA18),
746 PINMUX_IPSR_MSEL(IP7_3_0, HSCK3_A, SEL_HSCIF3_0),
747
748 PINMUX_IPSR_GPSR(IP7_7_4, VI4_DATA19),
749 PINMUX_IPSR_MSEL(IP7_7_4, SSI_WS4_B, SEL_SSIF4_1),
750 PINMUX_IPSR_GPSR(IP7_7_4, NFDATA15),
751
752 PINMUX_IPSR_GPSR(IP7_11_8, VI4_DATA20),
753 PINMUX_IPSR_MSEL(IP7_11_8, MSIOF3_SYNC_A, SEL_MSIOF3_0),
754 PINMUX_IPSR_GPSR(IP7_11_8, NFDATA14),
755
756 PINMUX_IPSR_GPSR(IP7_15_12, VI4_DATA21),
757 PINMUX_IPSR_MSEL(IP7_15_12, MSIOF3_TXD_A, SEL_MSIOF3_0),
758
759 PINMUX_IPSR_GPSR(IP7_15_12, NFDATA13),
760 PINMUX_IPSR_GPSR(IP7_19_16, VI4_DATA22),
761 PINMUX_IPSR_MSEL(IP7_19_16, MSIOF3_RXD_A, SEL_MSIOF3_0),
762
763 PINMUX_IPSR_GPSR(IP7_19_16, NFDATA12),
764 PINMUX_IPSR_GPSR(IP7_23_20, VI4_DATA23),
765 PINMUX_IPSR_MSEL(IP7_23_20, MSIOF3_SCK_A, SEL_MSIOF3_0),
766
767 PINMUX_IPSR_GPSR(IP7_23_20, NFDATA11),
768
769 PINMUX_IPSR_GPSR(IP7_27_24, VI4_VSYNC_N),
770 PINMUX_IPSR_MSEL(IP7_27_24, SCK1_B, SEL_SCIF1_1),
771 PINMUX_IPSR_GPSR(IP7_27_24, NFDATA10),
772
773 PINMUX_IPSR_GPSR(IP7_31_28, VI4_HSYNC_N),
774 PINMUX_IPSR_MSEL(IP7_31_28, RX1_B, SEL_SCIF1_1),
775 PINMUX_IPSR_GPSR(IP7_31_28, NFDATA9),
776
777 /* IPSR8 */
778 PINMUX_IPSR_GPSR(IP8_3_0, VI4_FIELD),
779 PINMUX_IPSR_GPSR(IP8_3_0, AUDIO_CLKB),
780 PINMUX_IPSR_MSEL(IP8_3_0, IRQ5_A, SEL_IRQ_5_0),
781 PINMUX_IPSR_GPSR(IP8_3_0, SCIF_CLK),
782 PINMUX_IPSR_GPSR(IP8_3_0, NFDATA8),
783
784 PINMUX_IPSR_GPSR(IP8_7_4, VI4_CLKENB),
785 PINMUX_IPSR_MSEL(IP8_7_4, TX1_B, SEL_SCIF1_1),
786 PINMUX_IPSR_GPSR(IP8_7_4, NFWP_N),
787 PINMUX_IPSR_MSEL(IP8_7_4, DVC_MUTE_A, SEL_SCU_0),
788
789 PINMUX_IPSR_GPSR(IP8_11_8, NFALE),
790 PINMUX_IPSR_MSEL(IP8_11_8, SCL2_B, SEL_I2C2_1),
791 PINMUX_IPSR_MSEL(IP8_11_8, IRQ3_B, SEL_IRQ_3_1),
792 PINMUX_IPSR_MSEL(IP8_11_8, PWM0_C, SEL_PWM0_1),
793
794 PINMUX_IPSR_GPSR(IP8_15_12, NFCLE),
795 PINMUX_IPSR_MSEL(IP8_15_12, SDA2_B, SEL_I2C2_1),
796 PINMUX_IPSR_MSEL(IP8_15_12, SCK3_A, SEL_SCIF3_0),
797 PINMUX_IPSR_MSEL(IP8_15_12, PWM1_C, SEL_PWM1_1),
798
799 PINMUX_IPSR_GPSR(IP8_19_16, NFCE_N),
800 PINMUX_IPSR_MSEL(IP8_19_16, RX3_A, SEL_SCIF3_0),
801 PINMUX_IPSR_MSEL(IP8_19_16, PWM2_C, SEL_PWM2_1),
802
803 PINMUX_IPSR_GPSR(IP8_23_20, NFRB_N),
804 PINMUX_IPSR_MSEL(IP8_23_20, TX3_A, SEL_SCIF3_0),
805 PINMUX_IPSR_MSEL(IP8_23_20, PWM3_C, SEL_PWM3_1),
806
807 PINMUX_IPSR_GPSR(IP8_27_24, NFRE_N),
808 PINMUX_IPSR_GPSR(IP8_27_24, MMC_CMD),
809
810 PINMUX_IPSR_GPSR(IP8_31_28, NFWE_N),
811 PINMUX_IPSR_GPSR(IP8_31_28, MMC_CLK),
812
813 /* IPSR9 */
814 PINMUX_IPSR_GPSR(IP9_3_0, NFDATA0),
815 PINMUX_IPSR_GPSR(IP9_3_0, MMC_D0),
816
817 PINMUX_IPSR_GPSR(IP9_7_4, NFDATA1),
818 PINMUX_IPSR_GPSR(IP9_7_4, MMC_D1),
819
820 PINMUX_IPSR_GPSR(IP9_11_8, NFDATA2),
821 PINMUX_IPSR_GPSR(IP9_11_8, MMC_D2),
822
823 PINMUX_IPSR_GPSR(IP9_15_12, NFDATA3),
824 PINMUX_IPSR_GPSR(IP9_15_12, MMC_D3),
825
826 PINMUX_IPSR_GPSR(IP9_19_16, NFDATA4),
827 PINMUX_IPSR_GPSR(IP9_19_16, MMC_D4),
828
829 PINMUX_IPSR_GPSR(IP9_23_20, NFDATA5),
830 PINMUX_IPSR_GPSR(IP9_23_20, MMC_D5),
831
832 PINMUX_IPSR_GPSR(IP9_27_24, NFDATA6),
833 PINMUX_IPSR_GPSR(IP9_27_24, MMC_D6),
834
835 PINMUX_IPSR_GPSR(IP9_31_28, NFDATA7),
836 PINMUX_IPSR_GPSR(IP9_31_28, MMC_D7),
837
838 /* IPSR10 */
839 PINMUX_IPSR_GPSR(IP10_3_0, AUDIO_CLKA),
840 PINMUX_IPSR_MSEL(IP10_3_0, DVC_MUTE_B, SEL_SCU_1),
841
842 PINMUX_IPSR_GPSR(IP10_7_4, SSI_SCK34),
843 PINMUX_IPSR_MSEL(IP10_7_4, FSO_CFE_0_N_A, SEL_RFSO_0),
844
845 PINMUX_IPSR_GPSR(IP10_11_8, SSI_SDATA3),
846 PINMUX_IPSR_MSEL(IP10_11_8, FSO_CFE_1_N_A, SEL_RFSO_0),
847
848 PINMUX_IPSR_GPSR(IP10_15_12, SSI_WS34),
849 PINMUX_IPSR_MSEL(IP10_15_12, FSO_TOE_N_A, SEL_RFSO_0),
850
851 PINMUX_IPSR_MSEL(IP10_19_16, SSI_SCK4_A, SEL_SSIF4_0),
852 PINMUX_IPSR_GPSR(IP10_19_16, HSCK0),
853 PINMUX_IPSR_GPSR(IP10_19_16, AUDIO_CLKOUT),
854 PINMUX_IPSR_MSEL(IP10_19_16, CAN0_RX_B, SEL_CAN0_1),
855 PINMUX_IPSR_MSEL(IP10_19_16, IRQ4_B, SEL_IRQ_4_1),
856
857 PINMUX_IPSR_MSEL(IP10_23_20, SSI_SDATA4_A, SEL_SSIF4_0),
858 PINMUX_IPSR_GPSR(IP10_23_20, HTX0),
859 PINMUX_IPSR_MSEL(IP10_23_20, SCL2_A, SEL_I2C2_0),
860 PINMUX_IPSR_MSEL(IP10_23_20, CAN1_RX_B, SEL_CAN1_1),
861
862 PINMUX_IPSR_MSEL(IP10_27_24, SSI_WS4_A, SEL_SSIF4_0),
863 PINMUX_IPSR_GPSR(IP10_27_24, HRX0),
864 PINMUX_IPSR_MSEL(IP10_27_24, SDA2_A, SEL_I2C2_0),
865 PINMUX_IPSR_MSEL(IP10_27_24, CAN1_TX_B, SEL_CAN1_1),
866
867 PINMUX_IPSR_GPSR(IP10_31_28, SCL1),
868 PINMUX_IPSR_GPSR(IP10_31_28, CTS1_N),
869
870 /* IPSR11 */
871 PINMUX_IPSR_GPSR(IP11_3_0, SDA1),
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200872 PINMUX_IPSR_GPSR(IP11_3_0, RTS1_N),
Marek Vasut7d35e642017-10-08 20:57:37 +0200873
874 PINMUX_IPSR_GPSR(IP11_7_4, MSIOF1_SCK),
875 PINMUX_IPSR_MSEL(IP11_7_4, AVB0_AVTP_PPS_B, SEL_ETHERAVB_1),
876
877 PINMUX_IPSR_GPSR(IP11_11_8, MSIOF1_TXD),
878 PINMUX_IPSR_MSEL(IP11_11_8, AVB0_AVTP_CAPTURE_B, SEL_ETHERAVB_1),
879
880 PINMUX_IPSR_GPSR(IP11_15_12, MSIOF1_RXD),
881 PINMUX_IPSR_MSEL(IP11_15_12, AVB0_AVTP_MATCH_B, SEL_ETHERAVB_1),
882
883 PINMUX_IPSR_MSEL(IP11_19_16, SCK0_A, SEL_SCIF0_0),
884 PINMUX_IPSR_GPSR(IP11_19_16, MSIOF1_SYNC),
885 PINMUX_IPSR_MSEL(IP11_19_16, FSO_CFE_0_N_B, SEL_RFSO_1),
886
887 PINMUX_IPSR_MSEL(IP11_23_20, RX0_A, SEL_SCIF0_0),
888 PINMUX_IPSR_GPSR(IP11_23_20, MSIOF0_SS1),
889 PINMUX_IPSR_MSEL(IP11_23_20, FSO_CFE_1_N_B, SEL_RFSO_1),
890
891 PINMUX_IPSR_MSEL(IP11_27_24, TX0_A, SEL_SCIF0_0),
892 PINMUX_IPSR_GPSR(IP11_27_24, MSIOF0_SS2),
893 PINMUX_IPSR_MSEL(IP11_27_24, FSO_TOE_N_B, SEL_RFSO_1),
894
895 PINMUX_IPSR_MSEL(IP11_31_28, SCK1_A, SEL_SCIF1_0),
896 PINMUX_IPSR_GPSR(IP11_31_28, MSIOF1_SS2),
897 PINMUX_IPSR_GPSR(IP11_31_28, TPU0TO2_B),
898 PINMUX_IPSR_MSEL(IP11_31_28, CAN0_TX_B, SEL_CAN0_1),
899 PINMUX_IPSR_GPSR(IP11_31_28, AUDIO_CLKOUT1),
900
901 /* IPSR12 */
902 PINMUX_IPSR_MSEL(IP12_3_0, RX1_A, SEL_SCIF1_0),
903 PINMUX_IPSR_GPSR(IP12_3_0, CTS0_N),
904 PINMUX_IPSR_GPSR(IP12_3_0, TPU0TO0_B),
905
906 PINMUX_IPSR_MSEL(IP12_7_4, TX1_A, SEL_SCIF1_0),
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200907 PINMUX_IPSR_GPSR(IP12_7_4, RTS0_N),
Marek Vasut7d35e642017-10-08 20:57:37 +0200908 PINMUX_IPSR_GPSR(IP12_7_4, TPU0TO1_B),
909
910 PINMUX_IPSR_GPSR(IP12_11_8, SCK2),
911 PINMUX_IPSR_GPSR(IP12_11_8, MSIOF1_SS1),
912 PINMUX_IPSR_GPSR(IP12_11_8, TPU0TO3_B),
913
914 PINMUX_IPSR_GPSR(IP12_15_12, TPU0TO0_A),
915 PINMUX_IPSR_MSEL(IP12_15_12, AVB0_AVTP_CAPTURE_A, SEL_ETHERAVB_0),
916 PINMUX_IPSR_GPSR(IP12_15_12, HCTS0_N),
917
918 PINMUX_IPSR_GPSR(IP12_19_16, TPU0TO1_A),
919 PINMUX_IPSR_MSEL(IP12_19_16, AVB0_AVTP_MATCH_A, SEL_ETHERAVB_0),
920 PINMUX_IPSR_GPSR(IP12_19_16, HRTS0_N),
921
922 PINMUX_IPSR_GPSR(IP12_23_20, CAN_CLK),
923 PINMUX_IPSR_MSEL(IP12_23_20, AVB0_AVTP_PPS_A, SEL_ETHERAVB_0),
924 PINMUX_IPSR_MSEL(IP12_23_20, SCK0_B, SEL_SCIF0_1),
925 PINMUX_IPSR_MSEL(IP12_23_20, IRQ5_B, SEL_IRQ_5_1),
926
927 PINMUX_IPSR_MSEL(IP12_27_24, CAN0_RX_A, SEL_CAN0_0),
928 PINMUX_IPSR_GPSR(IP12_27_24, CANFD0_RX),
929 PINMUX_IPSR_MSEL(IP12_27_24, RX0_B, SEL_SCIF0_1),
930
931 PINMUX_IPSR_MSEL(IP12_31_28, CAN0_TX_A, SEL_CAN0_0),
932 PINMUX_IPSR_GPSR(IP12_31_28, CANFD0_TX),
933 PINMUX_IPSR_MSEL(IP12_31_28, TX0_B, SEL_SCIF0_1),
934
935 /* IPSR13 */
936 PINMUX_IPSR_MSEL(IP13_3_0, CAN1_RX_A, SEL_CAN1_0),
937 PINMUX_IPSR_GPSR(IP13_3_0, CANFD1_RX),
938 PINMUX_IPSR_GPSR(IP13_3_0, TPU0TO2_A),
939
940 PINMUX_IPSR_MSEL(IP13_7_4, CAN1_TX_A, SEL_CAN1_0),
941 PINMUX_IPSR_GPSR(IP13_7_4, CANFD1_TX),
942 PINMUX_IPSR_GPSR(IP13_7_4, TPU0TO3_A),
943};
944
Marek Vasutb8f61132023-01-26 21:01:46 +0100945/*
946 * Pins not associated with a GPIO port.
947 */
948enum {
949 GP_ASSIGN_LAST(),
950 NOGP_ALL(),
951};
952
Marek Vasut7d35e642017-10-08 20:57:37 +0200953static const struct sh_pfc_pin pinmux_pins[] = {
954 PINMUX_GPIO_GP_ALL(),
Marek Vasutb8f61132023-01-26 21:01:46 +0100955 PINMUX_NOGP_ALL(),
Marek Vasut7d35e642017-10-08 20:57:37 +0200956};
957
Marek Vasut7133e1f2024-12-23 14:34:16 +0100958#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200959/* - AUDIO CLOCK ------------------------------------------------------------- */
960static const unsigned int audio_clk_a_pins[] = {
961 /* CLK A */
962 RCAR_GP_PIN(4, 1),
963};
964static const unsigned int audio_clk_a_mux[] = {
965 AUDIO_CLKA_MARK,
966};
967static const unsigned int audio_clk_b_pins[] = {
968 /* CLK B */
969 RCAR_GP_PIN(2, 27),
970};
971static const unsigned int audio_clk_b_mux[] = {
972 AUDIO_CLKB_MARK,
973};
974static const unsigned int audio_clkout_pins[] = {
975 /* CLKOUT */
976 RCAR_GP_PIN(4, 5),
977};
978static const unsigned int audio_clkout_mux[] = {
979 AUDIO_CLKOUT_MARK,
980};
981static const unsigned int audio_clkout1_pins[] = {
982 /* CLKOUT1 */
983 RCAR_GP_PIN(4, 22),
984};
985static const unsigned int audio_clkout1_mux[] = {
986 AUDIO_CLKOUT1_MARK,
987};
Marek Vasut7133e1f2024-12-23 14:34:16 +0100988#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200989
990/* - EtherAVB --------------------------------------------------------------- */
991static const unsigned int avb0_link_pins[] = {
992 /* AVB0_LINK */
993 RCAR_GP_PIN(5, 20),
994};
995static const unsigned int avb0_link_mux[] = {
996 AVB0_LINK_MARK,
997};
998static const unsigned int avb0_magic_pins[] = {
999 /* AVB0_MAGIC */
1000 RCAR_GP_PIN(5, 18),
1001};
1002static const unsigned int avb0_magic_mux[] = {
1003 AVB0_MAGIC_MARK,
1004};
1005static const unsigned int avb0_phy_int_pins[] = {
1006 /* AVB0_PHY_INT */
1007 RCAR_GP_PIN(5, 19),
1008};
1009static const unsigned int avb0_phy_int_mux[] = {
1010 AVB0_PHY_INT_MARK,
1011};
1012static const unsigned int avb0_mdio_pins[] = {
1013 /* AVB0_MDC, AVB0_MDIO */
1014 RCAR_GP_PIN(5, 17), RCAR_GP_PIN(5, 16),
1015};
1016static const unsigned int avb0_mdio_mux[] = {
1017 AVB0_MDC_MARK, AVB0_MDIO_MARK,
1018};
1019static const unsigned int avb0_mii_pins[] = {
1020 /*
1021 * AVB0_TX_CTL, AVB0_TXC, AVB0_TD0,
1022 * AVB0_TD1, AVB0_TD2, AVB0_TD3,
1023 * AVB0_RX_CTL, AVB0_RXC, AVB0_RD0,
1024 * AVB0_RD1, AVB0_RD2, AVB0_RD3,
1025 * AVB0_TXCREFCLK
1026 */
1027 RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 10), RCAR_GP_PIN(5, 11),
1028 RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14),
1029 RCAR_GP_PIN(5, 3), RCAR_GP_PIN(5, 4), RCAR_GP_PIN(5, 5),
1030 RCAR_GP_PIN(5, 6), RCAR_GP_PIN(5, 7), RCAR_GP_PIN(5, 8),
1031 RCAR_GP_PIN(5, 15),
1032};
1033static const unsigned int avb0_mii_mux[] = {
1034 AVB0_TX_CTL_MARK, AVB0_TXC_MARK, AVB0_TD0_MARK,
1035 AVB0_TD1_MARK, AVB0_TD2_MARK, AVB0_TD3_MARK,
1036 AVB0_RX_CTL_MARK, AVB0_RXC_MARK, AVB0_RD0_MARK,
1037 AVB0_RD1_MARK, AVB0_RD2_MARK, AVB0_RD3_MARK,
1038 AVB0_TXCREFCLK_MARK,
1039};
1040static const unsigned int avb0_avtp_pps_a_pins[] = {
1041 /* AVB0_AVTP_PPS_A */
1042 RCAR_GP_PIN(5, 2),
1043};
1044static const unsigned int avb0_avtp_pps_a_mux[] = {
1045 AVB0_AVTP_PPS_A_MARK,
1046};
1047static const unsigned int avb0_avtp_match_a_pins[] = {
1048 /* AVB0_AVTP_MATCH_A */
1049 RCAR_GP_PIN(5, 1),
1050};
1051static const unsigned int avb0_avtp_match_a_mux[] = {
1052 AVB0_AVTP_MATCH_A_MARK,
1053};
1054static const unsigned int avb0_avtp_capture_a_pins[] = {
1055 /* AVB0_AVTP_CAPTURE_A */
1056 RCAR_GP_PIN(5, 0),
1057};
1058static const unsigned int avb0_avtp_capture_a_mux[] = {
1059 AVB0_AVTP_CAPTURE_A_MARK,
1060};
1061static const unsigned int avb0_avtp_pps_b_pins[] = {
1062 /* AVB0_AVTP_PPS_B */
1063 RCAR_GP_PIN(4, 16),
1064};
1065static const unsigned int avb0_avtp_pps_b_mux[] = {
1066 AVB0_AVTP_PPS_B_MARK,
1067};
1068static const unsigned int avb0_avtp_match_b_pins[] = {
1069 /* AVB0_AVTP_MATCH_B */
1070 RCAR_GP_PIN(4, 18),
1071};
1072static const unsigned int avb0_avtp_match_b_mux[] = {
1073 AVB0_AVTP_MATCH_B_MARK,
1074};
1075static const unsigned int avb0_avtp_capture_b_pins[] = {
1076 /* AVB0_AVTP_CAPTURE_B */
1077 RCAR_GP_PIN(4, 17),
1078};
1079static const unsigned int avb0_avtp_capture_b_mux[] = {
1080 AVB0_AVTP_CAPTURE_B_MARK,
1081};
1082
Marek Vasut7133e1f2024-12-23 14:34:16 +01001083#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001084/* - CAN ------------------------------------------------------------------ */
1085static const unsigned int can0_data_a_pins[] = {
1086 /* TX, RX */
1087 RCAR_GP_PIN(4, 28), RCAR_GP_PIN(4, 31),
1088};
1089static const unsigned int can0_data_a_mux[] = {
1090 CAN0_TX_A_MARK, CAN0_RX_A_MARK,
1091};
1092static const unsigned int can0_data_b_pins[] = {
1093 /* TX, RX */
1094 RCAR_GP_PIN(4, 22), RCAR_GP_PIN(4, 5),
1095};
1096static const unsigned int can0_data_b_mux[] = {
1097 CAN0_TX_B_MARK, CAN0_RX_B_MARK,
1098};
1099static const unsigned int can1_data_a_pins[] = {
1100 /* TX, RX */
1101 RCAR_GP_PIN(4, 30), RCAR_GP_PIN(4, 29),
1102};
1103static const unsigned int can1_data_a_mux[] = {
1104 CAN1_TX_A_MARK, CAN1_RX_A_MARK,
1105};
1106static const unsigned int can1_data_b_pins[] = {
1107 /* TX, RX */
1108 RCAR_GP_PIN(4, 7), RCAR_GP_PIN(4, 6),
1109};
1110static const unsigned int can1_data_b_mux[] = {
1111 CAN1_TX_B_MARK, CAN1_RX_B_MARK,
1112};
1113
1114/* - CAN Clock -------------------------------------------------------------- */
1115static const unsigned int can_clk_pins[] = {
1116 /* CLK */
1117 RCAR_GP_PIN(5, 2),
1118};
1119static const unsigned int can_clk_mux[] = {
1120 CAN_CLK_MARK,
1121};
1122
1123/* - CAN FD ----------------------------------------------------------------- */
1124static const unsigned int canfd0_data_pins[] = {
1125 /* TX, RX */
1126 RCAR_GP_PIN(4, 28), RCAR_GP_PIN(4, 31),
1127};
1128static const unsigned int canfd0_data_mux[] = {
1129 CANFD0_TX_MARK, CANFD0_RX_MARK,
1130};
1131static const unsigned int canfd1_data_pins[] = {
1132 /* TX, RX */
1133 RCAR_GP_PIN(4, 30), RCAR_GP_PIN(4, 29),
1134};
1135static const unsigned int canfd1_data_mux[] = {
1136 CANFD1_TX_MARK, CANFD1_RX_MARK,
1137};
1138
1139/* - DU --------------------------------------------------------------------- */
1140static const unsigned int du_rgb666_pins[] = {
1141 /* R[7:2], G[7:2], B[7:2] */
1142 RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 22), RCAR_GP_PIN(1, 21),
1143 RCAR_GP_PIN(1, 20), RCAR_GP_PIN(1, 19), RCAR_GP_PIN(1, 18),
1144 RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 13),
1145 RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 11), RCAR_GP_PIN(1, 10),
1146 RCAR_GP_PIN(1, 7), RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 5),
1147 RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 3), RCAR_GP_PIN(1, 2),
1148};
1149static const unsigned int du_rgb666_mux[] = {
1150 DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK, DU_DR4_MARK,
1151 DU_DR3_MARK, DU_DR2_MARK,
1152 DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK, DU_DG4_MARK,
1153 DU_DG3_MARK, DU_DG2_MARK,
1154 DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK, DU_DB4_MARK,
1155 DU_DB3_MARK, DU_DB2_MARK,
1156};
1157static const unsigned int du_rgb888_pins[] = {
1158 /* R[7:0], G[7:0], B[7:0] */
1159 RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 22), RCAR_GP_PIN(1, 21),
1160 RCAR_GP_PIN(1, 20), RCAR_GP_PIN(1, 19), RCAR_GP_PIN(1, 18),
1161 RCAR_GP_PIN(1, 17), RCAR_GP_PIN(1, 16),
1162 RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 13),
1163 RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 11), RCAR_GP_PIN(1, 10),
1164 RCAR_GP_PIN(1, 9), RCAR_GP_PIN(1, 8),
1165 RCAR_GP_PIN(1, 7), RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 5),
1166 RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 3), RCAR_GP_PIN(1, 2),
1167 RCAR_GP_PIN(1, 1), RCAR_GP_PIN(1, 0),
1168};
1169static const unsigned int du_rgb888_mux[] = {
1170 DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK, DU_DR4_MARK,
1171 DU_DR3_MARK, DU_DR2_MARK, DU_DR1_MARK, DU_DR0_MARK,
1172 DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK, DU_DG4_MARK,
1173 DU_DG3_MARK, DU_DG2_MARK, DU_DG1_MARK, DU_DG0_MARK,
1174 DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK, DU_DB4_MARK,
1175 DU_DB3_MARK, DU_DB2_MARK, DU_DB1_MARK, DU_DB0_MARK,
1176};
1177static const unsigned int du_clk_in_1_pins[] = {
1178 /* CLKIN */
1179 RCAR_GP_PIN(1, 28),
1180};
1181static const unsigned int du_clk_in_1_mux[] = {
1182 DU_DOTCLKIN1_MARK
1183};
1184static const unsigned int du_clk_out_0_pins[] = {
1185 /* CLKOUT */
1186 RCAR_GP_PIN(1, 24),
1187};
1188static const unsigned int du_clk_out_0_mux[] = {
1189 DU_DOTCLKOUT0_MARK
1190};
1191static const unsigned int du_sync_pins[] = {
1192 /* VSYNC, HSYNC */
1193 RCAR_GP_PIN(1, 26), RCAR_GP_PIN(1, 25),
1194};
1195static const unsigned int du_sync_mux[] = {
1196 DU_VSYNC_MARK, DU_HSYNC_MARK
1197};
1198static const unsigned int du_disp_cde_pins[] = {
1199 /* DISP_CDE */
1200 RCAR_GP_PIN(1, 28),
1201};
1202static const unsigned int du_disp_cde_mux[] = {
1203 DU_DISP_CDE_MARK,
1204};
1205static const unsigned int du_cde_pins[] = {
1206 /* CDE */
1207 RCAR_GP_PIN(1, 29),
1208};
1209static const unsigned int du_cde_mux[] = {
1210 DU_CDE_MARK,
1211};
1212static const unsigned int du_disp_pins[] = {
1213 /* DISP */
1214 RCAR_GP_PIN(1, 27),
1215};
1216static const unsigned int du_disp_mux[] = {
1217 DU_DISP_MARK,
1218};
Marek Vasut7133e1f2024-12-23 14:34:16 +01001219#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001220
Marek Vasut7d35e642017-10-08 20:57:37 +02001221/* - I2C -------------------------------------------------------------------- */
1222static const unsigned int i2c0_pins[] = {
1223 /* SCL, SDA */
1224 RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 9),
1225};
1226static const unsigned int i2c0_mux[] = {
1227 SCL0_MARK, SDA0_MARK,
1228};
1229static const unsigned int i2c1_pins[] = {
1230 /* SCL, SDA */
1231 RCAR_GP_PIN(4, 10), RCAR_GP_PIN(4, 11),
1232};
1233static const unsigned int i2c1_mux[] = {
1234 SCL1_MARK, SDA1_MARK,
1235};
1236static const unsigned int i2c2_a_pins[] = {
1237 /* SCL, SDA */
1238 RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 7),
1239};
1240static const unsigned int i2c2_a_mux[] = {
1241 SCL2_A_MARK, SDA2_A_MARK,
1242};
1243static const unsigned int i2c2_b_pins[] = {
1244 /* SCL, SDA */
1245 RCAR_GP_PIN(2, 29), RCAR_GP_PIN(2, 30),
1246};
1247static const unsigned int i2c2_b_mux[] = {
1248 SCL2_B_MARK, SDA2_B_MARK,
1249};
1250static const unsigned int i2c3_a_pins[] = {
1251 /* SCL, SDA */
1252 RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
1253};
1254static const unsigned int i2c3_a_mux[] = {
1255 SCL3_A_MARK, SDA3_A_MARK,
1256};
1257static const unsigned int i2c3_b_pins[] = {
1258 /* SCL, SDA */
1259 RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 8),
1260};
1261static const unsigned int i2c3_b_mux[] = {
1262 SCL3_B_MARK, SDA3_B_MARK,
1263};
1264
Marek Vasutb8f61132023-01-26 21:01:46 +01001265/* - MLB+ ------------------------------------------------------------------- */
1266static const unsigned int mlb_3pin_pins[] = {
1267 RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 7),
Marek Vasut7d35e642017-10-08 20:57:37 +02001268};
Marek Vasutb8f61132023-01-26 21:01:46 +01001269static const unsigned int mlb_3pin_mux[] = {
1270 MLB_CLK_MARK, MLB_SIG_MARK, MLB_DAT_MARK,
Marek Vasut7d35e642017-10-08 20:57:37 +02001271};
Marek Vasutb8f61132023-01-26 21:01:46 +01001272
1273/* - MMC ------------------------------------------------------------------- */
1274static const unsigned int mmc_data_pins[] = {
Marek Vasut7d35e642017-10-08 20:57:37 +02001275 /* D[0:7] */
1276 RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3),
1277 RCAR_GP_PIN(3, 4), RCAR_GP_PIN(3, 5),
1278 RCAR_GP_PIN(3, 6), RCAR_GP_PIN(3, 7),
1279 RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9),
1280};
Marek Vasutb8f61132023-01-26 21:01:46 +01001281static const unsigned int mmc_data_mux[] = {
Marek Vasut7d35e642017-10-08 20:57:37 +02001282 MMC_D0_MARK, MMC_D1_MARK,
1283 MMC_D2_MARK, MMC_D3_MARK,
1284 MMC_D4_MARK, MMC_D5_MARK,
1285 MMC_D6_MARK, MMC_D7_MARK,
1286};
1287static const unsigned int mmc_ctrl_pins[] = {
1288 /* CLK, CMD */
1289 RCAR_GP_PIN(3, 1), RCAR_GP_PIN(3, 0),
1290};
1291static const unsigned int mmc_ctrl_mux[] = {
1292 MMC_CLK_MARK, MMC_CMD_MARK,
1293};
1294
Marek Vasut7133e1f2024-12-23 14:34:16 +01001295#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasut88e81ec2019-03-04 22:39:51 +01001296/* - MSIOF0 ----------------------------------------------------------------- */
1297static const unsigned int msiof0_clk_pins[] = {
1298 /* SCK */
1299 RCAR_GP_PIN(4, 12),
1300};
1301
1302static const unsigned int msiof0_clk_mux[] = {
1303 MSIOF0_SCK_MARK,
1304};
1305
1306static const unsigned int msiof0_sync_pins[] = {
1307 /* SYNC */
1308 RCAR_GP_PIN(4, 13),
1309};
1310
1311static const unsigned int msiof0_sync_mux[] = {
1312 MSIOF0_SYNC_MARK,
1313};
1314
1315static const unsigned int msiof0_ss1_pins[] = {
1316 /* SS1 */
1317 RCAR_GP_PIN(4, 20),
1318};
1319
1320static const unsigned int msiof0_ss1_mux[] = {
1321 MSIOF0_SS1_MARK,
1322};
1323
1324static const unsigned int msiof0_ss2_pins[] = {
1325 /* SS2 */
1326 RCAR_GP_PIN(4, 21),
1327};
1328
1329static const unsigned int msiof0_ss2_mux[] = {
1330 MSIOF0_SS2_MARK,
1331};
1332
1333static const unsigned int msiof0_txd_pins[] = {
1334 /* TXD */
1335 RCAR_GP_PIN(4, 14),
1336};
1337
1338static const unsigned int msiof0_txd_mux[] = {
1339 MSIOF0_TXD_MARK,
1340};
1341
1342static const unsigned int msiof0_rxd_pins[] = {
1343 /* RXD */
1344 RCAR_GP_PIN(4, 15),
1345};
1346
1347static const unsigned int msiof0_rxd_mux[] = {
1348 MSIOF0_RXD_MARK,
1349};
1350
1351/* - MSIOF1 ----------------------------------------------------------------- */
1352static const unsigned int msiof1_clk_pins[] = {
1353 /* SCK */
1354 RCAR_GP_PIN(4, 16),
1355};
1356
1357static const unsigned int msiof1_clk_mux[] = {
1358 MSIOF1_SCK_MARK,
1359};
1360
1361static const unsigned int msiof1_sync_pins[] = {
1362 /* SYNC */
1363 RCAR_GP_PIN(4, 19),
1364};
1365
1366static const unsigned int msiof1_sync_mux[] = {
1367 MSIOF1_SYNC_MARK,
1368};
1369
1370static const unsigned int msiof1_ss1_pins[] = {
1371 /* SS1 */
1372 RCAR_GP_PIN(4, 25),
1373};
1374
1375static const unsigned int msiof1_ss1_mux[] = {
1376 MSIOF1_SS1_MARK,
1377};
1378
1379static const unsigned int msiof1_ss2_pins[] = {
1380 /* SS2 */
1381 RCAR_GP_PIN(4, 22),
1382};
1383
1384static const unsigned int msiof1_ss2_mux[] = {
1385 MSIOF1_SS2_MARK,
1386};
1387
1388static const unsigned int msiof1_txd_pins[] = {
1389 /* TXD */
1390 RCAR_GP_PIN(4, 17),
1391};
1392
1393static const unsigned int msiof1_txd_mux[] = {
1394 MSIOF1_TXD_MARK,
1395};
1396
1397static const unsigned int msiof1_rxd_pins[] = {
1398 /* RXD */
1399 RCAR_GP_PIN(4, 18),
1400};
1401
1402static const unsigned int msiof1_rxd_mux[] = {
1403 MSIOF1_RXD_MARK,
1404};
1405
1406/* - MSIOF2 ----------------------------------------------------------------- */
1407static const unsigned int msiof2_clk_pins[] = {
1408 /* SCK */
1409 RCAR_GP_PIN(0, 3),
1410};
1411
1412static const unsigned int msiof2_clk_mux[] = {
1413 MSIOF2_SCK_MARK,
1414};
1415
1416static const unsigned int msiof2_sync_a_pins[] = {
1417 /* SYNC */
1418 RCAR_GP_PIN(0, 6),
1419};
1420
1421static const unsigned int msiof2_sync_a_mux[] = {
1422 MSIOF2_SYNC_A_MARK,
1423};
1424
1425static const unsigned int msiof2_sync_b_pins[] = {
1426 /* SYNC */
1427 RCAR_GP_PIN(0, 2),
1428};
1429
1430static const unsigned int msiof2_sync_b_mux[] = {
1431 MSIOF2_SYNC_B_MARK,
1432};
1433
1434static const unsigned int msiof2_ss1_pins[] = {
1435 /* SS1 */
1436 RCAR_GP_PIN(0, 7),
1437};
1438
1439static const unsigned int msiof2_ss1_mux[] = {
1440 MSIOF2_SS1_MARK,
1441};
1442
1443static const unsigned int msiof2_ss2_pins[] = {
1444 /* SS2 */
1445 RCAR_GP_PIN(0, 8),
1446};
1447
1448static const unsigned int msiof2_ss2_mux[] = {
1449 MSIOF2_SS2_MARK,
1450};
1451
1452static const unsigned int msiof2_txd_pins[] = {
1453 /* TXD */
1454 RCAR_GP_PIN(0, 4),
1455};
1456
1457static const unsigned int msiof2_txd_mux[] = {
1458 MSIOF2_TXD_MARK,
1459};
1460
1461static const unsigned int msiof2_rxd_pins[] = {
1462 /* RXD */
1463 RCAR_GP_PIN(0, 5),
1464};
1465
1466static const unsigned int msiof2_rxd_mux[] = {
1467 MSIOF2_RXD_MARK,
1468};
1469
1470/* - MSIOF3 ----------------------------------------------------------------- */
1471static const unsigned int msiof3_clk_a_pins[] = {
1472 /* SCK */
1473 RCAR_GP_PIN(2, 24),
1474};
1475
1476static const unsigned int msiof3_clk_a_mux[] = {
1477 MSIOF3_SCK_A_MARK,
1478};
1479
1480static const unsigned int msiof3_sync_a_pins[] = {
1481 /* SYNC */
1482 RCAR_GP_PIN(2, 21),
1483};
1484
1485static const unsigned int msiof3_sync_a_mux[] = {
1486 MSIOF3_SYNC_A_MARK,
1487};
1488
1489static const unsigned int msiof3_ss1_a_pins[] = {
1490 /* SS1 */
1491 RCAR_GP_PIN(2, 14),
1492};
1493
1494static const unsigned int msiof3_ss1_a_mux[] = {
1495 MSIOF3_SS1_A_MARK,
1496};
1497
1498static const unsigned int msiof3_ss2_a_pins[] = {
1499 /* SS2 */
1500 RCAR_GP_PIN(2, 10),
1501};
1502
1503static const unsigned int msiof3_ss2_a_mux[] = {
1504 MSIOF3_SS2_A_MARK,
1505};
1506
1507static const unsigned int msiof3_txd_a_pins[] = {
1508 /* TXD */
1509 RCAR_GP_PIN(2, 22),
1510};
1511
1512static const unsigned int msiof3_txd_a_mux[] = {
1513 MSIOF3_TXD_A_MARK,
1514};
1515
1516static const unsigned int msiof3_rxd_a_pins[] = {
1517 /* RXD */
1518 RCAR_GP_PIN(2, 23),
1519};
1520
1521static const unsigned int msiof3_rxd_a_mux[] = {
1522 MSIOF3_RXD_A_MARK,
1523};
1524
1525static const unsigned int msiof3_clk_b_pins[] = {
1526 /* SCK */
1527 RCAR_GP_PIN(1, 8),
1528};
1529
1530static const unsigned int msiof3_clk_b_mux[] = {
1531 MSIOF3_SCK_B_MARK,
1532};
1533
1534static const unsigned int msiof3_sync_b_pins[] = {
1535 /* SYNC */
1536 RCAR_GP_PIN(1, 9),
1537};
1538
1539static const unsigned int msiof3_sync_b_mux[] = {
1540 MSIOF3_SYNC_B_MARK,
1541};
1542
1543static const unsigned int msiof3_ss1_b_pins[] = {
1544 /* SS1 */
1545 RCAR_GP_PIN(1, 6),
1546};
1547
1548static const unsigned int msiof3_ss1_b_mux[] = {
1549 MSIOF3_SS1_B_MARK,
1550};
1551
1552static const unsigned int msiof3_ss2_b_pins[] = {
1553 /* SS2 */
1554 RCAR_GP_PIN(1, 7),
1555};
1556
1557static const unsigned int msiof3_ss2_b_mux[] = {
1558 MSIOF3_SS2_B_MARK,
1559};
1560
1561static const unsigned int msiof3_txd_b_pins[] = {
1562 /* TXD */
1563 RCAR_GP_PIN(1, 0),
1564};
1565
1566static const unsigned int msiof3_txd_b_mux[] = {
1567 MSIOF3_TXD_B_MARK,
1568};
1569
1570static const unsigned int msiof3_rxd_b_pins[] = {
1571 /* RXD */
1572 RCAR_GP_PIN(1, 1),
1573};
1574
1575static const unsigned int msiof3_rxd_b_mux[] = {
1576 MSIOF3_RXD_B_MARK,
1577};
1578
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001579/* - PWM0 ------------------------------------------------------------------ */
1580static const unsigned int pwm0_a_pins[] = {
1581 /* PWM */
1582 RCAR_GP_PIN(2, 1),
1583};
1584
1585static const unsigned int pwm0_a_mux[] = {
1586 PWM0_A_MARK,
1587};
1588
1589static const unsigned int pwm0_b_pins[] = {
1590 /* PWM */
1591 RCAR_GP_PIN(1, 18),
1592};
1593
1594static const unsigned int pwm0_b_mux[] = {
1595 PWM0_B_MARK,
1596};
1597
1598static const unsigned int pwm0_c_pins[] = {
1599 /* PWM */
1600 RCAR_GP_PIN(2, 29),
1601};
1602
1603static const unsigned int pwm0_c_mux[] = {
1604 PWM0_C_MARK,
1605};
1606
1607/* - PWM1 ------------------------------------------------------------------ */
1608static const unsigned int pwm1_a_pins[] = {
1609 /* PWM */
1610 RCAR_GP_PIN(2, 2),
1611};
1612
1613static const unsigned int pwm1_a_mux[] = {
1614 PWM1_A_MARK,
1615};
1616
1617static const unsigned int pwm1_b_pins[] = {
1618 /* PWM */
1619 RCAR_GP_PIN(1, 19),
1620};
1621
1622static const unsigned int pwm1_b_mux[] = {
1623 PWM1_B_MARK,
1624};
1625
1626static const unsigned int pwm1_c_pins[] = {
1627 /* PWM */
1628 RCAR_GP_PIN(2, 30),
1629};
1630
1631static const unsigned int pwm1_c_mux[] = {
1632 PWM1_C_MARK,
1633};
1634
1635/* - PWM2 ------------------------------------------------------------------ */
1636static const unsigned int pwm2_a_pins[] = {
1637 /* PWM */
1638 RCAR_GP_PIN(2, 3),
1639};
1640
1641static const unsigned int pwm2_a_mux[] = {
1642 PWM2_A_MARK,
1643};
1644
1645static const unsigned int pwm2_b_pins[] = {
1646 /* PWM */
1647 RCAR_GP_PIN(1, 22),
1648};
1649
1650static const unsigned int pwm2_b_mux[] = {
1651 PWM2_B_MARK,
1652};
1653
1654static const unsigned int pwm2_c_pins[] = {
1655 /* PWM */
1656 RCAR_GP_PIN(2, 31),
1657};
1658
1659static const unsigned int pwm2_c_mux[] = {
1660 PWM2_C_MARK,
1661};
1662
1663/* - PWM3 ------------------------------------------------------------------ */
1664static const unsigned int pwm3_a_pins[] = {
1665 /* PWM */
1666 RCAR_GP_PIN(2, 4),
1667};
1668
1669static const unsigned int pwm3_a_mux[] = {
1670 PWM3_A_MARK,
1671};
1672
1673static const unsigned int pwm3_b_pins[] = {
1674 /* PWM */
1675 RCAR_GP_PIN(1, 27),
1676};
1677
1678static const unsigned int pwm3_b_mux[] = {
1679 PWM3_B_MARK,
1680};
1681
1682static const unsigned int pwm3_c_pins[] = {
1683 /* PWM */
1684 RCAR_GP_PIN(4, 0),
1685};
1686
1687static const unsigned int pwm3_c_mux[] = {
1688 PWM3_C_MARK,
1689};
Marek Vasut7133e1f2024-12-23 14:34:16 +01001690#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001691
Marek Vasutb8f61132023-01-26 21:01:46 +01001692/* - QSPI0 ------------------------------------------------------------------ */
1693static const unsigned int qspi0_ctrl_pins[] = {
1694 /* QSPI0_SPCLK, QSPI0_SSL */
1695 RCAR_GP_PIN(6, 0), RCAR_GP_PIN(6, 5),
1696};
1697static const unsigned int qspi0_ctrl_mux[] = {
1698 QSPI0_SPCLK_MARK, QSPI0_SSL_MARK,
1699};
1700/* - QSPI1 ------------------------------------------------------------------ */
1701static const unsigned int qspi1_ctrl_pins[] = {
1702 /* QSPI1_SPCLK, QSPI1_SSL */
1703 RCAR_GP_PIN(6, 6), RCAR_GP_PIN(6, 11),
1704};
1705static const unsigned int qspi1_ctrl_mux[] = {
1706 QSPI1_SPCLK_MARK, QSPI1_SSL_MARK,
1707};
1708
1709/* - RPC -------------------------------------------------------------------- */
1710static const unsigned int rpc_clk_pins[] = {
1711 /* Octal-SPI flash: C/SCLK */
1712 /* HyperFlash: CK, CK# */
1713 RCAR_GP_PIN(6, 0), RCAR_GP_PIN(6, 6),
1714};
1715static const unsigned int rpc_clk_mux[] = {
1716 QSPI0_SPCLK_MARK, QSPI1_SPCLK_MARK,
1717};
1718static const unsigned int rpc_ctrl_pins[] = {
1719 /* Octal-SPI flash: S#/CS, DQS */
1720 /* HyperFlash: CS#, RDS */
1721 RCAR_GP_PIN(6, 5), RCAR_GP_PIN(6, 11),
1722};
1723static const unsigned int rpc_ctrl_mux[] = {
1724 QSPI0_SSL_MARK, QSPI1_SSL_MARK,
1725};
1726static const unsigned int rpc_data_pins[] = {
1727 /* DQ[0:7] */
1728 RCAR_GP_PIN(6, 1), RCAR_GP_PIN(6, 2),
1729 RCAR_GP_PIN(6, 3), RCAR_GP_PIN(6, 4),
1730 RCAR_GP_PIN(6, 7), RCAR_GP_PIN(6, 8),
1731 RCAR_GP_PIN(6, 9), RCAR_GP_PIN(6, 10),
1732};
1733static const unsigned int rpc_data_mux[] = {
1734 QSPI0_MOSI_IO0_MARK, QSPI0_MISO_IO1_MARK,
1735 QSPI0_IO2_MARK, QSPI0_IO3_MARK,
1736 QSPI1_MOSI_IO0_MARK, QSPI1_MISO_IO1_MARK,
1737 QSPI1_IO2_MARK, QSPI1_IO3_MARK,
1738};
1739static const unsigned int rpc_reset_pins[] = {
1740 /* RPC_RESET# */
1741 RCAR_GP_PIN(6, 12),
1742};
1743static const unsigned int rpc_reset_mux[] = {
1744 RPC_RESET_N_MARK,
1745};
1746static const unsigned int rpc_int_pins[] = {
1747 /* RPC_INT# */
1748 RCAR_GP_PIN(6, 13),
1749};
1750static const unsigned int rpc_int_mux[] = {
1751 RPC_INT_N_MARK,
1752};
1753
Marek Vasut7d35e642017-10-08 20:57:37 +02001754/* - SCIF0 ------------------------------------------------------------------ */
1755static const unsigned int scif0_data_a_pins[] = {
1756 /* RX, TX */
1757 RCAR_GP_PIN(4, 20), RCAR_GP_PIN(4, 21),
1758};
1759static const unsigned int scif0_data_a_mux[] = {
1760 RX0_A_MARK, TX0_A_MARK,
1761};
1762static const unsigned int scif0_clk_a_pins[] = {
1763 /* SCK */
1764 RCAR_GP_PIN(4, 19),
1765};
1766static const unsigned int scif0_clk_a_mux[] = {
1767 SCK0_A_MARK,
1768};
1769static const unsigned int scif0_data_b_pins[] = {
1770 /* RX, TX */
1771 RCAR_GP_PIN(4, 31), RCAR_GP_PIN(4, 28),
1772};
1773static const unsigned int scif0_data_b_mux[] = {
1774 RX0_B_MARK, TX0_B_MARK,
1775};
1776static const unsigned int scif0_clk_b_pins[] = {
1777 /* SCK */
1778 RCAR_GP_PIN(5, 2),
1779};
1780static const unsigned int scif0_clk_b_mux[] = {
1781 SCK0_B_MARK,
1782};
1783static const unsigned int scif0_ctrl_pins[] = {
1784 /* RTS, CTS */
1785 RCAR_GP_PIN(4, 24), RCAR_GP_PIN(4, 23),
1786};
1787static const unsigned int scif0_ctrl_mux[] = {
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02001788 RTS0_N_MARK, CTS0_N_MARK,
Marek Vasut7d35e642017-10-08 20:57:37 +02001789};
1790/* - SCIF1 ------------------------------------------------------------------ */
1791static const unsigned int scif1_data_a_pins[] = {
1792 /* RX, TX */
1793 RCAR_GP_PIN(4, 23), RCAR_GP_PIN(4, 24),
1794};
1795static const unsigned int scif1_data_a_mux[] = {
1796 RX1_A_MARK, TX1_A_MARK,
1797};
1798static const unsigned int scif1_clk_a_pins[] = {
1799 /* SCK */
1800 RCAR_GP_PIN(4, 22),
1801};
1802static const unsigned int scif1_clk_a_mux[] = {
1803 SCK1_A_MARK,
1804};
1805static const unsigned int scif1_data_b_pins[] = {
1806 /* RX, TX */
1807 RCAR_GP_PIN(2, 26), RCAR_GP_PIN(2, 28),
1808};
1809static const unsigned int scif1_data_b_mux[] = {
1810 RX1_B_MARK, TX1_B_MARK,
1811};
1812static const unsigned int scif1_clk_b_pins[] = {
1813 /* SCK */
1814 RCAR_GP_PIN(2, 25),
1815};
1816static const unsigned int scif1_clk_b_mux[] = {
1817 SCK1_B_MARK,
1818};
1819static const unsigned int scif1_ctrl_pins[] = {
1820 /* RTS, CTS */
1821 RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 10),
1822};
1823static const unsigned int scif1_ctrl_mux[] = {
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02001824 RTS1_N_MARK, CTS1_N_MARK,
Marek Vasut7d35e642017-10-08 20:57:37 +02001825};
1826
1827/* - SCIF2 ------------------------------------------------------------------ */
1828static const unsigned int scif2_data_pins[] = {
1829 /* RX, TX */
1830 RCAR_GP_PIN(4, 26), RCAR_GP_PIN(4, 27),
1831};
1832static const unsigned int scif2_data_mux[] = {
1833 RX2_MARK, TX2_MARK,
1834};
1835static const unsigned int scif2_clk_pins[] = {
1836 /* SCK */
1837 RCAR_GP_PIN(4, 25),
1838};
1839static const unsigned int scif2_clk_mux[] = {
1840 SCK2_MARK,
1841};
1842/* - SCIF3 ------------------------------------------------------------------ */
1843static const unsigned int scif3_data_a_pins[] = {
1844 /* RX, TX */
1845 RCAR_GP_PIN(2, 31), RCAR_GP_PIN(4, 00),
1846};
1847static const unsigned int scif3_data_a_mux[] = {
1848 RX3_A_MARK, TX3_A_MARK,
1849};
1850static const unsigned int scif3_clk_a_pins[] = {
1851 /* SCK */
1852 RCAR_GP_PIN(2, 30),
1853};
1854static const unsigned int scif3_clk_a_mux[] = {
1855 SCK3_A_MARK,
1856};
1857static const unsigned int scif3_data_b_pins[] = {
1858 /* RX, TX */
1859 RCAR_GP_PIN(1, 30), RCAR_GP_PIN(1, 31),
1860};
1861static const unsigned int scif3_data_b_mux[] = {
1862 RX3_B_MARK, TX3_B_MARK,
1863};
1864static const unsigned int scif3_clk_b_pins[] = {
1865 /* SCK */
1866 RCAR_GP_PIN(1, 29),
1867};
1868static const unsigned int scif3_clk_b_mux[] = {
1869 SCK3_B_MARK,
1870};
1871/* - SCIF4 ------------------------------------------------------------------ */
1872static const unsigned int scif4_data_a_pins[] = {
1873 /* RX, TX */
1874 RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 12),
1875};
1876static const unsigned int scif4_data_a_mux[] = {
1877 RX4_A_MARK, TX4_A_MARK,
1878};
1879static const unsigned int scif4_clk_a_pins[] = {
1880 /* SCK */
1881 RCAR_GP_PIN(2, 6),
1882};
1883static const unsigned int scif4_clk_a_mux[] = {
1884 SCK4_A_MARK,
1885};
1886static const unsigned int scif4_data_b_pins[] = {
1887 /* RX, TX */
1888 RCAR_GP_PIN(1, 16), RCAR_GP_PIN(1, 17),
1889};
1890static const unsigned int scif4_data_b_mux[] = {
1891 RX4_B_MARK, TX4_B_MARK,
1892};
1893static const unsigned int scif4_clk_b_pins[] = {
1894 /* SCK */
1895 RCAR_GP_PIN(1, 15),
1896};
1897static const unsigned int scif4_clk_b_mux[] = {
1898 SCK4_B_MARK,
1899};
1900/* - SCIF5 ------------------------------------------------------------------ */
1901static const unsigned int scif5_data_a_pins[] = {
1902 /* RX, TX */
1903 RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 8),
1904};
1905static const unsigned int scif5_data_a_mux[] = {
1906 RX5_A_MARK, TX5_A_MARK,
1907};
1908static const unsigned int scif5_clk_a_pins[] = {
1909 /* SCK */
1910 RCAR_GP_PIN(0, 6),
1911};
1912static const unsigned int scif5_clk_a_mux[] = {
1913 SCK5_A_MARK,
1914};
1915static const unsigned int scif5_data_b_pins[] = {
1916 /* RX, TX */
1917 RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
1918};
1919static const unsigned int scif5_data_b_mux[] = {
1920 RX5_B_MARK, TX5_B_MARK,
1921};
1922static const unsigned int scif5_clk_b_pins[] = {
1923 /* SCK */
1924 RCAR_GP_PIN(1, 3),
1925};
1926static const unsigned int scif5_clk_b_mux[] = {
1927 SCK5_B_MARK,
1928};
1929/* - SCIF Clock ------------------------------------------------------------- */
1930static const unsigned int scif_clk_pins[] = {
1931 /* SCIF_CLK */
1932 RCAR_GP_PIN(2, 27),
1933};
1934static const unsigned int scif_clk_mux[] = {
1935 SCIF_CLK_MARK,
1936};
1937
Marek Vasut7133e1f2024-12-23 14:34:16 +01001938#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001939/* - SSI ---------------------------------------------------------------*/
1940static const unsigned int ssi3_data_pins[] = {
1941 /* SDATA */
1942 RCAR_GP_PIN(4, 3),
1943};
1944static const unsigned int ssi3_data_mux[] = {
1945 SSI_SDATA3_MARK,
1946};
1947static const unsigned int ssi34_ctrl_pins[] = {
1948 /* SCK, WS */
1949 RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 4),
1950};
1951static const unsigned int ssi34_ctrl_mux[] = {
1952 SSI_SCK34_MARK, SSI_WS34_MARK,
1953};
1954static const unsigned int ssi4_ctrl_a_pins[] = {
1955 /* SCK, WS */
1956 RCAR_GP_PIN(4, 5), RCAR_GP_PIN(4, 7),
1957};
1958static const unsigned int ssi4_ctrl_a_mux[] = {
1959 SSI_SCK4_A_MARK, SSI_WS4_A_MARK,
1960};
1961static const unsigned int ssi4_data_a_pins[] = {
1962 /* SDATA */
1963 RCAR_GP_PIN(4, 6),
1964};
1965static const unsigned int ssi4_data_a_mux[] = {
1966 SSI_SDATA4_A_MARK,
1967};
1968static const unsigned int ssi4_ctrl_b_pins[] = {
1969 /* SCK, WS */
1970 RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 20),
1971};
1972static const unsigned int ssi4_ctrl_b_mux[] = {
1973 SSI_SCK4_B_MARK, SSI_WS4_B_MARK,
1974};
1975static const unsigned int ssi4_data_b_pins[] = {
1976 /* SDATA */
1977 RCAR_GP_PIN(2, 16),
1978};
1979static const unsigned int ssi4_data_b_mux[] = {
1980 SSI_SDATA4_B_MARK,
1981};
Marek Vasut7133e1f2024-12-23 14:34:16 +01001982#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001983
1984/* - USB0 ------------------------------------------------------------------- */
1985static const unsigned int usb0_pins[] = {
1986 /* PWEN, OVC */
1987 RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
1988};
1989static const unsigned int usb0_mux[] = {
1990 USB0_PWEN_MARK, USB0_OVC_MARK,
1991};
1992
Marek Vasut7133e1f2024-12-23 14:34:16 +01001993#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02001994/* - VIN4 ------------------------------------------------------------------- */
1995static const unsigned int vin4_data18_pins[] = {
1996 RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 4),
1997 RCAR_GP_PIN(2, 5), RCAR_GP_PIN(2, 6),
1998 RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 8),
1999 RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 12),
2000 RCAR_GP_PIN(2, 13), RCAR_GP_PIN(2, 14),
2001 RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 16),
2002 RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 20),
2003 RCAR_GP_PIN(2, 21), RCAR_GP_PIN(2, 22),
2004 RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 24),
2005};
2006static const unsigned int vin4_data18_mux[] = {
2007 VI4_DATA2_MARK, VI4_DATA3_MARK,
2008 VI4_DATA4_MARK, VI4_DATA5_MARK,
2009 VI4_DATA6_MARK, VI4_DATA7_MARK,
2010 VI4_DATA10_MARK, VI4_DATA11_MARK,
2011 VI4_DATA12_MARK, VI4_DATA13_MARK,
2012 VI4_DATA14_MARK, VI4_DATA15_MARK,
2013 VI4_DATA18_MARK, VI4_DATA19_MARK,
2014 VI4_DATA20_MARK, VI4_DATA21_MARK,
2015 VI4_DATA22_MARK, VI4_DATA23_MARK,
2016};
Marek Vasutb8f61132023-01-26 21:01:46 +01002017static const unsigned int vin4_data_pins[] = {
2018 RCAR_GP_PIN(2, 1), RCAR_GP_PIN(2, 2),
2019 RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 4),
2020 RCAR_GP_PIN(2, 5), RCAR_GP_PIN(2, 6),
2021 RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 8),
2022 RCAR_GP_PIN(2, 9), RCAR_GP_PIN(2, 10),
2023 RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 12),
2024 RCAR_GP_PIN(2, 13), RCAR_GP_PIN(2, 14),
2025 RCAR_GP_PIN(2, 15), RCAR_GP_PIN(2, 16),
2026 RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 18),
2027 RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 20),
2028 RCAR_GP_PIN(2, 21), RCAR_GP_PIN(2, 22),
2029 RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 24),
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002030};
Marek Vasutb8f61132023-01-26 21:01:46 +01002031static const unsigned int vin4_data_mux[] = {
2032 VI4_DATA0_MARK, VI4_DATA1_MARK,
2033 VI4_DATA2_MARK, VI4_DATA3_MARK,
2034 VI4_DATA4_MARK, VI4_DATA5_MARK,
2035 VI4_DATA6_MARK, VI4_DATA7_MARK,
2036 VI4_DATA8_MARK, VI4_DATA9_MARK,
2037 VI4_DATA10_MARK, VI4_DATA11_MARK,
2038 VI4_DATA12_MARK, VI4_DATA13_MARK,
2039 VI4_DATA14_MARK, VI4_DATA15_MARK,
2040 VI4_DATA16_MARK, VI4_DATA17_MARK,
2041 VI4_DATA18_MARK, VI4_DATA19_MARK,
2042 VI4_DATA20_MARK, VI4_DATA21_MARK,
2043 VI4_DATA22_MARK, VI4_DATA23_MARK,
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002044};
2045static const unsigned int vin4_sync_pins[] = {
2046 /* HSYNC#, VSYNC# */
2047 RCAR_GP_PIN(2, 26), RCAR_GP_PIN(2, 25),
2048};
2049static const unsigned int vin4_sync_mux[] = {
2050 VI4_HSYNC_N_MARK, VI4_VSYNC_N_MARK,
2051};
2052static const unsigned int vin4_field_pins[] = {
2053 /* FIELD */
2054 RCAR_GP_PIN(2, 27),
2055};
2056static const unsigned int vin4_field_mux[] = {
2057 VI4_FIELD_MARK,
2058};
2059static const unsigned int vin4_clkenb_pins[] = {
2060 /* CLKENB */
2061 RCAR_GP_PIN(2, 28),
2062};
2063static const unsigned int vin4_clkenb_mux[] = {
2064 VI4_CLKENB_MARK,
2065};
2066static const unsigned int vin4_clk_pins[] = {
2067 /* CLK */
2068 RCAR_GP_PIN(2, 0),
2069};
2070static const unsigned int vin4_clk_mux[] = {
2071 VI4_CLK_MARK,
2072};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002073#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002074
Marek Vasut7d35e642017-10-08 20:57:37 +02002075static const struct sh_pfc_pin_group pinmux_groups[] = {
Marek Vasut7133e1f2024-12-23 14:34:16 +01002076#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002077 SH_PFC_PIN_GROUP(audio_clk_a),
2078 SH_PFC_PIN_GROUP(audio_clk_b),
2079 SH_PFC_PIN_GROUP(audio_clkout),
2080 SH_PFC_PIN_GROUP(audio_clkout1),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002081#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002082 SH_PFC_PIN_GROUP(avb0_link),
2083 SH_PFC_PIN_GROUP(avb0_magic),
2084 SH_PFC_PIN_GROUP(avb0_phy_int),
2085 SH_PFC_PIN_GROUP_ALIAS(avb0_mdc, avb0_mdio), /* Deprecated */
2086 SH_PFC_PIN_GROUP(avb0_mdio),
2087 SH_PFC_PIN_GROUP(avb0_mii),
2088 SH_PFC_PIN_GROUP(avb0_avtp_pps_a),
2089 SH_PFC_PIN_GROUP(avb0_avtp_match_a),
2090 SH_PFC_PIN_GROUP(avb0_avtp_capture_a),
2091 SH_PFC_PIN_GROUP(avb0_avtp_pps_b),
2092 SH_PFC_PIN_GROUP(avb0_avtp_match_b),
2093 SH_PFC_PIN_GROUP(avb0_avtp_capture_b),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002094#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002095 SH_PFC_PIN_GROUP(can0_data_a),
2096 SH_PFC_PIN_GROUP(can0_data_b),
2097 SH_PFC_PIN_GROUP(can1_data_a),
2098 SH_PFC_PIN_GROUP(can1_data_b),
2099 SH_PFC_PIN_GROUP(can_clk),
2100 SH_PFC_PIN_GROUP(canfd0_data),
2101 SH_PFC_PIN_GROUP(canfd1_data),
2102 SH_PFC_PIN_GROUP(du_rgb666),
2103 SH_PFC_PIN_GROUP(du_rgb888),
2104 SH_PFC_PIN_GROUP(du_clk_in_1),
2105 SH_PFC_PIN_GROUP(du_clk_out_0),
2106 SH_PFC_PIN_GROUP(du_sync),
2107 SH_PFC_PIN_GROUP(du_disp_cde),
2108 SH_PFC_PIN_GROUP(du_cde),
2109 SH_PFC_PIN_GROUP(du_disp),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002110#endif
Marek Vasut7d35e642017-10-08 20:57:37 +02002111 SH_PFC_PIN_GROUP(i2c0),
2112 SH_PFC_PIN_GROUP(i2c1),
2113 SH_PFC_PIN_GROUP(i2c2_a),
2114 SH_PFC_PIN_GROUP(i2c2_b),
2115 SH_PFC_PIN_GROUP(i2c3_a),
2116 SH_PFC_PIN_GROUP(i2c3_b),
Marek Vasutb8f61132023-01-26 21:01:46 +01002117 SH_PFC_PIN_GROUP(mlb_3pin),
2118 BUS_DATA_PIN_GROUP(mmc_data, 1),
2119 BUS_DATA_PIN_GROUP(mmc_data, 4),
2120 BUS_DATA_PIN_GROUP(mmc_data, 8),
Marek Vasut7d35e642017-10-08 20:57:37 +02002121 SH_PFC_PIN_GROUP(mmc_ctrl),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002122#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasut88e81ec2019-03-04 22:39:51 +01002123 SH_PFC_PIN_GROUP(msiof0_clk),
2124 SH_PFC_PIN_GROUP(msiof0_sync),
2125 SH_PFC_PIN_GROUP(msiof0_ss1),
2126 SH_PFC_PIN_GROUP(msiof0_ss2),
2127 SH_PFC_PIN_GROUP(msiof0_txd),
2128 SH_PFC_PIN_GROUP(msiof0_rxd),
2129 SH_PFC_PIN_GROUP(msiof1_clk),
2130 SH_PFC_PIN_GROUP(msiof1_sync),
2131 SH_PFC_PIN_GROUP(msiof1_ss1),
2132 SH_PFC_PIN_GROUP(msiof1_ss2),
2133 SH_PFC_PIN_GROUP(msiof1_txd),
2134 SH_PFC_PIN_GROUP(msiof1_rxd),
2135 SH_PFC_PIN_GROUP(msiof2_clk),
2136 SH_PFC_PIN_GROUP(msiof2_sync_a),
2137 SH_PFC_PIN_GROUP(msiof2_sync_b),
2138 SH_PFC_PIN_GROUP(msiof2_ss1),
2139 SH_PFC_PIN_GROUP(msiof2_ss2),
2140 SH_PFC_PIN_GROUP(msiof2_txd),
2141 SH_PFC_PIN_GROUP(msiof2_rxd),
2142 SH_PFC_PIN_GROUP(msiof3_clk_a),
2143 SH_PFC_PIN_GROUP(msiof3_sync_a),
2144 SH_PFC_PIN_GROUP(msiof3_ss1_a),
2145 SH_PFC_PIN_GROUP(msiof3_ss2_a),
2146 SH_PFC_PIN_GROUP(msiof3_txd_a),
2147 SH_PFC_PIN_GROUP(msiof3_rxd_a),
2148 SH_PFC_PIN_GROUP(msiof3_clk_b),
2149 SH_PFC_PIN_GROUP(msiof3_sync_b),
2150 SH_PFC_PIN_GROUP(msiof3_ss1_b),
2151 SH_PFC_PIN_GROUP(msiof3_ss2_b),
2152 SH_PFC_PIN_GROUP(msiof3_txd_b),
2153 SH_PFC_PIN_GROUP(msiof3_rxd_b),
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002154 SH_PFC_PIN_GROUP(pwm0_a),
2155 SH_PFC_PIN_GROUP(pwm0_b),
2156 SH_PFC_PIN_GROUP(pwm0_c),
2157 SH_PFC_PIN_GROUP(pwm1_a),
2158 SH_PFC_PIN_GROUP(pwm1_b),
2159 SH_PFC_PIN_GROUP(pwm1_c),
2160 SH_PFC_PIN_GROUP(pwm2_a),
2161 SH_PFC_PIN_GROUP(pwm2_b),
2162 SH_PFC_PIN_GROUP(pwm2_c),
2163 SH_PFC_PIN_GROUP(pwm3_a),
2164 SH_PFC_PIN_GROUP(pwm3_b),
2165 SH_PFC_PIN_GROUP(pwm3_c),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002166#endif
Marek Vasutb8f61132023-01-26 21:01:46 +01002167 SH_PFC_PIN_GROUP(qspi0_ctrl),
2168 SH_PFC_PIN_GROUP_SUBSET(qspi0_data2, rpc_data, 0, 2),
2169 SH_PFC_PIN_GROUP_SUBSET(qspi0_data4, rpc_data, 0, 4),
2170 SH_PFC_PIN_GROUP(qspi1_ctrl),
2171 SH_PFC_PIN_GROUP_SUBSET(qspi1_data2, rpc_data, 4, 2),
2172 SH_PFC_PIN_GROUP_SUBSET(qspi1_data4, rpc_data, 4, 4),
2173 BUS_DATA_PIN_GROUP(rpc_clk, 1),
2174 BUS_DATA_PIN_GROUP(rpc_clk, 2),
2175 SH_PFC_PIN_GROUP(rpc_ctrl),
2176 SH_PFC_PIN_GROUP(rpc_data),
2177 SH_PFC_PIN_GROUP(rpc_reset),
2178 SH_PFC_PIN_GROUP(rpc_int),
Marek Vasut7d35e642017-10-08 20:57:37 +02002179 SH_PFC_PIN_GROUP(scif0_data_a),
2180 SH_PFC_PIN_GROUP(scif0_clk_a),
2181 SH_PFC_PIN_GROUP(scif0_data_b),
2182 SH_PFC_PIN_GROUP(scif0_clk_b),
2183 SH_PFC_PIN_GROUP(scif0_ctrl),
2184 SH_PFC_PIN_GROUP(scif1_data_a),
2185 SH_PFC_PIN_GROUP(scif1_clk_a),
2186 SH_PFC_PIN_GROUP(scif1_data_b),
2187 SH_PFC_PIN_GROUP(scif1_clk_b),
2188 SH_PFC_PIN_GROUP(scif1_ctrl),
2189 SH_PFC_PIN_GROUP(scif2_data),
2190 SH_PFC_PIN_GROUP(scif2_clk),
2191 SH_PFC_PIN_GROUP(scif3_data_a),
2192 SH_PFC_PIN_GROUP(scif3_clk_a),
2193 SH_PFC_PIN_GROUP(scif3_data_b),
2194 SH_PFC_PIN_GROUP(scif3_clk_b),
2195 SH_PFC_PIN_GROUP(scif4_data_a),
2196 SH_PFC_PIN_GROUP(scif4_clk_a),
2197 SH_PFC_PIN_GROUP(scif4_data_b),
2198 SH_PFC_PIN_GROUP(scif4_clk_b),
2199 SH_PFC_PIN_GROUP(scif5_data_a),
2200 SH_PFC_PIN_GROUP(scif5_clk_a),
2201 SH_PFC_PIN_GROUP(scif5_data_b),
2202 SH_PFC_PIN_GROUP(scif5_clk_b),
2203 SH_PFC_PIN_GROUP(scif_clk),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002204#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002205 SH_PFC_PIN_GROUP(ssi3_data),
2206 SH_PFC_PIN_GROUP(ssi34_ctrl),
2207 SH_PFC_PIN_GROUP(ssi4_ctrl_a),
2208 SH_PFC_PIN_GROUP(ssi4_data_a),
2209 SH_PFC_PIN_GROUP(ssi4_ctrl_b),
2210 SH_PFC_PIN_GROUP(ssi4_data_b),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002211#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002212 SH_PFC_PIN_GROUP(usb0),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002213#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasutb8f61132023-01-26 21:01:46 +01002214 BUS_DATA_PIN_GROUP(vin4_data, 8),
2215 BUS_DATA_PIN_GROUP(vin4_data, 10),
2216 BUS_DATA_PIN_GROUP(vin4_data, 12),
2217 BUS_DATA_PIN_GROUP(vin4_data, 16),
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002218 SH_PFC_PIN_GROUP(vin4_data18),
Marek Vasutb8f61132023-01-26 21:01:46 +01002219 BUS_DATA_PIN_GROUP(vin4_data, 20),
2220 BUS_DATA_PIN_GROUP(vin4_data, 24),
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002221 SH_PFC_PIN_GROUP(vin4_sync),
2222 SH_PFC_PIN_GROUP(vin4_field),
2223 SH_PFC_PIN_GROUP(vin4_clkenb),
2224 SH_PFC_PIN_GROUP(vin4_clk),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002225#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002226};
2227
Marek Vasut7133e1f2024-12-23 14:34:16 +01002228#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002229static const char * const audio_clk_groups[] = {
2230 "audio_clk_a",
2231 "audio_clk_b",
2232 "audio_clkout",
2233 "audio_clkout1",
2234};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002235#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002236
2237static const char * const avb0_groups[] = {
2238 "avb0_link",
2239 "avb0_magic",
2240 "avb0_phy_int",
2241 "avb0_mdc", /* Deprecated, please use "avb0_mdio" instead */
2242 "avb0_mdio",
2243 "avb0_mii",
2244 "avb0_avtp_pps_a",
2245 "avb0_avtp_match_a",
2246 "avb0_avtp_capture_a",
2247 "avb0_avtp_pps_b",
2248 "avb0_avtp_match_b",
2249 "avb0_avtp_capture_b",
2250};
2251
Marek Vasut7133e1f2024-12-23 14:34:16 +01002252#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002253static const char * const can0_groups[] = {
2254 "can0_data_a",
2255 "can0_data_b",
2256};
2257static const char * const can1_groups[] = {
2258 "can1_data_a",
2259 "can1_data_b",
2260};
2261static const char * const can_clk_groups[] = {
2262 "can_clk",
2263};
2264
2265static const char * const canfd0_groups[] = {
2266 "canfd0_data",
2267};
2268static const char * const canfd1_groups[] = {
2269 "canfd1_data",
Marek Vasut7d35e642017-10-08 20:57:37 +02002270};
2271
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002272static const char * const du_groups[] = {
2273 "du_rgb666",
2274 "du_rgb888",
2275 "du_clk_in_1",
2276 "du_clk_out_0",
2277 "du_sync",
2278 "du_disp_cde",
2279 "du_cde",
2280 "du_disp",
2281};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002282#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002283
Marek Vasut7d35e642017-10-08 20:57:37 +02002284static const char * const i2c0_groups[] = {
2285 "i2c0",
2286};
2287static const char * const i2c1_groups[] = {
2288 "i2c1",
2289};
2290
2291static const char * const i2c2_groups[] = {
2292 "i2c2_a",
2293 "i2c2_b",
2294};
2295
2296static const char * const i2c3_groups[] = {
2297 "i2c3_a",
2298 "i2c3_b",
2299};
2300
Marek Vasutb8f61132023-01-26 21:01:46 +01002301static const char * const mlb_3pin_groups[] = {
2302 "mlb_3pin",
2303};
2304
Marek Vasut7d35e642017-10-08 20:57:37 +02002305static const char * const mmc_groups[] = {
2306 "mmc_data1",
2307 "mmc_data4",
2308 "mmc_data8",
2309 "mmc_ctrl",
2310};
2311
Marek Vasut7133e1f2024-12-23 14:34:16 +01002312#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasutb8f61132023-01-26 21:01:46 +01002313static const char * const msiof0_groups[] = {
2314 "msiof0_clk",
2315 "msiof0_sync",
2316 "msiof0_ss1",
2317 "msiof0_ss2",
2318 "msiof0_txd",
2319 "msiof0_rxd",
2320};
2321
2322static const char * const msiof1_groups[] = {
2323 "msiof1_clk",
2324 "msiof1_sync",
2325 "msiof1_ss1",
2326 "msiof1_ss2",
2327 "msiof1_txd",
2328 "msiof1_rxd",
2329};
2330
2331static const char * const msiof2_groups[] = {
2332 "msiof2_clk",
2333 "msiof2_sync_a",
2334 "msiof2_sync_b",
2335 "msiof2_ss1",
2336 "msiof2_ss2",
2337 "msiof2_txd",
2338 "msiof2_rxd",
2339};
2340
2341static const char * const msiof3_groups[] = {
2342 "msiof3_clk_a",
2343 "msiof3_sync_a",
2344 "msiof3_ss1_a",
2345 "msiof3_ss2_a",
2346 "msiof3_txd_a",
2347 "msiof3_rxd_a",
2348 "msiof3_clk_b",
2349 "msiof3_sync_b",
2350 "msiof3_ss1_b",
2351 "msiof3_ss2_b",
2352 "msiof3_txd_b",
2353 "msiof3_rxd_b",
2354};
2355
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002356static const char * const pwm0_groups[] = {
2357 "pwm0_a",
2358 "pwm0_b",
2359 "pwm0_c",
2360};
2361
2362static const char * const pwm1_groups[] = {
2363 "pwm1_a",
2364 "pwm1_b",
2365 "pwm1_c",
2366};
2367
2368static const char * const pwm2_groups[] = {
2369 "pwm2_a",
2370 "pwm2_b",
2371 "pwm2_c",
2372};
2373
2374static const char * const pwm3_groups[] = {
2375 "pwm3_a",
2376 "pwm3_b",
2377 "pwm3_c",
2378};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002379#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002380
Marek Vasutb8f61132023-01-26 21:01:46 +01002381static const char * const qspi0_groups[] = {
2382 "qspi0_ctrl",
2383 "qspi0_data2",
2384 "qspi0_data4",
2385};
2386
2387static const char * const qspi1_groups[] = {
2388 "qspi1_ctrl",
2389 "qspi1_data2",
2390 "qspi1_data4",
2391};
2392
2393static const char * const rpc_groups[] = {
2394 "rpc_clk1",
2395 "rpc_clk2",
2396 "rpc_ctrl",
2397 "rpc_data",
2398 "rpc_reset",
2399 "rpc_int",
2400};
2401
Marek Vasut7d35e642017-10-08 20:57:37 +02002402static const char * const scif0_groups[] = {
2403 "scif0_data_a",
2404 "scif0_clk_a",
2405 "scif0_data_b",
2406 "scif0_clk_b",
2407 "scif0_ctrl",
2408};
2409
2410static const char * const scif1_groups[] = {
2411 "scif1_data_a",
2412 "scif1_clk_a",
2413 "scif1_data_b",
2414 "scif1_clk_b",
2415 "scif1_ctrl",
2416};
2417
2418static const char * const scif2_groups[] = {
2419 "scif2_data",
2420 "scif2_clk",
2421};
2422
2423static const char * const scif3_groups[] = {
2424 "scif3_data_a",
2425 "scif3_clk_a",
2426 "scif3_data_b",
2427 "scif3_clk_b",
2428};
2429
2430static const char * const scif4_groups[] = {
2431 "scif4_data_a",
2432 "scif4_clk_a",
2433 "scif4_data_b",
2434 "scif4_clk_b",
2435};
2436
2437static const char * const scif5_groups[] = {
2438 "scif5_data_a",
2439 "scif5_clk_a",
2440 "scif5_data_b",
2441 "scif5_clk_b",
2442};
2443
2444static const char * const scif_clk_groups[] = {
2445 "scif_clk",
2446};
2447
Marek Vasut7133e1f2024-12-23 14:34:16 +01002448#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002449static const char * const ssi_groups[] = {
2450 "ssi3_data",
2451 "ssi34_ctrl",
2452 "ssi4_ctrl_a",
2453 "ssi4_data_a",
2454 "ssi4_ctrl_b",
2455 "ssi4_data_b",
2456};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002457#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002458
2459static const char * const usb0_groups[] = {
2460 "usb0",
2461};
2462
Marek Vasut7133e1f2024-12-23 14:34:16 +01002463#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002464static const char * const vin4_groups[] = {
2465 "vin4_data8",
2466 "vin4_data10",
2467 "vin4_data12",
2468 "vin4_data16",
2469 "vin4_data18",
2470 "vin4_data20",
2471 "vin4_data24",
2472 "vin4_sync",
2473 "vin4_field",
2474 "vin4_clkenb",
2475 "vin4_clk",
2476};
Marek Vasut7133e1f2024-12-23 14:34:16 +01002477#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002478
Marek Vasut7d35e642017-10-08 20:57:37 +02002479static const struct sh_pfc_function pinmux_functions[] = {
Marek Vasut7133e1f2024-12-23 14:34:16 +01002480#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002481 SH_PFC_FUNCTION(audio_clk),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002482#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002483 SH_PFC_FUNCTION(avb0),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002484#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002485 SH_PFC_FUNCTION(can0),
2486 SH_PFC_FUNCTION(can1),
2487 SH_PFC_FUNCTION(can_clk),
2488 SH_PFC_FUNCTION(canfd0),
2489 SH_PFC_FUNCTION(canfd1),
2490 SH_PFC_FUNCTION(du),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002491#endif
Marek Vasut7d35e642017-10-08 20:57:37 +02002492 SH_PFC_FUNCTION(i2c0),
2493 SH_PFC_FUNCTION(i2c1),
2494 SH_PFC_FUNCTION(i2c2),
2495 SH_PFC_FUNCTION(i2c3),
Marek Vasutb8f61132023-01-26 21:01:46 +01002496 SH_PFC_FUNCTION(mlb_3pin),
Marek Vasut7d35e642017-10-08 20:57:37 +02002497 SH_PFC_FUNCTION(mmc),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002498#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasut88e81ec2019-03-04 22:39:51 +01002499 SH_PFC_FUNCTION(msiof0),
2500 SH_PFC_FUNCTION(msiof1),
2501 SH_PFC_FUNCTION(msiof2),
2502 SH_PFC_FUNCTION(msiof3),
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002503 SH_PFC_FUNCTION(pwm0),
2504 SH_PFC_FUNCTION(pwm1),
2505 SH_PFC_FUNCTION(pwm2),
2506 SH_PFC_FUNCTION(pwm3),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002507#endif
Marek Vasutb8f61132023-01-26 21:01:46 +01002508 SH_PFC_FUNCTION(qspi0),
2509 SH_PFC_FUNCTION(qspi1),
2510 SH_PFC_FUNCTION(rpc),
Marek Vasut7d35e642017-10-08 20:57:37 +02002511 SH_PFC_FUNCTION(scif0),
2512 SH_PFC_FUNCTION(scif1),
2513 SH_PFC_FUNCTION(scif2),
2514 SH_PFC_FUNCTION(scif3),
2515 SH_PFC_FUNCTION(scif4),
2516 SH_PFC_FUNCTION(scif5),
2517 SH_PFC_FUNCTION(scif_clk),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002518#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002519 SH_PFC_FUNCTION(ssi),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002520#endif
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002521 SH_PFC_FUNCTION(usb0),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002522#ifdef CONFIG_PINCTRL_PFC_FULL
Marek Vasuteb13e0f2018-06-10 16:05:48 +02002523 SH_PFC_FUNCTION(vin4),
Marek Vasut7133e1f2024-12-23 14:34:16 +01002524#endif
Marek Vasut7d35e642017-10-08 20:57:37 +02002525};
2526
2527static const struct pinmux_cfg_reg pinmux_config_regs[] = {
2528#define F_(x, y) FN_##y
2529#define FM(x) FN_##x
Marek Vasutb8f61132023-01-26 21:01:46 +01002530 { PINMUX_CFG_REG_VAR("GPSR0", 0xe6060100, 32,
2531 GROUP(-23, 1, 1, 1, 1, 1, 1, 1, 1, 1),
2532 GROUP(
2533 /* GP0_31_9 RESERVED */
Marek Vasut7d35e642017-10-08 20:57:37 +02002534 GP_0_8_FN, GPSR0_8,
2535 GP_0_7_FN, GPSR0_7,
2536 GP_0_6_FN, GPSR0_6,
2537 GP_0_5_FN, GPSR0_5,
2538 GP_0_4_FN, GPSR0_4,
2539 GP_0_3_FN, GPSR0_3,
2540 GP_0_2_FN, GPSR0_2,
2541 GP_0_1_FN, GPSR0_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002542 GP_0_0_FN, GPSR0_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002543 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002544 { PINMUX_CFG_REG("GPSR1", 0xe6060104, 32, 1, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002545 GP_1_31_FN, GPSR1_31,
2546 GP_1_30_FN, GPSR1_30,
2547 GP_1_29_FN, GPSR1_29,
2548 GP_1_28_FN, GPSR1_28,
2549 GP_1_27_FN, GPSR1_27,
2550 GP_1_26_FN, GPSR1_26,
2551 GP_1_25_FN, GPSR1_25,
2552 GP_1_24_FN, GPSR1_24,
2553 GP_1_23_FN, GPSR1_23,
2554 GP_1_22_FN, GPSR1_22,
2555 GP_1_21_FN, GPSR1_21,
2556 GP_1_20_FN, GPSR1_20,
2557 GP_1_19_FN, GPSR1_19,
2558 GP_1_18_FN, GPSR1_18,
2559 GP_1_17_FN, GPSR1_17,
2560 GP_1_16_FN, GPSR1_16,
2561 GP_1_15_FN, GPSR1_15,
2562 GP_1_14_FN, GPSR1_14,
2563 GP_1_13_FN, GPSR1_13,
2564 GP_1_12_FN, GPSR1_12,
2565 GP_1_11_FN, GPSR1_11,
2566 GP_1_10_FN, GPSR1_10,
2567 GP_1_9_FN, GPSR1_9,
2568 GP_1_8_FN, GPSR1_8,
2569 GP_1_7_FN, GPSR1_7,
2570 GP_1_6_FN, GPSR1_6,
2571 GP_1_5_FN, GPSR1_5,
2572 GP_1_4_FN, GPSR1_4,
2573 GP_1_3_FN, GPSR1_3,
2574 GP_1_2_FN, GPSR1_2,
2575 GP_1_1_FN, GPSR1_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002576 GP_1_0_FN, GPSR1_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002577 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002578 { PINMUX_CFG_REG("GPSR2", 0xe6060108, 32, 1, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002579 GP_2_31_FN, GPSR2_31,
2580 GP_2_30_FN, GPSR2_30,
2581 GP_2_29_FN, GPSR2_29,
2582 GP_2_28_FN, GPSR2_28,
2583 GP_2_27_FN, GPSR2_27,
2584 GP_2_26_FN, GPSR2_26,
2585 GP_2_25_FN, GPSR2_25,
2586 GP_2_24_FN, GPSR2_24,
2587 GP_2_23_FN, GPSR2_23,
2588 GP_2_22_FN, GPSR2_22,
2589 GP_2_21_FN, GPSR2_21,
2590 GP_2_20_FN, GPSR2_20,
2591 GP_2_19_FN, GPSR2_19,
2592 GP_2_18_FN, GPSR2_18,
2593 GP_2_17_FN, GPSR2_17,
2594 GP_2_16_FN, GPSR2_16,
2595 GP_2_15_FN, GPSR2_15,
2596 GP_2_14_FN, GPSR2_14,
2597 GP_2_13_FN, GPSR2_13,
2598 GP_2_12_FN, GPSR2_12,
2599 GP_2_11_FN, GPSR2_11,
2600 GP_2_10_FN, GPSR2_10,
2601 GP_2_9_FN, GPSR2_9,
2602 GP_2_8_FN, GPSR2_8,
2603 GP_2_7_FN, GPSR2_7,
2604 GP_2_6_FN, GPSR2_6,
2605 GP_2_5_FN, GPSR2_5,
2606 GP_2_4_FN, GPSR2_4,
2607 GP_2_3_FN, GPSR2_3,
2608 GP_2_2_FN, GPSR2_2,
2609 GP_2_1_FN, GPSR2_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002610 GP_2_0_FN, GPSR2_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002611 },
Marek Vasutb8f61132023-01-26 21:01:46 +01002612 { PINMUX_CFG_REG_VAR("GPSR3", 0xe606010c, 32,
2613 GROUP(-22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1),
2614 GROUP(
2615 /* GP3_31_10 RESERVED */
Marek Vasut7d35e642017-10-08 20:57:37 +02002616 GP_3_9_FN, GPSR3_9,
2617 GP_3_8_FN, GPSR3_8,
2618 GP_3_7_FN, GPSR3_7,
2619 GP_3_6_FN, GPSR3_6,
2620 GP_3_5_FN, GPSR3_5,
2621 GP_3_4_FN, GPSR3_4,
2622 GP_3_3_FN, GPSR3_3,
2623 GP_3_2_FN, GPSR3_2,
2624 GP_3_1_FN, GPSR3_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002625 GP_3_0_FN, GPSR3_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002626 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002627 { PINMUX_CFG_REG("GPSR4", 0xe6060110, 32, 1, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002628 GP_4_31_FN, GPSR4_31,
2629 GP_4_30_FN, GPSR4_30,
2630 GP_4_29_FN, GPSR4_29,
2631 GP_4_28_FN, GPSR4_28,
2632 GP_4_27_FN, GPSR4_27,
2633 GP_4_26_FN, GPSR4_26,
2634 GP_4_25_FN, GPSR4_25,
2635 GP_4_24_FN, GPSR4_24,
2636 GP_4_23_FN, GPSR4_23,
2637 GP_4_22_FN, GPSR4_22,
2638 GP_4_21_FN, GPSR4_21,
2639 GP_4_20_FN, GPSR4_20,
2640 GP_4_19_FN, GPSR4_19,
2641 GP_4_18_FN, GPSR4_18,
2642 GP_4_17_FN, GPSR4_17,
2643 GP_4_16_FN, GPSR4_16,
2644 GP_4_15_FN, GPSR4_15,
2645 GP_4_14_FN, GPSR4_14,
2646 GP_4_13_FN, GPSR4_13,
2647 GP_4_12_FN, GPSR4_12,
2648 GP_4_11_FN, GPSR4_11,
2649 GP_4_10_FN, GPSR4_10,
2650 GP_4_9_FN, GPSR4_9,
2651 GP_4_8_FN, GPSR4_8,
2652 GP_4_7_FN, GPSR4_7,
2653 GP_4_6_FN, GPSR4_6,
2654 GP_4_5_FN, GPSR4_5,
2655 GP_4_4_FN, GPSR4_4,
2656 GP_4_3_FN, GPSR4_3,
2657 GP_4_2_FN, GPSR4_2,
2658 GP_4_1_FN, GPSR4_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002659 GP_4_0_FN, GPSR4_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002660 },
Marek Vasutb8f61132023-01-26 21:01:46 +01002661 { PINMUX_CFG_REG_VAR("GPSR5", 0xe6060114, 32,
2662 GROUP(-11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2663 1, 1, 1, 1, 1, 1, 1, 1, 1, 1),
2664 GROUP(
2665 /* GP5_31_21 RESERVED */
Marek Vasut7d35e642017-10-08 20:57:37 +02002666 GP_5_20_FN, GPSR5_20,
2667 GP_5_19_FN, GPSR5_19,
2668 GP_5_18_FN, GPSR5_18,
2669 GP_5_17_FN, GPSR5_17,
2670 GP_5_16_FN, GPSR5_16,
2671 GP_5_15_FN, GPSR5_15,
2672 GP_5_14_FN, GPSR5_14,
2673 GP_5_13_FN, GPSR5_13,
2674 GP_5_12_FN, GPSR5_12,
2675 GP_5_11_FN, GPSR5_11,
2676 GP_5_10_FN, GPSR5_10,
2677 GP_5_9_FN, GPSR5_9,
2678 GP_5_8_FN, GPSR5_8,
2679 GP_5_7_FN, GPSR5_7,
2680 GP_5_6_FN, GPSR5_6,
2681 GP_5_5_FN, GPSR5_5,
2682 GP_5_4_FN, GPSR5_4,
2683 GP_5_3_FN, GPSR5_3,
2684 GP_5_2_FN, GPSR5_2,
2685 GP_5_1_FN, GPSR5_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002686 GP_5_0_FN, GPSR5_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002687 },
Marek Vasutb8f61132023-01-26 21:01:46 +01002688 { PINMUX_CFG_REG_VAR("GPSR6", 0xe6060118, 32,
2689 GROUP(-18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2690 1, 1, 1),
2691 GROUP(
2692 /* GP6_31_14 RESERVED */
Marek Vasut7d35e642017-10-08 20:57:37 +02002693 GP_6_13_FN, GPSR6_13,
2694 GP_6_12_FN, GPSR6_12,
2695 GP_6_11_FN, GPSR6_11,
2696 GP_6_10_FN, GPSR6_10,
2697 GP_6_9_FN, GPSR6_9,
2698 GP_6_8_FN, GPSR6_8,
2699 GP_6_7_FN, GPSR6_7,
2700 GP_6_6_FN, GPSR6_6,
2701 GP_6_5_FN, GPSR6_5,
2702 GP_6_4_FN, GPSR6_4,
2703 GP_6_3_FN, GPSR6_3,
2704 GP_6_2_FN, GPSR6_2,
2705 GP_6_1_FN, GPSR6_1,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002706 GP_6_0_FN, GPSR6_0, ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002707 },
2708#undef F_
2709#undef FM
2710
2711#define F_(x, y) x,
2712#define FM(x) FN_##x,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002713 { PINMUX_CFG_REG("IPSR0", 0xe6060200, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002714 IP0_31_28
2715 IP0_27_24
2716 IP0_23_20
2717 IP0_19_16
2718 IP0_15_12
2719 IP0_11_8
2720 IP0_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002721 IP0_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002722 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002723 { PINMUX_CFG_REG("IPSR1", 0xe6060204, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002724 IP1_31_28
2725 IP1_27_24
2726 IP1_23_20
2727 IP1_19_16
2728 IP1_15_12
2729 IP1_11_8
2730 IP1_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002731 IP1_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002732 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002733 { PINMUX_CFG_REG("IPSR2", 0xe6060208, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002734 IP2_31_28
2735 IP2_27_24
2736 IP2_23_20
2737 IP2_19_16
2738 IP2_15_12
2739 IP2_11_8
2740 IP2_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002741 IP2_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002742 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002743 { PINMUX_CFG_REG("IPSR3", 0xe606020c, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002744 IP3_31_28
2745 IP3_27_24
2746 IP3_23_20
2747 IP3_19_16
2748 IP3_15_12
2749 IP3_11_8
2750 IP3_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002751 IP3_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002752 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002753 { PINMUX_CFG_REG("IPSR4", 0xe6060210, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002754 IP4_31_28
2755 IP4_27_24
2756 IP4_23_20
2757 IP4_19_16
2758 IP4_15_12
2759 IP4_11_8
2760 IP4_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002761 IP4_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002762 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002763 { PINMUX_CFG_REG("IPSR5", 0xe6060214, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002764 IP5_31_28
2765 IP5_27_24
2766 IP5_23_20
2767 IP5_19_16
2768 IP5_15_12
2769 IP5_11_8
2770 IP5_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002771 IP5_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002772 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002773 { PINMUX_CFG_REG("IPSR6", 0xe6060218, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002774 IP6_31_28
2775 IP6_27_24
2776 IP6_23_20
2777 IP6_19_16
2778 IP6_15_12
2779 IP6_11_8
2780 IP6_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002781 IP6_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002782 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002783 { PINMUX_CFG_REG("IPSR7", 0xe606021c, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002784 IP7_31_28
2785 IP7_27_24
2786 IP7_23_20
2787 IP7_19_16
2788 IP7_15_12
2789 IP7_11_8
2790 IP7_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002791 IP7_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002792 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002793 { PINMUX_CFG_REG("IPSR8", 0xe6060220, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002794 IP8_31_28
2795 IP8_27_24
2796 IP8_23_20
2797 IP8_19_16
2798 IP8_15_12
2799 IP8_11_8
2800 IP8_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002801 IP8_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002802 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002803 { PINMUX_CFG_REG("IPSR9", 0xe6060224, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002804 IP9_31_28
2805 IP9_27_24
2806 IP9_23_20
2807 IP9_19_16
2808 IP9_15_12
2809 IP9_11_8
2810 IP9_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002811 IP9_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002812 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002813 { PINMUX_CFG_REG("IPSR10", 0xe6060228, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002814 IP10_31_28
2815 IP10_27_24
2816 IP10_23_20
2817 IP10_19_16
2818 IP10_15_12
2819 IP10_11_8
2820 IP10_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002821 IP10_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002822 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002823 { PINMUX_CFG_REG("IPSR11", 0xe606022c, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002824 IP11_31_28
2825 IP11_27_24
2826 IP11_23_20
2827 IP11_19_16
2828 IP11_15_12
2829 IP11_11_8
2830 IP11_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002831 IP11_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002832 },
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002833 { PINMUX_CFG_REG("IPSR12", 0xe6060230, 32, 4, GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002834 IP12_31_28
2835 IP12_27_24
2836 IP12_23_20
2837 IP12_19_16
2838 IP12_15_12
2839 IP12_11_8
2840 IP12_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002841 IP12_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002842 },
Marek Vasutb8f61132023-01-26 21:01:46 +01002843 { PINMUX_CFG_REG_VAR("IPSR13", 0xe6060234, 32,
2844 GROUP(-24, 4, 4),
2845 GROUP(
2846 /* IP13_31_8 RESERVED */
Marek Vasut7d35e642017-10-08 20:57:37 +02002847 IP13_7_4
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002848 IP13_3_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002849 },
2850#undef F_
2851#undef FM
2852
2853#define F_(x, y) x,
2854#define FM(x) FN_##x,
2855 { PINMUX_CFG_REG_VAR("MOD_SEL0", 0xe6060500, 32,
Marek Vasutb8f61132023-01-26 21:01:46 +01002856 GROUP(-1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, -1,
2857 1, 1, 1, 1, 1, 1, -4, 1, 1, 1, 1, 1, 1),
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002858 GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002859 /* RESERVED 31 */
Marek Vasut7d35e642017-10-08 20:57:37 +02002860 MOD_SEL0_30
2861 MOD_SEL0_29
2862 MOD_SEL0_28
2863 MOD_SEL0_27
2864 MOD_SEL0_26
2865 MOD_SEL0_25
2866 MOD_SEL0_24_23
2867 MOD_SEL0_22_21
2868 MOD_SEL0_20_19
2869 MOD_SEL0_18_17
2870 /* RESERVED 16 */
Marek Vasut7d35e642017-10-08 20:57:37 +02002871 MOD_SEL0_15
2872 MOD_SEL0_14
2873 MOD_SEL0_13
2874 MOD_SEL0_12
2875 MOD_SEL0_11
2876 MOD_SEL0_10
2877 /* RESERVED 9, 8, 7, 6 */
Marek Vasut7d35e642017-10-08 20:57:37 +02002878 MOD_SEL0_5
2879 MOD_SEL0_4
2880 MOD_SEL0_3
2881 MOD_SEL0_2
2882 MOD_SEL0_1
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002883 MOD_SEL0_0 ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002884 },
2885 { PINMUX_CFG_REG_VAR("MOD_SEL1", 0xe6060504, 32,
Marek Vasutb8f61132023-01-26 21:01:46 +01002886 GROUP(1, 1, 1, 1, 1, 1, -26),
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02002887 GROUP(
Marek Vasut7d35e642017-10-08 20:57:37 +02002888 MOD_SEL1_31
2889 MOD_SEL1_30
2890 MOD_SEL1_29
2891 MOD_SEL1_28
2892 MOD_SEL1_27
2893 MOD_SEL1_26
Marek Vasutb8f61132023-01-26 21:01:46 +01002894 /* RESERVED 25-0 */ ))
Marek Vasut7d35e642017-10-08 20:57:37 +02002895 },
Marek Vasutf5ba8ca2023-09-17 16:08:46 +02002896 { /* sentinel */ }
2897};
2898
2899enum ioctrl_regs {
2900 POCCTRL0,
2901 POCCTRL2,
2902 TDSELCTRL,
2903};
2904
2905static const struct pinmux_ioctrl_reg pinmux_ioctrl_regs[] = {
2906 [POCCTRL0] = { 0xe6060380, },
2907 [POCCTRL2] = { 0xe6060388, },
2908 [TDSELCTRL] = { 0xe60603c0, },
2909 { /* sentinel */ }
Marek Vasut7d35e642017-10-08 20:57:37 +02002910};
2911
Marek Vasutb8f61132023-01-26 21:01:46 +01002912static int r8a77995_pin_to_pocctrl(unsigned int pin, u32 *pocctrl)
Marek Vasut7d35e642017-10-08 20:57:37 +02002913{
Marek Vasutf5ba8ca2023-09-17 16:08:46 +02002914 switch (pin) {
2915 case RCAR_GP_PIN(3, 0) ... RCAR_GP_PIN(3, 9):
2916 *pocctrl = pinmux_ioctrl_regs[POCCTRL0].reg;
2917 return 29 - (pin - RCAR_GP_PIN(3, 0));
Marek Vasut7d35e642017-10-08 20:57:37 +02002918
Marek Vasutf5ba8ca2023-09-17 16:08:46 +02002919 case PIN_VDDQ_AVB0:
2920 *pocctrl = pinmux_ioctrl_regs[POCCTRL2].reg;
2921 return 0;
Marek Vasut7d35e642017-10-08 20:57:37 +02002922
Marek Vasutf5ba8ca2023-09-17 16:08:46 +02002923 default:
2924 return -EINVAL;
2925 }
Marek Vasut7d35e642017-10-08 20:57:37 +02002926}
2927
Marek Vasutb8f61132023-01-26 21:01:46 +01002928static const struct pinmux_bias_reg pinmux_bias_regs[] = {
2929 { PINMUX_BIAS_REG("PUEN0", 0xe6060400, "PUD0", 0xe6060440) {
2930 [ 0] = RCAR_GP_PIN(1, 9), /* DU_DG1 */
2931 [ 1] = RCAR_GP_PIN(1, 8), /* DU_DG0 */
2932 [ 2] = RCAR_GP_PIN(1, 7), /* DU_DB7 */
2933 [ 3] = RCAR_GP_PIN(1, 6), /* DU_DB6 */
2934 [ 4] = RCAR_GP_PIN(1, 5), /* DU_DB5 */
2935 [ 5] = RCAR_GP_PIN(1, 4), /* DU_DB4 */
2936 [ 6] = RCAR_GP_PIN(1, 3), /* DU_DB3 */
2937 [ 7] = RCAR_GP_PIN(1, 2), /* DU_DB2 */
2938 [ 8] = RCAR_GP_PIN(1, 1), /* DU_DB1 */
2939 [ 9] = RCAR_GP_PIN(1, 0), /* DU_DB0 */
2940 [10] = PIN_MLB_REF, /* MLB_REF */
2941 [11] = RCAR_GP_PIN(0, 8), /* MLB_SIG */
2942 [12] = RCAR_GP_PIN(0, 7), /* MLB_DAT */
2943 [13] = RCAR_GP_PIN(0, 6), /* MLB_CLK */
2944 [14] = RCAR_GP_PIN(0, 5), /* MSIOF2_RXD */
2945 [15] = RCAR_GP_PIN(0, 4), /* MSIOF2_TXD */
2946 [16] = RCAR_GP_PIN(0, 3), /* MSIOF2_SCK */
2947 [17] = RCAR_GP_PIN(0, 2), /* IRQ0_A */
2948 [18] = RCAR_GP_PIN(0, 1), /* USB0_OVC */
2949 [19] = RCAR_GP_PIN(0, 0), /* USB0_PWEN */
2950 [20] = PIN_PRESETOUT_N, /* PRESETOUT# */
2951 [21] = PIN_DU_DOTCLKIN0, /* DU_DOTCLKIN0 */
2952 [22] = PIN_FSCLKST_N, /* FSCLKST# */
2953 [23] = SH_PFC_PIN_NONE,
2954 [24] = SH_PFC_PIN_NONE,
2955 [25] = SH_PFC_PIN_NONE,
2956 [26] = SH_PFC_PIN_NONE,
2957 [27] = SH_PFC_PIN_NONE,
2958 [28] = PIN_TDI, /* TDI */
2959 [29] = PIN_TMS, /* TMS */
2960 [30] = PIN_TCK, /* TCK */
2961 [31] = PIN_TRST_N, /* TRST# */
2962 } },
2963 { PINMUX_BIAS_REG("PUEN1", 0xe6060404, "PUD1", 0xe6060444) {
2964 [ 0] = RCAR_GP_PIN(2, 9), /* VI4_DATA8 */
2965 [ 1] = RCAR_GP_PIN(2, 8), /* VI4_DATA7 */
2966 [ 2] = RCAR_GP_PIN(2, 7), /* VI4_DATA6 */
2967 [ 3] = RCAR_GP_PIN(2, 6), /* VI4_DATA5 */
2968 [ 4] = RCAR_GP_PIN(2, 5), /* VI4_DATA4 */
2969 [ 5] = RCAR_GP_PIN(2, 4), /* VI4_DATA3 */
2970 [ 6] = RCAR_GP_PIN(2, 3), /* VI4_DATA2 */
2971 [ 7] = RCAR_GP_PIN(2, 2), /* VI4_DATA1 */
2972 [ 8] = RCAR_GP_PIN(2, 1), /* VI4_DATA0 */
2973 [ 9] = RCAR_GP_PIN(2, 0), /* VI4_CLK */
2974 [10] = RCAR_GP_PIN(1, 31), /* QPOLB */
2975 [11] = RCAR_GP_PIN(1, 30), /* QPOLA */
2976 [12] = RCAR_GP_PIN(1, 29), /* DU_CDE */
2977 [13] = RCAR_GP_PIN(1, 28), /* DU_DISP/CDE */
2978 [14] = RCAR_GP_PIN(1, 27), /* DU_DISP */
2979 [15] = RCAR_GP_PIN(1, 26), /* DU_VSYNC */
2980 [16] = RCAR_GP_PIN(1, 25), /* DU_HSYNC */
2981 [17] = RCAR_GP_PIN(1, 24), /* DU_DOTCLKOUT0 */
2982 [18] = RCAR_GP_PIN(1, 23), /* DU_DR7 */
2983 [19] = RCAR_GP_PIN(1, 22), /* DU_DR6 */
2984 [20] = RCAR_GP_PIN(1, 21), /* DU_DR5 */
2985 [21] = RCAR_GP_PIN(1, 20), /* DU_DR4 */
2986 [22] = RCAR_GP_PIN(1, 19), /* DU_DR3 */
2987 [23] = RCAR_GP_PIN(1, 18), /* DU_DR2 */
2988 [24] = RCAR_GP_PIN(1, 17), /* DU_DR1 */
2989 [25] = RCAR_GP_PIN(1, 16), /* DU_DR0 */
2990 [26] = RCAR_GP_PIN(1, 15), /* DU_DG7 */
2991 [27] = RCAR_GP_PIN(1, 14), /* DU_DG6 */
2992 [28] = RCAR_GP_PIN(1, 13), /* DU_DG5 */
2993 [29] = RCAR_GP_PIN(1, 12), /* DU_DG4 */
2994 [30] = RCAR_GP_PIN(1, 11), /* DU_DG3 */
2995 [31] = RCAR_GP_PIN(1, 10), /* DU_DG2 */
2996 } },
2997 { PINMUX_BIAS_REG("PUEN2", 0xe6060408, "PUD2", 0xe6060448) {
2998 [ 0] = RCAR_GP_PIN(3, 8), /* NFDATA6 */
2999 [ 1] = RCAR_GP_PIN(3, 7), /* NFDATA5 */
3000 [ 2] = RCAR_GP_PIN(3, 6), /* NFDATA4 */
3001 [ 3] = RCAR_GP_PIN(3, 5), /* NFDATA3 */
3002 [ 4] = RCAR_GP_PIN(3, 4), /* NFDATA2 */
3003 [ 5] = RCAR_GP_PIN(3, 3), /* NFDATA1 */
3004 [ 6] = RCAR_GP_PIN(3, 2), /* NFDATA0 */
3005 [ 7] = RCAR_GP_PIN(3, 1), /* NFWE# (PUEN) / NFRE# (PUD) */
3006 [ 8] = RCAR_GP_PIN(3, 0), /* NFRE# (PUEN) / NFWE# (PUD) */
3007 [ 9] = RCAR_GP_PIN(4, 0), /* NFRB# */
3008 [10] = RCAR_GP_PIN(2, 31), /* NFCE# */
3009 [11] = RCAR_GP_PIN(2, 30), /* NFCLE */
3010 [12] = RCAR_GP_PIN(2, 29), /* NFALE */
3011 [13] = RCAR_GP_PIN(2, 28), /* VI4_CLKENB */
3012 [14] = RCAR_GP_PIN(2, 27), /* VI4_FIELD */
3013 [15] = RCAR_GP_PIN(2, 26), /* VI4_HSYNC# */
3014 [16] = RCAR_GP_PIN(2, 25), /* VI4_VSYNC# */
3015 [17] = RCAR_GP_PIN(2, 24), /* VI4_DATA23 */
3016 [18] = RCAR_GP_PIN(2, 23), /* VI4_DATA22 */
3017 [19] = RCAR_GP_PIN(2, 22), /* VI4_DATA21 */
3018 [20] = RCAR_GP_PIN(2, 21), /* VI4_DATA20 */
3019 [21] = RCAR_GP_PIN(2, 20), /* VI4_DATA19 */
3020 [22] = RCAR_GP_PIN(2, 19), /* VI4_DATA18 */
3021 [23] = RCAR_GP_PIN(2, 18), /* VI4_DATA17 */
3022 [24] = RCAR_GP_PIN(2, 17), /* VI4_DATA16 */
3023 [25] = RCAR_GP_PIN(2, 16), /* VI4_DATA15 */
3024 [26] = RCAR_GP_PIN(2, 15), /* VI4_DATA14 */
3025 [27] = RCAR_GP_PIN(2, 14), /* VI4_DATA13 */
3026 [28] = RCAR_GP_PIN(2, 13), /* VI4_DATA12 */
3027 [29] = RCAR_GP_PIN(2, 12), /* VI4_DATA11 */
3028 [30] = RCAR_GP_PIN(2, 11), /* VI4_DATA10 */
3029 [31] = RCAR_GP_PIN(2, 10), /* VI4_DATA9 */
3030 } },
3031 { PINMUX_BIAS_REG("PUEN3", 0xe606040c, "PUD3", 0xe606044c) {
3032 [ 0] = RCAR_GP_PIN(4, 31), /* CAN0_RX_A */
3033 [ 1] = RCAR_GP_PIN(5, 2), /* CAN_CLK */
3034 [ 2] = RCAR_GP_PIN(5, 1), /* TPU0TO1_A */
3035 [ 3] = RCAR_GP_PIN(5, 0), /* TPU0TO0_A */
3036 [ 4] = RCAR_GP_PIN(4, 27), /* TX2 */
3037 [ 5] = RCAR_GP_PIN(4, 26), /* RX2 */
3038 [ 6] = RCAR_GP_PIN(4, 25), /* SCK2 */
3039 [ 7] = RCAR_GP_PIN(4, 24), /* TX1_A */
3040 [ 8] = RCAR_GP_PIN(4, 23), /* RX1_A */
3041 [ 9] = RCAR_GP_PIN(4, 22), /* SCK1_A */
3042 [10] = RCAR_GP_PIN(4, 21), /* TX0_A */
3043 [11] = RCAR_GP_PIN(4, 20), /* RX0_A */
3044 [12] = RCAR_GP_PIN(4, 19), /* SCK0_A */
3045 [13] = RCAR_GP_PIN(4, 18), /* MSIOF1_RXD */
3046 [14] = RCAR_GP_PIN(4, 17), /* MSIOF1_TXD */
3047 [15] = RCAR_GP_PIN(4, 16), /* MSIOF1_SCK */
3048 [16] = RCAR_GP_PIN(4, 15), /* MSIOF0_RXD */
3049 [17] = RCAR_GP_PIN(4, 14), /* MSIOF0_TXD */
3050 [18] = RCAR_GP_PIN(4, 13), /* MSIOF0_SYNC */
3051 [19] = RCAR_GP_PIN(4, 12), /* MSIOF0_SCK */
3052 [20] = RCAR_GP_PIN(4, 11), /* SDA1 */
3053 [21] = RCAR_GP_PIN(4, 10), /* SCL1 */
3054 [22] = RCAR_GP_PIN(4, 9), /* SDA0 */
3055 [23] = RCAR_GP_PIN(4, 8), /* SCL0 */
3056 [24] = RCAR_GP_PIN(4, 7), /* SSI_WS4_A */
3057 [25] = RCAR_GP_PIN(4, 6), /* SSI_SDATA4_A */
3058 [26] = RCAR_GP_PIN(4, 5), /* SSI_SCK4_A */
3059 [27] = RCAR_GP_PIN(4, 4), /* SSI_WS34 */
3060 [28] = RCAR_GP_PIN(4, 3), /* SSI_SDATA3 */
3061 [29] = RCAR_GP_PIN(4, 2), /* SSI_SCK34 */
3062 [30] = RCAR_GP_PIN(4, 1), /* AUDIO_CLKA */
3063 [31] = RCAR_GP_PIN(3, 9), /* NFDATA7 */
3064 } },
3065 { PINMUX_BIAS_REG("PUEN4", 0xe6060410, "PUD4", 0xe6060450) {
3066 [ 0] = RCAR_GP_PIN(6, 10), /* QSPI1_IO3 */
3067 [ 1] = RCAR_GP_PIN(6, 9), /* QSPI1_IO2 */
3068 [ 2] = RCAR_GP_PIN(6, 8), /* QSPI1_MISO_IO1 */
3069 [ 3] = RCAR_GP_PIN(6, 7), /* QSPI1_MOSI_IO0 */
3070 [ 4] = RCAR_GP_PIN(6, 6), /* QSPI1_SPCLK */
3071 [ 5] = RCAR_GP_PIN(6, 5), /* QSPI0_SSL */
3072 [ 6] = RCAR_GP_PIN(6, 4), /* QSPI0_IO3 */
3073 [ 7] = RCAR_GP_PIN(6, 3), /* QSPI0_IO2 */
3074 [ 8] = RCAR_GP_PIN(6, 2), /* QSPI0_MISO_IO1 */
3075 [ 9] = RCAR_GP_PIN(6, 1), /* QSPI0_MOSI_IO0 */
3076 [10] = RCAR_GP_PIN(6, 0), /* QSPI0_SPCLK */
3077 [11] = RCAR_GP_PIN(5, 20), /* AVB0_LINK */
3078 [12] = RCAR_GP_PIN(5, 19), /* AVB0_PHY_INT */
3079 [13] = RCAR_GP_PIN(5, 18), /* AVB0_MAGIC */
3080 [14] = RCAR_GP_PIN(5, 17), /* AVB0_MDC */
3081 [15] = RCAR_GP_PIN(5, 16), /* AVB0_MDIO */
3082 [16] = RCAR_GP_PIN(5, 15), /* AVB0_TXCREFCLK */
3083 [17] = RCAR_GP_PIN(5, 14), /* AVB0_TD3 */
3084 [18] = RCAR_GP_PIN(5, 13), /* AVB0_TD2 */
3085 [19] = RCAR_GP_PIN(5, 12), /* AVB0_TD1 */
3086 [20] = RCAR_GP_PIN(5, 11), /* AVB0_TD0 */
3087 [21] = RCAR_GP_PIN(5, 10), /* AVB0_TXC */
3088 [22] = RCAR_GP_PIN(5, 9), /* AVB0_TX_CTL */
3089 [23] = RCAR_GP_PIN(5, 8), /* AVB0_RD3 */
3090 [24] = RCAR_GP_PIN(5, 7), /* AVB0_RD2 */
3091 [25] = RCAR_GP_PIN(5, 6), /* AVB0_RD1 */
3092 [26] = RCAR_GP_PIN(5, 5), /* AVB0_RD0 */
3093 [27] = RCAR_GP_PIN(5, 4), /* AVB0_RXC */
3094 [28] = RCAR_GP_PIN(5, 3), /* AVB0_RX_CTL */
3095 [29] = RCAR_GP_PIN(4, 30), /* CAN1_TX_A */
3096 [30] = RCAR_GP_PIN(4, 29), /* CAN1_RX_A */
3097 [31] = RCAR_GP_PIN(4, 28), /* CAN0_TX_A */
3098 } },
3099 { PINMUX_BIAS_REG("PUEN5", 0xe6060414, "PUD4", 0xe6060454) {
3100 [ 0] = SH_PFC_PIN_NONE,
3101 [ 1] = SH_PFC_PIN_NONE,
3102 [ 2] = SH_PFC_PIN_NONE,
3103 [ 3] = SH_PFC_PIN_NONE,
3104 [ 4] = SH_PFC_PIN_NONE,
3105 [ 5] = SH_PFC_PIN_NONE,
3106 [ 6] = SH_PFC_PIN_NONE,
3107 [ 7] = SH_PFC_PIN_NONE,
3108 [ 8] = SH_PFC_PIN_NONE,
3109 [ 9] = SH_PFC_PIN_NONE,
3110 [10] = SH_PFC_PIN_NONE,
3111 [11] = SH_PFC_PIN_NONE,
3112 [12] = SH_PFC_PIN_NONE,
3113 [13] = SH_PFC_PIN_NONE,
3114 [14] = SH_PFC_PIN_NONE,
3115 [15] = SH_PFC_PIN_NONE,
3116 [16] = SH_PFC_PIN_NONE,
3117 [17] = SH_PFC_PIN_NONE,
3118 [18] = SH_PFC_PIN_NONE,
3119 [19] = SH_PFC_PIN_NONE,
3120 [20] = SH_PFC_PIN_NONE,
3121 [21] = SH_PFC_PIN_NONE,
3122 [22] = SH_PFC_PIN_NONE,
3123 [23] = SH_PFC_PIN_NONE,
3124 [24] = SH_PFC_PIN_NONE,
3125 [25] = SH_PFC_PIN_NONE,
3126 [26] = SH_PFC_PIN_NONE,
3127 [27] = SH_PFC_PIN_NONE,
3128 [28] = SH_PFC_PIN_NONE,
3129 [29] = RCAR_GP_PIN(6, 13), /* RPC_INT# */
3130 [30] = RCAR_GP_PIN(6, 12), /* RPC_RESET# */
3131 [31] = RCAR_GP_PIN(6, 11), /* QSPI1_SSL */
3132 } },
3133 { /* sentinel */ }
3134};
3135
Marek Vasutb8f61132023-01-26 21:01:46 +01003136static const struct pinmux_bias_reg *
3137r8a77995_pin_to_bias_reg(const struct sh_pfc *pfc, unsigned int pin,
3138 unsigned int *puen_bit, unsigned int *pud_bit)
3139{
3140 const struct pinmux_bias_reg *reg;
3141 unsigned int bit;
3142
3143 reg = rcar_pin_to_bias_reg(pfc->info, pin, &bit);
3144 if (!reg)
3145 return reg;
3146
3147 *puen_bit = bit;
3148
3149 /* NFWE# and NFRE# use different bit positions in PUD2 */
3150 switch (pin) {
3151 case RCAR_GP_PIN(3, 0): /* NFRE# */
3152 *pud_bit = 7;
3153 break;
3154
3155 case RCAR_GP_PIN(3, 1): /* NFWE# */
3156 *pud_bit = 8;
3157 break;
3158
3159 default:
3160 *pud_bit = bit;
3161 break;
3162 }
3163
3164 return reg;
3165}
3166
3167static unsigned int r8a77995_pinmux_get_bias(struct sh_pfc *pfc,
3168 unsigned int pin)
3169{
3170 const struct pinmux_bias_reg *reg;
3171 unsigned int puen_bit, pud_bit;
3172
3173 reg = r8a77995_pin_to_bias_reg(pfc, pin, &puen_bit, &pud_bit);
3174 if (!reg)
3175 return PIN_CONFIG_BIAS_DISABLE;
3176
3177 if (!(sh_pfc_read(pfc, reg->puen) & BIT(puen_bit)))
3178 return PIN_CONFIG_BIAS_DISABLE;
3179 else if (sh_pfc_read(pfc, reg->pud) & BIT(pud_bit))
3180 return PIN_CONFIG_BIAS_PULL_UP;
3181 else
3182 return PIN_CONFIG_BIAS_PULL_DOWN;
3183}
3184
3185static void r8a77995_pinmux_set_bias(struct sh_pfc *pfc, unsigned int pin,
3186 unsigned int bias)
3187{
3188 const struct pinmux_bias_reg *reg;
3189 unsigned int puen_bit, pud_bit;
3190 u32 enable, updown;
3191
3192 reg = r8a77995_pin_to_bias_reg(pfc, pin, &puen_bit, &pud_bit);
3193 if (!reg)
3194 return;
3195
3196 enable = sh_pfc_read(pfc, reg->puen) & ~BIT(puen_bit);
3197 if (bias != PIN_CONFIG_BIAS_DISABLE) {
3198 enable |= BIT(puen_bit);
3199
3200 updown = sh_pfc_read(pfc, reg->pud) & ~BIT(pud_bit);
3201 if (bias == PIN_CONFIG_BIAS_PULL_UP)
3202 updown |= BIT(pud_bit);
3203
3204 sh_pfc_write(pfc, reg->pud, updown);
3205 }
3206 sh_pfc_write(pfc, reg->puen, enable);
3207}
3208
3209static const struct sh_pfc_soc_operations r8a77995_pfc_ops = {
Marek Vasut7d35e642017-10-08 20:57:37 +02003210 .pin_to_pocctrl = r8a77995_pin_to_pocctrl,
Marek Vasutb8f61132023-01-26 21:01:46 +01003211 .get_bias = r8a77995_pinmux_get_bias,
3212 .set_bias = r8a77995_pinmux_set_bias,
Marek Vasut7d35e642017-10-08 20:57:37 +02003213};
3214
3215const struct sh_pfc_soc_info r8a77995_pinmux_info = {
3216 .name = "r8a77995_pfc",
Marek Vasutb8f61132023-01-26 21:01:46 +01003217 .ops = &r8a77995_pfc_ops,
Marek Vasut7d35e642017-10-08 20:57:37 +02003218 .unlock_reg = 0xe6060000, /* PMMR */
3219
3220 .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END },
3221
3222 .pins = pinmux_pins,
3223 .nr_pins = ARRAY_SIZE(pinmux_pins),
3224 .groups = pinmux_groups,
3225 .nr_groups = ARRAY_SIZE(pinmux_groups),
3226 .functions = pinmux_functions,
3227 .nr_functions = ARRAY_SIZE(pinmux_functions),
3228
3229 .cfg_regs = pinmux_config_regs,
Marek Vasutb8f61132023-01-26 21:01:46 +01003230 .bias_regs = pinmux_bias_regs,
Eugeniu Roscaf0066b02019-07-09 18:27:11 +02003231 .ioctrl_regs = pinmux_ioctrl_regs,
Marek Vasut7d35e642017-10-08 20:57:37 +02003232
3233 .pinmux_data = pinmux_data,
3234 .pinmux_data_size = ARRAY_SIZE(pinmux_data),
3235};