xref: /rk3399_rockchip-uboot/include/configs/rk3368_common.h (revision 5ec685037a799ecdc53ecb1a12a9ed5a9cecb4f4)
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 #define CONFIG_SYS_CACHELINE_SIZE	64
11 
12 #include <asm/arch/hardware.h>
13 #include <linux/sizes.h>
14 
15 #define CONFIG_SYS_SDRAM_BASE		0
16 #define SDRAM_MAX_SIZE			0xff000000
17 #define CONFIG_NR_DRAM_BANKS		1
18 #define CONFIG_BAUDRATE			115200
19 #define CONFIG_SYS_MALLOC_LEN		(32 << 20)
20 #define CONFIG_SYS_CBSIZE		1024
21 #define CONFIG_SKIP_LOWLEVEL_INIT
22 
23 #define COUNTER_FREQUENCY               24000000
24 
25 #define CONFIG_SPL_FRAMEWORK
26 #define CONFIG_SYS_NS16550_MEM32
27 
28 #define CONFIG_SYS_TEXT_BASE		0x00200000
29 #define CONFIG_SYS_INIT_SP_ADDR		0x00300000
30 #define CONFIG_SYS_LOAD_ADDR		0x00280000
31 
32 #define CONFIG_SPL_TEXT_BASE            0x00000000
33 #define CONFIG_SPL_MAX_SIZE             0x40000
34 #define CONFIG_SPL_BSS_START_ADDR       0x400000
35 #define CONFIG_SPL_BSS_MAX_SIZE         0x20000
36 
37 #define GICD_BASE			0xffB71000
38 #define GICC_BASE			0xffB72000
39 
40 #define CONFIG_ROCKUSB_G_DNL_PID	0x330A
41 
42 #define CONFIG_BOUNCE_BUFFER
43 
44 #ifndef CONFIG_SPL_BUILD
45 
46 /* usb mass storage */
47 #define CONFIG_USB_FUNCTION_MASS_STORAGE
48 
49 #define ENV_MEM_LAYOUT_SETTINGS \
50 	"scriptaddr=0x00500000\0" \
51 	"pxefile_addr_r=0x00600000\0" \
52 	"fdt_addr_r=0x5600000\0" \
53 	"kernel_addr_r=0x280000\0" \
54 	"ramdisk_addr_r=0x5bf0000\0"
55 
56 #include <config_distro_defaults.h>
57 
58 #define BOOT_TARGET_DEVICES(func)
59 
60 #include <config_distro_bootcmd.h>
61 
62 #define CONFIG_EXTRA_ENV_SETTINGS \
63 	BOOTENV
64 
65 #endif
66 
67 #endif
68