blob: 0a3a23ab2126afa025feb72cbe6d605d8e1edaaf [file] [log] [blame]
Yatharth Kochara9f776c2016-11-10 16:17:51 +00001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved.
Yatharth Kochara9f776c2016-11-10 16:17:51 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochara9f776c2016-11-10 16:17:51 +00005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef CORTEX_A72_H
8#define CORTEX_A72_H
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
10#include <lib/utils_def.h>
Yatharth Kochara9f776c2016-11-10 16:17:51 +000011
12/* Cortex-A72 midr for revision 0 */
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000013#define CORTEX_A72_MIDR U(0x410FD080)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000014
15/*******************************************************************************
16 * CPU Extended Control register specific definitions.
17 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010018#define CORTEX_A72_ECTLR p15, 1, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000019
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010020#define CORTEX_A72_ECTLR_SMP_BIT (ULL(1) << 6)
21#define CORTEX_A72_ECTLR_DIS_TWD_ACC_PFTCH_BIT (ULL(1) << 38)
22#define CORTEX_A72_ECTLR_L2_IPFTCH_DIST_MASK (ULL(0x3) << 35)
23#define CORTEX_A72_ECTLR_L2_DPFTCH_DIST_MASK (ULL(0x3) << 32)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000024
25/*******************************************************************************
26 * CPU Memory Error Syndrome register specific definitions.
27 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010028#define CORTEX_A72_MERRSR p15, 2, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000029
30/*******************************************************************************
31 * CPU Auxiliary Control register specific definitions.
32 ******************************************************************************/
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010033#define CORTEX_A72_CPUACTLR p15, 0, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000034
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010035#define CORTEX_A72_CPUACTLR_DISABLE_L1_DCACHE_HW_PFTCH (ULL(1) << 56)
Dimitris Papastamos4a284a42018-05-17 14:41:13 +010036#define CORTEX_A72_CPUACTLR_DIS_LOAD_PASS_STORE (ULL(1) << 55)
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010037#define CORTEX_A72_CPUACTLR_NO_ALLOC_WBWA (ULL(1) << 49)
38#define CORTEX_A72_CPUACTLR_DCC_AS_DCCI (ULL(1) << 44)
Eleanor Bonnicic3b4ca12017-08-02 18:33:41 +010039#define CORTEX_A72_CPUACTLR_DIS_INSTR_PREFETCH (ULL(1) << 32)
Andrew Davis619d6fb2023-01-12 09:32:33 -060040#define CORTEX_A72_CPUACTLR_DELAY_EXCLUSIVE_SNOOP (ULL(1) << 31)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000041
42/*******************************************************************************
43 * L2 Control register specific definitions.
44 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010045#define CORTEX_A72_L2CTLR p15, 1, c9, c0, 2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000046
Andrew Davisb3fd3762023-01-10 13:25:42 -060047#define CORTEX_A72_L2CTLR_EL1_ECC_AND_PARITY_ENABLE (ULL(1) << 21)
48#define CORTEX_A72_L2CTLR_EL1_DATA_INLINE_ECC_ENABLE (ULL(1) << 20)
49
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000050#define CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT U(0)
51#define CORTEX_A72_L2CTLR_TAG_RAM_LATENCY_SHIFT U(6)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000052
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000053#define CORTEX_A72_L2_DATA_RAM_LATENCY_3_CYCLES U(0x2)
Andrew Davise7d7d112023-01-10 13:14:37 -060054#define CORTEX_A72_L2_DATA_RAM_LATENCY_4_CYCLES U(0x3)
Antonio Nino Diaz5e79cfe2019-02-11 13:34:15 +000055#define CORTEX_A72_L2_TAG_RAM_LATENCY_2_CYCLES U(0x1)
56#define CORTEX_A72_L2_TAG_RAM_LATENCY_3_CYCLES U(0x2)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000057
58/*******************************************************************************
59 * L2 Memory Error Syndrome register specific definitions.
60 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010061#define CORTEX_A72_L2MERRSR p15, 3, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000062
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000063#endif /* CORTEX_A72_H */