Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-License-Identifier: BSD-3-Clause |
| 3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | * SPDX-FileCopyrightText: Copyright Arm Limited and Contributors. |
| 5 | */ |
| 6 | |
| 7 | /* This file is derived from xlat_table_v2 library in TF-A project */ |
| 8 | |
| 9 | #ifndef XLAT_DEFS_H |
| 10 | #define XLAT_DEFS_H |
| 11 | |
| 12 | #include <arch.h> |
| 13 | #include <utils_def.h> |
| 14 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 15 | /* |
| 16 | * The ARMv8-A architecture allows translation granule sizes of 4KB, 16KB or 64KB. |
| 17 | * |
| 18 | * Only 4K granularities are allowed on this library. |
| 19 | */ |
| 20 | #define PAGE_SIZE (UL(1) << XLAT_GRANULARITY_SIZE_SHIFT) |
| 21 | #define PAGE_SIZE_MASK (PAGE_SIZE - UL(1)) |
| 22 | #define IS_PAGE_ALIGNED(addr) (((addr) & PAGE_SIZE_MASK) == U(0)) |
| 23 | |
| 24 | #define XLAT_ENTRY_SIZE_SHIFT UL(3) /* Each MMU table entry is 8 bytes */ |
| 25 | #define XLAT_ENTRY_SIZE (UL(1) << XLAT_ENTRY_SIZE_SHIFT) |
| 26 | |
| 27 | /* Size of one complete table */ |
| 28 | #define XLAT_TABLE_SIZE_SHIFT XLAT_GRANULARITY_SIZE_SHIFT |
| 29 | #define XLAT_TABLE_SIZE (UL(1) << XLAT_TABLE_SIZE_SHIFT) |
| 30 | |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 31 | /* Level 3 is the highest level for translation tables */ |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 32 | #define XLAT_TABLE_LEVEL_MAX 3 |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 33 | |
| 34 | /* Values for number of entries in each MMU translation table */ |
| 35 | #define XLAT_TABLE_ENTRIES_SHIFT (XLAT_TABLE_SIZE_SHIFT - XLAT_ENTRY_SIZE_SHIFT) |
Mate Toth-Pal | 7f5b27d | 2023-08-08 13:49:19 +0200 | [diff] [blame^] | 36 | #define XLAT_TABLE_ENTRIES (UL(1) << XLAT_TABLE_ENTRIES_SHIFT) |
AlexeiFedorov | 4faab85 | 2023-08-30 15:06:49 +0100 | [diff] [blame] | 37 | #define XLAT_TABLE_ENTRIES_MASK (XLAT_TABLE_ENTRIES - U(1)) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 38 | |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 39 | /* Values for number of entries in a MMU translation table at level -1 */ |
| 40 | #define XLAT_LM1_TABLE_ENTRIES_SHIFT (4U) |
AlexeiFedorov | 4faab85 | 2023-08-30 15:06:49 +0100 | [diff] [blame] | 41 | #define XLAT_LM1_TABLE_ENTRIES (U(1) << XLAT_LM1_TABLE_ENTRIES_SHIFT) |
| 42 | #define XLAT_LM1_TABLE_ENTRIES_MASK (XLAT_LM1_TABLE_ENTRIES - U(1)) |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * Return the number of entries per table base on the level. |
| 46 | * This macro does not consider whether FEAT_LPA2 is available and/or enabled |
| 47 | * and it does not make any sanity check on `_level`. |
| 48 | */ |
| 49 | #define XLAT_GET_TABLE_ENTRIES(_level) \ |
| 50 | ((_level == XLAT_TABLE_LEVEL_MIN) ? \ |
| 51 | XLAT_LM1_TABLE_ENTRIES : XLAT_TABLE_ENTRIES) |
| 52 | |
| 53 | /* |
| 54 | * Return the xlat table entry mask as per the table level. |
| 55 | * This macro does not consider whether FEAT_LPA2 is available and/or enabled |
| 56 | * and it does not make any sanity check on `_level`. |
| 57 | */ |
| 58 | #define XLAT_GET_TABLE_ENTRIES_MASK(_level) \ |
| 59 | ((_level == XLAT_TABLE_LEVEL_MIN) ? \ |
| 60 | XLAT_LM1_TABLE_ENTRIES_MASK : XLAT_TABLE_ENTRIES_MASK) |
| 61 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 62 | /* Values to convert a memory address to an index into a translation table */ |
| 63 | #define L3_XLAT_ADDRESS_SHIFT XLAT_GRANULARITY_SIZE_SHIFT |
| 64 | #define L2_XLAT_ADDRESS_SHIFT (L3_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT) |
| 65 | #define L1_XLAT_ADDRESS_SHIFT (L2_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT) |
| 66 | #define L0_XLAT_ADDRESS_SHIFT (L1_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT) |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 67 | #define LM1_XLAT_ADDRESS_SHIFT (L0_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT) |
AlexeiFedorov | 93f5ec5 | 2023-08-31 14:26:53 +0100 | [diff] [blame] | 68 | #define XLAT_ADDR_SHIFT(level) ((unsigned int)(XLAT_GRANULARITY_SIZE_SHIFT + \ |
| 69 | ((unsigned int)(XLAT_TABLE_LEVEL_MAX - (level)) * \ |
| 70 | XLAT_TABLE_ENTRIES_SHIFT))) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 71 | |
| 72 | #define XLAT_BLOCK_SIZE(level) (UL(1) << XLAT_ADDR_SHIFT(level)) |
| 73 | /* Mask to get the bits used to index inside a block of a certain level */ |
| 74 | #define XLAT_BLOCK_MASK(level) (XLAT_BLOCK_SIZE(level) - UL(1)) |
| 75 | /* Mask to get the address bits common to a block of a certain table level*/ |
| 76 | #define XLAT_ADDR_MASK(level) (~XLAT_BLOCK_MASK(level)) |
| 77 | /* |
| 78 | * Extract from the given virtual address the index into the given lookup level. |
| 79 | * This macro assumes the system is using the 4KB translation granule. |
| 80 | */ |
| 81 | #define XLAT_TABLE_IDX(virtual_addr, level) \ |
| 82 | (((virtual_addr) >> XLAT_ADDR_SHIFT(level)) & ULL(0x1FF)) |
| 83 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 84 | /* |
Javier Almansa Sobrino | cd599e2 | 2023-06-28 12:28:00 +0100 | [diff] [blame] | 85 | * Minimum table level supported by the architecture when FEAT_LPA2 is present. |
| 86 | * Since the library is in charge of calculating the minimum level when creating |
| 87 | * the translation tables, due to presence of checks for VA size and PA size, |
| 88 | * the library would not create a table at level -1 on a non LPA2 system. |
| 89 | * Hence there is no need to differentiate the value of this macro for non |
| 90 | * LPA2 case. |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 91 | */ |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 92 | #define XLAT_TABLE_LEVEL_MIN (-1) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 93 | |
| 94 | /* Mask used to know if an address belongs to a high va region. */ |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 95 | #define HIGH_REGION_MASK ADDR_MASK_52_TO_63 |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 96 | |
| 97 | /* |
| 98 | * Define the architectural limits of the virtual address space in AArch64 |
| 99 | * state. |
| 100 | * |
| 101 | * TCR.TxSZ is calculated as 64 minus the width of said address space. |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 102 | * The value of TCR.TxSZ must be in the range 16 or 12 to 48 [1], which |
| 103 | * means that the virtual address space width must be in the range 48 or 52 |
| 104 | * to 16 bits respectively. |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 105 | * |
| 106 | * [1] See the ARMv8-A Architecture Reference Manual (DDI 0487A.j) for more |
| 107 | * information: |
| 108 | * Page 1730: 'Input address size', 'For all translation stages'. |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame] | 109 | * and section 12.2.55 in the ARMv8-A Architecture Reference Manual |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 110 | * (DDI 0487D.a) |
| 111 | */ |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame] | 112 | /* |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 113 | * Maximum value of TCR_ELx.T(0,1)SZ is 48 for a min VA size of 16 bits. |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame] | 114 | * RMM is only supported with FEAT_TTST implemented. |
| 115 | */ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 116 | #define MIN_VIRT_ADDR_SPACE_SIZE (UL(1) << (UL(64) - TCR_TxSZ_MAX)) |
| 117 | |
Javier Almansa Sobrino | ed93259 | 2023-01-24 12:50:41 +0000 | [diff] [blame] | 118 | /* Minimum value of TCR_ELx.T(0,1)SZ is 16, for a VA of 48 bits */ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 119 | #define MAX_VIRT_ADDR_SPACE_SIZE (UL(1) << (UL(64) - TCR_TxSZ_MIN)) |
| 120 | |
| 121 | /* |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 122 | * With LPA2 supported, the minimum value of TCR_ELx.T(0,1)SZ is 12 |
| 123 | * for a VA of 52 bits. |
| 124 | */ |
| 125 | #define MAX_VIRT_ADDR_SPACE_SIZE_LPA2 (UL(1) << (UL(64) - TCR_TxSZ_MIN_LPA2)) |
| 126 | |
| 127 | /* |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 128 | * Here we calculate the initial lookup level from the value of the given |
| 129 | * virtual address space size. For a 4 KB page size, |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 130 | * - level -1 (if FEAT_LPA2 is supported) supports virtual addresses spaces from |
| 131 | * 52 to 49 bits; |
| 132 | * - level 0 from 48 to 40; |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 133 | * - level 1 from 39 to 31; |
| 134 | * - level 2 from 30 to 22. |
| 135 | * - level 3 from 21 to 16. |
| 136 | * |
| 137 | * Small Translation Table (Armv8.4-TTST) support allows the starting level |
| 138 | * of the translation table from 3 for 4KB granularity. See section 12.2.55 in |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 139 | * the ARMv8-A Architecture Reference Manual (DDI 0487D.a). See section |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 140 | * D4.2.5 in the ARMv8-A Architecture Reference Manual (DDI 0487A.j) for more |
| 141 | * information. |
| 142 | * |
| 143 | * For example, for a 35-bit address space (i.e. virt_addr_space_size == |
| 144 | * 1 << 35), TCR.TxSZ will be programmed to (64 - 35) = 29. According to Table |
| 145 | * D4-11 in the ARM ARM, the initial lookup level for an address space like that |
| 146 | * is 1. |
| 147 | * |
| 148 | * Note that this macro assumes that the given virtual address space size is |
| 149 | * valid. |
| 150 | */ |
| 151 | #define GET_XLAT_TABLE_LEVEL_BASE(_virt_addr_space_sz) \ |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 152 | (((_virt_addr_space_sz) > (ULL(1) << LM1_XLAT_ADDRESS_SHIFT)) \ |
| 153 | ? -1 \ |
| 154 | : (((_virt_addr_space_sz) > (ULL(1) << L0_XLAT_ADDRESS_SHIFT)) \ |
| 155 | ? 0 \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 156 | : (((_virt_addr_space_sz) > (ULL(1) << L1_XLAT_ADDRESS_SHIFT)) \ |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 157 | ? 1 \ |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 158 | : (((_virt_addr_space_sz) > (ULL(1) << L2_XLAT_ADDRESS_SHIFT)) \ |
Javier Almansa Sobrino | 765a316 | 2023-04-27 17:42:58 +0100 | [diff] [blame] | 159 | ? 2 : 3)))) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 160 | |
| 161 | #endif /* XLAT_DEFS_H */ |