Convert CONFIG_PCI_GT64120 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 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)      /* 64M */
15
16
17 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
18
19 #define CONFIG_SYS_SDRAM_BASE           0
20 #define SDRAM_MAX_SIZE                  0xff000000
21 #define SDRAM_BANK_SIZE                 (2UL << 30)
22
23 #define ENV_MEM_LAYOUT_SETTINGS \
24         "scriptaddr=0x00500000\0" \
25         "pxefile_addr_r=0x00600000\0" \
26         "fdt_addr_r=0x02800000\0" \
27         "kernel_addr_r=0x00680000\0" \
28         "ramdisk_addr_r=0x04000000\0"
29
30 #include <config_distro_bootcmd.h>
31 #define CONFIG_EXTRA_ENV_SETTINGS \
32         ENV_MEM_LAYOUT_SETTINGS \
33         "partitions=" PARTS_DEFAULT \
34         ROCKCHIP_DEVICE_SETTINGS \
35         BOOTENV
36
37 #endif