1 /* Various gunk just to reboot the machine. */
2 #include <linux/module.h>
3 #include <linux/reboot.h>
4 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/ctype.h>
8 #include <linux/string.h>
10 #include <linux/kdebug.h>
11 #include <linux/sched.h>
13 #include <asm/delay.h>
14 #include <asm/hw_irq.h>
15 #include <asm/system.h>
16 #include <asm/pgtable.h>
17 #include <asm/tlbflush.h>
21 * Power off function, if any
23 void (*pm_power_off
)(void);
24 EXPORT_SYMBOL(pm_power_off
);
26 static long no_idt
[3];
30 } reboot_type
= BOOT_KBD
;
31 static int reboot_mode
= 0;
34 /* reboot=t[riple] | k[bd] [, [w]arm | [c]old]
35 warm Don't set the cold reboot flag
36 cold Set the cold reboot flag
37 triple Force a triple fault (init)
38 kbd Use the keyboard controller. cold reset (default)
39 force Avoid anything that could hang.
41 static int __init
reboot_setup(char *str
)
62 if((str
= strchr(str
,',')) != NULL
)
70 __setup("reboot=", reboot_setup
);
72 static inline void kb_wait(void)
76 for (i
=0; i
<0x10000; i
++)
77 if ((inb_p(0x64) & 0x02) == 0)
81 void machine_shutdown(void)
84 /* Stop the cpus and apics */
88 /* The boot cpu is always logical cpu 0 */
91 /* Make certain the cpu I'm about to reboot on is online */
92 if (!cpu_isset(reboot_cpu_id
, cpu_online_map
)) {
93 reboot_cpu_id
= smp_processor_id();
96 /* Make certain I only run on the appropriate processor */
97 set_cpus_allowed(current
, cpumask_of_cpu(reboot_cpu_id
));
99 /* O.K Now that I'm on the appropriate processor,
100 * stop all of the others.
105 local_irq_save(flags
);
108 disable_local_APIC();
113 local_irq_restore(flags
);
116 void machine_emergency_restart(void)
120 /* Tell the BIOS if we want cold or warm reboot */
121 *((unsigned short *)__va(0x472)) = reboot_mode
;
124 /* Could also try the reset bit in the Hammer NB */
125 switch (reboot_type
) {
127 for (i
=0; i
<10; i
++) {
130 outb(0xfe,0x64); /* pulse reset low */
135 __asm__
__volatile__("lidt (%0)": :"r" (&no_idt
));
136 __asm__
__volatile__("int3");
138 reboot_type
= BOOT_KBD
;
144 void machine_restart(char * __unused
)
146 printk("machine restart\n");
151 machine_emergency_restart();
154 void machine_halt(void)
158 void machine_power_off(void)