blob: 228a91bb6fec1eef7b321c81018e0e7877b81281 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Sandrine Bailleuxd4817592016-01-13 14:57:38 +00002 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Soby Mathew8e2f2872014-08-14 12:49:05 +01007#ifndef __CORTEX_A57_H__
8#define __CORTEX_A57_H__
Achin Gupta4f6ad662013-10-25 09:08:21 +01009
Soby Mathew8e2f2872014-08-14 12:49:05 +010010/* Cortex-A57 midr for revision 0 */
11#define CORTEX_A57_MIDR 0x410FD070
Achin Gupta4f6ad662013-10-25 09:08:21 +010012
Varun Wadekar3ce4e882015-08-21 15:52:51 +053013/* 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
Soby Mathew8e2f2872014-08-14 12:49:05 +010022/*******************************************************************************
23 * CPU Extended Control register specific definitions.
24 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070025#define CORTEX_A57_ECTLR_EL1 S3_1_C15_C2_1
Soby Mathew38b4bc92014-08-14 13:36:41 +010026
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)
Achin Gupta4f6ad662013-10-25 09:08:21 +010031
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)
Varun Wadekar3ce4e882015-08-21 15:52:51 +053034
Soby Mathew802f8652014-08-14 16:19:29 +010035/*******************************************************************************
Naga Sureshkumar Relli6a72a912016-07-01 12:52:41 +053036 * CPU Memory Error Syndrome register specific definitions.
37 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070038#define CORTEX_A57_MERRSR_EL1 S3_1_C15_C2_2
Naga Sureshkumar Relli6a72a912016-07-01 12:52:41 +053039
40/*******************************************************************************
Soby Mathew802f8652014-08-14 16:19:29 +010041 * CPU Auxiliary Control register specific definitions.
42 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070043#define CORTEX_A57_ACTLR_EL1 S3_1_C15_C2_0
Soby Mathew802f8652014-08-14 16:19:29 +010044
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)
Soby Mathew802f8652014-08-14 16:19:29 +010054
Sandrine Bailleux798140d2014-07-17 16:06:39 +010055/*******************************************************************************
56 * L2 Control register specific definitions.
57 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070058#define CORTEX_A57_L2CTLR_EL1 S3_1_C11_C0_2
Sandrine Bailleux798140d2014-07-17 16:06:39 +010059
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
Sandrine Bailleux798140d2014-07-17 16:06:39 +010062
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
Sandrine Bailleux798140d2014-07-17 16:06:39 +010065
Varun Wadekar1384a162017-06-05 14:54:46 -070066#define CORTEX_A57_L2_ECC_PARITY_PROTECTION_BIT (1 << 21)
Varun Wadekar69ce1012016-05-12 13:43:33 -070067
Varun Wadekar3ce4e882015-08-21 15:52:51 +053068/*******************************************************************************
69 * L2 Extended Control register specific definitions.
70 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070071#define CORTEX_A57_L2ECTLR_EL1 S3_1_C11_C0_3
Varun Wadekar3ce4e882015-08-21 15:52:51 +053072
Varun Wadekar1384a162017-06-05 14:54:46 -070073#define CORTEX_A57_L2ECTLR_RET_CTRL_SHIFT 0
74#define CORTEX_A57_L2ECTLR_RET_CTRL_MASK (0x7 << CORTEX_A57_L2ECTLR_RET_CTRL_SHIFT)
Varun Wadekar3ce4e882015-08-21 15:52:51 +053075
Naga Sureshkumar Relli6a72a912016-07-01 12:52:41 +053076/*******************************************************************************
77 * L2 Memory Error Syndrome register specific definitions.
78 ******************************************************************************/
Varun Wadekar1384a162017-06-05 14:54:46 -070079#define CORTEX_A57_L2MERRSR_EL1 S3_1_C15_C2_3
Naga Sureshkumar Relli6a72a912016-07-01 12:52:41 +053080
Soby Mathew8e2f2872014-08-14 12:49:05 +010081#endif /* __CORTEX_A57_H__ */