Convert CONFIG_IMX_VIDEO_SKIP et al 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 CFG_SYS_SDRAM_BASE              0
15 #define SDRAM_MAX_SIZE                  0xff000000
16
17 #define CONFIG_IRAM_BASE                0xff8c0000
18
19 #define ENV_MEM_LAYOUT_SETTINGS \
20         "scriptaddr=0x00500000\0" \
21         "pxefile_addr_r=0x00600000\0" \
22         "fdt_addr_r=0x5600000\0" \
23         "kernel_addr_r=0x280000\0" \
24         "ramdisk_addr_r=0x5bf0000\0"
25
26 #include <config_distro_bootcmd.h>
27
28 #define CONFIG_EXTRA_ENV_SETTINGS \
29         "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
30         ENV_MEM_LAYOUT_SETTINGS \
31         BOOTENV
32
33 #endif