blob: 5d5d05505f03931ef0b5a41ed0e6a31d586ae5c3 [file] [log] [blame]
Boyan Karatotev05504ba2023-02-15 13:21:50 +00001/*
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
12void pmuv3_disable_el3(void);
13
14#ifdef __aarch64__
15void pmuv3_enable(cpu_context_t *ctx);
16void pmuv3_init_el2_unused(void);
17#endif /* __aarch64__ */
18
19#endif /* PMUV3_H */