1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2021 Heiko Stuebner <heiko@sntech.de> 4 */ 5 6 #include <linux/bug.h> 7 #include <linux/kernel.h> 8 #include <linux/module.h> 9 #include <linux/string.h> 10 #include <linux/uaccess.h> 11 #include <asm/alternative.h> 12 #include <asm/cacheflush.h> 13 #include <asm/errata_list.h> 14 #include <asm/patch.h> 15 #include <asm/vendorid_list.h> 16 17 static bool errata_probe_pbmt(unsigned int stage, 18 unsigned long arch_id, unsigned long impid) 19 { 20 if (arch_id != 0 || impid != 0) 21 return false; 22 23 if (stage == RISCV_ALTERNATIVES_EARLY_BOOT || 24 stage == RISCV_ALTERNATIVES_MODULE) 25 return true; 26 27 return false; 28 } 29 30 static u32 thead_errata_probe(unsigned int stage, 31 unsigned long archid, unsigned long impid) 32 { 33 u32 cpu_req_errata = 0; 34 35 if (errata_probe_pbmt(stage, archid, impid)) 36 cpu_req_errata |= (1U << ERRATA_THEAD_PBMT); 37 38 return cpu_req_errata; 39 } 40 41 void __init_or_module thead_errata_patch_func(struct alt_entry *begin, struct alt_entry *end, 42 unsigned long archid, unsigned long impid, 43 unsigned int stage) 44 { 45 struct alt_entry *alt; 46 u32 cpu_req_errata = thead_errata_probe(stage, archid, impid); 47 u32 tmp; 48 49 for (alt = begin; alt < end; alt++) { 50 if (alt->vendor_id != THEAD_VENDOR_ID) 51 continue; 52 if (alt->errata_id >= ERRATA_THEAD_NUMBER) 53 continue; 54 55 tmp = (1U << alt->errata_id); 56 if (cpu_req_errata & tmp) { 57 /* On vm-alternatives, the mmu isn't running yet */ 58 if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) 59 memcpy((void *)__pa_symbol(alt->old_ptr), 60 (void *)__pa_symbol(alt->alt_ptr), alt->alt_len); 61 else 62 patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len); 63 } 64 } 65 66 if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) 67 local_flush_icache_all(); 68 } 69