mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

Change-Id: I755e4c42242d9a052570fd1132ca3d937acadb13 Signed-off-by: Balint Dobszay <balint.dobszay@arm.com>
26 lines
886 B
C
26 lines
886 B
C
/*
|
|
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef CORTEX_A77_H
|
|
#define CORTEX_A77_H
|
|
|
|
#include <lib/utils_def.h>
|
|
|
|
/* Cortex-A77 MIDR */
|
|
#define CORTEX_A77_MIDR U(0x410FD0D0)
|
|
|
|
/*******************************************************************************
|
|
* CPU Extended Control register specific definitions.
|
|
******************************************************************************/
|
|
#define CORTEX_A77_CPUECTLR_EL1 S3_0_C15_C1_4
|
|
|
|
/*******************************************************************************
|
|
* CPU Power Control register specific definitions.
|
|
******************************************************************************/
|
|
#define CORTEX_A77_CPUPWRCTLR_EL1 S3_0_C15_C2_7
|
|
#define CORTEX_A77_CPUPWRCTLR_EL1_CORE_PWRDN_BIT (U(1) << 0)
|
|
|
|
#endif /* CORTEX_A77_H */
|