xref: /rk3399_ARM-atf/include/lib/xlat_tables/xlat_tables_v2.h (revision 06aca857f4a8ceae4f2ec126b8a9892b82077415)
17bb01fb2SAntonio Nino Diaz /*
260e8f3cfSPetre-Ionut Tudor  * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
37bb01fb2SAntonio Nino Diaz  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
57bb01fb2SAntonio Nino Diaz  */
67bb01fb2SAntonio Nino Diaz 
7e7b9886cSAntonio Nino Diaz #ifndef XLAT_TABLES_V2_H
8e7b9886cSAntonio Nino Diaz #define XLAT_TABLES_V2_H
97bb01fb2SAntonio Nino Diaz 
1009d40e0eSAntonio Nino Diaz #include <lib/xlat_tables/xlat_tables_defs.h>
1109d40e0eSAntonio Nino Diaz #include <lib/xlat_tables/xlat_tables_v2_helpers.h>
127bb01fb2SAntonio Nino Diaz 
13d5dfdeb6SJulius Werner #ifndef __ASSEMBLER__
147bb01fb2SAntonio Nino Diaz #include <stddef.h>
157bb01fb2SAntonio Nino Diaz #include <stdint.h>
1609d40e0eSAntonio Nino Diaz 
1709d40e0eSAntonio Nino Diaz #include <lib/xlat_tables/xlat_mmu_helpers.h>
187bb01fb2SAntonio Nino Diaz 
19fdb1964cSSandrine Bailleux /*
20fdb1964cSSandrine Bailleux  * Default granularity size for an mmap_region_t.
21fdb1964cSSandrine Bailleux  * Useful when no specific granularity is required.
22fdb1964cSSandrine Bailleux  *
23fdb1964cSSandrine Bailleux  * By default, choose the biggest possible block size allowed by the
24fdb1964cSSandrine Bailleux  * architectural state and granule size in order to minimize the number of page
25fdb1964cSSandrine Bailleux  * tables required for the mapping.
267bb01fb2SAntonio Nino Diaz  */
27fdb1964cSSandrine Bailleux #define REGION_DEFAULT_GRANULARITY	XLAT_BLOCK_SIZE(MIN_LVL_BLOCK_DESC)
287bb01fb2SAntonio Nino Diaz 
29fdb1964cSSandrine Bailleux /* Helper macro to define an mmap_region_t. */
30fdb1964cSSandrine Bailleux #define MAP_REGION(_pa, _va, _sz, _attr)	\
31e7b9886cSAntonio Nino Diaz 	MAP_REGION_FULL_SPEC(_pa, _va, _sz, _attr, REGION_DEFAULT_GRANULARITY)
32fdb1964cSSandrine Bailleux 
33fdb1964cSSandrine Bailleux /* Helper macro to define an mmap_region_t with an identity mapping. */
34fdb1964cSSandrine Bailleux #define MAP_REGION_FLAT(_adr, _sz, _attr)			\
35fdb1964cSSandrine Bailleux 	MAP_REGION(_adr, _adr, _sz, _attr)
36fdb1964cSSandrine Bailleux 
37fdb1964cSSandrine Bailleux /*
389056f108SAntonio Nino Diaz  * Helper macro to define entries for mmap_region_t. It allows to define 'pa'
399056f108SAntonio Nino Diaz  * and sets 'va' to 0 for each region. To be used with mmap_add_alloc_va().
409056f108SAntonio Nino Diaz  */
419056f108SAntonio Nino Diaz #define MAP_REGION_ALLOC_VA(pa, sz, attr)	MAP_REGION(pa, 0, sz, attr)
429056f108SAntonio Nino Diaz 
439056f108SAntonio Nino Diaz /*
44fdb1964cSSandrine Bailleux  * Helper macro to define an mmap_region_t to map with the desired granularity
45fdb1964cSSandrine Bailleux  * of translation tables.
46fdb1964cSSandrine Bailleux  *
47fdb1964cSSandrine Bailleux  * The granularity value passed to this macro must be a valid block or page
48fdb1964cSSandrine Bailleux  * size. When using a 4KB translation granule, this might be 4KB, 2MB or 1GB.
49fdb1964cSSandrine Bailleux  * Passing REGION_DEFAULT_GRANULARITY is also allowed and means that the library
50fdb1964cSSandrine Bailleux  * is free to choose the granularity for this region. In this case, it is
51fdb1964cSSandrine Bailleux  * equivalent to the MAP_REGION() macro.
527bb01fb2SAntonio Nino Diaz  */
53fdb1964cSSandrine Bailleux #define MAP_REGION2(_pa, _va, _sz, _attr, _gr)			\
54e7b9886cSAntonio Nino Diaz 	MAP_REGION_FULL_SPEC(_pa, _va, _sz, _attr, _gr)
557bb01fb2SAntonio Nino Diaz 
567bb01fb2SAntonio Nino Diaz /*
573a1b7b10SAntonio Nino Diaz  * Shifts and masks to access fields of an mmap attribute
587bb01fb2SAntonio Nino Diaz  */
59030567e6SVarun Wadekar #define MT_TYPE_MASK		U(0x7)
607bb01fb2SAntonio Nino Diaz #define MT_TYPE(_attr)		((_attr) & MT_TYPE_MASK)
617bb01fb2SAntonio Nino Diaz /* Access permissions (RO/RW) */
62030567e6SVarun Wadekar #define MT_PERM_SHIFT		U(3)
637bb01fb2SAntonio Nino Diaz /* Security state (SECURE/NS) */
64030567e6SVarun Wadekar #define MT_SEC_SHIFT		U(4)
657bb01fb2SAntonio Nino Diaz /* Access permissions for instruction execution (EXECUTE/EXECUTE_NEVER) */
66030567e6SVarun Wadekar #define MT_EXECUTE_SHIFT	U(5)
673a1b7b10SAntonio Nino Diaz /* In the EL1&0 translation regime, User (EL0) or Privileged (EL1). */
68609c9191SAntonio Nino Diaz #define MT_USER_SHIFT		U(6)
69*06aca857SPramod Kumar 
70*06aca857SPramod Kumar /* Shareability attribute for the memory region */
71*06aca857SPramod Kumar #define MT_SHAREABILITY_SHIFT	U(7)
72*06aca857SPramod Kumar #define MT_SHAREABILITY_MASK	(U(3) << MT_SHAREABILITY_SHIFT)
73*06aca857SPramod Kumar #define MT_SHAREABILITY(_attr)	((_attr) & MT_SHAREABILITY_MASK)
740b64f4efSAntonio Nino Diaz /* All other bits are reserved */
757bb01fb2SAntonio Nino Diaz 
767bb01fb2SAntonio Nino Diaz /*
777bb01fb2SAntonio Nino Diaz  * Memory mapping attributes
787bb01fb2SAntonio Nino Diaz  */
793a1b7b10SAntonio Nino Diaz 
807bb01fb2SAntonio Nino Diaz /*
817bb01fb2SAntonio Nino Diaz  * Memory types supported.
823a1b7b10SAntonio Nino Diaz  * These are organised so that, going down the list, the memory types are
833a1b7b10SAntonio Nino Diaz  * getting weaker; conversely going up the list the memory types are getting
843a1b7b10SAntonio Nino Diaz  * stronger.
857bb01fb2SAntonio Nino Diaz  */
863a1b7b10SAntonio Nino Diaz #define MT_DEVICE		U(0)
873a1b7b10SAntonio Nino Diaz #define MT_NON_CACHEABLE	U(1)
883a1b7b10SAntonio Nino Diaz #define MT_MEMORY		U(2)
897bb01fb2SAntonio Nino Diaz /* Values up to 7 are reserved to add new memory types in the future */
907bb01fb2SAntonio Nino Diaz 
913a1b7b10SAntonio Nino Diaz #define MT_RO			(U(0) << MT_PERM_SHIFT)
923a1b7b10SAntonio Nino Diaz #define MT_RW			(U(1) << MT_PERM_SHIFT)
937bb01fb2SAntonio Nino Diaz 
943a1b7b10SAntonio Nino Diaz #define MT_SECURE		(U(0) << MT_SEC_SHIFT)
953a1b7b10SAntonio Nino Diaz #define MT_NS			(U(1) << MT_SEC_SHIFT)
967bb01fb2SAntonio Nino Diaz 
977bb01fb2SAntonio Nino Diaz /*
983a1b7b10SAntonio Nino Diaz  * Access permissions for instruction execution are only relevant for normal
993a1b7b10SAntonio Nino Diaz  * read-only memory, i.e. MT_MEMORY | MT_RO. They are ignored (and potentially
1003a1b7b10SAntonio Nino Diaz  * overridden) otherwise:
1017bb01fb2SAntonio Nino Diaz  *  - Device memory is always marked as execute-never.
1027bb01fb2SAntonio Nino Diaz  *  - Read-write normal memory is always marked as execute-never.
1037bb01fb2SAntonio Nino Diaz  */
1043a1b7b10SAntonio Nino Diaz #define MT_EXECUTE		(U(0) << MT_EXECUTE_SHIFT)
1053a1b7b10SAntonio Nino Diaz #define MT_EXECUTE_NEVER	(U(1) << MT_EXECUTE_SHIFT)
106609c9191SAntonio Nino Diaz 
107609c9191SAntonio Nino Diaz /*
1083a1b7b10SAntonio Nino Diaz  * When mapping a region at EL0 or EL1, this attribute will be used to determine
1093a1b7b10SAntonio Nino Diaz  * if a User mapping (EL0) will be created or a Privileged mapping (EL1).
110609c9191SAntonio Nino Diaz  */
1113a1b7b10SAntonio Nino Diaz #define MT_USER			(U(1) << MT_USER_SHIFT)
1123a1b7b10SAntonio Nino Diaz #define MT_PRIVILEGED		(U(0) << MT_USER_SHIFT)
1137bb01fb2SAntonio Nino Diaz 
114*06aca857SPramod Kumar /*
115*06aca857SPramod Kumar  * Shareability defines the visibility of any cache changes to
116*06aca857SPramod Kumar  * all masters belonging to a shareable domain.
117*06aca857SPramod Kumar  *
118*06aca857SPramod Kumar  * MT_SHAREABILITY_ISH: For inner shareable domain
119*06aca857SPramod Kumar  * MT_SHAREABILITY_OSH: For outer shareable domain
120*06aca857SPramod Kumar  * MT_SHAREABILITY_NSH: For non shareable domain
121*06aca857SPramod Kumar  */
122*06aca857SPramod Kumar #define MT_SHAREABILITY_ISH	(U(1) << MT_SHAREABILITY_SHIFT)
123*06aca857SPramod Kumar #define MT_SHAREABILITY_OSH	(U(2) << MT_SHAREABILITY_SHIFT)
124*06aca857SPramod Kumar #define MT_SHAREABILITY_NSH	(U(3) << MT_SHAREABILITY_SHIFT)
125*06aca857SPramod Kumar 
126609c9191SAntonio Nino Diaz /* Compound attributes for most common usages */
1277bb01fb2SAntonio Nino Diaz #define MT_CODE			(MT_MEMORY | MT_RO | MT_EXECUTE)
1287bb01fb2SAntonio Nino Diaz #define MT_RO_DATA		(MT_MEMORY | MT_RO | MT_EXECUTE_NEVER)
129609c9191SAntonio Nino Diaz #define MT_RW_DATA		(MT_MEMORY | MT_RW | MT_EXECUTE_NEVER)
1307bb01fb2SAntonio Nino Diaz 
1317bb01fb2SAntonio Nino Diaz /*
1327bb01fb2SAntonio Nino Diaz  * Structure for specifying a single region of memory.
1337bb01fb2SAntonio Nino Diaz  */
1347bb01fb2SAntonio Nino Diaz typedef struct mmap_region {
1357bb01fb2SAntonio Nino Diaz 	unsigned long long	base_pa;
1367bb01fb2SAntonio Nino Diaz 	uintptr_t		base_va;
1377bb01fb2SAntonio Nino Diaz 	size_t			size;
1383a1b7b10SAntonio Nino Diaz 	unsigned int		attr;
139fdb1964cSSandrine Bailleux 	/* Desired granularity. See the MAP_REGION2() macro for more details. */
140fdb1964cSSandrine Bailleux 	size_t			granularity;
1417bb01fb2SAntonio Nino Diaz } mmap_region_t;
1427bb01fb2SAntonio Nino Diaz 
14355c84964SSandrine Bailleux /*
144aa1d5f60SAntonio Nino Diaz  * Translation regimes supported by this library. EL_REGIME_INVALID tells the
145aa1d5f60SAntonio Nino Diaz  * library to detect it at runtime.
146b4ae615bSDouglas Raillard  */
147fd2299e6SAntonio Nino Diaz #define EL1_EL0_REGIME		1
1481a92a0e0SAntonio Nino Diaz #define EL2_REGIME		2
149fd2299e6SAntonio Nino Diaz #define EL3_REGIME		3
150aa1d5f60SAntonio Nino Diaz #define EL_REGIME_INVALID	-1
151b4ae615bSDouglas Raillard 
152b4ae615bSDouglas Raillard /*
15355c84964SSandrine Bailleux  * Declare the translation context type.
15455c84964SSandrine Bailleux  * Its definition is private.
15555c84964SSandrine Bailleux  */
15655c84964SSandrine Bailleux typedef struct xlat_ctx xlat_ctx_t;
15755c84964SSandrine Bailleux 
15855c84964SSandrine Bailleux /*
15955c84964SSandrine Bailleux  * Statically allocate a translation context and associated structures. Also
16055c84964SSandrine Bailleux  * initialize them.
16155c84964SSandrine Bailleux  *
16255c84964SSandrine Bailleux  * _ctx_name:
16355c84964SSandrine Bailleux  *   Prefix for the translation context variable.
16455c84964SSandrine Bailleux  *   E.g. If _ctx_name is 'foo', the variable will be called 'foo_xlat_ctx'.
16555c84964SSandrine Bailleux  *   Useful to distinguish multiple contexts from one another.
16655c84964SSandrine Bailleux  *
16755c84964SSandrine Bailleux  * _mmap_count:
16855c84964SSandrine Bailleux  *   Number of mmap_region_t to allocate.
16955c84964SSandrine Bailleux  *   Would typically be MAX_MMAP_REGIONS for the translation context describing
17055c84964SSandrine Bailleux  *   the BL image currently executing.
17155c84964SSandrine Bailleux  *
17255c84964SSandrine Bailleux  * _xlat_tables_count:
17355c84964SSandrine Bailleux  *   Number of sub-translation tables to allocate.
17455c84964SSandrine Bailleux  *   Would typically be MAX_XLAT_TABLES for the translation context describing
17555c84964SSandrine Bailleux  *   the BL image currently executing.
17655c84964SSandrine Bailleux  *   Note that this is only for sub-tables ; at the initial lookup level, there
17755c84964SSandrine Bailleux  *   is always a single table.
17855c84964SSandrine Bailleux  *
17955c84964SSandrine Bailleux  * _virt_addr_space_size, _phy_addr_space_size:
18055c84964SSandrine Bailleux  *   Size (in bytes) of the virtual (resp. physical) address space.
18155c84964SSandrine Bailleux  *   Would typically be PLAT_VIRT_ADDR_SPACE_SIZE
18255c84964SSandrine Bailleux  *   (resp. PLAT_PHY_ADDR_SPACE_SIZE) for the translation context describing the
18355c84964SSandrine Bailleux  *   BL image currently executing.
18455c84964SSandrine Bailleux  */
18555c84964SSandrine Bailleux #define REGISTER_XLAT_CONTEXT(_ctx_name, _mmap_count, _xlat_tables_count, \
186268131c2SMasahiro Yamada 			      _virt_addr_space_size, _phy_addr_space_size) \
187e7b9886cSAntonio Nino Diaz 	REGISTER_XLAT_CONTEXT_FULL_SPEC(_ctx_name, (_mmap_count),	\
188fd2299e6SAntonio Nino Diaz 					 (_xlat_tables_count),		\
189fd2299e6SAntonio Nino Diaz 					 (_virt_addr_space_size),	\
190fd2299e6SAntonio Nino Diaz 					 (_phy_addr_space_size),	\
191363830dfSMasahiro Yamada 					 EL_REGIME_INVALID,		\
192268131c2SMasahiro Yamada 					 "xlat_table", "base_xlat_table")
193609c9191SAntonio Nino Diaz 
194609c9191SAntonio Nino Diaz /*
19545d640f0SAntonio Nino Diaz  * Same as REGISTER_XLAT_CONTEXT plus the additional parameters:
19645d640f0SAntonio Nino Diaz  *
19745d640f0SAntonio Nino Diaz  * _xlat_regime:
19845d640f0SAntonio Nino Diaz  *   Specify the translation regime managed by this xlat_ctx_t instance. The
199fd2299e6SAntonio Nino Diaz  *   values are the one from the EL*_REGIME definitions.
20045d640f0SAntonio Nino Diaz  *
20145d640f0SAntonio Nino Diaz  * _section_name:
20245d640f0SAntonio Nino Diaz  *   Specify the name of the section where the translation tables have to be
20345d640f0SAntonio Nino Diaz  *   placed by the linker.
204609c9191SAntonio Nino Diaz  */
205609c9191SAntonio Nino Diaz #define REGISTER_XLAT_CONTEXT2(_ctx_name, _mmap_count, _xlat_tables_count, \
206609c9191SAntonio Nino Diaz 			_virt_addr_space_size, _phy_addr_space_size,	\
20745d640f0SAntonio Nino Diaz 			_xlat_regime, _section_name)			\
208e7b9886cSAntonio Nino Diaz 	REGISTER_XLAT_CONTEXT_FULL_SPEC(_ctx_name, (_mmap_count),	\
209fd2299e6SAntonio Nino Diaz 					 (_xlat_tables_count),		\
210fd2299e6SAntonio Nino Diaz 					 (_virt_addr_space_size),	\
211fd2299e6SAntonio Nino Diaz 					 (_phy_addr_space_size),	\
212363830dfSMasahiro Yamada 					 (_xlat_regime),		\
213363830dfSMasahiro Yamada 					 (_section_name), ".bss"	\
214363830dfSMasahiro Yamada )
21555c84964SSandrine Bailleux 
216a9ad848cSSandrine Bailleux /******************************************************************************
217a9ad848cSSandrine Bailleux  * Generic translation table APIs.
218a9ad848cSSandrine Bailleux  * Each API comes in 2 variants:
219a9ad848cSSandrine Bailleux  * - one that acts on the current translation context for this BL image
220a9ad848cSSandrine Bailleux  * - another that acts on the given translation context instead. This variant
221a9ad848cSSandrine Bailleux  *   is named after the 1st version, with an additional '_ctx' suffix.
222a9ad848cSSandrine Bailleux  *****************************************************************************/
223e769db3eSAntonio Nino Diaz 
224e769db3eSAntonio Nino Diaz /*
225e769db3eSAntonio Nino Diaz  * Initialize translation tables from the current list of mmap regions. Calling
226e769db3eSAntonio Nino Diaz  * this function marks the transition point after which static regions can no
227e769db3eSAntonio Nino Diaz  * longer be added.
228e769db3eSAntonio Nino Diaz  */
2297bb01fb2SAntonio Nino Diaz void init_xlat_tables(void);
230a9ad848cSSandrine Bailleux void init_xlat_tables_ctx(xlat_ctx_t *ctx);
2317bb01fb2SAntonio Nino Diaz 
2327bb01fb2SAntonio Nino Diaz /*
233bbc81007SAntonio Nino Diaz  * Fill all fields of a dynamic translation tables context. It must be done
234bbc81007SAntonio Nino Diaz  * either statically with REGISTER_XLAT_CONTEXT() or at runtime with this
235bbc81007SAntonio Nino Diaz  * function.
236bbc81007SAntonio Nino Diaz  */
237bbc81007SAntonio Nino Diaz void xlat_setup_dynamic_ctx(xlat_ctx_t *ctx, unsigned long long pa_max,
238bbc81007SAntonio Nino Diaz 			    uintptr_t va_max, struct mmap_region *mmap,
239bbc81007SAntonio Nino Diaz 			    unsigned int mmap_num, uint64_t **tables,
240bbc81007SAntonio Nino Diaz 			    unsigned int tables_num, uint64_t *base_table,
241bbc81007SAntonio Nino Diaz 			    int xlat_regime, int *mapped_regions);
242bbc81007SAntonio Nino Diaz 
243bbc81007SAntonio Nino Diaz /*
244e769db3eSAntonio Nino Diaz  * Add a static region with defined base PA and base VA. This function can only
245e769db3eSAntonio Nino Diaz  * be used before initializing the translation tables. The region cannot be
246e769db3eSAntonio Nino Diaz  * removed afterwards.
2477bb01fb2SAntonio Nino Diaz  */
2487bb01fb2SAntonio Nino Diaz void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
2493a1b7b10SAntonio Nino Diaz 		     size_t size, unsigned int attr);
250a9ad848cSSandrine Bailleux void mmap_add_region_ctx(xlat_ctx_t *ctx, const mmap_region_t *mm);
2517bb01fb2SAntonio Nino Diaz 
2527bb01fb2SAntonio Nino Diaz /*
253a9ad848cSSandrine Bailleux  * Add an array of static regions with defined base PA and base VA. This
254a9ad848cSSandrine Bailleux  * function can only be used before initializing the translation tables. The
255a9ad848cSSandrine Bailleux  * regions cannot be removed afterwards.
256a9ad848cSSandrine Bailleux  */
257a9ad848cSSandrine Bailleux void mmap_add(const mmap_region_t *mm);
258a9ad848cSSandrine Bailleux void mmap_add_ctx(xlat_ctx_t *ctx, const mmap_region_t *mm);
259a9ad848cSSandrine Bailleux 
2609056f108SAntonio Nino Diaz /*
2619056f108SAntonio Nino Diaz  * Add a region with defined base PA. Returns base VA calculated using the
2629056f108SAntonio Nino Diaz  * highest existing region in the mmap array even if it fails to allocate the
2639056f108SAntonio Nino Diaz  * region.
2649056f108SAntonio Nino Diaz  */
2659056f108SAntonio Nino Diaz void mmap_add_region_alloc_va(unsigned long long base_pa, uintptr_t *base_va,
2669056f108SAntonio Nino Diaz 			      size_t size, unsigned int attr);
2679056f108SAntonio Nino Diaz void mmap_add_region_alloc_va_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
2689056f108SAntonio Nino Diaz 
2699056f108SAntonio Nino Diaz /*
2709056f108SAntonio Nino Diaz  * Add an array of static regions with defined base PA, and fill the base VA
2719056f108SAntonio Nino Diaz  * field on the array of structs. This function can only be used before
2729056f108SAntonio Nino Diaz  * initializing the translation tables. The regions cannot be removed afterwards.
2739056f108SAntonio Nino Diaz  */
2749056f108SAntonio Nino Diaz void mmap_add_alloc_va(mmap_region_t *mm);
275a9ad848cSSandrine Bailleux 
276a9ad848cSSandrine Bailleux #if PLAT_XLAT_TABLES_DYNAMIC
277a9ad848cSSandrine Bailleux /*
278e769db3eSAntonio Nino Diaz  * Add a dynamic region with defined base PA and base VA. This type of region
279e769db3eSAntonio Nino Diaz  * can be added and removed even after the translation tables are initialized.
2800b64f4efSAntonio Nino Diaz  *
2810b64f4efSAntonio Nino Diaz  * Returns:
2820b64f4efSAntonio Nino Diaz  *        0: Success.
2830b64f4efSAntonio Nino Diaz  *   EINVAL: Invalid values were used as arguments.
2840b64f4efSAntonio Nino Diaz  *   ERANGE: Memory limits were surpassed.
2850b64f4efSAntonio Nino Diaz  *   ENOMEM: Not enough space in the mmap array or not enough free xlat tables.
2860b64f4efSAntonio Nino Diaz  *    EPERM: It overlaps another region in an invalid way.
2870b64f4efSAntonio Nino Diaz  */
2880b64f4efSAntonio Nino Diaz int mmap_add_dynamic_region(unsigned long long base_pa, uintptr_t base_va,
2893a1b7b10SAntonio Nino Diaz 			    size_t size, unsigned int attr);
290a9ad848cSSandrine Bailleux int mmap_add_dynamic_region_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
2917bb01fb2SAntonio Nino Diaz 
2920b64f4efSAntonio Nino Diaz /*
2939056f108SAntonio Nino Diaz  * Add a dynamic region with defined base PA. Returns base VA calculated using
2949056f108SAntonio Nino Diaz  * the highest existing region in the mmap array even if it fails to allocate
2959056f108SAntonio Nino Diaz  * the region.
2969056f108SAntonio Nino Diaz  *
2979056f108SAntonio Nino Diaz  * mmap_add_dynamic_region_alloc_va() returns the allocated VA in 'base_va'.
2989056f108SAntonio Nino Diaz  * mmap_add_dynamic_region_alloc_va_ctx() returns it in 'mm->base_va'.
2999056f108SAntonio Nino Diaz  *
3009056f108SAntonio Nino Diaz  * It returns the same error values as mmap_add_dynamic_region().
3019056f108SAntonio Nino Diaz  */
3029056f108SAntonio Nino Diaz int mmap_add_dynamic_region_alloc_va(unsigned long long base_pa,
3039056f108SAntonio Nino Diaz 				     uintptr_t *base_va,
3049056f108SAntonio Nino Diaz 				     size_t size, unsigned int attr);
3059056f108SAntonio Nino Diaz int mmap_add_dynamic_region_alloc_va_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
3069056f108SAntonio Nino Diaz 
3079056f108SAntonio Nino Diaz /*
3080b64f4efSAntonio Nino Diaz  * Remove a region with the specified base VA and size. Only dynamic regions can
309e769db3eSAntonio Nino Diaz  * be removed, and they can be removed even if the translation tables are
310e769db3eSAntonio Nino Diaz  * initialized.
3110b64f4efSAntonio Nino Diaz  *
3120b64f4efSAntonio Nino Diaz  * Returns:
3130b64f4efSAntonio Nino Diaz  *        0: Success.
3140b64f4efSAntonio Nino Diaz  *   EINVAL: The specified region wasn't found.
3150b64f4efSAntonio Nino Diaz  *    EPERM: Trying to remove a static region.
3160b64f4efSAntonio Nino Diaz  */
3170b64f4efSAntonio Nino Diaz int mmap_remove_dynamic_region(uintptr_t base_va, size_t size);
318a9ad848cSSandrine Bailleux int mmap_remove_dynamic_region_ctx(xlat_ctx_t *ctx,
319a9ad848cSSandrine Bailleux 				uintptr_t base_va,
320a9ad848cSSandrine Bailleux 				size_t size);
321a9ad848cSSandrine Bailleux 
322a9ad848cSSandrine Bailleux #endif /* PLAT_XLAT_TABLES_DYNAMIC */
3230b64f4efSAntonio Nino Diaz 
3241be910bbSSandrine Bailleux /*
325996d6b39SSandrine Bailleux  * Change the memory attributes of the memory region starting from a given
326996d6b39SSandrine Bailleux  * virtual address in a set of translation tables.
327996d6b39SSandrine Bailleux  *
328996d6b39SSandrine Bailleux  * This function can only be used after the translation tables have been
329996d6b39SSandrine Bailleux  * initialized.
330996d6b39SSandrine Bailleux  *
331996d6b39SSandrine Bailleux  * The base address of the memory region must be aligned on a page boundary.
332996d6b39SSandrine Bailleux  * The size of this memory region must be a multiple of a page size.
333996d6b39SSandrine Bailleux  * The memory region must be already mapped by the given translation tables
334996d6b39SSandrine Bailleux  * and it must be mapped at the granularity of a page.
335996d6b39SSandrine Bailleux  *
336996d6b39SSandrine Bailleux  * Return 0 on success, a negative value on error.
337996d6b39SSandrine Bailleux  *
338996d6b39SSandrine Bailleux  * In case of error, the memory attributes remain unchanged and this function
339996d6b39SSandrine Bailleux  * has no effect.
340996d6b39SSandrine Bailleux  *
341996d6b39SSandrine Bailleux  * ctx
342996d6b39SSandrine Bailleux  *   Translation context to work on.
343996d6b39SSandrine Bailleux  * base_va:
344996d6b39SSandrine Bailleux  *   Virtual address of the 1st page to change the attributes of.
345996d6b39SSandrine Bailleux  * size:
346996d6b39SSandrine Bailleux  *   Size in bytes of the memory region.
347996d6b39SSandrine Bailleux  * attr:
348996d6b39SSandrine Bailleux  *   New attributes of the page tables. The attributes that can be changed are
349996d6b39SSandrine Bailleux  *   data access (MT_RO/MT_RW), instruction access (MT_EXECUTE_NEVER/MT_EXECUTE)
350996d6b39SSandrine Bailleux  *   and user/privileged access (MT_USER/MT_PRIVILEGED) in the case of contexts
351996d6b39SSandrine Bailleux  *   that are used in the EL1&0 translation regime. Also, note that this
352996d6b39SSandrine Bailleux  *   function doesn't allow to remap a region as RW and executable, or to remap
353996d6b39SSandrine Bailleux  *   device memory as executable.
354996d6b39SSandrine Bailleux  *
355996d6b39SSandrine Bailleux  * NOTE: The caller of this function must be able to write to the translation
356996d6b39SSandrine Bailleux  * tables, i.e. the memory where they are stored must be mapped with read-write
357996d6b39SSandrine Bailleux  * access permissions. This function assumes it is the case. If this is not
358996d6b39SSandrine Bailleux  * the case then this function might trigger a data abort exception.
359996d6b39SSandrine Bailleux  *
360996d6b39SSandrine Bailleux  * NOTE2: The caller is responsible for making sure that the targeted
361996d6b39SSandrine Bailleux  * translation tables are not modified by any other code while this function is
362996d6b39SSandrine Bailleux  * executing.
363996d6b39SSandrine Bailleux  */
364e5d59519SAntonio Nino Diaz int xlat_change_mem_attributes_ctx(const xlat_ctx_t *ctx, uintptr_t base_va,
365e5d59519SAntonio Nino Diaz 				   size_t size, uint32_t attr);
366e5d59519SAntonio Nino Diaz int xlat_change_mem_attributes(uintptr_t base_va, size_t size, uint32_t attr);
367996d6b39SSandrine Bailleux 
36860e8f3cfSPetre-Ionut Tudor #if PLAT_RO_XLAT_TABLES
36960e8f3cfSPetre-Ionut Tudor /*
37060e8f3cfSPetre-Ionut Tudor  * Change the memory attributes of the memory region encompassing the higher
37160e8f3cfSPetre-Ionut Tudor  * level translation tables to secure read-only data.
37260e8f3cfSPetre-Ionut Tudor  *
37360e8f3cfSPetre-Ionut Tudor  * Return 0 on success, a negative error code on error.
37460e8f3cfSPetre-Ionut Tudor  */
37560e8f3cfSPetre-Ionut Tudor int xlat_make_tables_readonly(void);
37660e8f3cfSPetre-Ionut Tudor #endif
37760e8f3cfSPetre-Ionut Tudor 
378996d6b39SSandrine Bailleux /*
3791be910bbSSandrine Bailleux  * Query the memory attributes of a memory page in a set of translation tables.
3801be910bbSSandrine Bailleux  *
3811be910bbSSandrine Bailleux  * Return 0 on success, a negative error code on error.
382e5d59519SAntonio Nino Diaz  * On success, the attributes are stored into *attr.
3831be910bbSSandrine Bailleux  *
3841be910bbSSandrine Bailleux  * ctx
3851be910bbSSandrine Bailleux  *   Translation context to work on.
3861be910bbSSandrine Bailleux  * base_va
3871be910bbSSandrine Bailleux  *   Virtual address of the page to get the attributes of.
3881be910bbSSandrine Bailleux  *   There are no alignment restrictions on this address. The attributes of the
3891be910bbSSandrine Bailleux  *   memory page it lies within are returned.
390e5d59519SAntonio Nino Diaz  * attr
3911be910bbSSandrine Bailleux  *   Output parameter where to store the attributes of the targeted memory page.
3921be910bbSSandrine Bailleux  */
393e5d59519SAntonio Nino Diaz int xlat_get_mem_attributes_ctx(const xlat_ctx_t *ctx, uintptr_t base_va,
394e5d59519SAntonio Nino Diaz 				uint32_t *attr);
395e5d59519SAntonio Nino Diaz int xlat_get_mem_attributes(uintptr_t base_va, uint32_t *attr);
3961be910bbSSandrine Bailleux 
397d5dfdeb6SJulius Werner #endif /*__ASSEMBLER__*/
398e7b9886cSAntonio Nino Diaz #endif /* XLAT_TABLES_V2_H */
399