1 // SPDX-License-Identifier: GPL-2.0+
5 * Board functions for TI814x EVM
7 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
15 #include <asm/arch/cpu.h>
16 #include <asm/arch/hardware.h>
17 #include <asm/arch/omap.h>
18 #include <asm/arch/ddr_defs.h>
19 #include <asm/arch/clock.h>
20 #include <asm/arch/gpio.h>
21 #include <asm/arch/mmc_host_def.h>
22 #include <asm/arch/sys_proto.h>
28 DECLARE_GLOBAL_DATA_PTR;
30 static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
33 #ifdef CONFIG_SPL_BUILD
34 static const struct cmd_control evm_ddr2_cctrl_data = {
45 static const struct emif_regs evm_ddr2_emif0_regs = {
46 .sdram_config = 0x40801ab2,
47 .ref_ctrl = 0x10000c30,
48 .sdram_tim1 = 0x0aaaf552,
49 .sdram_tim2 = 0x043631d2,
50 .sdram_tim3 = 0x00000327,
51 .emif_ddr_phy_ctlr_1 = 0x00000007
54 static const struct emif_regs evm_ddr2_emif1_regs = {
55 .sdram_config = 0x40801ab2,
56 .ref_ctrl = 0x10000c30,
57 .sdram_tim1 = 0x0aaaf552,
58 .sdram_tim2 = 0x043631d2,
59 .sdram_tim3 = 0x00000327,
60 .emif_ddr_phy_ctlr_1 = 0x00000007
63 const struct dmm_lisa_map_regs evm_lisa_map_regs = {
64 .dmm_lisa_map_0 = 0x00000000,
65 .dmm_lisa_map_1 = 0x00000000,
66 .dmm_lisa_map_2 = 0x806c0300,
67 .dmm_lisa_map_3 = 0x806c0300,
70 static const struct ddr_data evm_ddr2_data = {
71 .datardsratio0 = ((0x35<<10) | (0x35<<0)),
72 .datawdsratio0 = ((0x20<<10) | (0x20<<0)),
73 .datawiratio0 = ((0<<10) | (0<<0)),
74 .datagiratio0 = ((0<<10) | (0<<0)),
75 .datafwsratio0 = ((0x90<<10) | (0x90<<0)),
76 .datawrsratio0 = ((0x50<<10) | (0x50<<0)),
79 void set_uart_mux_conf(void)
82 enable_uart0_pin_mux();
85 void set_mux_conf_regs(void)
88 enable_mmc1_pin_mux();
90 /* Set Ethernet pins */
91 enable_enet_pin_mux();
96 config_dmm(&evm_lisa_map_regs);
98 config_ddr(0, NULL, &evm_ddr2_data, &evm_ddr2_cctrl_data,
99 &evm_ddr2_emif0_regs, 0);
100 config_ddr(0, NULL, &evm_ddr2_data, &evm_ddr2_cctrl_data,
101 &evm_ddr2_emif1_regs, 1);
106 * Basic board specific setup. Pinmux has been handled already.
110 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
114 #if defined(CONFIG_MMC)
115 int board_mmc_init(bd_t *bis)
117 omap_mmc_init(1, 0, 0, -1, -1);
123 #ifdef CONFIG_DRIVER_TI_CPSW
124 static void cpsw_control(int enabled)
126 /* VTP can be added here */
131 static struct cpsw_slave_data cpsw_slaves[] = {
133 .slave_reg_ofs = 0x50,
134 .sliver_reg_ofs = 0x700,
138 .slave_reg_ofs = 0x90,
139 .sliver_reg_ofs = 0x740,
144 static struct cpsw_platform_data cpsw_data = {
145 .mdio_base = CPSW_MDIO_BASE,
146 .cpsw_base = CPSW_BASE,
149 .cpdma_reg_ofs = 0x100,
151 .slave_data = cpsw_slaves,
152 .ale_reg_ofs = 0x600,
154 .host_port_reg_ofs = 0x28,
155 .hw_stats_reg_ofs = 0x400,
156 .bd_ram_ofs = 0x2000,
157 .mac_control = (1 << 5),
158 .control = cpsw_control,
160 .version = CPSW_CTRL_VERSION_1,
164 int board_eth_init(bd_t *bis)
167 uint32_t mac_hi, mac_lo;
169 if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
170 printf("<ethaddr> not set. Reading from E-fuse\n");
171 /* try reading mac address from efuse */
172 mac_lo = readl(&cdev->macid0l);
173 mac_hi = readl(&cdev->macid0h);
174 mac_addr[0] = mac_hi & 0xFF;
175 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
176 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
177 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
178 mac_addr[4] = mac_lo & 0xFF;
179 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
181 if (is_valid_ethaddr(mac_addr))
182 eth_env_set_enetaddr("ethaddr", mac_addr);
184 printf("Unable to read MAC address. Set <ethaddr>\n");
187 return cpsw_register(&cpsw_data);