blob: d9801eff6489c1448e2e33c20650c21f0e399469 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * poweroff.c - ACPI handler for powering off the system.
3 *
4 * AKA S5, but it is independent of whether or not the kernel supports
5 * any other sleep support in the system.
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -05006 *
7 * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
8 *
9 * This file is released under the GPLv2.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/pm.h>
13#include <linux/init.h>
14#include <acpi/acpi_bus.h>
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050015#include <linux/sysdev.h>
16#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "sleep.h"
18
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050019int acpi_sleep_prepare(u32 acpi_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050021#ifdef CONFIG_ACPI_SLEEP
22 /* do we have a wakeup address for S2 and S3? */
Pavel Machekb01d8682005-09-10 00:27:19 -070023 if (acpi_state == ACPI_STATE_S3) {
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050024 if (!acpi_wakeup_address) {
25 return -EFAULT;
26 }
27 acpi_set_firmware_waking_vector((acpi_physical_address)
28 virt_to_phys((void *)
29 acpi_wakeup_address));
30
31 }
32 ACPI_FLUSH_CPU_CACHE();
33 acpi_enable_wakeup_device_prep(acpi_state);
34#endif
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -050035 acpi_gpe_sleep_prepare(acpi_state);
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050036 acpi_enter_sleep_state_prep(acpi_state);
37 return 0;
38}
39
Eric W. Biedermanb35c67a2005-07-26 12:17:52 -060040#ifdef CONFIG_PM
41
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050042void acpi_power_off(void)
43{
Eric W. Biedermanb35c67a2005-07-26 12:17:52 -060044 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050045 printk("%s called\n", __FUNCTION__);
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050046 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 /* Some SMP machines only can poweroff in boot CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 acpi_enter_sleep_state(ACPI_STATE_S5);
49}
50
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050051static int acpi_shutdown(struct sys_device *x)
52{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -050053 switch (system_state) {
54 case SYSTEM_POWER_OFF:
55 /* Prepare to power off the system */
Eric W. Biederman8dbddf12005-08-27 00:56:18 -060056 return acpi_sleep_prepare(ACPI_STATE_S5);
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -050057 case SYSTEM_SUSPEND_DISK:
58 /* Prepare to suspend the system to disk */
59 return acpi_sleep_prepare(ACPI_STATE_S4);
60 default:
61 return 0;
Eric W. Biederman8dbddf12005-08-27 00:56:18 -060062 }
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050063}
64
65static struct sysdev_class acpi_sysclass = {
66 set_kset_name("acpi"),
67 .shutdown = acpi_shutdown
68};
69
70static struct sys_device device_acpi = {
71 .id = 0,
72 .cls = &acpi_sysclass,
73};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int acpi_poweroff_init(void)
76{
77 if (!acpi_disabled) {
78 u8 type_a, type_b;
79 acpi_status status;
80
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050081 status =
82 acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
83 if (ACPI_SUCCESS(status)) {
Eric W. Biedermanb35c67a2005-07-26 12:17:52 -060084 int error;
85 error = sysdev_class_register(&acpi_sysclass);
86 if (!error)
87 error = sysdev_register(&device_acpi);
88 if (!error)
89 pm_power_off = acpi_power_off;
90 return error;
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -050091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93 return 0;
94}
95
96late_initcall(acpi_poweroff_init);
Eric W. Biedermanb35c67a2005-07-26 12:17:52 -060097
Len Brown4be44fc2005-08-05 00:44:28 -040098#endif /* CONFIG_PM */