// SPDX-License-Identifier: GPL-2.0
/*
* SP7021 Pin Controller Driver.
* Copyright (C) Sunplus Tech / Tibbo Tech.
*/
#include <linux/gpio/driver.h>
#include <linux/kernel.h>
#include <linux/pinctrl/pinctrl.h>
#include "sppctl.h"
#define D_PIS(x, y) "P" __stringify(x) "_0" __stringify(y)
#define D(x, y) ((x) * 8 + (y))
#define P(x, y) PINCTRL_PIN(D(x, y), D_PIS(x, y))
const char * const sppctl_gpio_list_s[] = {
D_PIS(0 , 0 ), D_PIS(0 , 1 ), D_PIS(0 , 2 ), D_PIS(0 , 3 ),
D_PIS(0 , 4 ), D_PIS(0 , 5 ), D_PIS(0 , 6 ), D_PIS(0 , 7 ),
D_PIS(1 , 0 ), D_PIS(1 , 1 ), D_PIS(1 , 2 ), D_PIS(1 , 3 ),
D_PIS(1 , 4 ), D_PIS(1 , 5 ), D_PIS(1 , 6 ), D_PIS(1 , 7 ),
D_PIS(2 , 0 ), D_PIS(2 , 1 ), D_PIS(2 , 2 ), D_PIS(2 , 3 ),
D_PIS(2 , 4 ), D_PIS(2 , 5 ), D_PIS(2 , 6 ), D_PIS(2 , 7 ),
D_PIS(3 , 0 ), D_PIS(3 , 1 ), D_PIS(3 , 2 ), D_PIS(3 , 3 ),
D_PIS(3 , 4 ), D_PIS(3 , 5 ), D_PIS(3 , 6 ), D_PIS(3 , 7 ),
D_PIS(4 , 0 ), D_PIS(4 , 1 ), D_PIS(4 , 2 ), D_PIS(4 , 3 ),
D_PIS(4 , 4 ), D_PIS(4 , 5 ), D_PIS(4 , 6 ), D_PIS(4 , 7 ),
D_PIS(5 , 0 ), D_PIS(5 , 1 ), D_PIS(5 , 2 ), D_PIS(5 , 3 ),
D_PIS(5 , 4 ), D_PIS(5 , 5 ), D_PIS(5 , 6 ), D_PIS(5 , 7 ),
D_PIS(6 , 0 ), D_PIS(6 , 1 ), D_PIS(6 , 2 ), D_PIS(6 , 3 ),
D_PIS(6 , 4 ), D_PIS(6 , 5 ), D_PIS(6 , 6 ), D_PIS(6 , 7 ),
D_PIS(7 , 0 ), D_PIS(7 , 1 ), D_PIS(7 , 2 ), D_PIS(7 , 3 ),
D_PIS(7 , 4 ), D_PIS(7 , 5 ), D_PIS(7 , 6 ), D_PIS(7 , 7 ),
D_PIS(8 , 0 ), D_PIS(8 , 1 ), D_PIS(8 , 2 ), D_PIS(8 , 3 ),
D_PIS(8 , 4 ), D_PIS(8 , 5 ), D_PIS(8 , 6 ), D_PIS(8 , 7 ),
D_PIS(9 , 0 ), D_PIS(9 , 1 ), D_PIS(9 , 2 ), D_PIS(9 , 3 ),
D_PIS(9 , 4 ), D_PIS(9 , 5 ), D_PIS(9 , 6 ), D_PIS(9 , 7 ),
D_PIS(10 , 0 ), D_PIS(10 , 1 ), D_PIS(10 , 2 ), D_PIS(10 , 3 ),
D_PIS(10 , 4 ), D_PIS(10 , 5 ), D_PIS(10 , 6 ), D_PIS(10 , 7 ),
D_PIS(11 , 0 ), D_PIS(11 , 1 ), D_PIS(11 , 2 ), D_PIS(11 , 3 ),
D_PIS(11 , 4 ), D_PIS(11 , 5 ), D_PIS(11 , 6 ), D_PIS(11 , 7 ),
D_PIS(12 , 0 ), D_PIS(12 , 1 ), D_PIS(12 , 2 ),
};
const size_t sppctl_gpio_list_sz = ARRAY_SIZE(sppctl_gpio_list_s);
const unsigned int sppctl_pins_gpio[] = {
D(0 , 0 ), D(0 , 1 ), D(0 , 2 ), D(0 , 3 ), D(0 , 4 ), D(0 , 5 ), D(0 , 6 ), D(0 , 7 ),
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ), D(1 , 3 ), D(1 , 4 ), D(1 , 5 ), D(1 , 6 ), D(1 , 7 ),
D(2 , 0 ), D(2 , 1 ), D(2 , 2 ), D(2 , 3 ), D(2 , 4 ), D(2 , 5 ), D(2 , 6 ), D(2 , 7 ),
D(3 , 0 ), D(3 , 1 ), D(3 , 2 ), D(3 , 3 ), D(3 , 4 ), D(3 , 5 ), D(3 , 6 ), D(3 , 7 ),
D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ), D(4 , 4 ), D(4 , 5 ), D(4 , 6 ), D(4 , 7 ),
D(5 , 0 ), D(5 , 1 ), D(5 , 2 ), D(5 , 3 ), D(5 , 4 ), D(5 , 5 ), D(5 , 6 ), D(5 , 7 ),
D(6 , 0 ), D(6 , 1 ), D(6 , 2 ), D(6 , 3 ), D(6 , 4 ), D(6 , 5 ), D(6 , 6 ), D(6 , 7 ),
D(7 , 0 ), D(7 , 1 ), D(7 , 2 ), D(7 , 3 ), D(7 , 4 ), D(7 , 5 ), D(7 , 6 ), D(7 , 7 ),
D(8 , 0 ), D(8 , 1 ), D(8 , 2 ), D(8 , 3 ), D(8 , 4 ), D(8 , 5 ), D(8 , 6 ), D(8 , 7 ),
D(9 , 0 ), D(9 , 1 ), D(9 , 2 ), D(9 , 3 ), D(9 , 4 ), D(9 , 5 ), D(9 , 6 ), D(9 , 7 ),
D(10 , 0 ), D(10 , 1 ), D(10 , 2 ), D(10 , 3 ), D(10 , 4 ), D(10 , 5 ), D(10 , 6 ), D(10 , 7 ),
D(11 , 0 ), D(11 , 1 ), D(11 , 2 ), D(11 , 3 ), D(11 , 4 ), D(11 , 5 ), D(11 , 6 ), D(11 , 7 ),
D(12 , 0 ), D(12 , 1 ), D(12 , 2 ),
};
const struct pinctrl_pin_desc sppctl_pins_all[] = {
/* gpio and iop only */
P(0 , 0 ), P(0 , 1 ), P(0 , 2 ), P(0 , 3 ), P(0 , 4 ), P(0 , 5 ), P(0 , 6 ), P(0 , 7 ),
/* gpio, iop, muxable */
P(1 , 0 ), P(1 , 1 ), P(1 , 2 ), P(1 , 3 ), P(1 , 4 ), P(1 , 5 ), P(1 , 6 ), P(1 , 7 ),
P(2 , 0 ), P(2 , 1 ), P(2 , 2 ), P(2 , 3 ), P(2 , 4 ), P(2 , 5 ), P(2 , 6 ), P(2 , 7 ),
P(3 , 0 ), P(3 , 1 ), P(3 , 2 ), P(3 , 3 ), P(3 , 4 ), P(3 , 5 ), P(3 , 6 ), P(3 , 7 ),
P(4 , 0 ), P(4 , 1 ), P(4 , 2 ), P(4 , 3 ), P(4 , 4 ), P(4 , 5 ), P(4 , 6 ), P(4 , 7 ),
P(5 , 0 ), P(5 , 1 ), P(5 , 2 ), P(5 , 3 ), P(5 , 4 ), P(5 , 5 ), P(5 , 6 ), P(5 , 7 ),
P(6 , 0 ), P(6 , 1 ), P(6 , 2 ), P(6 , 3 ), P(6 , 4 ), P(6 , 5 ), P(6 , 6 ), P(6 , 7 ),
P(7 , 0 ), P(7 , 1 ), P(7 , 2 ), P(7 , 3 ), P(7 , 4 ), P(7 , 5 ), P(7 , 6 ), P(7 , 7 ),
P(8 , 0 ), P(8 , 1 ), P(8 , 2 ), P(8 , 3 ), P(8 , 4 ), P(8 , 5 ), P(8 , 6 ), P(8 , 7 ),
/* gpio and iop only */
P(9 , 0 ), P(9 , 1 ), P(9 , 2 ), P(9 , 3 ), P(9 , 4 ), P(9 , 5 ), P(9 , 6 ), P(9 , 7 ),
P(10 , 0 ), P(10 , 1 ), P(10 , 2 ), P(10 , 3 ), P(10 , 4 ), P(10 , 5 ), P(10 , 6 ), P(10 , 7 ),
P(11 , 0 ), P(11 , 1 ), P(11 , 2 ), P(11 , 3 ), P(11 , 4 ), P(11 , 5 ), P(11 , 6 ), P(11 , 7 ),
P(12 , 0 ), P(12 , 1 ), P(12 , 2 ),
};
const size_t sppctl_pins_all_sz = ARRAY_SIZE(sppctl_pins_all);
const char * const sppctl_pmux_list_s[] = {
D_PIS(0 , 0 ),
D_PIS(1 , 0 ), D_PIS(1 , 1 ), D_PIS(1 , 2 ), D_PIS(1 , 3 ),
D_PIS(1 , 4 ), D_PIS(1 , 5 ), D_PIS(1 , 6 ), D_PIS(1 , 7 ),
D_PIS(2 , 0 ), D_PIS(2 , 1 ), D_PIS(2 , 2 ), D_PIS(2 , 3 ),
D_PIS(2 , 4 ), D_PIS(2 , 5 ), D_PIS(2 , 6 ), D_PIS(2 , 7 ),
D_PIS(3 , 0 ), D_PIS(3 , 1 ), D_PIS(3 , 2 ), D_PIS(3 , 3 ),
D_PIS(3 , 4 ), D_PIS(3 , 5 ), D_PIS(3 , 6 ), D_PIS(3 , 7 ),
D_PIS(4 , 0 ), D_PIS(4 , 1 ), D_PIS(4 , 2 ), D_PIS(4 , 3 ),
D_PIS(4 , 4 ), D_PIS(4 , 5 ), D_PIS(4 , 6 ), D_PIS(4 , 7 ),
D_PIS(5 , 0 ), D_PIS(5 , 1 ), D_PIS(5 , 2 ), D_PIS(5 , 3 ),
D_PIS(5 , 4 ), D_PIS(5 , 5 ), D_PIS(5 , 6 ), D_PIS(5 , 7 ),
D_PIS(6 , 0 ), D_PIS(6 , 1 ), D_PIS(6 , 2 ), D_PIS(6 , 3 ),
D_PIS(6 , 4 ), D_PIS(6 , 5 ), D_PIS(6 , 6 ), D_PIS(6 , 7 ),
D_PIS(7 , 0 ), D_PIS(7 , 1 ), D_PIS(7 , 2 ), D_PIS(7 , 3 ),
D_PIS(7 , 4 ), D_PIS(7 , 5 ), D_PIS(7 , 6 ), D_PIS(7 , 7 ),
D_PIS(8 , 0 ), D_PIS(8 , 1 ), D_PIS(8 , 2 ), D_PIS(8 , 3 ),
D_PIS(8 , 4 ), D_PIS(8 , 5 ), D_PIS(8 , 6 ), D_PIS(8 , 7 ),
};
const size_t sppctl_pmux_list_sz = ARRAY_SIZE(sppctl_pmux_list_s);
static const unsigned int pins_spif1[] = {
D(10 , 3 ), D(10 , 4 ), D(10 , 6 ), D(10 , 7 ),
};
static const unsigned int pins_spif2[] = {
D(9 , 4 ), D(9 , 6 ), D(9 , 7 ), D(10 , 1 ),
};
static const struct sppctl_grp sp7021grps_spif[] = {
EGRP("SPI_FLASH1" , 1 , pins_spif1),
EGRP("SPI_FLASH2" , 2 , pins_spif2),
};
static const unsigned int pins_spi41[] = {
D(10 , 2 ), D(10 , 5 ),
};
static const unsigned int pins_spi42[] = {
D(9 , 5 ), D(9 , 8 ),
};
static const struct sppctl_grp sp7021grps_spi4[] = {
EGRP("SPI_FLASH_4BIT1" , 1 , pins_spi41),
EGRP("SPI_FLASH_4BIT2" , 2 , pins_spi42),
};
static const unsigned int pins_snan[] = {
D(9 , 4 ), D(9 , 5 ), D(9 , 6 ), D(9 , 7 ), D(10 , 0 ), D(10 , 1 ),
};
static const struct sppctl_grp sp7021grps_snan[] = {
EGRP("SPI_NAND" , 1 , pins_snan),
};
static const unsigned int pins_emmc[] = {
D(9 , 0 ), D(9 , 1 ), D(9 , 2 ), D(9 , 3 ), D(9 , 4 ), D(9 , 5 ),
D(9 , 6 ), D(9 , 7 ), D(10 , 0 ), D(10 , 1 ),
};
static const struct sppctl_grp sp7021grps_emmc[] = {
EGRP("CARD0_EMMC" , 1 , pins_emmc),
};
static const unsigned int pins_sdsd[] = {
D(8 , 1 ), D(8 , 2 ), D(8 , 3 ), D(8 , 4 ), D(8 , 5 ), D(8 , 6 ),
};
static const struct sppctl_grp sp7021grps_sdsd[] = {
EGRP("SD_CARD" , 1 , pins_sdsd),
};
static const unsigned int pins_uar0[] = {
D(11 , 0 ), D(11 , 1 ),
};
static const struct sppctl_grp sp7021grps_uar0[] = {
EGRP("UA0" , 1 , pins_uar0),
};
static const unsigned int pins_adbg1[] = {
D(10 , 2 ), D(10 , 3 ),
};
static const unsigned int pins_adbg2[] = {
D(7 , 1 ), D(7 , 2 ),
};
static const struct sppctl_grp sp7021grps_adbg[] = {
EGRP("ACHIP_DEBUG1" , 1 , pins_adbg1),
EGRP("ACHIP_DEBUG2" , 2 , pins_adbg2),
};
static const unsigned int pins_aua2axi1[] = {
D(2 , 0 ), D(2 , 1 ), D(2 , 2 ),
};
static const unsigned int pins_aua2axi2[] = {
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ),
};
static const struct sppctl_grp sp7021grps_au2x[] = {
EGRP("ACHIP_UA2AXI1" , 1 , pins_aua2axi1),
EGRP("ACHIP_UA2AXI2" , 2 , pins_aua2axi2),
};
static const unsigned int pins_fpga[] = {
D(0 , 2 ), D(0 , 3 ), D(0 , 4 ), D(0 , 5 ), D(0 , 6 ), D(0 , 7 ),
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ), D(1 , 3 ), D(1 , 4 ), D(1 , 5 ),
D(1 , 6 ), D(1 , 7 ), D(2 , 0 ), D(2 , 1 ), D(2 , 2 ), D(2 , 3 ),
D(2 , 4 ), D(2 , 5 ), D(2 , 6 ), D(2 , 7 ), D(3 , 0 ), D(3 , 1 ),
D(3 , 2 ), D(3 , 3 ), D(3 , 4 ), D(3 , 5 ), D(3 , 6 ), D(3 , 7 ),
D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ), D(4 , 4 ), D(4 , 5 ),
D(4 , 6 ), D(4 , 7 ), D(5 , 0 ), D(5 , 1 ), D(5 , 2 ),
};
static const struct sppctl_grp sp7021grps_fpga[] = {
EGRP("FPGA_IFX" , 1 , pins_fpga),
};
static const unsigned int pins_hdmi1[] = {
D(10 , 6 ), D(12 , 2 ), D(12 , 1 ),
};
static const unsigned int pins_hdmi2[] = {
D(8 , 3 ), D(8 , 5 ), D(8 , 6 ),
};
static const unsigned int pins_hdmi3[] = {
D(7 , 4 ), D(7 , 6 ), D(7 , 7 ),
};
static const struct sppctl_grp sp7021grps_hdmi[] = {
EGRP("HDMI_TX1" , 1 , pins_hdmi1),
EGRP("HDMI_TX2" , 2 , pins_hdmi2),
EGRP("HDMI_TX3" , 3 , pins_hdmi3),
};
static const unsigned int pins_eadc[] = {
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ), D(1 , 3 ), D(1 , 4 ), D(1 , 5 ), D(1 , 6 ),
};
static const struct sppctl_grp sp7021grps_eadc[] = {
EGRP("AUD_EXT_ADC_IFX0" , 1 , pins_eadc),
};
static const unsigned int pins_edac[] = {
D(2 , 5 ), D(2 , 6 ), D(2 , 7 ), D(3 , 0 ), D(3 , 1 ), D(3 , 2 ), D(3 , 4 ),
};
static const struct sppctl_grp sp7021grps_edac[] = {
EGRP("AUD_EXT_DAC_IFX0" , 1 , pins_edac),
};
static const unsigned int pins_spdi[] = {
D(2 , 4 ),
};
static const struct sppctl_grp sp7021grps_spdi[] = {
EGRP("AUD_IEC_RX0" , 1 , pins_spdi),
};
static const unsigned int pins_spdo[] = {
D(3 , 6 ),
};
static const struct sppctl_grp sp7021grps_spdo[] = {
EGRP("AUD_IEC_TX0" , 1 , pins_spdo),
};
static const unsigned int pins_tdmt[] = {
D(2 , 5 ), D(2 , 6 ), D(2 , 7 ), D(3 , 0 ), D(3 , 1 ), D(3 , 2 ),
};
static const struct sppctl_grp sp7021grps_tdmt[] = {
EGRP("TDMTX_IFX0" , 1 , pins_tdmt),
};
static const unsigned int pins_tdmr[] = {
D(1 , 7 ), D(2 , 0 ), D(2 , 1 ), D(2 , 2 ),
};
static const struct sppctl_grp sp7021grps_tdmr[] = {
EGRP("TDMRX_IFX0" , 1 , pins_tdmr),
};
static const unsigned int pins_pdmr[] = {
D(1 , 7 ), D(2 , 0 ), D(2 , 1 ), D(2 , 2 ), D(2 , 3 ),
};
static const struct sppctl_grp sp7021grps_pdmr[] = {
EGRP("PDMRX_IFX0" , 1 , pins_pdmr),
};
static const unsigned int pins_pcmt[] = {
D(3 , 7 ), D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ), D(4 , 4 ),
};
static const struct sppctl_grp sp7021grps_pcmt[] = {
EGRP("PCM_IEC_TX" , 1 , pins_pcmt),
};
static const unsigned int pins_lcdi[] = {
D(1 , 4 ), D(1 , 5 ), D(1 , 6 ), D(1 , 7 ), D(2 , 0 ), D(2 , 1 ), D(2 , 2 ), D(2 , 3 ),
D(2 , 4 ), D(2 , 5 ), D(2 , 6 ), D(2 , 7 ), D(3 , 0 ), D(3 , 1 ), D(3 , 2 ), D(3 , 3 ),
D(3 , 4 ), D(3 , 5 ), D(3 , 6 ), D(3 , 7 ), D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ),
D(4 , 4 ), D(4 , 5 ), D(4 , 6 ), D(4 , 7 ),
};
static const struct sppctl_grp sp7021grps_lcdi[] = {
EGRP("LCDIF" , 1 , pins_lcdi),
};
static const unsigned int pins_dvdd[] = {
D(7 , 0 ), D(7 , 1 ), D(7 , 2 ), D(7 , 3 ), D(7 , 4 ), D(7 , 5 ), D(7 , 6 ), D(7 , 7 ),
D(8 , 0 ), D(8 , 1 ), D(8 , 2 ), D(8 , 3 ), D(8 , 4 ), D(8 , 5 ),
};
static const struct sppctl_grp sp7021grps_dvdd[] = {
EGRP("DVD_DSP_DEBUG" , 1 , pins_dvdd),
};
static const unsigned int pins_i2cd[] = {
D(1 , 0 ), D(1 , 1 ),
};
static const struct sppctl_grp sp7021grps_i2cd[] = {
EGRP("I2C_DEBUG" , 1 , pins_i2cd),
};
static const unsigned int pins_i2cs[] = {
D(0 , 0 ), D(0 , 1 ),
};
static const struct sppctl_grp sp7021grps_i2cs[] = {
EGRP("I2C_SLAVE" , 1 , pins_i2cs),
};
static const unsigned int pins_wakp[] = {
D(10 , 5 ),
};
static const struct sppctl_grp sp7021grps_wakp[] = {
EGRP("WAKEUP" , 1 , pins_wakp),
};
static const unsigned int pins_u2ax[] = {
D(2 , 0 ), D(2 , 1 ), D(3 , 0 ), D(3 , 1 ),
};
static const struct sppctl_grp sp7021grps_u2ax[] = {
EGRP("UART2AXI" , 1 , pins_u2ax),
};
static const unsigned int pins_u0ic[] = {
D(0 , 0 ), D(0 , 1 ), D(0 , 4 ), D(0 , 5 ), D(1 , 0 ), D(1 , 1 ),
};
static const struct sppctl_grp sp7021grps_u0ic[] = {
EGRP("USB0_I2C" , 1 , pins_u0ic),
};
static const unsigned int pins_u1ic[] = {
D(0 , 2 ), D(0 , 3 ), D(0 , 6 ), D(0 , 7 ), D(1 , 2 ), D(1 , 3 ),
};
static const struct sppctl_grp sp7021grps_u1ic[] = {
EGRP("USB1_I2C" , 1 , pins_u1ic),
};
static const unsigned int pins_u0ot[] = {
D(11 , 2 ),
};
static const struct sppctl_grp sp7021grps_u0ot[] = {
EGRP("USB0_OTG" , 1 , pins_u0ot),
};
static const unsigned int pins_u1ot[] = {
D(11 , 3 ),
};
static const struct sppctl_grp sp7021grps_u1ot[] = {
EGRP("USB1_OTG" , 1 , pins_u1ot),
};
static const unsigned int pins_uphd[] = {
D(0 , 1 ), D(0 , 2 ), D(0 , 3 ), D(7 , 4 ), D(7 , 5 ), D(7 , 6 ),
D(7 , 7 ), D(8 , 0 ), D(8 , 1 ), D(8 , 2 ), D(8 , 3 ),
D(9 , 7 ), D(10 , 2 ), D(10 , 3 ), D(10 , 4 ),
};
static const struct sppctl_grp sp7021grps_up0d[] = {
EGRP("UPHY0_DEBUG" , 1 , pins_uphd),
};
static const struct sppctl_grp sp7021grps_up1d[] = {
EGRP("UPHY1_DEBUG" , 1 , pins_uphd),
};
static const unsigned int pins_upex[] = {
D(0 , 0 ), D(0 , 1 ), D(0 , 2 ), D(0 , 3 ), D(0 , 4 ), D(0 , 5 ), D(0 , 6 ), D(0 , 7 ),
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ), D(1 , 3 ), D(1 , 4 ), D(1 , 5 ), D(1 , 6 ), D(1 , 7 ),
D(2 , 0 ), D(2 , 1 ), D(2 , 2 ), D(2 , 3 ), D(2 , 4 ), D(2 , 5 ), D(2 , 6 ), D(2 , 7 ),
D(3 , 0 ), D(3 , 1 ), D(3 , 2 ), D(3 , 3 ), D(3 , 4 ), D(3 , 5 ), D(3 , 6 ), D(3 , 7 ),
D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ), D(4 , 4 ), D(4 , 5 ), D(4 , 6 ), D(4 , 7 ),
D(5 , 0 ), D(5 , 1 ), D(5 , 2 ), D(5 , 3 ), D(5 , 4 ), D(5 , 5 ), D(5 , 6 ), D(5 , 7 ),
D(6 , 0 ), D(6 , 1 ), D(6 , 2 ), D(6 , 3 ), D(6 , 4 ), D(6 , 5 ), D(6 , 6 ), D(6 , 7 ),
D(7 , 0 ), D(7 , 1 ), D(7 , 2 ), D(7 , 3 ), D(7 , 4 ), D(7 , 5 ), D(7 , 6 ), D(7 , 7 ),
D(8 , 0 ), D(8 , 1 ), D(8 , 2 ), D(8 , 3 ), D(8 , 4 ), D(8 , 5 ), D(8 , 6 ), D(8 , 7 ),
D(9 , 0 ), D(9 , 1 ), D(9 , 2 ), D(9 , 3 ), D(9 , 4 ), D(9 , 5 ), D(9 , 6 ), D(9 , 7 ),
D(10 , 0 ), D(10 , 1 ), D(10 , 2 ), D(10 , 3 ), D(10 , 4 ), D(10 , 5 ), D(10 , 6 ), D(10 , 7 ),
};
static const struct sppctl_grp sp7021grps_upex[] = {
EGRP("UPHY0_EXT" , 1 , pins_upex),
};
static const unsigned int pins_prp1[] = {
D(0 , 6 ), D(0 , 7 ),
D(1 , 0 ), D(1 , 1 ), D(1 , 2 ), D(1 , 3 ), D(1 , 4 ), D(1 , 5 ), D(1 , 6 ), D(1 , 7 ),
D(2 , 1 ), D(2 , 2 ), D(2 , 3 ), D(2 , 4 ), D(2 , 5 ), D(2 , 6 ), D(2 , 7 ),
D(3 , 0 ), D(3 , 1 ), D(3 , 2 ),
};
static const unsigned int pins_prp2[] = {
D(3 , 4 ), D(3 , 6 ), D(3 , 7 ),
D(4 , 0 ), D(4 , 1 ), D(4 , 2 ), D(4 , 3 ), D(4 , 4 ), D(4 , 5 ), D(4 , 6 ), D(4 , 7 ),
D(5 , 0 ), D(5 , 1 ), D(5 , 2 ), D(5 , 3 ), D(5 , 4 ), D(5 , 5 ), D(5 , 6 ), D(5 , 7 ),
D(6 , 4 ),
};
static const struct sppctl_grp sp7021grps_prbp[] = {
EGRP("PROBE_PORT1" , 1 , pins_prp1),
EGRP("PROBE_PORT2" , 2 , pins_prp2),
};
/*
* Due to compatible reason, the first valid item should start at the third
* position of the array. Please keep the first two items of the table
* no use (dummy).
*/
const struct sppctl_func sppctl_list_funcs[] = {
FNCN("" , pinmux_type_fpmx, 0 x00, 0 , 0 ),
FNCN("" , pinmux_type_fpmx, 0 x00, 0 , 0 ),
FNCN("L2SW_CLK_OUT" , pinmux_type_fpmx, 0 x00, 0 , 7 ),
FNCN("L2SW_MAC_SMI_MDC" , pinmux_type_fpmx, 0 x00, 8 , 7 ),
FNCN("L2SW_LED_FLASH0" , pinmux_type_fpmx, 0 x01, 0 , 7 ),
FNCN("L2SW_LED_FLASH1" , pinmux_type_fpmx, 0 x01, 8 , 7 ),
FNCN("L2SW_LED_ON0" , pinmux_type_fpmx, 0 x02, 0 , 7 ),
FNCN("L2SW_LED_ON1" , pinmux_type_fpmx, 0 x02, 8 , 7 ),
FNCN("L2SW_MAC_SMI_MDIO" , pinmux_type_fpmx, 0 x03, 0 , 7 ),
FNCN("L2SW_P0_MAC_RMII_TXEN" , pinmux_type_fpmx, 0 x03, 8 , 7 ),
FNCN("L2SW_P0_MAC_RMII_TXD0" , pinmux_type_fpmx, 0 x04, 0 , 7 ),
FNCN("L2SW_P0_MAC_RMII_TXD1" , pinmux_type_fpmx, 0 x04, 8 , 7 ),
FNCN("L2SW_P0_MAC_RMII_CRSDV" , pinmux_type_fpmx, 0 x05, 0 , 7 ),
FNCN("L2SW_P0_MAC_RMII_RXD0" , pinmux_type_fpmx, 0 x05, 8 , 7 ),
FNCN("L2SW_P0_MAC_RMII_RXD1" , pinmux_type_fpmx, 0 x06, 0 , 7 ),
FNCN("L2SW_P0_MAC_RMII_RXER" , pinmux_type_fpmx, 0 x06, 8 , 7 ),
FNCN("L2SW_P1_MAC_RMII_TXEN" , pinmux_type_fpmx, 0 x07, 0 , 7 ),
FNCN("L2SW_P1_MAC_RMII_TXD0" , pinmux_type_fpmx, 0 x07, 8 , 7 ),
FNCN("L2SW_P1_MAC_RMII_TXD1" , pinmux_type_fpmx, 0 x08, 0 , 7 ),
FNCN("L2SW_P1_MAC_RMII_CRSDV" , pinmux_type_fpmx, 0 x08, 8 , 7 ),
FNCN("L2SW_P1_MAC_RMII_RXD0" , pinmux_type_fpmx, 0 x09, 0 , 7 ),
FNCN("L2SW_P1_MAC_RMII_RXD1" , pinmux_type_fpmx, 0 x09, 8 , 7 ),
FNCN("L2SW_P1_MAC_RMII_RXER" , pinmux_type_fpmx, 0 x0A, 0 , 7 ),
FNCN("DAISY_MODE" , pinmux_type_fpmx, 0 x0A, 8 , 7 ),
FNCN("SDIO_CLK" , pinmux_type_fpmx, 0 x0B, 0 , 7 ), /* 1x SDIO */
FNCN("SDIO_CMD" , pinmux_type_fpmx, 0 x0B, 8 , 7 ),
FNCN("SDIO_D0" , pinmux_type_fpmx, 0 x0C, 0 , 7 ),
FNCN("SDIO_D1" , pinmux_type_fpmx, 0 x0C, 8 , 7 ),
FNCN("SDIO_D2" , pinmux_type_fpmx, 0 x0D, 0 , 7 ),
FNCN("SDIO_D3" , pinmux_type_fpmx, 0 x0D, 8 , 7 ),
FNCN("PWM0" , pinmux_type_fpmx, 0 x0E, 0 , 7 ), /* 8x PWM */
FNCN("PWM1" , pinmux_type_fpmx, 0 x0E, 8 , 7 ),
FNCN("PWM2" , pinmux_type_fpmx, 0 x0F, 0 , 7 ),
FNCN("PWM3" , pinmux_type_fpmx, 0 x0F, 8 , 7 ),
FNCN("PWM4" , pinmux_type_fpmx, 0 x10, 0 , 7 ),
FNCN("PWM5" , pinmux_type_fpmx, 0 x10, 8 , 7 ),
FNCN("PWM6" , pinmux_type_fpmx, 0 x11, 0 , 7 ),
FNCN("PWM7" , pinmux_type_fpmx, 0 x11, 8 , 7 ),
FNCN("ICM0_D" , pinmux_type_fpmx, 0 x12, 0 , 7 ), /* 4x Input captures */
FNCN("ICM1_D" , pinmux_type_fpmx, 0 x12, 8 , 7 ),
FNCN("ICM2_D" , pinmux_type_fpmx, 0 x13, 0 , 7 ),
FNCN("ICM3_D" , pinmux_type_fpmx, 0 x13, 8 , 7 ),
FNCN("ICM0_CLK" , pinmux_type_fpmx, 0 x14, 0 , 7 ),
FNCN("ICM1_CLK" , pinmux_type_fpmx, 0 x14, 8 , 7 ),
FNCN("ICM2_CLK" , pinmux_type_fpmx, 0 x15, 0 , 7 ),
FNCN("ICM3_CLK" , pinmux_type_fpmx, 0 x15, 8 , 7 ),
FNCN("SPIM0_INT" , pinmux_type_fpmx, 0 x16, 0 , 7 ), /* 4x SPI masters */
FNCN("SPIM0_CLK" , pinmux_type_fpmx, 0 x16, 8 , 7 ),
FNCN("SPIM0_EN" , pinmux_type_fpmx, 0 x17, 0 , 7 ),
FNCN("SPIM0_DO" , pinmux_type_fpmx, 0 x17, 8 , 7 ),
FNCN("SPIM0_DI" , pinmux_type_fpmx, 0 x18, 0 , 7 ),
FNCN("SPIM1_INT" , pinmux_type_fpmx, 0 x18, 8 , 7 ),
FNCN("SPIM1_CLK" , pinmux_type_fpmx, 0 x19, 0 , 7 ),
FNCN("SPIM1_EN" , pinmux_type_fpmx, 0 x19, 8 , 7 ),
FNCN("SPIM1_DO" , pinmux_type_fpmx, 0 x1A, 0 , 7 ),
FNCN("SPIM1_DI" , pinmux_type_fpmx, 0 x1A, 8 , 7 ),
FNCN("SPIM2_INT" , pinmux_type_fpmx, 0 x1B, 0 , 7 ),
FNCN("SPIM2_CLK" , pinmux_type_fpmx, 0 x1B, 8 , 7 ),
FNCN("SPIM2_EN" , pinmux_type_fpmx, 0 x1C, 0 , 7 ),
FNCN("SPIM2_DO" , pinmux_type_fpmx, 0 x1C, 8 , 7 ),
FNCN("SPIM2_DI" , pinmux_type_fpmx, 0 x1D, 0 , 7 ),
FNCN("SPIM3_INT" , pinmux_type_fpmx, 0 x1D, 8 , 7 ),
FNCN("SPIM3_CLK" , pinmux_type_fpmx, 0 x1E, 0 , 7 ),
FNCN("SPIM3_EN" , pinmux_type_fpmx, 0 x1E, 8 , 7 ),
FNCN("SPIM3_DO" , pinmux_type_fpmx, 0 x1F, 0 , 7 ),
FNCN("SPIM3_DI" , pinmux_type_fpmx, 0 x1F, 8 , 7 ),
FNCN("SPI0S_INT" , pinmux_type_fpmx, 0 x20, 0 , 7 ), /* 4x SPI slaves */
FNCN("SPI0S_CLK" , pinmux_type_fpmx, 0 x20, 8 , 7 ),
FNCN("SPI0S_EN" , pinmux_type_fpmx, 0 x21, 0 , 7 ),
FNCN("SPI0S_DO" , pinmux_type_fpmx, 0 x21, 8 , 7 ),
FNCN("SPI0S_DI" , pinmux_type_fpmx, 0 x22, 0 , 7 ),
FNCN("SPI1S_INT" , pinmux_type_fpmx, 0 x22, 8 , 7 ),
FNCN("SPI1S_CLK" , pinmux_type_fpmx, 0 x23, 0 , 7 ),
FNCN("SPI1S_EN" , pinmux_type_fpmx, 0 x23, 8 , 7 ),
FNCN("SPI1S_DO" , pinmux_type_fpmx, 0 x24, 0 , 7 ),
FNCN("SPI1S_DI" , pinmux_type_fpmx, 0 x24, 8 , 7 ),
FNCN("SPI2S_INT" , pinmux_type_fpmx, 0 x25, 0 , 7 ),
FNCN("SPI2S_CLK" , pinmux_type_fpmx, 0 x25, 8 , 7 ),
FNCN("SPI2S_EN" , pinmux_type_fpmx, 0 x26, 0 , 7 ),
FNCN("SPI2S_DO" , pinmux_type_fpmx, 0 x26, 8 , 7 ),
FNCN("SPI2S_DI" , pinmux_type_fpmx, 0 x27, 0 , 7 ),
FNCN("SPI3S_INT" , pinmux_type_fpmx, 0 x27, 8 , 7 ),
FNCN("SPI3S_CLK" , pinmux_type_fpmx, 0 x28, 0 , 7 ),
FNCN("SPI3S_EN" , pinmux_type_fpmx, 0 x28, 8 , 7 ),
FNCN("SPI3S_DO" , pinmux_type_fpmx, 0 x29, 0 , 7 ),
FNCN("SPI3S_DI" , pinmux_type_fpmx, 0 x29, 8 , 7 ),
FNCN("I2CM0_CLK" , pinmux_type_fpmx, 0 x2A, 0 , 7 ), /* 4x I2C masters */
FNCN("I2CM0_DAT" , pinmux_type_fpmx, 0 x2A, 8 , 7 ),
FNCN("I2CM1_CLK" , pinmux_type_fpmx, 0 x2B, 0 , 7 ),
FNCN("I2CM1_DAT" , pinmux_type_fpmx, 0 x2B, 8 , 7 ),
FNCN("I2CM2_CLK" , pinmux_type_fpmx, 0 x2C, 0 , 7 ),
FNCN("I2CM2_DAT" , pinmux_type_fpmx, 0 x2C, 8 , 7 ),
FNCN("I2CM3_CLK" , pinmux_type_fpmx, 0 x2D, 0 , 7 ),
FNCN("I2CM3_DAT" , pinmux_type_fpmx, 0 x2D, 8 , 7 ),
FNCN("UA1_TX" , pinmux_type_fpmx, 0 x2E, 0 , 7 ), /* 4x UARTS */
FNCN("UA1_RX" , pinmux_type_fpmx, 0 x2E, 8 , 7 ),
FNCN("UA1_CTS" , pinmux_type_fpmx, 0 x2F, 0 , 7 ),
FNCN("UA1_RTS" , pinmux_type_fpmx, 0 x2F, 8 , 7 ),
FNCN("UA2_TX" , pinmux_type_fpmx, 0 x30, 0 , 7 ),
FNCN("UA2_RX" , pinmux_type_fpmx, 0 x30, 8 , 7 ),
FNCN("UA2_CTS" , pinmux_type_fpmx, 0 x31, 0 , 7 ),
FNCN("UA2_RTS" , pinmux_type_fpmx, 0 x31, 8 , 7 ),
FNCN("UA3_TX" , pinmux_type_fpmx, 0 x32, 0 , 7 ),
FNCN("UA3_RX" , pinmux_type_fpmx, 0 x32, 8 , 7 ),
FNCN("UA3_CTS" , pinmux_type_fpmx, 0 x33, 0 , 7 ),
FNCN("UA3_RTS" , pinmux_type_fpmx, 0 x33, 8 , 7 ),
FNCN("UA4_TX" , pinmux_type_fpmx, 0 x34, 0 , 7 ),
FNCN("UA4_RX" , pinmux_type_fpmx, 0 x34, 8 , 7 ),
FNCN("UA4_CTS" , pinmux_type_fpmx, 0 x35, 0 , 7 ),
FNCN("UA4_RTS" , pinmux_type_fpmx, 0 x35, 8 , 7 ),
FNCN("TIMER0_INT" , pinmux_type_fpmx, 0 x36, 0 , 7 ), /* 4x timer int. */
FNCN("TIMER1_INT" , pinmux_type_fpmx, 0 x36, 8 , 7 ),
FNCN("TIMER2_INT" , pinmux_type_fpmx, 0 x37, 0 , 7 ),
FNCN("TIMER3_INT" , pinmux_type_fpmx, 0 x37, 8 , 7 ),
FNCN("GPIO_INT0" , pinmux_type_fpmx, 0 x38, 0 , 7 ), /* 8x GPIO int. */
FNCN("GPIO_INT1" , pinmux_type_fpmx, 0 x38, 8 , 7 ),
FNCN("GPIO_INT2" , pinmux_type_fpmx, 0 x39, 0 , 7 ),
FNCN("GPIO_INT3" , pinmux_type_fpmx, 0 x39, 8 , 7 ),
FNCN("GPIO_INT4" , pinmux_type_fpmx, 0 x3A, 0 , 7 ),
FNCN("GPIO_INT5" , pinmux_type_fpmx, 0 x3A, 8 , 7 ),
FNCN("GPIO_INT6" , pinmux_type_fpmx, 0 x3B, 0 , 7 ),
FNCN("GPIO_INT7" , pinmux_type_fpmx, 0 x3B, 8 , 7 ),
/* MOON1 register */
FNCE("SPI_FLASH" , pinmux_type_grp, 0 x01, 0 , 2 , sp7021grps_spif),
FNCE("SPI_FLASH_4BIT" , pinmux_type_grp, 0 x01, 2 , 2 , sp7021grps_spi4),
FNCE("SPI_NAND" , pinmux_type_grp, 0 x01, 4 , 1 , sp7021grps_snan),
FNCE("CARD0_EMMC" , pinmux_type_grp, 0 x01, 5 , 1 , sp7021grps_emmc),
FNCE("SD_CARD" , pinmux_type_grp, 0 x01, 6 , 1 , sp7021grps_sdsd),
FNCE("UA0" , pinmux_type_grp, 0 x01, 7 , 1 , sp7021grps_uar0),
FNCE("ACHIP_DEBUG" , pinmux_type_grp, 0 x01, 8 , 2 , sp7021grps_adbg),
FNCE("ACHIP_UA2AXI" , pinmux_type_grp, 0 x01, 10 , 2 , sp7021grps_au2x),
FNCE("FPGA_IFX" , pinmux_type_grp, 0 x01, 12 , 1 , sp7021grps_fpga),
FNCE("HDMI_TX" , pinmux_type_grp, 0 x01, 13 , 2 , sp7021grps_hdmi),
FNCE("AUD_EXT_ADC_IFX0" , pinmux_type_grp, 0 x01, 15 , 1 , sp7021grps_eadc),
FNCE("AUD_EXT_DAC_IFX0" , pinmux_type_grp, 0 x02, 0 , 1 , sp7021grps_edac),
FNCE("SPDIF_RX" , pinmux_type_grp, 0 x02, 2 , 1 , sp7021grps_spdi),
FNCE("SPDIF_TX" , pinmux_type_grp, 0 x02, 3 , 1 , sp7021grps_spdo),
FNCE("TDMTX_IFX0" , pinmux_type_grp, 0 x02, 4 , 1 , sp7021grps_tdmt),
FNCE("TDMRX_IFX0" , pinmux_type_grp, 0 x02, 5 , 1 , sp7021grps_tdmr),
FNCE("PDMRX_IFX0" , pinmux_type_grp, 0 x02, 6 , 1 , sp7021grps_pdmr),
FNCE("PCM_IEC_TX" , pinmux_type_grp, 0 x02, 7 , 1 , sp7021grps_pcmt),
FNCE("LCDIF" , pinmux_type_grp, 0 x04, 6 , 1 , sp7021grps_lcdi),
FNCE("DVD_DSP_DEBUG" , pinmux_type_grp, 0 x02, 8 , 1 , sp7021grps_dvdd),
FNCE("I2C_DEBUG" , pinmux_type_grp, 0 x02, 9 , 1 , sp7021grps_i2cd),
FNCE("I2C_SLAVE" , pinmux_type_grp, 0 x02, 10 , 1 , sp7021grps_i2cs),
FNCE("WAKEUP" , pinmux_type_grp, 0 x02, 11 , 1 , sp7021grps_wakp),
FNCE("UART2AXI" , pinmux_type_grp, 0 x02, 12 , 2 , sp7021grps_u2ax),
FNCE("USB0_I2C" , pinmux_type_grp, 0 x02, 14 , 2 , sp7021grps_u0ic),
FNCE("USB1_I2C" , pinmux_type_grp, 0 x03, 0 , 2 , sp7021grps_u1ic),
FNCE("USB0_OTG" , pinmux_type_grp, 0 x03, 2 , 1 , sp7021grps_u0ot),
FNCE("USB1_OTG" , pinmux_type_grp, 0 x03, 3 , 1 , sp7021grps_u1ot),
FNCE("UPHY0_DEBUG" , pinmux_type_grp, 0 x03, 4 , 1 , sp7021grps_up0d),
FNCE("UPHY1_DEBUG" , pinmux_type_grp, 0 x03, 5 , 1 , sp7021grps_up1d),
FNCE("UPHY0_EXT" , pinmux_type_grp, 0 x03, 6 , 1 , sp7021grps_upex),
FNCE("PROBE_PORT" , pinmux_type_grp, 0 x03, 7 , 2 , sp7021grps_prbp),
};
const size_t sppctl_list_funcs_sz = ARRAY_SIZE(sppctl_list_funcs);
Messung V0.5 in Prozent C=94 H=98 G=95