162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifndef __CPU_SHX3_H 362306a36Sopenharmony_ci#define __CPU_SHX3_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_cienum { 662306a36Sopenharmony_ci /* PA */ 762306a36Sopenharmony_ci GPIO_PA7, GPIO_PA6, GPIO_PA5, GPIO_PA4, 862306a36Sopenharmony_ci GPIO_PA3, GPIO_PA2, GPIO_PA1, GPIO_PA0, 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ci /* PB */ 1162306a36Sopenharmony_ci GPIO_PB7, GPIO_PB6, GPIO_PB5, GPIO_PB4, 1262306a36Sopenharmony_ci GPIO_PB3, GPIO_PB2, GPIO_PB1, GPIO_PB0, 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ci /* PC */ 1562306a36Sopenharmony_ci GPIO_PC7, GPIO_PC6, GPIO_PC5, GPIO_PC4, 1662306a36Sopenharmony_ci GPIO_PC3, GPIO_PC2, GPIO_PC1, GPIO_PC0, 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ci /* PD */ 1962306a36Sopenharmony_ci GPIO_PD7, GPIO_PD6, GPIO_PD5, GPIO_PD4, 2062306a36Sopenharmony_ci GPIO_PD3, GPIO_PD2, GPIO_PD1, GPIO_PD0, 2162306a36Sopenharmony_ci 2262306a36Sopenharmony_ci /* PE */ 2362306a36Sopenharmony_ci GPIO_PE7, GPIO_PE6, GPIO_PE5, GPIO_PE4, 2462306a36Sopenharmony_ci GPIO_PE3, GPIO_PE2, GPIO_PE1, GPIO_PE0, 2562306a36Sopenharmony_ci 2662306a36Sopenharmony_ci /* PF */ 2762306a36Sopenharmony_ci GPIO_PF7, GPIO_PF6, GPIO_PF5, GPIO_PF4, 2862306a36Sopenharmony_ci GPIO_PF3, GPIO_PF2, GPIO_PF1, GPIO_PF0, 2962306a36Sopenharmony_ci 3062306a36Sopenharmony_ci /* PG */ 3162306a36Sopenharmony_ci GPIO_PG7, GPIO_PG6, GPIO_PG5, GPIO_PG4, 3262306a36Sopenharmony_ci GPIO_PG3, GPIO_PG2, GPIO_PG1, GPIO_PG0, 3362306a36Sopenharmony_ci 3462306a36Sopenharmony_ci /* PH */ 3562306a36Sopenharmony_ci GPIO_PH5, GPIO_PH4, 3662306a36Sopenharmony_ci GPIO_PH3, GPIO_PH2, GPIO_PH1, GPIO_PH0, 3762306a36Sopenharmony_ci 3862306a36Sopenharmony_ci /* SCIF */ 3962306a36Sopenharmony_ci GPIO_FN_SCK3, GPIO_FN_TXD3, GPIO_FN_RXD3, 4062306a36Sopenharmony_ci GPIO_FN_SCK2, GPIO_FN_TXD2, GPIO_FN_RXD2, 4162306a36Sopenharmony_ci GPIO_FN_SCK1, GPIO_FN_TXD1, GPIO_FN_RXD1, 4262306a36Sopenharmony_ci GPIO_FN_SCK0, GPIO_FN_TXD0, GPIO_FN_RXD0, 4362306a36Sopenharmony_ci 4462306a36Sopenharmony_ci /* LBSC */ 4562306a36Sopenharmony_ci GPIO_FN_D31, GPIO_FN_D30, GPIO_FN_D29, GPIO_FN_D28, 4662306a36Sopenharmony_ci GPIO_FN_D27, GPIO_FN_D26, GPIO_FN_D25, GPIO_FN_D24, 4762306a36Sopenharmony_ci GPIO_FN_D23, GPIO_FN_D22, GPIO_FN_D21, GPIO_FN_D20, 4862306a36Sopenharmony_ci GPIO_FN_D19, GPIO_FN_D18, GPIO_FN_D17, GPIO_FN_D16, 4962306a36Sopenharmony_ci GPIO_FN_WE3, GPIO_FN_WE2, GPIO_FN_CS6, GPIO_FN_CS5, 5062306a36Sopenharmony_ci GPIO_FN_CS4, GPIO_FN_CLKOUTENB, GPIO_FN_BREQ, 5162306a36Sopenharmony_ci GPIO_FN_IOIS16, GPIO_FN_CE2B, GPIO_FN_CE2A, GPIO_FN_BACK, 5262306a36Sopenharmony_ci 5362306a36Sopenharmony_ci /* DMAC */ 5462306a36Sopenharmony_ci GPIO_FN_DACK0, GPIO_FN_DREQ0, GPIO_FN_DRAK0, 5562306a36Sopenharmony_ci GPIO_FN_DACK1, GPIO_FN_DREQ1, GPIO_FN_DRAK1, 5662306a36Sopenharmony_ci GPIO_FN_DACK2, GPIO_FN_DREQ2, GPIO_FN_DRAK2, 5762306a36Sopenharmony_ci GPIO_FN_DACK3, GPIO_FN_DREQ3, GPIO_FN_DRAK3, 5862306a36Sopenharmony_ci 5962306a36Sopenharmony_ci /* INTC */ 6062306a36Sopenharmony_ci GPIO_FN_IRQ3, GPIO_FN_IRQ2, GPIO_FN_IRQ1, GPIO_FN_IRQ0, 6162306a36Sopenharmony_ci GPIO_FN_IRL3, GPIO_FN_IRL2, GPIO_FN_IRL1, GPIO_FN_IRL0, 6262306a36Sopenharmony_ci GPIO_FN_IRQOUT, GPIO_FN_STATUS1, GPIO_FN_STATUS0, 6362306a36Sopenharmony_ci}; 6462306a36Sopenharmony_ci 6562306a36Sopenharmony_ci#endif /* __CPU_SHX3_H */ 66