1f15cbe6fSPaul Mundt #ifndef __ASM_SH_BIOS_H 2f15cbe6fSPaul Mundt #define __ASM_SH_BIOS_H 3f15cbe6fSPaul Mundt 4f15cbe6fSPaul Mundt /* 5f15cbe6fSPaul Mundt * Copyright (C) 2000 Greg Banks, Mitch Davis 6f15cbe6fSPaul Mundt * C API to interface to the standard LinuxSH BIOS 7f15cbe6fSPaul Mundt * usually from within the early stages of kernel boot. 8f15cbe6fSPaul Mundt */ 9f15cbe6fSPaul Mundt 10f15cbe6fSPaul Mundt 11f15cbe6fSPaul Mundt extern void sh_bios_console_write(const char *buf, unsigned int len); 12f15cbe6fSPaul Mundt extern void sh_bios_char_out(char ch); 13f15cbe6fSPaul Mundt extern int sh_bios_in_gdb_mode(void); 14f15cbe6fSPaul Mundt extern void sh_bios_gdb_detach(void); 15f15cbe6fSPaul Mundt 16f15cbe6fSPaul Mundt extern void sh_bios_get_node_addr(unsigned char *node_addr); 17f15cbe6fSPaul Mundt extern void sh_bios_shutdown(unsigned int how); 18f15cbe6fSPaul Mundt 19f15cbe6fSPaul Mundt #endif /* __ASM_SH_BIOS_H */ 20