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 * 11 * SPDX-License-Identifier: GPL-2.0+ 12 */ 13 #include <common.h> 14 #include <palmas.h> 15 #include <sata.h> 16 #include <asm/arch/sys_proto.h> 17 #include <asm/arch/mmc_host_def.h> 18 #include <asm/arch/sata.h> 19 #include <environment.h> 20 21 #include "mux_data.h" 22 23 #ifdef CONFIG_DRIVER_TI_CPSW 24 #include <cpsw.h> 25 #endif 26 27 DECLARE_GLOBAL_DATA_PTR; 28 29 const struct omap_sysinfo sysinfo = { 30 "Board: DRA7xx\n" 31 }; 32 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 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 83 int board_late_init(void) 84 { 85 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 86 if (omap_revision() == DRA722_ES1_0) 87 setenv("board_name", "dra72x"); 88 else 89 setenv("board_name", "dra7xx"); 90 #endif 91 init_sata(0); 92 return 0; 93 } 94 95 /** 96 * @brief misc_init_r - Configure EVM board specific configurations 97 * such as power configurations, ethernet initialization as phase2 of 98 * boot sequence 99 * 100 * @return 0 101 */ 102 int misc_init_r(void) 103 { 104 return 0; 105 } 106 107 static void do_set_mux32(u32 base, 108 struct pad_conf_entry const *array, int size) 109 { 110 int i; 111 struct pad_conf_entry *pad = (struct pad_conf_entry *)array; 112 113 for (i = 0; i < size; i++, pad++) 114 writel(pad->val, base + pad->offset); 115 } 116 117 void set_muxconf_regs_essential(void) 118 { 119 do_set_mux32((*ctrl)->control_padconf_core_base, 120 core_padconf_array_essential, 121 sizeof(core_padconf_array_essential) / 122 sizeof(struct pad_conf_entry)); 123 } 124 125 #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_GENERIC_MMC) 126 int board_mmc_init(bd_t *bis) 127 { 128 omap_mmc_init(0, 0, 0, -1, -1); 129 omap_mmc_init(1, 0, 0, -1, -1); 130 return 0; 131 } 132 #endif 133 134 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_OS_BOOT) 135 int spl_start_uboot(void) 136 { 137 /* break into full u-boot on 'c' */ 138 if (serial_tstc() && serial_getc() == 'c') 139 return 1; 140 141 #ifdef CONFIG_SPL_ENV_SUPPORT 142 env_init(); 143 env_relocate_spec(); 144 if (getenv_yesno("boot_os") != 1) 145 return 1; 146 #endif 147 148 return 0; 149 } 150 #endif 151 152 #ifdef CONFIG_DRIVER_TI_CPSW 153 154 /* Delay value to add to calibrated value */ 155 #define RGMII0_TXCTL_DLY_VAL ((0x3 << 5) + 0x8) 156 #define RGMII0_TXD0_DLY_VAL ((0x3 << 5) + 0x8) 157 #define RGMII0_TXD1_DLY_VAL ((0x3 << 5) + 0x2) 158 #define RGMII0_TXD2_DLY_VAL ((0x4 << 5) + 0x0) 159 #define RGMII0_TXD3_DLY_VAL ((0x4 << 5) + 0x0) 160 #define VIN2A_D13_DLY_VAL ((0x3 << 5) + 0x8) 161 #define VIN2A_D17_DLY_VAL ((0x3 << 5) + 0x8) 162 #define VIN2A_D16_DLY_VAL ((0x3 << 5) + 0x2) 163 #define VIN2A_D15_DLY_VAL ((0x4 << 5) + 0x0) 164 #define VIN2A_D14_DLY_VAL ((0x4 << 5) + 0x0) 165 166 static void cpsw_control(int enabled) 167 { 168 /* VTP can be added here */ 169 170 return; 171 } 172 173 static struct cpsw_slave_data cpsw_slaves[] = { 174 { 175 .slave_reg_ofs = 0x208, 176 .sliver_reg_ofs = 0xd80, 177 .phy_addr = 2, 178 }, 179 { 180 .slave_reg_ofs = 0x308, 181 .sliver_reg_ofs = 0xdc0, 182 .phy_addr = 3, 183 }, 184 }; 185 186 static struct cpsw_platform_data cpsw_data = { 187 .mdio_base = CPSW_MDIO_BASE, 188 .cpsw_base = CPSW_BASE, 189 .mdio_div = 0xff, 190 .channels = 8, 191 .cpdma_reg_ofs = 0x800, 192 .slaves = 1, 193 .slave_data = cpsw_slaves, 194 .ale_reg_ofs = 0xd00, 195 .ale_entries = 1024, 196 .host_port_reg_ofs = 0x108, 197 .hw_stats_reg_ofs = 0x900, 198 .bd_ram_ofs = 0x2000, 199 .mac_control = (1 << 5), 200 .control = cpsw_control, 201 .host_port_num = 0, 202 .version = CPSW_CTRL_VERSION_2, 203 }; 204 205 int board_eth_init(bd_t *bis) 206 { 207 int ret; 208 uint8_t mac_addr[6]; 209 uint32_t mac_hi, mac_lo; 210 uint32_t ctrl_val; 211 const struct io_delay io_dly[] = { 212 {CFG_RGMII0_TXCTL, RGMII0_TXCTL_DLY_VAL}, 213 {CFG_RGMII0_TXD0, RGMII0_TXD0_DLY_VAL}, 214 {CFG_RGMII0_TXD1, RGMII0_TXD1_DLY_VAL}, 215 {CFG_RGMII0_TXD2, RGMII0_TXD2_DLY_VAL}, 216 {CFG_RGMII0_TXD3, RGMII0_TXD3_DLY_VAL}, 217 {CFG_VIN2A_D13, VIN2A_D13_DLY_VAL}, 218 {CFG_VIN2A_D17, VIN2A_D17_DLY_VAL}, 219 {CFG_VIN2A_D16, VIN2A_D16_DLY_VAL}, 220 {CFG_VIN2A_D15, VIN2A_D15_DLY_VAL}, 221 {CFG_VIN2A_D14, VIN2A_D14_DLY_VAL}, 222 {0} 223 }; 224 225 /* Adjust IO delay for RGMII tx path */ 226 dra7xx_adj_io_delay(io_dly); 227 228 /* try reading mac address from efuse */ 229 mac_lo = readl((*ctrl)->control_core_mac_id_0_lo); 230 mac_hi = readl((*ctrl)->control_core_mac_id_0_hi); 231 mac_addr[0] = (mac_hi & 0xFF0000) >> 16; 232 mac_addr[1] = (mac_hi & 0xFF00) >> 8; 233 mac_addr[2] = mac_hi & 0xFF; 234 mac_addr[3] = (mac_lo & 0xFF0000) >> 16; 235 mac_addr[4] = (mac_lo & 0xFF00) >> 8; 236 mac_addr[5] = mac_lo & 0xFF; 237 238 if (!getenv("ethaddr")) { 239 printf("<ethaddr> not set. Validating first E-fuse MAC\n"); 240 241 if (is_valid_ether_addr(mac_addr)) 242 eth_setenv_enetaddr("ethaddr", mac_addr); 243 } 244 245 mac_lo = readl((*ctrl)->control_core_mac_id_1_lo); 246 mac_hi = readl((*ctrl)->control_core_mac_id_1_hi); 247 mac_addr[0] = (mac_hi & 0xFF0000) >> 16; 248 mac_addr[1] = (mac_hi & 0xFF00) >> 8; 249 mac_addr[2] = mac_hi & 0xFF; 250 mac_addr[3] = (mac_lo & 0xFF0000) >> 16; 251 mac_addr[4] = (mac_lo & 0xFF00) >> 8; 252 mac_addr[5] = mac_lo & 0xFF; 253 254 if (!getenv("eth1addr")) { 255 if (is_valid_ether_addr(mac_addr)) 256 eth_setenv_enetaddr("eth1addr", mac_addr); 257 } 258 259 ctrl_val = readl((*ctrl)->control_core_control_io1) & (~0x33); 260 ctrl_val |= 0x22; 261 writel(ctrl_val, (*ctrl)->control_core_control_io1); 262 263 ret = cpsw_register(&cpsw_data); 264 if (ret < 0) 265 printf("Error %d registering CPSW switch\n", ret); 266 267 return ret; 268 } 269 #endif 270