poweroff.c 2.3 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/sched.h>
  15. #include <linux/sysdev.h>
  16. #include <asm/io.h>
  17. #include "sleep.h"
  18. int acpi_sleep_prepare(u32 acpi_state)
  19. {
  20. #ifdef CONFIG_ACPI_SLEEP
  21. /* do we have a wakeup address for S2 and S3? */
  22. /* Here, we support only S4BIOS, those we set the wakeup address */
  23. /* S4OS is only supported for now via swsusp.. */
  24. if (acpi_state == ACPI_STATE_S3 || acpi_state == ACPI_STATE_S4) {
  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. ACPI_FLUSH_CPU_CACHE();
  33. acpi_enable_wakeup_device_prep(acpi_state);
  34. #endif
  35. if (acpi_state == ACPI_STATE_S5) {
  36. acpi_wakeup_gpe_poweroff_prepare();
  37. }
  38. acpi_enter_sleep_state_prep(acpi_state);
  39. return 0;
  40. }
  41. #ifdef CONFIG_PM
  42. 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_shutdown(struct sys_device *x)
  51. {
  52. if (system_state == SYSTEM_POWER_OFF) {
  53. /* Prepare if we are going to power off the system */
  54. return acpi_sleep_prepare(ACPI_STATE_S5);
  55. }
  56. return 0;
  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 */