Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 1 | /* |
Boyan Karatotev | 3bfa5a0 | 2025-01-22 13:54:43 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2025, Arm Limited and Contributors. All rights reserved. |
Varun Wadekar | b2ed998 | 2022-05-24 15:00:06 +0100 | [diff] [blame] | 3 | * Copyright (c) 2020-2022, NVIDIA Corporation. All rights reserved. |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 4 | * |
dp-arm | 82cb2c1 | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <arch.h> |
| 9 | #include <asm_macros.S> |
| 10 | #include <assert_macros.S> |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 11 | #include <context.h> |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 12 | #include <denver.h> |
| 13 | #include <cpu_macros.S> |
| 14 | #include <plat_macros.S> |
| 15 | |
Boyan Karatotev | 3bfa5a0 | 2025-01-22 13:54:43 +0000 | [diff] [blame] | 16 | cpu_reset_prologue denver |
| 17 | |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 18 | /* ------------------------------------------------- |
| 19 | * CVE-2017-5715 mitigation |
| 20 | * |
| 21 | * Flush the indirect branch predictor and RSB on |
| 22 | * entry to EL3 by issuing a newly added instruction |
| 23 | * for Denver CPUs. |
| 24 | * |
| 25 | * To achieve this without performing any branch |
| 26 | * instruction, a per-cpu vbar is installed which |
| 27 | * executes the workaround and then branches off to |
| 28 | * the corresponding vector entry in the main vector |
| 29 | * table. |
| 30 | * ------------------------------------------------- |
| 31 | */ |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 32 | vector_base workaround_bpflush_runtime_exceptions |
| 33 | |
| 34 | .macro apply_workaround |
| 35 | stp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0] |
| 36 | |
Varun Wadekar | c5c1af0 | 2020-05-24 16:26:22 -0700 | [diff] [blame] | 37 | /* Disable cycle counter when event counting is prohibited */ |
| 38 | mrs x1, pmcr_el0 |
| 39 | orr x0, x1, #PMCR_EL0_DP_BIT |
| 40 | msr pmcr_el0, x0 |
| 41 | isb |
| 42 | |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 43 | /* ------------------------------------------------- |
| 44 | * A new write-only system register where a write of |
| 45 | * 1 to bit 0 will cause the indirect branch predictor |
| 46 | * and RSB to be flushed. |
| 47 | * |
| 48 | * A write of 0 to bit 0 will be ignored. A write of |
| 49 | * 1 to any other bit will cause an MCA. |
| 50 | * ------------------------------------------------- |
| 51 | */ |
| 52 | mov x0, #1 |
| 53 | msr s3_0_c15_c0_6, x0 |
| 54 | isb |
| 55 | |
| 56 | ldp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0] |
| 57 | .endm |
| 58 | |
| 59 | /* --------------------------------------------------------------------- |
| 60 | * Current EL with SP_EL0 : 0x0 - 0x200 |
| 61 | * --------------------------------------------------------------------- |
| 62 | */ |
| 63 | vector_entry workaround_bpflush_sync_exception_sp_el0 |
| 64 | b sync_exception_sp_el0 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 65 | end_vector_entry workaround_bpflush_sync_exception_sp_el0 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 66 | |
| 67 | vector_entry workaround_bpflush_irq_sp_el0 |
| 68 | b irq_sp_el0 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 69 | end_vector_entry workaround_bpflush_irq_sp_el0 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 70 | |
| 71 | vector_entry workaround_bpflush_fiq_sp_el0 |
| 72 | b fiq_sp_el0 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 73 | end_vector_entry workaround_bpflush_fiq_sp_el0 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 74 | |
| 75 | vector_entry workaround_bpflush_serror_sp_el0 |
| 76 | b serror_sp_el0 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 77 | end_vector_entry workaround_bpflush_serror_sp_el0 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 78 | |
| 79 | /* --------------------------------------------------------------------- |
| 80 | * Current EL with SP_ELx: 0x200 - 0x400 |
| 81 | * --------------------------------------------------------------------- |
| 82 | */ |
| 83 | vector_entry workaround_bpflush_sync_exception_sp_elx |
| 84 | b sync_exception_sp_elx |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 85 | end_vector_entry workaround_bpflush_sync_exception_sp_elx |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 86 | |
| 87 | vector_entry workaround_bpflush_irq_sp_elx |
| 88 | b irq_sp_elx |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 89 | end_vector_entry workaround_bpflush_irq_sp_elx |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 90 | |
| 91 | vector_entry workaround_bpflush_fiq_sp_elx |
| 92 | b fiq_sp_elx |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 93 | end_vector_entry workaround_bpflush_fiq_sp_elx |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 94 | |
| 95 | vector_entry workaround_bpflush_serror_sp_elx |
| 96 | b serror_sp_elx |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 97 | end_vector_entry workaround_bpflush_serror_sp_elx |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 98 | |
| 99 | /* --------------------------------------------------------------------- |
| 100 | * Lower EL using AArch64 : 0x400 - 0x600 |
| 101 | * --------------------------------------------------------------------- |
| 102 | */ |
| 103 | vector_entry workaround_bpflush_sync_exception_aarch64 |
| 104 | apply_workaround |
| 105 | b sync_exception_aarch64 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 106 | end_vector_entry workaround_bpflush_sync_exception_aarch64 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 107 | |
| 108 | vector_entry workaround_bpflush_irq_aarch64 |
| 109 | apply_workaround |
| 110 | b irq_aarch64 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 111 | end_vector_entry workaround_bpflush_irq_aarch64 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 112 | |
| 113 | vector_entry workaround_bpflush_fiq_aarch64 |
| 114 | apply_workaround |
| 115 | b fiq_aarch64 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 116 | end_vector_entry workaround_bpflush_fiq_aarch64 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 117 | |
| 118 | vector_entry workaround_bpflush_serror_aarch64 |
| 119 | apply_workaround |
| 120 | b serror_aarch64 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 121 | end_vector_entry workaround_bpflush_serror_aarch64 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 122 | |
| 123 | /* --------------------------------------------------------------------- |
| 124 | * Lower EL using AArch32 : 0x600 - 0x800 |
| 125 | * --------------------------------------------------------------------- |
| 126 | */ |
| 127 | vector_entry workaround_bpflush_sync_exception_aarch32 |
| 128 | apply_workaround |
| 129 | b sync_exception_aarch32 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 130 | end_vector_entry workaround_bpflush_sync_exception_aarch32 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 131 | |
| 132 | vector_entry workaround_bpflush_irq_aarch32 |
| 133 | apply_workaround |
| 134 | b irq_aarch32 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 135 | end_vector_entry workaround_bpflush_irq_aarch32 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 136 | |
| 137 | vector_entry workaround_bpflush_fiq_aarch32 |
| 138 | apply_workaround |
| 139 | b fiq_aarch32 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 140 | end_vector_entry workaround_bpflush_fiq_aarch32 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 141 | |
| 142 | vector_entry workaround_bpflush_serror_aarch32 |
| 143 | apply_workaround |
| 144 | b serror_aarch32 |
Roberto Vargas | a9203ed | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 145 | end_vector_entry workaround_bpflush_serror_aarch32 |
Varun Wadekar | b030146 | 2018-01-10 17:03:22 -0800 | [diff] [blame] | 146 | |
Varun Wadekar | 9f1c5dd | 2016-02-22 11:09:41 -0800 | [diff] [blame] | 147 | .global denver_disable_dco |
| 148 | |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 149 | /* --------------------------------------------- |
| 150 | * Disable debug interfaces |
| 151 | * --------------------------------------------- |
| 152 | */ |
| 153 | func denver_disable_ext_debug |
| 154 | mov x0, #1 |
| 155 | msr osdlr_el1, x0 |
| 156 | isb |
| 157 | dsb sy |
| 158 | ret |
| 159 | endfunc denver_disable_ext_debug |
| 160 | |
| 161 | /* ---------------------------------------------------- |
| 162 | * Enable dynamic code optimizer (DCO) |
| 163 | * ---------------------------------------------------- |
| 164 | */ |
| 165 | func denver_enable_dco |
Varun Wadekar | 5f90275 | 2020-08-05 23:10:40 -0700 | [diff] [blame] | 166 | /* DCO is not supported on PN5 and later */ |
| 167 | mrs x1, midr_el1 |
| 168 | mov_imm x2, DENVER_MIDR_PN4 |
| 169 | cmp x1, x2 |
| 170 | b.hi 1f |
| 171 | |
Kalyani Chidambaram | e6c0da1 | 2018-10-08 17:01:01 -0700 | [diff] [blame] | 172 | mov x18, x30 |
Varun Wadekar | 1593cae | 2018-02-27 18:30:31 -0800 | [diff] [blame] | 173 | bl plat_my_core_pos |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 174 | mov x1, #1 |
| 175 | lsl x1, x1, x0 |
| 176 | msr s3_0_c15_c0_2, x1 |
Kalyani Chidambaram | e6c0da1 | 2018-10-08 17:01:01 -0700 | [diff] [blame] | 177 | mov x30, x18 |
Varun Wadekar | 5f90275 | 2020-08-05 23:10:40 -0700 | [diff] [blame] | 178 | 1: ret |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 179 | endfunc denver_enable_dco |
| 180 | |
| 181 | /* ---------------------------------------------------- |
| 182 | * Disable dynamic code optimizer (DCO) |
| 183 | * ---------------------------------------------------- |
| 184 | */ |
| 185 | func denver_disable_dco |
Varun Wadekar | 5f90275 | 2020-08-05 23:10:40 -0700 | [diff] [blame] | 186 | /* DCO is not supported on PN5 and later */ |
| 187 | mrs x1, midr_el1 |
| 188 | mov_imm x2, DENVER_MIDR_PN4 |
| 189 | cmp x1, x2 |
| 190 | b.hi 2f |
Varun Wadekar | 1593cae | 2018-02-27 18:30:31 -0800 | [diff] [blame] | 191 | |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 192 | /* turn off background work */ |
Varun Wadekar | 5f90275 | 2020-08-05 23:10:40 -0700 | [diff] [blame] | 193 | mov x18, x30 |
Varun Wadekar | 1593cae | 2018-02-27 18:30:31 -0800 | [diff] [blame] | 194 | bl plat_my_core_pos |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 195 | mov x1, #1 |
| 196 | lsl x1, x1, x0 |
| 197 | lsl x2, x1, #16 |
| 198 | msr s3_0_c15_c0_2, x2 |
| 199 | isb |
| 200 | |
| 201 | /* wait till the background work turns off */ |
| 202 | 1: mrs x2, s3_0_c15_c0_2 |
| 203 | lsr x2, x2, #32 |
| 204 | and w2, w2, 0xFFFF |
| 205 | and x2, x2, x1 |
| 206 | cbnz x2, 1b |
| 207 | |
Kalyani Chidambaram | e6c0da1 | 2018-10-08 17:01:01 -0700 | [diff] [blame] | 208 | mov x30, x18 |
Varun Wadekar | 5f90275 | 2020-08-05 23:10:40 -0700 | [diff] [blame] | 209 | 2: ret |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 210 | endfunc denver_disable_dco |
| 211 | |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 212 | workaround_reset_start denver, CVE(2017, 5715), WORKAROUND_CVE_2017_5715 |
| 213 | #if IMAGE_BL31 |
| 214 | adr x1, workaround_bpflush_runtime_exceptions |
| 215 | msr vbar_el3, x1 |
| 216 | #endif |
| 217 | workaround_reset_end denver, CVE(2017, 5715) |
| 218 | |
| 219 | check_erratum_custom_start denver, CVE(2017, 5715) |
Varun Wadekar | 8335396 | 2018-07-06 13:39:52 -0700 | [diff] [blame] | 220 | mov x0, #ERRATA_MISSING |
| 221 | #if WORKAROUND_CVE_2017_5715 |
| 222 | /* |
| 223 | * Check if the CPU supports the special instruction |
| 224 | * required to flush the indirect branch predictor and |
| 225 | * RSB. Support for this operation can be determined by |
| 226 | * comparing bits 19:16 of ID_AFR0_EL1 with 0b0001. |
| 227 | */ |
| 228 | mrs x1, id_afr0_el1 |
| 229 | mov x2, #0x10000 |
| 230 | and x1, x1, x2 |
| 231 | cbz x1, 1f |
| 232 | mov x0, #ERRATA_APPLIES |
| 233 | 1: |
| 234 | #endif |
| 235 | ret |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 236 | check_erratum_custom_end denver, CVE(2017, 5715) |
Varun Wadekar | 8335396 | 2018-07-06 13:39:52 -0700 | [diff] [blame] | 237 | |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 238 | workaround_reset_start denver, CVE(2018, 3639), WORKAROUND_CVE_2018_3639 |
Varun Wadekar | 6cf8d65 | 2018-08-28 09:11:30 -0700 | [diff] [blame] | 239 | /* |
| 240 | * Denver CPUs with DENVER_MIDR_PN3 or earlier, use different |
| 241 | * bits in the ACTLR_EL3 register to disable speculative |
| 242 | * store buffer and memory disambiguation. |
| 243 | */ |
| 244 | mrs x0, midr_el1 |
| 245 | mov_imm x1, DENVER_MIDR_PN4 |
| 246 | cmp x0, x1 |
| 247 | mrs x0, actlr_el3 |
| 248 | mov x1, #(DENVER_CPU_DIS_MD_EL3 | DENVER_CPU_DIS_SSB_EL3) |
| 249 | mov x2, #(DENVER_PN4_CPU_DIS_MD_EL3 | DENVER_PN4_CPU_DIS_SSB_EL3) |
| 250 | csel x3, x1, x2, ne |
| 251 | orr x0, x0, x3 |
| 252 | msr actlr_el3, x0 |
| 253 | isb |
| 254 | dsb sy |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 255 | workaround_reset_end denver, CVE(2018, 3639) |
Varun Wadekar | 6cf8d65 | 2018-08-28 09:11:30 -0700 | [diff] [blame] | 256 | |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 257 | check_erratum_chosen denver, CVE(2018, 3639), WORKAROUND_CVE_2018_3639 |
| 258 | |
| 259 | cpu_reset_func_start denver |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 260 | /* ---------------------------------------------------- |
Varun Wadekar | cf3ed0d | 2018-06-25 11:36:47 -0700 | [diff] [blame] | 261 | * Reset ACTLR.PMSTATE to C1 state |
| 262 | * ---------------------------------------------------- |
| 263 | */ |
| 264 | mrs x0, actlr_el1 |
| 265 | bic x0, x0, #DENVER_CPU_PMSTATE_MASK |
| 266 | orr x0, x0, #DENVER_CPU_PMSTATE_C1 |
| 267 | msr actlr_el1, x0 |
| 268 | |
| 269 | /* ---------------------------------------------------- |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 270 | * Enable dynamic code optimizer (DCO) |
| 271 | * ---------------------------------------------------- |
| 272 | */ |
| 273 | bl denver_enable_dco |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 274 | cpu_reset_func_end denver |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 275 | |
| 276 | /* ---------------------------------------------------- |
| 277 | * The CPU Ops core power down function for Denver. |
| 278 | * ---------------------------------------------------- |
| 279 | */ |
| 280 | func denver_core_pwr_dwn |
| 281 | |
| 282 | mov x19, x30 |
| 283 | |
Varun Wadekar | 3a8c55f | 2015-07-14 17:11:20 +0530 | [diff] [blame] | 284 | /* --------------------------------------------- |
| 285 | * Force the debug interfaces to be quiescent |
| 286 | * --------------------------------------------- |
| 287 | */ |
| 288 | bl denver_disable_ext_debug |
| 289 | |
| 290 | ret x19 |
| 291 | endfunc denver_core_pwr_dwn |
| 292 | |
| 293 | /* ------------------------------------------------------- |
| 294 | * The CPU Ops cluster power down function for Denver. |
| 295 | * ------------------------------------------------------- |
| 296 | */ |
| 297 | func denver_cluster_pwr_dwn |
| 298 | ret |
| 299 | endfunc denver_cluster_pwr_dwn |
| 300 | |
| 301 | /* --------------------------------------------- |
| 302 | * This function provides Denver specific |
| 303 | * register information for crash reporting. |
| 304 | * It needs to return with x6 pointing to |
| 305 | * a list of register names in ascii and |
| 306 | * x8 - x15 having values of registers to be |
| 307 | * reported. |
| 308 | * --------------------------------------------- |
| 309 | */ |
| 310 | .section .rodata.denver_regs, "aS" |
| 311 | denver_regs: /* The ascii list of register names to be reported */ |
| 312 | .asciz "actlr_el1", "" |
| 313 | |
| 314 | func denver_cpu_reg_dump |
| 315 | adr x6, denver_regs |
| 316 | mrs x8, ACTLR_EL1 |
| 317 | ret |
| 318 | endfunc denver_cpu_reg_dump |
| 319 | |
Varun Wadekar | 9b624a7 | 2020-08-28 14:00:15 -0700 | [diff] [blame] | 320 | /* macro to declare cpu_ops for Denver SKUs */ |
| 321 | .macro denver_cpu_ops_wa midr |
| 322 | declare_cpu_ops_wa denver, \midr, \ |
| 323 | denver_reset_func, \ |
Boyan Karatotev | 15702f2 | 2023-04-05 11:26:35 +0100 | [diff] [blame] | 324 | check_erratum_denver_5715, \ |
Varun Wadekar | 9b624a7 | 2020-08-28 14:00:15 -0700 | [diff] [blame] | 325 | CPU_NO_EXTRA2_FUNC, \ |
Varun Wadekar | b2ed998 | 2022-05-24 15:00:06 +0100 | [diff] [blame] | 326 | CPU_NO_EXTRA3_FUNC, \ |
Varun Wadekar | 9b624a7 | 2020-08-28 14:00:15 -0700 | [diff] [blame] | 327 | denver_core_pwr_dwn, \ |
| 328 | denver_cluster_pwr_dwn |
| 329 | .endm |
Varun Wadekar | e956e22 | 2015-09-03 17:15:06 +0530 | [diff] [blame] | 330 | |
Varun Wadekar | 9b624a7 | 2020-08-28 14:00:15 -0700 | [diff] [blame] | 331 | denver_cpu_ops_wa DENVER_MIDR_PN0 |
| 332 | denver_cpu_ops_wa DENVER_MIDR_PN1 |
| 333 | denver_cpu_ops_wa DENVER_MIDR_PN2 |
| 334 | denver_cpu_ops_wa DENVER_MIDR_PN3 |
| 335 | denver_cpu_ops_wa DENVER_MIDR_PN4 |
| 336 | denver_cpu_ops_wa DENVER_MIDR_PN5 |
| 337 | denver_cpu_ops_wa DENVER_MIDR_PN6 |
| 338 | denver_cpu_ops_wa DENVER_MIDR_PN7 |
| 339 | denver_cpu_ops_wa DENVER_MIDR_PN8 |
Hemant Nigam | c6d25c0 | 2019-12-17 14:21:38 -0800 | [diff] [blame] | 340 | denver_cpu_ops_wa DENVER_MIDR_PN9 |