blob: b3463872ba6456386efd9906810b08fab5b7c216 [file] [log] [blame]
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01001/*
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +01002 * Copyright (c) 2021-2022, Arm Limited. All rights reserved.
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +01008#include <arch_features.h>
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01009#include <arch_helpers.h>
10#include <lib/el3_runtime/pubsub.h>
11#include <lib/extensions/trbe.h>
12
13static void tsb_csync(void)
14{
15 /*
16 * The assembler does not yet understand the tsb csync mnemonic
17 * so use the equivalent hint instruction.
18 */
19 __asm__ volatile("hint #18");
20}
21
Manish V Badarkhe20df29c2021-07-02 09:10:56 +010022void trbe_enable(void)
23{
24 uint64_t val;
25
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +010026 if (is_feat_trbe_present()) {
Manish V Badarkhe20df29c2021-07-02 09:10:56 +010027 /*
28 * MDCR_EL3.NSTB = 0b11
29 * Allow access of trace buffer control registers from NS-EL1
30 * and NS-EL2, tracing is prohibited in Secure and Realm state
31 * (if implemented).
32 */
33 val = read_mdcr_el3();
34 val |= MDCR_NSTB(MDCR_NSTB_EL1);
35 write_mdcr_el3(val);
36 }
37}
38
39static void *trbe_drain_trace_buffers_hook(const void *arg __unused)
40{
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +010041 if (is_feat_trbe_present()) {
Manish V Badarkhe20df29c2021-07-02 09:10:56 +010042 /*
43 * Before switching from normal world to secure world
44 * the trace buffers need to be drained out to memory. This is
45 * required to avoid an invalid memory access when TTBR is switched
46 * for entry to S-EL1.
47 */
48 tsb_csync();
49 dsbnsh();
50 }
51
52 return (void *)0;
53}
54
55SUBSCRIBE_TO_EVENT(cm_entering_secure_world, trbe_drain_trace_buffers_hook);