mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 00:17:02 +02:00
Introduced a build flag 'ENABLE_TRF_FOR_NS' to enable trace filter control registers access in NS-EL2, or NS-EL1 (when NS-EL2 is implemented but unused). Change-Id: If3f53b8173a5573424b9a405a4bd8c206ffdeb8c Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
36 lines
625 B
C
36 lines
625 B
C
/*
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <arch.h>
|
|
#include <arch_helpers.h>
|
|
#include <lib/extensions/trf.h>
|
|
|
|
static bool trf_supported(void)
|
|
{
|
|
uint32_t features;
|
|
|
|
features = read_id_dfr0() >> ID_DFR0_TRACEFILT_SHIFT;
|
|
return ((features & ID_DFR0_TRACEFILT_MASK) ==
|
|
ID_DFR0_TRACEFILT_SUPPORTED);
|
|
}
|
|
|
|
void trf_enable(void)
|
|
{
|
|
uint32_t val;
|
|
|
|
if (trf_supported()) {
|
|
/*
|
|
* Allow access of trace filter control registers from
|
|
* non-monitor mode
|
|
*/
|
|
val = read_sdcr();
|
|
val &= ~SDCR_TTRF_BIT;
|
|
write_sdcr(val);
|
|
}
|
|
}
|