aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2008-12-16 21:47:59 -0500
committerPaul Mundt <lethal@linux-sh.org>2008-12-22 04:44:44 -0500
commitca0c14e447a399eb90a1c9a4357560c2a29ef499 (patch)
tree4e918da94433fb708e87791cdd42186c323d094b /arch/sh
parenta9df1ed92fc46cb7c9a9c6b74dbd8bbdc41f69ce (diff)
sh: Kill off sh_bios_in_gdb_mode().
With the reworked kgdb support, we always detach and reinitialize the stub. This was mostly a feature for handoffs between sh-ipl+g and the kgdb stub, but virtually no sh-ipl+g versions ever had this working right in the first place. Given that the sh-ipl+g stubs in general use today don't even support the GDB stub, and we have already killed off the special casing in the sh-sci serial driver, kill off this now unused symbol too. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r--arch/sh/include/asm/sh_bios.h1
-rw-r--r--arch/sh/kernel/sh_bios.c17
2 files changed, 0 insertions, 18 deletions
diff --git a/arch/sh/include/asm/sh_bios.h b/arch/sh/include/asm/sh_bios.h
index 0ca261956e3d..d9c96d7cf6c7 100644
--- a/arch/sh/include/asm/sh_bios.h
+++ b/arch/sh/include/asm/sh_bios.h
@@ -10,7 +10,6 @@
10 10
11extern void sh_bios_console_write(const char *buf, unsigned int len); 11extern void sh_bios_console_write(const char *buf, unsigned int len);
12extern void sh_bios_char_out(char ch); 12extern void sh_bios_char_out(char ch);
13extern int sh_bios_in_gdb_mode(void);
14extern void sh_bios_gdb_detach(void); 13extern void sh_bios_gdb_detach(void);
15 14
16extern void sh_bios_get_node_addr(unsigned char *node_addr); 15extern void sh_bios_get_node_addr(unsigned char *node_addr);
diff --git a/arch/sh/kernel/sh_bios.c b/arch/sh/kernel/sh_bios.c
index ae64e6df2957..c852f7805728 100644
--- a/arch/sh/kernel/sh_bios.c
+++ b/arch/sh/kernel/sh_bios.c
@@ -9,11 +9,9 @@
9#include <asm/sh_bios.h> 9#include <asm/sh_bios.h>
10 10
11#define BIOS_CALL_CONSOLE_WRITE 0 11#define BIOS_CALL_CONSOLE_WRITE 0
12#define BIOS_CALL_READ_BLOCK 1
13#define BIOS_CALL_ETH_NODE_ADDR 10 12#define BIOS_CALL_ETH_NODE_ADDR 10
14#define BIOS_CALL_SHUTDOWN 11 13#define BIOS_CALL_SHUTDOWN 11
15#define BIOS_CALL_CHAR_OUT 0x1f /* TODO: hack */ 14#define BIOS_CALL_CHAR_OUT 0x1f /* TODO: hack */
16#define BIOS_CALL_GDB_GET_MODE_PTR 0xfe
17#define BIOS_CALL_GDB_DETACH 0xff 15#define BIOS_CALL_GDB_DETACH 0xff
18 16
19static inline long sh_bios_call(long func, long arg0, long arg1, long arg2, 17static inline long sh_bios_call(long func, long arg0, long arg1, long arg2,
@@ -41,21 +39,6 @@ void sh_bios_char_out(char ch)
41 sh_bios_call(BIOS_CALL_CHAR_OUT, ch, 0, 0, 0); 39 sh_bios_call(BIOS_CALL_CHAR_OUT, ch, 0, 0, 0);
42} 40}
43 41
44int sh_bios_in_gdb_mode(void)
45{
46 static char queried = 0;
47 static char *gdb_mode_p = 0;
48
49 if (!queried) {
50 /* Query the gdb stub for address of its gdb mode variable */
51 long r = sh_bios_call(BIOS_CALL_GDB_GET_MODE_PTR, 0, 0, 0, 0);
52 if (r != ~0) /* BIOS returns -1 for unknown function */
53 gdb_mode_p = (char *)r;
54 queried = 1;
55 }
56 return (gdb_mode_p != 0 ? *gdb_mode_p : 0);
57}
58
59void sh_bios_gdb_detach(void) 42void sh_bios_gdb_detach(void)
60{ 43{
61 sh_bios_call(BIOS_CALL_GDB_DETACH, 0, 0, 0, 0); 44 sh_bios_call(BIOS_CALL_GDB_DETACH, 0, 0, 0, 0);