Andre Przywara | e116a37 | 2014-11-14 15:54:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Contains CPU specific errata definitions |
| 3 | * |
| 4 | * Copyright (C) 2014 ARM Ltd. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
| 18 | |
Andre Przywara | e116a37 | 2014-11-14 15:54:09 +0000 | [diff] [blame] | 19 | #include <linux/types.h> |
| 20 | #include <asm/cpu.h> |
| 21 | #include <asm/cputype.h> |
| 22 | #include <asm/cpufeature.h> |
| 23 | |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 24 | static bool __maybe_unused |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 25 | is_affected_midr_range(const struct arm64_cpu_capabilities *entry, int scope) |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 26 | { |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 27 | WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); |
Will Deacon | d5370f7 | 2016-02-02 12:46:24 +0000 | [diff] [blame] | 28 | return MIDR_IS_CPU_MODEL_RANGE(read_cpuid_id(), entry->midr_model, |
| 29 | entry->midr_range_min, |
| 30 | entry->midr_range_max); |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 33 | static bool |
| 34 | has_mismatched_cache_line_size(const struct arm64_cpu_capabilities *entry, |
| 35 | int scope) |
| 36 | { |
| 37 | WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); |
| 38 | return (read_cpuid_cachetype() & arm64_ftr_reg_ctrel0.strict_mask) != |
| 39 | (arm64_ftr_reg_ctrel0.sys_val & arm64_ftr_reg_ctrel0.strict_mask); |
| 40 | } |
| 41 | |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 42 | static int cpu_enable_trap_ctr_access(void *__unused) |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 43 | { |
| 44 | /* Clear SCTLR_EL1.UCT */ |
| 45 | config_sctlr_el1(SCTLR_EL1_UCT, 0); |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 46 | return 0; |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 47 | } |
| 48 | |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 49 | #define MIDR_RANGE(model, min, max) \ |
Suzuki K Poulose | 92406f0 | 2016-04-22 12:25:31 +0100 | [diff] [blame] | 50 | .def_scope = SCOPE_LOCAL_CPU, \ |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 51 | .matches = is_affected_midr_range, \ |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 52 | .midr_model = model, \ |
| 53 | .midr_range_min = min, \ |
| 54 | .midr_range_max = max |
| 55 | |
Marc Zyngier | 359b706 | 2015-03-27 13:09:23 +0000 | [diff] [blame] | 56 | const struct arm64_cpu_capabilities arm64_errata[] = { |
Andre Przywara | c0a01b8 | 2014-11-14 15:54:12 +0000 | [diff] [blame] | 57 | #if defined(CONFIG_ARM64_ERRATUM_826319) || \ |
| 58 | defined(CONFIG_ARM64_ERRATUM_827319) || \ |
| 59 | defined(CONFIG_ARM64_ERRATUM_824069) |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 60 | { |
| 61 | /* Cortex-A53 r0p[012] */ |
| 62 | .desc = "ARM errata 826319, 827319, 824069", |
| 63 | .capability = ARM64_WORKAROUND_CLEAN_CACHE, |
| 64 | MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x02), |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 65 | .enable = cpu_enable_cache_maint_trap, |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 66 | }, |
Andre Przywara | c0a01b8 | 2014-11-14 15:54:12 +0000 | [diff] [blame] | 67 | #endif |
| 68 | #ifdef CONFIG_ARM64_ERRATUM_819472 |
| 69 | { |
| 70 | /* Cortex-A53 r0p[01] */ |
| 71 | .desc = "ARM errata 819472", |
| 72 | .capability = ARM64_WORKAROUND_CLEAN_CACHE, |
| 73 | MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x01), |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 74 | .enable = cpu_enable_cache_maint_trap, |
Andre Przywara | c0a01b8 | 2014-11-14 15:54:12 +0000 | [diff] [blame] | 75 | }, |
| 76 | #endif |
| 77 | #ifdef CONFIG_ARM64_ERRATUM_832075 |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 78 | { |
Andre Przywara | 5afaa1f | 2014-11-14 15:54:11 +0000 | [diff] [blame] | 79 | /* Cortex-A57 r0p0 - r1p2 */ |
| 80 | .desc = "ARM erratum 832075", |
| 81 | .capability = ARM64_WORKAROUND_DEVICE_LOAD_ACQUIRE, |
Robert Richter | fa5ce3d | 2017-01-13 14:12:09 +0100 | [diff] [blame] | 82 | MIDR_RANGE(MIDR_CORTEX_A57, |
| 83 | MIDR_CPU_VAR_REV(0, 0), |
| 84 | MIDR_CPU_VAR_REV(1, 2)), |
Andre Przywara | 5afaa1f | 2014-11-14 15:54:11 +0000 | [diff] [blame] | 85 | }, |
Andre Przywara | c0a01b8 | 2014-11-14 15:54:12 +0000 | [diff] [blame] | 86 | #endif |
Marc Zyngier | 498cd5c | 2015-11-16 10:28:18 +0000 | [diff] [blame] | 87 | #ifdef CONFIG_ARM64_ERRATUM_834220 |
| 88 | { |
| 89 | /* Cortex-A57 r0p0 - r1p2 */ |
| 90 | .desc = "ARM erratum 834220", |
| 91 | .capability = ARM64_WORKAROUND_834220, |
Robert Richter | fa5ce3d | 2017-01-13 14:12:09 +0100 | [diff] [blame] | 92 | MIDR_RANGE(MIDR_CORTEX_A57, |
| 93 | MIDR_CPU_VAR_REV(0, 0), |
| 94 | MIDR_CPU_VAR_REV(1, 2)), |
Marc Zyngier | 498cd5c | 2015-11-16 10:28:18 +0000 | [diff] [blame] | 95 | }, |
| 96 | #endif |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 97 | #ifdef CONFIG_ARM64_ERRATUM_845719 |
| 98 | { |
| 99 | /* Cortex-A53 r0p[01234] */ |
| 100 | .desc = "ARM erratum 845719", |
| 101 | .capability = ARM64_WORKAROUND_845719, |
| 102 | MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x04), |
| 103 | }, |
| 104 | #endif |
Robert Richter | 6d4e11c | 2015-09-21 22:58:35 +0200 | [diff] [blame] | 105 | #ifdef CONFIG_CAVIUM_ERRATUM_23154 |
| 106 | { |
| 107 | /* Cavium ThunderX, pass 1.x */ |
| 108 | .desc = "Cavium erratum 23154", |
| 109 | .capability = ARM64_WORKAROUND_CAVIUM_23154, |
| 110 | MIDR_RANGE(MIDR_THUNDERX, 0x00, 0x01), |
| 111 | }, |
| 112 | #endif |
Andrew Pinski | 104a0c0 | 2016-02-24 17:44:57 -0800 | [diff] [blame] | 113 | #ifdef CONFIG_CAVIUM_ERRATUM_27456 |
| 114 | { |
| 115 | /* Cavium ThunderX, T88 pass 1.x - 2.1 */ |
| 116 | .desc = "Cavium erratum 27456", |
| 117 | .capability = ARM64_WORKAROUND_CAVIUM_27456, |
Robert Richter | fa5ce3d | 2017-01-13 14:12:09 +0100 | [diff] [blame] | 118 | MIDR_RANGE(MIDR_THUNDERX, |
| 119 | MIDR_CPU_VAR_REV(0, 0), |
| 120 | MIDR_CPU_VAR_REV(1, 1)), |
Andrew Pinski | 104a0c0 | 2016-02-24 17:44:57 -0800 | [diff] [blame] | 121 | }, |
Ganapatrao Kulkarni | 47c459b | 2016-07-07 10:18:17 +0530 | [diff] [blame] | 122 | { |
| 123 | /* Cavium ThunderX, T81 pass 1.0 */ |
| 124 | .desc = "Cavium erratum 27456", |
| 125 | .capability = ARM64_WORKAROUND_CAVIUM_27456, |
| 126 | MIDR_RANGE(MIDR_THUNDERX_81XX, 0x00, 0x00), |
| 127 | }, |
Andrew Pinski | 104a0c0 | 2016-02-24 17:44:57 -0800 | [diff] [blame] | 128 | #endif |
Andre Przywara | 5afaa1f | 2014-11-14 15:54:11 +0000 | [diff] [blame] | 129 | { |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 130 | .desc = "Mismatched cache line size", |
| 131 | .capability = ARM64_MISMATCHED_CACHE_LINE_SIZE, |
| 132 | .matches = has_mismatched_cache_line_size, |
| 133 | .def_scope = SCOPE_LOCAL_CPU, |
| 134 | .enable = cpu_enable_trap_ctr_access, |
| 135 | }, |
Christopher Covington | d9ff80f | 2017-01-31 12:50:19 -0500 | [diff] [blame] | 136 | #ifdef CONFIG_QCOM_FALKOR_ERRATUM_1009 |
| 137 | { |
| 138 | .desc = "Qualcomm Technologies Falkor erratum 1009", |
| 139 | .capability = ARM64_WORKAROUND_REPEAT_TLBI, |
| 140 | MIDR_RANGE(MIDR_QCOM_FALKOR_V1, |
| 141 | MIDR_CPU_VAR_REV(0, 0), |
| 142 | MIDR_CPU_VAR_REV(0, 0)), |
| 143 | }, |
| 144 | #endif |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 145 | { |
Andre Przywara | 301bcfa | 2014-11-14 15:54:10 +0000 | [diff] [blame] | 146 | } |
Andre Przywara | e116a37 | 2014-11-14 15:54:09 +0000 | [diff] [blame] | 147 | }; |
| 148 | |
Suzuki K Poulose | 6a6efbb | 2016-04-22 12:25:34 +0100 | [diff] [blame] | 149 | /* |
| 150 | * The CPU Errata work arounds are detected and applied at boot time |
| 151 | * and the related information is freed soon after. If the new CPU requires |
| 152 | * an errata not detected at boot, fail this CPU. |
| 153 | */ |
Suzuki K Poulose | 89ba264 | 2016-09-09 14:07:09 +0100 | [diff] [blame] | 154 | void verify_local_cpu_errata_workarounds(void) |
Suzuki K Poulose | 6a6efbb | 2016-04-22 12:25:34 +0100 | [diff] [blame] | 155 | { |
| 156 | const struct arm64_cpu_capabilities *caps = arm64_errata; |
| 157 | |
| 158 | for (; caps->matches; caps++) |
| 159 | if (!cpus_have_cap(caps->capability) && |
| 160 | caps->matches(caps, SCOPE_LOCAL_CPU)) { |
| 161 | pr_crit("CPU%d: Requires work around for %s, not detected" |
| 162 | " at boot time\n", |
| 163 | smp_processor_id(), |
| 164 | caps->desc ? : "an erratum"); |
| 165 | cpu_die_early(); |
| 166 | } |
| 167 | } |
| 168 | |
Suzuki K Poulose | 89ba264 | 2016-09-09 14:07:09 +0100 | [diff] [blame] | 169 | void update_cpu_errata_workarounds(void) |
Andre Przywara | e116a37 | 2014-11-14 15:54:09 +0000 | [diff] [blame] | 170 | { |
Suzuki K. Poulose | ce8b602 | 2015-10-19 14:24:49 +0100 | [diff] [blame] | 171 | update_cpu_capabilities(arm64_errata, "enabling workaround for"); |
Andre Przywara | e116a37 | 2014-11-14 15:54:09 +0000 | [diff] [blame] | 172 | } |
Andre Przywara | 8e23185 | 2016-06-28 18:07:30 +0100 | [diff] [blame] | 173 | |
| 174 | void __init enable_errata_workarounds(void) |
| 175 | { |
| 176 | enable_cpu_capabilities(arm64_errata); |
| 177 | } |