poweroff.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.
  6. *
  7. * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
  8. *
  9. * This file is released under the GPLv2.
  10. */
  11. #include <linux/pm.h>
  12. #include <linux/init.h>
  13. #include <acpi/acpi_bus.h>
  14. #include <linux/sysdev.h>
  15. #include <asm/io.h>
  16. #include "sleep.h"
  17. int acpi_sleep_prepare(u32 acpi_state)
  18. {
  19. #ifdef CONFIG_ACPI_SLEEP
  20. /* do we have a wakeup address for S2 and S3? */
  21. if (acpi_state == ACPI_STATE_S3) {
  22. if (!acpi_wakeup_address) {
  23. return -EFAULT;
  24. }
  25. acpi_set_firmware_waking_vector((acpi_physical_address)
  26. virt_to_phys((void *)
  27. acpi_wakeup_address));
  28. }
  29. ACPI_FLUSH_CPU_CACHE();
  30. acpi_enable_wakeup_device_prep(acpi_state);
  31. #endif
  32. acpi_gpe_sleep_prepare(acpi_state);
  33. acpi_enter_sleep_state_prep(acpi_state);
  34. return 0;
  35. }
  36. #ifdef CONFIG_PM
  37. static void acpi_power_off_prepare(void)
  38. {
  39. /* Prepare to power off the system */
  40. acpi_sleep_prepare(ACPI_STATE_S5);
  41. }
  42. static void acpi_power_off(void)
  43. {
  44. /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
  45. printk("%s called\n", __FUNCTION__);
  46. local_irq_disable();
  47. /* Some SMP machines only can poweroff in boot CPU */
  48. acpi_enter_sleep_state(ACPI_STATE_S5);
  49. }
  50. static int acpi_poweroff_init(void)
  51. {
  52. if (!acpi_disabled) {
  53. u8 type_a, type_b;
  54. acpi_status status;
  55. status =
  56. acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
  57. if (ACPI_SUCCESS(status)) {
  58. pm_power_off_prepare = acpi_power_off_prepare;
  59. pm_power_off = acpi_power_off;
  60. }
  61. }
  62. return 0;
  63. }
  64. late_initcall(acpi_poweroff_init);
  65. #endif /* CONFIG_PM */