Dimitris Papastamos | ef69e1e | 2017-10-17 14:03:14 +0100 | [diff] [blame] | 1 | /* |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 2 | * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved. |
Dimitris Papastamos | ef69e1e | 2017-10-17 14:03:14 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 8 | #include <cdefs.h> |
Antonio Nino Diaz | 09d40e0 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <stdbool.h> |
| 10 | |
Dimitris Papastamos | ef69e1e | 2017-10-17 14:03:14 +0100 | [diff] [blame] | 11 | #include <arch.h> |
| 12 | #include <arch_helpers.h> |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 13 | |
Antonio Nino Diaz | 09d40e0 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | #include <lib/el3_runtime/pubsub_events.h> |
| 15 | #include <lib/extensions/amu.h> |
| 16 | #include <lib/extensions/amu_private.h> |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 17 | |
Antonio Nino Diaz | 09d40e0 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 18 | #include <plat/common/platform.h> |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 19 | |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 20 | static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT]; |
Dimitris Papastamos | ef69e1e | 2017-10-17 14:03:14 +0100 | [diff] [blame] | 21 | |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 22 | static inline __unused uint32_t read_id_pfr0_amu(void) |
Dimitris Papastamos | ef69e1e | 2017-10-17 14:03:14 +0100 | [diff] [blame] | 23 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 24 | return (read_id_pfr0() >> ID_PFR0_AMU_SHIFT) & |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 25 | ID_PFR0_AMU_MASK; |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 26 | } |
| 27 | |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 28 | static inline __unused void write_hcptr_tam(uint32_t value) |
| 29 | { |
| 30 | write_hcptr((read_hcptr() & ~TAM_BIT) | |
| 31 | ((value << TAM_SHIFT) & TAM_BIT)); |
| 32 | } |
| 33 | |
| 34 | static inline __unused void write_amcr_cg1rz(uint32_t value) |
| 35 | { |
| 36 | write_amcr((read_amcr() & ~AMCR_CG1RZ_BIT) | |
| 37 | ((value << AMCR_CG1RZ_SHIFT) & AMCR_CG1RZ_BIT)); |
| 38 | } |
| 39 | |
| 40 | static inline __unused uint32_t read_amcfgr_ncg(void) |
| 41 | { |
| 42 | return (read_amcfgr() >> AMCFGR_NCG_SHIFT) & |
| 43 | AMCFGR_NCG_MASK; |
| 44 | } |
| 45 | |
| 46 | static inline __unused uint32_t read_amcgcr_cg1nc(void) |
| 47 | { |
| 48 | return (read_amcgcr() >> AMCGCR_CG1NC_SHIFT) & |
| 49 | AMCGCR_CG1NC_MASK; |
| 50 | } |
| 51 | |
| 52 | static inline __unused uint32_t read_amcntenset0_px(void) |
| 53 | { |
| 54 | return (read_amcntenset0() >> AMCNTENSET0_Pn_SHIFT) & |
| 55 | AMCNTENSET0_Pn_MASK; |
| 56 | } |
| 57 | |
| 58 | static inline __unused uint32_t read_amcntenset1_px(void) |
| 59 | { |
| 60 | return (read_amcntenset1() >> AMCNTENSET1_Pn_SHIFT) & |
| 61 | AMCNTENSET1_Pn_MASK; |
| 62 | } |
| 63 | |
| 64 | static inline __unused void write_amcntenset0_px(uint32_t px) |
| 65 | { |
| 66 | uint32_t value = read_amcntenset0(); |
| 67 | |
| 68 | value &= ~AMCNTENSET0_Pn_MASK; |
| 69 | value |= (px << AMCNTENSET0_Pn_SHIFT) & |
| 70 | AMCNTENSET0_Pn_MASK; |
| 71 | |
| 72 | write_amcntenset0(value); |
| 73 | } |
| 74 | |
| 75 | static inline __unused void write_amcntenset1_px(uint32_t px) |
| 76 | { |
| 77 | uint32_t value = read_amcntenset1(); |
| 78 | |
| 79 | value &= ~AMCNTENSET1_Pn_MASK; |
| 80 | value |= (px << AMCNTENSET1_Pn_SHIFT) & |
| 81 | AMCNTENSET1_Pn_MASK; |
| 82 | |
| 83 | write_amcntenset1(value); |
| 84 | } |
| 85 | |
| 86 | static inline __unused void write_amcntenclr0_px(uint32_t px) |
| 87 | { |
| 88 | uint32_t value = read_amcntenclr0(); |
| 89 | |
| 90 | value &= ~AMCNTENCLR0_Pn_MASK; |
| 91 | value |= (px << AMCNTENCLR0_Pn_SHIFT) & AMCNTENCLR0_Pn_MASK; |
| 92 | |
| 93 | write_amcntenclr0(value); |
| 94 | } |
| 95 | |
| 96 | static inline __unused void write_amcntenclr1_px(uint32_t px) |
| 97 | { |
| 98 | uint32_t value = read_amcntenclr1(); |
| 99 | |
| 100 | value &= ~AMCNTENCLR1_Pn_MASK; |
| 101 | value |= (px << AMCNTENCLR1_Pn_SHIFT) & AMCNTENCLR1_Pn_MASK; |
| 102 | |
| 103 | write_amcntenclr1(value); |
| 104 | } |
| 105 | |
| 106 | static bool amu_supported(void) |
| 107 | { |
| 108 | return read_id_pfr0_amu() >= ID_PFR0_AMU_V1; |
| 109 | } |
| 110 | |
| 111 | static bool amu_v1p1_supported(void) |
| 112 | { |
| 113 | return read_id_pfr0_amu() >= ID_PFR0_AMU_V1P1; |
| 114 | } |
| 115 | |
| 116 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
Chris Kay | b4b726e | 2021-05-24 21:00:07 +0100 | [diff] [blame] | 117 | static bool amu_group1_supported(void) |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 118 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 119 | return read_amcfgr_ncg() > 0U; |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 120 | } |
| 121 | #endif |
| 122 | |
| 123 | /* |
| 124 | * Enable counters. This function is meant to be invoked |
| 125 | * by the context management library before exiting from EL3. |
| 126 | */ |
Antonio Nino Diaz | 40daecc | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 127 | void amu_enable(bool el2_unused) |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 128 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 129 | if (!amu_supported()) { |
Dimitris Papastamos | 0767d50 | 2017-11-13 09:49:45 +0000 | [diff] [blame] | 130 | return; |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 131 | } |
| 132 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 133 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 134 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 135 | /* Check and set presence of group 1 counters */ |
| 136 | if (!amu_group1_supported()) { |
| 137 | ERROR("AMU Counter Group 1 is not implemented\n"); |
| 138 | panic(); |
| 139 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 140 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 141 | /* Check number of group 1 counters */ |
| 142 | uint32_t cnt_num = read_amcgcr_cg1nc(); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 143 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 144 | VERBOSE("%s%u. %s%u\n", |
| 145 | "Number of AMU Group 1 Counters ", cnt_num, |
| 146 | "Requested number ", AMU_GROUP1_NR_COUNTERS); |
| 147 | |
| 148 | if (cnt_num < AMU_GROUP1_NR_COUNTERS) { |
| 149 | ERROR("%s%u is less than %s%u\n", |
| 150 | "Number of AMU Group 1 Counters ", cnt_num, |
| 151 | "Requested number ", AMU_GROUP1_NR_COUNTERS); |
| 152 | panic(); |
| 153 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 154 | } |
| 155 | #endif |
Dimitris Papastamos | 0767d50 | 2017-11-13 09:49:45 +0000 | [diff] [blame] | 156 | |
| 157 | if (el2_unused) { |
Dimitris Papastamos | 0767d50 | 2017-11-13 09:49:45 +0000 | [diff] [blame] | 158 | /* |
| 159 | * Non-secure access from EL0 or EL1 to the Activity Monitor |
| 160 | * registers do not trap to EL2. |
| 161 | */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 162 | write_hcptr_tam(0U); |
Dimitris Papastamos | 0767d50 | 2017-11-13 09:49:45 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* Enable group 0 counters */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 166 | write_amcntenset0_px(AMU_GROUP0_COUNTERS_MASK); |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 167 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 168 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 169 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 170 | /* Enable group 1 counters */ |
| 171 | write_amcntenset1_px(AMU_GROUP1_COUNTERS_MASK); |
| 172 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 173 | #endif |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 174 | |
| 175 | /* Initialize FEAT_AMUv1p1 features if present. */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 176 | if (!amu_v1p1_supported()) { |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 177 | return; |
| 178 | } |
| 179 | |
| 180 | #if AMU_RESTRICT_COUNTERS |
| 181 | /* |
| 182 | * FEAT_AMUv1p1 adds a register field to restrict access to group 1 |
| 183 | * counters at all but the highest implemented EL. This is controlled |
| 184 | * with the AMU_RESTRICT_COUNTERS compile time flag, when set, system |
| 185 | * register reads at lower ELs return zero. Reads from the memory |
| 186 | * mapped view are unaffected. |
| 187 | */ |
| 188 | VERBOSE("AMU group 1 counter access restricted.\n"); |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 189 | write_amcr_cg1rz(1U); |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 190 | #else |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 191 | write_amcr_cg1rz(0U); |
johpow01 | 873d424 | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 192 | #endif |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* Read the group 0 counter identified by the given `idx`. */ |
Chris Kay | b4b726e | 2021-05-24 21:00:07 +0100 | [diff] [blame] | 196 | static uint64_t amu_group0_cnt_read(unsigned int idx) |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 197 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 198 | assert(amu_supported()); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 199 | assert(idx < AMU_GROUP0_NR_COUNTERS); |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 200 | |
| 201 | return amu_group0_cnt_read_internal(idx); |
| 202 | } |
| 203 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 204 | /* Write the group 0 counter identified by the given `idx` with `val` */ |
Chris Kay | b4b726e | 2021-05-24 21:00:07 +0100 | [diff] [blame] | 205 | static void amu_group0_cnt_write(unsigned int idx, uint64_t val) |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 206 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 207 | assert(amu_supported()); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 208 | assert(idx < AMU_GROUP0_NR_COUNTERS); |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 209 | |
| 210 | amu_group0_cnt_write_internal(idx, val); |
| 211 | isb(); |
| 212 | } |
| 213 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 214 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 215 | /* Read the group 1 counter identified by the given `idx` */ |
Chris Kay | b4b726e | 2021-05-24 21:00:07 +0100 | [diff] [blame] | 216 | static uint64_t amu_group1_cnt_read(unsigned int idx) |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 217 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 218 | assert(amu_supported()); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 219 | assert(amu_group1_supported()); |
| 220 | assert(idx < AMU_GROUP1_NR_COUNTERS); |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 221 | |
| 222 | return amu_group1_cnt_read_internal(idx); |
| 223 | } |
| 224 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 225 | /* Write the group 1 counter identified by the given `idx` with `val` */ |
Chris Kay | b4b726e | 2021-05-24 21:00:07 +0100 | [diff] [blame] | 226 | static void amu_group1_cnt_write(unsigned int idx, uint64_t val) |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 227 | { |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 228 | assert(amu_supported()); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 229 | assert(amu_group1_supported()); |
| 230 | assert(idx < AMU_GROUP1_NR_COUNTERS); |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 231 | |
| 232 | amu_group1_cnt_write_internal(idx, val); |
| 233 | isb(); |
| 234 | } |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 235 | #endif |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 236 | |
| 237 | static void *amu_context_save(const void *arg) |
| 238 | { |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 239 | struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()]; |
| 240 | unsigned int i; |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 241 | |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 242 | if (!amu_supported()) { |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 243 | return (void *)-1; |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 244 | } |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 245 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 246 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 247 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 248 | if (!amu_group1_supported()) { |
| 249 | return (void *)-1; |
| 250 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 251 | } |
| 252 | #endif |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 253 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 254 | /* Assert that group 0/1 counter configuration is what we expect */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 255 | assert(read_amcntenset0_px() == AMU_GROUP0_COUNTERS_MASK); |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 256 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 257 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 258 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 259 | assert(read_amcntenset1_px() == AMU_GROUP1_COUNTERS_MASK); |
| 260 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 261 | #endif |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 262 | /* |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 263 | * Disable group 0/1 counters to avoid other observers like SCP sampling |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 264 | * counter values from the future via the memory mapped view. |
| 265 | */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 266 | write_amcntenclr0_px(AMU_GROUP0_COUNTERS_MASK); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 267 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 268 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 269 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 270 | write_amcntenclr1_px(AMU_GROUP1_COUNTERS_MASK); |
| 271 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 272 | #endif |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 273 | |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 274 | isb(); |
| 275 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 276 | /* Save all group 0 counters */ |
| 277 | for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) { |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 278 | ctx->group0_cnts[i] = amu_group0_cnt_read(i); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 279 | } |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 280 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 281 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 282 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 283 | /* Save group 1 counters */ |
| 284 | for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) { |
| 285 | if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) { |
| 286 | ctx->group1_cnts[i] = amu_group1_cnt_read(i); |
| 287 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | #endif |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 291 | |
Antonio Nino Diaz | 40daecc | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 292 | return (void *)0; |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | static void *amu_context_restore(const void *arg) |
| 296 | { |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 297 | struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()]; |
| 298 | unsigned int i; |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 299 | |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 300 | if (!amu_supported()) { |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 301 | return (void *)-1; |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 302 | } |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 303 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 304 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 305 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 306 | if (!amu_group1_supported()) { |
| 307 | return (void *)-1; |
| 308 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 309 | } |
| 310 | #endif |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 311 | |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 312 | /* Counters were disabled in `amu_context_save()` */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 313 | assert(read_amcntenset0_px() == 0U); |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 314 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 315 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 316 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 317 | assert(read_amcntenset1_px() == 0U); |
| 318 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 319 | #endif |
| 320 | |
| 321 | /* Restore all group 0 counters */ |
| 322 | for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) { |
Joel Hutton | c70da54 | 2017-12-21 15:21:20 +0000 | [diff] [blame] | 323 | amu_group0_cnt_write(i, ctx->group0_cnts[i]); |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 324 | } |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 325 | |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 326 | /* Restore group 0 counter configuration */ |
Chris Kay | 33b9be6 | 2021-05-26 11:58:23 +0100 | [diff] [blame] | 327 | write_amcntenset0_px(AMU_GROUP0_COUNTERS_MASK); |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 328 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 329 | #if ENABLE_AMU_AUXILIARY_COUNTERS |
| 330 | if (AMU_GROUP1_NR_COUNTERS > 0U) { |
| 331 | /* Restore group 1 counters */ |
| 332 | for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) { |
| 333 | if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) { |
| 334 | amu_group1_cnt_write(i, ctx->group1_cnts[i]); |
| 335 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 336 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 337 | |
Chris Kay | 1fd685a | 2021-05-25 10:42:56 +0100 | [diff] [blame^] | 338 | /* Restore group 1 counter configuration */ |
| 339 | write_amcntenset1_px(AMU_GROUP1_COUNTERS_MASK); |
| 340 | } |
Alexei Fedorov | f3ccf03 | 2020-07-14 08:17:56 +0100 | [diff] [blame] | 341 | #endif |
| 342 | |
Antonio Nino Diaz | 40daecc | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 343 | return (void *)0; |
Dimitris Papastamos | b6eb393 | 2017-11-28 13:47:06 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save); |
| 347 | SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore); |