blob: 0faa2768bd397aa78ad49b61dea5bc027d741d2c [file] [log] [blame]
johpow01aef12f22020-10-15 13:40:04 -05001/*
Bipin Raviad767132024-01-25 16:18:20 -06002 * Copyright (c) 2021-2024, Arm Limited. All rights reserved.
johpow01aef12f22020-10-15 13:40:04 -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>
Harrison Mutaie5004c12023-05-23 17:28:03 +010010#include <cortex_a715.h>
johpow01aef12f22020-10-15 13:40:04 -050011#include <cpu_macros.S>
12#include <plat_macros.S>
Bipin Ravi32464ba2022-05-06 16:02:30 -050013#include "wa_cve_2022_23960_bhb_vector.S"
johpow01aef12f22020-10-15 13:40:04 -050014
15/* Hardware handled coherency */
16#if HW_ASSISTED_COHERENCY == 0
Harrison Mutaie5004c12023-05-23 17:28:03 +010017#error "Cortex-A715 must be compiled with HW_ASSISTED_COHERENCY enabled"
johpow01aef12f22020-10-15 13:40:04 -050018#endif
19
20/* 64-bit only core */
21#if CTX_INCLUDE_AARCH32_REGS == 1
Harrison Mutaie5004c12023-05-23 17:28:03 +010022#error "Cortex-A715 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
johpow01aef12f22020-10-15 13:40:04 -050023#endif
24
Bipin Ravi32464ba2022-05-06 16:02:30 -050025#if WORKAROUND_CVE_2022_23960
Harrison Mutaie5004c12023-05-23 17:28:03 +010026 wa_cve_2022_23960_bhb_vector_table CORTEX_A715_BHB_LOOP_COUNT, cortex_a715
Bipin Ravi32464ba2022-05-06 16:02:30 -050027#endif /* WORKAROUND_CVE_2022_23960 */
28
Bipin Raviad767132024-01-25 16:18:20 -060029workaround_runtime_start cortex_a715, ERRATUM(2561034), ERRATA_A715_2561034
30 sysreg_bit_set CORTEX_A715_CPUACTLR2_EL1, BIT(26)
31workaround_runtime_end cortex_a715, ERRATUM(2561034), NO_ISB
32
33check_erratum_range cortex_a715, ERRATUM(2561034), CPU_REV(1, 0), CPU_REV(1, 0)
34
Harrison Mutaicb50c112023-05-04 18:15:16 +010035workaround_reset_start cortex_a715, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
36#if IMAGE_BL31
Bipin Ravi32464ba2022-05-06 16:02:30 -050037 /*
Harrison Mutaie5004c12023-05-23 17:28:03 +010038 * The Cortex-A715 generic vectors are overridden to apply errata
Bipin Ravi32464ba2022-05-06 16:02:30 -050039 * mitigation on exception entry from lower ELs.
40 */
Harrison Mutaicb50c112023-05-04 18:15:16 +010041 override_vector_table wa_cve_vbar_cortex_a715
42#endif /* IMAGE_BL31 */
43workaround_reset_end cortex_a715, CVE(2022, 23960)
Bipin Ravi32464ba2022-05-06 16:02:30 -050044
Harrison Mutaicb50c112023-05-04 18:15:16 +010045check_erratum_chosen cortex_a715, CVE(2022, 23960), WORKAROUND_CVE_2022_23960
46
47cpu_reset_func_start cortex_a715
48 /* Disable speculative loads */
49 msr SSBS, xzr
50cpu_reset_func_end cortex_a715
johpow01aef12f22020-10-15 13:40:04 -050051
52 /* ----------------------------------------------------
53 * HW will do the cache maintenance while powering down
54 * ----------------------------------------------------
55 */
Harrison Mutaie5004c12023-05-23 17:28:03 +010056func cortex_a715_core_pwr_dwn
johpow01aef12f22020-10-15 13:40:04 -050057 /* ---------------------------------------------------
58 * Enable CPU power down bit in power control register
59 * ---------------------------------------------------
60 */
Harrison Mutaie5004c12023-05-23 17:28:03 +010061 mrs x0, CORTEX_A715_CPUPWRCTLR_EL1
62 orr x0, x0, #CORTEX_A715_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
63 msr CORTEX_A715_CPUPWRCTLR_EL1, x0
johpow01aef12f22020-10-15 13:40:04 -050064 isb
65 ret
Harrison Mutaie5004c12023-05-23 17:28:03 +010066endfunc cortex_a715_core_pwr_dwn
johpow01aef12f22020-10-15 13:40:04 -050067
Harrison Mutaicb50c112023-05-04 18:15:16 +010068errata_report_shim cortex_a715
johpow01aef12f22020-10-15 13:40:04 -050069
70 /* ---------------------------------------------
Harrison Mutaie5004c12023-05-23 17:28:03 +010071 * This function provides Cortex-A715 specific
johpow01aef12f22020-10-15 13:40:04 -050072 * register information for crash reporting.
73 * It needs to return with x6 pointing to
74 * a list of register names in ascii and
75 * x8 - x15 having values of registers to be
76 * reported.
77 * ---------------------------------------------
78 */
Harrison Mutaie5004c12023-05-23 17:28:03 +010079.section .rodata.cortex_a715_regs, "aS"
80cortex_a715_regs: /* The ascii list of register names to be reported */
johpow01aef12f22020-10-15 13:40:04 -050081 .asciz "cpuectlr_el1", ""
82
Harrison Mutaie5004c12023-05-23 17:28:03 +010083func cortex_a715_cpu_reg_dump
84 adr x6, cortex_a715_regs
85 mrs x8, CORTEX_A715_CPUECTLR_EL1
johpow01aef12f22020-10-15 13:40:04 -050086 ret
Harrison Mutaie5004c12023-05-23 17:28:03 +010087endfunc cortex_a715_cpu_reg_dump
johpow01aef12f22020-10-15 13:40:04 -050088
Harrison Mutaie5004c12023-05-23 17:28:03 +010089declare_cpu_ops cortex_a715, CORTEX_A715_MIDR, \
90 cortex_a715_reset_func, \
91 cortex_a715_core_pwr_dwn