[PATCH v1 04/10] mips: traps: Set WG bit in EBase register on Octeon
Stefan Roese
sr at denx.de
Sat May 2 10:59:38 CEST 2020
WG (bit 11) needs to be set on Octeon to enable writing bits 63:30 of
the exception base register.
Signed-off-by: Stefan Roese <sr at denx.de>
---
arch/mips/lib/traps.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/mips/lib/traps.c b/arch/mips/lib/traps.c
index 8fff7541e3..ccbce97161 100644
--- a/arch/mips/lib/traps.c
+++ b/arch/mips/lib/traps.c
@@ -106,6 +106,10 @@ void trap_init(ulong reloc_addr)
saved_ebase = read_c0_ebase() & 0xfffff000;
+ /* Set WG bit on Octeon to enable writing to bits 63:30 */
+ if (IS_ENABLED(CONFIG_ARCH_OCTEON))
+ ebase |= BIT(11);
+
write_c0_ebase(ebase);
clear_c0_status(ST0_BEV);
execution_hazard_barrier();
--
2.26.2
More information about the U-Boot
mailing list