poweroff.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. void acpi_power_off(void)
  38. {
  39. /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
  40. printk("%s called\n", __FUNCTION__);
  41. local_irq_disable();
  42. /* Some SMP machines only can poweroff in boot CPU */
  43. acpi_enter_sleep_state(ACPI_STATE_S5);
  44. }
  45. static int acpi_shutdown(struct sys_device *x)
  46. {
  47. switch (system_state) {
  48. case SYSTEM_POWER_OFF:
  49. /* Prepare to power off the system */
  50. return acpi_sleep_prepare(ACPI_STATE_S5);
  51. case SYSTEM_SUSPEND_DISK:
  52. /* Prepare to suspend the system to disk */
  53. return acpi_sleep_prepare(ACPI_STATE_S4);
  54. default:
  55. return 0;
  56. }
  57. }
  58. static struct sysdev_class acpi_sysclass = {
  59. set_kset_name("acpi"),
  60. .shutdown = acpi_shutdown
  61. };
  62. static struct sys_device device_acpi = {
  63. .id = 0,
  64. .cls = &acpi_sysclass,
  65. };
  66. static int acpi_poweroff_init(void)
  67. {
  68. if (!acpi_disabled) {
  69. u8 type_a, type_b;
  70. acpi_status status;
  71. status =
  72. acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
  73. if (ACPI_SUCCESS(status)) {
  74. int error;
  75. error = sysdev_class_register(&acpi_sysclass);
  76. if (!error)
  77. error = sysdev_register(&device_acpi);
  78. if (!error)
  79. pm_power_off = acpi_power_off;
  80. return error;
  81. }
  82. }
  83. return 0;
  84. }
  85. late_initcall(acpi_poweroff_init);
  86. #endif /* CONFIG_PM */