Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Pinmux configuration for CompuLab CL-SOM-AM57x board |
| 3 | * |
| 4 | * (C) Copyright 2016 CompuLab, Ltd. http://compulab.co.il/ |
| 5 | * |
| 6 | * Author: Dmitry Lifshitz <lifshitz@compulab.co.il> |
| 7 | * |
| 8 | * SPDX-License-Identifier: GPL-2.0+ |
| 9 | */ |
| 10 | #include <asm/arch/sys_proto.h> |
| 11 | #include <asm/arch/mux_dra7xx.h> |
| 12 | |
| 13 | /* Serial console */ |
| 14 | static const struct pad_conf_entry cl_som_am57x_padconf_console[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 15 | {UART3_RXD, (M0 | PIN_INPUT_PULLUP | SLEWCONTROL)}, /* UART3_RXD */ |
| 16 | {UART3_TXD, (M0 | PIN_INPUT_PULLUP | SLEWCONTROL)}, /* UART3_TXD */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 17 | }; |
| 18 | |
| 19 | /* PMIC I2C */ |
| 20 | static const struct pad_conf_entry cl_som_am57x_padconf_pmic[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 21 | {MCASP1_ACLKR, (M10 | PIN_INPUT)}, /* MCASP1_ACLKR.I2C4_SDA */ |
| 22 | {MCASP1_FSR, (M10 | PIN_INPUT)}, /* MCASP1_FSR.I2C4_SCL */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | /* Green GPIO led */ |
| 26 | static const struct pad_conf_entry cl_som_am57x_padconf_green_led[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 27 | {GPMC_A15, (M14 | PIN_OUTPUT_PULLDOWN)}, /* GPMC_A15.GPIO2_5 */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | /* MMC/SD Card */ |
| 31 | static const struct pad_conf_entry cl_som_am57x_padconf_sd_card[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 32 | {MMC1_CLK, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_CLK */ |
| 33 | {MMC1_CMD, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_CMD */ |
| 34 | {MMC1_DAT0, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_DAT0 */ |
| 35 | {MMC1_DAT1, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_DAT1 */ |
| 36 | {MMC1_DAT2, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_DAT2 */ |
| 37 | {MMC1_DAT3, (M0 | PIN_INPUT_PULLUP)}, /* MMC1_DAT3 */ |
| 38 | {MMC1_SDCD, (M14 | PIN_INPUT) }, /* MMC1_SDCD */ |
| 39 | {MMC1_SDWP, (M14 | PIN_INPUT) }, /* MMC1_SDWP */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | /* WiFi - must be in the safe mode on boot */ |
| 43 | static const struct pad_conf_entry cl_som_am57x_padconf_wifi[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 44 | {UART1_CTSN, (M15 | PIN_INPUT_PULLDOWN)}, /* UART1_CTSN */ |
| 45 | {UART1_RTSN, (M15 | PIN_INPUT_PULLDOWN)}, /* UART1_RTSN */ |
| 46 | {UART2_RXD, (M15 | PIN_INPUT_PULLDOWN)}, /* UART2_RXD */ |
| 47 | {UART2_TXD, (M15 | PIN_INPUT_PULLDOWN)}, /* UART2_TXD */ |
| 48 | {UART2_CTSN, (M15 | PIN_INPUT_PULLDOWN)}, /* UART2_CTSN */ |
| 49 | {UART2_RTSN, (M15 | PIN_INPUT_PULLDOWN)}, /* UART2_RTSN */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | /* QSPI */ |
| 53 | static const struct pad_conf_entry cl_som_am57x_padconf_qspi[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 54 | {GPMC_A13, (M1 | PIN_INPUT) }, /* GPMC_A13.QSPI1_RTCLK */ |
| 55 | {GPMC_A18, (M1 | PIN_INPUT) }, /* GPMC_A18.QSPI1_SCLK */ |
| 56 | {GPMC_A16, (M1 | PIN_INPUT) }, /* GPMC_A16.QSPI1_D0 */ |
| 57 | {GPMC_A17, (M1 | PIN_INPUT) }, /* GPMC_A17.QSPI1_D1 */ |
| 58 | {GPMC_CS2, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_CS2.QSPI1_CS0 */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | /* GPIO Expander I2C */ |
| 62 | static const struct pad_conf_entry cl_som_am57x_padconf_i2c_gpio[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 63 | {MCASP1_AXR0, (M10 | PIN_INPUT)}, /* MCASP1_AXR0.I2C5_SDA */ |
| 64 | {MCASP1_AXR1, (M10 | PIN_INPUT)}, /* MCASP1_AXR1.I2C5_SCL */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | /* eMMC internal storage */ |
| 68 | static const struct pad_conf_entry cl_som_am57x_padconf_emmc[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 69 | {GPMC_A19, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A19.MMC2_DAT4 */ |
| 70 | {GPMC_A20, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A20.MMC2_DAT5 */ |
| 71 | {GPMC_A21, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A21.MMC2_DAT6 */ |
| 72 | {GPMC_A22, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A22.MMC2_DAT7 */ |
| 73 | {GPMC_A23, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A23.MMC2_CLK */ |
| 74 | {GPMC_A24, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A24.MMC2_DAT0 */ |
| 75 | {GPMC_A25, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A25.MMC2_DAT1 */ |
| 76 | {GPMC_A26, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A26.MMC2_DAT2 */ |
| 77 | {GPMC_A27, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_A27.MMC2_DAT3 */ |
| 78 | {GPMC_CS1, (M1 | PIN_INPUT_PULLUP)}, /* GPMC_CS1.MMC2_CMD */ |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | /* usb1_drvvbus */ |
| 82 | static const struct pad_conf_entry cl_som_am57x_padconf_usb[] = { |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 83 | /* USB1_DRVVBUS.USB1_DRVVBUS */ |
| 84 | {USB1_DRVVBUS, (M0 | PIN_OUTPUT_PULLDOWN | SLEWCONTROL) }, |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 85 | }; |
| 86 | |
Dmitry Lifshitz | fc300e2 | 2016-12-28 18:28:35 +0200 | [diff] [blame] | 87 | /* Ethernet */ |
| 88 | static const struct pad_conf_entry cl_som_am57x_padconf_ethernet[] = { |
| 89 | /* MDIO bus */ |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 90 | {VIN2A_D10, (M3 | PIN_OUTPUT_PULLUP) }, /* VIN2A_D10.MDIO_MCLK */ |
| 91 | {VIN2A_D11, (M3 | PIN_INPUT_PULLUP) }, /* VIN2A_D11.MDIO_D */ |
Dmitry Lifshitz | fc300e2 | 2016-12-28 18:28:35 +0200 | [diff] [blame] | 92 | /* EMAC Slave 1 at addr 0x1 - Default interface */ |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 93 | {VIN2A_D12, (M3 | PIN_OUTPUT) }, /* VIN2A_D12.RGMII1_TXC */ |
| 94 | {VIN2A_D13, (M3 | PIN_OUTPUT) }, /* VIN2A_D13.RGMII1_TXCTL */ |
| 95 | {VIN2A_D14, (M3 | PIN_OUTPUT) }, /* VIN2A_D14.RGMII1_TXD3 */ |
| 96 | {VIN2A_D15, (M3 | PIN_OUTPUT) }, /* VIN2A_D15.RGMII1_TXD2 */ |
| 97 | {VIN2A_D16, (M3 | PIN_OUTPUT) }, /* VIN2A_D16.RGMII1_TXD1 */ |
| 98 | {VIN2A_D17, (M3 | PIN_OUTPUT) }, /* VIN2A_D17.RGMII1_TXD0 */ |
| 99 | {VIN2A_D18, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D18.RGMII1_RXC */ |
| 100 | {VIN2A_D19, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D19.RGMII1_RXCTL */ |
| 101 | {VIN2A_D20, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D20.RGMII1_RXD3 */ |
| 102 | {VIN2A_D21, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D21.RGMII1_RXD2 */ |
| 103 | {VIN2A_D22, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D22.RGMII1_RXD1 */ |
| 104 | {VIN2A_D23, (M3 | PIN_INPUT_PULLDOWN) }, /* VIN2A_D23.RGMII1_RXD0 */ |
Dmitry Lifshitz | fc300e2 | 2016-12-28 18:28:35 +0200 | [diff] [blame] | 105 | /* Eth PHY1 reset GPIOs*/ |
Suman Anna | 101d217 | 2017-09-08 14:08:24 -0500 | [diff] [blame^] | 106 | {VIN2A_CLK0, (M14 | PIN_OUTPUT_PULLDOWN)}, /* VIN2A_CLK0.GPIO3_28 */ |
Dmitry Lifshitz | fc300e2 | 2016-12-28 18:28:35 +0200 | [diff] [blame] | 107 | }; |
| 108 | |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 109 | #define SET_MUX(mux_array) do_set_mux32((*ctrl)->control_padconf_core_base, \ |
| 110 | mux_array, ARRAY_SIZE(mux_array)) |
| 111 | |
| 112 | void set_muxconf_regs(void) |
| 113 | { |
| 114 | SET_MUX(cl_som_am57x_padconf_console); |
| 115 | SET_MUX(cl_som_am57x_padconf_pmic); |
| 116 | SET_MUX(cl_som_am57x_padconf_green_led); |
| 117 | SET_MUX(cl_som_am57x_padconf_sd_card); |
| 118 | SET_MUX(cl_som_am57x_padconf_wifi); |
| 119 | SET_MUX(cl_som_am57x_padconf_qspi); |
| 120 | SET_MUX(cl_som_am57x_padconf_i2c_gpio); |
| 121 | SET_MUX(cl_som_am57x_padconf_emmc); |
| 122 | SET_MUX(cl_som_am57x_padconf_usb); |
Dmitry Lifshitz | fc300e2 | 2016-12-28 18:28:35 +0200 | [diff] [blame] | 123 | SET_MUX(cl_som_am57x_padconf_ethernet); |
Dmitry Lifshitz | 46650d5 | 2016-12-28 18:28:33 +0200 | [diff] [blame] | 124 | } |