xref: /rk3399_ARM-atf/include/lib/extensions/pmuv3.h (revision a2d4363791650cc8cbfc3d9f397f5a7cece834f2)
1 /*
2  * Copyright (c) 2023, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PMUV3_H
8 #define PMUV3_H
9 
10 #include <context.h>
11 
12 void pmuv3_init_el3(void);
13 
14 #ifdef __aarch64__
15 void pmuv3_enable(cpu_context_t *ctx);
16 void pmuv3_init_el2_unused(void);
17 #endif /* __aarch64__ */
18 
19 #endif /* PMUV3_H */
20