2019-02-25 08:15:19 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
|
|
|
|
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
|
|
|
|
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN SZ_8M
|
|
|
|
|
2019-07-24 04:09:44 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
2019-02-25 08:15:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
|
|
|
|
|
|
|
|
/* Environment options */
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
2019-08-16 18:00:00 +00:00
|
|
|
func(MMC, mmc, 0) \
|
2019-02-25 08:15:19 +00:00
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2019-07-24 04:09:44 +00:00
|
|
|
"kernel_addr_r=0x84000000\0" \
|
|
|
|
"fdt_addr_r=0x88000000\0" \
|
|
|
|
"scriptaddr=0x88100000\0" \
|
|
|
|
"pxefile_addr_r=0x88200000\0" \
|
|
|
|
"ramdisk_addr_r=0x88300000\0" \
|
2019-02-25 08:15:19 +00:00
|
|
|
BOOTENV
|
|
|
|
|
2019-07-24 04:09:44 +00:00
|
|
|
#define CONFIG_PREBOOT \
|
|
|
|
"setenv fdt_addr ${fdtcontroladdr};" \
|
|
|
|
"fdt addr ${fdtcontroladdr};"
|
|
|
|
|
2019-02-25 08:15:19 +00:00
|
|
|
#endif /* __CONFIG_H */
|