1 // SPDX-License-Identifier: GPL-2.0
3 * C interface for trapping into the standard LinuxSH BIOS.
5 * Copyright (C) 2000 Greg Banks, Mitch Davis
6 * Copyright (C) 1999, 2000 Niibe Yutaka
7 * Copyright (C) 2002 M. R. Brown
8 * Copyright (C) 2004 - 2010 Paul Mundt
10 #include <linux/module.h>
11 #include <linux/console.h>
12 #include <linux/tty.h>
13 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <asm/sh_bios.h>
18 #define BIOS_CALL_CONSOLE_WRITE 0
19 #define BIOS_CALL_ETH_NODE_ADDR 10
20 #define BIOS_CALL_SHUTDOWN 11
21 #define BIOS_CALL_GDB_DETACH 0xff
23 void *gdb_vbr_vector
= NULL
;
25 static inline long sh_bios_call(long func
, long arg0
, long arg1
, long arg2
,
28 register long r0
__asm__("r0") = func
;
29 register long r4
__asm__("r4") = arg0
;
30 register long r5
__asm__("r5") = arg1
;
31 register long r6
__asm__("r6") = arg2
;
32 register long r7
__asm__("r7") = arg3
;
37 __asm__
__volatile__("trapa #0x3f":"=z"(r0
)
38 :"0"(r0
), "r"(r4
), "r"(r5
), "r"(r6
), "r"(r7
)
43 void sh_bios_console_write(const char *buf
, unsigned int len
)
45 sh_bios_call(BIOS_CALL_CONSOLE_WRITE
, (long)buf
, (long)len
, 0, 0);
48 void sh_bios_gdb_detach(void)
50 sh_bios_call(BIOS_CALL_GDB_DETACH
, 0, 0, 0, 0);
52 EXPORT_SYMBOL_GPL(sh_bios_gdb_detach
);
54 void sh_bios_get_node_addr(unsigned char *node_addr
)
56 sh_bios_call(BIOS_CALL_ETH_NODE_ADDR
, 0, (long)node_addr
, 0, 0);
58 EXPORT_SYMBOL_GPL(sh_bios_get_node_addr
);
60 void sh_bios_shutdown(unsigned int how
)
62 sh_bios_call(BIOS_CALL_SHUTDOWN
, how
, 0, 0, 0);
66 * Read the old value of the VBR register to initialise the vector
67 * through which debug and BIOS traps are delegated by the Linux trap
70 void sh_bios_vbr_init(void)
74 if (unlikely(gdb_vbr_vector
))
77 __asm__
__volatile__ ("stc vbr, %0" : "=r" (vbr
));
80 gdb_vbr_vector
= (void *)(vbr
+ 0x100);
81 printk(KERN_NOTICE
"Setting GDB trap vector to %p\n",
84 printk(KERN_NOTICE
"SH-BIOS not detected\n");
88 * sh_bios_vbr_reload - Re-load the system VBR from the BIOS vector.
90 * This can be used by save/restore code to reinitialize the system VBR
91 * from the fixed BIOS VBR. A no-op if no BIOS VBR is known.
93 void sh_bios_vbr_reload(void)
96 __asm__
__volatile__ (
99 : "r" (((unsigned long) gdb_vbr_vector
) - 0x100)
104 #ifdef CONFIG_EARLY_PRINTK
106 * Print a string through the BIOS
108 static void sh_console_write(struct console
*co
, const char *s
,
111 sh_bios_console_write(s
, count
);
115 * Setup initial baud/bits/parity. We do two things here:
116 * - construct a cflag setting for the first rs_open()
117 * - initialize the serial port
118 * Return non-zero if we didn't find a serial port.
120 static int __init
sh_console_setup(struct console
*co
, char *options
)
122 int cflag
= CREAD
| HUPCL
| CLOCAL
;
125 * Now construct a cflag setting.
126 * TODO: this is a totally bogus cflag, as we have
127 * no idea what serial settings the BIOS is using, or
128 * even if its using the serial port at all.
130 cflag
|= B115200
| CS8
| /*no parity*/0;
137 static struct console bios_console
= {
139 .write
= sh_console_write
,
140 .setup
= sh_console_setup
,
141 .flags
= CON_PRINTBUFFER
,
145 static int __init
setup_early_printk(char *buf
)
152 if (strstr(buf
, "keep"))
155 if (!strncmp(buf
, "bios", 4))
156 early_console
= &bios_console
;
158 if (likely(early_console
)) {
160 early_console
->flags
&= ~CON_BOOT
;
162 early_console
->flags
|= CON_BOOT
;
163 register_console(early_console
);
168 early_param("earlyprintk", setup_early_printk
);