rockchip: move ROCKCHIP_STIMER_BASE to Kconfig
[platform/kernel/u-boot.git] / include / configs / rk3368_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2016 Andreas Färber
4  */
5
6 #ifndef __CONFIG_RK3368_COMMON_H
7 #define __CONFIG_RK3368_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #include <asm/arch-rockchip/hardware.h>
12 #include <linux/sizes.h>
13
14 #define CONFIG_SYS_SDRAM_BASE           0
15 #define SDRAM_MAX_SIZE                  0xff000000
16 #define CONFIG_SYS_CBSIZE               1024
17
18 #define COUNTER_FREQUENCY               24000000
19
20 #define CONFIG_IRAM_BASE                0xff8c0000
21
22 #define CONFIG_SYS_INIT_SP_ADDR         0x00300000
23
24 #define CONFIG_SPL_MAX_SIZE             0x40000
25 #define CONFIG_SPL_BSS_START_ADDR       0x400000
26 #define CONFIG_SPL_BSS_MAX_SIZE         0x20000
27 #define CONFIG_SPL_STACK                0x00188000
28
29 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
30
31 #ifndef CONFIG_SPL_BUILD
32 #define ENV_MEM_LAYOUT_SETTINGS \
33         "scriptaddr=0x00500000\0" \
34         "pxefile_addr_r=0x00600000\0" \
35         "fdt_addr_r=0x5600000\0" \
36         "kernel_addr_r=0x280000\0" \
37         "ramdisk_addr_r=0x5bf0000\0"
38
39 #include <config_distro_bootcmd.h>
40
41 #define CONFIG_EXTRA_ENV_SETTINGS \
42         "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
43         ENV_MEM_LAYOUT_SETTINGS \
44         BOOTENV
45
46 #endif
47
48 #endif