blob: 94237292d23e982bad313426886b078329dcb9a2 [file] [log] [blame]
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +01001/*
Arvind Ram Prakasha438f432023-06-23 14:47:30 -05002 * Copyright (c) 2020-2023, Arm Limited. All rights reserved.
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
9#include <cpu_macros.S>
10#include <neoverse_n2.h>
Bipin Ravi1fe4a9d2022-01-18 01:59:06 -060011#include "wa_cve_2022_23960_bhb_vector.S"
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +010012
13/* Hardware handled coherency */
14#if HW_ASSISTED_COHERENCY == 0
15#error "Neoverse N2 must be compiled with HW_ASSISTED_COHERENCY enabled"
16#endif
17
18/* 64-bit only core */
19#if CTX_INCLUDE_AARCH32_REGS == 1
20#error "Neoverse-N2 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
21#endif
22
Bipin Ravi1fe4a9d2022-01-18 01:59:06 -060023#if WORKAROUND_CVE_2022_23960
24 wa_cve_2022_23960_bhb_vector_table NEOVERSE_N2_BHB_LOOP_COUNT, neoverse_n2
25#endif /* WORKAROUND_CVE_2022_23960 */
26
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050027/*
28 * ERRATA_DSU_2313941:
29 * The errata is defined in dsu_helpers.S and applies to Neoverse N2.
30 * Henceforth creating symbolic names to the already existing errata
31 * workaround functions to get them registered under the Errata Framework.
nayanpatel-arm9380f752021-08-06 17:46:10 -070032 */
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050033.equ check_erratum_neoverse_n2_2313941, check_errata_dsu_2313941
34.equ erratum_neoverse_n2_2313941_wa, errata_dsu_2313941_wa
35add_erratum_entry neoverse_n2, ERRATUM(2313941), ERRATA_DSU_2313941, APPLY_AT_RESET
nayanpatel-arm9380f752021-08-06 17:46:10 -070036
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050037workaround_reset_start neoverse_n2, ERRATUM(2002655), ERRATA_N2_2002655
nayanpatel-arm9380f752021-08-06 17:46:10 -070038 /* Apply instruction patching sequence */
39 ldr x0,=0x6
40 msr S3_6_c15_c8_0,x0
41 ldr x0,=0xF3A08002
42 msr S3_6_c15_c8_2,x0
43 ldr x0,=0xFFF0F7FE
44 msr S3_6_c15_c8_3,x0
45 ldr x0,=0x40000001003ff
46 msr S3_6_c15_c8_1,x0
47 ldr x0,=0x7
48 msr S3_6_c15_c8_0,x0
49 ldr x0,=0xBF200000
50 msr S3_6_c15_c8_2,x0
51 ldr x0,=0xFFEF0000
52 msr S3_6_c15_c8_3,x0
53 ldr x0,=0x40000001003f3
54 msr S3_6_c15_c8_1,x0
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050055workaround_reset_end neoverse_n2, ERRATUM(2002655)
nayanpatel-arm9380f752021-08-06 17:46:10 -070056
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050057check_erratum_ls neoverse_n2, ERRATUM(2002655), CPU_REV(0, 0)
nayanpatel-arm9380f752021-08-06 17:46:10 -070058
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050059workaround_reset_start neoverse_n2, ERRATUM(2025414), ERRATA_N2_2025414
Bipin Ravi4618b2b2021-03-31 10:10:27 -050060 mrs x1, NEOVERSE_N2_CPUECTLR_EL1
61 orr x1, x1, NEOVERSE_N2_CPUECTLR_EL1_PFSTIDIS_BIT
62 msr NEOVERSE_N2_CPUECTLR_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050063workaround_reset_end neoverse_n2, ERRATUM(2025414)
Bipin Ravi4618b2b2021-03-31 10:10:27 -050064
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050065check_erratum_ls neoverse_n2, ERRATUM(2025414), CPU_REV(0, 0)
Bipin Ravi4618b2b2021-03-31 10:10:27 -050066
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050067workaround_reset_start neoverse_n2, ERRATUM(2067956), ERRATA_N2_2067956
Arvind Ram Prakasha438f432023-06-23 14:47:30 -050068 mrs x1, NEOVERSE_N2_CPUACTLR_EL1
69 orr x1, x1, NEOVERSE_N2_CPUACTLR_EL1_BIT_46
70 msr NEOVERSE_N2_CPUACTLR_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050071workaround_reset_end neoverse_n2, ERRATUM(2067956)
Bipin Ravi7cfae932021-08-30 13:02:51 -050072
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050073check_erratum_ls neoverse_n2, ERRATUM(2067956), CPU_REV(0, 0)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -050074
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050075workaround_reset_start neoverse_n2, ERRATUM(2138953), ERRATA_N2_2138953
Arvind Ram Prakasha438f432023-06-23 14:47:30 -050076 /* Apply instruction patching sequence */
77 mrs x1, NEOVERSE_N2_CPUECTLR2_EL1
78 mov x0, #NEOVERSE_N2_CPUECTLR2_EL1_PF_MODE_CNSRV
79 bfi x1, x0, #CPUECTLR2_EL1_PF_MODE_LSB, #CPUECTLR2_EL1_PF_MODE_WIDTH
80 msr NEOVERSE_N2_CPUECTLR2_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050081workaround_reset_end neoverse_n2, ERRATUM(2138953)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -050082
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050083check_erratum_ls neoverse_n2, ERRATUM(2138953), CPU_REV(0, 0)
Bipin Ravi7cfae932021-08-30 13:02:51 -050084
Arvind Ram Prakashccb56162023-06-26 15:05:40 -050085workaround_reset_start neoverse_n2, ERRATUM(2138956), ERRATA_N2_2138956
Bipin Ravi1cafb082021-09-01 01:36:43 -050086 /* Apply instruction patching sequence */
87 ldr x0,=0x3
88 msr S3_6_c15_c8_0,x0
89 ldr x0,=0xF3A08002
90 msr S3_6_c15_c8_2,x0
91 ldr x0,=0xFFF0F7FE
92 msr S3_6_c15_c8_3,x0
93 ldr x0,=0x10002001003FF
94 msr S3_6_c15_c8_1,x0
95 ldr x0,=0x4
96 msr S3_6_c15_c8_0,x0
97 ldr x0,=0xBF200000
98 msr S3_6_c15_c8_2,x0
99 ldr x0,=0xFFEF0000
100 msr S3_6_c15_c8_3,x0
101 ldr x0,=0x10002001003F3
102 msr S3_6_c15_c8_1,x0
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500103workaround_reset_end neoverse_n2, ERRATUM(2138956)
Bipin Ravi1cafb082021-09-01 01:36:43 -0500104
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500105check_erratum_ls neoverse_n2, ERRATUM(2138956), CPU_REV(0, 0)
Bipin Ravi1cafb082021-09-01 01:36:43 -0500106
nayanpatel-armc9481852021-10-20 18:28:58 -0700107
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500108workaround_reset_start neoverse_n2, ERRATUM(2138958), ERRATA_N2_2138958
nayanpatel-armc9481852021-10-20 18:28:58 -0700109 /* Apply instruction patching sequence */
110 mrs x1, NEOVERSE_N2_CPUACTLR5_EL1
111 orr x1, x1, NEOVERSE_N2_CPUACTLR5_EL1_BIT_13
112 msr NEOVERSE_N2_CPUACTLR5_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500113workaround_reset_end neoverse_n2, ERRATUM(2138958)
nayanpatel-armc9481852021-10-20 18:28:58 -0700114
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500115check_erratum_ls neoverse_n2, ERRATUM(2138958), CPU_REV(0, 0)
nayanpatel-armc9481852021-10-20 18:28:58 -0700116
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500117
118workaround_reset_start neoverse_n2, ERRATUM(2189731), ERRATA_N2_2189731
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500119 mrs x1, NEOVERSE_N2_CPUACTLR5_EL1
120 orr x1, x1, NEOVERSE_N2_CPUACTLR5_EL1_BIT_44
121 msr NEOVERSE_N2_CPUACTLR5_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500122workaround_reset_end neoverse_n2, ERRATUM(2189731)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500123
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500124check_erratum_ls neoverse_n2, ERRATUM(2189731), CPU_REV(0, 0)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500125
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500126workaround_reset_start neoverse_n2, ERRATUM(2242400), ERRATA_N2_2242400
nayanpatel-arm603806d2021-10-07 17:59:33 -0700127 /* Apply instruction patching sequence */
128 mrs x1, NEOVERSE_N2_CPUACTLR5_EL1
129 orr x1, x1, NEOVERSE_N2_CPUACTLR5_EL1_BIT_17
130 msr NEOVERSE_N2_CPUACTLR5_EL1, x1
131 ldr x0, =0x2
132 msr S3_6_c15_c8_0, x0
133 ldr x0, =0x10F600E000
134 msr S3_6_c15_c8_2, x0
135 ldr x0, =0x10FF80E000
136 msr S3_6_c15_c8_3, x0
137 ldr x0, =0x80000000003FF
138 msr S3_6_c15_c8_1, x0
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500139workaround_reset_end neoverse_n2, ERRATUM(2242400)
nayanpatel-arm603806d2021-10-07 17:59:33 -0700140
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500141check_erratum_ls neoverse_n2, ERRATUM(2242400), CPU_REV(0, 0)
nayanpatel-arm603806d2021-10-07 17:59:33 -0700142
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500143workaround_reset_start neoverse_n2, ERRATUM(2242415), ERRATA_N2_2242415
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500144 /* Apply instruction patching sequence */
145 mrs x1, NEOVERSE_N2_CPUACTLR_EL1
146 orr x1, x1, NEOVERSE_N2_CPUACTLR_EL1_BIT_22
147 msr NEOVERSE_N2_CPUACTLR_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500148workaround_reset_end neoverse_n2, ERRATUM(2242415)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500149
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500150check_erratum_ls neoverse_n2, ERRATUM(2242415), CPU_REV(0, 0)
Arvind Ram Prakasha438f432023-06-23 14:47:30 -0500151
nayanpatel-arm0d2d9992021-10-20 17:30:46 -0700152
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500153workaround_reset_start neoverse_n2, ERRATUM(2280757), ERRATA_N2_2280757
nayanpatel-arm0d2d9992021-10-20 17:30:46 -0700154 /* Apply instruction patching sequence */
155 mrs x1, NEOVERSE_N2_CPUACTLR_EL1
156 orr x1, x1, NEOVERSE_N2_CPUACTLR_EL1_BIT_22
157 msr NEOVERSE_N2_CPUACTLR_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500158workaround_reset_end neoverse_n2, ERRATUM(2280757)
nayanpatel-arm0d2d9992021-10-20 17:30:46 -0700159
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500160check_erratum_ls neoverse_n2, ERRATUM(2280757), CPU_REV(0, 0)
nayanpatel-arm0d2d9992021-10-20 17:30:46 -0700161
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500162workaround_runtime_start neoverse_n2, ERRATUM(2326639), ERRATA_N2_2326639
Boyan Karatotev43438ad2022-10-03 14:07:08 +0100163 /* Set bit 36 in ACTLR2_EL1 */
164 mrs x1, NEOVERSE_N2_CPUACTLR2_EL1
165 orr x1, x1, #NEOVERSE_N2_CPUACTLR2_EL1_BIT_36
166 msr NEOVERSE_N2_CPUACTLR2_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500167workaround_runtime_end neoverse_n2, ERRATUM(2326639)
Boyan Karatotev43438ad2022-10-03 14:07:08 +0100168
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500169check_erratum_ls neoverse_n2, ERRATUM(2326639), CPU_REV(0, 0)
Akram Ahmade6602d42022-07-18 12:27:29 +0100170
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500171workaround_reset_start neoverse_n2, ERRATUM(2376738), ERRATA_N2_2376738
Akram Ahmade6602d42022-07-18 12:27:29 +0100172 /* Set CPUACTLR2_EL1[0] to 1 to force PLDW/PFRM
173 * ST to behave like PLD/PFRM LD and not cause
174 * invalidations to other PE caches.
175 */
176 mrs x1, NEOVERSE_N2_CPUACTLR2_EL1
177 orr x1, x1, NEOVERSE_N2_CPUACTLR2_EL1_BIT_0
178 msr NEOVERSE_N2_CPUACTLR2_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500179workaround_reset_end neoverse_n2, ERRATUM(2376738)
Akram Ahmade6602d42022-07-18 12:27:29 +0100180
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500181check_erratum_ls neoverse_n2, ERRATUM(2376738), CPU_REV(0, 0)
Akram Ahmade6602d42022-07-18 12:27:29 +0100182
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500183workaround_reset_start neoverse_n2, ERRATUM(2388450), ERRATA_N2_2388450
Daniel Boulby884d5152022-07-06 14:33:13 +0100184 /*Set bit 40 in ACTLR2_EL1 */
185 mrs x1, NEOVERSE_N2_CPUACTLR2_EL1
186 orr x1, x1, #NEOVERSE_N2_CPUACTLR2_EL1_BIT_40
187 msr NEOVERSE_N2_CPUACTLR2_EL1, x1
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500188workaround_reset_end neoverse_n2, ERRATUM(2388450)
Daniel Boulby884d5152022-07-06 14:33:13 +0100189
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500190check_erratum_ls neoverse_n2, ERRATUM(2388450), CPU_REV(0, 0)
Daniel Boulby884d5152022-07-06 14:33:13 +0100191
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600192
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500193workaround_runtime_start neoverse_n2, ERRATUM(2743089), ERRATA_N2_2743089
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600194 /* dsb before isb of power down sequence */
195 dsb sy
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500196workaround_runtime_end neoverse_n2, ERRATUM(2743089)
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600197
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500198check_erratum_ls neoverse_n2, ERRATUM(2743089), CPU_REV(0, 2)
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600199
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500200
201workaround_reset_start neoverse_n2, CVE(2022,23960), WORKAROUND_CVE_2022_23960
202#if IMAGE_BL31
203 /*
204 * The Neoverse-N2 generic vectors are overridden to apply errata
205 * mitigation on exception entry from lower ELs.
206 */
207 adr x0, wa_cve_vbar_neoverse_n2
208 msr vbar_el3, x0
209#endif /* IMAGE_BL31 */
210workaround_reset_end neoverse_n2, CVE(2022,23960)
211
212check_erratum_chosen neoverse_n2, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
Bipin Ravi1fe4a9d2022-01-18 01:59:06 -0600213
Bipin Ravi4618b2b2021-03-31 10:10:27 -0500214 /* -------------------------------------------
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100215 * The CPU Ops reset function for Neoverse N2.
Bipin Ravi4618b2b2021-03-31 10:10:27 -0500216 * -------------------------------------------
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100217 */
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500218cpu_reset_func_start neoverse_n2
nayanpatel-arm9380f752021-08-06 17:46:10 -0700219
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100220 /* Check if the PE implements SSBS */
221 mrs x0, id_aa64pfr1_el1
222 tst x0, #(ID_AA64PFR1_EL1_SSBS_MASK << ID_AA64PFR1_EL1_SSBS_SHIFT)
223 b.eq 1f
224
225 /* Disable speculative loads */
226 msr SSBS, xzr
2271:
228 /* Force all cacheable atomic instructions to be near */
229 mrs x0, NEOVERSE_N2_CPUACTLR2_EL1
230 orr x0, x0, #NEOVERSE_N2_CPUACTLR2_EL1_BIT_2
231 msr NEOVERSE_N2_CPUACTLR2_EL1, x0
232
Andre Przywarad23acc92023-03-21 13:53:19 +0000233#if ENABLE_FEAT_AMU
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100234 /* Make sure accesses from EL0/EL1 and EL2 are not trapped to EL3 */
235 mrs x0, cptr_el3
236 orr x0, x0, #TAM_BIT
237 msr cptr_el3, x0
238
239 /* Make sure accesses from EL0/EL1 are not trapped to EL2 */
240 mrs x0, cptr_el2
241 orr x0, x0, #TAM_BIT
242 msr cptr_el2, x0
243
244 /* No need to enable the counters as this would be done at el3 exit */
245#endif
246
247#if NEOVERSE_Nx_EXTERNAL_LLC
248 /* Some systems may have External LLC, core needs to be made aware */
Bipin Ravi65e04f22021-03-30 16:08:32 -0500249 mrs x0, NEOVERSE_N2_CPUECTLR_EL1
250 orr x0, x0, NEOVERSE_N2_CPUECTLR_EL1_EXTLLC_BIT
251 msr NEOVERSE_N2_CPUECTLR_EL1, x0
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100252#endif
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500253cpu_reset_func_end neoverse_n2
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100254
255func neoverse_n2_core_pwr_dwn
Boyan Karatotev43438ad2022-10-03 14:07:08 +0100256#if ERRATA_N2_2326639
257 mov x15, x30
258 bl cpu_get_rev_var
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500259 bl erratum_neoverse_n2_2326639_wa
Boyan Karatotev43438ad2022-10-03 14:07:08 +0100260 mov x30, x15
261#endif /* ERRATA_N2_2326639 */
262
Bipin Ravi4618b2b2021-03-31 10:10:27 -0500263 /* ---------------------------------------------------
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100264 * Enable CPU power down bit in power control register
265 * No need to do cache maintenance here.
Bipin Ravi4618b2b2021-03-31 10:10:27 -0500266 * ---------------------------------------------------
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100267 */
268 mrs x0, NEOVERSE_N2_CPUPWRCTLR_EL1
269 orr x0, x0, #NEOVERSE_N2_CORE_PWRDN_EN_BIT
270 msr NEOVERSE_N2_CPUPWRCTLR_EL1, x0
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600271#if ERRATA_N2_2743089
272 mov x15, x30
273 bl cpu_get_rev_var
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500274 bl erratum_neoverse_n2_2743089_wa
Bipin Ravi1ee7c822022-12-07 17:01:26 -0600275 mov x30, x15
276#endif /* ERRATA_N2_2743089 */
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100277 isb
278 ret
279endfunc neoverse_n2_core_pwr_dwn
280
Arvind Ram Prakashccb56162023-06-26 15:05:40 -0500281errata_report_shim neoverse_n2
Javier Almansa Sobrino25bbbd22020-10-23 13:22:07 +0100282
283 /* ---------------------------------------------
284 * This function provides Neoverse N2 specific
285 * register information for crash reporting.
286 * It needs to return with x6 pointing to
287 * a list of register names in ASCII and
288 * x8 - x15 having values of registers to be
289 * reported.
290 * ---------------------------------------------
291 */
292.section .rodata.neoverse_n2_regs, "aS"
293neoverse_n2_regs: /* The ASCII list of register names to be reported */
294 .asciz "cpupwrctlr_el1", ""
295
296func neoverse_n2_cpu_reg_dump
297 adr x6, neoverse_n2_regs
298 mrs x8, NEOVERSE_N2_CPUPWRCTLR_EL1
299 ret
300endfunc neoverse_n2_cpu_reg_dump
301
302declare_cpu_ops neoverse_n2, NEOVERSE_N2_MIDR, \
303 neoverse_n2_reset_func, \
304 neoverse_n2_core_pwr_dwn