5db5fc46c622d000af94e064295beef1836d42cf
[platform/kernel/u-boot.git] / include / configs / poplar.h
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 #define CONFIG_SYS_BOOTM_LEN                    SZ_64M
20 #define CONFIG_SYS_INIT_SP_ADDR                 0x200000
21 #define CONFIG_SYS_MALLOC_LEN                   SZ_32M
22
23 /* ATF bl33.bin load address (must match) */
24
25 /* USB configuration */
26 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
27
28 /*****************************************************************************
29  *  Initial environment variables
30  *****************************************************************************/
31
32 #define BOOT_TARGET_DEVICES(func)                                       \
33                                         func(USB, usb, 0)               \
34                                         func(MMC, mmc, 0)               \
35                                         func(DHCP, dhcp, na)
36 #ifndef CONFIG_SPL_BUILD
37 #include <config_distro_bootcmd.h>
38 #endif
39
40 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
41                         "loader_mmc_blknum=0x0\0"                       \
42                         "loader_mmc_nblks=0x780\0"                      \
43                         "env_mmc_blknum=0xf80\0"                        \
44                         "env_mmc_nblks=0x80\0"                          \
45                         "kernel_addr_r=0x30000000\0"                    \
46                         "pxefile_addr_r=0x32000000\0"                   \
47                         "scriptaddr=0x32000000\0"                       \
48                         "fdt_addr_r=0x32200000\0"                       \
49                         "fdtfile=hisilicon/hi3798cv200-poplar.dtb\0"    \
50                         "ramdisk_addr_r=0x32400000\0"                   \
51                         BOOTENV
52
53 /* Monitor Command Prompt */
54 #define CONFIG_SYS_CBSIZE               512
55 #define CONFIG_SYS_MAXARGS              64
56
57 #endif /* _POPLAR_H_ */