blob: f7da1f0137f9b9b34e3042b7de33b5bfb88d0276 [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
7#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)
35#define CORTEX_A72_CPUACTLR_NO_ALLOC_WBWA (ULL(1) << 49)
36#define CORTEX_A72_CPUACTLR_DCC_AS_DCCI (ULL(1) << 44)
Eleanor Bonnicic3b4ca12017-08-02 18:33:41 +010037#define CORTEX_A72_CPUACTLR_DIS_INSTR_PREFETCH (ULL(1) << 32)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000038
39/*******************************************************************************
40 * L2 Control register specific definitions.
41 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010042#define CORTEX_A72_L2CTLR p15, 1, c9, c0, 2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000043
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010044#define CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT 0
45#define CORTEX_A72_L2CTLR_TAG_RAM_LATENCY_SHIFT 6
Yatharth Kochara9f776c2016-11-10 16:17:51 +000046
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010047#define CORTEX_A72_L2_DATA_RAM_LATENCY_3_CYCLES 0x2
48#define CORTEX_A72_L2_TAG_RAM_LATENCY_2_CYCLES 0x1
49#define CORTEX_A72_L2_TAG_RAM_LATENCY_3_CYCLES 0x2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000050
51/*******************************************************************************
52 * L2 Memory Error Syndrome register specific definitions.
53 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010054#define CORTEX_A72_L2MERRSR p15, 3, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000055
Eleanor Bonnici41b61be2017-08-09 16:42:40 +010056#if !ERROR_DEPRECATED
57/*
58 * These registers were previously wrongly named. Provide previous definitions so
59 * as not to break platforms that continue using them.
60 */
61#define CORTEX_A72_ACTLR CORTEX_A72_CPUACTLR
62
63#define CORTEX_A72_ACTLR_DISABLE_L1_DCACHE_HW_PFTCH CORTEX_A72_CPUACTLR_DISABLE_L1_DCACHE_HW_PFTCH
64#define CORTEX_A72_ACTLR_NO_ALLOC_WBWA CORTEX_A72_CPUACTLR_NO_ALLOC_WBWA
65#define CORTEX_A72_ACTLR_DCC_AS_DCCI CORTEX_A72_CPUACTLR_DCC_AS_DCCI
66#endif /* !ERROR_DEPRECATED */
67
Yatharth Kochara9f776c2016-11-10 16:17:51 +000068#endif /* __CORTEX_A72_H__ */