blob: 5be6eb4e766c5000d063d6ddf542a36fa7c1ec99 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Peter Griffin31f327e2015-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 Griffin31f327e2015-07-30 18:55:23 +01009 */
10
11#ifndef __HIKEY_H
12#define __HIKEY_H
13
Peter Griffin6719baa2015-09-10 21:55:13 +010014#include <linux/sizes.h>
15
Peter Griffin31f327e2015-07-30 18:55:23 +010016#define CONFIG_POWER_HI6553
17
Peter Griffin31f327e2015-07-30 18:55:23 +010018/* Physical Memory Map */
19
20/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
Peter Griffin31f327e2015-07-30 18:55:23 +010021
Peter Griffin31f327e2015-07-30 18:55:23 +010022#define PHYS_SDRAM_1 0x00000000
23
24/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
Peter Griffin7de4acf2015-09-10 21:55:18 +010025#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
26
Peter Griffin31f327e2015-07-30 18:55:23 +010027#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
28
29#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
30
Peter Griffin31f327e2015-07-30 18:55:23 +010031/* Generic Interrupt Controller Definitions */
32#define GICD_BASE 0xf6801000
33#define GICC_BASE 0xf6802000
34
Peter Griffin31f327e2015-07-30 18:55:23 +010035#define CONFIG_HIKEY_GPIO
Peter Griffin31f327e2015-07-30 18:55:23 +010036
Peter Griffin31f327e2015-07-30 18:55:23 +010037/* Initial environment variables */
38
39/*
40 * Defines where the kernel and FDT will be put in RAM
41 */
42
Peter Griffin31f327e2015-07-30 18:55:23 +010043#define BOOT_TARGET_DEVICES(func) \
44 func(USB, usb, 0) \
45 func(MMC, mmc, 1) \
46 func(DHCP, dhcp, na)
47#include <config_distro_bootcmd.h>
48
49#define CONFIG_EXTRA_ENV_SETTINGS \
50 "kernel_name=Image\0" \
51 "kernel_addr_r=0x00080000\0" \
Alexander Grafaf684802016-03-04 01:10:11 +010052 "fdtfile=hi6220-hikey.dtb\0" \
Peter Griffin31f327e2015-07-30 18:55:23 +010053 "fdt_addr_r=0x02000000\0" \
54 "fdt_high=0xffffffffffffffff\0" \
55 "initrd_high=0xffffffffffffffff\0" \
56 BOOTENV
57
Manivannan Sadhasivam8659d782019-02-13 14:28:54 +053058/* Preserve environment on eMMC */
Peter Griffin31f327e2015-07-30 18:55:23 +010059
Peter Griffin31f327e2015-07-30 18:55:23 +010060#endif /* __HIKEY_H */