sleep.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * acpi.c - Architecture-Specific Low-Level ACPI Support
  3. *
  4. * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
  5. * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
  6. * Copyright (C) 2001 Patrick Mochel <mochel@osdl.org>
  7. * Copyright (C) 2002 Andi Kleen, SuSE Labs (x86-64 port)
  8. * Copyright (C) 2003 Pavel Machek, SuSE Labs
  9. *
  10. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. *
  26. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. */
  28. #include <linux/kernel.h>
  29. #include <linux/init.h>
  30. #include <linux/types.h>
  31. #include <linux/stddef.h>
  32. #include <linux/slab.h>
  33. #include <linux/pci.h>
  34. #include <linux/bootmem.h>
  35. #include <linux/acpi.h>
  36. #include <linux/cpumask.h>
  37. #include <asm/mpspec.h>
  38. #include <asm/io.h>
  39. #include <asm/apic.h>
  40. #include <asm/apicdef.h>
  41. #include <asm/page.h>
  42. #include <asm/pgtable.h>
  43. #include <asm/pgalloc.h>
  44. #include <asm/io_apic.h>
  45. #include <asm/proto.h>
  46. #include <asm/tlbflush.h>
  47. /* --------------------------------------------------------------------------
  48. Low-Level Sleep Support
  49. -------------------------------------------------------------------------- */
  50. #ifdef CONFIG_ACPI_SLEEP
  51. /* address in low memory of the wakeup routine. */
  52. unsigned long acpi_wakeup_address = 0;
  53. unsigned long acpi_video_flags;
  54. extern char wakeup_start, wakeup_end;
  55. extern unsigned long acpi_copy_wakeup_routine(unsigned long);
  56. static pgd_t low_ptr;
  57. static void init_low_mapping(void)
  58. {
  59. pgd_t *slot0 = pgd_offset(current->mm, 0UL);
  60. low_ptr = *slot0;
  61. /* FIXME: We're playing with the current task's page tables here, which
  62. * is potentially dangerous on SMP systems.
  63. */
  64. set_pgd(slot0, *pgd_offset(current->mm, PAGE_OFFSET));
  65. local_flush_tlb();
  66. }
  67. /**
  68. * acpi_save_state_mem - save kernel state
  69. *
  70. * Create an identity mapped page table and copy the wakeup routine to
  71. * low memory.
  72. */
  73. int acpi_save_state_mem(void)
  74. {
  75. init_low_mapping();
  76. memcpy((void *)acpi_wakeup_address, &wakeup_start,
  77. &wakeup_end - &wakeup_start);
  78. acpi_copy_wakeup_routine(acpi_wakeup_address);
  79. return 0;
  80. }
  81. /*
  82. * acpi_restore_state
  83. */
  84. void acpi_restore_state_mem(void)
  85. {
  86. set_pgd(pgd_offset(current->mm, 0UL), low_ptr);
  87. local_flush_tlb();
  88. }
  89. /**
  90. * acpi_reserve_bootmem - do _very_ early ACPI initialisation
  91. *
  92. * We allocate a page in low memory for the wakeup
  93. * routine for when we come back from a sleep state. The
  94. * runtime allocator allows specification of <16M pages, but not
  95. * <1M pages.
  96. */
  97. void __init acpi_reserve_bootmem(void)
  98. {
  99. acpi_wakeup_address = (unsigned long)alloc_bootmem_low(PAGE_SIZE);
  100. if ((&wakeup_end - &wakeup_start) > PAGE_SIZE)
  101. printk(KERN_CRIT
  102. "ACPI: Wakeup code way too big, will crash on attempt to suspend\n");
  103. }
  104. static int __init acpi_sleep_setup(char *str)
  105. {
  106. while ((str != NULL) && (*str != '\0')) {
  107. if (strncmp(str, "s3_bios", 7) == 0)
  108. acpi_video_flags = 1;
  109. if (strncmp(str, "s3_mode", 7) == 0)
  110. acpi_video_flags |= 2;
  111. str = strchr(str, ',');
  112. if (str != NULL)
  113. str += strspn(str, ", \t");
  114. }
  115. return 1;
  116. }
  117. __setup("acpi_sleep=", acpi_sleep_setup);
  118. #endif /*CONFIG_ACPI_SLEEP */
  119. void acpi_pci_link_exit(void)
  120. {
  121. }