Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | 82cb2c1 | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | c3cf06f | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef CORTEX_A53_H |
| 8 | #define CORTEX_A53_H |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 9 | |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 10 | #include <lib/utils_def.h> |
| 11 | |
Soby Mathew | add4035 | 2014-08-14 12:49:05 +0100 | [diff] [blame] | 12 | /* Cortex-A53 midr for revision 0 */ |
Varun Wadekar | 030567e | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 13 | #define CORTEX_A53_MIDR U(0x410FD030) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 14 | |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 15 | /* Retention timer tick definitions */ |
Varun Wadekar | 030567e | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 16 | #define RETENTION_ENTRY_TICKS_2 U(0x1) |
| 17 | #define RETENTION_ENTRY_TICKS_8 U(0x2) |
| 18 | #define RETENTION_ENTRY_TICKS_32 U(0x3) |
| 19 | #define RETENTION_ENTRY_TICKS_64 U(0x4) |
| 20 | #define RETENTION_ENTRY_TICKS_128 U(0x5) |
| 21 | #define RETENTION_ENTRY_TICKS_256 U(0x6) |
| 22 | #define RETENTION_ENTRY_TICKS_512 U(0x7) |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 23 | |
Soby Mathew | add4035 | 2014-08-14 12:49:05 +0100 | [diff] [blame] | 24 | /******************************************************************************* |
| 25 | * CPU Extended Control register specific definitions. |
| 26 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 27 | #define CORTEX_A53_ECTLR_EL1 S3_1_C15_C2_1 |
Soby Mathew | d3f70af | 2014-08-14 13:36:41 +0100 | [diff] [blame] | 28 | |
Antonio Nino Diaz | 1a74e4a | 2019-02-11 13:34:15 +0000 | [diff] [blame] | 29 | #define CORTEX_A53_ECTLR_SMP_BIT (ULL(1) << 6) |
Soby Mathew | 9b47684 | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 30 | |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 31 | #define CORTEX_A53_ECTLR_CPU_RET_CTRL_SHIFT U(0) |
Antonio Nino Diaz | 1a74e4a | 2019-02-11 13:34:15 +0000 | [diff] [blame] | 32 | #define CORTEX_A53_ECTLR_CPU_RET_CTRL_MASK (ULL(0x7) << CORTEX_A53_ECTLR_CPU_RET_CTRL_SHIFT) |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 33 | |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 34 | #define CORTEX_A53_ECTLR_FPU_RET_CTRL_SHIFT U(3) |
Antonio Nino Diaz | 1a74e4a | 2019-02-11 13:34:15 +0000 | [diff] [blame] | 35 | #define CORTEX_A53_ECTLR_FPU_RET_CTRL_MASK (ULL(0x7) << CORTEX_A53_ECTLR_FPU_RET_CTRL_SHIFT) |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 36 | |
Jimmy Huang | 6b0d97b | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 37 | /******************************************************************************* |
Naga Sureshkumar Relli | 84629f2 | 2016-07-01 12:52:41 +0530 | [diff] [blame] | 38 | * CPU Memory Error Syndrome register specific definitions. |
| 39 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 40 | #define CORTEX_A53_MERRSR_EL1 S3_1_C15_C2_2 |
Naga Sureshkumar Relli | 84629f2 | 2016-07-01 12:52:41 +0530 | [diff] [blame] | 41 | |
| 42 | /******************************************************************************* |
Jimmy Huang | 6b0d97b | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 43 | * CPU Auxiliary Control register specific definitions. |
| 44 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 45 | #define CORTEX_A53_CPUACTLR_EL1 S3_1_C15_C2_0 |
Jimmy Huang | 6b0d97b | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 46 | |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 47 | #define CORTEX_A53_CPUACTLR_EL1_ENDCCASCI_SHIFT U(44) |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 48 | #define CORTEX_A53_CPUACTLR_EL1_ENDCCASCI (ULL(1) << CORTEX_A53_CPUACTLR_EL1_ENDCCASCI_SHIFT) |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 49 | #define CORTEX_A53_CPUACTLR_EL1_RADIS_SHIFT U(27) |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 50 | #define CORTEX_A53_CPUACTLR_EL1_RADIS (ULL(3) << CORTEX_A53_CPUACTLR_EL1_RADIS_SHIFT) |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 51 | #define CORTEX_A53_CPUACTLR_EL1_L1RADIS_SHIFT U(25) |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 52 | #define CORTEX_A53_CPUACTLR_EL1_L1RADIS (ULL(3) << CORTEX_A53_CPUACTLR_EL1_L1RADIS_SHIFT) |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 53 | #define CORTEX_A53_CPUACTLR_EL1_DTAH_SHIFT U(24) |
Antonio Nino Diaz | a69817e | 2019-02-11 13:34:54 +0000 | [diff] [blame] | 54 | #define CORTEX_A53_CPUACTLR_EL1_DTAH (ULL(1) << CORTEX_A53_CPUACTLR_EL1_DTAH_SHIFT) |
Jimmy Huang | 6b0d97b | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 55 | |
| 56 | /******************************************************************************* |
| 57 | * L2 Auxiliary Control register specific definitions. |
| 58 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 59 | #define CORTEX_A53_L2ACTLR_EL1 S3_1_C15_C0_0 |
Jimmy Huang | 6b0d97b | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 60 | |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 61 | #define CORTEX_A53_L2ACTLR_ENABLE_UNIQUECLEAN (U(1) << 14) |
| 62 | #define CORTEX_A53_L2ACTLR_DISABLE_CLEAN_PUSH (U(1) << 3) |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 63 | /******************************************************************************* |
| 64 | * L2 Extended Control register specific definitions. |
| 65 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 66 | #define CORTEX_A53_L2ECTLR_EL1 S3_1_C11_C0_3 |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 67 | |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 68 | #define CORTEX_A53_L2ECTLR_RET_CTRL_SHIFT U(0) |
| 69 | #define CORTEX_A53_L2ECTLR_RET_CTRL_MASK (U(0x7) << L2ECTLR_RET_CTRL_SHIFT) |
Varun Wadekar | e0d913c | 2015-08-21 15:52:51 +0530 | [diff] [blame] | 70 | |
Naga Sureshkumar Relli | 84629f2 | 2016-07-01 12:52:41 +0530 | [diff] [blame] | 71 | /******************************************************************************* |
| 72 | * L2 Memory Error Syndrome register specific definitions. |
| 73 | ******************************************************************************/ |
Eleanor Bonnici | 80bcf98 | 2017-08-09 16:42:40 +0100 | [diff] [blame] | 74 | #define CORTEX_A53_L2MERRSR_EL1 S3_1_C15_C2_3 |
| 75 | |
kenny liang | 7352f32 | 2019-05-02 19:29:25 +0800 | [diff] [blame] | 76 | /******************************************************************************* |
| 77 | * Helper function to access a53_cpuectlr_el1 register on Cortex-A53 CPUs |
| 78 | ******************************************************************************/ |
Balint Dobszay | 89632e6 | 2019-10-11 14:01:43 +0200 | [diff] [blame] | 79 | #ifndef __ASSEMBLER__ |
kenny liang | 7352f32 | 2019-05-02 19:29:25 +0800 | [diff] [blame] | 80 | DEFINE_RENAME_SYSREG_RW_FUNCS(a53_cpuectlr_el1, CORTEX_A53_ECTLR_EL1) |
Balint Dobszay | 89632e6 | 2019-10-11 14:01:43 +0200 | [diff] [blame] | 81 | #endif /* __ASSEMBLER__ */ |
kenny liang | 7352f32 | 2019-05-02 19:29:25 +0800 | [diff] [blame] | 82 | |
Antonio Nino Diaz | c3cf06f | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 83 | #endif /* CORTEX_A53_H */ |