1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2017 Linaro 4 * 5 * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 6 * 7 * Configuration for Poplar 96boards CE. Parts were derived from other ARM 8 * configurations. 9 */ 10 11 #ifndef _POPLAR_H_ 12 #define _POPLAR_H_ 13 14 #include <linux/sizes.h> 15 16 /* DRAM banks */ 17 18 /* SYS */ 19 20 /* ATF bl33.bin load address (must match) */ 21 22 /* USB configuration */ 23 24 /***************************************************************************** 25 * Initial environment variables 26 *****************************************************************************/ 27 28 #define BOOT_TARGET_DEVICES(func) \ 29 func(USB, usb, 0) \ 30 func(MMC, mmc, 0) \ 31 func(DHCP, dhcp, na) 32 #include <config_distro_bootcmd.h> 33 34 #define CFG_EXTRA_ENV_SETTINGS \ 35 "loader_mmc_blknum=0x0\0" \ 36 "loader_mmc_nblks=0x780\0" \ 37 "env_mmc_blknum=0xf80\0" \ 38 "env_mmc_nblks=0x80\0" \ 39 "kernel_addr_r=0x30000000\0" \ 40 "pxefile_addr_r=0x33000000\0" \ 41 "scriptaddr=0x33000000\0" \ 42 "fdt_addr_r=0x33200000\0" \ 43 "fdtfile=hisilicon/hi3798cv200-poplar.dtb\0" \ 44 "ramdisk_addr_r=0x33400000\0" \ 45 BOOTENV 46 47 #endif /* _POPLAR_H_ */ 48