poweroff.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. default:
  52. return 0;
  53. }
  54. }
  55. static struct sysdev_class acpi_sysclass = {
  56. set_kset_name("acpi"),
  57. .shutdown = acpi_shutdown
  58. };
  59. static struct sys_device device_acpi = {
  60. .id = 0,
  61. .cls = &acpi_sysclass,
  62. };
  63. static int acpi_poweroff_init(void)
  64. {
  65. if (!acpi_disabled) {
  66. u8 type_a, type_b;
  67. acpi_status status;
  68. status =
  69. acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
  70. if (ACPI_SUCCESS(status)) {
  71. int error;
  72. error = sysdev_class_register(&acpi_sysclass);
  73. if (!error)
  74. error = sysdev_register(&device_acpi);
  75. if (!error)
  76. pm_power_off = acpi_power_off;
  77. return error;
  78. }
  79. }
  80. return 0;
  81. }
  82. late_initcall(acpi_poweroff_init);
  83. #endif /* CONFIG_PM */