4 * Board functions for B&R LEIT Board
6 * Copyright (C) 2013 Hannes Petermaier <oe5hpm@oevsv.at>
7 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
9 * SPDX-License-Identifier: GPL-2.0+
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>
21 #include <asm/arch/gpio.h>
22 #include <asm/arch/sys_proto.h>
23 #include <asm/arch/mem.h>
28 #include <power/tps65217.h>
29 #include "../common/bur_common.h"
33 DECLARE_GLOBAL_DATA_PTR;
35 /* --------------------------------------------------------------------------*/
36 /* -- defines for GPIO -- */
37 #define ETHLED_ORANGE (96+16) /* GPIO3_16 */
38 #define REPSWITCH (0+20) /* GPIO0_20 */
41 #if defined(CONFIG_SPL_BUILD)
42 /* TODO: check ram-timing ! */
43 static const struct ddr_data ddr3_data = {
44 .datardsratio0 = MT41K256M16HA125E_RD_DQS,
45 .datawdsratio0 = MT41K256M16HA125E_WR_DQS,
46 .datafwsratio0 = MT41K256M16HA125E_PHY_FIFO_WE,
47 .datawrsratio0 = MT41K256M16HA125E_PHY_WR_DATA,
50 static const struct cmd_control ddr3_cmd_ctrl_data = {
51 .cmd0csratio = MT41K256M16HA125E_RATIO,
52 .cmd0iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
54 .cmd1csratio = MT41K256M16HA125E_RATIO,
55 .cmd1iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
57 .cmd2csratio = MT41K256M16HA125E_RATIO,
58 .cmd2iclkout = MT41K256M16HA125E_INVERT_CLKOUT,
61 static struct emif_regs ddr3_emif_reg_data = {
62 .sdram_config = MT41K256M16HA125E_EMIF_SDCFG,
63 .ref_ctrl = MT41K256M16HA125E_EMIF_SDREF,
64 .sdram_tim1 = MT41K256M16HA125E_EMIF_TIM1,
65 .sdram_tim2 = MT41K256M16HA125E_EMIF_TIM2,
66 .sdram_tim3 = MT41K256M16HA125E_EMIF_TIM3,
67 .zq_config = MT41K256M16HA125E_ZQ_CFG,
68 .emif_ddr_phy_ctlr_1 = MT41K256M16HA125E_EMIF_READ_LATENCY,
71 static const struct ctrl_ioregs ddr3_ioregs = {
72 .cm0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
73 .cm1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
74 .cm2ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
75 .dt0ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
76 .dt1ioctl = MT41K256M16HA125E_IOCTRL_VALUE,
79 #ifdef CONFIG_SPL_OS_BOOT
81 * called from spl_nand.c
82 * return 0 for loading linux, return 1 for loading u-boot
84 int spl_start_uboot(void)
86 if (0 == gpio_get_value(REPSWITCH)) {
88 printf("SPL: entering u-boot instead kernel image.\n");
93 #endif /* CONFIG_SPL_OS_BOOT */
95 #define OSC (V_OSCK/1000000)
96 static const struct dpll_params dpll_ddr3 = { 400, OSC-1, 1, -1, -1, -1, -1};
98 void am33xx_spl_board_init(void)
100 struct cm_perpll *const cmper = (struct cm_perpll *)CM_PER;
101 /*struct cm_wkuppll *const cmwkup = (struct cm_wkuppll *)CM_WKUP;*/
102 struct cm_dpll *const cmdpll = (struct cm_dpll *)CM_DPLL;
105 * in TRM they write a reset value of 1 (=CLK_M_OSC) for the
106 * CLKSEL_TIMER6_CLK Register, in fact reset value is 0, so we need set
107 * the source of timer6 clk to CLK_M_OSC
109 writel(0x01, &cmdpll->clktimer6clk);
111 /* enable additional clocks of modules which are accessed later */
112 u32 *const clk_domains[] = {
113 &cmper->lcdcclkstctrl,
117 u32 *const clk_modules_tsspecific[] = {
119 &cmper->timer5clkctrl,
120 &cmper->timer6clkctrl,
123 do_enable_clocks(clk_domains, clk_modules_tsspecific, 1);
125 /* setup LCD-Pixel Clock */
126 writel(0x2, &cmdpll->clklcdcpixelclk); /* clock comes from perPLL M2 */
131 const struct dpll_params *get_dpll_ddr_params(void)
136 void sdram_init(void)
138 config_ddr(400, &ddr3_ioregs,
141 &ddr3_emif_reg_data, 0);
143 #endif /* CONFIG_SPL_BUILD */
145 /* Basic board specific setup. Pinmux has been handled already. */
148 #if defined(CONFIG_HW_WATCHDOG)
151 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
158 #ifdef CONFIG_BOARD_LATE_INIT
159 int board_late_init(void)
161 if (0 == gpio_get_value(REPSWITCH)) {
162 lcd_position_cursor(1, 8);
164 "switching to network-console ... ");
165 setenv("bootcmd", "run netconsole");
169 #endif /* CONFIG_BOARD_LATE_INIT */