Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2013 |
| 3 | * Texas Instruments Incorporated, <www.ti.com> |
| 4 | * |
| 5 | * Lokesh Vutla <lokeshvutla@ti.com> |
| 6 | * |
| 7 | * Based on previous work by: |
| 8 | * Aneesh V <aneesh@ti.com> |
| 9 | * Steve Sakoman <steve@sakoman.com> |
| 10 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 11 | * SPDX-License-Identifier: GPL-2.0+ |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 12 | */ |
| 13 | #include <common.h> |
Nishanth Menon | cb19910 | 2013-03-26 05:20:54 +0000 | [diff] [blame] | 14 | #include <palmas.h> |
Dan Murphy | e9024ef | 2014-02-03 06:59:02 -0600 | [diff] [blame] | 15 | #include <sata.h> |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 16 | #include <asm/arch/sys_proto.h> |
| 17 | #include <asm/arch/mmc_host_def.h> |
Roger Quadros | 21914ee | 2013-11-11 16:56:44 +0200 | [diff] [blame] | 18 | #include <asm/arch/sata.h> |
Tom Rini | 79b079f | 2014-04-03 07:52:56 -0400 | [diff] [blame] | 19 | #include <environment.h> |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 20 | |
| 21 | #include "mux_data.h" |
| 22 | |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 23 | #ifdef CONFIG_DRIVER_TI_CPSW |
| 24 | #include <cpsw.h> |
| 25 | #endif |
| 26 | |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
| 29 | const struct omap_sysinfo sysinfo = { |
| 30 | "Board: DRA7xx\n" |
| 31 | }; |
| 32 | |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 33 | /* |
| 34 | * Adjust I/O delays on the Tx control and data lines of each MAC port. This |
| 35 | * is a workaround in order to work properly with the DP83865 PHYs on the EVM. |
| 36 | * In 3COM RGMII mode this PHY applies it's own internal clock delay, so we |
| 37 | * essentially need to counteract the DRA7xx internal delay, and we do this |
| 38 | * by delaying the control and data lines. If not using this PHY, you probably |
| 39 | * don't need to do this stuff! |
| 40 | */ |
| 41 | static void dra7xx_adj_io_delay(const struct io_delay *io_dly) |
| 42 | { |
| 43 | int i = 0; |
| 44 | u32 reg_val; |
| 45 | u32 delta; |
| 46 | u32 coarse; |
| 47 | u32 fine; |
| 48 | |
| 49 | writel(CFG_IO_DELAY_UNLOCK_KEY, CFG_IO_DELAY_LOCK); |
| 50 | |
| 51 | while(io_dly[i].addr) { |
| 52 | writel(CFG_IO_DELAY_ACCESS_PATTERN & ~CFG_IO_DELAY_LOCK_MASK, |
| 53 | io_dly[i].addr); |
| 54 | delta = io_dly[i].dly; |
| 55 | reg_val = readl(io_dly[i].addr) & 0x3ff; |
| 56 | coarse = ((reg_val >> 5) & 0x1F) + ((delta >> 5) & 0x1F); |
| 57 | coarse = (coarse > 0x1F) ? (0x1F) : (coarse); |
| 58 | fine = (reg_val & 0x1F) + (delta & 0x1F); |
| 59 | fine = (fine > 0x1F) ? (0x1F) : (fine); |
| 60 | reg_val = CFG_IO_DELAY_ACCESS_PATTERN | |
| 61 | CFG_IO_DELAY_LOCK_MASK | |
| 62 | ((coarse << 5) | (fine)); |
| 63 | writel(reg_val, io_dly[i].addr); |
| 64 | i++; |
| 65 | } |
| 66 | |
| 67 | writel(CFG_IO_DELAY_LOCK_KEY, CFG_IO_DELAY_LOCK); |
| 68 | } |
| 69 | |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 70 | /** |
| 71 | * @brief board_init |
| 72 | * |
| 73 | * @return 0 |
| 74 | */ |
| 75 | int board_init(void) |
| 76 | { |
| 77 | gpmc_init(); |
| 78 | gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */ |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
Roger Quadros | 21914ee | 2013-11-11 16:56:44 +0200 | [diff] [blame] | 83 | int board_late_init(void) |
| 84 | { |
Dan Murphy | e9024ef | 2014-02-03 06:59:02 -0600 | [diff] [blame] | 85 | init_sata(0); |
Roger Quadros | 21914ee | 2013-11-11 16:56:44 +0200 | [diff] [blame] | 86 | return 0; |
| 87 | } |
| 88 | |
Lokesh Vutla | 687054a | 2013-02-12 21:29:08 +0000 | [diff] [blame] | 89 | /** |
| 90 | * @brief misc_init_r - Configure EVM board specific configurations |
| 91 | * such as power configurations, ethernet initialization as phase2 of |
| 92 | * boot sequence |
| 93 | * |
| 94 | * @return 0 |
| 95 | */ |
| 96 | int misc_init_r(void) |
| 97 | { |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | static void do_set_mux32(u32 base, |
| 102 | struct pad_conf_entry const *array, int size) |
| 103 | { |
| 104 | int i; |
| 105 | struct pad_conf_entry *pad = (struct pad_conf_entry *)array; |
| 106 | |
| 107 | for (i = 0; i < size; i++, pad++) |
| 108 | writel(pad->val, base + pad->offset); |
| 109 | } |
| 110 | |
| 111 | void set_muxconf_regs_essential(void) |
| 112 | { |
| 113 | do_set_mux32((*ctrl)->control_padconf_core_base, |
| 114 | core_padconf_array_essential, |
| 115 | sizeof(core_padconf_array_essential) / |
| 116 | sizeof(struct pad_conf_entry)); |
| 117 | } |
| 118 | |
| 119 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_GENERIC_MMC) |
| 120 | int board_mmc_init(bd_t *bis) |
| 121 | { |
| 122 | omap_mmc_init(0, 0, 0, -1, -1); |
| 123 | omap_mmc_init(1, 0, 0, -1, -1); |
| 124 | return 0; |
| 125 | } |
| 126 | #endif |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 127 | |
Tom Rini | 79b079f | 2014-04-03 07:52:56 -0400 | [diff] [blame] | 128 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_OS_BOOT) |
| 129 | int spl_start_uboot(void) |
| 130 | { |
| 131 | /* break into full u-boot on 'c' */ |
| 132 | if (serial_tstc() && serial_getc() == 'c') |
| 133 | return 1; |
| 134 | |
| 135 | #ifdef CONFIG_SPL_ENV_SUPPORT |
| 136 | env_init(); |
| 137 | env_relocate_spec(); |
| 138 | if (getenv_yesno("boot_os") != 1) |
| 139 | return 1; |
| 140 | #endif |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | #endif |
| 145 | |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 146 | #ifdef CONFIG_DRIVER_TI_CPSW |
| 147 | |
| 148 | /* Delay value to add to calibrated value */ |
| 149 | #define RGMII0_TXCTL_DLY_VAL ((0x3 << 5) + 0x8) |
| 150 | #define RGMII0_TXD0_DLY_VAL ((0x3 << 5) + 0x8) |
| 151 | #define RGMII0_TXD1_DLY_VAL ((0x3 << 5) + 0x2) |
| 152 | #define RGMII0_TXD2_DLY_VAL ((0x4 << 5) + 0x0) |
| 153 | #define RGMII0_TXD3_DLY_VAL ((0x4 << 5) + 0x0) |
| 154 | #define VIN2A_D13_DLY_VAL ((0x3 << 5) + 0x8) |
| 155 | #define VIN2A_D17_DLY_VAL ((0x3 << 5) + 0x8) |
| 156 | #define VIN2A_D16_DLY_VAL ((0x3 << 5) + 0x2) |
| 157 | #define VIN2A_D15_DLY_VAL ((0x4 << 5) + 0x0) |
| 158 | #define VIN2A_D14_DLY_VAL ((0x4 << 5) + 0x0) |
| 159 | |
| 160 | static void cpsw_control(int enabled) |
| 161 | { |
| 162 | /* VTP can be added here */ |
| 163 | |
| 164 | return; |
| 165 | } |
| 166 | |
| 167 | static struct cpsw_slave_data cpsw_slaves[] = { |
| 168 | { |
| 169 | .slave_reg_ofs = 0x208, |
| 170 | .sliver_reg_ofs = 0xd80, |
Mugunthan V N | 9c653aa | 2014-02-18 07:31:52 -0500 | [diff] [blame] | 171 | .phy_addr = 2, |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 172 | }, |
| 173 | { |
| 174 | .slave_reg_ofs = 0x308, |
| 175 | .sliver_reg_ofs = 0xdc0, |
Mugunthan V N | 9c653aa | 2014-02-18 07:31:52 -0500 | [diff] [blame] | 176 | .phy_addr = 3, |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 177 | }, |
| 178 | }; |
| 179 | |
| 180 | static struct cpsw_platform_data cpsw_data = { |
| 181 | .mdio_base = CPSW_MDIO_BASE, |
| 182 | .cpsw_base = CPSW_BASE, |
| 183 | .mdio_div = 0xff, |
| 184 | .channels = 8, |
| 185 | .cpdma_reg_ofs = 0x800, |
| 186 | .slaves = 1, |
| 187 | .slave_data = cpsw_slaves, |
| 188 | .ale_reg_ofs = 0xd00, |
| 189 | .ale_entries = 1024, |
| 190 | .host_port_reg_ofs = 0x108, |
| 191 | .hw_stats_reg_ofs = 0x900, |
| 192 | .bd_ram_ofs = 0x2000, |
| 193 | .mac_control = (1 << 5), |
| 194 | .control = cpsw_control, |
| 195 | .host_port_num = 0, |
| 196 | .version = CPSW_CTRL_VERSION_2, |
| 197 | }; |
| 198 | |
| 199 | int board_eth_init(bd_t *bis) |
| 200 | { |
| 201 | int ret; |
| 202 | uint8_t mac_addr[6]; |
| 203 | uint32_t mac_hi, mac_lo; |
| 204 | uint32_t ctrl_val; |
| 205 | const struct io_delay io_dly[] = { |
| 206 | {CFG_RGMII0_TXCTL, RGMII0_TXCTL_DLY_VAL}, |
| 207 | {CFG_RGMII0_TXD0, RGMII0_TXD0_DLY_VAL}, |
| 208 | {CFG_RGMII0_TXD1, RGMII0_TXD1_DLY_VAL}, |
| 209 | {CFG_RGMII0_TXD2, RGMII0_TXD2_DLY_VAL}, |
| 210 | {CFG_RGMII0_TXD3, RGMII0_TXD3_DLY_VAL}, |
| 211 | {CFG_VIN2A_D13, VIN2A_D13_DLY_VAL}, |
| 212 | {CFG_VIN2A_D17, VIN2A_D17_DLY_VAL}, |
| 213 | {CFG_VIN2A_D16, VIN2A_D16_DLY_VAL}, |
| 214 | {CFG_VIN2A_D15, VIN2A_D15_DLY_VAL}, |
| 215 | {CFG_VIN2A_D14, VIN2A_D14_DLY_VAL}, |
| 216 | {0} |
| 217 | }; |
| 218 | |
| 219 | /* Adjust IO delay for RGMII tx path */ |
| 220 | dra7xx_adj_io_delay(io_dly); |
| 221 | |
| 222 | /* try reading mac address from efuse */ |
| 223 | mac_lo = readl((*ctrl)->control_core_mac_id_0_lo); |
| 224 | mac_hi = readl((*ctrl)->control_core_mac_id_0_hi); |
Mugunthan V N | e0a1d59 | 2014-01-07 19:57:38 +0530 | [diff] [blame] | 225 | mac_addr[0] = (mac_hi & 0xFF0000) >> 16; |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 226 | mac_addr[1] = (mac_hi & 0xFF00) >> 8; |
Mugunthan V N | e0a1d59 | 2014-01-07 19:57:38 +0530 | [diff] [blame] | 227 | mac_addr[2] = mac_hi & 0xFF; |
| 228 | mac_addr[3] = (mac_lo & 0xFF0000) >> 16; |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 229 | mac_addr[4] = (mac_lo & 0xFF00) >> 8; |
Mugunthan V N | e0a1d59 | 2014-01-07 19:57:38 +0530 | [diff] [blame] | 230 | mac_addr[5] = mac_lo & 0xFF; |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 231 | |
| 232 | if (!getenv("ethaddr")) { |
| 233 | printf("<ethaddr> not set. Validating first E-fuse MAC\n"); |
| 234 | |
| 235 | if (is_valid_ether_addr(mac_addr)) |
| 236 | eth_setenv_enetaddr("ethaddr", mac_addr); |
| 237 | } |
Mugunthan V N | 8feb37b | 2014-02-18 07:31:56 -0500 | [diff] [blame] | 238 | |
| 239 | mac_lo = readl((*ctrl)->control_core_mac_id_1_lo); |
| 240 | mac_hi = readl((*ctrl)->control_core_mac_id_1_hi); |
| 241 | mac_addr[0] = (mac_hi & 0xFF0000) >> 16; |
| 242 | mac_addr[1] = (mac_hi & 0xFF00) >> 8; |
| 243 | mac_addr[2] = mac_hi & 0xFF; |
| 244 | mac_addr[3] = (mac_lo & 0xFF0000) >> 16; |
| 245 | mac_addr[4] = (mac_lo & 0xFF00) >> 8; |
| 246 | mac_addr[5] = mac_lo & 0xFF; |
| 247 | |
| 248 | if (!getenv("eth1addr")) { |
| 249 | if (is_valid_ether_addr(mac_addr)) |
| 250 | eth_setenv_enetaddr("eth1addr", mac_addr); |
| 251 | } |
| 252 | |
Mugunthan V N | b1e26e3 | 2013-07-08 16:04:41 +0530 | [diff] [blame] | 253 | ctrl_val = readl((*ctrl)->control_core_control_io1) & (~0x33); |
| 254 | ctrl_val |= 0x22; |
| 255 | writel(ctrl_val, (*ctrl)->control_core_control_io1); |
| 256 | |
| 257 | ret = cpsw_register(&cpsw_data); |
| 258 | if (ret < 0) |
| 259 | printf("Error %d registering CPSW switch\n", ret); |
| 260 | |
| 261 | return ret; |
| 262 | } |
| 263 | #endif |