]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/rk3399_common.h
Convert CONFIG_SPL_PAD_TO et al to Kconfig
[thirdparty/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_IRAM_BASE 0xff8c0000
12
13 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000
14
15 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT)
16 #define CONFIG_SPL_STACK 0x00400000
17 #define CONFIG_SPL_BSS_START_ADDR 0x00400000
18 #define CONFIG_SPL_BSS_MAX_SIZE 0x2000
19 #else
20 #define CONFIG_SPL_STACK 0xff8effff
21 /* BSS setup */
22 #define CONFIG_SPL_BSS_START_ADDR 0xff8e0000
23 #define CONFIG_SPL_BSS_MAX_SIZE 0x10000
24 #endif
25
26 #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
27
28 /* MMC/SD IP block */
29 #define CONFIG_ROCKCHIP_SDHCI_MAX_FREQ 200000000
30
31 /* RAW SD card / eMMC locations. */
32
33 /* FAT sd card locations. */
34 #define CONFIG_SYS_SDRAM_BASE 0
35 #define SDRAM_MAX_SIZE 0xf8000000
36
37 #ifndef CONFIG_SPL_BUILD
38
39 #define ENV_MEM_LAYOUT_SETTINGS \
40 "scriptaddr=0x00500000\0" \
41 "script_offset_f=0xffe000\0" \
42 "script_size_f=0x2000\0" \
43 "pxefile_addr_r=0x00600000\0" \
44 "fdt_addr_r=0x01f00000\0" \
45 "fdtoverlay_addr_r=0x02000000\0" \
46 "kernel_addr_r=0x02080000\0" \
47 "ramdisk_addr_r=0x06000000\0" \
48 "kernel_comp_addr_r=0x08000000\0" \
49 "kernel_comp_size=0x2000000\0"
50
51 #ifndef ROCKCHIP_DEVICE_SETTINGS
52 #define ROCKCHIP_DEVICE_SETTINGS
53 #endif
54
55 #include <config_distro_bootcmd.h>
56 #include <environment/distro/sf.h>
57 #define CONFIG_EXTRA_ENV_SETTINGS \
58 ENV_MEM_LAYOUT_SETTINGS \
59 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
60 "partitions=" PARTS_DEFAULT \
61 ROCKCHIP_DEVICE_SETTINGS \
62 BOOTENV \
63 BOOTENV_SF \
64 "altbootcmd=" \
65 "setenv boot_syslinux_conf extlinux/extlinux-rollback.conf;" \
66 "run distro_bootcmd\0"
67
68 #endif
69
70 #endif