blob: d4ffa041f803288742d3dc4c0bc9f74706131630 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Stübner0a2be692017-02-18 19:46:36 +01002/*
3 * (C) Copyright 2015 Google, Inc
Heiko Stübner0a2be692017-02-18 19:46:36 +01004 */
5
6#ifndef __CONFIG_RK3188_COMMON_H
7#define __CONFIG_RK3188_COMMON_H
8
9#define CONFIG_SYS_CACHELINE_SIZE 64
10
11#include <asm/arch/hardware.h>
12#include "rockchip-common.h"
13
14#define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
Heiko Stübner0a2be692017-02-18 19:46:36 +010015#define CONFIG_NR_DRAM_BANKS 1
Heiko Stübner0a2be692017-02-18 19:46:36 +010016#define CONFIG_SYS_MALLOC_LEN (32 << 20)
17#define CONFIG_SYS_CBSIZE 1024
Heiko Stübner0a2be692017-02-18 19:46:36 +010018
Heiko Stübner0a2be692017-02-18 19:46:36 +010019#define CONFIG_SYS_NS16550_MEM32
Heiko Stübner0a2be692017-02-18 19:46:36 +010020
Philipp Tomsichee14d292017-06-29 11:21:15 +020021#ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM
Heiko Stübner0a2be692017-02-18 19:46:36 +010022/* Bootrom will load u-boot binary to 0x60000000 once return from SPL */
Heiko Stübner0a2be692017-02-18 19:46:36 +010023#endif
24#define CONFIG_SYS_INIT_SP_ADDR 0x60100000
25#define CONFIG_SYS_LOAD_ADDR 0x60800800
26
27#define CONFIG_ROCKCHIP_MAX_INIT_SIZE (0x8000 - 0x800)
28#define CONFIG_ROCKCHIP_CHIP_TAG "RK31"
29
Philipp Tomsich4d9253f2017-10-10 16:21:15 +020030#define CONFIG_SPL_TEXT_BASE 0x10080800
31/* spl size 32kb sram - 2kb bootrom */
32#define CONFIG_SPL_MAX_SIZE (0x8000 - 0x800)
Heiko Stübner0a2be692017-02-18 19:46:36 +010033#define CONFIG_ROCKCHIP_SERIAL 1
Heiko Stübner0a2be692017-02-18 19:46:36 +010034
35#define CONFIG_SPL_STACK 0x10087fff
36
37/* MMC/SD IP block */
38#define CONFIG_BOUNCE_BUFFER
39
Heiko Stübner0a2be692017-02-18 19:46:36 +010040#define CONFIG_SYS_SDRAM_BASE 0x60000000
41#define CONFIG_NR_DRAM_BANKS 1
42#define SDRAM_BANK_SIZE (2UL << 30)
Kever Yang6d1970f2017-06-23 16:11:05 +080043#define SDRAM_MAX_SIZE 0x80000000
Heiko Stübner0a2be692017-02-18 19:46:36 +010044
45#define CONFIG_SPI_FLASH
Heiko Stübner0a2be692017-02-18 19:46:36 +010046#define CONFIG_SF_DEFAULT_SPEED 20000000
47
48#ifndef CONFIG_SPL_BUILD
49/* usb otg */
Heiko Stübner0a2be692017-02-18 19:46:36 +010050
51/* usb host support */
Heiko Stübner0a2be692017-02-18 19:46:36 +010052#define ENV_MEM_LAYOUT_SETTINGS \
53 "scriptaddr=0x60000000\0" \
54 "pxefile_addr_r=0x60100000\0" \
55 "fdt_addr_r=0x61f00000\0" \
56 "kernel_addr_r=0x62000000\0" \
57 "ramdisk_addr_r=0x64000000\0"
58
59#include <config_distro_bootcmd.h>
60
61/* Linux fails to load the fdt if it's loaded above 256M on a Rock board,
62 * so limit the fdt reallocation to that */
63#define CONFIG_EXTRA_ENV_SETTINGS \
64 "fdt_high=0x6fffffff\0" \
65 "initrd_high=0x6fffffff\0" \
66 "partitions=" PARTS_DEFAULT \
67 ENV_MEM_LAYOUT_SETTINGS \
68 ROCKCHIP_DEVICE_SETTINGS \
69 BOOTENV
70
71#endif /* CONFIG_SPL_BUILD */
72
73#define CONFIG_PREBOOT
74
75#endif