blob: 252b92c8520a352f2eae5e4e9b98fe415abdc101 [file] [log] [blame]
Gary Morrison3d7f6542021-01-27 13:08:47 -06001/*
2 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef XLAT_MPU_H
8#define XLAT_MPU_H
9
laurenw-arm56f1e3e2021-03-03 14:19:38 -060010#ifndef __ASSEMBLER__
11
12#include <lib/cassert.h>
13
Gary Morrison3d7f6542021-01-27 13:08:47 -060014#define XLAT_TABLES_LIB_V2 1
15
16void enable_mpu_el2(unsigned int flags);
17void enable_mpu_direct_el2(unsigned int flags);
18
19/*
20 * Function to wipe clean and disable all MPU regions. This function expects
21 * that the MPU has already been turned off, and caching concerns addressed,
22 * but it nevertheless also explicitly turns off the MPU.
23 */
24void clear_all_mpu_regions(void);
25
laurenw-arm56f1e3e2021-03-03 14:19:38 -060026#endif /* __ASSEMBLER__ */
Gary Morrison3d7f6542021-01-27 13:08:47 -060027#endif /* XLAT_MPU_H */