blob: 952ae6ebecaa4336aae2c227e7aca893caa3d956 [file] [log] [blame]
Isla Mitchellea84d6b2017-08-03 16:04:46 +01001/*
John Tsichritzis56369c12019-02-19 13:49:06 +00002 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
Isla Mitchellea84d6b2017-08-03 16:04:46 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
John Tsichritzis56369c12019-02-19 13:49:06 +00007#ifndef NEOVERSE_N1_H
8#define NEOVERSE_N1_H
Antonio Nino Diaz9fe40fd2018-10-25 17:11:02 +01009
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/utils_def.h>
Isla Mitchellea84d6b2017-08-03 16:04:46 +010011
John Tsichritzis56369c12019-02-19 13:49:06 +000012/* Neoverse N1 MIDR for revision 0 */
13#define NEOVERSE_N1_MIDR U(0x410fd0c0)
Isla Mitchellea84d6b2017-08-03 16:04:46 +010014
15/*******************************************************************************
Louis Mayencourtb58142b2019-04-18 14:34:11 +010016 * CPU Power Control register specific definitions.
Isla Mitchellea84d6b2017-08-03 16:04:46 +010017 ******************************************************************************/
John Tsichritzis56369c12019-02-19 13:49:06 +000018#define NEOVERSE_N1_CPUPWRCTLR_EL1 S3_0_C15_C2_7
Isla Mitchellea84d6b2017-08-03 16:04:46 +010019
John Tsichritzis56369c12019-02-19 13:49:06 +000020/* Definitions of register field mask in NEOVERSE_N1_CPUPWRCTLR_EL1 */
21#define NEOVERSE_N1_CORE_PWRDN_EN_MASK U(0x1)
Isla Mitchellea84d6b2017-08-03 16:04:46 +010022
John Tsichritzis56369c12019-02-19 13:49:06 +000023#define NEOVERSE_N1_ACTLR_AMEN_BIT (U(1) << 4)
Dimitris Papastamos89736dd2018-02-13 11:28:02 +000024
John Tsichritzis56369c12019-02-19 13:49:06 +000025#define NEOVERSE_N1_AMU_NR_COUNTERS U(5)
26#define NEOVERSE_N1_AMU_GROUP0_MASK U(0x1f)
Dimitris Papastamos89736dd2018-02-13 11:28:02 +000027
Louis Mayencourtb58142b2019-04-18 14:34:11 +010028/*******************************************************************************
29 * CPU Extended Control register specific definitions.
30 ******************************************************************************/
31#define NEOVERSE_N1_CPUECTLR_EL1 S3_0_C15_C1_4
32
lauwal01197f14c2019-06-24 11:38:53 -050033#define NEOVERSE_N1_WS_THR_L2_MASK (ULL(3) << 24)
34
Louis Mayencourtb58142b2019-04-18 14:34:11 +010035/*******************************************************************************
36 * CPU Auxiliary Control register specific definitions.
37 ******************************************************************************/
lauwal01bd555f42019-06-24 11:23:50 -050038#define NEOVERSE_N1_CPUACTLR_EL1 S3_0_C15_C1_0
39
40#define NEOVERSE_N1_CPUACTLR_EL1_BIT_6 (ULL(1) << 6)
41
Louis Mayencourtb58142b2019-04-18 14:34:11 +010042#define NEOVERSE_N1_CPUACTLR2_EL1 S3_0_C15_C1_1
43
lauwal01f2adb132019-06-24 11:32:40 -050044#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_0 (ULL(1) << 0)
Andre Przywarab9347402019-05-20 14:57:06 +010045#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_2 (ULL(1) << 2)
lauwal01e1590442019-06-24 11:35:37 -050046#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_11 (ULL(1) << 11)
lauwal01f2adb132019-06-24 11:32:40 -050047#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_15 (ULL(1) << 15)
Andre Przywarab9347402019-05-20 14:57:06 +010048#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_16 (ULL(1) << 16)
lauwal01363ee3c2019-06-24 11:28:34 -050049#define NEOVERSE_N1_CPUACTLR2_EL1_BIT_59 (ULL(1) << 59)
50
Louis Mayencourtb58142b2019-04-18 14:34:11 +010051
Dimitris Papastamos7ca21db2018-03-26 16:46:01 +010052/* Instruction patching registers */
53#define CPUPSELR_EL3 S3_6_C15_C8_0
54#define CPUPCR_EL3 S3_6_C15_C8_1
55#define CPUPOR_EL3 S3_6_C15_C8_2
56#define CPUPMR_EL3 S3_6_C15_C8_3
57
John Tsichritzis56369c12019-02-19 13:49:06 +000058#endif /* NEOVERSE_N1_H */