blob: 0df34c9ce339da41ddb630b561af6e0e89a21926 [file] [log] [blame]
Imre Kis05e4d222019-07-18 14:30:03 +02001/*
2 * Copyright (c) 2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef CORTEX_A65_H
8#define CORTEX_A65_H
9
10#include <lib/utils_def.h>
11
12#define CORTEX_A65_MIDR U(0x410FD060)
13
14/*******************************************************************************
15 * CPU Extended Control register specific definitions
16 ******************************************************************************/
17#define CORTEX_A65_ECTLR_EL1 S3_0_C15_C1_4
18
19/*******************************************************************************
20 * CPU Auxiliary Control register specific definitions
21 ******************************************************************************/
22#define CORTEX_A65_CPUACTLR_EL1 S3_0_C15_C1_0
23
24/*******************************************************************************
25 * CPU Power Control register specific definitions
26 ******************************************************************************/
27
28#define CORTEX_A65_CPUPWRCTLR_EL1 S3_0_C15_C2_7
29#define CORTEX_A65_CPUPWRCTLR_EL1_CORE_PWRDN_BIT (U(1) << 0)
30
31#endif /* CORTEX_A65_H */