1 /* 2 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef AMU_H 8 #define AMU_H 9 10 #include <stdbool.h> 11 #include <context.h> 12 13 #if __aarch64__ 14 void amu_enable(bool el2_unused, cpu_context_t *ctx); 15 #else 16 void amu_enable(bool el2_unused); 17 #endif 18 19 #endif /* AMU_H */ 20