blob: d1fb18292ee9494e0fce938f9312127b9ba6f25b [file] [log] [blame]
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +01001/*
Jayanth Dodderi Chidanand18d93792023-07-18 14:48:09 +01002 * Copyright (c) 2017-2024, Arm Limited and Contributors. All rights reserved.
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <stdbool.h>
8
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +01009#include <arch.h>
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +000010#include <arch_features.h>
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010011#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/el3_runtime/pubsub.h>
13#include <lib/extensions/spe.h>
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010014
Jayanth Dodderi Chidanand18d93792023-07-18 14:48:09 +010015#include <plat/common/platform.h>
16
17typedef struct spe_ctx {
18 u_register_t pmblimitr_el1;
19} spe_ctx_t;
20
21static struct spe_ctx spe_ctxs[PLATFORM_CORE_COUNT];
22
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010023static inline void psb_csync(void)
24{
25 /*
26 * The assembler does not yet understand the psb csync mnemonic
27 * so use the equivalent hint instruction.
28 */
29 __asm__ volatile("hint #17");
30}
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010031
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000032void spe_init_el3(void)
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000033{
34 uint64_t v;
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010035
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000036 /*
Boyan Karatotev6e2fd8b2023-02-13 16:38:37 +000037 * MDCR_EL3.NSPB (ARM v8.2): SPE enabled in Non-secure state
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000038 * and disabled in secure state. Accesses to SPE registers at
39 * S-EL1 generate trap exceptions to EL3.
Manish V Badarkhe67fec3e2021-12-31 16:08:51 +000040 *
Boyan Karatotev6e2fd8b2023-02-13 16:38:37 +000041 * MDCR_EL3.NSPBE: Profiling Buffer uses Non-secure Virtual Addresses.
42 * When FEAT_RME is not implemented, this field is RES0.
43 *
Manish V Badarkhe67fec3e2021-12-31 16:08:51 +000044 * MDCR_EL3.EnPMSN (ARM v8.7): Do not trap access to PMSNEVFR_EL1
45 * register at NS-EL1 or NS-EL2 to EL3 if FEAT_SPEv1p2 is implemented.
46 * Setting this bit to 1 doesn't have any effect on it when
47 * FEAT_SPEv1p2 not implemented.
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000048 */
49 v = read_mdcr_el3();
Manish V Badarkhe67fec3e2021-12-31 16:08:51 +000050 v |= MDCR_NSPB(MDCR_NSPB_EL1) | MDCR_EnPMSN_BIT;
Boyan Karatotev6e2fd8b2023-02-13 16:38:37 +000051 v &= ~(MDCR_NSPBE_BIT);
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000052 write_mdcr_el3(v);
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010053}
54
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000055void spe_init_el2_unused(void)
56{
57 uint64_t v;
58
59 /*
60 * MDCR_EL2.TPMS (ARM v8.2): Do not trap statistical
61 * profiling controls to EL2.
62 *
63 * MDCR_EL2.E2PB (ARM v8.2): SPE enabled in Non-secure
64 * state. Accesses to profiling buffer controls at
65 * Non-secure EL1 are not trapped to EL2.
66 */
67 v = read_mdcr_el2();
68 v &= ~MDCR_EL2_TPMS;
69 v |= MDCR_EL2_E2PB(MDCR_EL2_E2PB_EL1);
70 write_mdcr_el2(v);
71}
72
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010073void spe_disable(void)
74{
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000075 uint64_t v;
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010076
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000077 /* Drain buffered data */
78 psb_csync();
79 dsbnsh();
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010080
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000081 /* Disable profiling buffer */
82 v = read_pmblimitr_el1();
83 v &= ~(1ULL << 0);
84 write_pmblimitr_el1(v);
85 isb();
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010086}
87
88static void *spe_drain_buffers_hook(const void *arg)
89{
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +000090 if (!is_feat_spe_supported())
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000091 return (void *)-1;
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010092
Dimitris Papastamos5e8cd792018-02-19 14:52:19 +000093 /* Drain buffered data */
94 psb_csync();
95 dsbnsh();
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010096
97 return (void *)0;
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010098}
99
Jayanth Dodderi Chidanand18d93792023-07-18 14:48:09 +0100100static void *spe_context_save(const void *arg)
101{
102 unsigned int core_pos;
103 struct spe_ctx *ctx;
104
105 if (is_feat_spe_supported()) {
106 core_pos = plat_my_core_pos();
107 ctx = &spe_ctxs[core_pos];
108 ctx->pmblimitr_el1 = read_pmblimitr_el1();
109 }
110
111 return NULL;
112}
113
114static void *spe_context_restore(const void *arg)
115{
116 unsigned int core_pos;
117 struct spe_ctx *ctx;
118
119 if (is_feat_spe_supported()) {
120 core_pos = plat_my_core_pos();
121 ctx = &spe_ctxs[core_pos];
122 write_pmblimitr_el1(ctx->pmblimitr_el1);
123 }
124
125 return NULL;
126}
127
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +0100128SUBSCRIBE_TO_EVENT(cm_entering_secure_world, spe_drain_buffers_hook);
Jayanth Dodderi Chidanand18d93792023-07-18 14:48:09 +0100129
130SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, spe_context_save);
131SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, spe_context_restore);