Convert CONFIG_SYS_FLASH_CFI_WIDTH to Kconfig
[platform/kernel/u-boot.git] / include / configs / hikey.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2015 Linaro
4  *
5  * Peter Griffin <peter.griffin@linaro.org>
6  *
7  * Configuration for HiKey 96boards CE. Parts were derived from other ARM
8  * configurations.
9  */
10
11 #ifndef __HIKEY_H
12 #define __HIKEY_H
13
14 #include <linux/sizes.h>
15
16 #define CONFIG_POWER_HI6553
17
18 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
19
20 /* Physical Memory Map */
21
22 /* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
23
24 #define PHYS_SDRAM_1                    0x00000000
25
26 /* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
27 #define PHYS_SDRAM_1_SIZE               0x3EFFFFFF
28
29 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
30
31 #define CONFIG_SYS_INIT_RAM_SIZE        0x1000
32
33 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
34
35 /* Generic Interrupt Controller Definitions */
36 #define GICD_BASE                       0xf6801000
37 #define GICC_BASE                       0xf6802000
38
39 #define CONFIG_HIKEY_GPIO
40
41 /* Initial environment variables */
42
43 /*
44  * Defines where the kernel and FDT will be put in RAM
45  */
46
47 #define BOOT_TARGET_DEVICES(func) \
48         func(USB, usb, 0) \
49         func(MMC, mmc, 1) \
50         func(DHCP, dhcp, na)
51 #include <config_distro_bootcmd.h>
52
53 #define CONFIG_EXTRA_ENV_SETTINGS       \
54                                 "kernel_name=Image\0"   \
55                                 "kernel_addr_r=0x00080000\0" \
56                                 "fdtfile=hi6220-hikey.dtb\0" \
57                                 "fdt_addr_r=0x02000000\0" \
58                                 "fdt_high=0xffffffffffffffff\0" \
59                                 "initrd_high=0xffffffffffffffff\0" \
60                                 BOOTENV
61
62 /* Preserve environment on eMMC */
63
64 #endif /* __HIKEY_H */