blob: 95402d0a727d3bd41cd4eda4fef2ed15deb632ed [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
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 */
13#define CORTEX_A72_MIDR 0x410FD080
14
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)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000040
41/*******************************************************************************
42 * L2 Control register specific definitions.
43 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010044#define CORTEX_A72_L2CTLR p15, 1, c9, c0, 2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000045
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010046#define CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT 0
47#define CORTEX_A72_L2CTLR_TAG_RAM_LATENCY_SHIFT 6
Yatharth Kochara9f776c2016-11-10 16:17:51 +000048
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010049#define CORTEX_A72_L2_DATA_RAM_LATENCY_3_CYCLES 0x2
50#define CORTEX_A72_L2_TAG_RAM_LATENCY_2_CYCLES 0x1
51#define CORTEX_A72_L2_TAG_RAM_LATENCY_3_CYCLES 0x2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000052
53/*******************************************************************************
54 * L2 Memory Error Syndrome register specific definitions.
55 ******************************************************************************/
Eleanor Bonnicib83e42b2017-08-09 10:36:08 +010056#define CORTEX_A72_L2MERRSR p15, 3, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000057
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000058#endif /* CORTEX_A72_H */