ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / i386 / mach-visws / reboot.c
1 #include <linux/module.h>
2 #include <linux/smp.h>
3 #include <linux/delay.h>
4 #include <linux/platform.h>
5
6 #include <asm/io.h>
7 #include "piix4.h"
8
9 void (*pm_power_off)(void);
10
11 int reboot_thru_bios;
12 int reboot_smp;
13
14 void machine_restart(char * __unused)
15 {
16 #ifdef CONFIG_SMP
17         smp_send_stop();
18 #endif
19
20         /*
21          * Visual Workstations restart after this
22          * register is poked on the PIIX4
23          */
24         outb(PIIX4_RESET_VAL, PIIX4_RESET_PORT);
25 }
26
27 EXPORT_SYMBOL(machine_restart);
28
29 void machine_power_off(void)
30 {
31         unsigned short pm_status;
32         extern unsigned int pci_bus0;
33
34         while ((pm_status = inw(PMSTS_PORT)) & 0x100)
35                 outw(pm_status, PMSTS_PORT);
36
37         outw(PM_SUSPEND_ENABLE, PMCNTRL_PORT);
38
39         mdelay(10);
40
41 #define PCI_CONF1_ADDRESS(bus, devfn, reg) \
42         (0x80000000 | (bus << 16) | (devfn << 8) | (reg & ~3))
43
44         outl(PCI_CONF1_ADDRESS(pci_bus0, SPECIAL_DEV, SPECIAL_REG), 0xCF8);
45         outl(PIIX_SPECIAL_STOP, 0xCFC);
46 }
47
48 EXPORT_SYMBOL(machine_power_off);
49
50 void machine_halt(void)
51 {
52 }
53
54 EXPORT_SYMBOL(machine_halt);