blob: df11d8690ee096b346d6b1daab6f6807ffc4bf62 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Manish V Badarkhe7672edf2020-08-03 18:43:14 +01002 * Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
Achin Gupta4f6ad662013-10-25 09:08:21 +01006#include <arch.h>
Andrew Thoelke38bde412014-03-18 13:46:55 +00007#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <common/bl_common.h>
9#include <common/debug.h>
Soby Mathew8e2f2872014-08-14 12:49:05 +010010#include <cortex_a53.h>
Soby Mathewc704cbc2014-08-14 11:33:56 +010011#include <cpu_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/cpus/errata_report.h>
Soby Mathewc704cbc2014-08-14 11:33:56 +010013#include <plat_macros.S>
Achin Gupta4f6ad662013-10-25 09:08:21 +010014
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000015#if A53_DISABLE_NON_TEMPORAL_HINT
16#undef ERRATA_A53_836870
17#define ERRATA_A53_836870 1
18#endif
19
Soby Mathew8e2f2872014-08-14 12:49:05 +010020 /* ---------------------------------------------
21 * Disable L1 data cache and unified L2 cache
22 * ---------------------------------------------
23 */
24func cortex_a53_disable_dcache
25 mrs x1, sctlr_el3
26 bic x1, x1, #SCTLR_C_BIT
27 msr sctlr_el3, x1
28 isb
29 ret
Kévin Petita877c252015-03-24 14:03:57 +000030endfunc cortex_a53_disable_dcache
Soby Mathew8e2f2872014-08-14 12:49:05 +010031
32 /* ---------------------------------------------
33 * Disable intra-cluster coherency
34 * ---------------------------------------------
35 */
36func cortex_a53_disable_smp
Varun Wadekar1384a162017-06-05 14:54:46 -070037 mrs x0, CORTEX_A53_ECTLR_EL1
38 bic x0, x0, #CORTEX_A53_ECTLR_SMP_BIT
39 msr CORTEX_A53_ECTLR_EL1, x0
Soby Mathew8e2f2872014-08-14 12:49:05 +010040 isb
41 dsb sy
42 ret
Kévin Petita877c252015-03-24 14:03:57 +000043endfunc cortex_a53_disable_smp
Achin Gupta4f6ad662013-10-25 09:08:21 +010044
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000045 /* ---------------------------------------------------
46 * Errata Workaround for Cortex A53 Errata #819472.
47 * This applies only to revision <= r0p1 of Cortex A53.
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040048 * Due to the nature of the errata it is applied unconditionally
49 * when built in, report it as applicable in this case
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000050 * ---------------------------------------------------
51 */
52func check_errata_819472
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040053#if ERRATA_A53_819472
54 mov x0, #ERRATA_APPLIES
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000055 ret
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040056#else
57 mov x1, #0x01
58 b cpu_rev_var_ls
59#endif
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000060endfunc check_errata_819472
61
62 /* ---------------------------------------------------
63 * Errata Workaround for Cortex A53 Errata #824069.
64 * This applies only to revision <= r0p2 of Cortex A53.
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040065 * Due to the nature of the errata it is applied unconditionally
66 * when built in, report it as applicable in this case
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000067 * ---------------------------------------------------
68 */
69func check_errata_824069
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040070#if ERRATA_A53_824069
71 mov x0, #ERRATA_APPLIES
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000072 ret
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -040073#else
74 mov x1, #0x02
75 b cpu_rev_var_ls
76#endif
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +000077endfunc check_errata_824069
78
developer4fceaca2015-07-29 20:55:31 +080079 /* --------------------------------------------------
80 * Errata Workaround for Cortex A53 Errata #826319.
81 * This applies only to revision <= r0p2 of Cortex A53.
82 * Inputs:
83 * x0: variant[4:7] and revision[0:3] of current cpu.
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000084 * Shall clobber: x0-x17
developer4fceaca2015-07-29 20:55:31 +080085 * --------------------------------------------------
86 */
87func errata_a53_826319_wa
88 /*
89 * Compare x0 against revision r0p2
90 */
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000091 mov x17, x30
92 bl check_errata_826319
93 cbz x0, 1f
Varun Wadekar1384a162017-06-05 14:54:46 -070094 mrs x1, CORTEX_A53_L2ACTLR_EL1
95 bic x1, x1, #CORTEX_A53_L2ACTLR_ENABLE_UNIQUECLEAN
96 orr x1, x1, #CORTEX_A53_L2ACTLR_DISABLE_CLEAN_PUSH
97 msr CORTEX_A53_L2ACTLR_EL1, x1
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000981:
99 ret x17
developer4fceaca2015-07-29 20:55:31 +0800100endfunc errata_a53_826319_wa
101
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000102func check_errata_826319
103 mov x1, #0x02
104 b cpu_rev_var_ls
105endfunc check_errata_826319
106
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000107 /* ---------------------------------------------------
108 * Errata Workaround for Cortex A53 Errata #827319.
109 * This applies only to revision <= r0p2 of Cortex A53.
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -0400110 * Due to the nature of the errata it is applied unconditionally
111 * when built in, report it as applicable in this case
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000112 * ---------------------------------------------------
113 */
114func check_errata_827319
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -0400115#if ERRATA_A53_827319
116 mov x0, #ERRATA_APPLIES
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000117 ret
Andrew F. Davis3e2ef2e2019-04-24 16:11:03 -0400118#else
119 mov x1, #0x02
120 b cpu_rev_var_ls
121#endif
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000122endfunc check_errata_827319
123
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000124 /* ---------------------------------------------------------------------
125 * Disable the cache non-temporal hint.
126 *
127 * This ignores the Transient allocation hint in the MAIR and treats
128 * allocations the same as non-transient allocation types. As a result,
129 * the LDNP and STNP instructions in AArch64 behave the same as the
130 * equivalent LDP and STP instructions.
131 *
132 * This is relevant only for revisions <= r0p3 of Cortex-A53.
133 * From r0p4 and onwards, the bit to disable the hint is enabled by
134 * default at reset.
135 *
developer4fceaca2015-07-29 20:55:31 +0800136 * Inputs:
137 * x0: variant[4:7] and revision[0:3] of current cpu.
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000138 * Shall clobber: x0-x17
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000139 * ---------------------------------------------------------------------
developer4fceaca2015-07-29 20:55:31 +0800140 */
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000141func a53_disable_non_temporal_hint
developer4fceaca2015-07-29 20:55:31 +0800142 /*
143 * Compare x0 against revision r0p3
144 */
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000145 mov x17, x30
146 bl check_errata_disable_non_temporal_hint
147 cbz x0, 1f
Eleanor Bonnici41b61be2017-08-09 16:42:40 +0100148 mrs x1, CORTEX_A53_CPUACTLR_EL1
149 orr x1, x1, #CORTEX_A53_CPUACTLR_EL1_DTAH
150 msr CORTEX_A53_CPUACTLR_EL1, x1
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00001511:
152 ret x17
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000153endfunc a53_disable_non_temporal_hint
developer4fceaca2015-07-29 20:55:31 +0800154
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000155func check_errata_disable_non_temporal_hint
156 mov x1, #0x03
157 b cpu_rev_var_ls
158endfunc check_errata_disable_non_temporal_hint
159
Andre Przywara00eefd92016-10-06 16:54:53 +0100160 /* --------------------------------------------------
161 * Errata Workaround for Cortex A53 Errata #855873.
162 *
163 * This applies only to revisions >= r0p3 of Cortex A53.
164 * Earlier revisions of the core are affected as well, but don't
165 * have the chicken bit in the CPUACTLR register. It is expected that
166 * the rich OS takes care of that, especially as the workaround is
167 * shared with other erratas in those revisions of the CPU.
168 * Inputs:
169 * x0: variant[4:7] and revision[0:3] of current cpu.
170 * Shall clobber: x0-x17
171 * --------------------------------------------------
172 */
173func errata_a53_855873_wa
174 /*
175 * Compare x0 against revision r0p3 and higher
176 */
177 mov x17, x30
178 bl check_errata_855873
179 cbz x0, 1f
180
Eleanor Bonnici41b61be2017-08-09 16:42:40 +0100181 mrs x1, CORTEX_A53_CPUACTLR_EL1
182 orr x1, x1, #CORTEX_A53_CPUACTLR_EL1_ENDCCASCI
183 msr CORTEX_A53_CPUACTLR_EL1, x1
Andre Przywara00eefd92016-10-06 16:54:53 +01001841:
185 ret x17
186endfunc errata_a53_855873_wa
187
188func check_errata_855873
189 mov x1, #0x03
190 b cpu_rev_var_hs
191endfunc check_errata_855873
192
Douglas Raillardd56fb042017-06-19 15:38:02 +0100193/*
194 * Errata workaround for Cortex A53 Errata #835769.
195 * This applies to revisions <= r0p4 of Cortex A53.
196 * This workaround is statically enabled at build time.
197 */
198func check_errata_835769
Jonathan Wright6e1796e2018-03-28 16:55:54 +0100199 cmp x0, #0x04
200 b.hi errata_not_applies
201 /*
202 * Fix potentially available for revisions r0p2, r0p3 and r0p4.
203 * If r0p2, r0p3 or r0p4; check for fix in REVIDR, else exit.
204 */
205 cmp x0, #0x01
206 mov x0, #ERRATA_APPLIES
207 b.ls exit_check_errata_835769
208 /* Load REVIDR. */
209 mrs x1, revidr_el1
210 /* If REVIDR[7] is set (fix exists) set ERRATA_NOT_APPLIES, else exit. */
211 tbz x1, #7, exit_check_errata_835769
212errata_not_applies:
213 mov x0, #ERRATA_NOT_APPLIES
214exit_check_errata_835769:
215 ret
Douglas Raillardd56fb042017-06-19 15:38:02 +0100216endfunc check_errata_835769
217
218/*
219 * Errata workaround for Cortex A53 Errata #843419.
220 * This applies to revisions <= r0p4 of Cortex A53.
221 * This workaround is statically enabled at build time.
222 */
223func check_errata_843419
Jonathan Wrightefb1f332018-03-28 15:52:03 +0100224 mov x1, #ERRATA_APPLIES
225 mov x2, #ERRATA_NOT_APPLIES
226 cmp x0, #0x04
227 csel x0, x1, x2, ls
228 /*
229 * Fix potentially available for revision r0p4.
230 * If r0p4 check for fix in REVIDR, else exit.
231 */
232 b.ne exit_check_errata_843419
233 /* Load REVIDR. */
234 mrs x3, revidr_el1
235 /* If REVIDR[8] is set (fix exists) set ERRATA_NOT_APPLIES, else exit. */
236 tbz x3, #8, exit_check_errata_843419
237 mov x0, x2
238exit_check_errata_843419:
239 ret
Douglas Raillardd56fb042017-06-19 15:38:02 +0100240endfunc check_errata_843419
241
Manish V Badarkhe7672edf2020-08-03 18:43:14 +0100242 /* --------------------------------------------------
243 * Errata workaround for Cortex A53 Errata #1530924.
244 * This applies to all revisions of Cortex A53.
245 * --------------------------------------------------
246 */
247func check_errata_1530924
248#if ERRATA_A53_1530924
249 mov x0, #ERRATA_APPLIES
250#else
251 mov x0, #ERRATA_MISSING
252#endif
253 ret
254endfunc check_errata_1530924
255
developer4fceaca2015-07-29 20:55:31 +0800256 /* -------------------------------------------------
257 * The CPU Ops reset function for Cortex-A53.
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000258 * Shall clobber: x0-x19
developer4fceaca2015-07-29 20:55:31 +0800259 * -------------------------------------------------
260 */
Soby Mathewc704cbc2014-08-14 11:33:56 +0100261func cortex_a53_reset_func
developer4fceaca2015-07-29 20:55:31 +0800262 mov x19, x30
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000263 bl cpu_get_rev_var
264 mov x18, x0
developer4fceaca2015-07-29 20:55:31 +0800265
developer4fceaca2015-07-29 20:55:31 +0800266
267#if ERRATA_A53_826319
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000268 mov x0, x18
developer4fceaca2015-07-29 20:55:31 +0800269 bl errata_a53_826319_wa
270#endif
271
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000272#if ERRATA_A53_836870
273 mov x0, x18
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000274 bl a53_disable_non_temporal_hint
developer4fceaca2015-07-29 20:55:31 +0800275#endif
276
Andre Przywara00eefd92016-10-06 16:54:53 +0100277#if ERRATA_A53_855873
278 mov x0, x18
279 bl errata_a53_855873_wa
280#endif
281
Achin Gupta4f6ad662013-10-25 09:08:21 +0100282 /* ---------------------------------------------
Sandrine Bailleuxf12a31d2016-01-29 14:37:58 +0000283 * Enable the SMP bit.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100284 * ---------------------------------------------
285 */
Varun Wadekar1384a162017-06-05 14:54:46 -0700286 mrs x0, CORTEX_A53_ECTLR_EL1
287 orr x0, x0, #CORTEX_A53_ECTLR_SMP_BIT
288 msr CORTEX_A53_ECTLR_EL1, x0
developer4fceaca2015-07-29 20:55:31 +0800289 isb
290 ret x19
Kévin Petita877c252015-03-24 14:03:57 +0000291endfunc cortex_a53_reset_func
Soby Mathewc704cbc2014-08-14 11:33:56 +0100292
Soby Mathew8e2f2872014-08-14 12:49:05 +0100293func cortex_a53_core_pwr_dwn
294 mov x18, x30
295
296 /* ---------------------------------------------
297 * Turn off caches.
298 * ---------------------------------------------
299 */
300 bl cortex_a53_disable_dcache
301
302 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100303 * Flush L1 caches.
Soby Mathew8e2f2872014-08-14 12:49:05 +0100304 * ---------------------------------------------
305 */
306 mov x0, #DCCISW
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100307 bl dcsw_op_level1
Soby Mathew8e2f2872014-08-14 12:49:05 +0100308
309 /* ---------------------------------------------
310 * Come out of intra cluster coherency
311 * ---------------------------------------------
312 */
313 mov x30, x18
314 b cortex_a53_disable_smp
Kévin Petita877c252015-03-24 14:03:57 +0000315endfunc cortex_a53_core_pwr_dwn
Soby Mathew8e2f2872014-08-14 12:49:05 +0100316
317func cortex_a53_cluster_pwr_dwn
318 mov x18, x30
319
320 /* ---------------------------------------------
321 * Turn off caches.
322 * ---------------------------------------------
323 */
324 bl cortex_a53_disable_dcache
325
326 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100327 * Flush L1 caches.
328 * ---------------------------------------------
329 */
330 mov x0, #DCCISW
331 bl dcsw_op_level1
332
333 /* ---------------------------------------------
Soby Mathew8e2f2872014-08-14 12:49:05 +0100334 * Disable the optional ACP.
335 * ---------------------------------------------
336 */
337 bl plat_disable_acp
338
339 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100340 * Flush L2 caches.
Soby Mathew8e2f2872014-08-14 12:49:05 +0100341 * ---------------------------------------------
342 */
343 mov x0, #DCCISW
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100344 bl dcsw_op_level2
Soby Mathew8e2f2872014-08-14 12:49:05 +0100345
346 /* ---------------------------------------------
347 * Come out of intra cluster coherency
348 * ---------------------------------------------
349 */
350 mov x30, x18
351 b cortex_a53_disable_smp
Kévin Petita877c252015-03-24 14:03:57 +0000352endfunc cortex_a53_cluster_pwr_dwn
Soby Mathew8e2f2872014-08-14 12:49:05 +0100353
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000354#if REPORT_ERRATA
355/*
356 * Errata printing function for Cortex A53. Must follow AAPCS.
357 */
358func cortex_a53_errata_report
359 stp x8, x30, [sp, #-16]!
360
361 bl cpu_get_rev_var
362 mov x8, x0
363
364 /*
365 * Report all errata. The revision-variant information is passed to
366 * checking functions of each errata.
367 */
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000368 report_errata ERRATA_A53_819472, cortex_a53, 819472
369 report_errata ERRATA_A53_824069, cortex_a53, 824069
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000370 report_errata ERRATA_A53_826319, cortex_a53, 826319
Ambroise Vincentf5fdfbc2019-02-21 14:16:24 +0000371 report_errata ERRATA_A53_827319, cortex_a53, 827319
Douglas Raillardd56fb042017-06-19 15:38:02 +0100372 report_errata ERRATA_A53_835769, cortex_a53, 835769
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000373 report_errata ERRATA_A53_836870, cortex_a53, disable_non_temporal_hint
Douglas Raillardd56fb042017-06-19 15:38:02 +0100374 report_errata ERRATA_A53_843419, cortex_a53, 843419
Andre Przywara00eefd92016-10-06 16:54:53 +0100375 report_errata ERRATA_A53_855873, cortex_a53, 855873
Manish V Badarkhe7672edf2020-08-03 18:43:14 +0100376 report_errata ERRATA_A53_1530924, cortex_a53, 1530924
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000377
378 ldp x8, x30, [sp], #16
379 ret
380endfunc cortex_a53_errata_report
381#endif
382
Soby Mathew38b4bc92014-08-14 13:36:41 +0100383 /* ---------------------------------------------
384 * This function provides cortex_a53 specific
385 * register information for crash reporting.
386 * It needs to return with x6 pointing to
387 * a list of register names in ascii and
388 * x8 - x15 having values of registers to be
389 * reported.
390 * ---------------------------------------------
391 */
392.section .rodata.cortex_a53_regs, "aS"
393cortex_a53_regs: /* The ascii list of register names to be reported */
Andre Przywara00eefd92016-10-06 16:54:53 +0100394 .asciz "cpuectlr_el1", "cpumerrsr_el1", "l2merrsr_el1", \
395 "cpuactlr_el1", ""
Soby Mathew38b4bc92014-08-14 13:36:41 +0100396
397func cortex_a53_cpu_reg_dump
398 adr x6, cortex_a53_regs
Varun Wadekar1384a162017-06-05 14:54:46 -0700399 mrs x8, CORTEX_A53_ECTLR_EL1
400 mrs x9, CORTEX_A53_MERRSR_EL1
401 mrs x10, CORTEX_A53_L2MERRSR_EL1
Eleanor Bonnici41b61be2017-08-09 16:42:40 +0100402 mrs x11, CORTEX_A53_CPUACTLR_EL1
Soby Mathew38b4bc92014-08-14 13:36:41 +0100403 ret
Kévin Petita877c252015-03-24 14:03:57 +0000404endfunc cortex_a53_cpu_reg_dump
Soby Mathew38b4bc92014-08-14 13:36:41 +0100405
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000406declare_cpu_ops cortex_a53, CORTEX_A53_MIDR, \
407 cortex_a53_reset_func, \
408 cortex_a53_core_pwr_dwn, \
409 cortex_a53_cluster_pwr_dwn