cpu_errata.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. #include <linux/types.h>
  19. #include <asm/cpu.h>
  20. #include <asm/cputype.h>
  21. #include <asm/cpufeature.h>
  22. static bool __maybe_unused
  23. is_affected_midr_range(const struct arm64_cpu_capabilities *entry, int scope)
  24. {
  25. WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible());
  26. return MIDR_IS_CPU_MODEL_RANGE(read_cpuid_id(), entry->midr_model,
  27. entry->midr_range_min,
  28. entry->midr_range_max);
  29. }
  30. #define MIDR_RANGE(model, min, max) \
  31. .def_scope = SCOPE_LOCAL_CPU, \
  32. .matches = is_affected_midr_range, \
  33. .midr_model = model, \
  34. .midr_range_min = min, \
  35. .midr_range_max = max
  36. const struct arm64_cpu_capabilities arm64_errata[] = {
  37. #if defined(CONFIG_ARM64_ERRATUM_826319) || \
  38. defined(CONFIG_ARM64_ERRATUM_827319) || \
  39. defined(CONFIG_ARM64_ERRATUM_824069)
  40. {
  41. /* Cortex-A53 r0p[012] */
  42. .desc = "ARM errata 826319, 827319, 824069",
  43. .capability = ARM64_WORKAROUND_CLEAN_CACHE,
  44. MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x02),
  45. .enable = cpu_enable_cache_maint_trap,
  46. },
  47. #endif
  48. #ifdef CONFIG_ARM64_ERRATUM_819472
  49. {
  50. /* Cortex-A53 r0p[01] */
  51. .desc = "ARM errata 819472",
  52. .capability = ARM64_WORKAROUND_CLEAN_CACHE,
  53. MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x01),
  54. .enable = cpu_enable_cache_maint_trap,
  55. },
  56. #endif
  57. #ifdef CONFIG_ARM64_ERRATUM_832075
  58. {
  59. /* Cortex-A57 r0p0 - r1p2 */
  60. .desc = "ARM erratum 832075",
  61. .capability = ARM64_WORKAROUND_DEVICE_LOAD_ACQUIRE,
  62. MIDR_RANGE(MIDR_CORTEX_A57, 0x00,
  63. (1 << MIDR_VARIANT_SHIFT) | 2),
  64. },
  65. #endif
  66. #ifdef CONFIG_ARM64_ERRATUM_834220
  67. {
  68. /* Cortex-A57 r0p0 - r1p2 */
  69. .desc = "ARM erratum 834220",
  70. .capability = ARM64_WORKAROUND_834220,
  71. MIDR_RANGE(MIDR_CORTEX_A57, 0x00,
  72. (1 << MIDR_VARIANT_SHIFT) | 2),
  73. },
  74. #endif
  75. #ifdef CONFIG_ARM64_ERRATUM_845719
  76. {
  77. /* Cortex-A53 r0p[01234] */
  78. .desc = "ARM erratum 845719",
  79. .capability = ARM64_WORKAROUND_845719,
  80. MIDR_RANGE(MIDR_CORTEX_A53, 0x00, 0x04),
  81. },
  82. #endif
  83. #ifdef CONFIG_CAVIUM_ERRATUM_23154
  84. {
  85. /* Cavium ThunderX, pass 1.x */
  86. .desc = "Cavium erratum 23154",
  87. .capability = ARM64_WORKAROUND_CAVIUM_23154,
  88. MIDR_RANGE(MIDR_THUNDERX, 0x00, 0x01),
  89. },
  90. #endif
  91. #ifdef CONFIG_CAVIUM_ERRATUM_27456
  92. {
  93. /* Cavium ThunderX, T88 pass 1.x - 2.1 */
  94. .desc = "Cavium erratum 27456",
  95. .capability = ARM64_WORKAROUND_CAVIUM_27456,
  96. MIDR_RANGE(MIDR_THUNDERX, 0x00,
  97. (1 << MIDR_VARIANT_SHIFT) | 1),
  98. },
  99. {
  100. /* Cavium ThunderX, T81 pass 1.0 */
  101. .desc = "Cavium erratum 27456",
  102. .capability = ARM64_WORKAROUND_CAVIUM_27456,
  103. MIDR_RANGE(MIDR_THUNDERX_81XX, 0x00, 0x00),
  104. },
  105. #endif
  106. {
  107. }
  108. };
  109. /*
  110. * The CPU Errata work arounds are detected and applied at boot time
  111. * and the related information is freed soon after. If the new CPU requires
  112. * an errata not detected at boot, fail this CPU.
  113. */
  114. void verify_local_cpu_errata(void)
  115. {
  116. const struct arm64_cpu_capabilities *caps = arm64_errata;
  117. for (; caps->matches; caps++)
  118. if (!cpus_have_cap(caps->capability) &&
  119. caps->matches(caps, SCOPE_LOCAL_CPU)) {
  120. pr_crit("CPU%d: Requires work around for %s, not detected"
  121. " at boot time\n",
  122. smp_processor_id(),
  123. caps->desc ? : "an erratum");
  124. cpu_die_early();
  125. }
  126. }
  127. void check_local_cpu_errata(void)
  128. {
  129. update_cpu_capabilities(arm64_errata, "enabling workaround for");
  130. }
  131. void __init enable_errata_workarounds(void)
  132. {
  133. enable_cpu_capabilities(arm64_errata);
  134. }