global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
[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_IRAM_BASE                0xfff80000
12
13 #define CFG_SYS_SDRAM_BASE              0
14 #define SDRAM_MAX_SIZE                  0xff000000
15 #define SDRAM_BANK_SIZE                 (2UL << 30)
16
17 #define ENV_MEM_LAYOUT_SETTINGS \
18         "scriptaddr=0x00500000\0" \
19         "pxefile_addr_r=0x00600000\0" \
20         "fdt_addr_r=0x02800000\0" \
21         "kernel_addr_r=0x00680000\0" \
22         "ramdisk_addr_r=0x04000000\0"
23
24 #include <config_distro_bootcmd.h>
25 #define CONFIG_EXTRA_ENV_SETTINGS \
26         ENV_MEM_LAYOUT_SETTINGS \
27         "partitions=" PARTS_DEFAULT \
28         ROCKCHIP_DEVICE_SETTINGS \
29         BOOTENV
30
31 #endif