8e137376661bdbb3d51b60c41136c568faf12e8f
[platform/kernel/u-boot.git] / include / configs / rk3399_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4  */
5
6 #ifndef __CONFIG_RK3399_COMMON_H
7 #define __CONFIG_RK3399_COMMON_H
8
9 #include "rockchip-common.h"
10
11 #define CONFIG_SYS_CBSIZE               1024
12
13 #define CONFIG_IRAM_BASE                0xff8c0000
14
15 #define CONFIG_SYS_INIT_SP_ADDR         0x00300000
16
17 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT)
18 #define CONFIG_SPL_STACK                0x00400000
19 #define CONFIG_SPL_MAX_SIZE             0x40000
20 #define CONFIG_SPL_BSS_START_ADDR       0x00400000
21 #define CONFIG_SPL_BSS_MAX_SIZE         0x2000
22 #else
23 #define CONFIG_SPL_STACK                0xff8effff
24 #define CONFIG_SPL_MAX_SIZE             0x30000 - 0x2000
25 /*  BSS setup */
26 #define CONFIG_SPL_BSS_START_ADDR       0xff8e0000
27 #define CONFIG_SPL_BSS_MAX_SIZE         0x10000
28 #endif
29
30 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)      /* 64M */
31
32 /* MMC/SD IP block */
33 #define CONFIG_ROCKCHIP_SDHCI_MAX_FREQ  200000000
34
35 /* RAW SD card / eMMC locations. */
36
37 /* FAT sd card locations. */
38 #define CONFIG_SYS_SDRAM_BASE           0
39 #define SDRAM_MAX_SIZE                  0xf8000000
40
41 #ifndef CONFIG_SPL_BUILD
42
43 #define ENV_MEM_LAYOUT_SETTINGS \
44         "scriptaddr=0x00500000\0" \
45         "script_offset_f=0xffe000\0" \
46         "script_size_f=0x2000\0" \
47         "pxefile_addr_r=0x00600000\0" \
48         "fdt_addr_r=0x01f00000\0" \
49         "fdtoverlay_addr_r=0x02000000\0" \
50         "kernel_addr_r=0x02080000\0" \
51         "ramdisk_addr_r=0x06000000\0" \
52         "kernel_comp_addr_r=0x08000000\0" \
53         "kernel_comp_size=0x2000000\0"
54
55 #ifndef ROCKCHIP_DEVICE_SETTINGS
56 #define ROCKCHIP_DEVICE_SETTINGS
57 #endif
58
59 #include <config_distro_bootcmd.h>
60 #include <environment/distro/sf.h>
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62         ENV_MEM_LAYOUT_SETTINGS \
63         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
64         "partitions=" PARTS_DEFAULT \
65         ROCKCHIP_DEVICE_SETTINGS \
66         BOOTENV \
67         BOOTENV_SF \
68         "altbootcmd=" \
69                 "setenv boot_syslinux_conf extlinux/extlinux-rollback.conf;" \
70                 "run distro_bootcmd\0"
71
72 #endif
73
74 #endif