blob: 594885d26e7aac5343e637d2b143e185c24b8b6d [file] [log] [blame]
Peter Griffin31f327e2015-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 Griffin6719baa2015-09-10 21:55:13 +010015#include <linux/sizes.h>
16
Peter Griffin31f327e2015-07-30 18:55:23 +010017#define CONFIG_POWER
18#define CONFIG_POWER_HI6553
19
20#define CONFIG_REMAKE_ELF
21
22#define CONFIG_SUPPORT_RAW_INITRD
23
Peter Griffin31f327e2015-07-30 18:55:23 +010024/* Physical Memory Map */
25
26/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
Peter Griffin31f327e2015-07-30 18:55:23 +010027
Peter Griffin9967fd02016-04-20 17:14:02 +010028#define CONFIG_NR_DRAM_BANKS 6
Peter Griffin31f327e2015-07-30 18:55:23 +010029#define PHYS_SDRAM_1 0x00000000
30
31/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
Peter Griffin7de4acf2015-09-10 21:55:18 +010032#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
33
Peter Griffin31f327e2015-07-30 18:55:23 +010034#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
35
36#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
37
38#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
39
40#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x80000)
41
42/* Generic Timer Definitions */
43#define COUNTER_FREQUENCY 19000000
44
45/* Generic Interrupt Controller Definitions */
46#define GICD_BASE 0xf6801000
47#define GICC_BASE 0xf6802000
48
49/* Size of malloc() pool */
Peter Griffin6719baa2015-09-10 21:55:13 +010050#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_8M)
Peter Griffin31f327e2015-07-30 18:55:23 +010051
Peter Griffin31f327e2015-07-30 18:55:23 +010052#ifdef CONFIG_CMD_USB
Peter Griffin31f327e2015-07-30 18:55:23 +010053#define CONFIG_USB_DWC2_REG_ADDR 0xF72C0000
54/*#define CONFIG_DWC2_DFLT_SPEED_FULL*/
55#define CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
56
Peter Griffin31f327e2015-07-30 18:55:23 +010057#define CONFIG_MISC_INIT_R
58#endif
59
60#define CONFIG_HIKEY_GPIO
Peter Griffin31f327e2015-07-30 18:55:23 +010061
62/* SD/MMC configuration */
Peter Griffin31f327e2015-07-30 18:55:23 +010063#define CONFIG_BOUNCE_BUFFER
Peter Griffin31f327e2015-07-30 18:55:23 +010064
Peter Griffin31f327e2015-07-30 18:55:23 +010065/* Command line configuration */
Peter Griffin31f327e2015-07-30 18:55:23 +010066
67#define CONFIG_MTD_PARTITIONS
68
69/* BOOTP options */
70#define CONFIG_BOOTP_BOOTFILESIZE
71
72#include <config_distro_defaults.h>
73
74/* Initial environment variables */
75
76/*
77 * Defines where the kernel and FDT will be put in RAM
78 */
79
Peter Griffin31f327e2015-07-30 18:55:23 +010080#define BOOT_TARGET_DEVICES(func) \
81 func(USB, usb, 0) \
82 func(MMC, mmc, 1) \
83 func(DHCP, dhcp, na)
84#include <config_distro_bootcmd.h>
85
86#define CONFIG_EXTRA_ENV_SETTINGS \
87 "kernel_name=Image\0" \
88 "kernel_addr_r=0x00080000\0" \
Alexander Grafaf684802016-03-04 01:10:11 +010089 "fdtfile=hi6220-hikey.dtb\0" \
Peter Griffin31f327e2015-07-30 18:55:23 +010090 "fdt_addr_r=0x02000000\0" \
91 "fdt_high=0xffffffffffffffff\0" \
92 "initrd_high=0xffffffffffffffff\0" \
93 BOOTENV
94
Robert P. J. Day8c60f922016-05-04 04:47:31 -040095/* Preserve environment on sd card */
Peter Griffin31f327e2015-07-30 18:55:23 +010096#define CONFIG_ENV_SIZE 0x1000
Peter Griffin31f327e2015-07-30 18:55:23 +010097#define CONFIG_ENV_VARS_UBOOT_CONFIG
98
99/* Monitor Command Prompt */
100#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Peter Griffin31f327e2015-07-30 18:55:23 +0100101#define CONFIG_SYS_LONGHELP
102#define CONFIG_CMDLINE_EDITING
103#define CONFIG_SYS_MAXARGS 64 /* max command args */
104
Peter Griffin31f327e2015-07-30 18:55:23 +0100105#endif /* __HIKEY_H */