Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 7 | #ifndef PLATFORM_DEF_H |
| 8 | #define PLATFORM_DEF_H |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <common/tbbr/tbbr_img_def.h> |
| 11 | #include <lib/utils_def.h> |
| 12 | #include <plat/common/common_def.h> |
| 13 | |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 14 | #include <sunxi_mmap.h> |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 15 | |
| 16 | #define BL31_BASE SUNXI_SRAM_A2_BASE |
| 17 | #define BL31_LIMIT (SUNXI_SRAM_A2_BASE + SUNXI_SRAM_A2_SIZE) |
| 18 | |
| 19 | /* The traditional U-Boot load address is 160MB into DRAM, so at 0x4a000000 */ |
| 20 | #define PLAT_SUNXI_NS_IMAGE_OFFSET (SUNXI_DRAM_BASE + (160U << 20)) |
| 21 | |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 22 | /* How much memory to reserve as secure for BL32, if configured */ |
| 23 | #define SUNXI_DRAM_SEC_SIZE (32U << 20) |
| 24 | |
Andre Przywara | ea5fa47 | 2018-09-16 02:08:06 +0100 | [diff] [blame] | 25 | /* How much DRAM to map (to map BL33, for fetching the DTB from U-Boot) */ |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 26 | #define SUNXI_DRAM_MAP_SIZE (64U << 20) |
| 27 | |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 28 | #define CACHE_WRITEBACK_SHIFT 6 |
| 29 | #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) |
| 30 | |
Andre Przywara | 647a2e1 | 2018-10-11 22:14:30 +0100 | [diff] [blame] | 31 | #define MAX_MMAP_REGIONS (3 + PLATFORM_MMAP_REGIONS) |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 32 | #define MAX_XLAT_TABLES 1 |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 33 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 34 | #define PLAT_MAX_PWR_LVL_STATES U(2) |
| 35 | #define PLAT_MAX_RET_STATE U(1) |
| 36 | #define PLAT_MAX_OFF_STATE U(2) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 37 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 38 | #define PLAT_MAX_PWR_LVL U(2) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 39 | #define PLAT_NUM_PWR_DOMAINS (1 + \ |
| 40 | PLATFORM_CLUSTER_COUNT + \ |
| 41 | PLATFORM_CORE_COUNT) |
| 42 | |
| 43 | #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32) |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 44 | #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 28) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 45 | |
| 46 | #define PLATFORM_CLUSTER_COUNT 1 |
| 47 | #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \ |
| 48 | PLATFORM_MAX_CPUS_PER_CLUSTER) |
| 49 | #define PLATFORM_MAX_CPUS_PER_CLUSTER 4 |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 50 | #define PLATFORM_MMAP_REGIONS 4 |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 51 | #define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT) |
| 52 | |
Amit Singh Tomar | 2f37224 | 2018-06-20 00:44:50 +0530 | [diff] [blame] | 53 | #ifndef SPD_none |
| 54 | #ifndef BL32_BASE |
| 55 | #define BL32_BASE SUNXI_DRAM_BASE |
| 56 | #endif |
| 57 | #endif |
| 58 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 59 | #endif /* PLATFORM_DEF_H */ |