blob: 1486b9807bb68be6cff86b2feb4db6c26a65984a [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_A57_H__
8#define __CORTEX_A57_H__
9
10/* Cortex-A57 midr for revision 0 */
11#define CORTEX_A57_MIDR 0x410FD070
12
13/* Retention timer tick definitions */
14#define RETENTION_ENTRY_TICKS_2 0x1
15#define RETENTION_ENTRY_TICKS_8 0x2
16#define RETENTION_ENTRY_TICKS_32 0x3
17#define RETENTION_ENTRY_TICKS_64 0x4
18#define RETENTION_ENTRY_TICKS_128 0x5
19#define RETENTION_ENTRY_TICKS_256 0x6
20#define RETENTION_ENTRY_TICKS_512 0x7
21
22/*******************************************************************************
23 * CPU Extended Control register specific definitions.
24 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070025#define CORTEX_A57_ECTLR p15, 1, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000026
Varun Wadekar1384a162017-06-05 14:54:46 -070027#define CORTEX_A57_ECTLR_SMP_BIT (1 << 6)
28#define CORTEX_A57_ECTLR_DIS_TWD_ACC_PFTCH_BIT (1 << 38)
29#define CORTEX_A57_ECTLR_L2_IPFTCH_DIST_MASK (0x3 << 35)
30#define CORTEX_A57_ECTLR_L2_DPFTCH_DIST_MASK (0x3 << 32)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000031
Varun Wadekar1384a162017-06-05 14:54:46 -070032#define CORTEX_A57_ECTLR_CPU_RET_CTRL_SHIFT 0
33#define CORTEX_A57_ECTLR_CPU_RET_CTRL_MASK (0x7 << CORTEX_A57_ECTLR_CPU_RET_CTRL_SHIFT)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000034
35/*******************************************************************************
36 * CPU Memory Error Syndrome register specific definitions.
37 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070038#define CORTEX_A57_CPUMERRSR p15, 2, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000039
40/*******************************************************************************
41 * CPU Auxiliary Control register specific definitions.
42 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070043#define CORTEX_A57_ACTLR p15, 0, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000044
Varun Wadekar1384a162017-06-05 14:54:46 -070045#define CORTEX_A57_ACTLR_DIS_LOAD_PASS_DMB (1 << 59)
46#define CORTEX_A57_ACTLR_GRE_NGRE_AS_NGNRE (1 << 54)
47#define CORTEX_A57_ACTLR_DIS_OVERREAD (1 << 52)
48#define CORTEX_A57_ACTLR_NO_ALLOC_WBWA (1 << 49)
49#define CORTEX_A57_ACTLR_DCC_AS_DCCI (1 << 44)
50#define CORTEX_A57_ACTLR_FORCE_FPSCR_FLUSH (1 << 38)
51#define CORTEX_A57_ACTLR_DIS_STREAMING (3 << 27)
52#define CORTEX_A57_ACTLR_DIS_L1_STREAMING (3 << 25)
53#define CORTEX_A57_ACTLR_DIS_INDIRECT_PREDICTOR (1 << 4)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000054
55/*******************************************************************************
56 * L2 Control register specific definitions.
57 ******************************************************************************/
Dimitris Papastamosac838c52017-06-13 12:33:39 +010058#define CORTEX_A57_L2CTLR p15, 1, c9, c0, 2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000059
Varun Wadekar1384a162017-06-05 14:54:46 -070060#define CORTEX_A57_L2CTLR_DATA_RAM_LATENCY_SHIFT 0
61#define CORTEX_A57_L2CTLR_TAG_RAM_LATENCY_SHIFT 6
Yatharth Kochara9f776c2016-11-10 16:17:51 +000062
Varun Wadekar1384a162017-06-05 14:54:46 -070063#define CORTEX_A57_L2_DATA_RAM_LATENCY_3_CYCLES 0x2
64#define CORTEX_A57_L2_TAG_RAM_LATENCY_3_CYCLES 0x2
Yatharth Kochara9f776c2016-11-10 16:17:51 +000065
66/*******************************************************************************
67 * L2 Extended Control register specific definitions.
68 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070069#define CORTEX_A57_L2ECTLR p15, 1, c9, c0, 3
Yatharth Kochara9f776c2016-11-10 16:17:51 +000070
Varun Wadekar1384a162017-06-05 14:54:46 -070071#define CORTEX_A57_L2ECTLR_RET_CTRL_SHIFT 0
72#define CORTEX_A57_L2ECTLR_RET_CTRL_MASK (0x7 << CORTEX_A57_L2ECTLR_RET_CTRL_SHIFT)
Yatharth Kochara9f776c2016-11-10 16:17:51 +000073
74/*******************************************************************************
75 * L2 Memory Error Syndrome register specific definitions.
76 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070077#define CORTEX_A57_L2MERRSR p15, 3, c15
Yatharth Kochara9f776c2016-11-10 16:17:51 +000078
79#endif /* __CORTEX_A57_H__ */