xref: /linux/arch/riscv/errata/thead/errata.c (revision a12c689209185c1ad872723a644d0cd27e52d49c)
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 bool errata_probe_cmo(unsigned int stage,
31 			     unsigned long arch_id, unsigned long impid)
32 {
33 #ifdef CONFIG_ERRATA_THEAD_CMO
34 	if (arch_id != 0 || impid != 0)
35 		return false;
36 
37 	if (stage == RISCV_ALTERNATIVES_EARLY_BOOT)
38 		return false;
39 
40 	riscv_cbom_block_size = L1_CACHE_BYTES;
41 	riscv_noncoherent_supported();
42 	return true;
43 #else
44 	return false;
45 #endif
46 }
47 
48 static u32 thead_errata_probe(unsigned int stage,
49 			      unsigned long archid, unsigned long impid)
50 {
51 	u32 cpu_req_errata = 0;
52 
53 	if (errata_probe_pbmt(stage, archid, impid))
54 		cpu_req_errata |= (1U << ERRATA_THEAD_PBMT);
55 
56 	if (errata_probe_cmo(stage, archid, impid))
57 		cpu_req_errata |= (1U << ERRATA_THEAD_CMO);
58 
59 	return cpu_req_errata;
60 }
61 
62 void __init_or_module thead_errata_patch_func(struct alt_entry *begin, struct alt_entry *end,
63 					      unsigned long archid, unsigned long impid,
64 					      unsigned int stage)
65 {
66 	struct alt_entry *alt;
67 	u32 cpu_req_errata = thead_errata_probe(stage, archid, impid);
68 	u32 tmp;
69 
70 	for (alt = begin; alt < end; alt++) {
71 		if (alt->vendor_id != THEAD_VENDOR_ID)
72 			continue;
73 		if (alt->errata_id >= ERRATA_THEAD_NUMBER)
74 			continue;
75 
76 		tmp = (1U << alt->errata_id);
77 		if (cpu_req_errata & tmp) {
78 			/* On vm-alternatives, the mmu isn't running yet */
79 			if (stage == RISCV_ALTERNATIVES_EARLY_BOOT)
80 				memcpy((void *)__pa_symbol(alt->old_ptr),
81 				       (void *)__pa_symbol(alt->alt_ptr), alt->alt_len);
82 			else
83 				patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len);
84 		}
85 	}
86 
87 	if (stage == RISCV_ALTERNATIVES_EARLY_BOOT)
88 		local_flush_icache_all();
89 }
90