blob: 6f5b50f76425c2a3d6331126f3f360a30c43cc7a [file] [log] [blame]
Peter Griffin11ac2362015-07-30 18:55:23 +01001/*
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
Peter Griffinc9a67d22015-09-10 21:55:13 +010015#include <linux/sizes.h>
16
Peter Griffin11ac2362015-07-30 18:55:23 +010017#define CONFIG_POWER
18#define CONFIG_POWER_HI6553
19
20#define CONFIG_REMAKE_ELF
21
Peter Griffin11ac2362015-07-30 18:55:23 +010022/* Physical Memory Map */
23
24/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
Peter Griffin11ac2362015-07-30 18:55:23 +010025
Peter Griffin305b9092016-04-20 17:14:02 +010026#define CONFIG_NR_DRAM_BANKS 6
Peter Griffin11ac2362015-07-30 18:55:23 +010027#define PHYS_SDRAM_1 0x00000000
28
29/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
Peter Griffin05e682d2015-09-10 21:55:18 +010030#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
31
Peter Griffin11ac2362015-07-30 18:55:23 +010032#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
33
34#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
35
36#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
37
38#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x80000)
39
40/* Generic Timer Definitions */
41#define COUNTER_FREQUENCY 19000000
42
43/* Generic Interrupt Controller Definitions */
44#define GICD_BASE 0xf6801000
45#define GICC_BASE 0xf6802000
46
47/* Size of malloc() pool */
Peter Griffinc9a67d22015-09-10 21:55:13 +010048#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_8M)
Peter Griffin11ac2362015-07-30 18:55:23 +010049
Peter Griffin11ac2362015-07-30 18:55:23 +010050#ifdef CONFIG_CMD_USB
Peter Griffin11ac2362015-07-30 18:55:23 +010051#define CONFIG_USB_DWC2_REG_ADDR 0xF72C0000
52/*#define CONFIG_DWC2_DFLT_SPEED_FULL*/
53#define CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
54
Peter Griffin11ac2362015-07-30 18:55:23 +010055#define CONFIG_MISC_INIT_R
56#endif
57
58#define CONFIG_HIKEY_GPIO
Peter Griffin11ac2362015-07-30 18:55:23 +010059
60/* SD/MMC configuration */
Peter Griffin11ac2362015-07-30 18:55:23 +010061#define CONFIG_BOUNCE_BUFFER
Peter Griffin11ac2362015-07-30 18:55:23 +010062
Peter Griffin11ac2362015-07-30 18:55:23 +010063/* Command line configuration */
Peter Griffin11ac2362015-07-30 18:55:23 +010064
65#define CONFIG_MTD_PARTITIONS
66
67/* BOOTP options */
68#define CONFIG_BOOTP_BOOTFILESIZE
69
Peter Griffin11ac2362015-07-30 18:55:23 +010070/* Initial environment variables */
71
72/*
73 * Defines where the kernel and FDT will be put in RAM
74 */
75
Peter Griffin11ac2362015-07-30 18:55:23 +010076#define BOOT_TARGET_DEVICES(func) \
77 func(USB, usb, 0) \
78 func(MMC, mmc, 1) \
79 func(DHCP, dhcp, na)
80#include <config_distro_bootcmd.h>
81
82#define CONFIG_EXTRA_ENV_SETTINGS \
83 "kernel_name=Image\0" \
84 "kernel_addr_r=0x00080000\0" \
Alexander Grafda3e6202016-03-04 01:10:11 +010085 "fdtfile=hi6220-hikey.dtb\0" \
Peter Griffin11ac2362015-07-30 18:55:23 +010086 "fdt_addr_r=0x02000000\0" \
87 "fdt_high=0xffffffffffffffff\0" \
88 "initrd_high=0xffffffffffffffff\0" \
89 BOOTENV
90
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -040091/* Preserve environment on sd card */
Peter Griffin11ac2362015-07-30 18:55:23 +010092#define CONFIG_ENV_SIZE 0x1000
Peter Griffin11ac2362015-07-30 18:55:23 +010093
94/* Monitor Command Prompt */
95#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Peter Griffin11ac2362015-07-30 18:55:23 +010096#define CONFIG_SYS_MAXARGS 64 /* max command args */
97
Peter Griffin11ac2362015-07-30 18:55:23 +010098#endif /* __HIKEY_H */