arm: Migrate SYS_THUMB_BUILD to Kconfig, introduce SPL_SYS_THUMB_BUILD
[platform/kernel/u-boot.git] / include / configs / rk3036_common.h
1 /*
2  * (C) Copyright 2015 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 #ifndef __CONFIG_RK3036_COMMON_H
7 #define __CONFIG_RK3036_COMMON_H
8
9 #include <asm/arch/hardware.h>
10 #include "rockchip-common.h"
11
12 #define CONFIG_NR_DRAM_BANKS            1
13 #define CONFIG_ENV_IS_NOWHERE
14 #define CONFIG_ENV_SIZE                 0x2000
15 #define CONFIG_SYS_MAXARGS              16
16 #define CONFIG_BAUDRATE                 115200
17 #define CONFIG_SYS_MALLOC_LEN           (32 << 20)
18 #define CONFIG_SYS_CBSIZE               1024
19 #define CONFIG_SKIP_LOWLEVEL_INIT
20
21 #define CONFIG_SYS_TIMER_RATE           (24 * 1000 * 1000)
22 #define CONFIG_SYS_TIMER_BASE           0x200440a0 /* TIMER5 */
23 #define CONFIG_SYS_TIMER_COUNTER        (CONFIG_SYS_TIMER_BASE + 8)
24
25 #define CONFIG_SYS_NS16550
26 #define CONFIG_SYS_NS16550_MEM32
27
28 #define CONFIG_SYS_TEXT_BASE            0x60000000
29 #define CONFIG_SYS_INIT_SP_ADDR         0x60100000
30 #define CONFIG_SYS_LOAD_ADDR            0x60800800
31 #define CONFIG_SPL_STACK                0x10081fff
32 #define CONFIG_SPL_TEXT_BASE            0x10081004
33
34 #define CONFIG_ROCKCHIP_MAX_INIT_SIZE   (4 << 10)
35 #define CONFIG_ROCKCHIP_CHIP_TAG        "RK30"
36
37 /* MMC/SD IP block */
38 #define CONFIG_BOUNCE_BUFFER
39
40 #define CONFIG_FAT_WRITE
41
42 #define CONFIG_SYS_SDRAM_BASE           0x60000000
43 #define CONFIG_NR_DRAM_BANKS            1
44 #define SDRAM_BANK_SIZE                 (512UL << 20UL)
45
46 #define CONFIG_SPI_FLASH
47 #define CONFIG_SPI
48 #define CONFIG_SPI_FLASH_GIGADEVICE
49 #define CONFIG_SF_DEFAULT_SPEED 20000000
50
51 #ifndef CONFIG_SPL_BUILD
52 /* usb otg */
53 #define CONFIG_USB_GADGET
54 #define CONFIG_USB_GADGET_DUALSPEED
55 #define CONFIG_USB_GADGET_DWC2_OTG
56 #define CONFIG_USB_GADGET_VBUS_DRAW     0
57
58 /* fastboot  */
59 #define CONFIG_CMD_FASTBOOT
60 #define CONFIG_USB_FUNCTION_FASTBOOT
61 #define CONFIG_FASTBOOT_FLASH
62 #define CONFIG_FASTBOOT_FLASH_MMC_DEV   0
63 #define CONFIG_FASTBOOT_BUF_ADDR        CONFIG_SYS_LOAD_ADDR
64 #define CONFIG_FASTBOOT_BUF_SIZE        0x08000000
65
66 /* usb mass storage */
67 #define CONFIG_USB_FUNCTION_MASS_STORAGE
68 #define CONFIG_CMD_USB_MASS_STORAGE
69
70 #define CONFIG_USB_GADGET_DOWNLOAD
71 #define CONFIG_G_DNL_MANUFACTURER       "Rockchip"
72 #define CONFIG_G_DNL_VENDOR_NUM         0x2207
73 #define CONFIG_G_DNL_PRODUCT_NUM        0x310a
74
75 /* usb host */
76 #ifdef CONFIG_CMD_USB
77 #define CONFIG_USB_DWC2
78 #define CONFIG_USB_HOST_ETHER
79 #define CONFIG_USB_ETHER_SMSC95XX
80 #define CONFIG_USB_ETHER_ASIX
81 #endif
82 #define ENV_MEM_LAYOUT_SETTINGS \
83         "scriptaddr=0x60000000\0" \
84         "pxefile_addr_r=0x60100000\0" \
85         "fdt_addr_r=0x61f00000\0" \
86         "kernel_addr_r=0x62000000\0" \
87         "ramdisk_addr_r=0x64000000\0"
88
89 #include <config_distro_bootcmd.h>
90
91 /* Linux fails to load the fdt if it's loaded above 512M on a evb-rk3036 board,
92  * so limit the fdt reallocation to that */
93 #define CONFIG_EXTRA_ENV_SETTINGS \
94         "fdt_high=0x7fffffff\0" \
95         "partitions=" PARTS_DEFAULT \
96         ENV_MEM_LAYOUT_SETTINGS \
97         BOOTENV
98 #endif
99
100 #define CONFIG_PREBOOT
101
102 #endif