xref: /rk3399_ARM-atf/include/lib/xlat_tables/xlat_tables_v2.h (revision 268131c24fedb804589a2226d4adb3ef97cd8874)
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)
690b64f4efSAntonio Nino Diaz /* All other bits are reserved */
707bb01fb2SAntonio Nino Diaz 
717bb01fb2SAntonio Nino Diaz /*
727bb01fb2SAntonio Nino Diaz  * Memory mapping attributes
737bb01fb2SAntonio Nino Diaz  */
743a1b7b10SAntonio Nino Diaz 
757bb01fb2SAntonio Nino Diaz /*
767bb01fb2SAntonio Nino Diaz  * Memory types supported.
773a1b7b10SAntonio Nino Diaz  * These are organised so that, going down the list, the memory types are
783a1b7b10SAntonio Nino Diaz  * getting weaker; conversely going up the list the memory types are getting
793a1b7b10SAntonio Nino Diaz  * stronger.
807bb01fb2SAntonio Nino Diaz  */
813a1b7b10SAntonio Nino Diaz #define MT_DEVICE		U(0)
823a1b7b10SAntonio Nino Diaz #define MT_NON_CACHEABLE	U(1)
833a1b7b10SAntonio Nino Diaz #define MT_MEMORY		U(2)
847bb01fb2SAntonio Nino Diaz /* Values up to 7 are reserved to add new memory types in the future */
857bb01fb2SAntonio Nino Diaz 
863a1b7b10SAntonio Nino Diaz #define MT_RO			(U(0) << MT_PERM_SHIFT)
873a1b7b10SAntonio Nino Diaz #define MT_RW			(U(1) << MT_PERM_SHIFT)
887bb01fb2SAntonio Nino Diaz 
893a1b7b10SAntonio Nino Diaz #define MT_SECURE		(U(0) << MT_SEC_SHIFT)
903a1b7b10SAntonio Nino Diaz #define MT_NS			(U(1) << MT_SEC_SHIFT)
917bb01fb2SAntonio Nino Diaz 
927bb01fb2SAntonio Nino Diaz /*
933a1b7b10SAntonio Nino Diaz  * Access permissions for instruction execution are only relevant for normal
943a1b7b10SAntonio Nino Diaz  * read-only memory, i.e. MT_MEMORY | MT_RO. They are ignored (and potentially
953a1b7b10SAntonio Nino Diaz  * overridden) otherwise:
967bb01fb2SAntonio Nino Diaz  *  - Device memory is always marked as execute-never.
977bb01fb2SAntonio Nino Diaz  *  - Read-write normal memory is always marked as execute-never.
987bb01fb2SAntonio Nino Diaz  */
993a1b7b10SAntonio Nino Diaz #define MT_EXECUTE		(U(0) << MT_EXECUTE_SHIFT)
1003a1b7b10SAntonio Nino Diaz #define MT_EXECUTE_NEVER	(U(1) << MT_EXECUTE_SHIFT)
101609c9191SAntonio Nino Diaz 
102609c9191SAntonio Nino Diaz /*
1033a1b7b10SAntonio Nino Diaz  * When mapping a region at EL0 or EL1, this attribute will be used to determine
1043a1b7b10SAntonio Nino Diaz  * if a User mapping (EL0) will be created or a Privileged mapping (EL1).
105609c9191SAntonio Nino Diaz  */
1063a1b7b10SAntonio Nino Diaz #define MT_USER			(U(1) << MT_USER_SHIFT)
1073a1b7b10SAntonio Nino Diaz #define MT_PRIVILEGED		(U(0) << MT_USER_SHIFT)
1087bb01fb2SAntonio Nino Diaz 
109609c9191SAntonio Nino Diaz /* Compound attributes for most common usages */
1107bb01fb2SAntonio Nino Diaz #define MT_CODE			(MT_MEMORY | MT_RO | MT_EXECUTE)
1117bb01fb2SAntonio Nino Diaz #define MT_RO_DATA		(MT_MEMORY | MT_RO | MT_EXECUTE_NEVER)
112609c9191SAntonio Nino Diaz #define MT_RW_DATA		(MT_MEMORY | MT_RW | MT_EXECUTE_NEVER)
1137bb01fb2SAntonio Nino Diaz 
1147bb01fb2SAntonio Nino Diaz /*
1157bb01fb2SAntonio Nino Diaz  * Structure for specifying a single region of memory.
1167bb01fb2SAntonio Nino Diaz  */
1177bb01fb2SAntonio Nino Diaz typedef struct mmap_region {
1187bb01fb2SAntonio Nino Diaz 	unsigned long long	base_pa;
1197bb01fb2SAntonio Nino Diaz 	uintptr_t		base_va;
1207bb01fb2SAntonio Nino Diaz 	size_t			size;
1213a1b7b10SAntonio Nino Diaz 	unsigned int		attr;
122fdb1964cSSandrine Bailleux 	/* Desired granularity. See the MAP_REGION2() macro for more details. */
123fdb1964cSSandrine Bailleux 	size_t			granularity;
1247bb01fb2SAntonio Nino Diaz } mmap_region_t;
1257bb01fb2SAntonio Nino Diaz 
12655c84964SSandrine Bailleux /*
127aa1d5f60SAntonio Nino Diaz  * Translation regimes supported by this library. EL_REGIME_INVALID tells the
128aa1d5f60SAntonio Nino Diaz  * library to detect it at runtime.
129b4ae615bSDouglas Raillard  */
130fd2299e6SAntonio Nino Diaz #define EL1_EL0_REGIME		1
1311a92a0e0SAntonio Nino Diaz #define EL2_REGIME		2
132fd2299e6SAntonio Nino Diaz #define EL3_REGIME		3
133aa1d5f60SAntonio Nino Diaz #define EL_REGIME_INVALID	-1
134b4ae615bSDouglas Raillard 
135b4ae615bSDouglas Raillard /*
13655c84964SSandrine Bailleux  * Declare the translation context type.
13755c84964SSandrine Bailleux  * Its definition is private.
13855c84964SSandrine Bailleux  */
13955c84964SSandrine Bailleux typedef struct xlat_ctx xlat_ctx_t;
14055c84964SSandrine Bailleux 
14155c84964SSandrine Bailleux /*
14255c84964SSandrine Bailleux  * Statically allocate a translation context and associated structures. Also
14355c84964SSandrine Bailleux  * initialize them.
14455c84964SSandrine Bailleux  *
14555c84964SSandrine Bailleux  * _ctx_name:
14655c84964SSandrine Bailleux  *   Prefix for the translation context variable.
14755c84964SSandrine Bailleux  *   E.g. If _ctx_name is 'foo', the variable will be called 'foo_xlat_ctx'.
14855c84964SSandrine Bailleux  *   Useful to distinguish multiple contexts from one another.
14955c84964SSandrine Bailleux  *
15055c84964SSandrine Bailleux  * _mmap_count:
15155c84964SSandrine Bailleux  *   Number of mmap_region_t to allocate.
15255c84964SSandrine Bailleux  *   Would typically be MAX_MMAP_REGIONS for the translation context describing
15355c84964SSandrine Bailleux  *   the BL image currently executing.
15455c84964SSandrine Bailleux  *
15555c84964SSandrine Bailleux  * _xlat_tables_count:
15655c84964SSandrine Bailleux  *   Number of sub-translation tables to allocate.
15755c84964SSandrine Bailleux  *   Would typically be MAX_XLAT_TABLES for the translation context describing
15855c84964SSandrine Bailleux  *   the BL image currently executing.
15955c84964SSandrine Bailleux  *   Note that this is only for sub-tables ; at the initial lookup level, there
16055c84964SSandrine Bailleux  *   is always a single table.
16155c84964SSandrine Bailleux  *
16255c84964SSandrine Bailleux  * _virt_addr_space_size, _phy_addr_space_size:
16355c84964SSandrine Bailleux  *   Size (in bytes) of the virtual (resp. physical) address space.
16455c84964SSandrine Bailleux  *   Would typically be PLAT_VIRT_ADDR_SPACE_SIZE
16555c84964SSandrine Bailleux  *   (resp. PLAT_PHY_ADDR_SPACE_SIZE) for the translation context describing the
16655c84964SSandrine Bailleux  *   BL image currently executing.
16755c84964SSandrine Bailleux  */
16855c84964SSandrine Bailleux #define REGISTER_XLAT_CONTEXT(_ctx_name, _mmap_count, _xlat_tables_count, \
169*268131c2SMasahiro Yamada 			      _virt_addr_space_size, _phy_addr_space_size) \
170e7b9886cSAntonio Nino Diaz 	REGISTER_XLAT_CONTEXT_FULL_SPEC(_ctx_name, (_mmap_count),	\
171fd2299e6SAntonio Nino Diaz 					 (_xlat_tables_count),		\
172fd2299e6SAntonio Nino Diaz 					 (_virt_addr_space_size),	\
173fd2299e6SAntonio Nino Diaz 					 (_phy_addr_space_size),	\
174363830dfSMasahiro Yamada 					 EL_REGIME_INVALID,		\
175*268131c2SMasahiro Yamada 					 "xlat_table", "base_xlat_table")
176609c9191SAntonio Nino Diaz 
177609c9191SAntonio Nino Diaz /*
17845d640f0SAntonio Nino Diaz  * Same as REGISTER_XLAT_CONTEXT plus the additional parameters:
17945d640f0SAntonio Nino Diaz  *
18045d640f0SAntonio Nino Diaz  * _xlat_regime:
18145d640f0SAntonio Nino Diaz  *   Specify the translation regime managed by this xlat_ctx_t instance. The
182fd2299e6SAntonio Nino Diaz  *   values are the one from the EL*_REGIME definitions.
18345d640f0SAntonio Nino Diaz  *
18445d640f0SAntonio Nino Diaz  * _section_name:
18545d640f0SAntonio Nino Diaz  *   Specify the name of the section where the translation tables have to be
18645d640f0SAntonio Nino Diaz  *   placed by the linker.
187609c9191SAntonio Nino Diaz  */
188609c9191SAntonio Nino Diaz #define REGISTER_XLAT_CONTEXT2(_ctx_name, _mmap_count, _xlat_tables_count, \
189609c9191SAntonio Nino Diaz 			_virt_addr_space_size, _phy_addr_space_size,	\
19045d640f0SAntonio Nino Diaz 			_xlat_regime, _section_name)			\
191e7b9886cSAntonio Nino Diaz 	REGISTER_XLAT_CONTEXT_FULL_SPEC(_ctx_name, (_mmap_count),	\
192fd2299e6SAntonio Nino Diaz 					 (_xlat_tables_count),		\
193fd2299e6SAntonio Nino Diaz 					 (_virt_addr_space_size),	\
194fd2299e6SAntonio Nino Diaz 					 (_phy_addr_space_size),	\
195363830dfSMasahiro Yamada 					 (_xlat_regime),		\
196363830dfSMasahiro Yamada 					 (_section_name), ".bss"	\
197363830dfSMasahiro Yamada )
19855c84964SSandrine Bailleux 
199a9ad848cSSandrine Bailleux /******************************************************************************
200a9ad848cSSandrine Bailleux  * Generic translation table APIs.
201a9ad848cSSandrine Bailleux  * Each API comes in 2 variants:
202a9ad848cSSandrine Bailleux  * - one that acts on the current translation context for this BL image
203a9ad848cSSandrine Bailleux  * - another that acts on the given translation context instead. This variant
204a9ad848cSSandrine Bailleux  *   is named after the 1st version, with an additional '_ctx' suffix.
205a9ad848cSSandrine Bailleux  *****************************************************************************/
206e769db3eSAntonio Nino Diaz 
207e769db3eSAntonio Nino Diaz /*
208e769db3eSAntonio Nino Diaz  * Initialize translation tables from the current list of mmap regions. Calling
209e769db3eSAntonio Nino Diaz  * this function marks the transition point after which static regions can no
210e769db3eSAntonio Nino Diaz  * longer be added.
211e769db3eSAntonio Nino Diaz  */
2127bb01fb2SAntonio Nino Diaz void init_xlat_tables(void);
213a9ad848cSSandrine Bailleux void init_xlat_tables_ctx(xlat_ctx_t *ctx);
2147bb01fb2SAntonio Nino Diaz 
2157bb01fb2SAntonio Nino Diaz /*
216bbc81007SAntonio Nino Diaz  * Fill all fields of a dynamic translation tables context. It must be done
217bbc81007SAntonio Nino Diaz  * either statically with REGISTER_XLAT_CONTEXT() or at runtime with this
218bbc81007SAntonio Nino Diaz  * function.
219bbc81007SAntonio Nino Diaz  */
220bbc81007SAntonio Nino Diaz void xlat_setup_dynamic_ctx(xlat_ctx_t *ctx, unsigned long long pa_max,
221bbc81007SAntonio Nino Diaz 			    uintptr_t va_max, struct mmap_region *mmap,
222bbc81007SAntonio Nino Diaz 			    unsigned int mmap_num, uint64_t **tables,
223bbc81007SAntonio Nino Diaz 			    unsigned int tables_num, uint64_t *base_table,
224bbc81007SAntonio Nino Diaz 			    int xlat_regime, int *mapped_regions);
225bbc81007SAntonio Nino Diaz 
226bbc81007SAntonio Nino Diaz /*
227e769db3eSAntonio Nino Diaz  * Add a static region with defined base PA and base VA. This function can only
228e769db3eSAntonio Nino Diaz  * be used before initializing the translation tables. The region cannot be
229e769db3eSAntonio Nino Diaz  * removed afterwards.
2307bb01fb2SAntonio Nino Diaz  */
2317bb01fb2SAntonio Nino Diaz void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
2323a1b7b10SAntonio Nino Diaz 		     size_t size, unsigned int attr);
233a9ad848cSSandrine Bailleux void mmap_add_region_ctx(xlat_ctx_t *ctx, const mmap_region_t *mm);
2347bb01fb2SAntonio Nino Diaz 
2357bb01fb2SAntonio Nino Diaz /*
236a9ad848cSSandrine Bailleux  * Add an array of static regions with defined base PA and base VA. This
237a9ad848cSSandrine Bailleux  * function can only be used before initializing the translation tables. The
238a9ad848cSSandrine Bailleux  * regions cannot be removed afterwards.
239a9ad848cSSandrine Bailleux  */
240a9ad848cSSandrine Bailleux void mmap_add(const mmap_region_t *mm);
241a9ad848cSSandrine Bailleux void mmap_add_ctx(xlat_ctx_t *ctx, const mmap_region_t *mm);
242a9ad848cSSandrine Bailleux 
2439056f108SAntonio Nino Diaz /*
2449056f108SAntonio Nino Diaz  * Add a region with defined base PA. Returns base VA calculated using the
2459056f108SAntonio Nino Diaz  * highest existing region in the mmap array even if it fails to allocate the
2469056f108SAntonio Nino Diaz  * region.
2479056f108SAntonio Nino Diaz  */
2489056f108SAntonio Nino Diaz void mmap_add_region_alloc_va(unsigned long long base_pa, uintptr_t *base_va,
2499056f108SAntonio Nino Diaz 			      size_t size, unsigned int attr);
2509056f108SAntonio Nino Diaz void mmap_add_region_alloc_va_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
2519056f108SAntonio Nino Diaz 
2529056f108SAntonio Nino Diaz /*
2539056f108SAntonio Nino Diaz  * Add an array of static regions with defined base PA, and fill the base VA
2549056f108SAntonio Nino Diaz  * field on the array of structs. This function can only be used before
2559056f108SAntonio Nino Diaz  * initializing the translation tables. The regions cannot be removed afterwards.
2569056f108SAntonio Nino Diaz  */
2579056f108SAntonio Nino Diaz void mmap_add_alloc_va(mmap_region_t *mm);
258a9ad848cSSandrine Bailleux 
259a9ad848cSSandrine Bailleux #if PLAT_XLAT_TABLES_DYNAMIC
260a9ad848cSSandrine Bailleux /*
261e769db3eSAntonio Nino Diaz  * Add a dynamic region with defined base PA and base VA. This type of region
262e769db3eSAntonio Nino Diaz  * can be added and removed even after the translation tables are initialized.
2630b64f4efSAntonio Nino Diaz  *
2640b64f4efSAntonio Nino Diaz  * Returns:
2650b64f4efSAntonio Nino Diaz  *        0: Success.
2660b64f4efSAntonio Nino Diaz  *   EINVAL: Invalid values were used as arguments.
2670b64f4efSAntonio Nino Diaz  *   ERANGE: Memory limits were surpassed.
2680b64f4efSAntonio Nino Diaz  *   ENOMEM: Not enough space in the mmap array or not enough free xlat tables.
2690b64f4efSAntonio Nino Diaz  *    EPERM: It overlaps another region in an invalid way.
2700b64f4efSAntonio Nino Diaz  */
2710b64f4efSAntonio Nino Diaz int mmap_add_dynamic_region(unsigned long long base_pa, uintptr_t base_va,
2723a1b7b10SAntonio Nino Diaz 			    size_t size, unsigned int attr);
273a9ad848cSSandrine Bailleux int mmap_add_dynamic_region_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
2747bb01fb2SAntonio Nino Diaz 
2750b64f4efSAntonio Nino Diaz /*
2769056f108SAntonio Nino Diaz  * Add a dynamic region with defined base PA. Returns base VA calculated using
2779056f108SAntonio Nino Diaz  * the highest existing region in the mmap array even if it fails to allocate
2789056f108SAntonio Nino Diaz  * the region.
2799056f108SAntonio Nino Diaz  *
2809056f108SAntonio Nino Diaz  * mmap_add_dynamic_region_alloc_va() returns the allocated VA in 'base_va'.
2819056f108SAntonio Nino Diaz  * mmap_add_dynamic_region_alloc_va_ctx() returns it in 'mm->base_va'.
2829056f108SAntonio Nino Diaz  *
2839056f108SAntonio Nino Diaz  * It returns the same error values as mmap_add_dynamic_region().
2849056f108SAntonio Nino Diaz  */
2859056f108SAntonio Nino Diaz int mmap_add_dynamic_region_alloc_va(unsigned long long base_pa,
2869056f108SAntonio Nino Diaz 				     uintptr_t *base_va,
2879056f108SAntonio Nino Diaz 				     size_t size, unsigned int attr);
2889056f108SAntonio Nino Diaz int mmap_add_dynamic_region_alloc_va_ctx(xlat_ctx_t *ctx, mmap_region_t *mm);
2899056f108SAntonio Nino Diaz 
2909056f108SAntonio Nino Diaz /*
2910b64f4efSAntonio Nino Diaz  * Remove a region with the specified base VA and size. Only dynamic regions can
292e769db3eSAntonio Nino Diaz  * be removed, and they can be removed even if the translation tables are
293e769db3eSAntonio Nino Diaz  * initialized.
2940b64f4efSAntonio Nino Diaz  *
2950b64f4efSAntonio Nino Diaz  * Returns:
2960b64f4efSAntonio Nino Diaz  *        0: Success.
2970b64f4efSAntonio Nino Diaz  *   EINVAL: The specified region wasn't found.
2980b64f4efSAntonio Nino Diaz  *    EPERM: Trying to remove a static region.
2990b64f4efSAntonio Nino Diaz  */
3000b64f4efSAntonio Nino Diaz int mmap_remove_dynamic_region(uintptr_t base_va, size_t size);
301a9ad848cSSandrine Bailleux int mmap_remove_dynamic_region_ctx(xlat_ctx_t *ctx,
302a9ad848cSSandrine Bailleux 				uintptr_t base_va,
303a9ad848cSSandrine Bailleux 				size_t size);
304a9ad848cSSandrine Bailleux 
305a9ad848cSSandrine Bailleux #endif /* PLAT_XLAT_TABLES_DYNAMIC */
3060b64f4efSAntonio Nino Diaz 
3071be910bbSSandrine Bailleux /*
308996d6b39SSandrine Bailleux  * Change the memory attributes of the memory region starting from a given
309996d6b39SSandrine Bailleux  * virtual address in a set of translation tables.
310996d6b39SSandrine Bailleux  *
311996d6b39SSandrine Bailleux  * This function can only be used after the translation tables have been
312996d6b39SSandrine Bailleux  * initialized.
313996d6b39SSandrine Bailleux  *
314996d6b39SSandrine Bailleux  * The base address of the memory region must be aligned on a page boundary.
315996d6b39SSandrine Bailleux  * The size of this memory region must be a multiple of a page size.
316996d6b39SSandrine Bailleux  * The memory region must be already mapped by the given translation tables
317996d6b39SSandrine Bailleux  * and it must be mapped at the granularity of a page.
318996d6b39SSandrine Bailleux  *
319996d6b39SSandrine Bailleux  * Return 0 on success, a negative value on error.
320996d6b39SSandrine Bailleux  *
321996d6b39SSandrine Bailleux  * In case of error, the memory attributes remain unchanged and this function
322996d6b39SSandrine Bailleux  * has no effect.
323996d6b39SSandrine Bailleux  *
324996d6b39SSandrine Bailleux  * ctx
325996d6b39SSandrine Bailleux  *   Translation context to work on.
326996d6b39SSandrine Bailleux  * base_va:
327996d6b39SSandrine Bailleux  *   Virtual address of the 1st page to change the attributes of.
328996d6b39SSandrine Bailleux  * size:
329996d6b39SSandrine Bailleux  *   Size in bytes of the memory region.
330996d6b39SSandrine Bailleux  * attr:
331996d6b39SSandrine Bailleux  *   New attributes of the page tables. The attributes that can be changed are
332996d6b39SSandrine Bailleux  *   data access (MT_RO/MT_RW), instruction access (MT_EXECUTE_NEVER/MT_EXECUTE)
333996d6b39SSandrine Bailleux  *   and user/privileged access (MT_USER/MT_PRIVILEGED) in the case of contexts
334996d6b39SSandrine Bailleux  *   that are used in the EL1&0 translation regime. Also, note that this
335996d6b39SSandrine Bailleux  *   function doesn't allow to remap a region as RW and executable, or to remap
336996d6b39SSandrine Bailleux  *   device memory as executable.
337996d6b39SSandrine Bailleux  *
338996d6b39SSandrine Bailleux  * NOTE: The caller of this function must be able to write to the translation
339996d6b39SSandrine Bailleux  * tables, i.e. the memory where they are stored must be mapped with read-write
340996d6b39SSandrine Bailleux  * access permissions. This function assumes it is the case. If this is not
341996d6b39SSandrine Bailleux  * the case then this function might trigger a data abort exception.
342996d6b39SSandrine Bailleux  *
343996d6b39SSandrine Bailleux  * NOTE2: The caller is responsible for making sure that the targeted
344996d6b39SSandrine Bailleux  * translation tables are not modified by any other code while this function is
345996d6b39SSandrine Bailleux  * executing.
346996d6b39SSandrine Bailleux  */
347e5d59519SAntonio Nino Diaz int xlat_change_mem_attributes_ctx(const xlat_ctx_t *ctx, uintptr_t base_va,
348e5d59519SAntonio Nino Diaz 				   size_t size, uint32_t attr);
349e5d59519SAntonio Nino Diaz int xlat_change_mem_attributes(uintptr_t base_va, size_t size, uint32_t attr);
350996d6b39SSandrine Bailleux 
35160e8f3cfSPetre-Ionut Tudor #if PLAT_RO_XLAT_TABLES
35260e8f3cfSPetre-Ionut Tudor /*
35360e8f3cfSPetre-Ionut Tudor  * Change the memory attributes of the memory region encompassing the higher
35460e8f3cfSPetre-Ionut Tudor  * level translation tables to secure read-only data.
35560e8f3cfSPetre-Ionut Tudor  *
35660e8f3cfSPetre-Ionut Tudor  * Return 0 on success, a negative error code on error.
35760e8f3cfSPetre-Ionut Tudor  */
35860e8f3cfSPetre-Ionut Tudor int xlat_make_tables_readonly(void);
35960e8f3cfSPetre-Ionut Tudor #endif
36060e8f3cfSPetre-Ionut Tudor 
361996d6b39SSandrine Bailleux /*
3621be910bbSSandrine Bailleux  * Query the memory attributes of a memory page in a set of translation tables.
3631be910bbSSandrine Bailleux  *
3641be910bbSSandrine Bailleux  * Return 0 on success, a negative error code on error.
365e5d59519SAntonio Nino Diaz  * On success, the attributes are stored into *attr.
3661be910bbSSandrine Bailleux  *
3671be910bbSSandrine Bailleux  * ctx
3681be910bbSSandrine Bailleux  *   Translation context to work on.
3691be910bbSSandrine Bailleux  * base_va
3701be910bbSSandrine Bailleux  *   Virtual address of the page to get the attributes of.
3711be910bbSSandrine Bailleux  *   There are no alignment restrictions on this address. The attributes of the
3721be910bbSSandrine Bailleux  *   memory page it lies within are returned.
373e5d59519SAntonio Nino Diaz  * attr
3741be910bbSSandrine Bailleux  *   Output parameter where to store the attributes of the targeted memory page.
3751be910bbSSandrine Bailleux  */
376e5d59519SAntonio Nino Diaz int xlat_get_mem_attributes_ctx(const xlat_ctx_t *ctx, uintptr_t base_va,
377e5d59519SAntonio Nino Diaz 				uint32_t *attr);
378e5d59519SAntonio Nino Diaz int xlat_get_mem_attributes(uintptr_t base_va, uint32_t *attr);
3791be910bbSSandrine Bailleux 
380d5dfdeb6SJulius Werner #endif /*__ASSEMBLER__*/
381e7b9886cSAntonio Nino Diaz #endif /* XLAT_TABLES_V2_H */
382