]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/rk3368_common.h
Convert CONFIG_SPL_PAD_TO et al to Kconfig
[thirdparty/u-boot.git] / include / configs / rk3368_common.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
37a0c600
AF
2/*
3 * Copyright (c) 2016 Andreas Färber
37a0c600
AF
4 */
5
6#ifndef __CONFIG_RK3368_COMMON_H
7#define __CONFIG_RK3368_COMMON_H
8
e3e842f1
KG
9#include "rockchip-common.h"
10
15f09a1a 11#include <asm/arch-rockchip/hardware.h>
37a0c600
AF
12#include <linux/sizes.h>
13
6d1970fa
KY
14#define CONFIG_SYS_SDRAM_BASE 0
15#define SDRAM_MAX_SIZE 0xff000000
37a0c600 16
5f246808
KY
17#define CONFIG_IRAM_BASE 0xff8c0000
18
37a0c600 19#define CONFIG_SYS_INIT_SP_ADDR 0x00300000
37a0c600 20
c61177aa
PT
21#define CONFIG_SPL_BSS_START_ADDR 0x400000
22#define CONFIG_SPL_BSS_MAX_SIZE 0x20000
cd193462 23#define CONFIG_SPL_STACK 0x00188000
c61177aa 24
e436c499
HS
25#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
26
37a0c600
AF
27#ifndef CONFIG_SPL_BUILD
28#define ENV_MEM_LAYOUT_SETTINGS \
29 "scriptaddr=0x00500000\0" \
30 "pxefile_addr_r=0x00600000\0" \
31 "fdt_addr_r=0x5600000\0" \
32 "kernel_addr_r=0x280000\0" \
33 "ramdisk_addr_r=0x5bf0000\0"
34
37a0c600
AF
35#include <config_distro_bootcmd.h>
36
37#define CONFIG_EXTRA_ENV_SETTINGS \
a2a5053a 38 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
ffaefb88 39 ENV_MEM_LAYOUT_SETTINGS \
37a0c600
AF
40 BOOTENV
41
42#endif
43
44#endif