Convert CONFIG_SYS_BOOTM_LEN to Kconfig
[platform/kernel/u-boot.git] / include / configs / rk3308_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
4  */
5
6 #ifndef __CONFIG_RK3308_COMMON_H
7 #define __CONFIG_RK3308_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #define CONFIG_SYS_NS16550_MEM32
12
13 #define CONFIG_IRAM_BASE                0xfff80000
14
15 #define CONFIG_SYS_SDRAM_BASE           0
16 #define SDRAM_MAX_SIZE                  0xff000000
17 #define SDRAM_BANK_SIZE                 (2UL << 30)
18
19 #define ENV_MEM_LAYOUT_SETTINGS \
20         "scriptaddr=0x00500000\0" \
21         "pxefile_addr_r=0x00600000\0" \
22         "fdt_addr_r=0x02800000\0" \
23         "kernel_addr_r=0x00680000\0" \
24         "ramdisk_addr_r=0x04000000\0"
25
26 #include <config_distro_bootcmd.h>
27 #define CONFIG_EXTRA_ENV_SETTINGS \
28         ENV_MEM_LAYOUT_SETTINGS \
29         "partitions=" PARTS_DEFAULT \
30         ROCKCHIP_DEVICE_SETTINGS \
31         BOOTENV
32
33 #endif