Loading...
1/*
2 * Just a place holder.
3 */
4
5#ifndef _SPARC_SETUP_H
6#define _SPARC_SETUP_H
7
8#if defined(__sparc__) && defined(__arch64__)
9# define COMMAND_LINE_SIZE 2048
10#else
11# define COMMAND_LINE_SIZE 256
12#endif
13
14#ifdef __KERNEL__
15
16#ifdef CONFIG_SPARC32
17/* The CPU that was used for booting
18 * Only sun4d + leon may have boot_cpu_id != 0
19 */
20extern unsigned char boot_cpu_id;
21extern unsigned char boot_cpu_id4;
22#endif
23
24#endif /* __KERNEL__ */
25
26#endif /* _SPARC_SETUP_H */
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 */