blob: d6bdf93ffca996a3e079c958e217d713a38c6e19 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Various gunk just to reboot the machine. */
2#include <linux/module.h>
3#include <linux/reboot.h>
4#include <linux/init.h>
5#include <linux/smp.h>
6#include <linux/kernel.h>
7#include <linux/ctype.h>
8#include <linux/string.h>
Eric W. Biederman6e3fbee2006-01-11 22:43:12 +01009#include <linux/pm.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070010#include <linux/kdebug.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040011#include <linux/sched.h>
Huang, Yingde18c852008-01-30 13:31:19 +010012#include <linux/efi.h>
Aaron Durbinfa20efd2008-01-30 13:31:17 +010013#include <acpi/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/delay.h>
Glauber de Oliveira Costa9d1c6e72007-10-19 20:35:03 +020016#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/hw_irq.h>
18#include <asm/system.h>
19#include <asm/pgtable.h>
20#include <asm/tlbflush.h>
21#include <asm/apic.h>
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +010022#include <asm/hpet.h>
Joerg Roedel395624f2007-10-24 12:49:47 +020023#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * Power off function, if any
27 */
28void (*pm_power_off)(void);
Andi Kleen2ee60e172006-06-26 13:59:44 +020029EXPORT_SYMBOL(pm_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static long no_idt[3];
Huang, Yingde18c852008-01-30 13:31:19 +010032enum reboot_type reboot_type = BOOT_KBD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static int reboot_mode = 0;
34int reboot_force;
35
Huang, Yingde18c852008-01-30 13:31:19 +010036/* reboot=t[riple] | k[bd] | e[fi] [, [w]arm | [c]old]
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 warm Don't set the cold reboot flag
38 cold Set the cold reboot flag
39 triple Force a triple fault (init)
40 kbd Use the keyboard controller. cold reset (default)
Aaron Durbinfa20efd2008-01-30 13:31:17 +010041 acpi Use the RESET_REG in the FADT
Huang, Yingde18c852008-01-30 13:31:19 +010042 efi Use efi reset_system runtime service
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 force Avoid anything that could hang.
44 */
45static int __init reboot_setup(char *str)
46{
47 for (;;) {
48 switch (*str) {
49 case 'w':
50 reboot_mode = 0x1234;
51 break;
52
53 case 'c':
54 reboot_mode = 0;
55 break;
56
57 case 't':
Aaron Durbinfa20efd2008-01-30 13:31:17 +010058 case 'a':
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 case 'b':
60 case 'k':
Huang, Yingde18c852008-01-30 13:31:19 +010061 case 'e':
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 reboot_type = *str;
63 break;
64 case 'f':
65 reboot_force = 1;
66 break;
67 }
68 if((str = strchr(str,',')) != NULL)
69 str++;
70 else
71 break;
72 }
73 return 1;
74}
75
76__setup("reboot=", reboot_setup);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static inline void kb_wait(void)
79{
80 int i;
81
82 for (i=0; i<0x10000; i++)
83 if ((inb_p(0x64) & 0x02) == 0)
84 break;
85}
86
Eric W. Biedermand8955952005-06-25 14:58:02 -070087void machine_shutdown(void)
88{
Andi Kleen35062292005-11-05 17:25:54 +010089 unsigned long flags;
Yinghai Lubc2cea62007-07-21 17:11:28 +020090
Eric W. Biedermand8955952005-06-25 14:58:02 -070091 /* Stop the cpus and apics */
92#ifdef CONFIG_SMP
93 int reboot_cpu_id;
94
95 /* The boot cpu is always logical cpu 0 */
96 reboot_cpu_id = 0;
97
98 /* Make certain the cpu I'm about to reboot on is online */
99 if (!cpu_isset(reboot_cpu_id, cpu_online_map)) {
100 reboot_cpu_id = smp_processor_id();
101 }
102
103 /* Make certain I only run on the appropriate processor */
104 set_cpus_allowed(current, cpumask_of_cpu(reboot_cpu_id));
105
106 /* O.K Now that I'm on the appropriate processor,
107 * stop all of the others.
108 */
109 smp_send_stop();
110#endif
111
Andi Kleen35062292005-11-05 17:25:54 +0100112 local_irq_save(flags);
Eric W. Biedermand8955952005-06-25 14:58:02 -0700113
114#ifndef CONFIG_SMP
115 disable_local_APIC();
116#endif
117
118 disable_IO_APIC();
119
OGAWA Hirofumic86c7fb2007-12-03 17:17:10 +0100120#ifdef CONFIG_HPET_TIMER
121 hpet_disable();
122#endif
Andi Kleen35062292005-11-05 17:25:54 +0100123 local_irq_restore(flags);
Yinghai Lubc2cea62007-07-21 17:11:28 +0200124
125 pci_iommu_shutdown();
Eric W. Biedermand8955952005-06-25 14:58:02 -0700126}
127
Eric W. Biederman62b3a042005-07-26 11:45:31 -0600128void machine_emergency_restart(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 int i;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* Tell the BIOS if we want cold or warm reboot */
133 *((unsigned short *)__va(0x472)) = reboot_mode;
134
135 for (;;) {
136 /* Could also try the reset bit in the Hammer NB */
137 switch (reboot_type) {
138 case BOOT_KBD:
Andi Kleena6f5deb2005-11-05 17:25:54 +0100139 for (i=0; i<10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 kb_wait();
141 udelay(50);
142 outb(0xfe,0x64); /* pulse reset low */
143 udelay(50);
144 }
145
146 case BOOT_TRIPLE:
Glauber de Oliveira Costa9d1c6e72007-10-19 20:35:03 +0200147 load_idt((const struct desc_ptr *)&no_idt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 __asm__ __volatile__("int3");
149
150 reboot_type = BOOT_KBD;
151 break;
Aaron Durbinfa20efd2008-01-30 13:31:17 +0100152
153 case BOOT_ACPI:
154 acpi_reboot();
155 reboot_type = BOOT_KBD;
156 break;
Huang, Yingde18c852008-01-30 13:31:19 +0100157
158 case BOOT_EFI:
159 if (efi_enabled)
160 efi.reset_system(reboot_mode ? EFI_RESET_WARM : EFI_RESET_COLD,
161 EFI_SUCCESS, 0, NULL);
162 reboot_type = BOOT_KBD;
163 break;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166}
167
Eric W. Biederman62b3a042005-07-26 11:45:31 -0600168void machine_restart(char * __unused)
169{
170 printk("machine restart\n");
171
172 if (!reboot_force) {
173 machine_shutdown();
174 }
175 machine_emergency_restart();
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178void machine_halt(void)
179{
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182void machine_power_off(void)
183{
Eric W. Biederman6e3fbee2006-01-11 22:43:12 +0100184 if (pm_power_off) {
185 if (!reboot_force) {
186 machine_shutdown();
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 pm_power_off();
Eric W. Biederman6e3fbee2006-01-11 22:43:12 +0100189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191