1*83d290c5STom Rini // SPDX-License-Identifier: GPL-2.0+ 20edb3a8eSStephen Warren /* 30edb3a8eSStephen Warren * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved. 40edb3a8eSStephen Warren */ 50edb3a8eSStephen Warren 60edb3a8eSStephen Warren #include <common.h> 70edb3a8eSStephen Warren #include <asm/io.h> 80edb3a8eSStephen Warren #include <asm/arch/pinmux.h> 90edb3a8eSStephen Warren 100edb3a8eSStephen Warren #define PIN(pin, f0, f1, f2, f3) \ 110edb3a8eSStephen Warren { \ 120edb3a8eSStephen Warren .funcs = { \ 130edb3a8eSStephen Warren PMUX_FUNC_##f0, \ 140edb3a8eSStephen Warren PMUX_FUNC_##f1, \ 150edb3a8eSStephen Warren PMUX_FUNC_##f2, \ 160edb3a8eSStephen Warren PMUX_FUNC_##f3, \ 170edb3a8eSStephen Warren }, \ 180edb3a8eSStephen Warren } 190edb3a8eSStephen Warren 200edb3a8eSStephen Warren #define PIN_RESERVED {} 210edb3a8eSStephen Warren 220edb3a8eSStephen Warren static const struct pmux_pingrp_desc tegra210_pingroups[] = { 230edb3a8eSStephen Warren /* pin, f0, f1, f2, f3 */ 240edb3a8eSStephen Warren /* Offset 0x3000 */ 250edb3a8eSStephen Warren PIN(SDMMC1_CLK_PM0, SDMMC1, RSVD1, RSVD2, RSVD3), 260edb3a8eSStephen Warren PIN(SDMMC1_CMD_PM1, SDMMC1, SPI3, RSVD2, RSVD3), 270edb3a8eSStephen Warren PIN(SDMMC1_DAT3_PM2, SDMMC1, SPI3, RSVD2, RSVD3), 280edb3a8eSStephen Warren PIN(SDMMC1_DAT2_PM3, SDMMC1, SPI3, RSVD2, RSVD3), 290edb3a8eSStephen Warren PIN(SDMMC1_DAT1_PM4, SDMMC1, SPI3, RSVD2, RSVD3), 300edb3a8eSStephen Warren PIN(SDMMC1_DAT0_PM5, SDMMC1, RSVD1, RSVD2, RSVD3), 310edb3a8eSStephen Warren PIN_RESERVED, 320edb3a8eSStephen Warren /* Offset 0x301c */ 330edb3a8eSStephen Warren PIN(SDMMC3_CLK_PP0, SDMMC3, RSVD1, RSVD2, RSVD3), 340edb3a8eSStephen Warren PIN(SDMMC3_CMD_PP1, SDMMC3, RSVD1, RSVD2, RSVD3), 350edb3a8eSStephen Warren PIN(SDMMC3_DAT0_PP5, SDMMC3, RSVD1, RSVD2, RSVD3), 360edb3a8eSStephen Warren PIN(SDMMC3_DAT1_PP4, SDMMC3, RSVD1, RSVD2, RSVD3), 370edb3a8eSStephen Warren PIN(SDMMC3_DAT2_PP3, SDMMC3, RSVD1, RSVD2, RSVD3), 380edb3a8eSStephen Warren PIN(SDMMC3_DAT3_PP2, SDMMC3, RSVD1, RSVD2, RSVD3), 390edb3a8eSStephen Warren PIN_RESERVED, 400edb3a8eSStephen Warren /* Offset 0x3038 */ 410edb3a8eSStephen Warren PIN(PEX_L0_RST_N_PA0, PE0, RSVD1, RSVD2, RSVD3), 420edb3a8eSStephen Warren PIN(PEX_L0_CLKREQ_N_PA1, PE0, RSVD1, RSVD2, RSVD3), 430edb3a8eSStephen Warren PIN(PEX_WAKE_N_PA2, PE, RSVD1, RSVD2, RSVD3), 440edb3a8eSStephen Warren PIN(PEX_L1_RST_N_PA3, PE1, RSVD1, RSVD2, RSVD3), 450edb3a8eSStephen Warren PIN(PEX_L1_CLKREQ_N_PA4, PE1, RSVD1, RSVD2, RSVD3), 460edb3a8eSStephen Warren PIN(SATA_LED_ACTIVE_PA5, SATA, RSVD1, RSVD2, RSVD3), 470edb3a8eSStephen Warren PIN(SPI1_MOSI_PC0, SPI1, RSVD1, RSVD2, RSVD3), 480edb3a8eSStephen Warren PIN(SPI1_MISO_PC1, SPI1, RSVD1, RSVD2, RSVD3), 490edb3a8eSStephen Warren PIN(SPI1_SCK_PC2, SPI1, RSVD1, RSVD2, RSVD3), 500edb3a8eSStephen Warren PIN(SPI1_CS0_PC3, SPI1, RSVD1, RSVD2, RSVD3), 510edb3a8eSStephen Warren PIN(SPI1_CS1_PC4, SPI1, RSVD1, RSVD2, RSVD3), 520edb3a8eSStephen Warren PIN(SPI2_MOSI_PB4, SPI2, DTV, RSVD2, RSVD3), 530edb3a8eSStephen Warren PIN(SPI2_MISO_PB5, SPI2, DTV, RSVD2, RSVD3), 540edb3a8eSStephen Warren PIN(SPI2_SCK_PB6, SPI2, DTV, RSVD2, RSVD3), 550edb3a8eSStephen Warren PIN(SPI2_CS0_PB7, SPI2, DTV, RSVD2, RSVD3), 560edb3a8eSStephen Warren PIN(SPI2_CS1_PDD0, SPI2, RSVD1, RSVD2, RSVD3), 570edb3a8eSStephen Warren PIN(SPI4_MOSI_PC7, SPI4, RSVD1, RSVD2, RSVD3), 580edb3a8eSStephen Warren PIN(SPI4_MISO_PD0, SPI4, RSVD1, RSVD2, RSVD3), 590edb3a8eSStephen Warren PIN(SPI4_SCK_PC5, SPI4, RSVD1, RSVD2, RSVD3), 600edb3a8eSStephen Warren PIN(SPI4_CS0_PC6, SPI4, RSVD1, RSVD2, RSVD3), 610edb3a8eSStephen Warren PIN(QSPI_SCK_PEE0, QSPI, RSVD1, RSVD2, RSVD3), 620edb3a8eSStephen Warren PIN(QSPI_CS_N_PEE1, QSPI, RSVD1, RSVD2, RSVD3), 630edb3a8eSStephen Warren PIN(QSPI_IO0_PEE2, QSPI, RSVD1, RSVD2, RSVD3), 640edb3a8eSStephen Warren PIN(QSPI_IO1_PEE3, QSPI, RSVD1, RSVD2, RSVD3), 650edb3a8eSStephen Warren PIN(QSPI_IO2_PEE4, QSPI, RSVD1, RSVD2, RSVD3), 660edb3a8eSStephen Warren PIN(QSPI_IO3_PEE5, QSPI, RSVD1, RSVD2, RSVD3), 670edb3a8eSStephen Warren PIN_RESERVED, 680edb3a8eSStephen Warren /* Offset 0x30a4 */ 690edb3a8eSStephen Warren PIN(DMIC1_CLK_PE0, DMIC1, I2S3, RSVD2, RSVD3), 700edb3a8eSStephen Warren PIN(DMIC1_DAT_PE1, DMIC1, I2S3, RSVD2, RSVD3), 710edb3a8eSStephen Warren PIN(DMIC2_CLK_PE2, DMIC2, I2S3, RSVD2, RSVD3), 720edb3a8eSStephen Warren PIN(DMIC2_DAT_PE3, DMIC2, I2S3, RSVD2, RSVD3), 730edb3a8eSStephen Warren PIN(DMIC3_CLK_PE4, DMIC3, I2S5A, RSVD2, RSVD3), 740edb3a8eSStephen Warren PIN(DMIC3_DAT_PE5, DMIC3, I2S5A, RSVD2, RSVD3), 750edb3a8eSStephen Warren PIN(GEN1_I2C_SCL_PJ1, I2C1, RSVD1, RSVD2, RSVD3), 760edb3a8eSStephen Warren PIN(GEN1_I2C_SDA_PJ0, I2C1, RSVD1, RSVD2, RSVD3), 770edb3a8eSStephen Warren PIN(GEN2_I2C_SCL_PJ2, I2C2, RSVD1, RSVD2, RSVD3), 780edb3a8eSStephen Warren PIN(GEN2_I2C_SDA_PJ3, I2C2, RSVD1, RSVD2, RSVD3), 790edb3a8eSStephen Warren PIN(GEN3_I2C_SCL_PF0, I2C3, RSVD1, RSVD2, RSVD3), 800edb3a8eSStephen Warren PIN(GEN3_I2C_SDA_PF1, I2C3, RSVD1, RSVD2, RSVD3), 810edb3a8eSStephen Warren PIN(CAM_I2C_SCL_PS2, I2C3, I2CVI, RSVD2, RSVD3), 820edb3a8eSStephen Warren PIN(CAM_I2C_SDA_PS3, I2C3, I2CVI, RSVD2, RSVD3), 830edb3a8eSStephen Warren PIN(PWR_I2C_SCL_PY3, I2CPMU, RSVD1, RSVD2, RSVD3), 840edb3a8eSStephen Warren PIN(PWR_I2C_SDA_PY4, I2CPMU, RSVD1, RSVD2, RSVD3), 850edb3a8eSStephen Warren PIN(UART1_TX_PU0, UARTA, RSVD1, RSVD2, RSVD3), 860edb3a8eSStephen Warren PIN(UART1_RX_PU1, UARTA, RSVD1, RSVD2, RSVD3), 870edb3a8eSStephen Warren PIN(UART1_RTS_PU2, UARTA, RSVD1, RSVD2, RSVD3), 880edb3a8eSStephen Warren PIN(UART1_CTS_PU3, UARTA, RSVD1, RSVD2, RSVD3), 890edb3a8eSStephen Warren PIN(UART2_TX_PG0, UARTB, I2S4A, SPDIF, UART), 900edb3a8eSStephen Warren PIN(UART2_RX_PG1, UARTB, I2S4A, SPDIF, UART), 910edb3a8eSStephen Warren PIN(UART2_RTS_PG2, UARTB, I2S4A, RSVD2, UART), 920edb3a8eSStephen Warren PIN(UART2_CTS_PG3, UARTB, I2S4A, RSVD2, UART), 930edb3a8eSStephen Warren PIN(UART3_TX_PD1, UARTC, SPI4, RSVD2, RSVD3), 940edb3a8eSStephen Warren PIN(UART3_RX_PD2, UARTC, SPI4, RSVD2, RSVD3), 950edb3a8eSStephen Warren PIN(UART3_RTS_PD3, UARTC, SPI4, RSVD2, RSVD3), 960edb3a8eSStephen Warren PIN(UART3_CTS_PD4, UARTC, SPI4, RSVD2, RSVD3), 970edb3a8eSStephen Warren PIN(UART4_TX_PI4, UARTD, UART, RSVD2, RSVD3), 980edb3a8eSStephen Warren PIN(UART4_RX_PI5, UARTD, UART, RSVD2, RSVD3), 990edb3a8eSStephen Warren PIN(UART4_RTS_PI6, UARTD, UART, RSVD2, RSVD3), 1000edb3a8eSStephen Warren PIN(UART4_CTS_PI7, UARTD, UART, RSVD2, RSVD3), 1010edb3a8eSStephen Warren PIN(DAP1_FS_PB0, I2S1, RSVD1, RSVD2, RSVD3), 1020edb3a8eSStephen Warren PIN(DAP1_DIN_PB1, I2S1, RSVD1, RSVD2, RSVD3), 1030edb3a8eSStephen Warren PIN(DAP1_DOUT_PB2, I2S1, RSVD1, RSVD2, RSVD3), 1040edb3a8eSStephen Warren PIN(DAP1_SCLK_PB3, I2S1, RSVD1, RSVD2, RSVD3), 1050edb3a8eSStephen Warren PIN(DAP2_FS_PAA0, I2S2, RSVD1, RSVD2, RSVD3), 1060edb3a8eSStephen Warren PIN(DAP2_DIN_PAA2, I2S2, RSVD1, RSVD2, RSVD3), 1070edb3a8eSStephen Warren PIN(DAP2_DOUT_PAA3, I2S2, RSVD1, RSVD2, RSVD3), 1080edb3a8eSStephen Warren PIN(DAP2_SCLK_PAA1, I2S2, RSVD1, RSVD2, RSVD3), 1090edb3a8eSStephen Warren PIN(DAP4_FS_PJ4, I2S4B, RSVD1, RSVD2, RSVD3), 1100edb3a8eSStephen Warren PIN(DAP4_DIN_PJ5, I2S4B, RSVD1, RSVD2, RSVD3), 1110edb3a8eSStephen Warren PIN(DAP4_DOUT_PJ6, I2S4B, RSVD1, RSVD2, RSVD3), 1120edb3a8eSStephen Warren PIN(DAP4_SCLK_PJ7, I2S4B, RSVD1, RSVD2, RSVD3), 1130edb3a8eSStephen Warren PIN(CAM1_MCLK_PS0, EXTPERIPH3, RSVD1, RSVD2, RSVD3), 1140edb3a8eSStephen Warren PIN(CAM2_MCLK_PS1, EXTPERIPH3, RSVD1, RSVD2, RSVD3), 1150edb3a8eSStephen Warren PIN(JTAG_RTCK, JTAG, RSVD1, RSVD2, RSVD3), 1160edb3a8eSStephen Warren PIN(CLK_32K_IN, CLK, RSVD1, RSVD2, RSVD3), 1170edb3a8eSStephen Warren PIN(CLK_32K_OUT_PY5, SOC, BLINK, RSVD2, RSVD3), 1180edb3a8eSStephen Warren PIN(BATT_BCL, BCL, RSVD1, RSVD2, RSVD3), 1190edb3a8eSStephen Warren PIN(CLK_REQ, SYS, RSVD1, RSVD2, RSVD3), 1200edb3a8eSStephen Warren PIN(CPU_PWR_REQ, CPU, RSVD1, RSVD2, RSVD3), 1210edb3a8eSStephen Warren PIN(PWR_INT_N, PMI, RSVD1, RSVD2, RSVD3), 1220edb3a8eSStephen Warren PIN(SHUTDOWN, SHUTDOWN, RSVD1, RSVD2, RSVD3), 1230edb3a8eSStephen Warren PIN(CORE_PWR_REQ, CORE, RSVD1, RSVD2, RSVD3), 1240edb3a8eSStephen Warren PIN(AUD_MCLK_PBB0, AUD, RSVD1, RSVD2, RSVD3), 1250edb3a8eSStephen Warren PIN(DVFS_PWM_PBB1, RSVD0, CLDVFS, SPI3, RSVD3), 1260edb3a8eSStephen Warren PIN(DVFS_CLK_PBB2, RSVD0, CLDVFS, SPI3, RSVD3), 1270edb3a8eSStephen Warren PIN(GPIO_X1_AUD_PBB3, RSVD0, RSVD1, SPI3, RSVD3), 1280edb3a8eSStephen Warren PIN(GPIO_X3_AUD_PBB4, RSVD0, RSVD1, SPI3, RSVD3), 1290edb3a8eSStephen Warren PIN(PCC7, RSVD0, RSVD1, RSVD2, RSVD3), 1300edb3a8eSStephen Warren PIN(HDMI_CEC_PCC0, CEC, RSVD1, RSVD2, RSVD3), 1310edb3a8eSStephen Warren PIN(HDMI_INT_DP_HPD_PCC1, DP, RSVD1, RSVD2, RSVD3), 1320edb3a8eSStephen Warren PIN(SPDIF_OUT_PCC2, SPDIF, RSVD1, RSVD2, RSVD3), 1330edb3a8eSStephen Warren PIN(SPDIF_IN_PCC3, SPDIF, RSVD1, RSVD2, RSVD3), 1340edb3a8eSStephen Warren PIN(USB_VBUS_EN0_PCC4, USB, RSVD1, RSVD2, RSVD3), 1350edb3a8eSStephen Warren PIN(USB_VBUS_EN1_PCC5, USB, RSVD1, RSVD2, RSVD3), 1360edb3a8eSStephen Warren PIN(DP_HPD0_PCC6, DP, RSVD1, RSVD2, RSVD3), 1370edb3a8eSStephen Warren PIN(WIFI_EN_PH0, RSVD0, RSVD1, RSVD2, RSVD3), 1380edb3a8eSStephen Warren PIN(WIFI_RST_PH1, RSVD0, RSVD1, RSVD2, RSVD3), 1390edb3a8eSStephen Warren PIN(WIFI_WAKE_AP_PH2, RSVD0, RSVD1, RSVD2, RSVD3), 1400edb3a8eSStephen Warren PIN(AP_WAKE_BT_PH3, RSVD0, UARTB, SPDIF, RSVD3), 1410edb3a8eSStephen Warren PIN(BT_RST_PH4, RSVD0, UARTB, SPDIF, RSVD3), 1420edb3a8eSStephen Warren PIN(BT_WAKE_AP_PH5, RSVD0, RSVD1, RSVD2, RSVD3), 1430edb3a8eSStephen Warren PIN(AP_WAKE_NFC_PH7, RSVD0, RSVD1, RSVD2, RSVD3), 1440edb3a8eSStephen Warren PIN(NFC_EN_PI0, RSVD0, RSVD1, RSVD2, RSVD3), 1450edb3a8eSStephen Warren PIN(NFC_INT_PI1, RSVD0, RSVD1, RSVD2, RSVD3), 1460edb3a8eSStephen Warren PIN(GPS_EN_PI2, RSVD0, RSVD1, RSVD2, RSVD3), 1470edb3a8eSStephen Warren PIN(GPS_RST_PI3, RSVD0, RSVD1, RSVD2, RSVD3), 1480edb3a8eSStephen Warren PIN(CAM_RST_PS4, VGP1, RSVD1, RSVD2, RSVD3), 1490edb3a8eSStephen Warren PIN(CAM_AF_EN_PS5, VIMCLK, VGP2, RSVD2, RSVD3), 1500edb3a8eSStephen Warren PIN(CAM_FLASH_EN_PS6, VIMCLK, VGP3, RSVD2, RSVD3), 1510edb3a8eSStephen Warren PIN(CAM1_PWDN_PS7, VGP4, RSVD1, RSVD2, RSVD3), 1520edb3a8eSStephen Warren PIN(CAM2_PWDN_PT0, VGP5, RSVD1, RSVD2, RSVD3), 1530edb3a8eSStephen Warren PIN(CAM1_STROBE_PT1, VGP6, RSVD1, RSVD2, RSVD3), 1540edb3a8eSStephen Warren PIN(LCD_TE_PY2, DISPLAYA, RSVD1, RSVD2, RSVD3), 1550edb3a8eSStephen Warren PIN(LCD_BL_PWM_PV0, DISPLAYA, PWM0, SOR0, RSVD3), 1560edb3a8eSStephen Warren PIN(LCD_BL_EN_PV1, RSVD0, RSVD1, RSVD2, RSVD3), 1570edb3a8eSStephen Warren PIN(LCD_RST_PV2, RSVD0, RSVD1, RSVD2, RSVD3), 1580edb3a8eSStephen Warren PIN(LCD_GPIO1_PV3, DISPLAYB, RSVD1, RSVD2, RSVD3), 1590edb3a8eSStephen Warren PIN(LCD_GPIO2_PV4, DISPLAYB, PWM1, RSVD2, SOR1), 1600edb3a8eSStephen Warren PIN(AP_READY_PV5, RSVD0, RSVD1, RSVD2, RSVD3), 1610edb3a8eSStephen Warren PIN(TOUCH_RST_PV6, RSVD0, RSVD1, RSVD2, RSVD3), 1620edb3a8eSStephen Warren PIN(TOUCH_CLK_PV7, TOUCH, RSVD1, RSVD2, RSVD3), 1630edb3a8eSStephen Warren PIN(MODEM_WAKE_AP_PX0, RSVD0, RSVD1, RSVD2, RSVD3), 1640edb3a8eSStephen Warren PIN(TOUCH_INT_PX1, RSVD0, RSVD1, RSVD2, RSVD3), 1650edb3a8eSStephen Warren PIN(MOTION_INT_PX2, RSVD0, RSVD1, RSVD2, RSVD3), 1660edb3a8eSStephen Warren PIN(ALS_PROX_INT_PX3, RSVD0, RSVD1, RSVD2, RSVD3), 1670edb3a8eSStephen Warren PIN(TEMP_ALERT_PX4, RSVD0, RSVD1, RSVD2, RSVD3), 1680edb3a8eSStephen Warren PIN(BUTTON_POWER_ON_PX5, RSVD0, RSVD1, RSVD2, RSVD3), 1690edb3a8eSStephen Warren PIN(BUTTON_VOL_UP_PX6, RSVD0, RSVD1, RSVD2, RSVD3), 1700edb3a8eSStephen Warren PIN(BUTTON_VOL_DOWN_PX7, RSVD0, RSVD1, RSVD2, RSVD3), 1710edb3a8eSStephen Warren PIN(BUTTON_SLIDE_SW_PY0, RSVD0, RSVD1, RSVD2, RSVD3), 1720edb3a8eSStephen Warren PIN(BUTTON_HOME_PY1, RSVD0, RSVD1, RSVD2, RSVD3), 1730edb3a8eSStephen Warren PIN(PA6, SATA, RSVD1, RSVD2, RSVD3), 1740edb3a8eSStephen Warren PIN(PE6, RSVD0, I2S5A, PWM2, RSVD3), 1750edb3a8eSStephen Warren PIN(PE7, RSVD0, I2S5A, PWM3, RSVD3), 1760edb3a8eSStephen Warren PIN(PH6, RSVD0, RSVD1, RSVD2, RSVD3), 1770edb3a8eSStephen Warren PIN(PK0, IQC0, I2S5B, RSVD2, RSVD3), 1780edb3a8eSStephen Warren PIN(PK1, IQC0, I2S5B, RSVD2, RSVD3), 1790edb3a8eSStephen Warren PIN(PK2, IQC0, I2S5B, RSVD2, RSVD3), 1800edb3a8eSStephen Warren PIN(PK3, IQC0, I2S5B, RSVD2, RSVD3), 1810edb3a8eSStephen Warren PIN(PK4, IQC1, RSVD1, RSVD2, RSVD3), 1820edb3a8eSStephen Warren PIN(PK5, IQC1, RSVD1, RSVD2, RSVD3), 1830edb3a8eSStephen Warren PIN(PK6, IQC1, RSVD1, RSVD2, RSVD3), 1840edb3a8eSStephen Warren PIN(PK7, IQC1, RSVD1, RSVD2, RSVD3), 1850edb3a8eSStephen Warren PIN(PL0, RSVD0, RSVD1, RSVD2, RSVD3), 1860edb3a8eSStephen Warren PIN(PL1, SOC, RSVD1, RSVD2, RSVD3), 1870edb3a8eSStephen Warren PIN(PZ0, VIMCLK2, RSVD1, RSVD2, RSVD3), 1880edb3a8eSStephen Warren PIN(PZ1, VIMCLK2, SDMMC1, RSVD2, RSVD3), 1890edb3a8eSStephen Warren PIN(PZ2, SDMMC3, CCLA, RSVD2, RSVD3), 1900edb3a8eSStephen Warren PIN(PZ3, SDMMC3, RSVD1, RSVD2, RSVD3), 1910edb3a8eSStephen Warren PIN(PZ4, SDMMC1, RSVD1, RSVD2, RSVD3), 1920edb3a8eSStephen Warren PIN(PZ5, SOC, RSVD1, RSVD2, RSVD3), 1930edb3a8eSStephen Warren }; 1940edb3a8eSStephen Warren const struct pmux_pingrp_desc *tegra_soc_pingroups = tegra210_pingroups; 195