• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2019 Western Digital Corporation or its affiliates.
4  *
5  * Authors:
6  *   Anup Patel <anup.patel@wdc.com>
7  */
8 
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11 
12 #include <linux/sizes.h>
13 
14 #define CONFIG_SYS_SDRAM_BASE		0x80000000
15 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_SDRAM_BASE + SZ_2M)
16 
17 #define CONFIG_SYS_LOAD_ADDR		(CONFIG_SYS_SDRAM_BASE + SZ_2M)
18 
19 #define CONFIG_SYS_MALLOC_LEN		SZ_8M
20 
21 #define CONFIG_SYS_BOOTM_LEN		SZ_64M
22 
23 #define CONFIG_STANDALONE_LOAD_ADDR	0x80200000
24 
25 /* Environment options */
26 
27 #define BOOT_TARGET_DEVICES(func) \
28 	func(MMC, mmc, 0) \
29 	func(DHCP, dhcp, na)
30 
31 #include <config_distro_bootcmd.h>
32 
33 #define CONFIG_EXTRA_ENV_SETTINGS \
34 	"fdt_high=0xffffffffffffffff\0" \
35 	"initrd_high=0xffffffffffffffff\0" \
36 	"kernel_addr_r=0x84000000\0" \
37 	"fdt_addr_r=0x88000000\0" \
38 	"scriptaddr=0x88100000\0" \
39 	"pxefile_addr_r=0x88200000\0" \
40 	"ramdisk_addr_r=0x88300000\0" \
41 	BOOTENV
42 
43 #define CONFIG_PREBOOT \
44 	"setenv fdt_addr ${fdtcontroladdr};" \
45 	"fdt addr ${fdtcontroladdr};"
46 
47 #endif /* __CONFIG_H */
48