Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Freescale Semiconductor, Inc. |
| 4 | * Author: Fabio Estevam <fabio.estevam@freescale.com> |
| 5 | * |
Matthias Schiffer | a5e3052 | 2021-11-02 11:36:46 +0100 | [diff] [blame] | 6 | * Copyright (C) 2013, 2014 TQ-Systems (ported SabreSD to TQMa6x) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 7 | * Author: Markus Niebel <markus.niebel@tq-group.com> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 11 | #include <net.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 12 | #include <asm/io.h> |
| 13 | #include <asm/arch/clock.h> |
| 14 | #include <asm/arch/mx6-pins.h> |
| 15 | #include <asm/arch/imx-regs.h> |
| 16 | #include <asm/arch/iomux.h> |
| 17 | #include <asm/arch/sys_proto.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 18 | #include <linux/delay.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 20 | #include <asm/gpio.h> |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 21 | #include <asm/mach-imx/mxc_i2c.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 22 | |
| 23 | #include <common.h> |
Yangbo Lu | e37ac71 | 2019-06-21 11:42:28 +0800 | [diff] [blame] | 24 | #include <fsl_esdhc_imx.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 25 | #include <linux/libfdt.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 26 | #include <malloc.h> |
| 27 | #include <i2c.h> |
| 28 | #include <micrel.h> |
| 29 | #include <miiphy.h> |
| 30 | #include <mmc.h> |
| 31 | #include <netdev.h> |
| 32 | |
| 33 | #include "tqma6_bb.h" |
| 34 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 35 | #define UART_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ |
| 36 | PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 37 | |
| 38 | #define USDHC_CLK_PAD_CTRL (PAD_CTL_PUS_47K_UP | PAD_CTL_SPEED_LOW | \ |
| 39 | PAD_CTL_DSE_40ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 40 | |
| 41 | #define USDHC_PAD_CTRL (PAD_CTL_PUS_47K_UP | PAD_CTL_SPEED_LOW | \ |
| 42 | PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 43 | |
| 44 | #define GPIO_OUT_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_LOW | \ |
| 45 | PAD_CTL_DSE_40ohm | PAD_CTL_HYS) |
| 46 | |
| 47 | #define GPIO_IN_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_LOW | \ |
| 48 | PAD_CTL_DSE_40ohm | PAD_CTL_HYS) |
| 49 | |
| 50 | #define SPI_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ |
| 51 | PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 52 | |
| 53 | #define I2C_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ |
Markus Niebel | 03cfff0 | 2017-02-03 16:24:59 +0100 | [diff] [blame] | 54 | PAD_CTL_DSE_80ohm | PAD_CTL_HYS | \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 55 | PAD_CTL_ODE | PAD_CTL_SRE_FAST) |
| 56 | |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 57 | #if defined(CONFIG_TQMA6Q) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 58 | |
| 59 | #define IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII 0x02e0790 |
| 60 | #define IOMUX_SW_PAD_CTRL_GRP_RGMII_TERM 0x02e07ac |
| 61 | |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 62 | #elif defined(CONFIG_TQMA6S) || defined(CONFIG_TQMA6DL) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 63 | |
| 64 | #define IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII 0x02e0768 |
| 65 | #define IOMUX_SW_PAD_CTRL_GRP_RGMII_TERM 0x02e0788 |
| 66 | |
| 67 | #else |
| 68 | |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 69 | #error "need to select module" |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 70 | |
| 71 | #endif |
| 72 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 73 | /* disable on die termination for RGMII */ |
| 74 | #define IOMUX_SW_PAD_CTRL_GRP_RGMII_TERM_DISABLE 0x00000000 |
| 75 | /* optimised drive strength for 1.0 .. 1.3 V signal on RGMII */ |
| 76 | #define IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII_1P2V 0x00080000 |
| 77 | /* optimised drive strength for 1.3 .. 2.5 V signal on RGMII */ |
| 78 | #define IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII_1P5V 0x000C0000 |
| 79 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 80 | static void mba6_setup_iomuxc_enet(void) |
| 81 | { |
Markus Niebel | 4ba8117 | 2017-02-03 16:25:02 +0100 | [diff] [blame] | 82 | struct iomuxc *const iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR; |
| 83 | |
| 84 | /* clear gpr1[ENET_CLK_SEL] for externel clock */ |
| 85 | clrbits_le32(&iomuxc_regs->gpr[1], IOMUXC_GPR1_ENET_CLK_SEL_MASK); |
| 86 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 87 | __raw_writel(IOMUX_SW_PAD_CTRL_GRP_RGMII_TERM_DISABLE, |
| 88 | (void *)IOMUX_SW_PAD_CTRL_GRP_RGMII_TERM); |
| 89 | __raw_writel(IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII_1P5V, |
| 90 | (void *)IOMUX_SW_PAD_CTRL_GRP_DDR_TYPE_RGMII); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static iomux_v3_cfg_t const mba6_uart2_pads[] = { |
| 94 | NEW_PAD_CTRL(MX6_PAD_SD4_DAT4__UART2_RX_DATA, UART_PAD_CTRL), |
| 95 | NEW_PAD_CTRL(MX6_PAD_SD4_DAT7__UART2_TX_DATA, UART_PAD_CTRL), |
| 96 | }; |
| 97 | |
| 98 | static void mba6_setup_iomuxc_uart(void) |
| 99 | { |
| 100 | imx_iomux_v3_setup_multiple_pads(mba6_uart2_pads, |
| 101 | ARRAY_SIZE(mba6_uart2_pads)); |
| 102 | } |
| 103 | |
Michael Krummsdorf | 8f660ba | 2020-04-09 15:21:42 +0200 | [diff] [blame] | 104 | int board_mmc_get_env_dev(int devno) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 105 | { |
Markus Niebel | fd53ec5 | 2014-11-18 13:22:56 +0100 | [diff] [blame] | 106 | /* |
Michael Krummsdorf | 8f660ba | 2020-04-09 15:21:42 +0200 | [diff] [blame] | 107 | * This assumes that the baseboard registered |
| 108 | * the boot device first ... |
| 109 | * Note: SDHC3 == idx2 |
Markus Niebel | fd53ec5 | 2014-11-18 13:22:56 +0100 | [diff] [blame] | 110 | */ |
Michael Krummsdorf | 8f660ba | 2020-04-09 15:21:42 +0200 | [diff] [blame] | 111 | return (2 == devno) ? 0 : 1; |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 112 | } |
| 113 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 114 | int board_phy_config(struct phy_device *phydev) |
| 115 | { |
| 116 | /* |
| 117 | * optimized pad skew values depends on CPU variant on the TQMa6x module: |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 118 | * CONFIG_TQMA6Q: i.MX6Q/D |
| 119 | * CONFIG_TQMA6S: i.MX6S |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 120 | * CONFIG_TQMA6DL: i.MX6DL |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 121 | */ |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 122 | #if defined(CONFIG_TQMA6Q) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 123 | #define MBA6X_KSZ9031_CTRL_SKEW 0x0032 |
| 124 | #define MBA6X_KSZ9031_CLK_SKEW 0x03ff |
| 125 | #define MBA6X_KSZ9031_RX_SKEW 0x3333 |
| 126 | #define MBA6X_KSZ9031_TX_SKEW 0x2036 |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 127 | #elif defined(CONFIG_TQMA6S) || defined(CONFIG_TQMA6DL) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 128 | #define MBA6X_KSZ9031_CTRL_SKEW 0x0030 |
| 129 | #define MBA6X_KSZ9031_CLK_SKEW 0x03ff |
| 130 | #define MBA6X_KSZ9031_RX_SKEW 0x3333 |
| 131 | #define MBA6X_KSZ9031_TX_SKEW 0x2052 |
| 132 | #else |
| 133 | #error |
| 134 | #endif |
| 135 | /* min rx/tx ctrl delay */ |
| 136 | ksz9031_phy_extended_write(phydev, 2, |
| 137 | MII_KSZ9031_EXT_RGMII_CTRL_SIG_SKEW, |
| 138 | MII_KSZ9031_MOD_DATA_NO_POST_INC, |
| 139 | MBA6X_KSZ9031_CTRL_SKEW); |
| 140 | /* min rx delay */ |
| 141 | ksz9031_phy_extended_write(phydev, 2, |
| 142 | MII_KSZ9031_EXT_RGMII_RX_DATA_SKEW, |
| 143 | MII_KSZ9031_MOD_DATA_NO_POST_INC, |
| 144 | MBA6X_KSZ9031_RX_SKEW); |
| 145 | /* max tx delay */ |
| 146 | ksz9031_phy_extended_write(phydev, 2, |
| 147 | MII_KSZ9031_EXT_RGMII_TX_DATA_SKEW, |
| 148 | MII_KSZ9031_MOD_DATA_NO_POST_INC, |
| 149 | MBA6X_KSZ9031_TX_SKEW); |
| 150 | /* rx/tx clk skew */ |
| 151 | ksz9031_phy_extended_write(phydev, 2, |
| 152 | MII_KSZ9031_EXT_RGMII_CLOCK_SKEW, |
| 153 | MII_KSZ9031_MOD_DATA_NO_POST_INC, |
| 154 | MBA6X_KSZ9031_CLK_SKEW); |
| 155 | |
| 156 | phydev->drv->config(phydev); |
| 157 | |
| 158 | return 0; |
| 159 | } |
| 160 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 161 | int tqma6_bb_board_early_init_f(void) |
| 162 | { |
| 163 | mba6_setup_iomuxc_uart(); |
| 164 | |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | int tqma6_bb_board_init(void) |
| 169 | { |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 170 | mba6_setup_iomuxc_enet(); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | int tqma6_bb_board_late_init(void) |
| 176 | { |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | const char *tqma6_bb_get_boardname(void) |
| 181 | { |
| 182 | return "MBa6x"; |
| 183 | } |
| 184 | |
| 185 | /* |
| 186 | * Device Tree Support |
| 187 | */ |
| 188 | #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 189 | void tqma6_bb_ft_board_setup(void *blob, struct bd_info *bd) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 190 | { |
| 191 | /* TBD */ |
| 192 | } |
| 193 | #endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */ |