hwgpe.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. /******************************************************************************
  2. *
  3. * Module Name: hwgpe - Low level GPE enable/disable/clear functions
  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 "acevents.h"
  45. #define _COMPONENT ACPI_HARDWARE
  46. ACPI_MODULE_NAME("hwgpe")
  47. #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
  48. /* Local prototypes */
  49. static acpi_status
  50. acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  51. struct acpi_gpe_block_info *gpe_block,
  52. void *context);
  53. /******************************************************************************
  54. *
  55. * FUNCTION: acpi_hw_get_gpe_register_bit
  56. *
  57. * PARAMETERS: gpe_event_info - Info block for the GPE
  58. *
  59. * RETURN: Register mask with a one in the GPE bit position
  60. *
  61. * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
  62. * correct position for the input GPE.
  63. *
  64. ******************************************************************************/
  65. u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info)
  66. {
  67. return (u32)1 << (gpe_event_info->gpe_number -
  68. gpe_event_info->register_info->base_gpe_number);
  69. }
  70. /******************************************************************************
  71. *
  72. * FUNCTION: acpi_hw_low_set_gpe
  73. *
  74. * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
  75. * action - Enable or disable
  76. *
  77. * RETURN: Status
  78. *
  79. * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
  80. *
  81. ******************************************************************************/
  82. acpi_status
  83. acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
  84. {
  85. struct acpi_gpe_register_info *gpe_register_info;
  86. acpi_status status;
  87. u32 enable_mask;
  88. u32 register_bit;
  89. ACPI_FUNCTION_ENTRY();
  90. /* Get the info block for the entire GPE register */
  91. gpe_register_info = gpe_event_info->register_info;
  92. if (!gpe_register_info) {
  93. return (AE_NOT_EXIST);
  94. }
  95. /* Get current value of the enable register that contains this GPE */
  96. status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address);
  97. if (ACPI_FAILURE(status)) {
  98. return (status);
  99. }
  100. /* Set or clear just the bit that corresponds to this GPE */
  101. register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
  102. switch (action) {
  103. case ACPI_GPE_CONDITIONAL_ENABLE:
  104. /* Only enable if the enable_for_run bit is set */
  105. if (!(register_bit & gpe_register_info->enable_for_run)) {
  106. return (AE_BAD_PARAMETER);
  107. }
  108. /*lint -fallthrough */
  109. case ACPI_GPE_ENABLE:
  110. ACPI_SET_BIT(enable_mask, register_bit);
  111. break;
  112. case ACPI_GPE_DISABLE:
  113. ACPI_CLEAR_BIT(enable_mask, register_bit);
  114. break;
  115. default:
  116. ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action));
  117. return (AE_BAD_PARAMETER);
  118. }
  119. /* Write the updated enable mask */
  120. status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
  121. return (status);
  122. }
  123. /******************************************************************************
  124. *
  125. * FUNCTION: acpi_hw_clear_gpe
  126. *
  127. * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
  128. *
  129. * RETURN: Status
  130. *
  131. * DESCRIPTION: Clear the status bit for a single GPE.
  132. *
  133. ******************************************************************************/
  134. acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
  135. {
  136. struct acpi_gpe_register_info *gpe_register_info;
  137. acpi_status status;
  138. u32 register_bit;
  139. ACPI_FUNCTION_ENTRY();
  140. /* Get the info block for the entire GPE register */
  141. gpe_register_info = gpe_event_info->register_info;
  142. if (!gpe_register_info) {
  143. return (AE_NOT_EXIST);
  144. }
  145. /*
  146. * Write a one to the appropriate bit in the status register to
  147. * clear this GPE.
  148. */
  149. register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
  150. status = acpi_hw_write(register_bit,
  151. &gpe_register_info->status_address);
  152. return (status);
  153. }
  154. /******************************************************************************
  155. *
  156. * FUNCTION: acpi_hw_get_gpe_status
  157. *
  158. * PARAMETERS: gpe_event_info - Info block for the GPE to queried
  159. * event_status - Where the GPE status is returned
  160. *
  161. * RETURN: Status
  162. *
  163. * DESCRIPTION: Return the status of a single GPE.
  164. *
  165. ******************************************************************************/
  166. acpi_status
  167. acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
  168. acpi_event_status * event_status)
  169. {
  170. u32 in_byte;
  171. u32 register_bit;
  172. struct acpi_gpe_register_info *gpe_register_info;
  173. acpi_event_status local_event_status = 0;
  174. acpi_status status;
  175. ACPI_FUNCTION_ENTRY();
  176. if (!event_status) {
  177. return (AE_BAD_PARAMETER);
  178. }
  179. /* Get the info block for the entire GPE register */
  180. gpe_register_info = gpe_event_info->register_info;
  181. /* Get the register bitmask for this GPE */
  182. register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
  183. /* GPE currently enabled? (enabled for runtime?) */
  184. if (register_bit & gpe_register_info->enable_for_run) {
  185. local_event_status |= ACPI_EVENT_FLAG_ENABLED;
  186. }
  187. /* GPE enabled for wake? */
  188. if (register_bit & gpe_register_info->enable_for_wake) {
  189. local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
  190. }
  191. /* GPE currently active (status bit == 1)? */
  192. status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
  193. if (ACPI_FAILURE(status)) {
  194. return (status);
  195. }
  196. if (register_bit & in_byte) {
  197. local_event_status |= ACPI_EVENT_FLAG_SET;
  198. }
  199. /* Set return value */
  200. (*event_status) = local_event_status;
  201. return (AE_OK);
  202. }
  203. /******************************************************************************
  204. *
  205. * FUNCTION: acpi_hw_disable_gpe_block
  206. *
  207. * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
  208. * gpe_block - Gpe Block info
  209. *
  210. * RETURN: Status
  211. *
  212. * DESCRIPTION: Disable all GPEs within a single GPE block
  213. *
  214. ******************************************************************************/
  215. acpi_status
  216. acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  217. struct acpi_gpe_block_info *gpe_block, void *context)
  218. {
  219. u32 i;
  220. acpi_status status;
  221. /* Examine each GPE Register within the block */
  222. for (i = 0; i < gpe_block->register_count; i++) {
  223. /* Disable all GPEs in this register */
  224. status =
  225. acpi_hw_write(0x00,
  226. &gpe_block->register_info[i].enable_address);
  227. if (ACPI_FAILURE(status)) {
  228. return (status);
  229. }
  230. }
  231. return (AE_OK);
  232. }
  233. /******************************************************************************
  234. *
  235. * FUNCTION: acpi_hw_clear_gpe_block
  236. *
  237. * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
  238. * gpe_block - Gpe Block info
  239. *
  240. * RETURN: Status
  241. *
  242. * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
  243. *
  244. ******************************************************************************/
  245. acpi_status
  246. acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  247. struct acpi_gpe_block_info *gpe_block, void *context)
  248. {
  249. u32 i;
  250. acpi_status status;
  251. /* Examine each GPE Register within the block */
  252. for (i = 0; i < gpe_block->register_count; i++) {
  253. /* Clear status on all GPEs in this register */
  254. status =
  255. acpi_hw_write(0xFF,
  256. &gpe_block->register_info[i].status_address);
  257. if (ACPI_FAILURE(status)) {
  258. return (status);
  259. }
  260. }
  261. return (AE_OK);
  262. }
  263. /******************************************************************************
  264. *
  265. * FUNCTION: acpi_hw_enable_runtime_gpe_block
  266. *
  267. * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
  268. * gpe_block - Gpe Block info
  269. *
  270. * RETURN: Status
  271. *
  272. * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
  273. * combination wake/run GPEs.
  274. *
  275. ******************************************************************************/
  276. acpi_status
  277. acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  278. struct acpi_gpe_block_info * gpe_block,
  279. void *context)
  280. {
  281. u32 i;
  282. acpi_status status;
  283. /* NOTE: assumes that all GPEs are currently disabled */
  284. /* Examine each GPE Register within the block */
  285. for (i = 0; i < gpe_block->register_count; i++) {
  286. if (!gpe_block->register_info[i].enable_for_run) {
  287. continue;
  288. }
  289. /* Enable all "runtime" GPEs in this register */
  290. status =
  291. acpi_hw_write(gpe_block->register_info[i].enable_for_run,
  292. &gpe_block->register_info[i].enable_address);
  293. if (ACPI_FAILURE(status)) {
  294. return (status);
  295. }
  296. }
  297. return (AE_OK);
  298. }
  299. /******************************************************************************
  300. *
  301. * FUNCTION: acpi_hw_enable_wakeup_gpe_block
  302. *
  303. * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
  304. * gpe_block - Gpe Block info
  305. *
  306. * RETURN: Status
  307. *
  308. * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
  309. * combination wake/run GPEs.
  310. *
  311. ******************************************************************************/
  312. static acpi_status
  313. acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  314. struct acpi_gpe_block_info *gpe_block,
  315. void *context)
  316. {
  317. u32 i;
  318. acpi_status status;
  319. /* Examine each GPE Register within the block */
  320. for (i = 0; i < gpe_block->register_count; i++) {
  321. if (!gpe_block->register_info[i].enable_for_wake) {
  322. continue;
  323. }
  324. /* Enable all "wake" GPEs in this register */
  325. status =
  326. acpi_hw_write(gpe_block->register_info[i].enable_for_wake,
  327. &gpe_block->register_info[i].enable_address);
  328. if (ACPI_FAILURE(status)) {
  329. return (status);
  330. }
  331. }
  332. return (AE_OK);
  333. }
  334. /******************************************************************************
  335. *
  336. * FUNCTION: acpi_hw_disable_all_gpes
  337. *
  338. * PARAMETERS: None
  339. *
  340. * RETURN: Status
  341. *
  342. * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
  343. *
  344. ******************************************************************************/
  345. acpi_status acpi_hw_disable_all_gpes(void)
  346. {
  347. acpi_status status;
  348. ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
  349. status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL);
  350. status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
  351. return_ACPI_STATUS(status);
  352. }
  353. /******************************************************************************
  354. *
  355. * FUNCTION: acpi_hw_enable_all_runtime_gpes
  356. *
  357. * PARAMETERS: None
  358. *
  359. * RETURN: Status
  360. *
  361. * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
  362. *
  363. ******************************************************************************/
  364. acpi_status acpi_hw_enable_all_runtime_gpes(void)
  365. {
  366. acpi_status status;
  367. ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
  368. status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
  369. return_ACPI_STATUS(status);
  370. }
  371. /******************************************************************************
  372. *
  373. * FUNCTION: acpi_hw_enable_all_wakeup_gpes
  374. *
  375. * PARAMETERS: None
  376. *
  377. * RETURN: Status
  378. *
  379. * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
  380. *
  381. ******************************************************************************/
  382. acpi_status acpi_hw_enable_all_wakeup_gpes(void)
  383. {
  384. acpi_status status;
  385. ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
  386. status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
  387. return_ACPI_STATUS(status);
  388. }
  389. #endif /* !ACPI_REDUCED_HARDWARE */