2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-08-30 16:55:41 -06:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2015 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_RK3288_COMMON_H
|
|
|
|
#define __CONFIG_RK3288_COMMON_H
|
|
|
|
|
|
|
|
#include <asm/arch/hardware.h>
|
2016-10-08 13:47:41 +08:00
|
|
|
#include "rockchip-common.h"
|
2015-08-30 16:55:41 -06:00
|
|
|
|
2016-08-27 21:53:14 +08:00
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
|
2015-08-30 16:55:41 -06:00
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN (32 << 20)
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
|
|
|
#define CONFIG_SYS_TIMER_RATE (24 * 1000 * 1000)
|
2015-11-17 14:20:09 +08:00
|
|
|
#define CONFIG_SYS_TIMER_BASE 0xff810020 /* TIMER7 */
|
|
|
|
#define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMER_BASE + 8)
|
2015-08-30 16:55:41 -06:00
|
|
|
|
2017-06-29 11:21:15 +02:00
|
|
|
#ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM
|
2016-07-12 19:09:49 +08:00
|
|
|
/* Bootrom will load u-boot binary to 0x0 once return from SPL */
|
|
|
|
#endif
|
2015-08-30 16:55:41 -06:00
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x00100000
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x00800800
|
|
|
|
#define CONFIG_SPL_STACK 0xff718000
|
2017-09-27 23:03:12 +05:30
|
|
|
#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT)
|
|
|
|
# define CONFIG_SPL_TEXT_BASE 0x0
|
|
|
|
#else
|
2017-10-10 16:21:05 +02:00
|
|
|
# define CONFIG_SPL_TEXT_BASE 0xff704000
|
2017-09-27 23:03:12 +05:30
|
|
|
#endif
|
2015-08-30 16:55:41 -06:00
|
|
|
|
|
|
|
/* MMC/SD IP block */
|
|
|
|
#define CONFIG_BOUNCE_BUFFER
|
|
|
|
|
|
|
|
/* RAW SD card / eMMC locations. */
|
|
|
|
#define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10)
|
|
|
|
|
|
|
|
/* FAT sd card locations. */
|
|
|
|
#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
|
|
|
|
#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0
|
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
|
|
|
#define SDRAM_BANK_SIZE (2UL << 30)
|
2017-06-23 16:11:05 +08:00
|
|
|
#define SDRAM_MAX_SIZE 0xfe000000
|
2015-08-30 16:55:41 -06:00
|
|
|
|
|
|
|
#define CONFIG_SPI_FLASH
|
|
|
|
#define CONFIG_SF_DEFAULT_SPEED 20000000
|
|
|
|
|
2016-07-26 18:28:24 +08:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2016-07-15 00:26:59 +08:00
|
|
|
/* usb otg */
|
|
|
|
|
2016-08-03 11:55:06 +08:00
|
|
|
/* usb mass storage */
|
|
|
|
#define CONFIG_CMD_USB_MASS_STORAGE
|
|
|
|
|
2016-11-24 15:29:51 +08:00
|
|
|
/* usb host support */
|
2015-08-30 16:55:48 -06: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 13:38:52 -04:00
|
|
|
/* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so
|
2015-08-30 16:55:48 -06:00
|
|
|
* limit the fdt reallocation to that */
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2016-07-11 13:38:52 -04:00
|
|
|
"fdt_high=0x0fffffff\0" \
|
|
|
|
"initrd_high=0x0fffffff\0" \
|
2018-04-13 00:45:57 +02:00
|
|
|
"fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
|
2016-08-03 11:55:05 +08:00
|
|
|
"partitions=" PARTS_DEFAULT \
|
2015-08-30 16:55:48 -06:00
|
|
|
ENV_MEM_LAYOUT_SETTINGS \
|
2016-01-21 19:44:13 -07:00
|
|
|
ROCKCHIP_DEVICE_SETTINGS \
|
2015-08-30 16:55:48 -06:00
|
|
|
BOOTENV
|
2015-08-30 16:55:41 -06:00
|
|
|
#endif
|
|
|
|
|
2016-09-19 18:46:28 +08:00
|
|
|
#define CONFIG_PREBOOT
|
|
|
|
|
2015-08-30 16:55:41 -06:00
|
|
|
#endif
|