mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

For v8-R64, especially R82, creating code to run BL1 at EL2, using MPU. Signed-off-by: Gary Morrison <gary.morrison@arm.com> Change-Id: I439ac3915b982ad1e61d24365bdd1584b3070425
22 lines
564 B
C
22 lines
564 B
C
/*
|
|
* Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef XLAT_MPU_H
|
|
#define XLAT_MPU_H
|
|
|
|
#define XLAT_TABLES_LIB_V2 1
|
|
|
|
void enable_mpu_el2(unsigned int flags);
|
|
void enable_mpu_direct_el2(unsigned int flags);
|
|
|
|
/*
|
|
* Function to wipe clean and disable all MPU regions. This function expects
|
|
* that the MPU has already been turned off, and caching concerns addressed,
|
|
* but it nevertheless also explicitly turns off the MPU.
|
|
*/
|
|
void clear_all_mpu_regions(void);
|
|
|
|
#endif /* XLAT_MPU_H */
|