blob: f446ecb86479a5278801d03f4f7b841e70ae4486 [file] [log] [blame]
Manivannan Sadhasivamc62c7ef2019-08-02 20:40:09 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2019 Linaro
4 * Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
5 */
6
7#ifndef __HIKEY_H
8#define __HIKEY_H
9
10#include <linux/sizes.h>
11
12#define CONFIG_SYS_BOOTM_LEN SZ_64M
13
14/* Physical Memory Map */
15
16/* CONFIG_SYS_TEXT_BASE needs to align with where ATF loads bl33.bin */
17
18#define PHYS_SDRAM_1 0x00000000
19#define PHYS_SDRAM_1_SIZE 0xC0000000
20
21#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
22
23#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
24
25#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
26
Manivannan Sadhasivamc62c7ef2019-08-02 20:40:09 +053027/* Generic Timer Definitions */
28#define COUNTER_FREQUENCY 19000000
29
30/* Generic Interrupt Controller Definitions */
31#define GICD_BASE 0xe82b1000
32#define GICC_BASE 0xe82b2000
33
Manivannan Sadhasivamc62c7ef2019-08-02 20:40:09 +053034#define BOOT_TARGET_DEVICES(func) \
35 func(MMC, mmc, 0)
36#include <config_distro_bootcmd.h>
37
38#define CONFIG_EXTRA_ENV_SETTINGS \
39 "image=Image\0" \
40 "fdtfile=hi3660-hikey960.dtb\0" \
41 "fdt_addr_r=0x10000000\0" \
42 "kernel_addr_r=0x11000000\0" \
43 "scriptaddr=0x00020000\0" \
44 "fdt_high=0xffffffffffffffff\0" \
45 "initrd_high=0xffffffffffffffff\0" \
46 BOOTENV
47
Manivannan Sadhasivamc62c7ef2019-08-02 20:40:09 +053048/* TODO: Remove this once the SD clock is fixed */
49#define CONFIG_SYS_MMC_MAX_BLK_COUNT 1024
50
51#endif /* __HIKEY_H */