blob: 74fa15fb9e5327be4b6fcba1904106ce127cd05e [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
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 Mathewb4c6df42022-11-09 11:13:29 +000015/*
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
31#define XLAT_TABLE_LEVEL_MAX UL(3)
32
33/* Values for number of entries in each MMU translation table */
34#define XLAT_TABLE_ENTRIES_SHIFT (XLAT_TABLE_SIZE_SHIFT - XLAT_ENTRY_SIZE_SHIFT)
35#define XLAT_TABLE_ENTRIES (UL(1) << XLAT_TABLE_ENTRIES_SHIFT)
36#define XLAT_TABLE_ENTRIES_MASK (XLAT_TABLE_ENTRIES - UL(1))
37
38/* Values to convert a memory address to an index into a translation table */
39#define L3_XLAT_ADDRESS_SHIFT XLAT_GRANULARITY_SIZE_SHIFT
40#define L2_XLAT_ADDRESS_SHIFT (L3_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
41#define L1_XLAT_ADDRESS_SHIFT (L2_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
42#define L0_XLAT_ADDRESS_SHIFT (L1_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
43#define XLAT_ADDR_SHIFT(level) (XLAT_GRANULARITY_SIZE_SHIFT + \
44 ((XLAT_TABLE_LEVEL_MAX - (level)) * XLAT_TABLE_ENTRIES_SHIFT))
45
46#define XLAT_BLOCK_SIZE(level) (UL(1) << XLAT_ADDR_SHIFT(level))
47/* Mask to get the bits used to index inside a block of a certain level */
48#define XLAT_BLOCK_MASK(level) (XLAT_BLOCK_SIZE(level) - UL(1))
49/* Mask to get the address bits common to a block of a certain table level*/
50#define XLAT_ADDR_MASK(level) (~XLAT_BLOCK_MASK(level))
51/*
52 * Extract from the given virtual address the index into the given lookup level.
53 * This macro assumes the system is using the 4KB translation granule.
54 */
55#define XLAT_TABLE_IDX(virtual_addr, level) \
56 (((virtual_addr) >> XLAT_ADDR_SHIFT(level)) & ULL(0x1FF))
57
58/* Mask to get the PA given a L3 descriptor entry (4KB granularity) */
59#define XLAT_TTE_L3_PA_MASK ULL(0x0000FFFFFFFFF000)
60
61/*
62 * In AArch64 state, the MMU may support 4KB, 16KB and 64KB page
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000063 * granularity. For 4KB granularity (the only one supported by
64 * this library), a level 0 table descriptor doesn't support
65 * block translation. See section D4.3.1 of the ARMv8-A Architecture
Soby Mathewb4c6df42022-11-09 11:13:29 +000066 * Reference Manual (DDI 0487A.k) for more information.
67 *
68 * The define below specifies the first table level that allows block
69 * descriptors.
70 */
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000071#define MIN_LVL_BLOCK_DESC U(1)
Soby Mathewb4c6df42022-11-09 11:13:29 +000072#define XLAT_TABLE_LEVEL_MIN U(0)
73
74/* Mask used to know if an address belongs to a high va region. */
75#define HIGH_REGION_MASK (ULL(0xFFF) << 52)
76
77/*
78 * Define the architectural limits of the virtual address space in AArch64
79 * state.
80 *
81 * TCR.TxSZ is calculated as 64 minus the width of said address space.
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000082 * The value of TCR.TxSZ must be in the range 16 to 48 [1], which means that
83 * the virtual address space width must be in the range 48 to 16 bits.
Soby Mathewb4c6df42022-11-09 11:13:29 +000084 *
85 * [1] See the ARMv8-A Architecture Reference Manual (DDI 0487A.j) for more
86 * information:
87 * Page 1730: 'Input address size', 'For all translation stages'.
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000088 * and section 12.2.55 in the ARMv8-A Architecture Reference Manual
Soby Mathewb4c6df42022-11-09 11:13:29 +000089 * (DDI 0487D.a)
90 */
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000091/*
92 * Maximum value of TCR_ELx.T(0,1)SZ is 39 for a min VA size of 16 bits.
93 * RMM is only supported with FEAT_TTST implemented.
94 */
Soby Mathewb4c6df42022-11-09 11:13:29 +000095#define MIN_VIRT_ADDR_SPACE_SIZE (UL(1) << (UL(64) - TCR_TxSZ_MAX))
96
Javier Almansa Sobrinoed932592023-01-24 12:50:41 +000097/* Minimum value of TCR_ELx.T(0,1)SZ is 16, for a VA of 48 bits */
Soby Mathewb4c6df42022-11-09 11:13:29 +000098#define MAX_VIRT_ADDR_SPACE_SIZE (UL(1) << (UL(64) - TCR_TxSZ_MIN))
99
100/*
101 * Here we calculate the initial lookup level from the value of the given
102 * virtual address space size. For a 4 KB page size,
103 * - level 0 supports virtual address spaces of widths 48 to 40 bits;
104 * - level 1 from 39 to 31;
105 * - level 2 from 30 to 22.
106 * - level 3 from 21 to 16.
107 *
108 * Small Translation Table (Armv8.4-TTST) support allows the starting level
109 * of the translation table from 3 for 4KB granularity. See section 12.2.55 in
110 * the ARMv8-A Architecture Reference Manual (DDI 0487D.a). In Armv8.3 and below
111 * wider or narrower address spaces are not supported. As a result, level 3
112 * cannot be used as initial lookup level with 4 KB granularity. See section
113 * D4.2.5 in the ARMv8-A Architecture Reference Manual (DDI 0487A.j) for more
114 * information.
115 *
116 * For example, for a 35-bit address space (i.e. virt_addr_space_size ==
117 * 1 << 35), TCR.TxSZ will be programmed to (64 - 35) = 29. According to Table
118 * D4-11 in the ARM ARM, the initial lookup level for an address space like that
119 * is 1.
120 *
121 * Note that this macro assumes that the given virtual address space size is
122 * valid.
123 */
124#define GET_XLAT_TABLE_LEVEL_BASE(_virt_addr_space_sz) \
125 (((_virt_addr_space_sz) > (ULL(1) << L0_XLAT_ADDRESS_SHIFT)) \
126 ? 0U \
127 : (((_virt_addr_space_sz) > (ULL(1) << L1_XLAT_ADDRESS_SHIFT)) \
128 ? 1U \
129 : (((_virt_addr_space_sz) > (ULL(1) << L2_XLAT_ADDRESS_SHIFT)) \
130 ? 2U : 3U)))
131
132#endif /* XLAT_DEFS_H */