Merge tag 'tpm-030822' of https://source.denx.de/u-boot/custodians/u-boot-tpm
[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_IRAM_BASE                0xff8c0000
12
13 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT)
14 #else
15 /*  BSS setup */
16 #endif
17
18 /* MMC/SD IP block */
19 #define CONFIG_ROCKCHIP_SDHCI_MAX_FREQ  200000000
20
21 /* RAW SD card / eMMC locations. */
22
23 /* FAT sd card locations. */
24 #define CONFIG_SYS_SDRAM_BASE           0
25 #define SDRAM_MAX_SIZE                  0xf8000000
26
27 #ifndef CONFIG_SPL_BUILD
28
29 #define ENV_MEM_LAYOUT_SETTINGS \
30         "scriptaddr=0x00500000\0" \
31         "script_offset_f=0xffe000\0" \
32         "script_size_f=0x2000\0" \
33         "pxefile_addr_r=0x00600000\0" \
34         "fdt_addr_r=0x01f00000\0" \
35         "fdtoverlay_addr_r=0x02000000\0" \
36         "kernel_addr_r=0x02080000\0" \
37         "ramdisk_addr_r=0x06000000\0" \
38         "kernel_comp_addr_r=0x08000000\0" \
39         "kernel_comp_size=0x2000000\0"
40
41 #ifndef ROCKCHIP_DEVICE_SETTINGS
42 #define ROCKCHIP_DEVICE_SETTINGS
43 #endif
44
45 #include <config_distro_bootcmd.h>
46 #include <environment/distro/sf.h>
47 #define CONFIG_EXTRA_ENV_SETTINGS \
48         ENV_MEM_LAYOUT_SETTINGS \
49         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
50         "partitions=" PARTS_DEFAULT \
51         ROCKCHIP_DEVICE_SETTINGS \
52         BOOTENV \
53         BOOTENV_SF \
54         "altbootcmd=" \
55                 "setenv boot_syslinux_conf extlinux/extlinux-rollback.conf;" \
56                 "run distro_bootcmd\0"
57
58 #endif
59
60 #endif