xref: /rk3399_rockchip-uboot/include/configs/rk3188_common.h (revision 3513fb1ea591c4d64d1da3f20fbacd3043e27943)
1 /*
2  * (C) Copyright 2015 Google, Inc
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef __CONFIG_RK3188_COMMON_H
8 #define __CONFIG_RK3188_COMMON_H
9 
10 #define CONFIG_SYS_CACHELINE_SIZE	64
11 
12 #include <asm/arch/hardware.h>
13 #include "rockchip-common.h"
14 
15 #define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
16 #define CONFIG_NR_DRAM_BANKS		1
17 #define CONFIG_SYS_MALLOC_LEN		(32 << 20)
18 #define CONFIG_SYS_CBSIZE		1024
19 
20 #define CONFIG_SYS_TIMER_RATE		(24 * 1000 * 1000)
21 #define CONFIG_SYS_TIMER_BASE		0x2000e000 /* TIMER3 */
22 #define CONFIG_SYS_TIMER_COUNTER	(CONFIG_SYS_TIMER_BASE + 8)
23 #define CONFIG_SYS_TIMER_COUNTS_DOWN
24 
25 #define CONFIG_SYS_NS16550_MEM32
26 
27 #ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM
28 /* Bootrom will load u-boot binary to 0x60000000 once return from SPL */
29 #define CONFIG_SYS_TEXT_BASE		0x60000000
30 #else
31 #define CONFIG_SYS_TEXT_BASE		0x60100000
32 #endif
33 #define CONFIG_SYS_INIT_SP_ADDR		0x60100000
34 #define CONFIG_SYS_LOAD_ADDR		0x60800800
35 
36 #define CONFIG_ROCKCHIP_MAX_INIT_SIZE	(0x8000 - 0x800)
37 #define CONFIG_ROCKCHIP_CHIP_TAG	"RK31"
38 
39 #define CONFIG_SPL_TEXT_BASE		0x10080800
40 /* spl size 32kb sram - 2kb bootrom */
41 #define CONFIG_SPL_MAX_SIZE		(0x8000 - 0x800)
42 #define CONFIG_SPL_FRAMEWORK		1
43 #define CONFIG_SPL_CLK			1
44 #define CONFIG_SPL_PINCTRL		1
45 #define CONFIG_SPL_REGMAP		1
46 #define CONFIG_SPL_SYSCON		1
47 #define CONFIG_SPL_RAM			1
48 #define CONFIG_SPL_DRIVERS_MISC_SUPPORT	1
49 #define CONFIG_ROCKCHIP_SERIAL		1
50 
51 #define CONFIG_SPL_STACK		0x10087fff
52 
53 /* MMC/SD IP block */
54 #define CONFIG_BOUNCE_BUFFER
55 
56 #define CONFIG_SYS_SDRAM_BASE		0x60000000
57 #define CONFIG_NR_DRAM_BANKS		1
58 #define SDRAM_BANK_SIZE			(2UL << 30)
59 #define SDRAM_MAX_SIZE			0x80000000
60 
61 #define CONFIG_SPI_FLASH
62 #define CONFIG_SPI
63 #define CONFIG_SF_DEFAULT_SPEED 20000000
64 
65 #ifndef CONFIG_SPL_BUILD
66 
67 /* usb mass storage */
68 #define CONFIG_USB_FUNCTION_MASS_STORAGE
69 
70 /* usb otg */
71 #define CONFIG_ROCKCHIP_USB2_PHY
72 
73 /* usb host support */
74 #define ENV_MEM_LAYOUT_SETTINGS \
75 	"scriptaddr=0x60000000\0" \
76 	"pxefile_addr_r=0x60100000\0" \
77 	"fdt_addr_r=0x61f00000\0" \
78 	"kernel_addr_r=0x62000000\0" \
79 	"ramdisk_addr_r=0x64000000\0"
80 
81 #include <config_distro_bootcmd.h>
82 
83 /* Linux fails to load the fdt if it's loaded above 256M on a Rock board,
84  * so limit the fdt reallocation to that */
85 #define CONFIG_EXTRA_ENV_SETTINGS \
86 	"fdt_high=0x6fffffff\0" \
87 	"initrd_high=0x6fffffff\0" \
88 	"partitions=" PARTS_DEFAULT \
89 	ENV_MEM_LAYOUT_SETTINGS \
90 	ROCKCHIP_DEVICE_SETTINGS \
91 	BOOTENV
92 
93 #endif /* CONFIG_SPL_BUILD */
94 
95 #define CONFIG_PREBOOT
96 
97 #endif
98