1 /* 2 * Copyright (c) 2023-2025, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef C1_PRO_H 8 #define C1_PRO_H 9 10 #include <lib/utils_def.h> 11 12 #define C1_PRO_MIDR U(0x410FD8B0) 13 14 /******************************************************************************* 15 * CPU Generic System Control register specific definitions 16 ******************************************************************************/ 17 #define C1_PRO_IMP_CPUACTLR2_EL1 S3_0_C15_C1_1 18 19 /******************************************************************************* 20 * CPU Extended Control register specific definitions 21 ******************************************************************************/ 22 #define C1_PRO_IMP_CPUECTLR_EL1 S3_0_C15_C1_4 23 #define C1_PRO_CPUECTLR2_EL1_EXTLLC_BIT U(10) 24 25 /******************************************************************************* 26 * CPU Power Control register specific definitions 27 ******************************************************************************/ 28 #define C1_PRO_IMP_CPUPWRCTLR_EL1 S3_0_C15_C2_7 29 #define C1_PRO_IMP_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1) 30 31 #endif /* C1_PRO_H */ 32