blob: 789b4cf56f37886b207871e25d3b2b7956d1f0cf [file] [log] [blame]
Etienne Carriere09d26a62017-11-05 22:56:50 +01001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved.
Etienne Carriere09d26a62017-11-05 22:56:50 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef CORTEX_A12_H
8#define CORTEX_A12_H
Etienne Carriere09d26a62017-11-05 22:56:50 +01009
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000010#include <lib/utils_def.h>
11
Etienne Carriere09d26a62017-11-05 22:56:50 +010012/*******************************************************************************
13 * Cortex-A12 midr with version/revision set to 0
14 ******************************************************************************/
Heiko Stuebner68a8d2b2019-04-05 14:44:33 +020015#define CORTEX_A12_MIDR U(0x410FC0D0)
Etienne Carriere09d26a62017-11-05 22:56:50 +010016
17/*******************************************************************************
18 * CPU Auxiliary Control register specific definitions.
19 ******************************************************************************/
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000020#define CORTEX_A12_ACTLR_SMP_BIT (U(1) << 6)
Etienne Carriere09d26a62017-11-05 22:56:50 +010021
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000022#endif /* CORTEX_A12_H */