blob: 736ceb1f4855686e1ca44cc2ee62f60db84c5ccc [file] [log] [blame]
Anup Patel7a167f22019-02-25 08:15:19 +00001/* 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
Anup Patel16636832019-07-24 04:09:44 +000021#define CONFIG_SYS_BOOTM_LEN SZ_64M
Anup Patel7a167f22019-02-25 08:15:19 +000022
23#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
24
25/* Environment options */
Anup Patel16636832019-07-24 04:09:44 +000026#define CONFIG_ENV_SIZE SZ_128K
Anup Patel7a167f22019-02-25 08:15:19 +000027
28#define BOOT_TARGET_DEVICES(func) \
Alistair Francis5c74ae72019-08-16 11:00:00 -070029 func(MMC, mmc, 0) \
Anup Patel7a167f22019-02-25 08:15:19 +000030 func(DHCP, dhcp, na)
31
32#include <config_distro_bootcmd.h>
33
34#define CONFIG_EXTRA_ENV_SETTINGS \
35 "fdt_high=0xffffffffffffffff\0" \
36 "initrd_high=0xffffffffffffffff\0" \
Anup Patel16636832019-07-24 04:09:44 +000037 "kernel_addr_r=0x84000000\0" \
38 "fdt_addr_r=0x88000000\0" \
39 "scriptaddr=0x88100000\0" \
40 "pxefile_addr_r=0x88200000\0" \
41 "ramdisk_addr_r=0x88300000\0" \
Anup Patel7a167f22019-02-25 08:15:19 +000042 BOOTENV
43
Anup Patel16636832019-07-24 04:09:44 +000044#define CONFIG_PREBOOT \
45 "setenv fdt_addr ${fdtcontroladdr};" \
46 "fdt addr ${fdtcontroladdr};"
47
Anup Patel7a167f22019-02-25 08:15:19 +000048#endif /* __CONFIG_H */