blob: 60651f501f9340b4b4571118be47d69bb161a18b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yegor Yefremov6ce89322015-05-29 19:27:29 +02002/*
3 * board.c
4 *
5 * Board functions for TI AM335X based boards
6 *
7 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
Yegor Yefremov6ce89322015-05-29 19:27:29 +02008 */
9
10#include <common.h>
11#include <errno.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090012#include <linux/libfdt.h>
Yegor Yefremov6ce89322015-05-29 19:27:29 +020013#include <spl.h>
14#include <asm/arch/cpu.h>
15#include <asm/arch/hardware.h>
16#include <asm/arch/omap.h>
17#include <asm/arch/ddr_defs.h>
18#include <asm/arch/clock.h>
19#include <asm/arch/gpio.h>
20#include <asm/arch/mmc_host_def.h>
21#include <asm/arch/sys_proto.h>
22#include <asm/arch/mem.h>
23#include <asm/arch/mux.h>
24#include <asm/io.h>
25#include <asm/emif.h>
26#include <asm/gpio.h>
27#include <i2c.h>
28#include <miiphy.h>
29#include <cpsw.h>
30#include <power/tps65217.h>
31#include <power/tps65910.h>
32#include <environment.h>
33#include <watchdog.h>
34#include "board.h"
35
36DECLARE_GLOBAL_DATA_PTR;
37
Yegor Yefremov67c145a2018-11-22 09:19:30 +010038/* GPIO that controls DIP switch and mPCIe slot */
Yegor Yefremov6ce89322015-05-29 19:27:29 +020039#define DIP_S1 44
Yegor Yefremovdcf7f6f2016-12-01 12:52:17 +010040#define MPCIE_SW 100
Yegor Yefremov6ce89322015-05-29 19:27:29 +020041
42static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
43
44static int baltos_set_console(void)
45{
46 int val, i, dips = 0;
47 char buf[7];
48
49 for (i = 0; i < 4; i++) {
50 sprintf(buf, "dip_s%d", i + 1);
51
52 if (gpio_request(DIP_S1 + i, buf)) {
53 printf("failed to export GPIO %d\n", DIP_S1 + i);
54 return 0;
55 }
56
57 if (gpio_direction_input(DIP_S1 + i)) {
58 printf("failed to set GPIO %d direction\n", DIP_S1 + i);
59 return 0;
60 }
61
62 val = gpio_get_value(DIP_S1 + i);
63 dips |= val << i;
64 }
65
66 printf("DIPs: 0x%1x\n", (~dips) & 0xf);
67
68 if ((dips & 0xf) == 0xe)
Simon Glass382bee52017-08-03 12:22:09 -060069 env_set("console", "ttyUSB0,115200n8");
Yegor Yefremov6ce89322015-05-29 19:27:29 +020070
71 return 0;
72}
73
74static int read_eeprom(BSP_VS_HWPARAM *header)
75{
76 i2c_set_bus_num(1);
77
78 /* Check if baseboard eeprom is available */
79 if (i2c_probe(CONFIG_SYS_I2C_EEPROM_ADDR)) {
80 puts("Could not probe the EEPROM; something fundamentally "
81 "wrong on the I2C bus.\n");
82 return -ENODEV;
83 }
84
85 /* read the eeprom using i2c */
86 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, 1, (uchar *)header,
87 sizeof(BSP_VS_HWPARAM))) {
88 puts("Could not read the EEPROM; something fundamentally"
89 " wrong on the I2C bus.\n");
90 return -EIO;
91 }
92
93 if (header->Magic != 0xDEADBEEF) {
94
95 printf("Incorrect magic number (0x%x) in EEPROM\n",
96 header->Magic);
97
98 /* fill default values */
99 header->SystemId = 211;
100 header->MAC1[0] = 0x00;
101 header->MAC1[1] = 0x00;
102 header->MAC1[2] = 0x00;
103 header->MAC1[3] = 0x00;
104 header->MAC1[4] = 0x00;
105 header->MAC1[5] = 0x01;
106
107 header->MAC2[0] = 0x00;
108 header->MAC2[1] = 0x00;
109 header->MAC2[2] = 0x00;
110 header->MAC2[3] = 0x00;
111 header->MAC2[4] = 0x00;
112 header->MAC2[5] = 0x02;
113
114 header->MAC3[0] = 0x00;
115 header->MAC3[1] = 0x00;
116 header->MAC3[2] = 0x00;
117 header->MAC3[3] = 0x00;
118 header->MAC3[4] = 0x00;
119 header->MAC3[5] = 0x03;
120 }
121
122 return 0;
123}
124
125#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_NOR_BOOT)
126
127static const struct ddr_data ddr3_baltos_data = {
128 .datardsratio0 = MT41K256M16HA125E_RD_DQS,
129 .datawdsratio0 = MT41K256M16HA125E_WR_DQS,
130 .datafwsratio0 = MT41K256M16HA125E_PHY_FIFO_WE,
131 .datawrsratio0 = MT41K256M16HA125E_PHY_WR_DATA,
132};
133
134static const struct cmd_control ddr3_baltos_cmd_ctrl_data = {
135 .cmd0csratio = MT41K256M16HA125E_RATIO,
136 .cmd0iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
137
138 .cmd1csratio = MT41K256M16HA125E_RATIO,
139 .cmd1iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
140
141 .cmd2csratio = MT41K256M16HA125E_RATIO,
142 .cmd2iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
143};
144
145static struct emif_regs ddr3_baltos_emif_reg_data = {
146 .sdram_config = MT41K256M16HA125E_EMIF_SDCFG,
147 .ref_ctrl = MT41K256M16HA125E_EMIF_SDREF,
148 .sdram_tim1 = MT41K256M16HA125E_EMIF_TIM1,
149 .sdram_tim2 = MT41K256M16HA125E_EMIF_TIM2,
150 .sdram_tim3 = MT41K256M16HA125E_EMIF_TIM3,
151 .zq_config = MT41K256M16HA125E_ZQ_CFG,
152 .emif_ddr_phy_ctlr_1 = MT41K256M16HA125E_EMIF_READ_LATENCY,
153};
154
155#ifdef CONFIG_SPL_OS_BOOT
156int spl_start_uboot(void)
157{
158 /* break into full u-boot on 'c' */
159 return (serial_tstc() && serial_getc() == 'c');
160}
161#endif
162
163#define OSC (V_OSCK/1000000)
164const struct dpll_params dpll_ddr = {
165 266, OSC-1, 1, -1, -1, -1, -1};
166const struct dpll_params dpll_ddr_evm_sk = {
167 303, OSC-1, 1, -1, -1, -1, -1};
168const struct dpll_params dpll_ddr_baltos = {
169 400, OSC-1, 1, -1, -1, -1, -1};
170
171void am33xx_spl_board_init(void)
172{
173 int mpu_vdd;
174 int sil_rev;
175
176 /* Get the frequency */
177 dpll_mpu_opp100.m = am335x_get_efuse_mpu_max_freq(cdev);
178
179 /*
180 * The GP EVM, IDK and EVM SK use a TPS65910 PMIC. For all
181 * MPU frequencies we support we use a CORE voltage of
182 * 1.1375V. For MPU voltage we need to switch based on
183 * the frequency we are running at.
184 */
185 i2c_set_bus_num(1);
186
Yegor Yefremove6b1b582015-07-06 17:28:35 +0200187 printf("I2C speed: %d Hz\n", CONFIG_SYS_OMAP24_I2C_SPEED);
188
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200189 if (i2c_probe(TPS65910_CTRL_I2C_ADDR)) {
190 puts("i2c: cannot access TPS65910\n");
191 return;
192 }
193
194 /*
195 * Depending on MPU clock and PG we will need a different
196 * VDD to drive at that speed.
197 */
198 sil_rev = readl(&cdev->deviceid) >> 28;
199 mpu_vdd = am335x_get_tps65910_mpu_vdd(sil_rev,
200 dpll_mpu_opp100.m);
201
202 /* Tell the TPS65910 to use i2c */
203 tps65910_set_i2c_control();
204
205 /* First update MPU voltage. */
206 if (tps65910_voltage_update(MPU, mpu_vdd))
207 return;
208
209 /* Second, update the CORE voltage. */
210 if (tps65910_voltage_update(CORE, TPS65910_OP_REG_SEL_1_1_3))
211 return;
212
213 /* Set CORE Frequencies to OPP100 */
214 do_setup_dpll(&dpll_core_regs, &dpll_core_opp100);
215
216 /* Set MPU Frequency to what we detected now that voltages are set */
217 do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100);
218
219 writel(0x000010ff, PRM_DEVICE_INST + 4);
220}
221
222const struct dpll_params *get_dpll_ddr_params(void)
223{
224 enable_i2c1_pin_mux();
225 i2c_set_bus_num(1);
226
227 return &dpll_ddr_baltos;
228}
229
230void set_uart_mux_conf(void)
231{
232 enable_uart0_pin_mux();
233}
234
235void set_mux_conf_regs(void)
236{
237 enable_board_pin_mux();
238}
239
240const struct ctrl_ioregs ioregs_baltos = {
241 .cm0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
242 .cm1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
243 .cm2ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
244 .dt0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
245 .dt1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
246};
247
248void sdram_init(void)
249{
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200250 config_ddr(400, &ioregs_baltos,
251 &ddr3_baltos_data,
252 &ddr3_baltos_cmd_ctrl_data,
253 &ddr3_baltos_emif_reg_data, 0);
254}
255#endif
256
257/*
258 * Basic board specific setup. Pinmux has been handled already.
259 */
260int board_init(void)
261{
262#if defined(CONFIG_HW_WATCHDOG)
263 hw_watchdog_init();
264#endif
265
266 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
267#if defined(CONFIG_NOR) || defined(CONFIG_NAND)
268 gpmc_init();
269#endif
270 return 0;
271}
272
273int ft_board_setup(void *blob, bd_t *bd)
274{
275 int node, ret;
276 unsigned char mac_addr[6];
277 BSP_VS_HWPARAM header;
278
279 /* get production data */
280 if (read_eeprom(&header))
281 return 0;
282
283 /* setup MAC1 */
284 mac_addr[0] = header.MAC1[0];
285 mac_addr[1] = header.MAC1[1];
286 mac_addr[2] = header.MAC1[2];
287 mac_addr[3] = header.MAC1[3];
288 mac_addr[4] = header.MAC1[4];
289 mac_addr[5] = header.MAC1[5];
290
291
292 node = fdt_path_offset(blob, "/ocp/ethernet/slave@4a100200");
293 if (node < 0) {
294 printf("no /soc/fman/ethernet path offset\n");
295 return -ENODEV;
296 }
297
298 ret = fdt_setprop(blob, node, "mac-address", &mac_addr, 6);
299 if (ret) {
300 printf("error setting local-mac-address property\n");
301 return -ENODEV;
302 }
303
304 /* setup MAC2 */
305 mac_addr[0] = header.MAC2[0];
306 mac_addr[1] = header.MAC2[1];
307 mac_addr[2] = header.MAC2[2];
308 mac_addr[3] = header.MAC2[3];
309 mac_addr[4] = header.MAC2[4];
310 mac_addr[5] = header.MAC2[5];
311
312 node = fdt_path_offset(blob, "/ocp/ethernet/slave@4a100300");
313 if (node < 0) {
314 printf("no /soc/fman/ethernet path offset\n");
315 return -ENODEV;
316 }
317
318 ret = fdt_setprop(blob, node, "mac-address", &mac_addr, 6);
319 if (ret) {
320 printf("error setting local-mac-address property\n");
321 return -ENODEV;
322 }
323
324 printf("\nFDT was successfully setup\n");
325
326 return 0;
327}
328
Yegor Yefremovdcf7f6f2016-12-01 12:52:17 +0100329static struct module_pin_mux pcie_sw_pin_mux[] = {
330 {OFFSET(mii1_rxdv), (MODE(7) | PULLUDEN )}, /* GPIO3_4 */
331 {-1},
332};
333
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200334static struct module_pin_mux dip_pin_mux[] = {
335 {OFFSET(gpmc_ad12), (MODE(7) | RXACTIVE )}, /* GPIO1_12 */
336 {OFFSET(gpmc_ad13), (MODE(7) | RXACTIVE )}, /* GPIO1_13 */
337 {OFFSET(gpmc_ad14), (MODE(7) | RXACTIVE )}, /* GPIO1_14 */
338 {OFFSET(gpmc_ad15), (MODE(7) | RXACTIVE )}, /* GPIO1_15 */
339 {-1},
340};
341
342#ifdef CONFIG_BOARD_LATE_INIT
343int board_late_init(void)
344{
345#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
346 BSP_VS_HWPARAM header;
347 char model[4];
348
349 /* get production data */
350 if (read_eeprom(&header)) {
Ben Whitten192bc692015-12-30 13:05:58 +0000351 strcpy(model, "211");
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200352 } else {
353 sprintf(model, "%d", header.SystemId);
354 if (header.SystemId == 215) {
355 configure_module_pin_mux(dip_pin_mux);
356 baltos_set_console();
357 }
358 }
Yegor Yefremovdcf7f6f2016-12-01 12:52:17 +0100359
360 /* turn power for the mPCIe slot */
361 configure_module_pin_mux(pcie_sw_pin_mux);
362 if (gpio_request(MPCIE_SW, "mpcie_sw")) {
363 printf("failed to export GPIO %d\n", MPCIE_SW);
364 return -ENODEV;
365 }
366 if (gpio_direction_output(MPCIE_SW, 1)) {
367 printf("failed to set GPIO %d direction\n", MPCIE_SW);
368 return -ENODEV;
369 }
370
Simon Glass382bee52017-08-03 12:22:09 -0600371 env_set("board_name", model);
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200372#endif
373
374 return 0;
375}
376#endif
377
378#if (defined(CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)) || \
379 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
380static void cpsw_control(int enabled)
381{
382 /* VTP can be added here */
383
384 return;
385}
386
387static struct cpsw_slave_data cpsw_slaves[] = {
388 {
389 .slave_reg_ofs = 0x208,
390 .sliver_reg_ofs = 0xd80,
391 .phy_addr = 0,
392 },
393 {
394 .slave_reg_ofs = 0x308,
395 .sliver_reg_ofs = 0xdc0,
396 .phy_addr = 7,
397 },
398};
399
400static struct cpsw_platform_data cpsw_data = {
401 .mdio_base = CPSW_MDIO_BASE,
402 .cpsw_base = CPSW_BASE,
403 .mdio_div = 0xff,
404 .channels = 8,
405 .cpdma_reg_ofs = 0x800,
406 .slaves = 2,
407 .slave_data = cpsw_slaves,
408 .active_slave = 1,
409 .ale_reg_ofs = 0xd00,
410 .ale_entries = 1024,
411 .host_port_reg_ofs = 0x108,
412 .hw_stats_reg_ofs = 0x900,
413 .bd_ram_ofs = 0x2000,
414 .mac_control = (1 << 5),
415 .control = cpsw_control,
416 .host_port_num = 0,
417 .version = CPSW_CTRL_VERSION_2,
418};
419#endif
420
Faiz Abbasb432b1e2018-02-16 21:17:44 +0530421#if ((defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USB_ETHER)) \
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200422 && defined(CONFIG_SPL_BUILD)) || \
423 ((defined(CONFIG_DRIVER_TI_CPSW) || \
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200424 defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)) && \
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200425 !defined(CONFIG_SPL_BUILD))
426int board_eth_init(bd_t *bis)
427{
428 int rv, n = 0;
429 uint8_t mac_addr[6];
430 uint32_t mac_hi, mac_lo;
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200431
432 /*
433 * Note here that we're using CPSW1 since that has a 1Gbit PHY while
434 * CSPW0 has a 100Mbit PHY.
435 *
436 * On product, CPSW1 maps to port labeled WAN.
437 */
438
439 /* try reading mac address from efuse */
440 mac_lo = readl(&cdev->macid1l);
441 mac_hi = readl(&cdev->macid1h);
442 mac_addr[0] = mac_hi & 0xFF;
443 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
444 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
445 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
446 mac_addr[4] = mac_lo & 0xFF;
447 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
448
449#if (defined(CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)) || \
450 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
Simon Glass00caae62017-08-03 12:22:12 -0600451 if (!env_get("ethaddr")) {
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200452 printf("<ethaddr> not set. Validating first E-fuse MAC\n");
453
454 if (is_valid_ethaddr(mac_addr))
Simon Glassfd1e9592017-08-03 12:22:11 -0600455 eth_env_set_enetaddr("ethaddr", mac_addr);
Yegor Yefremov6ce89322015-05-29 19:27:29 +0200456 }
457
458#ifdef CONFIG_DRIVER_TI_CPSW
459 writel((GMII1_SEL_RMII | GMII2_SEL_RGMII | RGMII2_IDMODE), &cdev->miisel);
460 cpsw_slaves[1].phy_if = PHY_INTERFACE_MODE_RGMII;
461 rv = cpsw_register(&cpsw_data);
462 if (rv < 0)
463 printf("Error %d registering CPSW switch\n", rv);
464 else
465 n += rv;
466#endif
467
468 /*
469 *
470 * CPSW RGMII Internal Delay Mode is not supported in all PVT
471 * operating points. So we must set the TX clock delay feature
472 * in the AR8051 PHY. Since we only support a single ethernet
473 * device in U-Boot, we only do this for the first instance.
474 */
475#define AR8051_PHY_DEBUG_ADDR_REG 0x1d
476#define AR8051_PHY_DEBUG_DATA_REG 0x1e
477#define AR8051_DEBUG_RGMII_CLK_DLY_REG 0x5
478#define AR8051_RGMII_TX_CLK_DLY 0x100
479 const char *devname;
480 devname = miiphy_get_current_dev();
481
482 miiphy_write(devname, 0x7, AR8051_PHY_DEBUG_ADDR_REG,
483 AR8051_DEBUG_RGMII_CLK_DLY_REG);
484 miiphy_write(devname, 0x7, AR8051_PHY_DEBUG_DATA_REG,
485 AR8051_RGMII_TX_CLK_DLY);
486#endif
487 return n;
488}
489#endif