2 * (C) Copyright 2015 Linaro
4 * Peter Griffin <peter.griffin@linaro.org>
6 * Configuration for HiKey 96boards CE. Parts were derived from other ARM
9 * SPDX-License-Identifier: GPL-2.0+
15 #include <linux/sizes.h>
18 #define CONFIG_POWER_HI6553
20 #define CONFIG_REMAKE_ELF
22 #define CONFIG_SUPPORT_RAW_INITRD
24 /* Physical Memory Map */
26 /* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
27 #define CONFIG_SYS_TEXT_BASE 0x35000000
29 #define CONFIG_NR_DRAM_BANKS 6
30 #define PHYS_SDRAM_1 0x00000000
32 /* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
33 #define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
35 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
37 #define CONFIG_SYS_INIT_RAM_SIZE 0x1000
39 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
41 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x80000)
43 /* Generic Timer Definitions */
44 #define COUNTER_FREQUENCY 19000000
46 /* Generic Interrupt Controller Definitions */
47 #define GICD_BASE 0xf6801000
48 #define GICC_BASE 0xf6802000
50 /* Size of malloc() pool */
51 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_8M)
53 /* Serial port PL010/PL011 through the device model */
54 #define CONFIG_PL01X_SERIAL
57 #define CONFIG_USB_DWC2_REG_ADDR 0xF72C0000
58 /*#define CONFIG_DWC2_DFLT_SPEED_FULL*/
59 #define CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
61 #define CONFIG_MISC_INIT_R
64 #define CONFIG_HIKEY_GPIO
66 /* SD/MMC configuration */
67 #define CONFIG_BOUNCE_BUFFER
69 /* Command line configuration */
71 #define CONFIG_MTD_PARTITIONS
74 #define CONFIG_BOOTP_BOOTFILESIZE
76 #include <config_distro_defaults.h>
78 /* Initial environment variables */
81 * Defines where the kernel and FDT will be put in RAM
84 #define BOOT_TARGET_DEVICES(func) \
88 #include <config_distro_bootcmd.h>
90 #define CONFIG_EXTRA_ENV_SETTINGS \
91 "kernel_name=Image\0" \
92 "kernel_addr_r=0x00080000\0" \
93 "fdtfile=hi6220-hikey.dtb\0" \
94 "fdt_addr_r=0x02000000\0" \
95 "fdt_high=0xffffffffffffffff\0" \
96 "initrd_high=0xffffffffffffffff\0" \
99 /* Preserve environment on sd card */
100 #define CONFIG_ENV_SIZE 0x1000
101 #define CONFIG_ENV_VARS_UBOOT_CONFIG
103 /* Monitor Command Prompt */
104 #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
105 #define CONFIG_SYS_LONGHELP
106 #define CONFIG_CMDLINE_EDITING
107 #define CONFIG_SYS_MAXARGS 64 /* max command args */
109 #endif /* __HIKEY_H */