blob: 3d850137c108b3ac4e6d4eb36c31c5963291508d [file] [log] [blame]
John Tsichritzis6deaf9c2018-10-08 17:09:43 +01001/*
2 * Copyright (c) 2019, 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 <neoverse_zeus.h>
11#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 "Neoverse Zeus must be compiled with HW_ASSISTED_COHERENCY enabled"
17#endif
18
John Tsichritzis7557c662019-06-03 13:54:30 +010019/* 64-bit only core */
20#if CTX_INCLUDE_AARCH32_REGS == 1
21#error "Neoverse-Zeus supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
22#endif
23
John Tsichritzis6deaf9c2018-10-08 17:09:43 +010024 /* ---------------------------------------------
25 * HW will do the cache maintenance while powering down
26 * ---------------------------------------------
27 */
28func neoverse_zeus_core_pwr_dwn
29 /* ---------------------------------------------
30 * Enable CPU power down bit in power control register
31 * ---------------------------------------------
32 */
33 mrs x0, NEOVERSE_ZEUS_CPUPWRCTLR_EL1
34 orr x0, x0, #NEOVERSE_ZEUS_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
35 msr NEOVERSE_ZEUS_CPUPWRCTLR_EL1, x0
36 isb
37 ret
38endfunc neoverse_zeus_core_pwr_dwn
39
40 /*
41 * Errata printing function for Neoverse Zeus. Must follow AAPCS.
42 */
43#if REPORT_ERRATA
44func neoverse_zeus_errata_report
45 ret
46endfunc neoverse_zeus_errata_report
47#endif
48
49 /* ---------------------------------------------
50 * This function provides Neoverse-Zeus specific
51 * register information for crash reporting.
52 * It needs to return with x6 pointing to
53 * a list of register names in ascii and
54 * x8 - x15 having values of registers to be
55 * reported.
56 * ---------------------------------------------
57 */
58.section .rodata.neoverse_zeus_regs, "aS"
59neoverse_zeus_regs: /* The ascii list of register names to be reported */
60 .asciz "cpuectlr_el1", ""
61
62func neoverse_zeus_cpu_reg_dump
63 adr x6, neoverse_zeus_regs
64 mrs x8, NEOVERSE_ZEUS_CPUECTLR_EL1
65 ret
66endfunc neoverse_zeus_cpu_reg_dump
67
68declare_cpu_ops neoverse_zeus, NEOVERSE_ZEUS_MIDR, \
69 CPU_NO_RESET_FUNC, \
70 neoverse_zeus_core_pwr_dwn