blob: 2d42af6b809d5c334b1589f6530344c5f25a4275 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TENART Antoine425faf72013-07-02 12:06:00 +02002/*
3 * evm.c
4 *
5 * Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com>
6 * Antoine Tenart, <atenart@adeneo-embedded.com>
TENART Antoine425faf72013-07-02 12:06:00 +02007 */
8
9#include <common.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060010#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060012#include <net.h>
TENART Antoine425faf72013-07-02 12:06:00 +020013#include <spl.h>
14#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
TENART Antoine425faf72013-07-02 12:06:00 +020016#include <asm/io.h>
17#include <asm/arch/clock.h>
18#include <asm/arch/cpu.h>
19#include <asm/arch/ddr_defs.h>
20#include <asm/arch/hardware.h>
21#include <asm/arch/sys_proto.h>
22#include <asm/arch/mmc_host_def.h>
23#include <asm/arch/mem.h>
24#include <asm/arch/mux.h>
25
26DECLARE_GLOBAL_DATA_PTR;
27
28int board_init(void)
29{
Tom Rini1d7f6ad2017-05-16 14:46:39 -040030 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Miquel Raynal88718be2019-10-03 19:50:03 +020031#if defined(CONFIG_MTD_RAW_NAND)
Tom Rini77e99272017-05-16 14:46:37 -040032 gpmc_init();
33#endif
TENART Antoine425faf72013-07-02 12:06:00 +020034 return 0;
35}
36
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090037int board_eth_init(struct bd_info *bis)
Tom Rinide820362017-05-10 12:01:02 -040038{
39 uint8_t mac_addr[6];
40 uint32_t mac_hi, mac_lo;
41 struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
42
Simon Glass35affd72017-08-03 12:22:14 -060043 if (!eth_env_get_enetaddr("ethaddr", mac_addr)) {
Tom Rinide820362017-05-10 12:01:02 -040044 printf("<ethaddr> not set. Reading from E-fuse\n");
45 /* try reading mac address from efuse */
46 mac_lo = readl(&cdev->macid0l);
47 mac_hi = readl(&cdev->macid0h);
48 mac_addr[0] = mac_hi & 0xFF;
49 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
50 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
51 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
52 mac_addr[4] = mac_lo & 0xFF;
53 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
54
55 if (is_valid_ethaddr(mac_addr))
Simon Glassfd1e9592017-08-03 12:22:11 -060056 eth_env_set_enetaddr("ethaddr", mac_addr);
Tom Rinide820362017-05-10 12:01:02 -040057 else
58 printf("Unable to read MAC address. Set <ethaddr>\n");
59 }
60
Bartosz Golaszewskie8092852019-07-24 10:12:07 +020061 return 0;
Tom Rinide820362017-05-10 12:01:02 -040062}
63
TENART Antoine425faf72013-07-02 12:06:00 +020064#ifdef CONFIG_SPL_BUILD
TENART Antoine425faf72013-07-02 12:06:00 +020065static struct module_pin_mux mmc_pin_mux[] = {
66 { OFFSET(pincntl157), PULLDOWN_EN | PULLUDDIS | MODE(0x0) },
67 { OFFSET(pincntl158), PULLDOWN_EN | PULLUDEN | MODE(0x0) },
68 { OFFSET(pincntl159), PULLUP_EN | PULLUDDIS | MODE(0x0) },
69 { OFFSET(pincntl160), PULLUP_EN | PULLUDDIS | MODE(0x0) },
70 { OFFSET(pincntl161), PULLUP_EN | PULLUDDIS | MODE(0x0) },
71 { OFFSET(pincntl162), PULLUP_EN | PULLUDDIS | MODE(0x0) },
72 { OFFSET(pincntl163), PULLUP_EN | PULLUDDIS | MODE(0x0) },
73 { -1 },
74};
75
Tom Rini86277332017-05-16 14:46:35 -040076void set_uart_mux_conf(void) {}
77
78void set_mux_conf_regs(void)
79{
80 configure_module_pin_mux(mmc_pin_mux);
81}
TENART Antoine425faf72013-07-02 12:06:00 +020082
83/*
Tom Rini86277332017-05-16 14:46:35 -040084 * EMIF Paramters. Refer the EMIF register documentation and the
85 * memory datasheet for details. This is for 796 MHz.
TENART Antoine425faf72013-07-02 12:06:00 +020086 */
Tom Rini86277332017-05-16 14:46:35 -040087#define EMIF_TIM1 0x1779C9FE
88#define EMIF_TIM2 0x50608074
89#define EMIF_TIM3 0x009F857F
90#define EMIF_SDREF 0x10001841
91#define EMIF_SDCFG 0x62A73832
92#define EMIF_PHYCFG 0x00000110
93static const struct emif_regs ddr3_emif_regs = {
94 .sdram_config = EMIF_SDCFG,
95 .ref_ctrl = EMIF_SDREF,
96 .sdram_tim1 = EMIF_TIM1,
97 .sdram_tim2 = EMIF_TIM2,
98 .sdram_tim3 = EMIF_TIM3,
99 .emif_ddr_phy_ctlr_1 = EMIF_PHYCFG,
TENART Antoine425faf72013-07-02 12:06:00 +0200100};
101
Tom Rini86277332017-05-16 14:46:35 -0400102static const struct cmd_control ddr3_ctrl = {
103 .cmd0csratio = 0x100,
104 .cmd0iclkout = 0x001,
105 .cmd1csratio = 0x100,
106 .cmd1iclkout = 0x001,
107 .cmd2csratio = 0x100,
108 .cmd2iclkout = 0x001,
TENART Antoine425faf72013-07-02 12:06:00 +0200109};
110
Tom Rini86277332017-05-16 14:46:35 -0400111/* These values are obtained from the CCS app */
112#define RD_DQS_GATE (0x1B3)
113#define RD_DQS (0x35)
114#define WR_DQS (0x93)
TENART Antoine425faf72013-07-02 12:06:00 +0200115static struct ddr_data ddr3_data = {
116 .datardsratio0 = ((RD_DQS<<10) | (RD_DQS<<0)),
117 .datawdsratio0 = ((WR_DQS<<10) | (WR_DQS<<0)),
118 .datawiratio0 = ((0x20<<10) | 0x20<<0),
119 .datagiratio0 = ((0x20<<10) | 0x20<<0),
120 .datafwsratio0 = ((RD_DQS_GATE<<10) | (RD_DQS_GATE<<0)),
121 .datawrsratio0 = (((WR_DQS+0x40)<<10) | ((WR_DQS+0x40)<<0)),
TENART Antoine425faf72013-07-02 12:06:00 +0200122};
123
Tom Rini86277332017-05-16 14:46:35 -0400124static const struct dmm_lisa_map_regs evm_lisa_map_regs = {
125 .dmm_lisa_map_0 = 0x00000000,
126 .dmm_lisa_map_1 = 0x00000000,
127 .dmm_lisa_map_2 = 0x80640300,
128 .dmm_lisa_map_3 = 0xC0640320,
TENART Antoine425faf72013-07-02 12:06:00 +0200129};
130
TENART Antoine425faf72013-07-02 12:06:00 +0200131void sdram_init(void)
132{
Tom Rini86277332017-05-16 14:46:35 -0400133 /*
134 * Pass in our DDR3 config information and that we have 2 EMIFs to
135 * configure.
136 */
137 config_ddr(&ddr3_data, &ddr3_ctrl, &ddr3_emif_regs,
138 &evm_lisa_map_regs, 2);
TENART Antoine425faf72013-07-02 12:06:00 +0200139}
140#endif /* CONFIG_SPL_BUILD */