2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-08-30 22:55:41 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2015 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_RK3288_COMMON_H
|
|
|
|
#define __CONFIG_RK3288_COMMON_H
|
|
|
|
|
2019-03-28 03:01:23 +00:00
|
|
|
#include <asm/arch-rockchip/hardware.h>
|
2016-10-08 05:47:41 +00:00
|
|
|
#include "rockchip-common.h"
|
2015-08-30 22:55:41 +00:00
|
|
|
|
2019-09-17 07:29:29 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64MB */
|
2019-04-18 14:17:39 +00:00
|
|
|
|
2016-08-27 13:53:14 +00:00
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
|
2015-08-30 22:55:41 +00:00
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
2019-07-09 14:00:26 +00:00
|
|
|
#define CONFIG_ROCKCHIP_STIMER_BASE 0xff810020
|
|
|
|
#define COUNTER_FREQUENCY 24000000
|
|
|
|
#define CONFIG_SYS_ARCH_TIMER
|
|
|
|
#define CONFIG_SYS_HZ_CLOCK 24000000
|
2015-08-30 22:55:41 +00:00
|
|
|
|
2017-06-29 09:21:15 +00:00
|
|
|
#ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM
|
2016-07-12 11:09:49 +00:00
|
|
|
/* Bootrom will load u-boot binary to 0x0 once return from SPL */
|
|
|
|
#endif
|
2015-08-30 22:55:41 +00:00
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x00100000
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x00800800
|
|
|
|
#define CONFIG_SPL_STACK 0xff718000
|
|
|
|
|
2019-07-22 11:59:09 +00:00
|
|
|
#define CONFIG_IRAM_BASE 0xff700000
|
|
|
|
|
2015-08-30 22:55:41 +00:00
|
|
|
/* RAW SD card / eMMC locations. */
|
|
|
|
|
|
|
|
/* FAT sd card locations. */
|
|
|
|
#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
|
|
|
#define SDRAM_BANK_SIZE (2UL << 30)
|
2017-06-23 08:11:05 +00:00
|
|
|
#define SDRAM_MAX_SIZE 0xfe000000
|
2015-08-30 22:55:41 +00:00
|
|
|
|
2019-07-09 13:58:49 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_LEN (600 * 1024)
|
|
|
|
|
2016-07-26 10:28:24 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2016-07-14 16:26:59 +00:00
|
|
|
|
2015-08-30 22:55:48 +00:00
|
|
|
#define ENV_MEM_LAYOUT_SETTINGS \
|
|
|
|
"scriptaddr=0x00000000\0" \
|
|
|
|
"pxefile_addr_r=0x00100000\0" \
|
|
|
|
"fdt_addr_r=0x01f00000\0" \
|
|
|
|
"kernel_addr_r=0x02000000\0" \
|
|
|
|
"ramdisk_addr_r=0x04000000\0"
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2016-07-11 17:38:52 +00:00
|
|
|
/* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so
|
2015-08-30 22:55:48 +00:00
|
|
|
* limit the fdt reallocation to that */
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2016-07-11 17:38:52 +00:00
|
|
|
"fdt_high=0x0fffffff\0" \
|
|
|
|
"initrd_high=0x0fffffff\0" \
|
2018-05-25 21:45:05 +00:00
|
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
2016-08-03 03:55:05 +00:00
|
|
|
"partitions=" PARTS_DEFAULT \
|
2015-08-30 22:55:48 +00:00
|
|
|
ENV_MEM_LAYOUT_SETTINGS \
|
2016-01-22 02:44:13 +00:00
|
|
|
ROCKCHIP_DEVICE_SETTINGS \
|
2015-08-30 22:55:48 +00:00
|
|
|
BOOTENV
|
2015-08-30 22:55:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|