1 /* SPDX-License-Identifier: GPL-2.0+ */
3 #ifndef __SL28_CONFIG_H
4 #define __SL28_CONFIG_H
6 #include <asm/arch/stream_id_lsch3.h>
7 #include <asm/arch/config.h>
8 #include <asm/arch/soc.h>
10 /* we don't use hwconfig but this has to be defined.. */
11 #define HWCONFIG_BUFFER_SIZE 256
13 /* we don't have secure memory unless we have a BL31 */
14 #ifndef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
15 #undef CONFIG_SYS_MEM_RESERVE_SECURE
19 #define CONFIG_MEM_INIT_VALUE 0xdeadbeef
21 #define CONFIG_VERY_BIG_RAM
22 #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
23 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
24 #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
25 #define CONFIG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL
27 /* early stack pointer */
30 #define CPU_RELEASE_ADDR secondary_boot_addr
34 /* early heap for SPL DM */
35 #define CONFIG_MALLOC_F_ADDR CONFIG_SYS_FSL_OCRAM_BASE
38 #define CONFIG_SYS_NS16550_CLK (get_bus_freq(0) / 2)
42 /* GUID for capsule updatable firmware image */
43 #define KONTRON_SL28_FIT_IMAGE_GUID \
44 EFI_GUID(0x86ebd44f, 0xfeb8, 0x466f, 0x8b, 0xb8, \
45 0x89, 0x06, 0x18, 0x45, 0x6d, 0x8b)
48 /* see include/configs/ti_armv7_common.h */
49 #define ENV_MEM_LAYOUT_SETTINGS \
50 "loadaddr=0x82000000\0" \
51 "kernel_addr_r=0x82000000\0" \
52 "fdt_addr_r=0x88000000\0" \
53 "bootm_size=0x10000000\0" \
54 "pxefile_addr_r=0x80100000\0" \
55 "scriptaddr=0x80000000\0" \
56 "ramdisk_addr_r=0x88080000\0"
58 #define BOOT_TARGET_DEVICES(func) \
66 #include <config_distro_bootcmd.h>
68 #define CONFIG_EXTRA_ENV_SETTINGS \
69 "env_addr=0x203e0004\0" \
70 "envload=env import -d -b ${env_addr}\0" \
71 "install_rcw=source 20200000\0" \
72 "fdtfile=freescale/fsl-ls1028a-kontron-sl28.dtb\0" \
73 "dfu_alt_info=sf 0:0=u-boot-bin raw 0x210000 0x1d0000;" \
74 "u-boot-env raw 0x3e0000 0x20000\0" \
75 ENV_MEM_LAYOUT_SETTINGS \
78 #endif /* __SL28_CONFIG_H */