summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2009-12-07 18:53:34 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2009-12-07 18:53:34 +0000
commit0bdb0d35917022752b06491577588f1290d9b49f (patch)
tree256a13d0188b307ba648da4a5325dc7775bfaa9d /sys
parent540d0528b4e6ce271320bf2b4ee2462a3950b970 (diff)
When netbooting the kernel image from ARCBios, our load address may not be
honoured, and we may end up loaded at an uncached address (e.g. CKSEG1 on O2). This would cause the kernel to run with instruction cache disabled. Work around this by simply jumping to the address we really want to run at, at the beginning of locore.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sgi/sgi/locore.S44
1 files changed, 27 insertions, 17 deletions
diff --git a/sys/arch/sgi/sgi/locore.S b/sys/arch/sgi/sgi/locore.S
index 9e638e72b5b..5ca8e2b118f 100644
--- a/sys/arch/sgi/sgi/locore.S
+++ b/sys/arch/sgi/sgi/locore.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore.S,v 1.10 2009/10/30 08:13:57 syuu Exp $ */
+/* $OpenBSD: locore.S,v 1.11 2009/12/07 18:53:33 miod Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -42,16 +42,26 @@
.globl kernel_text
kernel_text = start
start:
- mfc0 v0, COP_0_STATUS_REG
+ /*
+ * On at least the O2, when netbooting the bsd.rd kernel, the
+ * kernel image gets loaded in CKSEG1, which causes the kernel
+ * text to be uncached. Just to be on the safe side, jump to
+ * our intended execution address.
+ */
+ LA v0, 1f
+ jr v0
+ nop
+1:
+
+ mfc0 v0, COP_0_STATUS_REG
li v1, ~SR_INT_ENAB
and v0, v1
- mtc0 v0, COP_0_STATUS_REG # disable all interrupts
-
- mtc0 zero, COP_0_CAUSE_REG # Clear soft interrupts
+ mtc0 v0, COP_0_STATUS_REG # disable all interrupts
+ mtc0 zero, COP_0_CAUSE_REG # Clear soft interrupts
-/*
- * Initialize stack and call machine startup.
- */
+ /*
+ * Initialize stack and call machine startup.
+ */
LA sp, start - FRAMESZ(CF_SZ)
LA gp, _gp
jal mips_init # mips_init(argc, argv, envp)
@@ -64,14 +74,14 @@ start:
#if defined(MULTIPROCESSOR)
LEAF(hw_cpu_spinup_trampoline, 0)
- mfc0 v0, COP_0_STATUS_REG
- li v1, ~SR_INT_ENAB
- and v0, v1
- ori v0, SR_KX | SR_UX
- mtc0 v0, COP_0_STATUS_REG # disable all interrupts
- mtc0 zero, COP_0_CAUSE_REG # Clear soft interrupts
- LA gp, _gp
- jal hw_cpu_hatch
- nop
+ mfc0 v0, COP_0_STATUS_REG
+ li v1, ~SR_INT_ENAB
+ and v0, v1
+ ori v0, SR_KX | SR_UX
+ mtc0 v0, COP_0_STATUS_REG # disable all interrupts
+ mtc0 zero, COP_0_CAUSE_REG # Clear soft interrupts
+ LA gp, _gp
+ jal hw_cpu_hatch
+ nop
END(hw_cpu_spinup_trampoline)
#endif /* MULTIPROCESSOR */