blob: b324fe64ab2fa53713addd36c4ed214e5775409b [file] [log] [blame]
Jimmy Brisson958a0b12020-09-30 15:28:03 -05001/*
Bipin Ravi86499742022-01-18 01:59:06 -06002 * Copyright (c) 2019-2022, Arm Limited. All rights reserved.
Jimmy Brisson958a0b12020-09-30 15:28:03 -05003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
9#include <common/bl_common.h>
10#include <neoverse_v1.h>
11#include <cpu_macros.S>
12#include <plat_macros.S>
Bipin Ravi86499742022-01-18 01:59:06 -060013#include "wa_cve_2022_23960_bhb_vector.S"
Jimmy Brisson958a0b12020-09-30 15:28:03 -050014
15/* Hardware handled coherency */
16#if HW_ASSISTED_COHERENCY == 0
17#error "Neoverse V1 must be compiled with HW_ASSISTED_COHERENCY enabled"
18#endif
19
20/* 64-bit only core */
21#if CTX_INCLUDE_AARCH32_REGS == 1
22#error "Neoverse-V1 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
23#endif
24
Bipin Ravi86499742022-01-18 01:59:06 -060025#if WORKAROUND_CVE_2022_23960
26 wa_cve_2022_23960_bhb_vector_table NEOVERSE_V1_BHB_LOOP_COUNT, neoverse_v1
27#endif /* WORKAROUND_CVE_2022_23960 */
28
johpow01c73b03c2021-05-03 15:33:39 -050029 /* --------------------------------------------------
laurenw-arm3c86d832021-08-02 13:22:32 -050030 * Errata Workaround for Neoverse V1 Errata #1774420.
31 * This applies to revisions r0p0 and r1p0, fixed in r1p1.
32 * x0: variant[4:7] and revision[0:3] of current cpu.
33 * Shall clobber: x0-x17
34 * --------------------------------------------------
35 */
36func errata_neoverse_v1_1774420_wa
37 /* Check workaround compatibility. */
38 mov x17, x30
39 bl check_errata_1774420
40 cbz x0, 1f
41
42 /* Set bit 53 in CPUECTLR_EL1 */
43 mrs x1, NEOVERSE_V1_CPUECTLR_EL1
44 orr x1, x1, #NEOVERSE_V1_CPUECTLR_EL1_BIT_53
45 msr NEOVERSE_V1_CPUECTLR_EL1, x1
46 isb
471:
48 ret x17
49endfunc errata_neoverse_v1_1774420_wa
50
51func check_errata_1774420
52 /* Applies to r0p0 and r1p0. */
53 mov x1, #0x10
54 b cpu_rev_var_ls
55endfunc check_errata_1774420
56
57 /* --------------------------------------------------
johpow01c73b03c2021-05-03 15:33:39 -050058 * Errata Workaround for Neoverse V1 Errata #1791573.
59 * This applies to revisions r0p0 and r1p0, fixed in r1p1.
60 * x0: variant[4:7] and revision[0:3] of current cpu.
61 * Shall clobber: x0-x17
62 * --------------------------------------------------
63 */
64func errata_neoverse_v1_1791573_wa
65 /* Check workaround compatibility. */
66 mov x17, x30
67 bl check_errata_1791573
68 cbz x0, 1f
69
70 /* Set bit 2 in ACTLR2_EL1 */
laurenw-arm3c86d832021-08-02 13:22:32 -050071 mrs x1, NEOVERSE_V1_ACTLR2_EL1
johpow01c73b03c2021-05-03 15:33:39 -050072 orr x1, x1, #NEOVERSE_V1_ACTLR2_EL1_BIT_2
laurenw-arm3c86d832021-08-02 13:22:32 -050073 msr NEOVERSE_V1_ACTLR2_EL1, x1
johpow01c73b03c2021-05-03 15:33:39 -050074 isb
751:
76 ret x17
77endfunc errata_neoverse_v1_1791573_wa
78
79func check_errata_1791573
80 /* Applies to r0p0 and r1p0. */
81 mov x1, #0x10
82 b cpu_rev_var_ls
83endfunc check_errata_1791573
84
johpow0107acb4f2020-10-07 16:38:37 -050085 /* --------------------------------------------------
laurenw-armb1923e92021-08-02 14:40:08 -050086 * Errata Workaround for Neoverse V1 Errata #1852267.
87 * This applies to revisions r0p0 and r1p0, fixed in r1p1.
88 * x0: variant[4:7] and revision[0:3] of current cpu.
89 * Shall clobber: x0-x17
90 * --------------------------------------------------
91 */
92func errata_neoverse_v1_1852267_wa
93 /* Check workaround compatibility. */
94 mov x17, x30
95 bl check_errata_1852267
96 cbz x0, 1f
97
98 /* Set bit 28 in ACTLR2_EL1 */
99 mrs x1, NEOVERSE_V1_ACTLR2_EL1
100 orr x1, x1, #NEOVERSE_V1_ACTLR2_EL1_BIT_28
101 msr NEOVERSE_V1_ACTLR2_EL1, x1
102 isb
1031:
104 ret x17
105endfunc errata_neoverse_v1_1852267_wa
106
107func check_errata_1852267
108 /* Applies to r0p0 and r1p0. */
109 mov x1, #0x10
110 b cpu_rev_var_ls
111endfunc check_errata_1852267
112
113 /* --------------------------------------------------
laurenw-arm6b56f962021-08-02 15:00:15 -0500114 * Errata Workaround for Neoverse V1 Errata #1925756.
115 * This applies to revisions <= r1p1.
116 * x0: variant[4:7] and revision[0:3] of current cpu.
117 * Shall clobber: x0-x17
118 * --------------------------------------------------
119 */
120func errata_neoverse_v1_1925756_wa
121 /* Check workaround compatibility. */
122 mov x17, x30
123 bl check_errata_1925756
124 cbz x0, 1f
125
126 /* Set bit 8 in CPUECTLR_EL1 */
127 mrs x1, NEOVERSE_V1_CPUECTLR_EL1
128 orr x1, x1, #NEOVERSE_V1_CPUECTLR_EL1_BIT_8
129 msr NEOVERSE_V1_CPUECTLR_EL1, x1
130 isb
1311:
132 ret x17
133endfunc errata_neoverse_v1_1925756_wa
134
135func check_errata_1925756
136 /* Applies to <= r1p1. */
137 mov x1, #0x11
138 b cpu_rev_var_ls
139endfunc check_errata_1925756
140
141 /* --------------------------------------------------
johpow0107acb4f2020-10-07 16:38:37 -0500142 * Errata Workaround for Neoverse V1 Erratum #1940577
143 * This applies to revisions r1p0 - r1p1 and is open.
144 * It also exists in r0p0 but there is no fix in that
145 * revision.
146 * Inputs:
147 * x0: variant[4:7] and revision[0:3] of current cpu.
148 * Shall clobber: x0-x17
149 * --------------------------------------------------
150 */
151func errata_neoverse_v1_1940577_wa
152 /* Compare x0 against revisions r1p0 - r1p1 */
153 mov x17, x30
154 bl check_errata_1940577
155 cbz x0, 1f
156
157 mov x0, #0
158 msr S3_6_C15_C8_0, x0
159 ldr x0, =0x10E3900002
160 msr S3_6_C15_C8_2, x0
161 ldr x0, =0x10FFF00083
162 msr S3_6_C15_C8_3, x0
163 ldr x0, =0x2001003FF
164 msr S3_6_C15_C8_1, x0
165
166 mov x0, #1
167 msr S3_6_C15_C8_0, x0
168 ldr x0, =0x10E3800082
169 msr S3_6_C15_C8_2, x0
170 ldr x0, =0x10FFF00083
171 msr S3_6_C15_C8_3, x0
172 ldr x0, =0x2001003FF
173 msr S3_6_C15_C8_1, x0
174
175 mov x0, #2
176 msr S3_6_C15_C8_0, x0
177 ldr x0, =0x10E3800200
178 msr S3_6_C15_C8_2, x0
179 ldr x0, =0x10FFF003E0
180 msr S3_6_C15_C8_3, x0
181 ldr x0, =0x2001003FF
182 msr S3_6_C15_C8_1, x0
183
184 isb
1851:
186 ret x17
187endfunc errata_neoverse_v1_1940577_wa
188
189func check_errata_1940577
190 /* Applies to revisions r1p0 - r1p1. */
191 mov x1, #0x10
192 mov x2, #0x11
193 b cpu_rev_var_range
194endfunc check_errata_1940577
195
johpow0197db6752021-08-02 18:59:08 -0500196 /* --------------------------------------------------
197 * Errata Workaround for Neoverse V1 Errata #1966096
198 * This applies to revisions r1p0 - r1p1 and is open.
199 * It also exists in r0p0 but there is no workaround
200 * for that revision.
201 * x0: variant[4:7] and revision[0:3] of current cpu.
202 * Shall clobber: x0-x17
203 * --------------------------------------------------
204 */
205func errata_neoverse_v1_1966096_wa
206 /* Check workaround compatibility. */
207 mov x17, x30
208 bl check_errata_1966096
209 cbz x0, 1f
210
211 /* Apply the workaround. */
212 mov x0, #0x3
213 msr S3_6_C15_C8_0, x0
214 ldr x0, =0xEE010F12
215 msr S3_6_C15_C8_2, x0
216 ldr x0, =0xFFFF0FFF
217 msr S3_6_C15_C8_3, x0
218 ldr x0, =0x80000000003FF
219 msr S3_6_C15_C8_1, x0
220 isb
221
2221:
223 ret x17
224endfunc errata_neoverse_v1_1966096_wa
225
226func check_errata_1966096
227 mov x1, #0x10
228 mov x2, #0x11
229 b cpu_rev_var_range
230endfunc check_errata_1966096
231
johpow01ad1ca342021-08-03 14:35:20 -0500232 /* --------------------------------------------------
233 * Errata Workaround for Neoverse V1 Errata #2139242.
234 * This applies to revisions r0p0, r1p0, and r1p1, it
235 * is still open.
236 * x0: variant[4:7] and revision[0:3] of current cpu.
237 * Shall clobber: x0-x17
238 * --------------------------------------------------
239 */
240func errata_neoverse_v1_2139242_wa
241 /* Check workaround compatibility. */
242 mov x17, x30
243 bl check_errata_2139242
244 cbz x0, 1f
245
246 /* Apply the workaround. */
247 mov x0, #0x3
248 msr S3_6_C15_C8_0, x0
249 ldr x0, =0xEE720F14
250 msr S3_6_C15_C8_2, x0
251 ldr x0, =0xFFFF0FDF
252 msr S3_6_C15_C8_3, x0
253 ldr x0, =0x40000005003FF
254 msr S3_6_C15_C8_1, x0
255 isb
256
2571:
258 ret x17
259endfunc errata_neoverse_v1_2139242_wa
260
261func check_errata_2139242
262 /* Applies to r0p0, r1p0, r1p1 */
263 mov x1, #0x11
264 b cpu_rev_var_ls
265endfunc check_errata_2139242
266
nayanpatel-armfc26ffe2021-09-28 13:41:03 -0700267 /* --------------------------------------------------
268 * Errata Workaround for Neoverse V1 Errata #2108267.
269 * This applies to revisions r0p0, r1p0, and r1p1, it
270 * is still open.
271 * x0: variant[4:7] and revision[0:3] of current cpu.
272 * Shall clobber: x0-x1, x17
273 * --------------------------------------------------
274 */
275func errata_neoverse_v1_2108267_wa
276 /* Check workaround compatibility. */
277 mov x17, x30
278 bl check_errata_2108267
279 cbz x0, 1f
280
281 /* Apply the workaround. */
282 mrs x1, NEOVERSE_V1_CPUECTLR_EL1
283 mov x0, #NEOVERSE_V1_CPUECTLR_EL1_PF_MODE_CNSRV
284 bfi x1, x0, #CPUECTLR_EL1_PF_MODE_LSB, #CPUECTLR_EL1_PF_MODE_WIDTH
285 msr NEOVERSE_V1_CPUECTLR_EL1, x1
2861:
287 ret x17
288endfunc errata_neoverse_v1_2108267_wa
289
290func check_errata_2108267
291 /* Applies to r0p0, r1p0, r1p1 */
292 mov x1, #0x11
293 b cpu_rev_var_ls
294endfunc check_errata_2108267
295
johpow014de29cb2021-09-02 18:29:17 -0500296 /* --------------------------------------------------
297 * Errata Workaround for Neoverse V1 Errata #2216392.
298 * This applies to revisions r1p0 and r1p1 and is
299 * still open.
300 * This issue is also present in r0p0 but there is no
301 * workaround in that revision.
302 * x0: variant[4:7] and revision[0:3] of current cpu.
303 * Shall clobber: x0-x17
304 * --------------------------------------------------
305 */
306func errata_neoverse_v1_2216392_wa
307 /* Check workaround compatibility. */
308 mov x17, x30
309 bl check_errata_2216392
310 cbz x0, 1f
311
312 ldr x0, =0x5
313 msr S3_6_c15_c8_0, x0 /* CPUPSELR_EL3 */
314 ldr x0, =0x10F600E000
315 msr S3_6_c15_c8_2, x0 /* CPUPOR_EL3 */
316 ldr x0, =0x10FF80E000
317 msr S3_6_c15_c8_3, x0 /* CPUPMR_EL3 */
318 ldr x0, =0x80000000003FF
319 msr S3_6_c15_c8_1, x0 /* CPUPCR_EL3 */
320
321 isb
3221:
323 ret x17
324endfunc errata_neoverse_v1_2216392_wa
325
326func check_errata_2216392
327 /* Applies to revisions r1p0 and r1p1. */
328 mov x1, #CPU_REV(1, 0)
329 mov x2, #CPU_REV(1, 1)
330 b cpu_rev_var_range
331endfunc check_errata_2216392
332
Bipin Ravi971938f2022-06-08 16:28:46 -0500333 /* -----------------------------------------------------------------
334 * Errata Workaround for Neoverse V1 Errata #2294912.
335 * This applies to revisions r0p0, r1p0, and r1p1 and is still open.
336 * x0: variant[4:7] and revision[0:3] of current cpu.
337 * Shall clobber: x0-x17
338 * -----------------------------------------------------------------
339 */
340func errata_neoverse_v1_2294912_wa
341 /* Check workaround compatibility. */
342 mov x17, x30
343 bl check_errata_2294912
344 cbz x0, 1f
345
346 /* Set bit 0 in ACTLR2_EL1 */
347 mrs x1, NEOVERSE_V1_ACTLR2_EL1
348 orr x1, x1, #NEOVERSE_V1_ACTLR2_EL1_BIT_0
349 msr NEOVERSE_V1_ACTLR2_EL1, x1
350 isb
3511:
352 ret x17
353endfunc errata_neoverse_v1_2294912_wa
354
355func check_errata_2294912
356 /* Applies to r0p0, r1p0, and r1p1 right now */
357 mov x1, #0x11
358 b cpu_rev_var_ls
359endfunc check_errata_2294912
360
Bipin Ravi86499742022-01-18 01:59:06 -0600361func check_errata_cve_2022_23960
362#if WORKAROUND_CVE_2022_23960
363 mov x0, #ERRATA_APPLIES
364#else
365 mov x0, #ERRATA_MISSING
366#endif
367 ret
368endfunc check_errata_cve_2022_23960
369
Jimmy Brisson958a0b12020-09-30 15:28:03 -0500370 /* ---------------------------------------------
371 * HW will do the cache maintenance while powering down
372 * ---------------------------------------------
373 */
374func neoverse_v1_core_pwr_dwn
375 /* ---------------------------------------------
376 * Enable CPU power down bit in power control register
377 * ---------------------------------------------
378 */
379 mrs x0, NEOVERSE_V1_CPUPWRCTLR_EL1
380 orr x0, x0, #NEOVERSE_V1_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
381 msr NEOVERSE_V1_CPUPWRCTLR_EL1, x0
382 isb
383 ret
384endfunc neoverse_v1_core_pwr_dwn
385
386 /*
387 * Errata printing function for Neoverse V1. Must follow AAPCS.
388 */
389#if REPORT_ERRATA
390func neoverse_v1_errata_report
johpow01c73b03c2021-05-03 15:33:39 -0500391 stp x8, x30, [sp, #-16]!
392
393 bl cpu_get_rev_var
394 mov x8, x0
395
396 /*
397 * Report all errata. The revision-variant information is passed to
398 * checking functions of each errata.
399 */
laurenw-arm3c86d832021-08-02 13:22:32 -0500400 report_errata ERRATA_V1_1774420, neoverse_v1, 1774420
johpow01c73b03c2021-05-03 15:33:39 -0500401 report_errata ERRATA_V1_1791573, neoverse_v1, 1791573
laurenw-armb1923e92021-08-02 14:40:08 -0500402 report_errata ERRATA_V1_1852267, neoverse_v1, 1852267
laurenw-arm6b56f962021-08-02 15:00:15 -0500403 report_errata ERRATA_V1_1925756, neoverse_v1, 1925756
johpow0107acb4f2020-10-07 16:38:37 -0500404 report_errata ERRATA_V1_1940577, neoverse_v1, 1940577
johpow0197db6752021-08-02 18:59:08 -0500405 report_errata ERRATA_V1_1966096, neoverse_v1, 1966096
johpow01ad1ca342021-08-03 14:35:20 -0500406 report_errata ERRATA_V1_2139242, neoverse_v1, 2139242
nayanpatel-armfc26ffe2021-09-28 13:41:03 -0700407 report_errata ERRATA_V1_2108267, neoverse_v1, 2108267
johpow014de29cb2021-09-02 18:29:17 -0500408 report_errata ERRATA_V1_2216392, neoverse_v1, 2216392
Bipin Ravi971938f2022-06-08 16:28:46 -0500409 report_errata ERRATA_V1_2294912, neoverse_v1, 2294912
Bipin Ravi86499742022-01-18 01:59:06 -0600410 report_errata WORKAROUND_CVE_2022_23960, neoverse_v1, cve_2022_23960
johpow01c73b03c2021-05-03 15:33:39 -0500411
412 ldp x8, x30, [sp], #16
Jimmy Brisson958a0b12020-09-30 15:28:03 -0500413 ret
414endfunc neoverse_v1_errata_report
415#endif
416
417func neoverse_v1_reset_func
418 mov x19, x30
419
420 /* Disable speculative loads */
421 msr SSBS, xzr
Jimmy Brisson958a0b12020-09-30 15:28:03 -0500422 isb
johpow01c73b03c2021-05-03 15:33:39 -0500423
laurenw-arm3c86d832021-08-02 13:22:32 -0500424#if ERRATA_V1_1774420
425 mov x0, x18
426 bl errata_neoverse_v1_1774420_wa
427#endif
428
johpow01c73b03c2021-05-03 15:33:39 -0500429#if ERRATA_V1_1791573
430 mov x0, x18
431 bl errata_neoverse_v1_1791573_wa
432#endif
433
laurenw-armb1923e92021-08-02 14:40:08 -0500434#if ERRATA_V1_1852267
435 mov x0, x18
436 bl errata_neoverse_v1_1852267_wa
437#endif
438
laurenw-arm6b56f962021-08-02 15:00:15 -0500439#if ERRATA_V1_1925756
440 mov x0, x18
441 bl errata_neoverse_v1_1925756_wa
442#endif
443
johpow0107acb4f2020-10-07 16:38:37 -0500444#if ERRATA_V1_1940577
445 mov x0, x18
446 bl errata_neoverse_v1_1940577_wa
447#endif
448
johpow0197db6752021-08-02 18:59:08 -0500449#if ERRATA_V1_1966096
450 mov x0, x18
451 bl errata_neoverse_v1_1966096_wa
452#endif
453
johpow01ad1ca342021-08-03 14:35:20 -0500454#if ERRATA_V1_2139242
455 mov x0, x18
456 bl errata_neoverse_v1_2139242_wa
457#endif
458
nayanpatel-armfc26ffe2021-09-28 13:41:03 -0700459#if ERRATA_V1_2108267
460 mov x0, x18
461 bl errata_neoverse_v1_2108267_wa
462#endif
463
johpow014de29cb2021-09-02 18:29:17 -0500464#if ERRATA_V1_2216392
465 mov x0, x18
466 bl errata_neoverse_v1_2216392_wa
467#endif
468
Bipin Ravi971938f2022-06-08 16:28:46 -0500469#if ERRATA_V1_2294912
470 mov x0, x18
471 bl errata_neoverse_v1_2294912_wa
472#endif
473
Bipin Ravi86499742022-01-18 01:59:06 -0600474#if IMAGE_BL31 && WORKAROUND_CVE_2022_23960
475 /*
476 * The Neoverse-V1 generic vectors are overridden to apply errata
477 * mitigation on exception entry from lower ELs.
478 */
479 adr x0, wa_cve_vbar_neoverse_v1
480 msr vbar_el3, x0
481#endif /* IMAGE_BL31 && WORKAROUND_CVE_2022_23960 */
482
483 isb
Jimmy Brisson958a0b12020-09-30 15:28:03 -0500484 ret x19
485endfunc neoverse_v1_reset_func
486
487 /* ---------------------------------------------
488 * This function provides Neoverse-V1 specific
489 * register information for crash reporting.
490 * It needs to return with x6 pointing to
491 * a list of register names in ascii and
492 * x8 - x15 having values of registers to be
493 * reported.
494 * ---------------------------------------------
495 */
496.section .rodata.neoverse_v1_regs, "aS"
497neoverse_v1_regs: /* The ascii list of register names to be reported */
498 .asciz "cpuectlr_el1", ""
499
500func neoverse_v1_cpu_reg_dump
501 adr x6, neoverse_v1_regs
502 mrs x8, NEOVERSE_V1_CPUECTLR_EL1
503 ret
504endfunc neoverse_v1_cpu_reg_dump
505
506declare_cpu_ops neoverse_v1, NEOVERSE_V1_MIDR, \
507 neoverse_v1_reset_func, \
508 neoverse_v1_core_pwr_dwn