blob: 08a6ef9120108e25bdeb20d1aa39c998d06ae4cf [file] [log] [blame]
Alexei Fedorov48009432019-04-04 16:26:34 +01001/*
Govindraj Raja776fa582023-06-15 15:32:41 -05002 * Copyright (c) 2019-2023, Arm Limited. All rights reserved.
Alexei Fedorov48009432019-04-04 16:26:34 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Bipin Ravieb4d12b2022-03-12 01:58:02 -06007#include <arch.h>
Alexei Fedorov48009432019-04-04 16:26:34 +01008#include <asm_macros.S>
Bipin Ravieb4d12b2022-03-12 01:58:02 -06009#include <common/bl_common.h>
Alexei Fedorov48009432019-04-04 16:26:34 +010010#include <cortex_a76ae.h>
11#include <cpu_macros.S>
Bipin Ravieb4d12b2022-03-12 01:58:02 -060012#include "wa_cve_2022_23960_bhb_vector.S"
Alexei Fedorov48009432019-04-04 16:26:34 +010013
John Tsichritzisfe6df392019-03-19 17:20:52 +000014/* Hardware handled coherency */
15#if HW_ASSISTED_COHERENCY == 0
16#error "Cortex-A76AE must be compiled with HW_ASSISTED_COHERENCY enabled"
17#endif
18
John Tsichritzis7557c662019-06-03 13:54:30 +010019/* 64-bit only core */
20#if CTX_INCLUDE_AARCH32_REGS == 1
21#error "Cortex-A76AE supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
22#endif
23
Bipin Ravieb4d12b2022-03-12 01:58:02 -060024#if WORKAROUND_CVE_2022_23960
25 wa_cve_2022_23960_bhb_vector_table CORTEX_A76AE_BHB_LOOP_COUNT, cortex_a76ae
26#endif /* WORKAROUND_CVE_2022_23960 */
27
Govindraj Raja776fa582023-06-15 15:32:41 -050028check_erratum_chosen cortex_a76ae, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
Bipin Ravieb4d12b2022-03-12 01:58:02 -060029
Govindraj Raja776fa582023-06-15 15:32:41 -050030workaround_reset_start cortex_a76ae, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
31#if IMAGE_BL31
Bipin Ravieb4d12b2022-03-12 01:58:02 -060032 /*
33 * The Cortex-A76ae generic vectors are overridden to apply errata
34 * mitigation on exception entry from lower ELs.
35 */
Govindraj Rajaff525a52023-06-15 15:34:38 -050036 override_vector_table wa_cve_vbar_cortex_a76ae
Bipin Ravieb4d12b2022-03-12 01:58:02 -060037 isb
Govindraj Raja776fa582023-06-15 15:32:41 -050038#endif /* IMAGE_BL31 */
39workaround_reset_end cortex_a76ae, CVE(2022, 23960)
Bipin Ravieb4d12b2022-03-12 01:58:02 -060040
Govindraj Raja776fa582023-06-15 15:32:41 -050041cpu_reset_func_start cortex_a76ae
42cpu_reset_func_end cortex_a76ae
43
44errata_report_shim cortex_a76ae
Bipin Ravieb4d12b2022-03-12 01:58:02 -060045
46 /* ----------------------------------------------------
Alexei Fedorov48009432019-04-04 16:26:34 +010047 * HW will do the cache maintenance while powering down
Bipin Ravieb4d12b2022-03-12 01:58:02 -060048 * ----------------------------------------------------
Alexei Fedorov48009432019-04-04 16:26:34 +010049 */
50func cortex_a76ae_core_pwr_dwn
Govindraj Rajaff525a52023-06-15 15:34:38 -050051 sysreg_bit_set CORTEX_A76AE_CPUPWRCTLR_EL1, CORTEX_A76AE_CORE_PWRDN_EN_MASK
Alexei Fedorov48009432019-04-04 16:26:34 +010052 isb
53 ret
54endfunc cortex_a76ae_core_pwr_dwn
55
Alexei Fedorov48009432019-04-04 16:26:34 +010056 /* ---------------------------------------------
57 * This function provides cortex_a76ae specific
58 * register information for crash reporting.
59 * It needs to return with x6 pointing to
60 * a list of register names in ascii and
61 * x8 - x15 having values of registers to be
62 * reported.
63 * ---------------------------------------------
64 */
65.section .rodata.cortex_a76ae_regs, "aS"
66cortex_a76ae_regs: /* The ASCII list of register names to be reported */
67 .asciz "cpuectlr_el1", ""
68
69func cortex_a76ae_cpu_reg_dump
70 adr x6, cortex_a76ae_regs
71 mrs x8, CORTEX_A76AE_CPUECTLR_EL1
72 ret
73endfunc cortex_a76ae_cpu_reg_dump
74
Bipin Ravieb4d12b2022-03-12 01:58:02 -060075declare_cpu_ops cortex_a76ae, CORTEX_A76AE_MIDR, cortex_a76ae_reset_func, \
Alexei Fedorov48009432019-04-04 16:26:34 +010076 cortex_a76ae_core_pwr_dwn