From cb090c1924816c379228eda01444aac7f76b965f Mon Sep 17 00:00:00 2001 From: johpow01 Date: Mon, 15 Mar 2021 15:07:21 -0500 Subject: Add Makalu ELP CPU lib Add basic support for Makalu ELP processor core. Signed-off-by: John Powell Change-Id: I7b1ddbb8dd43326ecb8ff188f6f8fcf239826a93 --- include/lib/cpus/aarch64/cortex_makalu_elp.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/lib/cpus/aarch64/cortex_makalu_elp.h (limited to 'include/lib') diff --git a/include/lib/cpus/aarch64/cortex_makalu_elp.h b/include/lib/cpus/aarch64/cortex_makalu_elp.h new file mode 100644 index 000000000..4a1699635 --- /dev/null +++ b/include/lib/cpus/aarch64/cortex_makalu_elp.h @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef CORTEX_MAKALU_ELP_H +#define CORTEX_MAKALU_ELP_H + +#define CORTEX_MAKALU_ELP_MIDR U(0x410FD4E0) + +/******************************************************************************* + * CPU Extended Control register specific definitions + ******************************************************************************/ +#define CORTEX_MAKALU_ELP_CPUECTLR_EL1 S3_0_C15_C1_4 + +/******************************************************************************* + * CPU Power Control register specific definitions + ******************************************************************************/ +#define CORTEX_MAKALU_ELP_CPUPWRCTLR_EL1 S3_0_C15_C2_7 +#define CORTEX_MAKALU_ELP_CPUPWRCTLR_EL1_CORE_PWRDN_BIT U(1) + +#endif /* CORTEX_MAKALU_ELP_H */ -- cgit v1.2.3