]> git.sur5r.net Git - u-boot/blob - include/configs/hikey.h
ARM: hikey: hi6220: Migrate over to DM_SERIAL and use UART3 by default.
[u-boot] / include / configs / hikey.h
1 /*
2  * (C) Copyright 2015 Linaro
3  *
4  * Peter Griffin <peter.griffin@linaro.org>
5  *
6  * Configuration for HiKey 96boards CE. Parts were derived from other ARM
7  * configurations.
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef __HIKEY_H
13 #define __HIKEY_H
14
15 #include <linux/sizes.h>
16
17 /* We use generic board for hikey */
18 #define CONFIG_SYS_GENERIC_BOARD
19 #define CONFIG_POWER
20 #define CONFIG_POWER_HI6553
21
22 #define CONFIG_REMAKE_ELF
23
24 #define CONFIG_SUPPORT_RAW_INITRD
25
26 /* Cache Definitions */
27 #define CONFIG_SYS_DCACHE_OFF
28
29 #define CONFIG_IDENT_STRING             "hikey"
30
31 /* Flat Device Tree Definitions */
32 #define CONFIG_OF_LIBFDT
33
34 #define CONFIG_BOARD_EARLY_INIT_F
35
36 /* Physical Memory Map */
37
38 /* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
39 #define CONFIG_SYS_TEXT_BASE            0x35000000
40
41 #define CONFIG_NR_DRAM_BANKS            1
42 #define PHYS_SDRAM_1                    0x00000000
43
44 /* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
45 #define PHYS_SDRAM_1_SIZE               0x3f000000
46 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
47
48 #define CONFIG_SYS_INIT_RAM_SIZE        0x1000
49
50 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
51
52 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + 0x80000)
53
54 /* Generic Timer Definitions */
55 #define COUNTER_FREQUENCY               19000000
56
57 /* Generic Interrupt Controller Definitions */
58 #define GICD_BASE                       0xf6801000
59 #define GICC_BASE                       0xf6802000
60
61 /* Size of malloc() pool */
62 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + SZ_8M)
63
64 /* Serial port PL010/PL011 through the device model */
65 #define CONFIG_PL01X_SERIAL
66 #define CONFIG_BAUDRATE                 115200
67
68 #define CONFIG_CMD_USB
69 #ifdef CONFIG_CMD_USB
70 #define CONFIG_USB_DWC2
71 #define CONFIG_USB_DWC2_REG_ADDR 0xF72C0000
72 /*#define CONFIG_DWC2_DFLT_SPEED_FULL*/
73 #define CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
74
75 #define CONFIG_USB_STORAGE
76 #define CONFIG_USB_HOST_ETHER
77 #define CONFIG_USB_ETHER_SMSC95XX
78 #define CONFIG_USB_ETHER_ASIX
79 #define CONFIG_MISC_INIT_R
80 #endif
81
82 #define CONFIG_HIKEY_GPIO
83 #define CONFIG_CMD_GPIO
84
85 /* SD/MMC configuration */
86 #define CONFIG_GENERIC_MMC
87 #define CONFIG_MMC
88 #define CONFIG_DWMMC
89 #define CONFIG_HIKEY_DWMMC
90 #define CONFIG_BOUNCE_BUFFER
91 #define CONFIG_CMD_MMC
92
93 #define CONFIG_FS_EXT4
94
95 /* Command line configuration */
96 #define CONFIG_MENU
97 #define CONFIG_CMD_CACHE
98 #define CONFIG_CMD_UNZIP
99 #define CONFIG_CMD_ENV
100
101 #define CONFIG_MTD_PARTITIONS
102
103 /* BOOTP options */
104 #define CONFIG_BOOTP_BOOTFILESIZE
105
106 #include <config_distro_defaults.h>
107
108 /* Initial environment variables */
109
110 /*
111  * Defines where the kernel and FDT will be put in RAM
112  */
113
114 /* Assume we boot with root on the seventh partition of eMMC */
115 #define CONFIG_BOOTARGS "console=ttyAMA0,115200n8 root=/dev/mmcblk0p9 rw"
116
117 #define BOOT_TARGET_DEVICES(func) \
118         func(USB, usb, 0) \
119         func(MMC, mmc, 1) \
120         func(DHCP, dhcp, na)
121 #include <config_distro_bootcmd.h>
122
123 #define CONFIG_EXTRA_ENV_SETTINGS       \
124                                 "kernel_name=Image\0"   \
125                                 "kernel_addr_r=0x00080000\0" \
126                                 "fdt_name=hi6220-hikey.dtb\0" \
127                                 "fdt_addr_r=0x02000000\0" \
128                                 "fdt_high=0xffffffffffffffff\0" \
129                                 "initrd_high=0xffffffffffffffff\0" \
130                                 BOOTENV
131
132
133 /* Preserve enviroment on sd card */
134 #define CONFIG_COMMAND_HISTORY
135
136 #define CONFIG_ENV_SIZE                 0x1000
137 #define CONFIG_ENV_IS_IN_FAT
138 #define FAT_ENV_INTERFACE               "mmc"
139 #define FAT_ENV_DEVICE_AND_PART         "1:1"
140 #define FAT_ENV_FILE                    "uboot.env"
141 #define CONFIG_FAT_WRITE
142 #define CONFIG_ENV_VARS_UBOOT_CONFIG
143
144 /* Monitor Command Prompt */
145 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
146 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
147                                         sizeof(CONFIG_SYS_PROMPT) + 16)
148 #define CONFIG_SYS_HUSH_PARSER
149 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
150 #define CONFIG_SYS_LONGHELP
151 #define CONFIG_CMDLINE_EDITING
152 #define CONFIG_SYS_MAXARGS              64      /* max command args */
153
154 #define CONFIG_SYS_NO_FLASH
155
156 #endif /* __HIKEY_H */