Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 6 | * |
| 7 | * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> |
| 8 | * |
| 9 | * This file is released under the GPLv2. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/pm.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <acpi/acpi_bus.h> |
| 15 | #include <linux/sched.h> |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 16 | #include <linux/sysdev.h> |
| 17 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "sleep.h" |
| 19 | |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 20 | int acpi_sleep_prepare(u32 acpi_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | { |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 22 | #ifdef CONFIG_ACPI_SLEEP |
| 23 | /* do we have a wakeup address for S2 and S3? */ |
Pavel Machek | b01d868 | 2005-09-10 00:27:19 -0700 | [diff] [blame] | 24 | if (acpi_state == ACPI_STATE_S3) { |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 25 | if (!acpi_wakeup_address) { |
| 26 | return -EFAULT; |
| 27 | } |
| 28 | acpi_set_firmware_waking_vector((acpi_physical_address) |
| 29 | virt_to_phys((void *) |
| 30 | acpi_wakeup_address)); |
| 31 | |
| 32 | } |
| 33 | ACPI_FLUSH_CPU_CACHE(); |
| 34 | acpi_enable_wakeup_device_prep(acpi_state); |
| 35 | #endif |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 36 | acpi_gpe_sleep_prepare(acpi_state); |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 37 | acpi_enter_sleep_state_prep(acpi_state); |
| 38 | return 0; |
| 39 | } |
| 40 | |
Eric W. Biederman | b35c67a | 2005-07-26 12:17:52 -0600 | [diff] [blame] | 41 | #ifdef CONFIG_PM |
| 42 | |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 43 | void acpi_power_off(void) |
| 44 | { |
Eric W. Biederman | b35c67a | 2005-07-26 12:17:52 -0600 | [diff] [blame] | 45 | /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */ |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 46 | printk("%s called\n", __FUNCTION__); |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 47 | local_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* Some SMP machines only can poweroff in boot CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | acpi_enter_sleep_state(ACPI_STATE_S5); |
| 50 | } |
| 51 | |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 52 | static int acpi_shutdown(struct sys_device *x) |
| 53 | { |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 54 | switch (system_state) { |
| 55 | case SYSTEM_POWER_OFF: |
| 56 | /* Prepare to power off the system */ |
Eric W. Biederman | 8dbddf1 | 2005-08-27 00:56:18 -0600 | [diff] [blame] | 57 | return acpi_sleep_prepare(ACPI_STATE_S5); |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 58 | case SYSTEM_SUSPEND_DISK: |
| 59 | /* Prepare to suspend the system to disk */ |
| 60 | return acpi_sleep_prepare(ACPI_STATE_S4); |
| 61 | default: |
| 62 | return 0; |
Eric W. Biederman | 8dbddf1 | 2005-08-27 00:56:18 -0600 | [diff] [blame] | 63 | } |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static struct sysdev_class acpi_sysclass = { |
| 67 | set_kset_name("acpi"), |
| 68 | .shutdown = acpi_shutdown |
| 69 | }; |
| 70 | |
| 71 | static struct sys_device device_acpi = { |
| 72 | .id = 0, |
| 73 | .cls = &acpi_sysclass, |
| 74 | }; |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | static int acpi_poweroff_init(void) |
| 77 | { |
| 78 | if (!acpi_disabled) { |
| 79 | u8 type_a, type_b; |
| 80 | acpi_status status; |
| 81 | |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 82 | status = |
| 83 | acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b); |
| 84 | if (ACPI_SUCCESS(status)) { |
Eric W. Biederman | b35c67a | 2005-07-26 12:17:52 -0600 | [diff] [blame] | 85 | int error; |
| 86 | error = sysdev_class_register(&acpi_sysclass); |
| 87 | if (!error) |
| 88 | error = sysdev_register(&device_acpi); |
| 89 | if (!error) |
| 90 | pm_power_off = acpi_power_off; |
| 91 | return error; |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 92 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | late_initcall(acpi_poweroff_init); |
Eric W. Biederman | b35c67a | 2005-07-26 12:17:52 -0600 | [diff] [blame] | 98 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 99 | #endif /* CONFIG_PM */ |