aboutsummaryrefslogtreecommitdiff
path: root/include/lib/cpus/aarch64/cortex_a77.h
blob: 41aced8d289478ffee6572ab034b0daef017359d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef CORTEX_A77_H
#define CORTEX_A77_H

#include <lib/utils_def.h>

/* Cortex-A77 MIDR */
#define CORTEX_A77_MIDR					U(0x410FD0D0)

/*******************************************************************************
 * CPU Extended Control register specific definitions.
 ******************************************************************************/
#define CORTEX_A77_CPUECTLR_EL1				S3_0_C15_C1_4
#define CORTEX_A77_CPUECTLR_EL1_BIT_53			(ULL(1) << 53)

/*******************************************************************************
 * CPU Power Control register specific definitions.
 ******************************************************************************/
#define CORTEX_A77_CPUPWRCTLR_EL1			S3_0_C15_C2_7
#define CORTEX_A77_CPUPWRCTLR_EL1_CORE_PWRDN_BIT	(U(1) << 0)

#define CORTEX_A77_CPUPSELR_EL3				S3_6_C15_C8_0
#define CORTEX_A77_CPUPCR_EL3				S3_6_C15_C8_1
#define CORTEX_A77_CPUPOR_EL3				S3_6_C15_C8_2
#define CORTEX_A77_CPUPMR_EL3				S3_6_C15_C8_3
#define CORTEX_A77_CPUPOR2_EL3				S3_6_C15_C8_4
#define CORTEX_A77_CPUPMR2_EL3				S3_6_C15_C8_5

#endif /* CORTEX_A77_H */