]>
Commit | Line | Data |
---|---|---|
3fda0262 AP |
1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
2 | /* | |
3 | * Copyright (c) 2019 Western Digital Corporation or its affiliates. | |
4 | * | |
5 | * Authors: | |
6 | * Anup Patel <[email protected]> | |
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_16M | |
22 | ||
23 | #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000 | |
24 | ||
25 | /* Environment options */ | |
26 | #define CONFIG_ENV_SIZE SZ_4K | |
27 | ||
28 | #define BOOT_TARGET_DEVICES(func) \ | |
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=0x80600000\0" \ | |
37 | "fdt_addr_r=0x82200000\0" \ | |
38 | "scriptaddr=0x82300000\0" \ | |
39 | "pxefile_addr_r=0x82400000\0" \ | |
40 | "ramdisk_addr_r=0x82500000\0" \ | |
41 | BOOTENV | |
42 | ||
43 | #endif /* __CONFIG_H */ |