Recently I realized that a device with some Qualcomm Kryo 4xx cores reported in `lscpu` that it was _not_ vulnerable to Spectre BHB. This seemed unlikely to me. I wrote up a patch series to attempt (with a lot of guesswork) to add Qualcomm cores to the tables governing how the Spectre BHB mitigation worked. In response to that patch, Will suggested that I flip the mitigation on its head and assume things are vulnerable until we find that they're not [1]. This patch series _attempts_ to accomplish that. I've tried to do the right thing for ARM Cores and for Qualcomm cores. I _think_ most of this likely to be right except that I don't have a lot of confidence in the "k" value for the Kryo 4XX cores. This patch series is _expected_ to cause some WARN splats for other ARM CPU variants. Sorry, but there's no way to make this "default assume affected" but not cause problems for ARM CPU variants that weren't previously listed. I hope the WARNing here is better than just slowing your cores down pointlessly or assuming the incorrect mitigation. If your core is mitigated by "loop" hopefully it's easy to just add your core to the list. If your core it mitigated by "firmware" you can add your core to the list and get rid of the WARN splat and you'll be left with the kernel reporting you as vulnerable until you can get a FW update out. In case it's not obvious, v2 of this patch series is pretty different than v1 because it flips the logic on its head. Some of the patches carried over, though. As a last caveat, I'll note that I am certainly no expert on Spectre. Mostly I ended up here running `lscpu` on a device and noticing that it thought that it wasn't affected by Spectre v2 when I thought it was. Link to prev versions: v1: https://lore.kernel.org/r/20241209174430.2904353-1-dianders@xxxxxxxxxxxx/ [1] https://lore.kernel.org/r/20241211213410.GB17486@willie-the-truck Changes in v2: - arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB - arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre safe list - Slight change to wording and notes of KRYO_4XX_GOLD patch - Rebased / reworded QCOM_KRYO_2XX_GOLD patch - Rebased / reworded QCOM_KRYO_3XX_GOLD patch Douglas Anderson (6): arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre safe list arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list arm64: errata: Add QCOM_KRYO_2XX_GOLD to the spectre_bhb_firmware_mitigated_list arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD arm64: errata: Add QCOM_KRYO_3XX_GOLD to the spectre_bhb_firmware_mitigated_list arch/arm64/include/asm/cputype.h | 2 ++ arch/arm64/kernel/proton-pack.c | 52 +++++++++++++++++++++++++++----- 2 files changed, 46 insertions(+), 8 deletions(-) -- 2.47.1.613.gc27f4b7a9f-goog