]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ti/am335x/board.c
am33xx: Finish migration of CONFIG_AM33XX/AM43XX
[people/ms/u-boot.git] / board / ti / am335x / board.c
CommitLineData
e363426e
PK
1/*
2 * board.c
3 *
4 * Board functions for TI AM335X based boards
5 *
6 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
e363426e
PK
9 */
10
11#include <common.h>
4548bc8d 12#include <dm.h>
e363426e
PK
13#include <errno.h>
14#include <spl.h>
3d16389c 15#include <serial.h>
e363426e
PK
16#include <asm/arch/cpu.h>
17#include <asm/arch/hardware.h>
18#include <asm/arch/omap.h>
19#include <asm/arch/ddr_defs.h>
20#include <asm/arch/clock.h>
97f3a178 21#include <asm/arch/clk_synthesizer.h>
e363426e
PK
22#include <asm/arch/gpio.h>
23#include <asm/arch/mmc_host_def.h>
24#include <asm/arch/sys_proto.h>
cd8845d7 25#include <asm/arch/mem.h>
e363426e
PK
26#include <asm/io.h>
27#include <asm/emif.h>
28#include <asm/gpio.h>
b0a4eea1 29#include <asm/omap_sec_common.h>
4548bc8d 30#include <asm/omap_mmc.h>
e363426e
PK
31#include <i2c.h>
32#include <miiphy.h>
33#include <cpsw.h>
9721027a
TR
34#include <power/tps65217.h>
35#include <power/tps65910.h>
6843918e
TR
36#include <environment.h>
37#include <watchdog.h>
ba9a6708 38#include <environment.h>
770e68c0 39#include "../common/board_detect.h"
e363426e
PK
40#include "board.h"
41
42DECLARE_GLOBAL_DATA_PTR;
43
e363426e 44/* GPIO that controls power to DDR on EVM-SK */
97f3a178
LV
45#define GPIO_TO_PIN(bank, gpio) (32 * (bank) + (gpio))
46#define GPIO_DDR_VTT_EN GPIO_TO_PIN(0, 7)
47#define ICE_GPIO_DDR_VTT_EN GPIO_TO_PIN(0, 18)
48#define GPIO_PR1_MII_CTRL GPIO_TO_PIN(3, 4)
49#define GPIO_MUX_MII_CTRL GPIO_TO_PIN(3, 10)
50#define GPIO_FET_SWITCH_CTRL GPIO_TO_PIN(0, 7)
51#define GPIO_PHY_RESET GPIO_TO_PIN(2, 5)
e607ec99
RQ
52#define GPIO_ETH0_MODE GPIO_TO_PIN(0, 11)
53#define GPIO_ETH1_MODE GPIO_TO_PIN(1, 26)
e363426e
PK
54
55static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
56
e607ec99
RQ
57#define GPIO0_RISINGDETECT (AM33XX_GPIO0_BASE + OMAP_GPIO_RISINGDETECT)
58#define GPIO1_RISINGDETECT (AM33XX_GPIO1_BASE + OMAP_GPIO_RISINGDETECT)
59
60#define GPIO0_IRQSTATUS1 (AM33XX_GPIO0_BASE + OMAP_GPIO_IRQSTATUS1)
61#define GPIO1_IRQSTATUS1 (AM33XX_GPIO1_BASE + OMAP_GPIO_IRQSTATUS1)
62
63#define GPIO0_IRQSTATUSRAW (AM33XX_GPIO0_BASE + 0x024)
64#define GPIO1_IRQSTATUSRAW (AM33XX_GPIO1_BASE + 0x024)
65
e363426e
PK
66/*
67 * Read header information from EEPROM into global structure.
68 */
140d76a9
LV
69#ifdef CONFIG_TI_I2C_BOARD_DETECT
70void do_board_detect(void)
e363426e 71{
140d76a9
LV
72 enable_i2c0_pin_mux();
73 i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);
74
64a144dc
SG
75 if (ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS,
76 CONFIG_EEPROM_CHIP_ADDRESS))
140d76a9 77 printf("ti_i2c_eeprom_init failed\n");
e363426e 78}
140d76a9 79#endif
e363426e 80
3d16389c
LV
81#ifndef CONFIG_DM_SERIAL
82struct serial_device *default_serial_console(void)
83{
84 if (board_is_icev2())
85 return &eserial4_device;
86 else
87 return &eserial1_device;
88}
89#endif
90
d0e6d34d 91#ifndef CONFIG_SKIP_LOWLEVEL_INIT
c00f69db 92static const struct ddr_data ddr2_data = {
c4f80f50
TR
93 .datardsratio0 = MT47H128M16RT25E_RD_DQS,
94 .datafwsratio0 = MT47H128M16RT25E_PHY_FIFO_WE,
95 .datawrsratio0 = MT47H128M16RT25E_PHY_WR_DATA,
c00f69db 96};
e363426e 97
c00f69db 98static const struct cmd_control ddr2_cmd_ctrl_data = {
c7d35bef 99 .cmd0csratio = MT47H128M16RT25E_RATIO,
c00f69db 100
c7d35bef 101 .cmd1csratio = MT47H128M16RT25E_RATIO,
c00f69db 102
c7d35bef 103 .cmd2csratio = MT47H128M16RT25E_RATIO,
c00f69db
PK
104};
105
106static const struct emif_regs ddr2_emif_reg_data = {
c7d35bef
PK
107 .sdram_config = MT47H128M16RT25E_EMIF_SDCFG,
108 .ref_ctrl = MT47H128M16RT25E_EMIF_SDREF,
109 .sdram_tim1 = MT47H128M16RT25E_EMIF_TIM1,
110 .sdram_tim2 = MT47H128M16RT25E_EMIF_TIM2,
111 .sdram_tim3 = MT47H128M16RT25E_EMIF_TIM3,
112 .emif_ddr_phy_ctlr_1 = MT47H128M16RT25E_EMIF_READ_LATENCY,
c00f69db
PK
113};
114
8c17cbdf
JS
115static const struct emif_regs ddr2_evm_emif_reg_data = {
116 .sdram_config = MT47H128M16RT25E_EMIF_SDCFG,
117 .ref_ctrl = MT47H128M16RT25E_EMIF_SDREF,
118 .sdram_tim1 = MT47H128M16RT25E_EMIF_TIM1,
119 .sdram_tim2 = MT47H128M16RT25E_EMIF_TIM2,
120 .sdram_tim3 = MT47H128M16RT25E_EMIF_TIM3,
121 .ocp_config = EMIF_OCP_CONFIG_AM335X_EVM,
122 .emif_ddr_phy_ctlr_1 = MT47H128M16RT25E_EMIF_READ_LATENCY,
123};
124
c00f69db 125static const struct ddr_data ddr3_data = {
c7d35bef
PK
126 .datardsratio0 = MT41J128MJT125_RD_DQS,
127 .datawdsratio0 = MT41J128MJT125_WR_DQS,
128 .datafwsratio0 = MT41J128MJT125_PHY_FIFO_WE,
129 .datawrsratio0 = MT41J128MJT125_PHY_WR_DATA,
c00f69db
PK
130};
131
c7ba18ad
TR
132static const struct ddr_data ddr3_beagleblack_data = {
133 .datardsratio0 = MT41K256M16HA125E_RD_DQS,
134 .datawdsratio0 = MT41K256M16HA125E_WR_DQS,
135 .datafwsratio0 = MT41K256M16HA125E_PHY_FIFO_WE,
136 .datawrsratio0 = MT41K256M16HA125E_PHY_WR_DATA,
c7ba18ad
TR
137};
138
13526f71
JL
139static const struct ddr_data ddr3_evm_data = {
140 .datardsratio0 = MT41J512M8RH125_RD_DQS,
141 .datawdsratio0 = MT41J512M8RH125_WR_DQS,
142 .datafwsratio0 = MT41J512M8RH125_PHY_FIFO_WE,
143 .datawrsratio0 = MT41J512M8RH125_PHY_WR_DATA,
13526f71
JL
144};
145
d8ff4fdb
LV
146static const struct ddr_data ddr3_icev2_data = {
147 .datardsratio0 = MT41J128MJT125_RD_DQS_400MHz,
148 .datawdsratio0 = MT41J128MJT125_WR_DQS_400MHz,
149 .datafwsratio0 = MT41J128MJT125_PHY_FIFO_WE_400MHz,
150 .datawrsratio0 = MT41J128MJT125_PHY_WR_DATA_400MHz,
151};
152
c00f69db 153static const struct cmd_control ddr3_cmd_ctrl_data = {
c7d35bef 154 .cmd0csratio = MT41J128MJT125_RATIO,
c7d35bef 155 .cmd0iclkout = MT41J128MJT125_INVERT_CLKOUT,
c00f69db 156
c7d35bef 157 .cmd1csratio = MT41J128MJT125_RATIO,
c7d35bef 158 .cmd1iclkout = MT41J128MJT125_INVERT_CLKOUT,
c00f69db 159
c7d35bef 160 .cmd2csratio = MT41J128MJT125_RATIO,
c7d35bef 161 .cmd2iclkout = MT41J128MJT125_INVERT_CLKOUT,
c00f69db
PK
162};
163
c7ba18ad
TR
164static const struct cmd_control ddr3_beagleblack_cmd_ctrl_data = {
165 .cmd0csratio = MT41K256M16HA125E_RATIO,
c7ba18ad
TR
166 .cmd0iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
167
168 .cmd1csratio = MT41K256M16HA125E_RATIO,
c7ba18ad
TR
169 .cmd1iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
170
171 .cmd2csratio = MT41K256M16HA125E_RATIO,
c7ba18ad
TR
172 .cmd2iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
173};
174
13526f71
JL
175static const struct cmd_control ddr3_evm_cmd_ctrl_data = {
176 .cmd0csratio = MT41J512M8RH125_RATIO,
13526f71
JL
177 .cmd0iclkout = MT41J512M8RH125_INVERT_CLKOUT,
178
179 .cmd1csratio = MT41J512M8RH125_RATIO,
13526f71
JL
180 .cmd1iclkout = MT41J512M8RH125_INVERT_CLKOUT,
181
182 .cmd2csratio = MT41J512M8RH125_RATIO,
13526f71
JL
183 .cmd2iclkout = MT41J512M8RH125_INVERT_CLKOUT,
184};
185
d8ff4fdb
LV
186static const struct cmd_control ddr3_icev2_cmd_ctrl_data = {
187 .cmd0csratio = MT41J128MJT125_RATIO_400MHz,
188 .cmd0iclkout = MT41J128MJT125_INVERT_CLKOUT_400MHz,
189
190 .cmd1csratio = MT41J128MJT125_RATIO_400MHz,
191 .cmd1iclkout = MT41J128MJT125_INVERT_CLKOUT_400MHz,
192
193 .cmd2csratio = MT41J128MJT125_RATIO_400MHz,
194 .cmd2iclkout = MT41J128MJT125_INVERT_CLKOUT_400MHz,
195};
196
c00f69db 197static struct emif_regs ddr3_emif_reg_data = {
c7d35bef
PK
198 .sdram_config = MT41J128MJT125_EMIF_SDCFG,
199 .ref_ctrl = MT41J128MJT125_EMIF_SDREF,
200 .sdram_tim1 = MT41J128MJT125_EMIF_TIM1,
201 .sdram_tim2 = MT41J128MJT125_EMIF_TIM2,
202 .sdram_tim3 = MT41J128MJT125_EMIF_TIM3,
203 .zq_config = MT41J128MJT125_ZQ_CFG,
59dcf970
VH
204 .emif_ddr_phy_ctlr_1 = MT41J128MJT125_EMIF_READ_LATENCY |
205 PHY_EN_DYN_PWRDN,
c00f69db 206};
13526f71 207
c7ba18ad
TR
208static struct emif_regs ddr3_beagleblack_emif_reg_data = {
209 .sdram_config = MT41K256M16HA125E_EMIF_SDCFG,
210 .ref_ctrl = MT41K256M16HA125E_EMIF_SDREF,
211 .sdram_tim1 = MT41K256M16HA125E_EMIF_TIM1,
212 .sdram_tim2 = MT41K256M16HA125E_EMIF_TIM2,
213 .sdram_tim3 = MT41K256M16HA125E_EMIF_TIM3,
8c17cbdf 214 .ocp_config = EMIF_OCP_CONFIG_BEAGLEBONE_BLACK,
c7ba18ad
TR
215 .zq_config = MT41K256M16HA125E_ZQ_CFG,
216 .emif_ddr_phy_ctlr_1 = MT41K256M16HA125E_EMIF_READ_LATENCY,
217};
218
13526f71
JL
219static struct emif_regs ddr3_evm_emif_reg_data = {
220 .sdram_config = MT41J512M8RH125_EMIF_SDCFG,
221 .ref_ctrl = MT41J512M8RH125_EMIF_SDREF,
222 .sdram_tim1 = MT41J512M8RH125_EMIF_TIM1,
223 .sdram_tim2 = MT41J512M8RH125_EMIF_TIM2,
224 .sdram_tim3 = MT41J512M8RH125_EMIF_TIM3,
8c17cbdf 225 .ocp_config = EMIF_OCP_CONFIG_AM335X_EVM,
13526f71 226 .zq_config = MT41J512M8RH125_ZQ_CFG,
59dcf970
VH
227 .emif_ddr_phy_ctlr_1 = MT41J512M8RH125_EMIF_READ_LATENCY |
228 PHY_EN_DYN_PWRDN,
13526f71 229};
12d7a474 230
d8ff4fdb
LV
231static struct emif_regs ddr3_icev2_emif_reg_data = {
232 .sdram_config = MT41J128MJT125_EMIF_SDCFG_400MHz,
233 .ref_ctrl = MT41J128MJT125_EMIF_SDREF_400MHz,
234 .sdram_tim1 = MT41J128MJT125_EMIF_TIM1_400MHz,
235 .sdram_tim2 = MT41J128MJT125_EMIF_TIM2_400MHz,
236 .sdram_tim3 = MT41J128MJT125_EMIF_TIM3_400MHz,
237 .zq_config = MT41J128MJT125_ZQ_CFG_400MHz,
238 .emif_ddr_phy_ctlr_1 = MT41J128MJT125_EMIF_READ_LATENCY_400MHz |
239 PHY_EN_DYN_PWRDN,
240};
241
12d7a474
PK
242#ifdef CONFIG_SPL_OS_BOOT
243int spl_start_uboot(void)
244{
245 /* break into full u-boot on 'c' */
ba9a6708
TR
246 if (serial_tstc() && serial_getc() == 'c')
247 return 1;
248
249#ifdef CONFIG_SPL_ENV_SUPPORT
250 env_init();
251 env_relocate_spec();
252 if (getenv_yesno("boot_os") != 1)
253 return 1;
254#endif
255
256 return 0;
12d7a474
PK
257}
258#endif
259
06507988 260const struct dpll_params *get_dpll_ddr_params(void)
9721027a 261{
fbd6295d
LV
262 int ind = get_sys_clk_index();
263
06507988 264 if (board_is_evm_sk())
fbd6295d 265 return &dpll_ddr3_303MHz[ind];
06507988 266 else if (board_is_bone_lt() || board_is_icev2())
fbd6295d 267 return &dpll_ddr3_400MHz[ind];
06507988 268 else if (board_is_evm_15_or_later())
fbd6295d 269 return &dpll_ddr3_303MHz[ind];
06507988 270 else
fbd6295d
LV
271 return &dpll_ddr2_266MHz[ind];
272}
273
274static u8 bone_not_connected_to_ac_power(void)
275{
276 if (board_is_bone()) {
277 uchar pmic_status_reg;
278 if (tps65217_reg_read(TPS65217_STATUS,
279 &pmic_status_reg))
280 return 1;
281 if (!(pmic_status_reg & TPS65217_PWR_SRC_AC_BITMASK)) {
282 puts("No AC power, switching to default OPP\n");
283 return 1;
284 }
285 }
286 return 0;
287}
288
289const struct dpll_params *get_dpll_mpu_params(void)
290{
291 int ind = get_sys_clk_index();
292 int freq = am335x_get_efuse_mpu_max_freq(cdev);
293
294 if (bone_not_connected_to_ac_power())
295 freq = MPUPLL_M_600;
296
297 if (board_is_bone_lt())
298 freq = MPUPLL_M_1000;
299
300 switch (freq) {
301 case MPUPLL_M_1000:
302 return &dpll_mpu_opp[ind][5];
303 case MPUPLL_M_800:
304 return &dpll_mpu_opp[ind][4];
305 case MPUPLL_M_720:
306 return &dpll_mpu_opp[ind][3];
307 case MPUPLL_M_600:
308 return &dpll_mpu_opp[ind][2];
309 case MPUPLL_M_500:
310 return &dpll_mpu_opp100;
311 case MPUPLL_M_300:
312 return &dpll_mpu_opp[ind][0];
313 }
314
315 return &dpll_mpu_opp[ind][0];
06507988 316}
9721027a 317
06507988
LV
318static void scale_vcores_bone(int freq)
319{
320 int usb_cur_lim, mpu_vdd;
321
322 /*
323 * Only perform PMIC configurations if board rev > A1
324 * on Beaglebone White
325 */
326 if (board_is_bone() && !strncmp(board_ti_get_rev(), "00A1", 4))
327 return;
328
329 if (i2c_probe(TPS65217_CHIP_PM))
330 return;
331
332 /*
333 * On Beaglebone White we need to ensure we have AC power
334 * before increasing the frequency.
335 */
fbd6295d
LV
336 if (bone_not_connected_to_ac_power())
337 freq = MPUPLL_M_600;
9721027a 338
06507988
LV
339 /*
340 * Override what we have detected since we know if we have
341 * a Beaglebone Black it supports 1GHz.
342 */
343 if (board_is_bone_lt())
344 freq = MPUPLL_M_1000;
9721027a 345
06507988
LV
346 if (freq == MPUPLL_M_1000) {
347 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1800MA;
348 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1325MV;
349 } else {
350 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1300MA;
351 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1275MV;
352 }
52f7d844 353
06507988
LV
354 switch (freq) {
355 case MPUPLL_M_1000:
356 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1325MV;
357 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1800MA;
358 break;
359 case MPUPLL_M_800:
360 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1275MV;
361 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1800MA;
362 break;
363 case MPUPLL_M_720:
364 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1200MV;
365 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1800MA;
366 break;
367 case MPUPLL_M_600:
368 case MPUPLL_M_500:
369 case MPUPLL_M_300:
370 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1100MV;
371 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1300MA;
372 break;
373 }
9721027a 374
06507988
LV
375 if (tps65217_reg_write(TPS65217_PROT_LEVEL_NONE,
376 TPS65217_POWER_PATH,
377 usb_cur_lim,
378 TPS65217_USB_INPUT_CUR_LIMIT_MASK))
379 puts("tps65217_reg_write failure\n");
380
381 /* Set DCDC3 (CORE) voltage to 1.10V */
382 if (tps65217_voltage_update(TPS65217_DEFDCDC3,
383 TPS65217_DCDC_VOLT_SEL_1100MV)) {
384 puts("tps65217_voltage_update failure\n");
385 return;
386 }
9721027a 387
06507988
LV
388 /* Set DCDC2 (MPU) voltage */
389 if (tps65217_voltage_update(TPS65217_DEFDCDC2, mpu_vdd)) {
390 puts("tps65217_voltage_update failure\n");
391 return;
392 }
9721027a 393
06507988
LV
394 /*
395 * Set LDO3, LDO4 output voltage to 3.3V for Beaglebone.
396 * Set LDO3 to 1.8V and LDO4 to 3.3V for Beaglebone Black.
397 */
398 if (board_is_bone()) {
9721027a 399 if (tps65217_reg_write(TPS65217_PROT_LEVEL_2,
06507988 400 TPS65217_DEFLS1,
9721027a
TR
401 TPS65217_LDO_VOLTAGE_OUT_3_3,
402 TPS65217_LDO_MASK))
403 puts("tps65217_reg_write failure\n");
404 } else {
06507988
LV
405 if (tps65217_reg_write(TPS65217_PROT_LEVEL_2,
406 TPS65217_DEFLS1,
407 TPS65217_LDO_VOLTAGE_OUT_1_8,
408 TPS65217_LDO_MASK))
409 puts("tps65217_reg_write failure\n");
410 }
9721027a 411
06507988
LV
412 if (tps65217_reg_write(TPS65217_PROT_LEVEL_2,
413 TPS65217_DEFLS2,
414 TPS65217_LDO_VOLTAGE_OUT_3_3,
415 TPS65217_LDO_MASK))
416 puts("tps65217_reg_write failure\n");
417}
9721027a 418
06507988
LV
419void scale_vcores_generic(int freq)
420{
421 int sil_rev, mpu_vdd;
422
423 /*
424 * The GP EVM, IDK and EVM SK use a TPS65910 PMIC. For all
425 * MPU frequencies we support we use a CORE voltage of
426 * 1.10V. For MPU voltage we need to switch based on
427 * the frequency we are running at.
428 */
429 if (i2c_probe(TPS65910_CTRL_I2C_ADDR))
430 return;
431
432 /*
433 * Depending on MPU clock and PG we will need a different
434 * VDD to drive at that speed.
435 */
436 sil_rev = readl(&cdev->deviceid) >> 28;
437 mpu_vdd = am335x_get_tps65910_mpu_vdd(sil_rev, freq);
438
439 /* Tell the TPS65910 to use i2c */
440 tps65910_set_i2c_control();
441
442 /* First update MPU voltage. */
443 if (tps65910_voltage_update(MPU, mpu_vdd))
444 return;
445
446 /* Second, update the CORE voltage. */
447 if (tps65910_voltage_update(CORE, TPS65910_OP_REG_SEL_1_1_0))
448 return;
9721027a 449
06507988 450}
52f7d844 451
06507988
LV
452void gpi2c_init(void)
453{
454 /* When needed to be invoked prior to BSS initialization */
455 static bool first_time = true;
456
457 if (first_time) {
458 enable_i2c0_pin_mux();
459 i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED,
460 CONFIG_SYS_OMAP24_I2C_SLAVE);
461 first_time = false;
9721027a 462 }
9721027a
TR
463}
464
06507988 465void scale_vcores(void)
94d77fb6 466{
06507988
LV
467 int freq;
468
469 gpi2c_init();
470 freq = am335x_get_efuse_mpu_max_freq(cdev);
471
472 if (board_is_bone())
473 scale_vcores_bone(freq);
94d77fb6 474 else
06507988 475 scale_vcores_generic(freq);
94d77fb6
LV
476}
477
0660481a 478void set_uart_mux_conf(void)
e363426e 479{
1286b7f6 480#if CONFIG_CONS_INDEX == 1
e363426e 481 enable_uart0_pin_mux();
1286b7f6 482#elif CONFIG_CONS_INDEX == 2
6422b70b 483 enable_uart1_pin_mux();
1286b7f6 484#elif CONFIG_CONS_INDEX == 3
6422b70b 485 enable_uart2_pin_mux();
1286b7f6 486#elif CONFIG_CONS_INDEX == 4
6422b70b 487 enable_uart3_pin_mux();
1286b7f6 488#elif CONFIG_CONS_INDEX == 5
6422b70b 489 enable_uart4_pin_mux();
1286b7f6 490#elif CONFIG_CONS_INDEX == 6
6422b70b 491 enable_uart5_pin_mux();
1286b7f6 492#endif
0660481a 493}
e363426e 494
0660481a
HS
495void set_mux_conf_regs(void)
496{
770e68c0 497 enable_board_pin_mux();
0660481a 498}
e363426e 499
965de8b9
LV
500const struct ctrl_ioregs ioregs_evmsk = {
501 .cm0ioctl = MT41J128MJT125_IOCTRL_VALUE,
502 .cm1ioctl = MT41J128MJT125_IOCTRL_VALUE,
503 .cm2ioctl = MT41J128MJT125_IOCTRL_VALUE,
504 .dt0ioctl = MT41J128MJT125_IOCTRL_VALUE,
505 .dt1ioctl = MT41J128MJT125_IOCTRL_VALUE,
506};
507
508const struct ctrl_ioregs ioregs_bonelt = {
509 .cm0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
510 .cm1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
511 .cm2ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
512 .dt0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
513 .dt1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
514};
515
516const struct ctrl_ioregs ioregs_evm15 = {
517 .cm0ioctl = MT41J512M8RH125_IOCTRL_VALUE,
518 .cm1ioctl = MT41J512M8RH125_IOCTRL_VALUE,
519 .cm2ioctl = MT41J512M8RH125_IOCTRL_VALUE,
520 .dt0ioctl = MT41J512M8RH125_IOCTRL_VALUE,
521 .dt1ioctl = MT41J512M8RH125_IOCTRL_VALUE,
522};
523
524const struct ctrl_ioregs ioregs = {
525 .cm0ioctl = MT47H128M16RT25E_IOCTRL_VALUE,
526 .cm1ioctl = MT47H128M16RT25E_IOCTRL_VALUE,
527 .cm2ioctl = MT47H128M16RT25E_IOCTRL_VALUE,
528 .dt0ioctl = MT47H128M16RT25E_IOCTRL_VALUE,
529 .dt1ioctl = MT47H128M16RT25E_IOCTRL_VALUE,
530};
531
0660481a
HS
532void sdram_init(void)
533{
770e68c0 534 if (board_is_evm_sk()) {
e363426e
PK
535 /*
536 * EVM SK 1.2A and later use gpio0_7 to enable DDR3.
537 * This is safe enough to do on older revs.
538 */
539 gpio_request(GPIO_DDR_VTT_EN, "ddr_vtt_en");
540 gpio_direction_output(GPIO_DDR_VTT_EN, 1);
541 }
542
d8ff4fdb
LV
543 if (board_is_icev2()) {
544 gpio_request(ICE_GPIO_DDR_VTT_EN, "ddr_vtt_en");
545 gpio_direction_output(ICE_GPIO_DDR_VTT_EN, 1);
546 }
547
770e68c0 548 if (board_is_evm_sk())
965de8b9 549 config_ddr(303, &ioregs_evmsk, &ddr3_data,
3ba65f97 550 &ddr3_cmd_ctrl_data, &ddr3_emif_reg_data, 0);
770e68c0 551 else if (board_is_bone_lt())
965de8b9 552 config_ddr(400, &ioregs_bonelt,
c7ba18ad
TR
553 &ddr3_beagleblack_data,
554 &ddr3_beagleblack_cmd_ctrl_data,
555 &ddr3_beagleblack_emif_reg_data, 0);
770e68c0 556 else if (board_is_evm_15_or_later())
965de8b9 557 config_ddr(303, &ioregs_evm15, &ddr3_evm_data,
3ba65f97 558 &ddr3_evm_cmd_ctrl_data, &ddr3_evm_emif_reg_data, 0);
d8ff4fdb
LV
559 else if (board_is_icev2())
560 config_ddr(400, &ioregs_evmsk, &ddr3_icev2_data,
561 &ddr3_icev2_cmd_ctrl_data, &ddr3_icev2_emif_reg_data,
562 0);
8c17cbdf
JS
563 else if (board_is_gp_evm())
564 config_ddr(266, &ioregs, &ddr2_data,
565 &ddr2_cmd_ctrl_data, &ddr2_evm_emif_reg_data, 0);
c00f69db 566 else
965de8b9 567 config_ddr(266, &ioregs, &ddr2_data,
3ba65f97 568 &ddr2_cmd_ctrl_data, &ddr2_emif_reg_data, 0);
e363426e 569}
0660481a 570#endif
e363426e 571
e607ec99 572#if !defined(CONFIG_SPL_BUILD) || \
97f3a178 573 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
e607ec99 574static void request_and_set_gpio(int gpio, char *name, int val)
97f3a178
LV
575{
576 int ret;
577
578 ret = gpio_request(gpio, name);
579 if (ret < 0) {
580 printf("%s: Unable to request %s\n", __func__, name);
581 return;
582 }
583
584 ret = gpio_direction_output(gpio, 0);
585 if (ret < 0) {
586 printf("%s: Unable to set %s as output\n", __func__, name);
587 goto err_free_gpio;
588 }
589
e607ec99 590 gpio_set_value(gpio, val);
97f3a178
LV
591
592 return;
593
594err_free_gpio:
595 gpio_free(gpio);
596}
597
e607ec99
RQ
598#define REQUEST_AND_SET_GPIO(N) request_and_set_gpio(N, #N, 1);
599#define REQUEST_AND_CLR_GPIO(N) request_and_set_gpio(N, #N, 0);
97f3a178
LV
600
601/**
602 * RMII mode on ICEv2 board needs 50MHz clock. Given the clock
603 * synthesizer With a capacitor of 18pF, and 25MHz input clock cycle
604 * PLL1 gives an output of 100MHz. So, configuring the div2/3 as 2 to
605 * give 50MHz output for Eth0 and 1.
606 */
607static struct clk_synth cdce913_data = {
608 .id = 0x81,
609 .capacitor = 0x90,
610 .mux = 0x6d,
611 .pdiv2 = 0x2,
612 .pdiv3 = 0x2,
613};
614#endif
615
e363426e
PK
616/*
617 * Basic board specific setup. Pinmux has been handled already.
618 */
619int board_init(void)
620{
6843918e
TR
621#if defined(CONFIG_HW_WATCHDOG)
622 hw_watchdog_init();
623#endif
624
73feefdc 625 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
2c17e6d1 626#if defined(CONFIG_NOR) || defined(CONFIG_NAND)
98b5c269 627 gpmc_init();
cd8845d7 628#endif
97f3a178 629
e607ec99
RQ
630#if !defined(CONFIG_SPL_BUILD) || \
631 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
97f3a178 632 if (board_is_icev2()) {
e607ec99
RQ
633 int rv;
634 u32 reg;
635
97f3a178 636 REQUEST_AND_SET_GPIO(GPIO_PR1_MII_CTRL);
e607ec99
RQ
637 /* Make J19 status available on GPIO1_26 */
638 REQUEST_AND_CLR_GPIO(GPIO_MUX_MII_CTRL);
639
97f3a178 640 REQUEST_AND_SET_GPIO(GPIO_FET_SWITCH_CTRL);
e607ec99
RQ
641 /*
642 * Both ports can be set as RMII-CPSW or MII-PRU-ETH using
643 * jumpers near the port. Read the jumper value and set
644 * the pinmux, external mux and PHY clock accordingly.
645 * As jumper line is overridden by PHY RX_DV pin immediately
646 * after bootstrap (power-up/reset), we need to sample
647 * it during PHY reset using GPIO rising edge detection.
648 */
97f3a178 649 REQUEST_AND_SET_GPIO(GPIO_PHY_RESET);
e607ec99
RQ
650 /* Enable rising edge IRQ on GPIO0_11 and GPIO 1_26 */
651 reg = readl(GPIO0_RISINGDETECT) | BIT(11);
652 writel(reg, GPIO0_RISINGDETECT);
653 reg = readl(GPIO1_RISINGDETECT) | BIT(26);
654 writel(reg, GPIO1_RISINGDETECT);
655 /* Reset PHYs to capture the Jumper setting */
656 gpio_set_value(GPIO_PHY_RESET, 0);
657 udelay(2); /* PHY datasheet states 1uS min. */
658 gpio_set_value(GPIO_PHY_RESET, 1);
659
660 reg = readl(GPIO0_IRQSTATUSRAW) & BIT(11);
661 if (reg) {
662 writel(reg, GPIO0_IRQSTATUS1); /* clear irq */
663 /* RMII mode */
664 printf("ETH0, CPSW\n");
665 } else {
666 /* MII mode */
667 printf("ETH0, PRU\n");
668 cdce913_data.pdiv3 = 4; /* 25MHz PHY clk */
669 }
670
671 reg = readl(GPIO1_IRQSTATUSRAW) & BIT(26);
672 if (reg) {
673 writel(reg, GPIO1_IRQSTATUS1); /* clear irq */
674 /* RMII mode */
675 printf("ETH1, CPSW\n");
676 gpio_set_value(GPIO_MUX_MII_CTRL, 1);
677 } else {
678 /* MII mode */
679 printf("ETH1, PRU\n");
680 cdce913_data.pdiv2 = 4; /* 25MHz PHY clk */
681 }
682
683 /* disable rising edge IRQs */
684 reg = readl(GPIO0_RISINGDETECT) & ~BIT(11);
685 writel(reg, GPIO0_RISINGDETECT);
686 reg = readl(GPIO1_RISINGDETECT) & ~BIT(26);
687 writel(reg, GPIO1_RISINGDETECT);
97f3a178
LV
688
689 rv = setup_clock_synthesizer(&cdce913_data);
690 if (rv) {
691 printf("Clock synthesizer setup failed %d\n", rv);
692 return rv;
693 }
e607ec99
RQ
694
695 /* reset PHYs */
696 gpio_set_value(GPIO_PHY_RESET, 0);
697 udelay(2); /* PHY datasheet states 1uS min. */
698 gpio_set_value(GPIO_PHY_RESET, 1);
97f3a178
LV
699 }
700#endif
701
e363426e
PK
702 return 0;
703}
704
044fc14b
TR
705#ifdef CONFIG_BOARD_LATE_INIT
706int board_late_init(void)
707{
f411b5cc
RQ
708#if !defined(CONFIG_SPL_BUILD)
709 uint8_t mac_addr[6];
710 uint32_t mac_hi, mac_lo;
711#endif
712
044fc14b 713#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
770e68c0 714 char *name = NULL;
ace4275e 715
4015949f 716 if (board_is_bone_lt()) {
717 /* BeagleBoard.org BeagleBone Black Wireless: */
718 if (!strncmp(board_ti_get_rev(), "BWA", 3)) {
719 name = "BBBW";
2b79fba6 720 }
721 /* SeeedStudio BeagleBone Green Wireless */
722 if (!strncmp(board_ti_get_rev(), "GW1", 3)) {
723 name = "BBGW";
52609d75 724 }
725 /* BeagleBoard.org BeagleBone Blue */
726 if (!strncmp(board_ti_get_rev(), "BLA", 3)) {
727 name = "BBBL";
4015949f 728 }
729 }
730
770e68c0
NM
731 if (board_is_bbg1())
732 name = "BBG1";
733 set_board_info_env(name);
5d4d436c
LV
734
735 /*
736 * Default FIT boot on HS devices. Non FIT images are not allowed
737 * on HS devices.
738 */
739 if (get_device_type() == HS_DEVICE)
740 setenv("boot_fit", "1");
044fc14b
TR
741#endif
742
f411b5cc
RQ
743#if !defined(CONFIG_SPL_BUILD)
744 /* try reading mac address from efuse */
745 mac_lo = readl(&cdev->macid0l);
746 mac_hi = readl(&cdev->macid0h);
747 mac_addr[0] = mac_hi & 0xFF;
748 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
749 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
750 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
751 mac_addr[4] = mac_lo & 0xFF;
752 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
753
754 if (!getenv("ethaddr")) {
755 printf("<ethaddr> not set. Validating first E-fuse MAC\n");
756
757 if (is_valid_ethaddr(mac_addr))
758 eth_setenv_enetaddr("ethaddr", mac_addr);
759 }
760
761 mac_lo = readl(&cdev->macid1l);
762 mac_hi = readl(&cdev->macid1h);
763 mac_addr[0] = mac_hi & 0xFF;
764 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
765 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
766 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
767 mac_addr[4] = mac_lo & 0xFF;
768 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
769
770 if (!getenv("eth1addr")) {
771 if (is_valid_ethaddr(mac_addr))
772 eth_setenv_enetaddr("eth1addr", mac_addr);
773 }
774#endif
775
044fc14b
TR
776 return 0;
777}
778#endif
779
bd83e3df
M
780#ifndef CONFIG_DM_ETH
781
c0e66793
IY
782#if (defined(CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)) || \
783 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
e363426e
PK
784static void cpsw_control(int enabled)
785{
786 /* VTP can be added here */
787
788 return;
789}
790
791static struct cpsw_slave_data cpsw_slaves[] = {
792 {
793 .slave_reg_ofs = 0x208,
794 .sliver_reg_ofs = 0xd80,
9c653aad 795 .phy_addr = 0,
e363426e
PK
796 },
797 {
798 .slave_reg_ofs = 0x308,
799 .sliver_reg_ofs = 0xdc0,
9c653aad 800 .phy_addr = 1,
e363426e
PK
801 },
802};
803
804static struct cpsw_platform_data cpsw_data = {
81df2bab
MP
805 .mdio_base = CPSW_MDIO_BASE,
806 .cpsw_base = CPSW_BASE,
e363426e
PK
807 .mdio_div = 0xff,
808 .channels = 8,
809 .cpdma_reg_ofs = 0x800,
810 .slaves = 1,
811 .slave_data = cpsw_slaves,
812 .ale_reg_ofs = 0xd00,
813 .ale_entries = 1024,
814 .host_port_reg_ofs = 0x108,
815 .hw_stats_reg_ofs = 0x900,
2bf36ac6 816 .bd_ram_ofs = 0x2000,
e363426e
PK
817 .mac_control = (1 << 5),
818 .control = cpsw_control,
819 .host_port_num = 0,
820 .version = CPSW_CTRL_VERSION_2,
821};
d2aa1154 822#endif
e363426e 823
97f3a178
LV
824#if ((defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USBETH_SUPPORT)) &&\
825 defined(CONFIG_SPL_BUILD)) || \
826 ((defined(CONFIG_DRIVER_TI_CPSW) || \
827 defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)) && \
828 !defined(CONFIG_SPL_BUILD))
829
68996b84
TR
830/*
831 * This function will:
832 * Read the eFuse for MAC addresses, and set ethaddr/eth1addr/usbnet_devaddr
833 * in the environment
834 * Perform fixups to the PHY present on certain boards. We only need this
835 * function in:
836 * - SPL with either CPSW or USB ethernet support
837 * - Full U-Boot, with either CPSW or USB ethernet
838 * Build in only these cases to avoid warnings about unused variables
839 * when we build an SPL that has neither option but full U-Boot will.
840 */
e363426e
PK
841int board_eth_init(bd_t *bis)
842{
d2aa1154 843 int rv, n = 0;
f411b5cc
RQ
844#if defined(CONFIG_USB_ETHER) && \
845 (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_USBETH_SUPPORT))
e363426e
PK
846 uint8_t mac_addr[6];
847 uint32_t mac_hi, mac_lo;
848
f411b5cc
RQ
849 /*
850 * use efuse mac address for USB ethernet as we know that
851 * both CPSW and USB ethernet will never be active at the same time
852 */
c0e66793
IY
853 mac_lo = readl(&cdev->macid0l);
854 mac_hi = readl(&cdev->macid0h);
855 mac_addr[0] = mac_hi & 0xFF;
856 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
857 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
858 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
859 mac_addr[4] = mac_lo & 0xFF;
860 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
f411b5cc
RQ
861#endif
862
c0e66793
IY
863
864#if (defined(CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)) || \
865 (defined(CONFIG_SPL_ETH_SUPPORT) && defined(CONFIG_SPL_BUILD))
e363426e 866
a662e0c3 867#ifdef CONFIG_DRIVER_TI_CPSW
770e68c0
NM
868 if (board_is_bone() || board_is_bone_lt() ||
869 board_is_idk()) {
e363426e
PK
870 writel(MII_MODE_ENABLE, &cdev->miisel);
871 cpsw_slaves[0].phy_if = cpsw_slaves[1].phy_if =
872 PHY_INTERFACE_MODE_MII;
97f3a178
LV
873 } else if (board_is_icev2()) {
874 writel(RMII_MODE_ENABLE | RMII_CHIPCKL_ENABLE, &cdev->miisel);
875 cpsw_slaves[0].phy_if = PHY_INTERFACE_MODE_RMII;
876 cpsw_slaves[1].phy_if = PHY_INTERFACE_MODE_RMII;
877 cpsw_slaves[0].phy_addr = 1;
878 cpsw_slaves[1].phy_addr = 3;
e363426e 879 } else {
dafd4db3 880 writel((RGMII_MODE_ENABLE | RGMII_INT_DELAY), &cdev->miisel);
e363426e
PK
881 cpsw_slaves[0].phy_if = cpsw_slaves[1].phy_if =
882 PHY_INTERFACE_MODE_RGMII;
883 }
884
d2aa1154
IY
885 rv = cpsw_register(&cpsw_data);
886 if (rv < 0)
887 printf("Error %d registering CPSW switch\n", rv);
888 else
889 n += rv;
a662e0c3 890#endif
1634e969
TR
891
892 /*
893 *
894 * CPSW RGMII Internal Delay Mode is not supported in all PVT
895 * operating points. So we must set the TX clock delay feature
896 * in the AR8051 PHY. Since we only support a single ethernet
897 * device in U-Boot, we only do this for the first instance.
898 */
899#define AR8051_PHY_DEBUG_ADDR_REG 0x1d
900#define AR8051_PHY_DEBUG_DATA_REG 0x1e
901#define AR8051_DEBUG_RGMII_CLK_DLY_REG 0x5
902#define AR8051_RGMII_TX_CLK_DLY 0x100
903
770e68c0 904 if (board_is_evm_sk() || board_is_gp_evm()) {
1634e969
TR
905 const char *devname;
906 devname = miiphy_get_current_dev();
907
908 miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_ADDR_REG,
909 AR8051_DEBUG_RGMII_CLK_DLY_REG);
910 miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_DATA_REG,
911 AR8051_RGMII_TX_CLK_DLY);
912 }
d2aa1154 913#endif
c0e66793
IY
914#if defined(CONFIG_USB_ETHER) && \
915 (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_USBETH_SUPPORT))
0adb5b76 916 if (is_valid_ethaddr(mac_addr))
c0e66793
IY
917 eth_setenv_enetaddr("usbnet_devaddr", mac_addr);
918
d2aa1154
IY
919 rv = usb_eth_initialize(bis);
920 if (rv < 0)
921 printf("Error %d registering USB_ETHER\n", rv);
922 else
923 n += rv;
924#endif
925 return n;
e363426e
PK
926}
927#endif
bd83e3df
M
928
929#endif /* CONFIG_DM_ETH */
505ea6e8
LV
930
931#ifdef CONFIG_SPL_LOAD_FIT
932int board_fit_config_name_match(const char *name)
933{
934 if (board_is_gp_evm() && !strcmp(name, "am335x-evm"))
935 return 0;
936 else if (board_is_bone() && !strcmp(name, "am335x-bone"))
937 return 0;
938 else if (board_is_bone_lt() && !strcmp(name, "am335x-boneblack"))
939 return 0;
3819ea70
LV
940 else if (board_is_evm_sk() && !strcmp(name, "am335x-evmsk"))
941 return 0;
da9d9599
LV
942 else if (board_is_bbg1() && !strcmp(name, "am335x-bonegreen"))
943 return 0;
73ec6960
LV
944 else if (board_is_icev2() && !strcmp(name, "am335x-icev2"))
945 return 0;
505ea6e8
LV
946 else
947 return -1;
948}
949#endif
b0a4eea1
AD
950
951#ifdef CONFIG_TI_SECURE_DEVICE
952void board_fit_image_post_process(void **p_image, size_t *p_size)
953{
954 secure_boot_verify_image(p_image, p_size);
955}
956#endif
4548bc8d
LV
957
958#if !CONFIG_IS_ENABLED(OF_CONTROL)
959static const struct omap_hsmmc_plat am335x_mmc0_platdata = {
960 .base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE,
961 .cfg.host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS | MMC_MODE_4BIT,
962 .cfg.f_min = 400000,
963 .cfg.f_max = 52000000,
964 .cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195,
965 .cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT,
966};
967
968U_BOOT_DEVICE(am335x_mmc0) = {
969 .name = "omap_hsmmc",
970 .platdata = &am335x_mmc0_platdata,
971};
972
973static const struct omap_hsmmc_plat am335x_mmc1_platdata = {
974 .base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE,
975 .cfg.host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS | MMC_MODE_8BIT,
976 .cfg.f_min = 400000,
977 .cfg.f_max = 52000000,
978 .cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195,
979 .cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT,
980};
981
982U_BOOT_DEVICE(am335x_mmc1) = {
983 .name = "omap_hsmmc",
984 .platdata = &am335x_mmc1_platdata,
985};
986#endif