blob: 484cc0565d5baffd708e93de337da6be4c0f9074 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evgpeblk - GPE block creation and initialization.
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evgpeblk")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040053static acpi_status
54acpi_ev_save_method_info(acpi_handle obj_handle,
55 u32 level, void *obj_desc, void **return_value);
Robert Moore44f6c012005-04-18 22:49:35 -040056
57static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040058acpi_ev_match_prw_and_gpe(acpi_handle obj_handle,
59 u32 level, void *info, void **return_value);
60
61static struct acpi_gpe_xrupt_info *acpi_ev_get_gpe_xrupt_block(u32
62 interrupt_number);
Robert Moore44f6c012005-04-18 22:49:35 -040063
64static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040065acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info *gpe_xrupt);
Robert Moore44f6c012005-04-18 22:49:35 -040066
67static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040068acpi_ev_install_gpe_block(struct acpi_gpe_block_info *gpe_block,
69 u32 interrupt_number);
Robert Moore44f6c012005-04-18 22:49:35 -040070
71static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040072acpi_ev_create_gpe_info_blocks(struct acpi_gpe_block_info *gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*******************************************************************************
75 *
76 * FUNCTION: acpi_ev_valid_gpe_event
77 *
78 * PARAMETERS: gpe_event_info - Info for this GPE
79 *
80 * RETURN: TRUE if the gpe_event is valid
81 *
Bob Moore96db2552005-11-02 00:00:00 -050082 * DESCRIPTION: Validate a GPE event. DO NOT CALL FROM INTERRUPT LEVEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * Should be called only when the GPE lists are semaphore locked
84 * and not subject to change.
85 *
86 ******************************************************************************/
87
Len Brown4be44fc2005-08-05 00:44:28 -040088u8 acpi_ev_valid_gpe_event(struct acpi_gpe_event_info *gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Len Brown4be44fc2005-08-05 00:44:28 -040090 struct acpi_gpe_xrupt_info *gpe_xrupt_block;
91 struct acpi_gpe_block_info *gpe_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Len Brown4be44fc2005-08-05 00:44:28 -040093 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* No need for spin lock since we are not changing any list elements */
96
97 /* Walk the GPE interrupt levels */
98
99 gpe_xrupt_block = acpi_gbl_gpe_xrupt_list_head;
100 while (gpe_xrupt_block) {
101 gpe_block = gpe_xrupt_block->gpe_block_list_head;
102
103 /* Walk the GPE blocks on this interrupt level */
104
105 while (gpe_block) {
106 if ((&gpe_block->event_info[0] <= gpe_event_info) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400107 (&gpe_block->
108 event_info[((acpi_size) gpe_block->
109 register_count) * 8] >
110 gpe_event_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return (TRUE);
112 }
113
114 gpe_block = gpe_block->next;
115 }
116
117 gpe_xrupt_block = gpe_xrupt_block->next;
118 }
119
120 return (FALSE);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*******************************************************************************
124 *
125 * FUNCTION: acpi_ev_walk_gpe_list
126 *
127 * PARAMETERS: gpe_walk_callback - Routine called for each GPE block
Bob Mooree97d6bf2008-12-30 09:45:17 +0800128 * Context - Value passed to callback
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *
130 * RETURN: Status
131 *
132 * DESCRIPTION: Walk the GPE lists.
133 *
134 ******************************************************************************/
135
Bob Mooree97d6bf2008-12-30 09:45:17 +0800136acpi_status
137acpi_ev_walk_gpe_list(acpi_gpe_callback gpe_walk_callback, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Len Brown4be44fc2005-08-05 00:44:28 -0400139 struct acpi_gpe_block_info *gpe_block;
140 struct acpi_gpe_xrupt_info *gpe_xrupt_info;
141 acpi_status status = AE_OK;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500142 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Bob Mooreb229cf92006-04-21 17:15:00 -0400144 ACPI_FUNCTION_TRACE(ev_walk_gpe_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Len Brown4be44fc2005-08-05 00:44:28 -0400146 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* Walk the interrupt level descriptor list */
149
150 gpe_xrupt_info = acpi_gbl_gpe_xrupt_list_head;
151 while (gpe_xrupt_info) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* Walk all Gpe Blocks attached to this interrupt level */
154
155 gpe_block = gpe_xrupt_info->gpe_block_list_head;
156 while (gpe_block) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /* One callback per GPE block */
159
Bob Mooree97d6bf2008-12-30 09:45:17 +0800160 status =
161 gpe_walk_callback(gpe_xrupt_info, gpe_block,
162 context);
Len Brown4be44fc2005-08-05 00:44:28 -0400163 if (ACPI_FAILURE(status)) {
Bob Mooree97d6bf2008-12-30 09:45:17 +0800164 if (status == AE_CTRL_END) { /* Callback abort */
165 status = AE_OK;
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto unlock_and_exit;
168 }
169
170 gpe_block = gpe_block->next;
171 }
172
173 gpe_xrupt_info = gpe_xrupt_info->next;
174 }
175
Len Brown4be44fc2005-08-05 00:44:28 -0400176 unlock_and_exit:
177 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
178 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Robert Moore44f6c012005-04-18 22:49:35 -0400181/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *
183 * FUNCTION: acpi_ev_delete_gpe_handlers
184 *
185 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
186 * gpe_block - Gpe Block info
187 *
188 * RETURN: Status
189 *
190 * DESCRIPTION: Delete all Handler objects found in the GPE data structs.
191 * Used only prior to termination.
192 *
193 ******************************************************************************/
194
195acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400196acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +0800197 struct acpi_gpe_block_info *gpe_block,
198 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Len Brown4be44fc2005-08-05 00:44:28 -0400200 struct acpi_gpe_event_info *gpe_event_info;
Bob Moore67a119f2008-06-10 13:42:13 +0800201 u32 i;
202 u32 j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Bob Mooreb229cf92006-04-21 17:15:00 -0400204 ACPI_FUNCTION_TRACE(ev_delete_gpe_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* Examine each GPE Register within the block */
207
208 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Now look at the individual GPEs in this byte register */
211
212 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400213 gpe_event_info =
214 &gpe_block->
Bob Moore67a119f2008-06-10 13:42:13 +0800215 event_info[((acpi_size) i *
216 ACPI_GPE_REGISTER_WIDTH) + j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Robert Moore44f6c012005-04-18 22:49:35 -0400218 if ((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400219 ACPI_GPE_DISPATCH_HANDLER) {
Bob Moore83135242006-10-03 00:00:00 -0400220 ACPI_FREE(gpe_event_info->dispatch.handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 gpe_event_info->dispatch.handler = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400222 gpe_event_info->flags &=
223 ~ACPI_GPE_DISPATCH_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225 }
226 }
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*******************************************************************************
232 *
233 * FUNCTION: acpi_ev_save_method_info
234 *
235 * PARAMETERS: Callback from walk_namespace
236 *
237 * RETURN: Status
238 *
239 * DESCRIPTION: Called from acpi_walk_namespace. Expects each object to be a
240 * control method under the _GPE portion of the namespace.
241 * Extract the name and GPE type from the object, saving this
242 * information for quick lookup during GPE dispatch
243 *
244 * The name of each GPE control method is of the form:
245 * "_Lxx" or "_Exx"
246 * Where:
247 * L - means that the GPE is level triggered
248 * E - means that the GPE is edge triggered
249 * xx - is the GPE number [in HEX]
250 *
251 ******************************************************************************/
252
253static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400254acpi_ev_save_method_info(acpi_handle obj_handle,
255 u32 level, void *obj_desc, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Len Brown4be44fc2005-08-05 00:44:28 -0400257 struct acpi_gpe_block_info *gpe_block = (void *)obj_desc;
258 struct acpi_gpe_event_info *gpe_event_info;
259 u32 gpe_number;
260 char name[ACPI_NAME_SIZE + 1];
261 u8 type;
262 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Bob Mooreb229cf92006-04-21 17:15:00 -0400264 ACPI_FUNCTION_TRACE(ev_save_method_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /*
267 * _Lxx and _Exx GPE method support
268 *
269 * 1) Extract the name from the object and convert to a string
270 */
Len Brown4be44fc2005-08-05 00:44:28 -0400271 ACPI_MOVE_32_TO_32(name,
272 &((struct acpi_namespace_node *)obj_handle)->name.
273 integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 name[ACPI_NAME_SIZE] = 0;
275
276 /*
277 * 2) Edge/Level determination is based on the 2nd character
278 * of the method name
279 *
Bob Moore96db2552005-11-02 00:00:00 -0500280 * NOTE: Default GPE type is RUNTIME. May be changed later to WAKE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * if a _PRW object is found that points to this GPE.
282 */
283 switch (name[1]) {
284 case 'L':
285 type = ACPI_GPE_LEVEL_TRIGGERED;
286 break;
287
288 case 'E':
289 type = ACPI_GPE_EDGE_TRIGGERED;
290 break;
291
292 default:
293 /* Unknown method type, just ignore it! */
294
Bob Mooreb229cf92006-04-21 17:15:00 -0400295 ACPI_DEBUG_PRINT((ACPI_DB_LOAD,
296 "Ignoring unknown GPE method type: %s (name not of form _Lxx or _Exx)",
297 name));
Len Brown4be44fc2005-08-05 00:44:28 -0400298 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300
301 /* Convert the last two characters of the name to the GPE Number */
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 gpe_number = ACPI_STRTOUL(&name[2], NULL, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (gpe_number == ACPI_UINT32_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Conversion failed; invalid method, just ignore it */
307
Bob Mooreb229cf92006-04-21 17:15:00 -0400308 ACPI_DEBUG_PRINT((ACPI_DB_LOAD,
309 "Could not extract GPE number from name: %s (name is not of form _Lxx or _Exx)",
310 name));
Len Brown4be44fc2005-08-05 00:44:28 -0400311 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 /* Ensure that we have a valid GPE number for this GPE block */
315
316 if ((gpe_number < gpe_block->block_base_number) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400317 (gpe_number >=
318 (gpe_block->block_base_number +
319 (gpe_block->register_count * 8)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800321 * Not valid for this GPE block, just ignore it. However, it may be
322 * valid for a different GPE block, since GPE0 and GPE1 methods both
323 * appear under \_GPE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 */
Len Brown4be44fc2005-08-05 00:44:28 -0400325 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
328 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800329 * Now we can add this information to the gpe_event_info block for use
330 * during dispatch of this GPE. Default type is RUNTIME, although this may
331 * change when the _PRW methods are executed later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 */
Len Brown4be44fc2005-08-05 00:44:28 -0400333 gpe_event_info =
334 &gpe_block->event_info[gpe_number - gpe_block->block_base_number];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Bob Moore96db2552005-11-02 00:00:00 -0500336 gpe_event_info->flags = (u8)
337 (type | ACPI_GPE_DISPATCH_METHOD | ACPI_GPE_TYPE_RUNTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Len Brown4be44fc2005-08-05 00:44:28 -0400339 gpe_event_info->dispatch.method_node =
340 (struct acpi_namespace_node *)obj_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* Update enable mask, but don't enable the HW GPE as of yet */
343
Len Brown4be44fc2005-08-05 00:44:28 -0400344 status = acpi_ev_enable_gpe(gpe_event_info, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 ACPI_DEBUG_PRINT((ACPI_DB_LOAD,
347 "Registered GPE method %s as GPE number 0x%.2X\n",
348 name, gpe_number));
349 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*******************************************************************************
353 *
354 * FUNCTION: acpi_ev_match_prw_and_gpe
355 *
356 * PARAMETERS: Callback from walk_namespace
357 *
Bob Moore96db2552005-11-02 00:00:00 -0500358 * RETURN: Status. NOTE: We ignore errors so that the _PRW walk is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * not aborted on a single _PRW failure.
360 *
361 * DESCRIPTION: Called from acpi_walk_namespace. Expects each object to be a
Bob Moore96db2552005-11-02 00:00:00 -0500362 * Device. Run the _PRW method. If present, extract the GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * number and mark the GPE as a WAKE GPE.
364 *
365 ******************************************************************************/
366
367static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400368acpi_ev_match_prw_and_gpe(acpi_handle obj_handle,
369 u32 level, void *info, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Len Brown4be44fc2005-08-05 00:44:28 -0400371 struct acpi_gpe_walk_info *gpe_info = (void *)info;
372 struct acpi_namespace_node *gpe_device;
373 struct acpi_gpe_block_info *gpe_block;
374 struct acpi_namespace_node *target_gpe_device;
375 struct acpi_gpe_event_info *gpe_event_info;
376 union acpi_operand_object *pkg_desc;
377 union acpi_operand_object *obj_desc;
378 u32 gpe_number;
379 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Bob Mooreb229cf92006-04-21 17:15:00 -0400381 ACPI_FUNCTION_TRACE(ev_match_prw_and_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* Check for a _PRW method under this device */
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385 status = acpi_ut_evaluate_object(obj_handle, METHOD_NAME__PRW,
386 ACPI_BTYPE_PACKAGE, &pkg_desc);
387 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Ignore all errors from _PRW, we don't want to abort the subsystem */
390
Len Brown4be44fc2005-08-05 00:44:28 -0400391 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 /* The returned _PRW package must have at least two elements */
395
396 if (pkg_desc->package.count < 2) {
397 goto cleanup;
398 }
399
400 /* Extract pointers from the input context */
401
402 gpe_device = gpe_info->gpe_device;
403 gpe_block = gpe_info->gpe_block;
404
405 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800406 * The _PRW object must return a package, we are only interested in the
407 * first element
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
409 obj_desc = pkg_desc->package.elements[0];
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411 if (ACPI_GET_OBJECT_TYPE(obj_desc) == ACPI_TYPE_INTEGER) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Use FADT-defined GPE device (from definition of _PRW) */
414
415 target_gpe_device = acpi_gbl_fadt_gpe_device;
416
417 /* Integer is the GPE number in the FADT described GPE blocks */
418
419 gpe_number = (u32) obj_desc->integer.value;
Len Brown4be44fc2005-08-05 00:44:28 -0400420 } else if (ACPI_GET_OBJECT_TYPE(obj_desc) == ACPI_TYPE_PACKAGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* Package contains a GPE reference and GPE number within a GPE block */
423
424 if ((obj_desc->package.count < 2) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400425 (ACPI_GET_OBJECT_TYPE(obj_desc->package.elements[0]) !=
426 ACPI_TYPE_LOCAL_REFERENCE)
427 || (ACPI_GET_OBJECT_TYPE(obj_desc->package.elements[1]) !=
428 ACPI_TYPE_INTEGER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 goto cleanup;
430 }
431
432 /* Get GPE block reference and decode */
433
Len Brown4be44fc2005-08-05 00:44:28 -0400434 target_gpe_device =
435 obj_desc->package.elements[0]->reference.node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 gpe_number = (u32) obj_desc->package.elements[1]->integer.value;
Len Brown4be44fc2005-08-05 00:44:28 -0400437 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* Unknown type, just ignore it */
439
440 goto cleanup;
441 }
442
443 /*
444 * Is this GPE within this block?
445 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800446 * TRUE if and only if these conditions are true:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * 1) The GPE devices match.
448 * 2) The GPE index(number) is within the range of the Gpe Block
449 * associated with the GPE device.
450 */
451 if ((gpe_device == target_gpe_device) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400452 (gpe_number >= gpe_block->block_base_number) &&
453 (gpe_number <
454 gpe_block->block_base_number + (gpe_block->register_count * 8))) {
455 gpe_event_info =
456 &gpe_block->event_info[gpe_number -
457 gpe_block->block_base_number];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* Mark GPE for WAKE-ONLY but WAKE_DISABLED */
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461 gpe_event_info->flags &=
462 ~(ACPI_GPE_WAKE_ENABLED | ACPI_GPE_RUN_ENABLED);
Bob Moore96db2552005-11-02 00:00:00 -0500463
Len Brown4be44fc2005-08-05 00:44:28 -0400464 status =
465 acpi_ev_set_gpe_type(gpe_event_info, ACPI_GPE_TYPE_WAKE);
466 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto cleanup;
468 }
Bob Moore9f15fc62008-11-12 16:01:56 +0800469
Len Brown4be44fc2005-08-05 00:44:28 -0400470 status =
471 acpi_ev_update_gpe_enable_masks(gpe_event_info,
472 ACPI_GPE_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Len Brown4be44fc2005-08-05 00:44:28 -0400475 cleanup:
476 acpi_ut_remove_reference(pkg_desc);
477 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*******************************************************************************
481 *
482 * FUNCTION: acpi_ev_get_gpe_xrupt_block
483 *
Robert Moore6f42ccf2005-05-13 00:00:00 -0400484 * PARAMETERS: interrupt_number - Interrupt for a GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *
486 * RETURN: A GPE interrupt block
487 *
Bob Moore96db2552005-11-02 00:00:00 -0500488 * DESCRIPTION: Get or Create a GPE interrupt block. There is one interrupt
Bob Moore9f15fc62008-11-12 16:01:56 +0800489 * block per unique interrupt level used for GPEs. Should be
490 * called only when the GPE lists are semaphore locked and not
491 * subject to change.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 *
493 ******************************************************************************/
494
Len Brown4be44fc2005-08-05 00:44:28 -0400495static struct acpi_gpe_xrupt_info *acpi_ev_get_gpe_xrupt_block(u32
496 interrupt_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Len Brown4be44fc2005-08-05 00:44:28 -0400498 struct acpi_gpe_xrupt_info *next_gpe_xrupt;
499 struct acpi_gpe_xrupt_info *gpe_xrupt;
500 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500501 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Bob Mooreb229cf92006-04-21 17:15:00 -0400503 ACPI_FUNCTION_TRACE(ev_get_gpe_xrupt_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Robert Moore44f6c012005-04-18 22:49:35 -0400505 /* No need for lock since we are not changing any list elements here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 next_gpe_xrupt = acpi_gbl_gpe_xrupt_list_head;
508 while (next_gpe_xrupt) {
Robert Moore6f42ccf2005-05-13 00:00:00 -0400509 if (next_gpe_xrupt->interrupt_number == interrupt_number) {
Len Brown4be44fc2005-08-05 00:44:28 -0400510 return_PTR(next_gpe_xrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
513 next_gpe_xrupt = next_gpe_xrupt->next;
514 }
515
516 /* Not found, must allocate a new xrupt descriptor */
517
Bob Moore83135242006-10-03 00:00:00 -0400518 gpe_xrupt = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_xrupt_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!gpe_xrupt) {
Len Brown4be44fc2005-08-05 00:44:28 -0400520 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522
Robert Moore6f42ccf2005-05-13 00:00:00 -0400523 gpe_xrupt->interrupt_number = interrupt_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 /* Install new interrupt descriptor with spin lock */
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (acpi_gbl_gpe_xrupt_list_head) {
529 next_gpe_xrupt = acpi_gbl_gpe_xrupt_list_head;
530 while (next_gpe_xrupt->next) {
531 next_gpe_xrupt = next_gpe_xrupt->next;
532 }
533
534 next_gpe_xrupt->next = gpe_xrupt;
535 gpe_xrupt->previous = next_gpe_xrupt;
Len Brown4be44fc2005-08-05 00:44:28 -0400536 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 acpi_gbl_gpe_xrupt_list_head = gpe_xrupt;
538 }
Len Brown4be44fc2005-08-05 00:44:28 -0400539 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 /* Install new interrupt handler if not SCI_INT */
542
Bob Mooref3d2e782007-02-02 19:48:18 +0300543 if (interrupt_number != acpi_gbl_FADT.sci_interrupt) {
Len Brown4be44fc2005-08-05 00:44:28 -0400544 status = acpi_os_install_interrupt_handler(interrupt_number,
545 acpi_ev_gpe_xrupt_handler,
546 gpe_xrupt);
547 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500548 ACPI_ERROR((AE_INFO,
549 "Could not install GPE interrupt handler at level 0x%X",
550 interrupt_number));
Len Brown4be44fc2005-08-05 00:44:28 -0400551 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
554
Len Brown4be44fc2005-08-05 00:44:28 -0400555 return_PTR(gpe_xrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*******************************************************************************
559 *
560 * FUNCTION: acpi_ev_delete_gpe_xrupt
561 *
562 * PARAMETERS: gpe_xrupt - A GPE interrupt info block
563 *
564 * RETURN: Status
565 *
566 * DESCRIPTION: Remove and free a gpe_xrupt block. Remove an associated
567 * interrupt handler if not the SCI interrupt.
568 *
569 ******************************************************************************/
570
571static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400572acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info *gpe_xrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Len Brown4be44fc2005-08-05 00:44:28 -0400574 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500575 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Bob Mooreb229cf92006-04-21 17:15:00 -0400577 ACPI_FUNCTION_TRACE(ev_delete_gpe_xrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* We never want to remove the SCI interrupt handler */
580
Bob Mooref3d2e782007-02-02 19:48:18 +0300581 if (gpe_xrupt->interrupt_number == acpi_gbl_FADT.sci_interrupt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 gpe_xrupt->gpe_block_list_head = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400583 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
586 /* Disable this interrupt */
587
Bob Moore96db2552005-11-02 00:00:00 -0500588 status =
589 acpi_os_remove_interrupt_handler(gpe_xrupt->interrupt_number,
590 acpi_ev_gpe_xrupt_handler);
Len Brown4be44fc2005-08-05 00:44:28 -0400591 if (ACPI_FAILURE(status)) {
592 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
595 /* Unlink the interrupt block with lock */
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (gpe_xrupt->previous) {
599 gpe_xrupt->previous->next = gpe_xrupt->next;
Bob Mooree0b910502007-04-03 20:00:29 -0400600 } else {
601 /* No previous, update list head */
602
603 acpi_gbl_gpe_xrupt_list_head = gpe_xrupt->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606 if (gpe_xrupt->next) {
607 gpe_xrupt->next->previous = gpe_xrupt->previous;
608 }
Len Brown4be44fc2005-08-05 00:44:28 -0400609 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Free the block */
612
Bob Moore83135242006-10-03 00:00:00 -0400613 ACPI_FREE(gpe_xrupt);
Len Brown4be44fc2005-08-05 00:44:28 -0400614 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*******************************************************************************
618 *
619 * FUNCTION: acpi_ev_install_gpe_block
620 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800621 * PARAMETERS: gpe_block - New GPE block
622 * interrupt_number - Xrupt to be associated with this
623 * GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 *
625 * RETURN: Status
626 *
627 * DESCRIPTION: Install new GPE block with mutex support
628 *
629 ******************************************************************************/
630
631static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400632acpi_ev_install_gpe_block(struct acpi_gpe_block_info *gpe_block,
633 u32 interrupt_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Len Brown4be44fc2005-08-05 00:44:28 -0400635 struct acpi_gpe_block_info *next_gpe_block;
636 struct acpi_gpe_xrupt_info *gpe_xrupt_block;
637 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500638 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Bob Mooreb229cf92006-04-21 17:15:00 -0400640 ACPI_FUNCTION_TRACE(ev_install_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Len Brown4be44fc2005-08-05 00:44:28 -0400642 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
643 if (ACPI_FAILURE(status)) {
644 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646
Len Brown4be44fc2005-08-05 00:44:28 -0400647 gpe_xrupt_block = acpi_ev_get_gpe_xrupt_block(interrupt_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!gpe_xrupt_block) {
649 status = AE_NO_MEMORY;
650 goto unlock_and_exit;
651 }
652
Robert Moore44f6c012005-04-18 22:49:35 -0400653 /* Install the new block at the end of the list with lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Len Brown4be44fc2005-08-05 00:44:28 -0400655 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (gpe_xrupt_block->gpe_block_list_head) {
657 next_gpe_block = gpe_xrupt_block->gpe_block_list_head;
658 while (next_gpe_block->next) {
659 next_gpe_block = next_gpe_block->next;
660 }
661
662 next_gpe_block->next = gpe_block;
663 gpe_block->previous = next_gpe_block;
Len Brown4be44fc2005-08-05 00:44:28 -0400664 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 gpe_xrupt_block->gpe_block_list_head = gpe_block;
666 }
667
668 gpe_block->xrupt_block = gpe_xrupt_block;
Len Brown4be44fc2005-08-05 00:44:28 -0400669 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 unlock_and_exit:
672 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
673 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/*******************************************************************************
677 *
678 * FUNCTION: acpi_ev_delete_gpe_block
679 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800680 * PARAMETERS: gpe_block - Existing GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 *
682 * RETURN: Status
683 *
684 * DESCRIPTION: Remove a GPE block
685 *
686 ******************************************************************************/
687
Len Brown4be44fc2005-08-05 00:44:28 -0400688acpi_status acpi_ev_delete_gpe_block(struct acpi_gpe_block_info *gpe_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Len Brown4be44fc2005-08-05 00:44:28 -0400690 acpi_status status;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500691 acpi_cpu_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Bob Mooreb229cf92006-04-21 17:15:00 -0400693 ACPI_FUNCTION_TRACE(ev_install_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
696 if (ACPI_FAILURE(status)) {
697 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
700 /* Disable all GPEs in this block */
701
Bob Mooree97d6bf2008-12-30 09:45:17 +0800702 status =
703 acpi_hw_disable_gpe_block(gpe_block->xrupt_block, gpe_block, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (!gpe_block->previous && !gpe_block->next) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* This is the last gpe_block on this interrupt */
708
Len Brown4be44fc2005-08-05 00:44:28 -0400709 status = acpi_ev_delete_gpe_xrupt(gpe_block->xrupt_block);
710 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto unlock_and_exit;
712 }
Len Brown4be44fc2005-08-05 00:44:28 -0400713 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* Remove the block on this interrupt with lock */
715
Len Brown4be44fc2005-08-05 00:44:28 -0400716 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (gpe_block->previous) {
718 gpe_block->previous->next = gpe_block->next;
Len Brown4be44fc2005-08-05 00:44:28 -0400719 } else {
720 gpe_block->xrupt_block->gpe_block_list_head =
721 gpe_block->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
724 if (gpe_block->next) {
725 gpe_block->next->previous = gpe_block->previous;
726 }
Len Brown4be44fc2005-08-05 00:44:28 -0400727 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Bob Mooree97d6bf2008-12-30 09:45:17 +0800730 acpi_current_gpe_count -=
731 gpe_block->register_count * ACPI_GPE_REGISTER_WIDTH;
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* Free the gpe_block */
734
Bob Moore83135242006-10-03 00:00:00 -0400735 ACPI_FREE(gpe_block->register_info);
736 ACPI_FREE(gpe_block->event_info);
737 ACPI_FREE(gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Len Brown4be44fc2005-08-05 00:44:28 -0400739 unlock_and_exit:
740 status = acpi_ut_release_mutex(ACPI_MTX_EVENTS);
741 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/*******************************************************************************
745 *
746 * FUNCTION: acpi_ev_create_gpe_info_blocks
747 *
748 * PARAMETERS: gpe_block - New GPE block
749 *
750 * RETURN: Status
751 *
752 * DESCRIPTION: Create the register_info and event_info blocks for this GPE block
753 *
754 ******************************************************************************/
755
756static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400757acpi_ev_create_gpe_info_blocks(struct acpi_gpe_block_info *gpe_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Len Brown4be44fc2005-08-05 00:44:28 -0400759 struct acpi_gpe_register_info *gpe_register_info = NULL;
760 struct acpi_gpe_event_info *gpe_event_info = NULL;
761 struct acpi_gpe_event_info *this_event;
762 struct acpi_gpe_register_info *this_register;
Bob Moore67a119f2008-06-10 13:42:13 +0800763 u32 i;
764 u32 j;
Len Brown4be44fc2005-08-05 00:44:28 -0400765 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Bob Mooreb229cf92006-04-21 17:15:00 -0400767 ACPI_FUNCTION_TRACE(ev_create_gpe_info_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* Allocate the GPE register information block */
770
Bob Moore83135242006-10-03 00:00:00 -0400771 gpe_register_info = ACPI_ALLOCATE_ZEROED((acpi_size) gpe_block->
772 register_count *
773 sizeof(struct
774 acpi_gpe_register_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!gpe_register_info) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500776 ACPI_ERROR((AE_INFO,
Bob Mooreb229cf92006-04-21 17:15:00 -0400777 "Could not allocate the GpeRegisterInfo table"));
Len Brown4be44fc2005-08-05 00:44:28 -0400778 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
781 /*
782 * Allocate the GPE event_info block. There are eight distinct GPEs
Bob Moore96db2552005-11-02 00:00:00 -0500783 * per register. Initialization to zeros is sufficient.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
Bob Moore83135242006-10-03 00:00:00 -0400785 gpe_event_info = ACPI_ALLOCATE_ZEROED(((acpi_size) gpe_block->
786 register_count *
787 ACPI_GPE_REGISTER_WIDTH) *
788 sizeof(struct
789 acpi_gpe_event_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (!gpe_event_info) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500791 ACPI_ERROR((AE_INFO,
Bob Mooreb229cf92006-04-21 17:15:00 -0400792 "Could not allocate the GpeEventInfo table"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 status = AE_NO_MEMORY;
794 goto error_exit;
795 }
796
797 /* Save the new Info arrays in the GPE block */
798
799 gpe_block->register_info = gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400800 gpe_block->event_info = gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /*
Bob Moore96db2552005-11-02 00:00:00 -0500803 * Initialize the GPE Register and Event structures. A goal of these
Bob Moore9f15fc62008-11-12 16:01:56 +0800804 * tables is to hide the fact that there are two separate GPE register
805 * sets in a given GPE hardware block, the status registers occupy the
806 * first half, and the enable registers occupy the second half.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
808 this_register = gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400809 this_event = gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* Init the register_info for this GPE register (8 GPEs) */
814
Len Brown4be44fc2005-08-05 00:44:28 -0400815 this_register->base_gpe_number =
816 (u8) (gpe_block->block_base_number +
817 (i * ACPI_GPE_REGISTER_WIDTH));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Bob Moore59fa8502007-02-02 19:48:23 +0300819 this_register->status_address.address =
820 gpe_block->block_address.address + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Bob Moore59fa8502007-02-02 19:48:23 +0300822 this_register->enable_address.address =
823 gpe_block->block_address.address + i +
824 gpe_block->register_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Bob Mooref3d2e782007-02-02 19:48:18 +0300826 this_register->status_address.space_id =
827 gpe_block->block_address.space_id;
828 this_register->enable_address.space_id =
829 gpe_block->block_address.space_id;
830 this_register->status_address.bit_width =
Len Brown4be44fc2005-08-05 00:44:28 -0400831 ACPI_GPE_REGISTER_WIDTH;
Bob Mooref3d2e782007-02-02 19:48:18 +0300832 this_register->enable_address.bit_width =
Len Brown4be44fc2005-08-05 00:44:28 -0400833 ACPI_GPE_REGISTER_WIDTH;
Bob Mooreecfbbc72008-12-31 02:55:32 +0800834 this_register->status_address.bit_offset = 0;
835 this_register->enable_address.bit_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 /* Init the event_info for each GPE within this register */
838
839 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++) {
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300840 this_event->gpe_number =
841 (u8) (this_register->base_gpe_number + j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 this_event->register_info = this_register;
843 this_event++;
844 }
845
Bob Moore96db2552005-11-02 00:00:00 -0500846 /* Disable all GPEs within this register */
847
Bob Mooreecfbbc72008-12-31 02:55:32 +0800848 status = acpi_write(0x00, &this_register->enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400849 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto error_exit;
851 }
852
Bob Moore96db2552005-11-02 00:00:00 -0500853 /* Clear any pending GPE events within this register */
854
Bob Mooreecfbbc72008-12-31 02:55:32 +0800855 status = acpi_write(0xFF, &this_register->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400856 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto error_exit;
858 }
859
860 this_register++;
861 }
862
Len Brown4be44fc2005-08-05 00:44:28 -0400863 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Len Brown4be44fc2005-08-05 00:44:28 -0400865 error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (gpe_register_info) {
Bob Moore83135242006-10-03 00:00:00 -0400867 ACPI_FREE(gpe_register_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 if (gpe_event_info) {
Bob Moore83135242006-10-03 00:00:00 -0400870 ACPI_FREE(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Len Brown4be44fc2005-08-05 00:44:28 -0400873 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/*******************************************************************************
877 *
878 * FUNCTION: acpi_ev_create_gpe_block
879 *
880 * PARAMETERS: gpe_device - Handle to the parent GPE block
881 * gpe_block_address - Address and space_iD
882 * register_count - Number of GPE register pairs in the block
883 * gpe_block_base_number - Starting GPE number for the block
Robert Moore6f42ccf2005-05-13 00:00:00 -0400884 * interrupt_number - H/W interrupt for the block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 * return_gpe_block - Where the new block descriptor is returned
886 *
887 * RETURN: Status
888 *
Bob Moore96db2552005-11-02 00:00:00 -0500889 * DESCRIPTION: Create and Install a block of GPE registers. All GPEs within
890 * the block are disabled at exit.
891 * Note: Assumes namespace is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 *
893 ******************************************************************************/
894
895acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400896acpi_ev_create_gpe_block(struct acpi_namespace_node *gpe_device,
897 struct acpi_generic_address *gpe_block_address,
898 u32 register_count,
899 u8 gpe_block_base_number,
900 u32 interrupt_number,
901 struct acpi_gpe_block_info **return_gpe_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Len Brown4be44fc2005-08-05 00:44:28 -0400903 acpi_status status;
Bob Moore96db2552005-11-02 00:00:00 -0500904 struct acpi_gpe_block_info *gpe_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Bob Mooreb229cf92006-04-21 17:15:00 -0400906 ACPI_FUNCTION_TRACE(ev_create_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!register_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400909 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911
912 /* Allocate a new GPE block */
913
Bob Moore83135242006-10-03 00:00:00 -0400914 gpe_block = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_gpe_block_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (!gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400916 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
919 /* Initialize the new GPE block */
920
Bob Moore96db2552005-11-02 00:00:00 -0500921 gpe_block->node = gpe_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 gpe_block->register_count = register_count;
923 gpe_block->block_base_number = gpe_block_base_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Len Brown4be44fc2005-08-05 00:44:28 -0400925 ACPI_MEMCPY(&gpe_block->block_address, gpe_block_address,
926 sizeof(struct acpi_generic_address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Bob Moore96db2552005-11-02 00:00:00 -0500928 /*
929 * Create the register_info and event_info sub-structures
930 * Note: disables and clears all GPEs in the block
931 */
Len Brown4be44fc2005-08-05 00:44:28 -0400932 status = acpi_ev_create_gpe_info_blocks(gpe_block);
933 if (ACPI_FAILURE(status)) {
Bob Moore83135242006-10-03 00:00:00 -0400934 ACPI_FREE(gpe_block);
Len Brown4be44fc2005-08-05 00:44:28 -0400935 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
Bob Moore96db2552005-11-02 00:00:00 -0500938 /* Install the new block in the global lists */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Len Brown4be44fc2005-08-05 00:44:28 -0400940 status = acpi_ev_install_gpe_block(gpe_block, interrupt_number);
941 if (ACPI_FAILURE(status)) {
Bob Moore83135242006-10-03 00:00:00 -0400942 ACPI_FREE(gpe_block);
Len Brown4be44fc2005-08-05 00:44:28 -0400943 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 /* Find all GPE methods (_Lxx, _Exx) for this block */
947
Len Brown4be44fc2005-08-05 00:44:28 -0400948 status = acpi_ns_walk_namespace(ACPI_TYPE_METHOD, gpe_device,
949 ACPI_UINT32_MAX, ACPI_NS_WALK_NO_UNLOCK,
950 acpi_ev_save_method_info, gpe_block,
951 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Bob Moore96db2552005-11-02 00:00:00 -0500953 /* Return the new block */
954
955 if (return_gpe_block) {
956 (*return_gpe_block) = gpe_block;
957 }
958
959 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
960 "GPE %02X to %02X [%4.4s] %u regs on int 0x%X\n",
961 (u32) gpe_block->block_base_number,
962 (u32) (gpe_block->block_base_number +
963 ((gpe_block->register_count *
964 ACPI_GPE_REGISTER_WIDTH) - 1)),
965 gpe_device->name.ascii, gpe_block->register_count,
966 interrupt_number));
967
Bob Mooree97d6bf2008-12-30 09:45:17 +0800968 /* Update global count of currently available GPEs */
969
970 acpi_current_gpe_count += register_count * ACPI_GPE_REGISTER_WIDTH;
Bob Moore96db2552005-11-02 00:00:00 -0500971 return_ACPI_STATUS(AE_OK);
972}
973
974/*******************************************************************************
975 *
976 * FUNCTION: acpi_ev_initialize_gpe_block
977 *
978 * PARAMETERS: gpe_device - Handle to the parent GPE block
979 * gpe_block - Gpe Block info
980 *
981 * RETURN: Status
982 *
983 * DESCRIPTION: Initialize and enable a GPE block. First find and run any
984 * _PRT methods associated with the block, then enable the
985 * appropriate GPEs.
986 * Note: Assumes namespace is locked.
987 *
988 ******************************************************************************/
989
990acpi_status
991acpi_ev_initialize_gpe_block(struct acpi_namespace_node *gpe_device,
992 struct acpi_gpe_block_info *gpe_block)
993{
994 acpi_status status;
995 struct acpi_gpe_event_info *gpe_event_info;
996 struct acpi_gpe_walk_info gpe_info;
997 u32 wake_gpe_count;
998 u32 gpe_enabled_count;
Bob Moore67a119f2008-06-10 13:42:13 +0800999 u32 i;
1000 u32 j;
Bob Moore96db2552005-11-02 00:00:00 -05001001
Bob Mooreb229cf92006-04-21 17:15:00 -04001002 ACPI_FUNCTION_TRACE(ev_initialize_gpe_block);
Bob Moore96db2552005-11-02 00:00:00 -05001003
1004 /* Ignore a null GPE block (e.g., if no GPE block 1 exists) */
1005
1006 if (!gpe_block) {
1007 return_ACPI_STATUS(AE_OK);
1008 }
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
Bob Moore96db2552005-11-02 00:00:00 -05001011 * Runtime option: Should wake GPEs be enabled at runtime? The default
1012 * is no, they should only be enabled just as the machine goes to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
1014 if (acpi_gbl_leave_wake_gpes_disabled) {
1015 /*
Bob Moore96db2552005-11-02 00:00:00 -05001016 * Differentiate runtime vs wake GPEs, via the _PRW control methods.
1017 * Each GPE that has one or more _PRWs that reference it is by
1018 * definition a wake GPE and will not be enabled while the machine
1019 * is running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
1021 gpe_info.gpe_block = gpe_block;
1022 gpe_info.gpe_device = gpe_device;
1023
Len Brown4be44fc2005-08-05 00:44:28 -04001024 status =
1025 acpi_ns_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1026 ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK,
1027 acpi_ev_match_prw_and_gpe, &gpe_info,
1028 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030
1031 /*
Bob Moore96db2552005-11-02 00:00:00 -05001032 * Enable all GPEs in this block that have these attributes:
1033 * 1) are "runtime" or "run/wake" GPEs, and
1034 * 2) have a corresponding _Lxx or _Exx method
1035 *
1036 * Any other GPEs within this block must be enabled via the acpi_enable_gpe()
1037 * external interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
1039 wake_gpe_count = 0;
1040 gpe_enabled_count = 0;
1041
1042 for (i = 0; i < gpe_block->register_count; i++) {
1043 for (j = 0; j < 8; j++) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* Get the info block for this particular GPE */
1046
Len Brown4be44fc2005-08-05 00:44:28 -04001047 gpe_event_info =
1048 &gpe_block->
Bob Moore67a119f2008-06-10 13:42:13 +08001049 event_info[((acpi_size) i *
1050 ACPI_GPE_REGISTER_WIDTH) + j];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Len Brown4be44fc2005-08-05 00:44:28 -04001052 if (((gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK) ==
1053 ACPI_GPE_DISPATCH_METHOD)
Len Brownfd350942007-05-09 23:34:35 -04001054 && (gpe_event_info->flags & ACPI_GPE_TYPE_RUNTIME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 gpe_enabled_count++;
1056 }
1057
1058 if (gpe_event_info->flags & ACPI_GPE_TYPE_WAKE) {
1059 wake_gpe_count++;
1060 }
1061 }
1062 }
1063
Len Brown4be44fc2005-08-05 00:44:28 -04001064 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
1065 "Found %u Wake, Enabled %u Runtime GPEs in this block\n",
1066 wake_gpe_count, gpe_enabled_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Bob Moore96db2552005-11-02 00:00:00 -05001068 /* Enable all valid runtime GPEs found above */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Bob Mooree97d6bf2008-12-30 09:45:17 +08001070 status = acpi_hw_enable_runtime_gpe_block(NULL, gpe_block, NULL);
Bob Moore96db2552005-11-02 00:00:00 -05001071 if (ACPI_FAILURE(status)) {
Bob Mooreb229cf92006-04-21 17:15:00 -04001072 ACPI_ERROR((AE_INFO, "Could not enable GPEs in GpeBlock %p",
Bob Mooreb8e4d892006-01-27 16:43:00 -05001073 gpe_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075
Bob Moore96db2552005-11-02 00:00:00 -05001076 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079/*******************************************************************************
1080 *
1081 * FUNCTION: acpi_ev_gpe_initialize
1082 *
1083 * PARAMETERS: None
1084 *
1085 * RETURN: Status
1086 *
1087 * DESCRIPTION: Initialize the GPE data structures
1088 *
1089 ******************************************************************************/
1090
Len Brown4be44fc2005-08-05 00:44:28 -04001091acpi_status acpi_ev_gpe_initialize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Len Brown4be44fc2005-08-05 00:44:28 -04001093 u32 register_count0 = 0;
1094 u32 register_count1 = 0;
1095 u32 gpe_number_max = 0;
1096 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Bob Mooreb229cf92006-04-21 17:15:00 -04001098 ACPI_FUNCTION_TRACE(ev_gpe_initialize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Len Brown4be44fc2005-08-05 00:44:28 -04001100 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
1101 if (ACPI_FAILURE(status)) {
1102 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104
1105 /*
1106 * Initialize the GPE Block(s) defined in the FADT
1107 *
1108 * Why the GPE register block lengths are divided by 2: From the ACPI Spec,
1109 * section "General-Purpose Event Registers", we have:
1110 *
1111 * "Each register block contains two registers of equal length
1112 * GPEx_STS and GPEx_EN (where x is 0 or 1). The length of the
1113 * GPE0_STS and GPE0_EN registers is equal to half the GPE0_LEN
1114 * The length of the GPE1_STS and GPE1_EN registers is equal to
1115 * half the GPE1_LEN. If a generic register block is not supported
1116 * then its respective block pointer and block length values in the
1117 * FADT table contain zeros. The GPE0_LEN and GPE1_LEN do not need
1118 * to be the same size."
1119 */
1120
1121 /*
1122 * Determine the maximum GPE number for this machine.
1123 *
1124 * Note: both GPE0 and GPE1 are optional, and either can exist without
1125 * the other.
1126 *
1127 * If EITHER the register length OR the block address are zero, then that
1128 * particular block is not supported.
1129 */
Bob Mooref3d2e782007-02-02 19:48:18 +03001130 if (acpi_gbl_FADT.gpe0_block_length &&
1131 acpi_gbl_FADT.xgpe0_block.address) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /* GPE block 0 exists (has both length and address > 0) */
1134
Bob Mooref3d2e782007-02-02 19:48:18 +03001135 register_count0 = (u16) (acpi_gbl_FADT.gpe0_block_length / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Len Brown4be44fc2005-08-05 00:44:28 -04001137 gpe_number_max =
1138 (register_count0 * ACPI_GPE_REGISTER_WIDTH) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /* Install GPE Block 0 */
1141
Len Brown4be44fc2005-08-05 00:44:28 -04001142 status = acpi_ev_create_gpe_block(acpi_gbl_fadt_gpe_device,
Bob Mooref3d2e782007-02-02 19:48:18 +03001143 &acpi_gbl_FADT.xgpe0_block,
Len Brown4be44fc2005-08-05 00:44:28 -04001144 register_count0, 0,
Bob Mooref3d2e782007-02-02 19:48:18 +03001145 acpi_gbl_FADT.sci_interrupt,
Len Brown4be44fc2005-08-05 00:44:28 -04001146 &acpi_gbl_gpe_fadt_blocks[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Len Brown4be44fc2005-08-05 00:44:28 -04001148 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -05001149 ACPI_EXCEPTION((AE_INFO, status,
1150 "Could not create GPE Block 0"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152 }
1153
Bob Mooref3d2e782007-02-02 19:48:18 +03001154 if (acpi_gbl_FADT.gpe1_block_length &&
1155 acpi_gbl_FADT.xgpe1_block.address) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* GPE block 1 exists (has both length and address > 0) */
1158
Bob Mooref3d2e782007-02-02 19:48:18 +03001159 register_count1 = (u16) (acpi_gbl_FADT.gpe1_block_length / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /* Check for GPE0/GPE1 overlap (if both banks exist) */
1162
1163 if ((register_count0) &&
Bob Mooref3d2e782007-02-02 19:48:18 +03001164 (gpe_number_max >= acpi_gbl_FADT.gpe1_base)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -05001165 ACPI_ERROR((AE_INFO,
1166 "GPE0 block (GPE 0 to %d) overlaps the GPE1 block (GPE %d to %d) - Ignoring GPE1",
Bob Mooref3d2e782007-02-02 19:48:18 +03001167 gpe_number_max, acpi_gbl_FADT.gpe1_base,
1168 acpi_gbl_FADT.gpe1_base +
Bob Mooreb8e4d892006-01-27 16:43:00 -05001169 ((register_count1 *
1170 ACPI_GPE_REGISTER_WIDTH) - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* Ignore GPE1 block by setting the register count to zero */
1173
1174 register_count1 = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001175 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* Install GPE Block 1 */
1177
Len Brown4be44fc2005-08-05 00:44:28 -04001178 status =
1179 acpi_ev_create_gpe_block(acpi_gbl_fadt_gpe_device,
Bob Mooref3d2e782007-02-02 19:48:18 +03001180 &acpi_gbl_FADT.xgpe1_block,
Len Brown4be44fc2005-08-05 00:44:28 -04001181 register_count1,
Bob Mooref3d2e782007-02-02 19:48:18 +03001182 acpi_gbl_FADT.gpe1_base,
1183 acpi_gbl_FADT.
1184 sci_interrupt,
Len Brown4be44fc2005-08-05 00:44:28 -04001185 &acpi_gbl_gpe_fadt_blocks
1186 [1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Len Brown4be44fc2005-08-05 00:44:28 -04001188 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -05001189 ACPI_EXCEPTION((AE_INFO, status,
1190 "Could not create GPE Block 1"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192
1193 /*
1194 * GPE0 and GPE1 do not have to be contiguous in the GPE number
1195 * space. However, GPE0 always starts at GPE number zero.
1196 */
Bob Mooref3d2e782007-02-02 19:48:18 +03001197 gpe_number_max = acpi_gbl_FADT.gpe1_base +
Len Brown4be44fc2005-08-05 00:44:28 -04001198 ((register_count1 * ACPI_GPE_REGISTER_WIDTH) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 }
1201
1202 /* Exit if there are no GPE registers */
1203
1204 if ((register_count0 + register_count1) == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 /* GPEs are not required by ACPI, this is OK */
1207
Len Brown4be44fc2005-08-05 00:44:28 -04001208 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
1209 "There are no GPE blocks defined in the FADT\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 status = AE_OK;
1211 goto cleanup;
1212 }
1213
1214 /* Check for Max GPE number out-of-range */
1215
1216 if (gpe_number_max > ACPI_GPE_MAX) {
Bob Mooreb8e4d892006-01-27 16:43:00 -05001217 ACPI_ERROR((AE_INFO,
1218 "Maximum GPE number from FADT is too large: 0x%X",
1219 gpe_number_max));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 status = AE_BAD_VALUE;
1221 goto cleanup;
1222 }
1223
Len Brown4be44fc2005-08-05 00:44:28 -04001224 cleanup:
1225 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
1226 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}