xref: /rk3399_rockchip-uboot/include/configs/rk3188_common.h (revision 8c07fb99d91f6dffe78c6b1c2d00e0cf132b3468)
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 #ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM
26 /* Bootrom will load u-boot binary to 0x60000000 once return from SPL */
27 #define CONFIG_SYS_TEXT_BASE		0x60000000
28 #else
29 #define CONFIG_SYS_TEXT_BASE		0x60100000
30 #endif
31 #define CONFIG_SYS_INIT_SP_ADDR		0x60100000
32 #define CONFIG_SYS_LOAD_ADDR		0x60800800
33 
34 #define CONFIG_ROCKCHIP_MAX_INIT_SIZE	(0x8000 - 0x800)
35 #define CONFIG_ROCKCHIP_CHIP_TAG	"RK31"
36 #define CONFIG_ROCKUSB_G_DNL_PID	0x310B
37 
38 #define CONFIG_SPL_TEXT_BASE		0x10080800
39 /* spl size 32kb sram - 2kb bootrom */
40 #define CONFIG_SPL_MAX_SIZE		(0x8000 - 0x800)
41 #define CONFIG_SPL_FRAMEWORK		1
42 #define CONFIG_ROCKCHIP_SERIAL		1
43 
44 #define CONFIG_SPL_STACK		0x10087fff
45 
46 /* MMC/SD IP block */
47 #define CONFIG_BOUNCE_BUFFER
48 
49 #define CONFIG_SYS_SDRAM_BASE		0x60000000
50 #define CONFIG_NR_DRAM_BANKS		1
51 #define SDRAM_BANK_SIZE			(2UL << 30)
52 #define SDRAM_MAX_SIZE			0x80000000
53 
54 #define CONFIG_SPI_FLASH
55 #define CONFIG_SPI
56 #define CONFIG_SF_DEFAULT_SPEED 20000000
57 
58 #ifndef CONFIG_SPL_BUILD
59 
60 /* usb mass storage */
61 #define CONFIG_USB_FUNCTION_MASS_STORAGE
62 
63 /* usb otg */
64 #define CONFIG_ROCKCHIP_USB2_PHY
65 
66 /* usb host support */
67 #define ENV_MEM_LAYOUT_SETTINGS \
68 	"scriptaddr=0x60000000\0" \
69 	"pxefile_addr_r=0x60100000\0" \
70 	"fdt_addr_r=0x61f00000\0" \
71 	"kernel_addr_r=0x62000000\0" \
72 	"ramdisk_addr_r=0x64000000\0"
73 
74 #include <config_distro_bootcmd.h>
75 
76 /* Linux fails to load the fdt if it's loaded above 256M on a Rock board,
77  * so limit the fdt reallocation to that */
78 #define CONFIG_EXTRA_ENV_SETTINGS \
79 	"fdt_high=0x6fffffff\0" \
80 	"initrd_high=0x6fffffff\0" \
81 	"partitions=" PARTS_DEFAULT \
82 	ENV_MEM_LAYOUT_SETTINGS \
83 	ROCKCHIP_DEVICE_SETTINGS \
84 	BOOTENV
85 
86 #endif /* CONFIG_SPL_BUILD */
87 
88 #define CONFIG_PREBOOT
89 
90 #endif
91