xref: /rk3399_rockchip-uboot/include/configs/rk3368_common.h (revision 83ab7b4937c098a3febc8f361a6be16f28ae16aa)
1 /*
2  * Copyright (c) 2016 Andreas Färber
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef __CONFIG_RK3368_COMMON_H
8 #define __CONFIG_RK3368_COMMON_H
9 
10 #include "rockchip-common.h"
11 
12 #define CONFIG_SYS_CACHELINE_SIZE	64
13 
14 #include <asm/arch/hardware.h>
15 #include <linux/sizes.h>
16 
17 #define CONFIG_SYS_SDRAM_BASE		0
18 #define SDRAM_MAX_SIZE			0xff000000
19 #define CONFIG_BAUDRATE			115200
20 #define CONFIG_SYS_MALLOC_LEN		(32 << 20)
21 #define CONFIG_SYS_CBSIZE		1024
22 #define CONFIG_SKIP_LOWLEVEL_INIT
23 
24 #define CONFIG_SYS_TEXT_BASE		0x00200000
25 #define CONFIG_SYS_INIT_SP_ADDR		0x00300000
26 #define CONFIG_SYS_LOAD_ADDR		0x00280000
27 
28 #define CONFIG_SPL_FRAMEWORK
29 #define CONFIG_SPL_TEXT_BASE            0x00000000
30 #define CONFIG_SPL_MAX_SIZE             0x40000
31 #define CONFIG_SPL_BSS_START_ADDR       0x400000
32 #define CONFIG_SPL_BSS_MAX_SIZE         0x20000
33 
34 #define GICD_BASE			0xffB71000
35 #define GICC_BASE			0xffB72000
36 
37 #define CONFIG_ROCKUSB_G_DNL_PID	0x330A
38 
39 #define CONFIG_BOUNCE_BUFFER
40 
41 #ifndef CONFIG_SPL_BUILD
42 
43 /* usb mass storage */
44 #define CONFIG_USB_FUNCTION_MASS_STORAGE
45 
46 #define ENV_MEM_LAYOUT_SETTINGS \
47 	"scriptaddr=0x00500000\0" \
48 	"pxefile_addr_r=0x00600000\0" \
49 	"fdt_addr_r=0x5600000\0" \
50 	"kernel_addr_r=0x280000\0" \
51 	"ramdisk_addr_r=0x5bf0000\0"
52 
53 #include <config_distro_bootcmd.h>
54 
55 #define CONFIG_EXTRA_ENV_SETTINGS \
56 	ENV_MEM_LAYOUT_SETTINGS	\
57 	BOOTENV
58 
59 #endif
60 
61 #endif
62