arm: Migrate SYS_THUMB_BUILD to Kconfig, introduce SPL_SYS_THUMB_BUILD
[oweals/u-boot.git] / include / configs / rk3288_common.h
1 /*
2  * (C) Copyright 2015 Google, Inc
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef __CONFIG_RK3288_COMMON_H
8 #define __CONFIG_RK3288_COMMON_H
9
10 #include <asm/arch/hardware.h>
11 #include "rockchip-common.h"
12
13 #define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
14 #define CONFIG_NR_DRAM_BANKS            1
15 #define CONFIG_ENV_SIZE                 0x2000
16 #define CONFIG_SYS_MAXARGS              16
17 #define CONFIG_BAUDRATE                 115200
18 #define CONFIG_SYS_MALLOC_LEN           (32 << 20)
19 #define CONFIG_SYS_CBSIZE               1024
20
21 #define CONFIG_SYS_TIMER_RATE           (24 * 1000 * 1000)
22 #define CONFIG_SYS_TIMER_BASE           0xff810020 /* TIMER7 */
23 #define CONFIG_SYS_TIMER_COUNTER        (CONFIG_SYS_TIMER_BASE + 8)
24
25 #define CONFIG_SPL_FRAMEWORK
26 #define CONFIG_SYS_NS16550_MEM32
27 #define CONFIG_SPL_BOARD_INIT
28
29 #ifdef CONFIG_ROCKCHIP_SPL_BACK_TO_BROM
30 /* Bootrom will load u-boot binary to 0x0 once return from SPL */
31 #define CONFIG_SYS_TEXT_BASE            0x00000000
32 #else
33 #define CONFIG_SYS_TEXT_BASE            0x00100000
34 #endif
35 #define CONFIG_SYS_INIT_SP_ADDR         0x00100000
36 #define CONFIG_SYS_LOAD_ADDR            0x00800800
37 #define CONFIG_SPL_STACK                0xff718000
38 #define CONFIG_SPL_TEXT_BASE            0xff704004
39
40 /* MMC/SD IP block */
41 #define CONFIG_BOUNCE_BUFFER
42
43 #define CONFIG_FAT_WRITE
44
45 /* RAW SD card / eMMC locations. */
46 #define CONFIG_SYS_SPI_U_BOOT_OFFS      (128 << 10)
47
48 /* FAT sd card locations. */
49 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION      1
50 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME         "u-boot.img"
51
52 #define CONFIG_SYS_SDRAM_BASE           0
53 #define CONFIG_NR_DRAM_BANKS            1
54 #define SDRAM_BANK_SIZE                 (2UL << 30)
55
56 #define CONFIG_SPI_FLASH
57 #define CONFIG_SPI
58 #define CONFIG_SF_DEFAULT_SPEED 20000000
59
60 #ifndef CONFIG_SPL_BUILD
61 /* usb otg */
62 #define CONFIG_USB_GADGET
63 #define CONFIG_USB_GADGET_DUALSPEED
64 #define CONFIG_USB_GADGET_DWC2_OTG
65 #define CONFIG_ROCKCHIP_USB2_PHY
66 #define CONFIG_USB_GADGET_VBUS_DRAW     0
67
68 /* fastboot  */
69 #define CONFIG_CMD_FASTBOOT
70 #define CONFIG_USB_FUNCTION_FASTBOOT
71 #define CONFIG_FASTBOOT_FLASH
72 #define CONFIG_FASTBOOT_FLASH_MMC_DEV   1       /* eMMC */
73 #define CONFIG_FASTBOOT_BUF_ADDR        CONFIG_SYS_LOAD_ADDR
74 #define CONFIG_FASTBOOT_BUF_SIZE        0x08000000
75
76 /* usb mass storage */
77 #define CONFIG_USB_FUNCTION_MASS_STORAGE
78 #define CONFIG_CMD_USB_MASS_STORAGE
79
80 #define CONFIG_USB_GADGET_DOWNLOAD
81 #define CONFIG_G_DNL_MANUFACTURER       "Rockchip"
82 #define CONFIG_G_DNL_VENDOR_NUM         0x2207
83 #define CONFIG_G_DNL_PRODUCT_NUM        0x320a
84
85 /* usb host support */
86 #ifdef CONFIG_CMD_USB
87 #define CONFIG_USB_DWC2
88 #define CONFIG_USB_HOST_ETHER
89 #define CONFIG_USB_ETHER_SMSC95XX
90 #define CONFIG_USB_ETHER_ASIX
91 #endif
92 #define ENV_MEM_LAYOUT_SETTINGS \
93         "scriptaddr=0x00000000\0" \
94         "pxefile_addr_r=0x00100000\0" \
95         "fdt_addr_r=0x01f00000\0" \
96         "kernel_addr_r=0x02000000\0" \
97         "ramdisk_addr_r=0x04000000\0"
98
99 #include <config_distro_bootcmd.h>
100
101 /* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so
102  * limit the fdt reallocation to that */
103 #define CONFIG_EXTRA_ENV_SETTINGS \
104         "fdt_high=0x0fffffff\0" \
105         "initrd_high=0x0fffffff\0" \
106         "partitions=" PARTS_DEFAULT \
107         ENV_MEM_LAYOUT_SETTINGS \
108         ROCKCHIP_DEVICE_SETTINGS \
109         BOOTENV
110 #endif
111
112 #define CONFIG_PREBOOT
113
114 #endif