blob: 99332abfad42a7f5e656b653adeefae1f85ba8ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
2#include <linux/smp.h>
3#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <asm/io.h>
6#include "piix4.h"
7
8void (*pm_power_off)(void);
Alexey Dobriyan35e422c2005-07-15 03:56:32 -07009EXPORT_SYMBOL(pm_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Eric W. Biederman36cf4462005-08-06 13:45:10 -060011void machine_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012{
13#ifdef CONFIG_SMP
14 smp_send_stop();
15#endif
Eric W. Biederman36cf4462005-08-06 13:45:10 -060016}
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Eric W. Biederman36cf4462005-08-06 13:45:10 -060018void machine_emergency_restart(void)
19{
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 /*
21 * Visual Workstations restart after this
22 * register is poked on the PIIX4
23 */
24 outb(PIIX4_RESET_VAL, PIIX4_RESET_PORT);
25}
26
Eric W. Biederman36cf4462005-08-06 13:45:10 -060027void machine_restart(char * __unused)
28{
29 machine_shutdown();
30 machine_emergency_restart();
31}
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033void machine_power_off(void)
34{
35 unsigned short pm_status;
36 extern unsigned int pci_bus0;
37
38 while ((pm_status = inw(PMSTS_PORT)) & 0x100)
39 outw(pm_status, PMSTS_PORT);
40
41 outw(PM_SUSPEND_ENABLE, PMCNTRL_PORT);
42
43 mdelay(10);
44
45#define PCI_CONF1_ADDRESS(bus, devfn, reg) \
46 (0x80000000 | (bus << 16) | (devfn << 8) | (reg & ~3))
47
48 outl(PCI_CONF1_ADDRESS(pci_bus0, SPECIAL_DEV, SPECIAL_REG), 0xCF8);
49 outl(PIIX_SPECIAL_STOP, 0xCFC);
50}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052void machine_halt(void)
53{
54}
55