mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
992f297e35
enable CONFIG_OF_LIBFDT_OVERLAY and use it on Radxa ROCK Pi S. Signed-off-by: FUKAUMI Naoki <naoki@radxa.com>
31 lines
729 B
C
31 lines
729 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#ifndef __CONFIG_RK3308_COMMON_H
|
|
#define __CONFIG_RK3308_COMMON_H
|
|
|
|
#include "rockchip-common.h"
|
|
|
|
#define CFG_IRAM_BASE 0xfff80000
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0
|
|
#define SDRAM_MAX_SIZE 0xff000000
|
|
|
|
#define ENV_MEM_LAYOUT_SETTINGS \
|
|
"scriptaddr=0x00500000\0" \
|
|
"pxefile_addr_r=0x00600000\0" \
|
|
"fdt_addr_r=0x03e00000\0" \
|
|
"fdtoverlay_addr_r=0x03f00000\0" \
|
|
"kernel_addr_r=0x00680000\0" \
|
|
"ramdisk_addr_r=0x04000000\0"
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
|
ENV_MEM_LAYOUT_SETTINGS \
|
|
"partitions=" PARTS_DEFAULT \
|
|
ROCKCHIP_DEVICE_SETTINGS \
|
|
"boot_targets=" BOOT_TARGETS "\0"
|
|
|
|
#endif
|