mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

The `ENABLE_AMU` build option can be used to enable the architecturally defined AMU counters. At present, there is no support for the auxiliary counter group. Change-Id: I7ea0c0a00327f463199d1b0a481f01dadb09d312 Signed-off-by: Dimitris Papastamos <dimitris.papastamos@arm.com>
40 lines
857 B
C
40 lines
857 B
C
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <amu.h>
|
|
#include <arch.h>
|
|
#include <arch_helpers.h>
|
|
|
|
void amu_enable(int el2_unused)
|
|
{
|
|
uint64_t features;
|
|
|
|
features = read_id_aa64pfr0_el1() >> ID_AA64PFR0_AMU_SHIFT;
|
|
if ((features & ID_AA64PFR0_AMU_MASK) == 1) {
|
|
uint64_t v;
|
|
|
|
if (el2_unused) {
|
|
/*
|
|
* CPTR_EL2.TAM: Set to zero so any accesses to
|
|
* the Activity Monitor registers do not trap to EL2.
|
|
*/
|
|
v = read_cptr_el2();
|
|
v &= ~CPTR_EL2_TAM_BIT;
|
|
write_cptr_el2(v);
|
|
}
|
|
|
|
/*
|
|
* CPTR_EL3.TAM: Set to zero so that any accesses to
|
|
* the Activity Monitor registers do not trap to EL3.
|
|
*/
|
|
v = read_cptr_el3();
|
|
v &= ~TAM_BIT;
|
|
write_cptr_el3(v);
|
|
|
|
/* Enable group 0 counters */
|
|
write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
|
|
}
|
|
}
|