blob: 9d024b6744a340c6b72dcc9f1f1f1c53f237e4fd [file] [log] [blame]
Joel Hutton9463cae2018-05-04 15:09:47 +01001/*
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Joel Hutton9463cae2018-05-04 15:09:47 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef CORTEX_DEIMOS_H
8#define CORTEX_DEIMOS_H
Joel Hutton9463cae2018-05-04 15:09:47 +01009
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000010#include <lib/utils_def.h>
11
Joel Hutton9463cae2018-05-04 15:09:47 +010012#define CORTEX_DEIMOS_MIDR U(0x410FD0D0)
13
14/*******************************************************************************
15 * CPU Extended Control register specific definitions.
16 ******************************************************************************/
17#define CORTEX_DEIMOS_CPUECTLR_EL1 S3_0_C15_C1_4
18
19/*******************************************************************************
20 * CPU Power Control register specific definitions.
21 ******************************************************************************/
22#define CORTEX_DEIMOS_CPUPWRCTLR_EL1 S3_0_C15_C2_7
23#define CORTEX_DEIMOS_CPUPWRCTLR_EL1_CORE_PWRDN_BIT (U(1) << 0)
24
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000025#endif /* CORTEX_DEIMOS_H */