blob: c088f2f2b6913b6ce739c92d503516c099bb7603 [file] [log] [blame]
Manivannan Sadhasivamcf33f922019-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 Sadhasivamcf33f922019-08-02 20:40:09 +053027/* Generic Interrupt Controller Definitions */
28#define GICD_BASE 0xe82b1000
29#define GICC_BASE 0xe82b2000
30
Manivannan Sadhasivamcf33f922019-08-02 20:40:09 +053031#define BOOT_TARGET_DEVICES(func) \
32 func(MMC, mmc, 0)
33#include <config_distro_bootcmd.h>
34
35#define CONFIG_EXTRA_ENV_SETTINGS \
36 "image=Image\0" \
37 "fdtfile=hi3660-hikey960.dtb\0" \
38 "fdt_addr_r=0x10000000\0" \
39 "kernel_addr_r=0x11000000\0" \
40 "scriptaddr=0x00020000\0" \
41 "fdt_high=0xffffffffffffffff\0" \
42 "initrd_high=0xffffffffffffffff\0" \
43 BOOTENV
44
Manivannan Sadhasivamcf33f922019-08-02 20:40:09 +053045/* TODO: Remove this once the SD clock is fixed */
46#define CONFIG_SYS_MMC_MAX_BLK_COUNT 1024
47
48#endif /* __HIKEY_H */