mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
Release notes/info: https://github.com/riscv-software-src/opensbi/releases/tag/v1.4 Bump dependent u-boot ports. Sponsored by: The FreeBSD Foundation
19 lines
572 B
C
19 lines
572 B
C
--- lib/sbi/sbi_hart.c.orig 2023-12-27 03:02:58.000000000 -0400
|
|
+++ lib/sbi/sbi_hart.c 2024-01-11 14:10:09.723340000 -0400
|
|
@@ -523,6 +523,16 @@
|
|
if (!pmp_count)
|
|
return 0;
|
|
|
|
+ /*
|
|
+ * Disable the PMP for the sifive/fu540 platform, required to work
|
|
+ * around a hardware errata.
|
|
+ */
|
|
+ extern int need_pmp_war;
|
|
+ if (need_pmp_war) {
|
|
+ pmp_set(0, PMP_R | PMP_W | PMP_X, -1, __riscv_xlen);
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
pmp_log2gran = sbi_hart_pmp_log2gran(scratch);
|
|
pmp_bits = sbi_hart_pmp_addrbits(scratch) - 1;
|
|
pmp_addr_max = (1UL << pmp_bits) | ((1UL << pmp_bits) - 1);
|