Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 Linaro |
| 4 | * |
| 5 | * Peter Griffin <peter.griffin@linaro.org> |
| 6 | * |
| 7 | * Configuration for HiKey 96boards CE. Parts were derived from other ARM |
| 8 | * configurations. |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __HIKEY_H |
| 12 | #define __HIKEY_H |
| 13 | |
Peter Griffin | c9a67d2 | 2015-09-10 21:55:13 +0100 | [diff] [blame] | 14 | #include <linux/sizes.h> |
| 15 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 16 | /* Physical Memory Map */ |
| 17 | |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 18 | /* CONFIG_TEXT_BASE needs to align with where ATF loads bl33.bin */ |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 19 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 20 | #define PHYS_SDRAM_1 0x00000000 |
| 21 | |
| 22 | /* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/ |
Peter Griffin | 05e682d | 2015-09-10 21:55:18 +0100 | [diff] [blame] | 23 | #define PHYS_SDRAM_1_SIZE 0x3EFFFFFF |
| 24 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 25 | #define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 26 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 27 | #define CFG_SYS_INIT_RAM_SIZE 0x1000 |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 28 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 29 | /* Generic Interrupt Controller Definitions */ |
| 30 | #define GICD_BASE 0xf6801000 |
| 31 | #define GICC_BASE 0xf6802000 |
| 32 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 33 | /* Initial environment variables */ |
| 34 | |
| 35 | /* |
| 36 | * Defines where the kernel and FDT will be put in RAM |
| 37 | */ |
| 38 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 39 | #define BOOT_TARGET_DEVICES(func) \ |
| 40 | func(USB, usb, 0) \ |
| 41 | func(MMC, mmc, 1) \ |
| 42 | func(DHCP, dhcp, na) |
| 43 | #include <config_distro_bootcmd.h> |
| 44 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 45 | #define CFG_EXTRA_ENV_SETTINGS \ |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 46 | "kernel_name=Image\0" \ |
| 47 | "kernel_addr_r=0x00080000\0" \ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 48 | "fdtfile=hi6220-hikey.dtb\0" \ |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 49 | "fdt_addr_r=0x02000000\0" \ |
| 50 | "fdt_high=0xffffffffffffffff\0" \ |
| 51 | "initrd_high=0xffffffffffffffff\0" \ |
| 52 | BOOTENV |
| 53 | |
Manivannan Sadhasivam | 362d00d | 2019-02-13 14:28:54 +0530 | [diff] [blame] | 54 | /* Preserve environment on eMMC */ |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 55 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 56 | #endif /* __HIKEY_H */ |