blob: 0467ef3bb5cb4e209ac15f834f610eb45f8c91cb [file] [log] [blame]
Joel Hutton9463cae2018-05-04 15:09:47 +01001/*
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Joel Hutton9463cae2018-05-04 15:09:47 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Balint Dobszaycc942642019-07-03 13:02:56 +02007#ifndef CORTEX_A77_H
8#define CORTEX_A77_H
Joel Hutton9463cae2018-05-04 15:09:47 +01009
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000010#include <lib/utils_def.h>
11
Balint Dobszaycc942642019-07-03 13:02:56 +020012/* Cortex-A77 MIDR */
13#define CORTEX_A77_MIDR U(0x410FD0D0)
Joel Hutton9463cae2018-05-04 15:09:47 +010014
15/*******************************************************************************
16 * CPU Extended Control register specific definitions.
17 ******************************************************************************/
Balint Dobszaycc942642019-07-03 13:02:56 +020018#define CORTEX_A77_CPUECTLR_EL1 S3_0_C15_C1_4
Joel Hutton9463cae2018-05-04 15:09:47 +010019
20/*******************************************************************************
21 * CPU Power Control register specific definitions.
22 ******************************************************************************/
Balint Dobszaycc942642019-07-03 13:02:56 +020023#define CORTEX_A77_CPUPWRCTLR_EL1 S3_0_C15_C2_7
24#define CORTEX_A77_CPUPWRCTLR_EL1_CORE_PWRDN_BIT (U(1) << 0)
Joel Hutton9463cae2018-05-04 15:09:47 +010025
Balint Dobszaycc942642019-07-03 13:02:56 +020026#endif /* CORTEX_A77_H */