arm-trusted-firmware/include/lib/cpus/aarch64/cortex_chaberton.h
Govindraj Raja 516a52f6f5 feat(cpus): add support for chaberton cpu
Add basic CPU library code to support the Chaberton CPU,
Chaberton cores are based out of Hunter core, so overall
library code was adapted based on that.

Change-Id: I58321c77f2c364225a764da6fa65656d1bec33f1
Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
2023-04-04 17:16:46 +02:00

23 lines
849 B
C

/*
* Copyright (c) 2023, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef CORTEX_CHABERTON_H
#define CORTEX_CHABERTON_H
#define CORTEX_CHABERTON_MIDR U(0x410FD870)
/*******************************************************************************
* CPU Extended Control register specific definitions
******************************************************************************/
#define CORTEX_CHABERTON_CPUECTLR_EL1 S3_0_C15_C1_4
/*******************************************************************************
* CPU Power Control register specific definitions
******************************************************************************/
#define CORTEX_CHABERTON_CPUPWRCTLR_EL1 S3_0_C15_C2_7
#define CORTEX_CHABERTON_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1)
#endif /* CORTEX_CHABERTON_H */