Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 1 | /* |
Samuel Holland | fde9e1c | 2020-12-13 21:26:36 -0600 | [diff] [blame] | 2 | * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved. |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 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 | |
Andre Przywara | cd1c67e | 2020-11-28 01:38:15 +0000 | [diff] [blame] | 16 | #ifdef SUNXI_BL31_IN_DRAM |
Andre Przywara | 2d42e5f | 2020-11-28 01:39:17 +0000 | [diff] [blame] | 17 | |
| 18 | #define BL31_BASE SUNXI_DRAM_BASE |
| 19 | #define BL31_LIMIT (SUNXI_DRAM_BASE + 0x40000) |
| 20 | |
| 21 | #define MAX_XLAT_TABLES 4 |
| 22 | #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32) |
| 23 | |
| 24 | #define SUNXI_BL33_VIRT_BASE PRELOADED_BL33_BASE |
| 25 | |
Andre Przywara | cd1c67e | 2020-11-28 01:38:15 +0000 | [diff] [blame] | 26 | #else /* !SUNXI_BL31_IN_DRAM */ |
| 27 | |
Icenowy Zheng | 431b4e8 | 2021-07-23 11:35:24 +0800 | [diff] [blame] | 28 | #define BL31_BASE (SUNXI_SRAM_A2_BASE + \ |
| 29 | SUNXI_SRAM_A2_BL31_OFFSET) |
Samuel Holland | d002f3b | 2019-12-29 12:22:55 -0600 | [diff] [blame] | 30 | #define BL31_LIMIT (SUNXI_SRAM_A2_BASE + \ |
| 31 | SUNXI_SRAM_A2_SIZE - SUNXI_SCP_SIZE) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 32 | |
Samuel Holland | d00eaa2 | 2019-10-27 14:07:52 -0500 | [diff] [blame] | 33 | /* Overwrite U-Boot SPL, but reserve the first page for the SPL header. */ |
| 34 | #define BL31_NOBITS_BASE (SUNXI_SRAM_A1_BASE + 0x1000) |
| 35 | #define BL31_NOBITS_LIMIT (SUNXI_SRAM_A1_BASE + SUNXI_SRAM_A1_SIZE) |
| 36 | |
Andre Przywara | cd1c67e | 2020-11-28 01:38:15 +0000 | [diff] [blame] | 37 | #define MAX_XLAT_TABLES 1 |
| 38 | #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 28) |
Andre Przywara | cd1c67e | 2020-11-28 01:38:15 +0000 | [diff] [blame] | 39 | |
Samuel Holland | 0dab35d | 2020-12-13 20:22:42 -0600 | [diff] [blame] | 40 | #define SUNXI_BL33_VIRT_BASE SUNXI_DRAM_VIRT_BASE |
Andre Przywara | cd1c67e | 2020-11-28 01:38:15 +0000 | [diff] [blame] | 41 | |
Samuel Holland | df362a2 | 2021-04-04 15:54:17 -0500 | [diff] [blame] | 42 | /* The SCP firmware is allocated the last 16KiB of SRAM A2. */ |
| 43 | #define SUNXI_SCP_BASE BL31_LIMIT |
| 44 | #define SUNXI_SCP_SIZE 0x4000 |
| 45 | |
Samuel Holland | 0dab35d | 2020-12-13 20:22:42 -0600 | [diff] [blame] | 46 | #endif /* SUNXI_BL31_IN_DRAM */ |
Andre Przywara | b3fddff | 2018-09-20 21:13:55 +0100 | [diff] [blame] | 47 | |
Andre Przywara | ea5fa47 | 2018-09-16 02:08:06 +0100 | [diff] [blame] | 48 | /* 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] | 49 | #define SUNXI_DRAM_MAP_SIZE (64U << 20) |
| 50 | |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 51 | #define CACHE_WRITEBACK_SHIFT 6 |
| 52 | #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) |
| 53 | |
Samuel Holland | 0dab35d | 2020-12-13 20:22:42 -0600 | [diff] [blame] | 54 | #define MAX_STATIC_MMAP_REGIONS 3 |
Samuel Holland | 3683f3e | 2020-12-13 20:45:49 -0600 | [diff] [blame] | 55 | #define MAX_MMAP_REGIONS (5 + MAX_STATIC_MMAP_REGIONS) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 56 | |
Samuel Holland | 103ee9b | 2018-10-21 12:41:03 -0500 | [diff] [blame] | 57 | #define PLAT_CSS_SCP_COM_SHARED_MEM_BASE \ |
| 58 | (SUNXI_SRAM_A2_BASE + SUNXI_SRAM_A2_SIZE - 0x200) |
| 59 | |
Samuel Holland | 7289766 | 2021-03-18 22:55:15 -0500 | [diff] [blame] | 60 | /* These states are used directly for SCPI communication. */ |
| 61 | #define PLAT_MAX_PWR_LVL_STATES U(3) |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 62 | #define PLAT_MAX_RET_STATE U(1) |
Samuel Holland | 7289766 | 2021-03-18 22:55:15 -0500 | [diff] [blame] | 63 | #define PLAT_MAX_OFF_STATE U(3) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 64 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 65 | #define PLAT_MAX_PWR_LVL U(2) |
Deepika Bhavnani | fa4e1d0 | 2019-12-13 10:48:27 -0600 | [diff] [blame] | 66 | #define PLAT_NUM_PWR_DOMAINS (U(1) + \ |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 67 | PLATFORM_CLUSTER_COUNT + \ |
| 68 | PLATFORM_CORE_COUNT) |
| 69 | |
| 70 | #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 71 | |
Deepika Bhavnani | fa4e1d0 | 2019-12-13 10:48:27 -0600 | [diff] [blame] | 72 | #define PLATFORM_CLUSTER_COUNT U(1) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 73 | #define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \ |
| 74 | PLATFORM_MAX_CPUS_PER_CLUSTER) |
Deepika Bhavnani | fa4e1d0 | 2019-12-13 10:48:27 -0600 | [diff] [blame] | 75 | #define PLATFORM_MAX_CPUS_PER_CLUSTER U(4) |
Samuel Holland | b856664 | 2017-08-12 04:07:39 -0500 | [diff] [blame] | 76 | #define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT) |
| 77 | |
Amit Singh Tomar | 2f37224 | 2018-06-20 00:44:50 +0530 | [diff] [blame] | 78 | #ifndef SPD_none |
| 79 | #ifndef BL32_BASE |
| 80 | #define BL32_BASE SUNXI_DRAM_BASE |
| 81 | #endif |
| 82 | #endif |
| 83 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 84 | #endif /* PLATFORM_DEF_H */ |