neoverse_n1.h 1.02 KB
Newer Older
1
/*
2
 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef NEOVERSE_N1_H
#define NEOVERSE_N1_H
9

10
#include <lib/utils_def.h>
11

12
13
/* Neoverse N1 MIDR for revision 0 */
#define NEOVERSE_N1_MIDR		U(0x410fd0c0)
14
15
16
17

/*******************************************************************************
 * CPU Extended Control register specific definitions.
 ******************************************************************************/
18
19
#define NEOVERSE_N1_CPUPWRCTLR_EL1	S3_0_C15_C2_7
#define NEOVERSE_N1_CPUECTLR_EL1	S3_0_C15_C1_4
20

21
22
/* Definitions of register field mask in NEOVERSE_N1_CPUPWRCTLR_EL1 */
#define NEOVERSE_N1_CORE_PWRDN_EN_MASK	U(0x1)
23

24
#define NEOVERSE_N1_ACTLR_AMEN_BIT	(U(1) << 4)
25

26
27
#define NEOVERSE_N1_AMU_NR_COUNTERS	U(5)
#define NEOVERSE_N1_AMU_GROUP0_MASK	U(0x1f)
28

29
30
31
32
33
34
/* Instruction patching registers */
#define CPUPSELR_EL3	S3_6_C15_C8_0
#define CPUPCR_EL3	S3_6_C15_C8_1
#define CPUPOR_EL3	S3_6_C15_C8_2
#define CPUPMR_EL3	S3_6_C15_C8_3

35
#endif /* NEOVERSE_N1_H */