blob: 6c4adb12eaac188f53c7f938eb2480c777e16762 [file] [log] [blame]
Joel Goddarda1c50ab2022-09-21 21:52:28 +05301/*
Moritz Fischercbb6f582023-07-17 19:21:56 +00002 * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
Joel Goddarda1c50ab2022-09-21 21:52:28 +05303 *
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_v2.h>
11#include <cpu_macros.S>
12#include <plat_macros.S>
13#include "wa_cve_2022_23960_bhb_vector.S"
14
15/* Hardware handled coherency */
16#if HW_ASSISTED_COHERENCY == 0
17#error "Neoverse V2 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 V2 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
23#endif
24
Bipin Ravi4f9b75f2023-09-18 16:34:13 -050025workaround_reset_start neoverse_v2, ERRATUM(2331132), ERRATA_V2_2331132
26 sysreg_bitfield_insert NEOVERSE_V2_CPUECTLR2_EL1, NEOVERSE_V2_CPUECTLR2_EL1_PF_MODE_CNSRV, \
27 NEOVERSE_V2_CPUECTLR2_EL1_PF_MODE_LSB, NEOVERSE_V2_CPUECTLR2_EL1_PF_MODE_WIDTH
28workaround_reset_end neoverse_v2, ERRATUM(2331132)
29
30check_erratum_ls neoverse_v2, ERRATUM(2331132), CPU_REV(0, 2)
31
Bipin Ravi90aaf982023-09-18 17:27:29 -050032workaround_reset_start neoverse_v2, ERRATUM(2719105), ERRATA_V2_2719105
33 sysreg_bit_set NEOVERSE_V2_CPUACTLR2_EL1, NEOVERSE_V2_CPUACTLR2_EL1_BIT_0
34workaround_reset_end neoverse_v2, ERRATUM(2719105)
35
36check_erratum_ls neoverse_v2, ERRATUM(2719105), CPU_REV(0, 1)
37
Moritz Fischercbb6f582023-07-17 19:21:56 +000038workaround_runtime_start neoverse_v2, ERRATUM(2801372), ERRATA_V2_2801372
39 /* dsb before isb of power down sequence */
40 dsb sy
41workaround_runtime_end neoverse_v2, ERRATUM(2801372), ERRATA_V2_2801372
42
43check_erratum_ls neoverse_v2, ERRATUM(2801372), CPU_REV(0, 1)
44
45workaround_reset_start neoverse_v2, CVE(2022,23960), WORKAROUND_CVE_2022_23960
46#if IMAGE_BL31
47 /*
48 * The Neoverse-V2 generic vectors are overridden to apply errata
49 * mitigation on exception entry from lower ELs.
50 */
Moritz Fischeracef95c2023-07-18 19:08:12 +000051 override_vector_table wa_cve_vbar_neoverse_v2
Moritz Fischercbb6f582023-07-17 19:21:56 +000052#endif /* IMAGE_BL31 */
53workaround_reset_end neoverse_v2, CVE(2022,23960)
54
55check_erratum_chosen neoverse_v2, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
56
Joel Goddarda1c50ab2022-09-21 21:52:28 +053057#if WORKAROUND_CVE_2022_23960
58 wa_cve_2022_23960_bhb_vector_table NEOVERSE_V2_BHB_LOOP_COUNT, neoverse_v2
59#endif /* WORKAROUND_CVE_2022_23960 */
60
61 /* ----------------------------------------------------
62 * HW will do the cache maintenance while powering down
63 * ----------------------------------------------------
64 */
65func neoverse_v2_core_pwr_dwn
66 /* ---------------------------------------------------
67 * Enable CPU power down bit in power control register
68 * ---------------------------------------------------
69 */
Moritz Fischeracef95c2023-07-18 19:08:12 +000070 sysreg_bit_set NEOVERSE_V2_CPUPWRCTLR_EL1, NEOVERSE_V2_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
Moritz Fischercbb6f582023-07-17 19:21:56 +000071 apply_erratum neoverse_v2, ERRATUM(2801372), ERRATA_V2_2801372
72
Joel Goddarda1c50ab2022-09-21 21:52:28 +053073 isb
74 ret
75endfunc neoverse_v2_core_pwr_dwn
76
Moritz Fischercbb6f582023-07-17 19:21:56 +000077cpu_reset_func_start neoverse_v2
Joel Goddarda1c50ab2022-09-21 21:52:28 +053078 /* Disable speculative loads */
79 msr SSBS, xzr
Moritz Fischercbb6f582023-07-17 19:21:56 +000080cpu_reset_func_end neoverse_v2
Joel Goddarda1c50ab2022-09-21 21:52:28 +053081
Moritz Fischercbb6f582023-07-17 19:21:56 +000082errata_report_shim neoverse_v2
Joel Goddarda1c50ab2022-09-21 21:52:28 +053083 /* ---------------------------------------------
84 * This function provides Neoverse V2-
85 * specific register information for crash
86 * reporting. It needs to return with x6
87 * pointing to a list of register names in ascii
88 * and x8 - x15 having values of registers to be
89 * reported.
90 * ---------------------------------------------
91 */
92.section .rodata.neoverse_v2_regs, "aS"
93neoverse_v2_regs: /* The ascii list of register names to be reported */
94 .asciz "cpuectlr_el1", ""
95
96func neoverse_v2_cpu_reg_dump
97 adr x6, neoverse_v2_regs
98 mrs x8, NEOVERSE_V2_CPUECTLR_EL1
99 ret
100endfunc neoverse_v2_cpu_reg_dump
101
102declare_cpu_ops neoverse_v2, NEOVERSE_V2_MIDR, \
103 neoverse_v2_reset_func, \
104 neoverse_v2_core_pwr_dwn