blob: 2756ed5a77f3bdaf170e464756d5ca50e9d5e2d9 [file] [log] [blame]
Anup Patel3fda0262019-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 Patel53fd12c2019-07-24 04:09:44 +000021#define CONFIG_SYS_BOOTM_LEN SZ_64M
Anup Patel3fda0262019-02-25 08:15:19 +000022
23#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
24
25/* Environment options */
Anup Patel3fda0262019-02-25 08:15:19 +000026
27#define BOOT_TARGET_DEVICES(func) \
Alistair Francisf379fa62019-08-16 11:00:00 -070028 func(MMC, mmc, 0) \
Anup Patel3fda0262019-02-25 08:15:19 +000029 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" \
Anup Patel53fd12c2019-07-24 04:09:44 +000036 "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" \
Anup Patel3fda0262019-02-25 08:15:19 +000041 BOOTENV
42
Anup Patel53fd12c2019-07-24 04:09:44 +000043#define CONFIG_PREBOOT \
44 "setenv fdt_addr ${fdtcontroladdr};" \
45 "fdt addr ${fdtcontroladdr};"
46
Anup Patel3fda0262019-02-25 08:15:19 +000047#endif /* __CONFIG_H */