blob: 321c089613794f941592730de12d7f96c3df9a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2021-2023, 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>
void trf_init_el3(void)
{
uint32_t val;
/*
* Allow access of trace filter control registers from
* non-monitor mode.
*/
val = read_sdcr();
val &= ~(SDCR_TTRF_BIT);
write_sdcr(val);
}
|