Merge branch '2021-08-31-kconfig-migrations-part2' into next
[platform/kernel/u-boot.git] / include / configs / rk3128_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
4  */
5
6 #ifndef __CONFIG_RK3128_COMMON_H
7 #define __CONFIG_RK3128_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #define CONFIG_SYS_MAXARGS              16
12 #define CONFIG_SYS_CBSIZE               1024
13
14 #define CONFIG_ROCKCHIP_STIMER_BASE     0x200440a0
15 #define COUNTER_FREQUENCY               24000000
16 #define CONFIG_SYS_ARCH_TIMER
17 #define CONFIG_SYS_HZ_CLOCK             24000000
18
19 #define CONFIG_IRAM_BASE                0x10080000
20
21 #define CONFIG_SYS_INIT_SP_ADDR         0x60100000
22
23 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
24
25 /* RAW SD card / eMMC locations. */
26
27 #define CONFIG_SYS_SDRAM_BASE           0x60000000
28 #define SDRAM_MAX_SIZE                  0x80000000
29
30 #define CONFIG_USB_OHCI_NEW
31 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS     1
32
33 #ifndef CONFIG_SPL_BUILD
34
35 /* usb mass storage */
36
37 #define ENV_MEM_LAYOUT_SETTINGS \
38         "scriptaddr=0x60500000\0" \
39         "pxefile_addr_r=0x60600000\0" \
40         "fdt_addr_r=0x61f00000\0" \
41         "kernel_addr_r=0x62000000\0" \
42         "ramdisk_addr_r=0x64000000\0"
43
44 #include <config_distro_bootcmd.h>
45 #define CONFIG_EXTRA_ENV_SETTINGS \
46         ENV_MEM_LAYOUT_SETTINGS \
47         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
48         "partitions=" PARTS_DEFAULT \
49         BOOTENV
50
51 #endif
52
53 #endif