Browse Source
Rename cortex_hunter to cortex_a720 Change-Id: Id4e0e2cd47051c2e92b3f16373ea06ef4df1d75f Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>pull/1999/head
Govindraj Raja
1 year ago
6 changed files with 43 additions and 43 deletions
@ -1,26 +1,26 @@ |
|||
/*
|
|||
* Copyright (c) 2021-2022, Arm Limited. All rights reserved. |
|||
* Copyright (c) 2021-2023, Arm Limited. All rights reserved. |
|||
* |
|||
* SPDX-License-Identifier: BSD-3-Clause |
|||
*/ |
|||
|
|||
#ifndef CORTEX_HUNTER_H |
|||
#define CORTEX_HUNTER_H |
|||
#ifndef CORTEX_A720_H |
|||
#define CORTEX_A720_H |
|||
|
|||
#define CORTEX_HUNTER_MIDR U(0x410FD810) |
|||
#define CORTEX_A720_MIDR U(0x410FD810) |
|||
|
|||
/* Cortex Hunter loop count for CVE-2022-23960 mitigation */ |
|||
#define CORTEX_HUNTER_BHB_LOOP_COUNT U(132) |
|||
/* Cortex A720 loop count for CVE-2022-23960 mitigation */ |
|||
#define CORTEX_A720_BHB_LOOP_COUNT U(132) |
|||
|
|||
/*******************************************************************************
|
|||
* CPU Extended Control register specific definitions |
|||
******************************************************************************/ |
|||
#define CORTEX_HUNTER_CPUECTLR_EL1 S3_0_C15_C1_4 |
|||
#define CORTEX_A720_CPUECTLR_EL1 S3_0_C15_C1_4 |
|||
|
|||
/*******************************************************************************
|
|||
* CPU Power Control register specific definitions |
|||
******************************************************************************/ |
|||
#define CORTEX_HUNTER_CPUPWRCTLR_EL1 S3_0_C15_C2_7 |
|||
#define CORTEX_HUNTER_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1) |
|||
#define CORTEX_A720_CPUPWRCTLR_EL1 S3_0_C15_C2_7 |
|||
#define CORTEX_A720_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1) |
|||
|
|||
#endif /* CORTEX_HUNTER_H */ |
|||
#endif /* CORTEX_A720_H */ |
Loading…
Reference in new issue