Convert CONFIG_SPL_STACK to Kconfig
[platform/kernel/u-boot.git] / include / configs / px30_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
4  */
5
6 #ifndef __CONFIG_PX30_COMMON_H
7 #define __CONFIG_PX30_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #define CONFIG_SYS_NS16550_MEM32
12
13 /* FIXME: ff020000 is pmu_mem (10k), while ff0e0000 is regular int_mem */
14 #define CONFIG_IRAM_BASE                0xff020000
15
16 #define CONFIG_SPL_BSS_START_ADDR       0x4000000
17 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)      /* 64M */
18
19 #define GICD_BASE                       0xff131000
20 #define GICC_BASE                       0xff132000
21
22 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
23
24 #define CONFIG_SYS_SDRAM_BASE           0
25 #define SDRAM_MAX_SIZE                  0xff000000
26 #define SDRAM_BANK_SIZE                 (2UL << 30)
27
28 #ifndef CONFIG_SPL_BUILD
29
30 #define ENV_MEM_LAYOUT_SETTINGS \
31         "scriptaddr=0x00500000\0" \
32         "pxefile_addr_r=0x00600000\0" \
33         "fdt_addr_r=0x08300000\0" \
34         "kernel_addr_r=0x00280000\0" \
35         "kernel_addr_c=0x03e80000\0" \
36         "ramdisk_addr_r=0x0a200000\0"
37
38 #include <config_distro_bootcmd.h>
39 #define CONFIG_EXTRA_ENV_SETTINGS \
40         ENV_MEM_LAYOUT_SETTINGS \
41         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
42         "partitions=" PARTS_DEFAULT \
43         ROCKCHIP_DEVICE_SETTINGS \
44         BOOTENV
45
46 #endif
47
48 #endif