1 /* 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 27 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x80000) 28 29 /* Generic Timer Definitions */ 30 #define COUNTER_FREQUENCY 19000000 31 32 /* Generic Interrupt Controller Definitions */ 33 #define GICD_BASE 0xe82b1000 34 #define GICC_BASE 0xe82b2000 35 36 /* Size of malloc() pool */ 37 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + SZ_8M) 38 39 #define BOOT_TARGET_DEVICES(func) \ 40 func(MMC, mmc, 0) 41 #include <config_distro_bootcmd.h> 42 43 #define CONFIG_EXTRA_ENV_SETTINGS \ 44 "image=Image\0" \ 45 "fdtfile=hi3660-hikey960.dtb\0" \ 46 "fdt_addr_r=0x10000000\0" \ 47 "kernel_addr_r=0x11000000\0" \ 48 "scriptaddr=0x00020000\0" \ 49 "fdt_high=0xffffffffffffffff\0" \ 50 "initrd_high=0xffffffffffffffff\0" \ 51 BOOTENV 52 53 /* TODO: Remove this once the SD clock is fixed */ 54 #define CONFIG_SYS_MMC_MAX_BLK_COUNT 1024 55 56 #endif /* __HIKEY_H */ 57