mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Add basic CPU library code to support the Arcadia CPU. Change-Id: Iecb0634dc6dcb34e9b5fda4902335530d237cc43 Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
24 lines
889 B
C
24 lines
889 B
C
/*
|
|
* Copyright (c) 2024, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef CORTEX_ARCADIA_H
|
|
#define CORTEX_ARCADIA_H
|
|
|
|
#define CORTEX_ARCADIA_MIDR U(0x410FD8F0)
|
|
|
|
/*******************************************************************************
|
|
* CPU Extended Control register specific definitions
|
|
******************************************************************************/
|
|
#define CORTEX_ARCADIA_CPUECTLR_EL1 S3_0_C15_C1_4
|
|
#define CORTEX_ARCADIA_CPUECTLR_EL1_EXTLLC_BIT U(0)
|
|
|
|
/*******************************************************************************
|
|
* CPU Power Control register specific definitions
|
|
******************************************************************************/
|
|
#define CORTEX_ARCADIA_CPUPWRCTLR_EL1 S3_0_C15_C2_7
|
|
#define CORTEX_ARCADIA_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1)
|
|
|
|
#endif /* CORTEX_ARCADIA_H */
|