hwxfsleep.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. /******************************************************************************
  2. *
  3. * Name: hwxfsleep.c - ACPI Hardware Sleep/Wake External Interfaces
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2012, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #include <acpi/acpi.h>
  43. #include "accommon.h"
  44. #include <linux/module.h>
  45. #define _COMPONENT ACPI_HARDWARE
  46. ACPI_MODULE_NAME("hwxfsleep")
  47. /* Local prototypes */
  48. static acpi_status acpi_hw_sleep_dispatch(u8 sleep_state, u32 function_id);
  49. /*
  50. * Dispatch table used to efficiently branch to the various sleep
  51. * functions.
  52. */
  53. #define ACPI_SLEEP_FUNCTION_ID 0
  54. #define ACPI_WAKE_PREP_FUNCTION_ID 1
  55. #define ACPI_WAKE_FUNCTION_ID 2
  56. /* Legacy functions are optional, based upon ACPI_REDUCED_HARDWARE */
  57. static struct acpi_sleep_functions acpi_sleep_dispatch[] = {
  58. {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_sleep),
  59. acpi_hw_extended_sleep},
  60. {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake_prep),
  61. acpi_hw_extended_wake_prep},
  62. {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake), acpi_hw_extended_wake}
  63. };
  64. /*
  65. * These functions are removed for the ACPI_REDUCED_HARDWARE case:
  66. * acpi_set_firmware_waking_vector
  67. * acpi_set_firmware_waking_vector64
  68. * acpi_enter_sleep_state_s4bios
  69. */
  70. #if (!ACPI_REDUCED_HARDWARE)
  71. /*******************************************************************************
  72. *
  73. * FUNCTION: acpi_set_firmware_waking_vector
  74. *
  75. * PARAMETERS: physical_address - 32-bit physical address of ACPI real mode
  76. * entry point.
  77. *
  78. * RETURN: Status
  79. *
  80. * DESCRIPTION: Sets the 32-bit firmware_waking_vector field of the FACS
  81. *
  82. ******************************************************************************/
  83. acpi_status acpi_set_firmware_waking_vector(u32 physical_address)
  84. {
  85. ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector);
  86. /*
  87. * According to the ACPI specification 2.0c and later, the 64-bit
  88. * waking vector should be cleared and the 32-bit waking vector should
  89. * be used, unless we want the wake-up code to be called by the BIOS in
  90. * Protected Mode. Some systems (for example HP dv5-1004nr) are known
  91. * to fail to resume if the 64-bit vector is used.
  92. */
  93. /* Set the 32-bit vector */
  94. acpi_gbl_FACS->firmware_waking_vector = physical_address;
  95. /* Clear the 64-bit vector if it exists */
  96. if ((acpi_gbl_FACS->length > 32) && (acpi_gbl_FACS->version >= 1)) {
  97. acpi_gbl_FACS->xfirmware_waking_vector = 0;
  98. }
  99. return_ACPI_STATUS(AE_OK);
  100. }
  101. ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector)
  102. #if ACPI_MACHINE_WIDTH == 64
  103. /*******************************************************************************
  104. *
  105. * FUNCTION: acpi_set_firmware_waking_vector64
  106. *
  107. * PARAMETERS: physical_address - 64-bit physical address of ACPI protected
  108. * mode entry point.
  109. *
  110. * RETURN: Status
  111. *
  112. * DESCRIPTION: Sets the 64-bit X_firmware_waking_vector field of the FACS, if
  113. * it exists in the table. This function is intended for use with
  114. * 64-bit host operating systems.
  115. *
  116. ******************************************************************************/
  117. acpi_status acpi_set_firmware_waking_vector64(u64 physical_address)
  118. {
  119. ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector64);
  120. /* Determine if the 64-bit vector actually exists */
  121. if ((acpi_gbl_FACS->length <= 32) || (acpi_gbl_FACS->version < 1)) {
  122. return_ACPI_STATUS(AE_NOT_EXIST);
  123. }
  124. /* Clear 32-bit vector, set the 64-bit X_ vector */
  125. acpi_gbl_FACS->firmware_waking_vector = 0;
  126. acpi_gbl_FACS->xfirmware_waking_vector = physical_address;
  127. return_ACPI_STATUS(AE_OK);
  128. }
  129. ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector64)
  130. #endif
  131. /*******************************************************************************
  132. *
  133. * FUNCTION: acpi_enter_sleep_state_s4bios
  134. *
  135. * PARAMETERS: None
  136. *
  137. * RETURN: Status
  138. *
  139. * DESCRIPTION: Perform a S4 bios request.
  140. * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
  141. *
  142. ******************************************************************************/
  143. acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void)
  144. {
  145. u32 in_value;
  146. acpi_status status;
  147. ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_s4bios);
  148. /* Clear the wake status bit (PM1) */
  149. status =
  150. acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, ACPI_CLEAR_STATUS);
  151. if (ACPI_FAILURE(status)) {
  152. return_ACPI_STATUS(status);
  153. }
  154. status = acpi_hw_clear_acpi_status();
  155. if (ACPI_FAILURE(status)) {
  156. return_ACPI_STATUS(status);
  157. }
  158. /*
  159. * 1) Disable/Clear all GPEs
  160. * 2) Enable all wakeup GPEs
  161. */
  162. status = acpi_hw_disable_all_gpes();
  163. if (ACPI_FAILURE(status)) {
  164. return_ACPI_STATUS(status);
  165. }
  166. acpi_gbl_system_awake_and_running = FALSE;
  167. status = acpi_hw_enable_all_wakeup_gpes();
  168. if (ACPI_FAILURE(status)) {
  169. return_ACPI_STATUS(status);
  170. }
  171. ACPI_FLUSH_CPU_CACHE();
  172. status = acpi_hw_write_port(acpi_gbl_FADT.smi_command,
  173. (u32)acpi_gbl_FADT.s4_bios_request, 8);
  174. do {
  175. acpi_os_stall(1000);
  176. status =
  177. acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value);
  178. if (ACPI_FAILURE(status)) {
  179. return_ACPI_STATUS(status);
  180. }
  181. } while (!in_value);
  182. return_ACPI_STATUS(AE_OK);
  183. }
  184. ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_s4bios)
  185. #endif /* !ACPI_REDUCED_HARDWARE */
  186. /*******************************************************************************
  187. *
  188. * FUNCTION: acpi_hw_sleep_dispatch
  189. *
  190. * PARAMETERS: sleep_state - Which sleep state to enter/exit
  191. * function_id - Sleep, wake_prep, or Wake
  192. *
  193. * RETURN: Status from the invoked sleep handling function.
  194. *
  195. * DESCRIPTION: Dispatch a sleep/wake request to the appropriate handling
  196. * function.
  197. *
  198. ******************************************************************************/
  199. static acpi_status acpi_hw_sleep_dispatch(u8 sleep_state, u32 function_id)
  200. {
  201. acpi_status status;
  202. struct acpi_sleep_functions *sleep_functions =
  203. &acpi_sleep_dispatch[function_id];
  204. #if (!ACPI_REDUCED_HARDWARE)
  205. /*
  206. * If the Hardware Reduced flag is set (from the FADT), we must
  207. * use the extended sleep registers
  208. */
  209. if (acpi_gbl_reduced_hardware || acpi_gbl_FADT.sleep_control.address) {
  210. status = sleep_functions->extended_function(sleep_state);
  211. } else {
  212. /* Legacy sleep */
  213. status = sleep_functions->legacy_function(sleep_state);
  214. }
  215. return (status);
  216. #else
  217. /*
  218. * For the case where reduced-hardware-only code is being generated,
  219. * we know that only the extended sleep registers are available
  220. */
  221. status = sleep_functions->extended_function(sleep_state);
  222. return (status);
  223. #endif /* !ACPI_REDUCED_HARDWARE */
  224. }
  225. /*******************************************************************************
  226. *
  227. * FUNCTION: acpi_enter_sleep_state_prep
  228. *
  229. * PARAMETERS: sleep_state - Which sleep state to enter
  230. *
  231. * RETURN: Status
  232. *
  233. * DESCRIPTION: Prepare to enter a system sleep state.
  234. * This function must execute with interrupts enabled.
  235. * We break sleeping into 2 stages so that OSPM can handle
  236. * various OS-specific tasks between the two steps.
  237. *
  238. ******************************************************************************/
  239. acpi_status acpi_enter_sleep_state_prep(u8 sleep_state)
  240. {
  241. acpi_status status;
  242. struct acpi_object_list arg_list;
  243. union acpi_object arg;
  244. u32 sst_value;
  245. ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_prep);
  246. status = acpi_get_sleep_type_data(sleep_state,
  247. &acpi_gbl_sleep_type_a,
  248. &acpi_gbl_sleep_type_b);
  249. if (ACPI_FAILURE(status)) {
  250. return_ACPI_STATUS(status);
  251. }
  252. /* Execute the _PTS method (Prepare To Sleep) */
  253. arg_list.count = 1;
  254. arg_list.pointer = &arg;
  255. arg.type = ACPI_TYPE_INTEGER;
  256. arg.integer.value = sleep_state;
  257. status =
  258. acpi_evaluate_object(NULL, METHOD_PATHNAME__PTS, &arg_list, NULL);
  259. if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
  260. return_ACPI_STATUS(status);
  261. }
  262. /* Setup the argument to the _SST method (System STatus) */
  263. switch (sleep_state) {
  264. case ACPI_STATE_S0:
  265. sst_value = ACPI_SST_WORKING;
  266. break;
  267. case ACPI_STATE_S1:
  268. case ACPI_STATE_S2:
  269. case ACPI_STATE_S3:
  270. sst_value = ACPI_SST_SLEEPING;
  271. break;
  272. case ACPI_STATE_S4:
  273. sst_value = ACPI_SST_SLEEP_CONTEXT;
  274. break;
  275. default:
  276. sst_value = ACPI_SST_INDICATOR_OFF; /* Default is off */
  277. break;
  278. }
  279. /*
  280. * Set the system indicators to show the desired sleep state.
  281. * _SST is an optional method (return no error if not found)
  282. */
  283. acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, sst_value);
  284. return_ACPI_STATUS(AE_OK);
  285. }
  286. ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep)
  287. /*******************************************************************************
  288. *
  289. * FUNCTION: acpi_enter_sleep_state
  290. *
  291. * PARAMETERS: sleep_state - Which sleep state to enter
  292. *
  293. * RETURN: Status
  294. *
  295. * DESCRIPTION: Enter a system sleep state (see ACPI 2.0 spec p 231)
  296. * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
  297. *
  298. ******************************************************************************/
  299. acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state)
  300. {
  301. acpi_status status;
  302. ACPI_FUNCTION_TRACE(acpi_enter_sleep_state);
  303. if ((acpi_gbl_sleep_type_a > ACPI_SLEEP_TYPE_MAX) ||
  304. (acpi_gbl_sleep_type_b > ACPI_SLEEP_TYPE_MAX)) {
  305. ACPI_ERROR((AE_INFO, "Sleep values out of range: A=0x%X B=0x%X",
  306. acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b));
  307. return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
  308. }
  309. status = acpi_hw_sleep_dispatch(sleep_state, ACPI_SLEEP_FUNCTION_ID);
  310. return_ACPI_STATUS(status);
  311. }
  312. ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state)
  313. /*******************************************************************************
  314. *
  315. * FUNCTION: acpi_leave_sleep_state_prep
  316. *
  317. * PARAMETERS: sleep_state - Which sleep state we are exiting
  318. *
  319. * RETURN: Status
  320. *
  321. * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
  322. * sleep.
  323. * Called with interrupts DISABLED.
  324. *
  325. ******************************************************************************/
  326. acpi_status acpi_leave_sleep_state_prep(u8 sleep_state)
  327. {
  328. acpi_status status;
  329. ACPI_FUNCTION_TRACE(acpi_leave_sleep_state_prep);
  330. status =
  331. acpi_hw_sleep_dispatch(sleep_state, ACPI_WAKE_PREP_FUNCTION_ID);
  332. return_ACPI_STATUS(status);
  333. }
  334. ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state_prep)
  335. /*******************************************************************************
  336. *
  337. * FUNCTION: acpi_leave_sleep_state
  338. *
  339. * PARAMETERS: sleep_state - Which sleep state we are exiting
  340. *
  341. * RETURN: Status
  342. *
  343. * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
  344. * Called with interrupts ENABLED.
  345. *
  346. ******************************************************************************/
  347. acpi_status acpi_leave_sleep_state(u8 sleep_state)
  348. {
  349. acpi_status status;
  350. ACPI_FUNCTION_TRACE(acpi_leave_sleep_state);
  351. status = acpi_hw_sleep_dispatch(sleep_state, ACPI_WAKE_FUNCTION_ID);
  352. return_ACPI_STATUS(status);
  353. }
  354. ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state)