blob: aec62a28708c3ca04cd69b200a2786ab405b5de4 [file] [log] [blame]
Joel Hutton9463cae2018-05-04 15:09:47 +01001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
9#include <bl_common.h>
10#include <cortex_deimos.h>
11#include <cpu_macros.S>
12#include <plat_macros.S>
13
14 /* ---------------------------------------------
15 * HW will do the cache maintenance while powering down
16 * ---------------------------------------------
17 */
18func cortex_deimos_core_pwr_dwn
19 /* ---------------------------------------------
20 * Enable CPU power down bit in power control register
21 * ---------------------------------------------
22 */
23 mrs x0, CORTEX_DEIMOS_CPUPWRCTLR_EL1
24 orr x0, x0, #CORTEX_DEIMOS_CPUPWRCTLR_EL1_CORE_PWRDN_BIT
25 msr CORTEX_DEIMOS_CPUPWRCTLR_EL1, x0
26 isb
27 ret
28endfunc cortex_deimos_core_pwr_dwn
29
30 /* ---------------------------------------------
31 * This function provides Cortex-Deimos specific
32 * register information for crash reporting.
33 * It needs to return with x6 pointing to
34 * a list of register names in ascii and
35 * x8 - x15 having values of registers to be
36 * reported.
37 * ---------------------------------------------
38 */
39.section .rodata.cortex_deimos_regs, "aS"
40cortex_deimos_regs: /* The ascii list of register names to be reported */
41 .asciz "cpuectlr_el1", ""
42
43func cortex_deimos_cpu_reg_dump
44 adr x6, cortex_deimos_regs
45 mrs x8, CORTEX_DEIMOS_CPUECTLR_EL1
46 ret
47endfunc cortex_deimos_cpu_reg_dump
48
49declare_cpu_ops cortex_deimos, CORTEX_DEIMOS_MIDR, \
50 CPU_NO_RESET_FUNC, \
51 cortex_deimos_core_pwr_dwn