1 // SPDX-License-Identifier: GPL-2.0+
3 * Keystone : Board initialization
6 * Texas Instruments Incorporated, <www.ti.com>
17 #include <fdt_support.h>
18 #include <asm/arch/ddr3.h>
19 #include <asm/arch/psc_defs.h>
20 #include <asm/arch/clock.h>
21 #include <asm/ti-common/ti-aemif.h>
22 #include <asm/ti-common/keystone_net.h>
24 DECLARE_GLOBAL_DATA_PTR;
26 #if defined(CONFIG_TI_AEMIF)
27 static struct aemif_config aemif_configs[] = {
29 .mode = AEMIF_MODE_NAND,
37 .width = AEMIF_WIDTH_8,
46 ddr3_size = ddr3_init();
48 gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
49 CONFIG_MAX_RAM_BANK_SIZE);
50 #if defined(CONFIG_TI_AEMIF)
51 if (!board_is_k2g_ice())
52 aemif_init(ARRAY_SIZE(aemif_configs), aemif_configs);
55 if (!board_is_k2g_ice()) {
57 ddr3_init_ecc(KS2_DDR3A_EMIF_CTRL_BASE, ddr3_size);
59 ddr3_init_ecc(KS2_DDR3A_EMIF_CTRL_BASE,
66 struct image_header *spl_get_load_buffer(ssize_t offset, size_t size)
68 return (struct image_header *)(CONFIG_SYS_TEXT_BASE);
73 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
77 #ifdef CONFIG_SPL_BUILD
78 void spl_board_init(void)
80 spl_init_keystone_plls();
81 preloader_console_init();
84 u32 spl_boot_device(void)
86 #if defined(CONFIG_SPL_SPI_LOAD)
87 return BOOT_DEVICE_SPI;
89 puts("Unknown boot device\n");
95 #ifdef CONFIG_OF_BOARD_SETUP
96 int ft_board_setup(void *blob, bd_t *bd)
106 env = env_get("mem_lpae");
107 lpae = env && simple_strtol(env, NULL, 0);
111 ddr3a_size = ddr3_get_size();
112 if ((ddr3a_size != 8) && (ddr3a_size != 4))
117 start[0] = bd->bi_dram[0].start;
118 size[0] = bd->bi_dram[0].size;
120 /* adjust memory start address for LPAE */
122 start[0] -= CONFIG_SYS_SDRAM_BASE;
123 start[0] += CONFIG_SYS_LPAE_SDRAM_BASE;
126 if ((size[0] == 0x80000000) && (ddr3a_size != 0)) {
127 size[1] = ((u64)ddr3a_size - 2) << 30;
128 start[1] = 0x880000000;
132 /* reserve memory at start of bank */
133 env = env_get("mem_reserve_head");
135 start[0] += ustrtoul(env, &endp, 0);
136 size[0] -= ustrtoul(env, &endp, 0);
139 env = env_get("mem_reserve");
141 size[0] -= ustrtoul(env, &endp, 0);
143 fdt_fixup_memory_banks(blob, start, size, nbanks);
148 void ft_board_setup_ex(void *blob, bd_t *bd)
154 int unitrd_fixup = 0;
156 env = env_get("mem_lpae");
157 lpae = env && simple_strtol(env, NULL, 0);
158 env = env_get("uinitrd_fixup");
159 unitrd_fixup = env && simple_strtol(env, NULL, 0);
161 /* Fix up the initrd */
162 if (lpae && unitrd_fixup) {
166 u64 initrd_start, initrd_end;
168 nodeoffset = fdt_path_offset(blob, "/chosen");
169 if (nodeoffset >= 0) {
170 prop1 = (u64 *)fdt_getprop(blob, nodeoffset,
171 "linux,initrd-start", NULL);
172 prop2 = (u64 *)fdt_getprop(blob, nodeoffset,
173 "linux,initrd-end", NULL);
174 if (prop1 && prop2) {
175 initrd_start = __be64_to_cpu(*prop1);
176 initrd_start -= CONFIG_SYS_SDRAM_BASE;
177 initrd_start += CONFIG_SYS_LPAE_SDRAM_BASE;
178 initrd_start = __cpu_to_be64(initrd_start);
179 initrd_end = __be64_to_cpu(*prop2);
180 initrd_end -= CONFIG_SYS_SDRAM_BASE;
181 initrd_end += CONFIG_SYS_LPAE_SDRAM_BASE;
182 initrd_end = __cpu_to_be64(initrd_end);
184 err = fdt_delprop(blob, nodeoffset,
185 "linux,initrd-start");
187 puts("error deleting initrd-start\n");
189 err = fdt_delprop(blob, nodeoffset,
192 puts("error deleting initrd-end\n");
194 err = fdt_setprop(blob, nodeoffset,
195 "linux,initrd-start",
197 sizeof(initrd_start));
199 puts("error adding initrd-start\n");
201 err = fdt_setprop(blob, nodeoffset,
206 puts("error adding linux,initrd-end\n");
213 * the initrd and other reserved memory areas are
214 * embedded in in the DTB itslef. fix up these addresses
217 reserve_start = (u64 *)((char *)blob +
218 fdt_off_mem_rsvmap(blob));
220 *reserve_start = __cpu_to_be64(*reserve_start);
221 size = __cpu_to_be64(*(reserve_start + 1));
223 *reserve_start -= CONFIG_SYS_SDRAM_BASE;
225 CONFIG_SYS_LPAE_SDRAM_BASE;
227 __cpu_to_be64(*reserve_start);
235 ddr3_check_ecc_int(KS2_DDR3A_EMIF_CTRL_BASE);
237 #endif /* CONFIG_OF_BOARD_SETUP */
239 #if defined(CONFIG_DTB_RESELECT)
240 int __weak embedded_dtb_select(void)