xref: /rk3399_ARM-atf/include/lib/extensions/amu.h (revision 9cf75647235ad243acc7a585696ccb7b5ff54b36)
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