blob: c68f408ce41ec4b63895cc47c6ef0898ca6262b5 [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 ******************************************************************************/
Soby Mathew38b4bc92014-08-14 13:36:41 +010025#define CPUECTLR_EL1 S3_1_C15_C2_1 /* Instruction def. */
26
Soby Mathew8e2f2872014-08-14 12:49:05 +010027#define CPUECTLR_SMP_BIT (1 << 6)
28#define CPUECTLR_DIS_TWD_ACC_PFTCH_BIT (1 << 38)
29#define CPUECTLR_L2_IPFTCH_DIST_MASK (0x3 << 35)
30#define CPUECTLR_L2_DPFTCH_DIST_MASK (0x3 << 32)
Achin Gupta4f6ad662013-10-25 09:08:21 +010031
Varun Wadekar3ce4e882015-08-21 15:52:51 +053032#define CPUECTLR_CPU_RET_CTRL_SHIFT 0
33#define CPUECTLR_CPU_RET_CTRL_MASK (0x7 << CPUECTLR_CPU_RET_CTRL_SHIFT)
34
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 ******************************************************************************/
38#define CPUMERRSR_EL1 S3_1_C15_C2_2 /* Instruction def. */
39
40/*******************************************************************************
Soby Mathew802f8652014-08-14 16:19:29 +010041 * CPU Auxiliary Control register specific definitions.
42 ******************************************************************************/
43#define CPUACTLR_EL1 S3_1_C15_C2_0 /* Instruction def. */
44
Sandrine Bailleuxa7e0c532016-04-14 13:32:31 +010045#define CPUACTLR_DIS_LOAD_PASS_DMB (1 << 59)
Sandrine Bailleuxadcbd552016-04-14 14:24:13 +010046#define CPUACTLR_GRE_NGRE_AS_NGNRE (1 << 54)
Sandrine Bailleuxd4817592016-01-13 14:57:38 +000047#define CPUACTLR_DIS_OVERREAD (1 << 52)
48#define CPUACTLR_NO_ALLOC_WBWA (1 << 49)
49#define CPUACTLR_DCC_AS_DCCI (1 << 44)
Sandrine Bailleux143ef1a2016-04-21 11:10:52 +010050#define CPUACTLR_FORCE_FPSCR_FLUSH (1 << 38)
Sandrine Bailleuxc11116f2016-04-14 14:04:48 +010051#define CPUACTLR_DIS_STREAMING (3 << 27)
52#define CPUACTLR_DIS_L1_STREAMING (3 << 25)
Sandrine Bailleux48cbe852016-04-14 14:18:07 +010053#define CPUACTLR_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 ******************************************************************************/
58#define L2CTLR_EL1 S3_1_C11_C0_2 /* Instruction def. */
59
60#define L2CTLR_DATA_RAM_LATENCY_SHIFT 0
61#define L2CTLR_TAG_RAM_LATENCY_SHIFT 6
62
63#define L2_DATA_RAM_LATENCY_3_CYCLES 0x2
64#define L2_TAG_RAM_LATENCY_3_CYCLES 0x2
65
Varun Wadekar69ce1012016-05-12 13:43:33 -070066#define L2_ECC_PARITY_PROTECTION_BIT (1 << 21)
67
Varun Wadekar3ce4e882015-08-21 15:52:51 +053068/*******************************************************************************
69 * L2 Extended Control register specific definitions.
70 ******************************************************************************/
71#define L2ECTLR_EL1 S3_1_C11_C0_3 /* Instruction def. */
72
73#define L2ECTLR_RET_CTRL_SHIFT 0
74#define L2ECTLR_RET_CTRL_MASK (0x7 << L2ECTLR_RET_CTRL_SHIFT)
75
Naga Sureshkumar Relli6a72a912016-07-01 12:52:41 +053076/*******************************************************************************
77 * L2 Memory Error Syndrome register specific definitions.
78 ******************************************************************************/
79#define L2MERRSR_EL1 S3_1_C15_C2_3 /* Instruction def. */
80
Soby Mathew8e2f2872014-08-14 12:49:05 +010081#endif /* __CORTEX_A57_H__ */