GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / acpi / acpica / utstate.c
blobd35d109b8da22461b479fb3e849a4750dc25f9f1
1 /*******************************************************************************
3 * Module Name: utstate - state object support procedures
5 ******************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2010, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include "accommon.h"
47 #define _COMPONENT ACPI_UTILITIES
48 ACPI_MODULE_NAME("utstate")
50 /*******************************************************************************
52 * FUNCTION: acpi_ut_create_pkg_state_and_push
54 * PARAMETERS: Object - Object to be added to the new state
55 * Action - Increment/Decrement
56 * state_list - List the state will be added to
58 * RETURN: Status
60 * DESCRIPTION: Create a new state and push it
62 ******************************************************************************/
63 acpi_status
64 acpi_ut_create_pkg_state_and_push(void *internal_object,
65 void *external_object,
66 u16 index,
67 union acpi_generic_state **state_list)
69 union acpi_generic_state *state;
71 ACPI_FUNCTION_ENTRY();
73 state =
74 acpi_ut_create_pkg_state(internal_object, external_object, index);
75 if (!state) {
76 return (AE_NO_MEMORY);
79 acpi_ut_push_generic_state(state_list, state);
80 return (AE_OK);
83 /*******************************************************************************
85 * FUNCTION: acpi_ut_push_generic_state
87 * PARAMETERS: list_head - Head of the state stack
88 * State - State object to push
90 * RETURN: None
92 * DESCRIPTION: Push a state object onto a state stack
94 ******************************************************************************/
96 void
97 acpi_ut_push_generic_state(union acpi_generic_state **list_head,
98 union acpi_generic_state *state)
100 ACPI_FUNCTION_TRACE(ut_push_generic_state);
102 /* Push the state object onto the front of the list (stack) */
104 state->common.next = *list_head;
105 *list_head = state;
107 return_VOID;
110 /*******************************************************************************
112 * FUNCTION: acpi_ut_pop_generic_state
114 * PARAMETERS: list_head - Head of the state stack
116 * RETURN: The popped state object
118 * DESCRIPTION: Pop a state object from a state stack
120 ******************************************************************************/
122 union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
123 **list_head)
125 union acpi_generic_state *state;
127 ACPI_FUNCTION_TRACE(ut_pop_generic_state);
129 /* Remove the state object at the head of the list (stack) */
131 state = *list_head;
132 if (state) {
134 /* Update the list head */
136 *list_head = state->common.next;
139 return_PTR(state);
142 /*******************************************************************************
144 * FUNCTION: acpi_ut_create_generic_state
146 * PARAMETERS: None
148 * RETURN: The new state object. NULL on failure.
150 * DESCRIPTION: Create a generic state object. Attempt to obtain one from
151 * the global state cache; If none available, create a new one.
153 ******************************************************************************/
155 union acpi_generic_state *acpi_ut_create_generic_state(void)
157 union acpi_generic_state *state;
159 ACPI_FUNCTION_ENTRY();
161 state = acpi_os_acquire_object(acpi_gbl_state_cache);
162 if (state) {
164 /* Initialize */
165 memset(state, 0, sizeof(union acpi_generic_state));
166 state->common.descriptor_type = ACPI_DESC_TYPE_STATE;
169 return (state);
172 /*******************************************************************************
174 * FUNCTION: acpi_ut_create_thread_state
176 * PARAMETERS: None
178 * RETURN: New Thread State. NULL on failure
180 * DESCRIPTION: Create a "Thread State" - a flavor of the generic state used
181 * to track per-thread info during method execution
183 ******************************************************************************/
185 struct acpi_thread_state *acpi_ut_create_thread_state(void)
187 union acpi_generic_state *state;
189 ACPI_FUNCTION_TRACE(ut_create_thread_state);
191 /* Create the generic state object */
193 state = acpi_ut_create_generic_state();
194 if (!state) {
195 return_PTR(NULL);
198 /* Init fields specific to the update struct */
200 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_THREAD;
201 state->thread.thread_id = acpi_os_get_thread_id();
203 /* Check for invalid thread ID - zero is very bad, it will break things */
205 if (!state->thread.thread_id) {
206 ACPI_ERROR((AE_INFO, "Invalid zero ID from AcpiOsGetThreadId"));
207 state->thread.thread_id = (acpi_thread_id) 1;
210 return_PTR((struct acpi_thread_state *)state);
213 /*******************************************************************************
215 * FUNCTION: acpi_ut_create_update_state
217 * PARAMETERS: Object - Initial Object to be installed in the state
218 * Action - Update action to be performed
220 * RETURN: New state object, null on failure
222 * DESCRIPTION: Create an "Update State" - a flavor of the generic state used
223 * to update reference counts and delete complex objects such
224 * as packages.
226 ******************************************************************************/
228 union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
229 *object, u16 action)
231 union acpi_generic_state *state;
233 ACPI_FUNCTION_TRACE_PTR(ut_create_update_state, object);
235 /* Create the generic state object */
237 state = acpi_ut_create_generic_state();
238 if (!state) {
239 return_PTR(NULL);
242 /* Init fields specific to the update struct */
244 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_UPDATE;
245 state->update.object = object;
246 state->update.value = action;
248 return_PTR(state);
251 /*******************************************************************************
253 * FUNCTION: acpi_ut_create_pkg_state
255 * PARAMETERS: Object - Initial Object to be installed in the state
256 * Action - Update action to be performed
258 * RETURN: New state object, null on failure
260 * DESCRIPTION: Create a "Package State"
262 ******************************************************************************/
264 union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
265 void *external_object,
266 u16 index)
268 union acpi_generic_state *state;
270 ACPI_FUNCTION_TRACE_PTR(ut_create_pkg_state, internal_object);
272 /* Create the generic state object */
274 state = acpi_ut_create_generic_state();
275 if (!state) {
276 return_PTR(NULL);
279 /* Init fields specific to the update struct */
281 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_PACKAGE;
282 state->pkg.source_object = (union acpi_operand_object *)internal_object;
283 state->pkg.dest_object = external_object;
284 state->pkg.index = index;
285 state->pkg.num_packages = 1;
287 return_PTR(state);
290 /*******************************************************************************
292 * FUNCTION: acpi_ut_create_control_state
294 * PARAMETERS: None
296 * RETURN: New state object, null on failure
298 * DESCRIPTION: Create a "Control State" - a flavor of the generic state used
299 * to support nested IF/WHILE constructs in the AML.
301 ******************************************************************************/
303 union acpi_generic_state *acpi_ut_create_control_state(void)
305 union acpi_generic_state *state;
307 ACPI_FUNCTION_TRACE(ut_create_control_state);
309 /* Create the generic state object */
311 state = acpi_ut_create_generic_state();
312 if (!state) {
313 return_PTR(NULL);
316 /* Init fields specific to the control struct */
318 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_CONTROL;
319 state->common.state = ACPI_CONTROL_CONDITIONAL_EXECUTING;
321 return_PTR(state);
324 /*******************************************************************************
326 * FUNCTION: acpi_ut_delete_generic_state
328 * PARAMETERS: State - The state object to be deleted
330 * RETURN: None
332 * DESCRIPTION: Release a state object to the state cache. NULL state objects
333 * are ignored.
335 ******************************************************************************/
337 void acpi_ut_delete_generic_state(union acpi_generic_state *state)
339 ACPI_FUNCTION_TRACE(ut_delete_generic_state);
341 /* Ignore null state */
343 if (state) {
344 (void)acpi_os_release_object(acpi_gbl_state_cache, state);
346 return_VOID;