blob: 62fee7b60c5a09026c92dc3caed4a2f6d89916fe [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
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000012void pmuv3_init_el3(void);
Boyan Karatotev05504ba2023-02-15 13:21:50 +000013
14#ifdef __aarch64__
15void pmuv3_enable(cpu_context_t *ctx);
16void pmuv3_init_el2_unused(void);
17#endif /* __aarch64__ */
18
19#endif /* PMUV3_H */