blob: 74ecbf7c9c2c18e61ced19627ca6fff9869dabb4 [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)
Arvind Ram Prakash512c2362023-12-08 20:19:58 -060029
30workaround_reset_start cortex_a520, ERRATUM(2858100), ERRATA_A520_2858100
31 sysreg_bit_set CORTEX_A520_CPUACTLR_EL1, BIT(29)
32workaround_reset_end cortex_a520, ERRATUM(2858100)
33
34check_erratum_ls cortex_a520, ERRATUM(2858100), CPU_REV(0, 1)
Govindraj Rajaca3caf02023-06-28 08:49:21 -050035 /* ----------------------------------------------------
36 * HW will do the cache maintenance while powering down
37 * ----------------------------------------------------
38 */
39func cortex_a520_core_pwr_dwn
40 /* ---------------------------------------------------
41 * Enable CPU power down bit in power control register
42 * ---------------------------------------------------
43 */
Govindraj Rajaf3625102023-04-24 15:21:19 -050044 sysreg_bit_set CORTEX_A520_CPUPWRCTLR_EL1, CORTEX_A520_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
Govindraj Rajaca3caf02023-06-28 08:49:21 -050045 isb
46 ret
47endfunc cortex_a520_core_pwr_dwn
48
Govindraj Rajaf3625102023-04-24 15:21:19 -050049errata_report_shim cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050050
Govindraj Rajaf3625102023-04-24 15:21:19 -050051cpu_reset_func_start cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050052 /* Disable speculative loads */
53 msr SSBS, xzr
Govindraj Rajaf3625102023-04-24 15:21:19 -050054cpu_reset_func_end cortex_a520
Govindraj Rajaca3caf02023-06-28 08:49:21 -050055
56 /* ---------------------------------------------
57 * This function provides Cortex A520 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_a520_regs, "aS"
66cortex_a520_regs: /* The ascii list of register names to be reported */
67 .asciz "cpuectlr_el1", ""
68
69func cortex_a520_cpu_reg_dump
70 adr x6, cortex_a520_regs
71 mrs x8, CORTEX_A520_CPUECTLR_EL1
72 ret
73endfunc cortex_a520_cpu_reg_dump
74
75declare_cpu_ops cortex_a520, CORTEX_A520_MIDR, \
76 cortex_a520_reset_func, \
77 cortex_a520_core_pwr_dwn