blob: f45865a39953a3ef15b28ff6b37265ffc2b04ccc [file] [log] [blame]
Yatharth Kochara9f776c2016-11-10 16:17:51 +00001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
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
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +01009#include <utils_def.h>
Yatharth Kochara9f776c2016-11-10 16:17:51 +000010
11/* Cortex-A72 midr for revision 0 */
12#define CORTEX_A72_MIDR 0x410FD080
13
14/*******************************************************************************
15 * CPU Extended Control register specific definitions.
16 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010017#define CORTEX_A72_ECTLR p15, 1, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000018
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010019#define CORTEX_A72_ECTLR_SMP_BIT (ULL(1) << 6)
20#define CORTEX_A72_ECTLR_DIS_TWD_ACC_PFTCH_BIT (ULL(1) << 38)
21#define CORTEX_A72_ECTLR_L2_IPFTCH_DIST_MASK (ULL(0x3) << 35)
22#define CORTEX_A72_ECTLR_L2_DPFTCH_DIST_MASK (ULL(0x3) << 32)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000023
24/*******************************************************************************
25 * CPU Memory Error Syndrome register specific definitions.
26 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010027#define CORTEX_A72_MERRSR p15, 2, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000028
29/*******************************************************************************
30 * CPU Auxiliary Control register specific definitions.
31 ******************************************************************************/
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010032#define CORTEX_A72_CPUACTLR p15, 0, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000033
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010034#define CORTEX_A72_CPUACTLR_DISABLE_L1_DCACHE_HW_PFTCH (ULL(1) << 56)
Dimitris Papastamos4a284a42018-05-17 14:41:13 +010035#define CORTEX_A72_CPUACTLR_DIS_LOAD_PASS_STORE (ULL(1) << 55)
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010036#define CORTEX_A72_CPUACTLR_NO_ALLOC_WBWA (ULL(1) << 49)
37#define CORTEX_A72_CPUACTLR_DCC_AS_DCCI (ULL(1) << 44)
Eleanor Bonnicic3b4ca12017-08-02 18:33:41 +010038#define CORTEX_A72_CPUACTLR_DIS_INSTR_PREFETCH (ULL(1) << 32)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000039
40/*******************************************************************************
41 * L2 Control register specific definitions.
42 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010043#define CORTEX_A72_L2CTLR p15, 1, c9, c0, 2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000044
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010045#define CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT 0
46#define CORTEX_A72_L2CTLR_TAG_RAM_LATENCY_SHIFT 6
Yatharth Kochara9f776c2016-11-10 16:17:51 +000047
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010048#define CORTEX_A72_L2_DATA_RAM_LATENCY_3_CYCLES 0x2
49#define CORTEX_A72_L2_TAG_RAM_LATENCY_2_CYCLES 0x1
50#define CORTEX_A72_L2_TAG_RAM_LATENCY_3_CYCLES 0x2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000051
52/*******************************************************************************
53 * L2 Memory Error Syndrome register specific definitions.
54 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010055#define CORTEX_A72_L2MERRSR p15, 3, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000056
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000057#endif /* CORTEX_A72_H */