blob: 92f13f469ae944f6f8111ab8369ba11b665ed934 [file] [log] [blame]
Govindraj Rajaca3caf02023-06-28 08:49:21 -05001/*
2 * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
3 *
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 <cortex_a520.h>
11#include <cpu_macros.S>
12#include <plat_macros.S>
13
14/* Hardware handled coherency */
15#if HW_ASSISTED_COHERENCY == 0
16#error "Cortex A520 must be compiled with HW_ASSISTED_COHERENCY enabled"
17#endif
18
19/* 64-bit only core */
20#if CTX_INCLUDE_AARCH32_REGS == 1
21#error "Cortex A520 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
22#endif
23
Sona Mathew87821142023-12-09 20:44:56 -060024workaround_reset_start cortex_a520, ERRATUM(2630792), ERRATA_A520_2630792
25 sysreg_bit_set CORTEX_A520_CPUACTLR_EL1, BIT(38)
26workaround_reset_end cortex_a520, ERRATUM(2630792)
27
28check_erratum_ls cortex_a520, ERRATUM(2630792), CPU_REV(0, 1)
Govindraj Rajaca3caf02023-06-28 08:49:21 -050029 /* ----------------------------------------------------
30 * HW will do the cache maintenance while powering down
31 * ----------------------------------------------------
32 */
33func cortex_a520_core_pwr_dwn
34 /* ---------------------------------------------------
35 * Enable CPU power down bit in power control register
36 * ---------------------------------------------------
37 */
Govindraj Rajaf3625102023-04-24 15:21:19 -050038 sysreg_bit_set CORTEX_A520_CPUPWRCTLR_EL1, CORTEX_A520_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
Govindraj Rajaca3caf02023-06-28 08:49:21 -050039 isb
40 ret
41endfunc cortex_a520_core_pwr_dwn
42
Govindraj Rajaf3625102023-04-24 15:21:19 -050043errata_report_shim cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050044
Govindraj Rajaf3625102023-04-24 15:21:19 -050045cpu_reset_func_start cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050046 /* Disable speculative loads */
47 msr SSBS, xzr
Govindraj Rajaf3625102023-04-24 15:21:19 -050048cpu_reset_func_end cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050049
50 /* ---------------------------------------------
51 * This function provides Cortex A520 specific
52 * register information for crash reporting.
53 * It needs to return with x6 pointing to
54 * a list of register names in ascii and
55 * x8 - x15 having values of registers to be
56 * reported.
57 * ---------------------------------------------
58 */
59.section .rodata.cortex_a520_regs, "aS"
60cortex_a520_regs: /* The ascii list of register names to be reported */
61 .asciz "cpuectlr_el1", ""
62
63func cortex_a520_cpu_reg_dump
64 adr x6, cortex_a520_regs
65 mrs x8, CORTEX_A520_CPUECTLR_EL1
66 ret
67endfunc cortex_a520_cpu_reg_dump
68
69declare_cpu_ops cortex_a520, CORTEX_A520_MIDR, \
70 cortex_a520_reset_func, \
71 cortex_a520_core_pwr_dwn