]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/hikey.h
Convert CONFIG_ENV_IS_IN_FAT to Kconfig
[people/ms/u-boot.git] / include / configs / hikey.h
CommitLineData
11ac2363
PG
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
c9a67d24
PG
15#include <linux/sizes.h>
16
11ac2363
PG
17#define CONFIG_POWER
18#define CONFIG_POWER_HI6553
19
20#define CONFIG_REMAKE_ELF
21
22#define CONFIG_SUPPORT_RAW_INITRD
23
11ac2363
PG
24/* Physical Memory Map */
25
26/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
27#define CONFIG_SYS_TEXT_BASE 0x35000000
28
305b9091 29#define CONFIG_NR_DRAM_BANKS 6
11ac2363
PG
30#define PHYS_SDRAM_1 0x00000000
31
32/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
05e682d4
PG
33#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
34
11ac2363
PG
35#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
36
37#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
38
39#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
40
41#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x80000)
42
43/* Generic Timer Definitions */
44#define COUNTER_FREQUENCY 19000000
45
46/* Generic Interrupt Controller Definitions */
47#define GICD_BASE 0xf6801000
48#define GICC_BASE 0xf6802000
49
50/* Size of malloc() pool */
c9a67d24 51#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_8M)
11ac2363 52
9c71bcdc
PG
53/* Serial port PL010/PL011 through the device model */
54#define CONFIG_PL01X_SERIAL
11ac2363 55
11ac2363 56#ifdef CONFIG_CMD_USB
11ac2363
PG
57#define CONFIG_USB_DWC2_REG_ADDR 0xF72C0000
58/*#define CONFIG_DWC2_DFLT_SPEED_FULL*/
59#define CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
60
11ac2363
PG
61#define CONFIG_USB_HOST_ETHER
62#define CONFIG_USB_ETHER_SMSC95XX
63#define CONFIG_USB_ETHER_ASIX
64#define CONFIG_MISC_INIT_R
65#endif
66
67#define CONFIG_HIKEY_GPIO
11ac2363
PG
68
69/* SD/MMC configuration */
11ac2363 70#define CONFIG_BOUNCE_BUFFER
11ac2363
PG
71
72#define CONFIG_FS_EXT4
73
74/* Command line configuration */
11ac2363
PG
75
76#define CONFIG_MTD_PARTITIONS
77
78/* BOOTP options */
79#define CONFIG_BOOTP_BOOTFILESIZE
80
81#include <config_distro_defaults.h>
82
83/* Initial environment variables */
84
85/*
86 * Defines where the kernel and FDT will be put in RAM
87 */
88
89/* Assume we boot with root on the seventh partition of eMMC */
90#define CONFIG_BOOTARGS "console=ttyAMA0,115200n8 root=/dev/mmcblk0p9 rw"
91
92#define BOOT_TARGET_DEVICES(func) \
93 func(USB, usb, 0) \
94 func(MMC, mmc, 1) \
95 func(DHCP, dhcp, na)
96#include <config_distro_bootcmd.h>
97
98#define CONFIG_EXTRA_ENV_SETTINGS \
99 "kernel_name=Image\0" \
100 "kernel_addr_r=0x00080000\0" \
da3e620d 101 "fdtfile=hi6220-hikey.dtb\0" \
11ac2363
PG
102 "fdt_addr_r=0x02000000\0" \
103 "fdt_high=0xffffffffffffffff\0" \
104 "initrd_high=0xffffffffffffffff\0" \
105 BOOTENV
106
1cc0a9f4 107/* Preserve environment on sd card */
11ac2363 108#define CONFIG_ENV_SIZE 0x1000
11ac2363
PG
109#define FAT_ENV_INTERFACE "mmc"
110#define FAT_ENV_DEVICE_AND_PART "1:1"
111#define FAT_ENV_FILE "uboot.env"
11ac2363
PG
112#define CONFIG_ENV_VARS_UBOOT_CONFIG
113
114/* Monitor Command Prompt */
115#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
116#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
117 sizeof(CONFIG_SYS_PROMPT) + 16)
11ac2363
PG
118#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
119#define CONFIG_SYS_LONGHELP
120#define CONFIG_CMDLINE_EDITING
121#define CONFIG_SYS_MAXARGS 64 /* max command args */
122
11ac2363 123#endif /* __HIKEY_H */