aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/sh_bios.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-12 18:42:52 +0900
committerPaul Mundt <lethal@linux-sh.org>2010-01-12 18:42:52 +0900
commit94cd049522136c2f3bbe063d2e98b2b8d4286fd3 (patch)
tree7c521604861235e113715ecfb627398f5b941359 /arch/sh/kernel/sh_bios.c
parentsh: Split out the unaligned counters and user bits. (diff)
downloadlinux-dev-94cd049522136c2f3bbe063d2e98b2b8d4286fd3.tar.xz
linux-dev-94cd049522136c2f3bbe063d2e98b2b8d4286fd3.zip
sh: sh_bios detection.
This adds some VBR sanity checks in the sh_bios code to ensure that the BIOS VBR is in range before blindly trapping in to it. This permits boards with varying boot loader configurations to always leave support for sh-bios enabled and it will just be disabled at run-time if not found. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to '')
-rw-r--r--arch/sh/kernel/sh_bios.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/arch/sh/kernel/sh_bios.c b/arch/sh/kernel/sh_bios.c
index 29cd2526e5c4..47475cca068a 100644
--- a/arch/sh/kernel/sh_bios.c
+++ b/arch/sh/kernel/sh_bios.c
@@ -23,6 +23,8 @@
#define BIOS_CALL_SHUTDOWN 11
#define BIOS_CALL_GDB_DETACH 0xff
+void *gdb_vbr_vector = NULL;
+
static inline long sh_bios_call(long func, long arg0, long arg1, long arg2,
long arg3)
{
@@ -32,6 +34,9 @@ static inline long sh_bios_call(long func, long arg0, long arg1, long arg2,
register long r6 __asm__("r6") = arg2;
register long r7 __asm__("r7") = arg3;
+ if (!gdb_vbr_vector)
+ return -ENOSYS;
+
__asm__ __volatile__("trapa #0x3f":"=z"(r0)
:"0"(r0), "r"(r4), "r"(r5), "r"(r6), "r"(r7)
:"memory");
@@ -60,8 +65,6 @@ void sh_bios_shutdown(unsigned int how)
sh_bios_call(BIOS_CALL_SHUTDOWN, how, 0, 0, 0);
}
-void *gdb_vbr_vector = NULL;
-
/*
* Read the old value of the VBR register to initialise the vector
* through which debug and BIOS traps are delegated by the Linux trap
@@ -76,8 +79,12 @@ void sh_bios_vbr_init(void)
__asm__ __volatile__ ("stc vbr, %0" : "=r" (vbr));
- gdb_vbr_vector = (void *)(vbr + 0x100);
- printk(KERN_NOTICE "Setting GDB trap vector to %p\n", gdb_vbr_vector);
+ if (vbr) {
+ gdb_vbr_vector = (void *)(vbr + 0x100);
+ printk(KERN_NOTICE "Setting GDB trap vector to %p\n",
+ gdb_vbr_vector);
+ } else
+ printk(KERN_NOTICE "SH-BIOS not detected\n");
}
/**