amu.h 1.16 KB
Newer Older
1
/*
2
 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef AMU_H
#define AMU_H
9

10
#include <stdbool.h>
11
#include <stdint.h>
12
13
14
15
16

#include <platform_def.h>

#include <lib/cassert.h>
#include <lib/utils_def.h>
17
18

/* All group 0 counters */
19
#define AMU_GROUP0_COUNTERS_MASK	U(0xf)
20

21
22
23
#ifdef PLAT_AMU_GROUP1_COUNTERS_MASK
#define AMU_GROUP1_COUNTERS_MASK	PLAT_AMU_GROUP1_COUNTERS_MASK
#else
24
#define AMU_GROUP1_COUNTERS_MASK	U(0)
25
26
27
28
29
#endif

#ifdef PLAT_AMU_GROUP1_NR_COUNTERS
#define AMU_GROUP1_NR_COUNTERS		PLAT_AMU_GROUP1_NR_COUNTERS
#else
30
#define AMU_GROUP1_NR_COUNTERS		U(0)
31
32
33
34
35
#endif

CASSERT(AMU_GROUP1_COUNTERS_MASK <= 0xffff, invalid_amu_group1_counters_mask);
CASSERT(AMU_GROUP1_NR_COUNTERS <= 16, invalid_amu_group1_nr_counters);

36
37
bool amu_supported(void);
void amu_enable(bool el2_unused);
38

39
40
41
42
43
44
45
46
47
/* Group 0 configuration helpers */
uint64_t amu_group0_cnt_read(int idx);
void amu_group0_cnt_write(int idx, uint64_t val);

/* Group 1 configuration helpers */
uint64_t amu_group1_cnt_read(int idx);
void amu_group1_cnt_write(int idx, uint64_t val);
void amu_group1_set_evtype(int idx, unsigned int val);

48
#endif /* AMU_H */