blob: 712b6e0a9e2255605d4d8ed5395d9c39a47cc511 [file] [log] [blame]
David Wang805c2c72016-11-09 16:29:02 +00001/*
Govindraj Raja5a8a1062023-06-15 15:44:42 -05002 * Copyright (c) 2017-2023, Arm Limited and Contributors. All rights reserved.
David Wang805c2c72016-11-09 16:29:02 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
David Wang805c2c72016-11-09 16:29:02 +00007#include <arch.h>
8#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/bl_common.h>
Isla Mitchell99305012017-07-11 14:54:08 +010010#include <cortex_a55.h>
David Wang805c2c72016-11-09 16:29:02 +000011#include <cpu_macros.S>
12#include <plat_macros.S>
13
John Tsichritzisfe6df392019-03-19 17:20:52 +000014/* Hardware handled coherency */
15#if HW_ASSISTED_COHERENCY == 0
16#error "Cortex-A55 must be compiled with HW_ASSISTED_COHERENCY enabled"
17#endif
18
Saurabh Gorechab8493012022-04-05 00:11:52 +053019 .globl cortex_a55_reset_func
20 .globl cortex_a55_core_pwr_dwn
Govindraj Raja5a8a1062023-06-15 15:44:42 -050021
22/* ERRATA_DSU_798953:
23 * The errata is defined in dsu_helpers.S but applies to cortex_a55
24 * as well. Henceforth creating symbolic names to the already existing errata
25 * workaround functions to get them registered under the Errata Framework.
26 */
27.equ check_erratum_cortex_a55_798953, check_errata_dsu_798953
28.equ erratum_cortex_a55_798953_wa, errata_dsu_798953_wa
29add_erratum_entry cortex_a55, ERRATUM(798953), ERRATA_DSU_798953, APPLY_AT_RESET
30
31/* ERRATA_DSU_936184:
32 * The errata is defined in dsu_helpers.S but applies to cortex_a55
33 * as well. Henceforth creating symbolic names to the already existing errata
34 * workaround functions to get them registered under the Errata Framework.
35 */
36.equ check_erratum_cortex_a55_936184, check_errata_dsu_936184
37.equ erratum_cortex_a55_936184_wa, errata_dsu_936184_wa
38add_erratum_entry cortex_a55, ERRATUM(936184), ERRATA_DSU_936184, APPLY_AT_RESET
39
40workaround_reset_start cortex_a55, ERRATUM(768277), ERRATA_A55_768277
Govindraj Raja0a0b99a2023-06-15 15:47:15 -050041 sysreg_bit_set CORTEX_A55_CPUACTLR_EL1, CORTEX_A55_CPUACTLR_EL1_DISABLE_DUAL_ISSUE
Govindraj Raja5a8a1062023-06-15 15:44:42 -050042workaround_reset_end cortex_a55, ERRATUM(768277)
Ambroise Vincent7927fa02019-02-21 16:20:43 +000043
Govindraj Raja5a8a1062023-06-15 15:44:42 -050044check_erratum_ls cortex_a55, ERRATUM(768277), CPU_REV(0, 0)
Ambroise Vincent7927fa02019-02-21 16:20:43 +000045
Govindraj Raja5a8a1062023-06-15 15:44:42 -050046workaround_reset_start cortex_a55, ERRATUM(778703), ERRATA_A55_778703
Govindraj Raja0a0b99a2023-06-15 15:47:15 -050047 sysreg_bit_set CORTEX_A55_CPUECTLR_EL1, CORTEX_A55_CPUECTLR_EL1_L1WSCTL
48 sysreg_bit_set CORTEX_A55_CPUACTLR_EL1, CORTEX_A55_CPUACTLR_EL1_DISABLE_WRITE_STREAMING
Govindraj Raja5a8a1062023-06-15 15:44:42 -050049workaround_reset_end cortex_a55, ERRATUM(778703)
Ambroise Vincent6f319602019-02-21 16:25:37 +000050
Govindraj Raja5a8a1062023-06-15 15:44:42 -050051check_erratum_custom_start cortex_a55, ERRATUM(778703)
Ambroise Vincent6f319602019-02-21 16:25:37 +000052 mov x16, x30
53 mov x1, #0x00
54 bl cpu_rev_var_ls
55 /*
56 * Check that no private L2 cache is configured
57 */
58 mrs x1, CORTEX_A55_CLIDR_EL1
59 and x1, x1, CORTEX_A55_CLIDR_EL1_CTYPE3
60 cmp x1, #0
61 mov x2, #ERRATA_NOT_APPLIES
62 csel x0, x0, x2, eq
63 ret x16
Govindraj Raja5a8a1062023-06-15 15:44:42 -050064check_erratum_custom_end cortex_a55, ERRATUM(778703)
Ambroise Vincent6f319602019-02-21 16:25:37 +000065
Govindraj Raja5a8a1062023-06-15 15:44:42 -050066workaround_reset_start cortex_a55, ERRATUM(798797), ERRATA_A55_798797
Govindraj Raja0a0b99a2023-06-15 15:47:15 -050067 sysreg_bit_set CORTEX_A55_CPUACTLR_EL1, CORTEX_A55_CPUACTLR_EL1_DISABLE_L1_PAGEWALKS
Govindraj Raja5a8a1062023-06-15 15:44:42 -050068workaround_reset_end cortex_a55, ERRATUM(798797)
Ambroise Vincent6a77f052019-02-21 16:27:34 +000069
Govindraj Raja5a8a1062023-06-15 15:44:42 -050070check_erratum_ls cortex_a55, ERRATUM(798797), CPU_REV(0, 0)
Ambroise Vincent6a77f052019-02-21 16:27:34 +000071
Govindraj Raja5a8a1062023-06-15 15:44:42 -050072workaround_reset_start cortex_a55, ERRATUM(846532), ERRATA_A55_846532
Govindraj Raja0a0b99a2023-06-15 15:47:15 -050073 sysreg_bit_set CORTEX_A55_CPUACTLR_EL1, CORTEX_A55_CPUACTLR_EL1_DISABLE_DUAL_ISSUE
Govindraj Raja5a8a1062023-06-15 15:44:42 -050074workaround_reset_end cortex_a55, ERRATUM(846532)
Ambroise Vincentdd961f72019-02-21 16:29:16 +000075
Govindraj Raja5a8a1062023-06-15 15:44:42 -050076check_erratum_ls cortex_a55, ERRATUM(846532), CPU_REV(0, 1)
Ambroise Vincentdd961f72019-02-21 16:29:16 +000077
Govindraj Raja5a8a1062023-06-15 15:44:42 -050078workaround_reset_start cortex_a55, ERRATUM(903758), ERRATA_A55_903758
Govindraj Raja0a0b99a2023-06-15 15:47:15 -050079 sysreg_bit_set CORTEX_A55_CPUACTLR_EL1, CORTEX_A55_CPUACTLR_EL1_DISABLE_L1_PAGEWALKS
Govindraj Raja5a8a1062023-06-15 15:44:42 -050080workaround_reset_end cortex_a55, ERRATUM(903758)
Ambroise Vincenta1d64462019-02-21 16:29:50 +000081
Govindraj Raja5a8a1062023-06-15 15:44:42 -050082check_erratum_ls cortex_a55, ERRATUM(903758), CPU_REV(0, 1)
Ambroise Vincenta1d64462019-02-21 16:29:50 +000083
Govindraj Raja5a8a1062023-06-15 15:44:42 -050084workaround_reset_start cortex_a55, ERRATUM(1221012), ERRATA_A55_1221012
Ambroise Vincentb72fe7a2019-05-28 09:52:48 +010085 mov x0, #0x0020
86 movk x0, #0x0850, lsl #16
87 msr CPUPOR_EL3, x0
88 mov x0, #0x0000
89 movk x0, #0x1FF0, lsl #16
90 movk x0, #0x2, lsl #32
91 msr CPUPMR_EL3, x0
92 mov x0, #0x03fd
93 movk x0, #0x0110, lsl #16
94 msr CPUPCR_EL3, x0
95 mov x0, #0x1
96 msr CPUPSELR_EL3, x0
97 mov x0, #0x0040
98 movk x0, #0x08D0, lsl #16
99 msr CPUPOR_EL3, x0
100 mov x0, #0x0040
101 movk x0, #0x1FF0, lsl #16
102 movk x0, #0x2, lsl #32
103 msr CPUPMR_EL3, x0
104 mov x0, #0x03fd
105 movk x0, #0x0110, lsl #16
106 msr CPUPCR_EL3, x0
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500107workaround_reset_end cortex_a55, ERRATUM(1221012)
Ambroise Vincentb72fe7a2019-05-28 09:52:48 +0100108
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500109check_erratum_ls cortex_a55, ERRATUM(1221012), CPU_REV(1, 0)
Manish V Badarkhe7672edf2020-08-03 18:43:14 +0100110
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500111check_erratum_chosen cortex_a55, ERRATUM(1530923), ERRATA_A55_1530923
Ambroise Vincent7927fa02019-02-21 16:20:43 +0000112
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500113/* erratum has no workaround in the cpu. Generic code must take care */
114add_erratum_entry cortex_a55, ERRATUM(1530923), ERRATA_A55_1530923, NO_APPLY_AT_RESET
Louis Mayencourt4498b152019-04-09 16:29:01 +0100115
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500116cpu_reset_func_start cortex_a55
117cpu_reset_func_end cortex_a55
Ambroise Vincent7927fa02019-02-21 16:20:43 +0000118
Govindraj Raja5a8a1062023-06-15 15:44:42 -0500119errata_report_shim cortex_a55
John Tsichritzis4daa1de2018-07-23 09:11:59 +0100120
David Wang805c2c72016-11-09 16:29:02 +0000121 /* ---------------------------------------------
122 * HW will do the cache maintenance while powering down
123 * ---------------------------------------------
124 */
125func cortex_a55_core_pwr_dwn
Govindraj Raja0a0b99a2023-06-15 15:47:15 -0500126 sysreg_bit_set CORTEX_A55_CPUPWRCTLR_EL1, CORTEX_A55_CORE_PWRDN_EN_MASK
David Wang805c2c72016-11-09 16:29:02 +0000127 isb
128 ret
129endfunc cortex_a55_core_pwr_dwn
130
131 /* ---------------------------------------------
132 * This function provides cortex_a55 specific
133 * register information for crash reporting.
134 * It needs to return with x6 pointing to
135 * a list of register names in ascii and
136 * x8 - x15 having values of registers to be
137 * reported.
138 * ---------------------------------------------
139 */
140.section .rodata.cortex_a55_regs, "aS"
141cortex_a55_regs: /* The ascii list of register names to be reported */
142 .asciz "cpuectlr_el1", ""
143
144func cortex_a55_cpu_reg_dump
145 adr x6, cortex_a55_regs
146 mrs x8, CORTEX_A55_CPUECTLR_EL1
147 ret
148endfunc cortex_a55_cpu_reg_dump
149
150declare_cpu_ops cortex_a55, CORTEX_A55_MIDR, \
John Tsichritzis4daa1de2018-07-23 09:11:59 +0100151 cortex_a55_reset_func, \
David Wang805c2c72016-11-09 16:29:02 +0000152 cortex_a55_core_pwr_dwn