blob: 33e9aa5ffb45d5cd5b4cf2f7aaee88f3547f3c66 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Peter Griffin11ac2362015-07-30 18:55:23 +01002/*
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.
Peter Griffin11ac2362015-07-30 18:55:23 +01009 */
10
11#ifndef __HIKEY_H
12#define __HIKEY_H
13
Peter Griffinc9a67d22015-09-10 21:55:13 +010014#include <linux/sizes.h>
15
Peter Griffin11ac2362015-07-30 18:55:23 +010016#define CONFIG_POWER_HI6553
17
Manivannan Sadhasivam5bb409c2018-12-27 19:04:03 +053018#define CONFIG_SYS_BOOTM_LEN SZ_64M
19
Peter Griffin11ac2362015-07-30 18:55:23 +010020/* Physical Memory Map */
21
22/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
Peter Griffin11ac2362015-07-30 18:55:23 +010023
Peter Griffin11ac2362015-07-30 18:55:23 +010024#define PHYS_SDRAM_1 0x00000000
25
26/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
Peter Griffin05e682d2015-09-10 21:55:18 +010027#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
28
Peter Griffin11ac2362015-07-30 18:55:23 +010029#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
30
31#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
32
Peter Griffin11ac2362015-07-30 18:55:23 +010033/* Generic Interrupt Controller Definitions */
34#define GICD_BASE 0xf6801000
35#define GICC_BASE 0xf6802000
36
Peter Griffin11ac2362015-07-30 18:55:23 +010037#define CONFIG_HIKEY_GPIO
Peter Griffin11ac2362015-07-30 18:55:23 +010038
Peter Griffin11ac2362015-07-30 18:55:23 +010039/* Initial environment variables */
40
41/*
42 * Defines where the kernel and FDT will be put in RAM
43 */
44
Peter Griffin11ac2362015-07-30 18:55:23 +010045#define BOOT_TARGET_DEVICES(func) \
46 func(USB, usb, 0) \
47 func(MMC, mmc, 1) \
48 func(DHCP, dhcp, na)
49#include <config_distro_bootcmd.h>
50
51#define CONFIG_EXTRA_ENV_SETTINGS \
52 "kernel_name=Image\0" \
53 "kernel_addr_r=0x00080000\0" \
Alexander Grafda3e6202016-03-04 01:10:11 +010054 "fdtfile=hi6220-hikey.dtb\0" \
Peter Griffin11ac2362015-07-30 18:55:23 +010055 "fdt_addr_r=0x02000000\0" \
56 "fdt_high=0xffffffffffffffff\0" \
57 "initrd_high=0xffffffffffffffff\0" \
58 BOOTENV
59
Manivannan Sadhasivam362d00d2019-02-13 14:28:54 +053060/* Preserve environment on eMMC */
Peter Griffin11ac2362015-07-30 18:55:23 +010061
Peter Griffin11ac2362015-07-30 18:55:23 +010062#endif /* __HIKEY_H */