xref: /rk3399_ARM-atf/include/lib/cpus/aarch64/cortex_a725.h (revision bfecea005f766b02bc2479d6b69b3e9117145751)
1 /*
2  * Copyright (c) 2023-2025, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef CORTEX_A725_H
8 #define CORTEX_A725_H
9 
10 #define CORTEX_A725_MIDR					U(0x410FD870)
11 
12 /*******************************************************************************
13  * CPU Extended Control register specific definitions
14  ******************************************************************************/
15 #define CORTEX_A725_CPUECTLR_EL1				S3_0_C15_C1_4
16 #define CORTEX_A725_CPUECTLR_EL1_EXTLLC_BIT			U(0)
17 
18 /*******************************************************************************
19  * CPU Power Control register specific definitions
20  ******************************************************************************/
21 #define CORTEX_A725_CPUPWRCTLR_EL1				S3_0_C15_C2_7
22 #define CORTEX_A725_CPUPWRCTLR_EL1_CORE_PWRDN_BIT		U(1)
23 
24 #ifndef __ASSEMBLER__
25 long check_erratum_cortex_a725_3699564(long cpu_rev);
26 #endif /* __ASSEMBLER__ */
27 
28 #endif /* CORTEX_A725_H */
29