aboutsummaryrefslogtreecommitdiff
path: root/include/lib/cpus/aarch64/neoverse_n2.h
blob: 948f96511cfd2936b83ffc157e35dd681b9ac799 (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
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2020-2021, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef NEOVERSE_N2_H
#define NEOVERSE_N2_H

/* Neoverse N2 ID register for revision r0p0 */
#define NEOVERSE_N2_MIDR			U(0x410FD490)

/*******************************************************************************
 * CPU Power control register
 ******************************************************************************/
#define NEOVERSE_N2_CPUPWRCTLR_EL1		S3_0_C15_C2_7
#define NEOVERSE_N2_CORE_PWRDN_EN_BIT		(ULL(1) << 0)

/*******************************************************************************
 * CPU Extended Control register specific definitions.
 ******************************************************************************/
#define NEOVERSE_N2_CPUECTLR_EL1		S3_0_C15_C1_4
#define NEOVERSE_N2_CPUECTLR_EL1_EXTLLC_BIT	(ULL(1) << 0)
#define NEOVERSE_N2_CPUECTLR_EL1_PFSTIDIS_BIT	(ULL(1) << 8)

/*******************************************************************************
 * CPU Auxiliary Control register specific definitions.
 ******************************************************************************/
#define NEOVERSE_N2_CPUACTLR_EL1		S3_0_C15_C1_0
#define NEOVERSE_N2_CPUACTLR_EL1_BIT_46	        (ULL(1) << 46)

/*******************************************************************************
 * CPU Auxiliary Control register 2 specific definitions.
 ******************************************************************************/
#define NEOVERSE_N2_CPUACTLR2_EL1		S3_0_C15_C1_1
#define NEOVERSE_N2_CPUACTLR2_EL1_BIT_2		(ULL(1) << 2)

/*******************************************************************************
 * CPU Auxiliary Control register 5 specific definitions.
 ******************************************************************************/
#define NEOVERSE_N2_CPUACTLR5_EL1		S3_0_C15_C8_0
#define NEOVERSE_N2_CPUACTLR5_EL1_BIT_44	(ULL(1) << 44)

#endif /* NEOVERSE_N2_H */