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 <asm/kdebug.h>
11 #include <asm/delay.h>
12 #include <asm/hw_irq.h>
13 #include <asm/system.h>
14 #include <asm/pgtable.h>
15 #include <asm/tlbflush.h>
19 * Power off function, if any
21 void (*pm_power_off)(void);
23 static long no_idt[3];
27 } reboot_type = BOOT_KBD;
28 static int reboot_mode = 0;
31 /* reboot=t[riple] | k[bd] [, [w]arm | [c]old]
32 warm Don't set the cold reboot flag
33 cold Set the cold reboot flag
34 triple Force a triple fault (init)
35 kbd Use the keyboard controller. cold reset (default)
36 force Avoid anything that could hang.
38 static int __init reboot_setup(char *str)
59 if((str = strchr(str,',')) != NULL)
67 __setup("reboot=", reboot_setup);
69 static inline void kb_wait(void)
73 for (i=0; i<0x10000; i++)
74 if ((inb_p(0x64) & 0x02) == 0)
78 void machine_shutdown(void)
80 /* Stop the cpus and apics */
84 /* The boot cpu is always logical cpu 0 */
87 /* Make certain the cpu I'm about to reboot on is online */
88 if (!cpu_isset(reboot_cpu_id, cpu_online_map)) {
89 reboot_cpu_id = smp_processor_id();
92 /* Make certain I only run on the appropriate processor */
93 set_cpus_allowed(current, cpumask_of_cpu(reboot_cpu_id));
95 /* O.K Now that I'm on the appropriate processor,
96 * stop all of the others.
104 disable_local_APIC();
112 void machine_restart(char * __unused)
116 printk("machine restart\n");
123 disable_local_APIC();
129 /* Tell the BIOS if we want cold or warm reboot */
130 *((unsigned short *)__va(0x472)) = reboot_mode;
133 /* Could also try the reset bit in the Hammer NB */
134 switch (reboot_type) {
136 for (i=0; i<100; i++) {
139 outb(0xfe,0x64); /* pulse reset low */
144 __asm__ __volatile__("lidt (%0)": :"r" (&no_idt));
145 __asm__ __volatile__("int3");
147 reboot_type = BOOT_KBD;
153 EXPORT_SYMBOL(machine_restart);
155 void machine_halt(void)
159 EXPORT_SYMBOL(machine_halt);
161 void machine_power_off(void)
167 EXPORT_SYMBOL(machine_power_off);