blob: 274f18e942fa68f8ddbf033e634a32f851894f1c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -04002/*
Hao Zhang8e697a02014-07-09 23:44:46 +03003 * Keystone : Board initialization
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -04004 *
Hao Zhang8e697a02014-07-09 23:44:46 +03005 * (C) Copyright 2014
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -04006 * Texas Instruments Incorporated, <www.ti.com>
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -04007 */
8
9#include <common.h>
Vitaly Andrianov1ee31512016-03-11 08:23:04 -050010#include "board.h"
Hao Zhang95948202014-10-22 16:32:31 +030011#include <spl.h>
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040012#include <exports.h>
13#include <fdt_support.h>
Khoronzhuk, Ivan50df5cc2014-07-09 19:48:40 +030014#include <asm/arch/ddr3.h>
Khoronzhuk, Ivan238de852014-09-29 22:17:24 +030015#include <asm/arch/psc_defs.h>
Lokesh Vutlada18b182015-10-08 11:31:47 +053016#include <asm/arch/clock.h>
Khoronzhuk, Ivan8062b052014-06-07 05:10:49 +030017#include <asm/ti-common/ti-aemif.h>
Khoronzhuk, Ivanf2c13ba2014-09-29 22:17:22 +030018#include <asm/ti-common/keystone_net.h>
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040019
20DECLARE_GLOBAL_DATA_PTR;
21
Lokesh Vutla56c8f0a2016-04-13 09:50:59 +053022#if defined(CONFIG_TI_AEMIF)
Khoronzhuk, Ivan8062b052014-06-07 05:10:49 +030023static struct aemif_config aemif_configs[] = {
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040024 { /* CS0 */
Khoronzhuk, Ivan8062b052014-06-07 05:10:49 +030025 .mode = AEMIF_MODE_NAND,
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040026 .wr_setup = 0xf,
27 .wr_strobe = 0x3f,
28 .wr_hold = 7,
29 .rd_setup = 0xf,
30 .rd_strobe = 0x3f,
31 .rd_hold = 7,
32 .turn_around = 3,
Khoronzhuk, Ivan8062b052014-06-07 05:10:49 +030033 .width = AEMIF_WIDTH_8,
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040034 },
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040035};
Lokesh Vutla56c8f0a2016-04-13 09:50:59 +053036#endif
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040037
38int dram_init(void)
39{
Vitaly Andrianova9554d62015-02-11 14:07:58 -050040 u32 ddr3_size;
41
42 ddr3_size = ddr3_init();
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040043
44 gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
45 CONFIG_MAX_RAM_BANK_SIZE);
Lokesh Vutla56c8f0a2016-04-13 09:50:59 +053046#if defined(CONFIG_TI_AEMIF)
Cooper Jr., Franklin6e549452017-06-16 17:25:25 -050047 if (!board_is_k2g_ice())
48 aemif_init(ARRAY_SIZE(aemif_configs), aemif_configs);
Lokesh Vutla56c8f0a2016-04-13 09:50:59 +053049#endif
50
Cooper Jr., Franklin6e549452017-06-16 17:25:25 -050051 if (!board_is_k2g_ice()) {
52 if (ddr3_size)
53 ddr3_init_ecc(KS2_DDR3A_EMIF_CTRL_BASE, ddr3_size);
54 else
55 ddr3_init_ecc(KS2_DDR3A_EMIF_CTRL_BASE,
56 gd->ram_size >> 30);
57 }
Lokesh Vutlab4b5aac2016-08-27 17:19:15 +053058
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040059 return 0;
60}
61
Hao Zhang8e697a02014-07-09 23:44:46 +030062int board_init(void)
63{
Nishanth Menon842649d2015-07-22 18:05:43 -050064 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Hao Zhang8e697a02014-07-09 23:44:46 +030065
66 return 0;
67}
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -040068
Hao Zhang8e697a02014-07-09 23:44:46 +030069#ifdef CONFIG_DRIVER_TI_KEYSTONE_NET
Mugunthan V N33fab262016-02-02 15:51:31 +053070#ifndef CONFIG_DM_ETH
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -040071int get_eth_env_param(char *env_name)
72{
73 char *env;
Hao Zhang8e697a02014-07-09 23:44:46 +030074 int res = -1;
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -040075
Simon Glass64b723f2017-08-03 12:22:12 -060076 env = env_get(env_name);
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -040077 if (env)
78 res = simple_strtol(env, NULL, 0);
79
80 return res;
81}
82
83int board_eth_init(bd_t *bis)
84{
Hao Zhang8e697a02014-07-09 23:44:46 +030085 int j;
86 int res;
87 int port_num;
88 char link_type_name[32];
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -040089
Vitaly Andrianovcafc8f42015-09-19 16:26:52 +053090 if (cpu_is_k2g())
91 writel(KS2_ETHERNET_RGMII, KS2_ETHERNET_CFG);
92
Khoronzhuk, Ivan238de852014-09-29 22:17:24 +030093 /* By default, select PA PLL clock as PA clock source */
Vitaly Andrianovcafc8f42015-09-19 16:26:52 +053094#ifndef CONFIG_SOC_K2G
Khoronzhuk, Ivan238de852014-09-29 22:17:24 +030095 if (psc_enable_module(KS2_LPSC_PA))
96 return -1;
Vitaly Andrianovcafc8f42015-09-19 16:26:52 +053097#endif
Khoronzhuk, Ivan238de852014-09-29 22:17:24 +030098 if (psc_enable_module(KS2_LPSC_CPGMAC))
99 return -1;
100 if (psc_enable_module(KS2_LPSC_CRYPTO))
101 return -1;
102
Lokesh Vutlada18b182015-10-08 11:31:47 +0530103 if (cpu_is_k2e() || cpu_is_k2l())
104 pll_pa_clk_sel();
105
Hao Zhang8e697a02014-07-09 23:44:46 +0300106 port_num = get_num_eth_ports();
107
108 for (j = 0; j < port_num; j++) {
Karicheri, Muralidharan657f6b52014-04-01 15:01:13 -0400109 sprintf(link_type_name, "sgmii%d_link_type", j);
110 res = get_eth_env_param(link_type_name);
111 if (res >= 0)
112 eth_priv_cfg[j].sgmii_link_type = res;
113
114 keystone2_emac_initialize(&eth_priv_cfg[j]);
115 }
116
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400117 return 0;
118}
119#endif
Mugunthan V N33fab262016-02-02 15:51:31 +0530120#endif
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400121
Hao Zhang95948202014-10-22 16:32:31 +0300122#ifdef CONFIG_SPL_BUILD
123void spl_board_init(void)
124{
125 spl_init_keystone_plls();
126 preloader_console_init();
127}
128
129u32 spl_boot_device(void)
130{
131#if defined(CONFIG_SPL_SPI_LOAD)
132 return BOOT_DEVICE_SPI;
133#else
134 puts("Unknown boot device\n");
135 hang();
136#endif
137}
138#endif
139
Robert P. J. Day3c757002016-05-19 15:23:12 -0400140#ifdef CONFIG_OF_BOARD_SETUP
Simon Glass2aec3cc2014-10-23 18:58:47 -0600141int ft_board_setup(void *blob, bd_t *bd)
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400142{
Hao Zhang8e697a02014-07-09 23:44:46 +0300143 int lpae;
144 char *env;
145 char *endp;
146 int nbanks;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400147 u64 size[2];
Hao Zhang8e697a02014-07-09 23:44:46 +0300148 u64 start[2];
Hao Zhang8e697a02014-07-09 23:44:46 +0300149 int nodeoffset;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400150 u32 ddr3a_size;
Hao Zhang8e697a02014-07-09 23:44:46 +0300151 int unitrd_fixup = 0;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400152
Simon Glass64b723f2017-08-03 12:22:12 -0600153 env = env_get("mem_lpae");
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400154 lpae = env && simple_strtol(env, NULL, 0);
Simon Glass64b723f2017-08-03 12:22:12 -0600155 env = env_get("uinitrd_fixup");
Murali Karicheri1b845322014-07-09 23:44:45 +0300156 unitrd_fixup = env && simple_strtol(env, NULL, 0);
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400157
158 ddr3a_size = 0;
159 if (lpae) {
Vitaly Andrianov539de5f2016-03-04 10:36:43 -0600160 ddr3a_size = ddr3_get_size();
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400161 if ((ddr3a_size != 8) && (ddr3a_size != 4))
162 ddr3a_size = 0;
163 }
164
165 nbanks = 1;
166 start[0] = bd->bi_dram[0].start;
167 size[0] = bd->bi_dram[0].size;
168
169 /* adjust memory start address for LPAE */
170 if (lpae) {
Hao Zhang8e697a02014-07-09 23:44:46 +0300171 start[0] -= CONFIG_SYS_SDRAM_BASE;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400172 start[0] += CONFIG_SYS_LPAE_SDRAM_BASE;
173 }
174
175 if ((size[0] == 0x80000000) && (ddr3a_size != 0)) {
176 size[1] = ((u64)ddr3a_size - 2) << 30;
177 start[1] = 0x880000000;
178 nbanks++;
179 }
180
181 /* reserve memory at start of bank */
Simon Glass64b723f2017-08-03 12:22:12 -0600182 env = env_get("mem_reserve_head");
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400183 if (env) {
184 start[0] += ustrtoul(env, &endp, 0);
185 size[0] -= ustrtoul(env, &endp, 0);
186 }
187
Simon Glass64b723f2017-08-03 12:22:12 -0600188 env = env_get("mem_reserve");
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400189 if (env)
190 size[0] -= ustrtoul(env, &endp, 0);
191
192 fdt_fixup_memory_banks(blob, start, size, nbanks);
193
194 /* Fix up the initrd */
Murali Karicheri1b845322014-07-09 23:44:45 +0300195 if (lpae && unitrd_fixup) {
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400196 int err;
Hao Zhang8e697a02014-07-09 23:44:46 +0300197 u32 *prop1, *prop2;
198 u64 initrd_start, initrd_end;
Murali Karicheri1b845322014-07-09 23:44:45 +0300199
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400200 nodeoffset = fdt_path_offset(blob, "/chosen");
201 if (nodeoffset >= 0) {
202 prop1 = (u32 *)fdt_getprop(blob, nodeoffset,
203 "linux,initrd-start", NULL);
204 prop2 = (u32 *)fdt_getprop(blob, nodeoffset,
205 "linux,initrd-end", NULL);
206 if (prop1 && prop2) {
207 initrd_start = __be32_to_cpu(*prop1);
Hao Zhang8e697a02014-07-09 23:44:46 +0300208 initrd_start -= CONFIG_SYS_SDRAM_BASE;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400209 initrd_start += CONFIG_SYS_LPAE_SDRAM_BASE;
210 initrd_start = __cpu_to_be64(initrd_start);
211 initrd_end = __be32_to_cpu(*prop2);
Hao Zhang8e697a02014-07-09 23:44:46 +0300212 initrd_end -= CONFIG_SYS_SDRAM_BASE;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400213 initrd_end += CONFIG_SYS_LPAE_SDRAM_BASE;
214 initrd_end = __cpu_to_be64(initrd_end);
215
216 err = fdt_delprop(blob, nodeoffset,
217 "linux,initrd-start");
218 if (err < 0)
219 puts("error deleting initrd-start\n");
220
221 err = fdt_delprop(blob, nodeoffset,
222 "linux,initrd-end");
223 if (err < 0)
224 puts("error deleting initrd-end\n");
225
226 err = fdt_setprop(blob, nodeoffset,
227 "linux,initrd-start",
228 &initrd_start,
229 sizeof(initrd_start));
230 if (err < 0)
231 puts("error adding initrd-start\n");
232
233 err = fdt_setprop(blob, nodeoffset,
234 "linux,initrd-end",
235 &initrd_end,
236 sizeof(initrd_end));
237 if (err < 0)
238 puts("error adding linux,initrd-end\n");
239 }
240 }
241 }
Simon Glass2aec3cc2014-10-23 18:58:47 -0600242
243 return 0;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400244}
245
246void ft_board_setup_ex(void *blob, bd_t *bd)
247{
Hao Zhang8e697a02014-07-09 23:44:46 +0300248 int lpae;
249 u64 size;
250 char *env;
251 u64 *reserve_start;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400252
Simon Glass64b723f2017-08-03 12:22:12 -0600253 env = env_get("mem_lpae");
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400254 lpae = env && simple_strtol(env, NULL, 0);
255
256 if (lpae) {
257 /*
258 * the initrd and other reserved memory areas are
259 * embedded in in the DTB itslef. fix up these addresses
260 * to 36 bit format
261 */
262 reserve_start = (u64 *)((char *)blob +
263 fdt_off_mem_rsvmap(blob));
264 while (1) {
265 *reserve_start = __cpu_to_be64(*reserve_start);
266 size = __cpu_to_be64(*(reserve_start + 1));
267 if (size) {
Hao Zhang8e697a02014-07-09 23:44:46 +0300268 *reserve_start -= CONFIG_SYS_SDRAM_BASE;
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400269 *reserve_start +=
270 CONFIG_SYS_LPAE_SDRAM_BASE;
271 *reserve_start =
272 __cpu_to_be64(*reserve_start);
273 } else {
274 break;
275 }
276 reserve_start += 2;
277 }
278 }
Vitaly Andrianov19173012014-10-22 17:47:58 +0300279
280 ddr3_check_ecc_int(KS2_DDR3A_EMIF_CTRL_BASE);
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400281}
Robert P. J. Day3c757002016-05-19 15:23:12 -0400282#endif /* CONFIG_OF_BOARD_SETUP */
Cooper Jr., Franklin74f22ca2017-06-16 17:25:15 -0500283
284#if defined(CONFIG_DTB_RESELECT)
285int __weak embedded_dtb_select(void)
286{
287 return 0;
288}
289#endif