7b36cd765ea41946880f531a93fb20136ed3cf29
[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_STACK                0x00400000
17 #define CONFIG_SPL_BSS_START_ADDR       0x4000000
18 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)      /* 64M */
19
20 #define GICD_BASE                       0xff131000
21 #define GICC_BASE                       0xff132000
22
23 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
24
25 #define CONFIG_SYS_SDRAM_BASE           0
26 #define SDRAM_MAX_SIZE                  0xff000000
27 #define SDRAM_BANK_SIZE                 (2UL << 30)
28
29 #ifndef CONFIG_SPL_BUILD
30
31 #define ENV_MEM_LAYOUT_SETTINGS \
32         "scriptaddr=0x00500000\0" \
33         "pxefile_addr_r=0x00600000\0" \
34         "fdt_addr_r=0x08300000\0" \
35         "kernel_addr_r=0x00280000\0" \
36         "kernel_addr_c=0x03e80000\0" \
37         "ramdisk_addr_r=0x0a200000\0"
38
39 #include <config_distro_bootcmd.h>
40 #define CONFIG_EXTRA_ENV_SETTINGS \
41         ENV_MEM_LAYOUT_SETTINGS \
42         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
43         "partitions=" PARTS_DEFAULT \
44         ROCKCHIP_DEVICE_SETTINGS \
45         BOOTENV
46
47 #endif
48
49 #endif