1/* 2 * Just a place holder. 3 */ 4#ifndef _SPARC_SETUP_H 5#define _SPARC_SETUP_H 6 7#include <uapi/asm/setup.h> 8 9 10extern char reboot_command[]; 11 12#ifdef CONFIG_SPARC32 13/* The CPU that was used for booting 14 * Only sun4d + leon may have boot_cpu_id != 0 15 */ 16extern unsigned char boot_cpu_id; 17 18extern unsigned long empty_zero_page; 19 20extern int serial_console; 21static inline int con_is_present(void) 22{ 23 return serial_console ? 0 : 1; 24} 25#endif 26 27extern void sun_do_break(void); 28extern int stop_a_enabled; 29extern int scons_pwroff; 30 31#endif /* _SPARC_SETUP_H */ 32