blob: 4b134a72290711b81753003c81c30ed170386abb [file] [log] [blame]
Robert Moore73459f72005-06-24 00:00:00 -04001/*******************************************************************************
2 *
3 * Module Name: utstate - state object support procedures
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Robert Moore73459f72005-06-24 00:00:00 -04009 * 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
Robert Moore73459f72005-06-24 00:00:00 -040044#include <acpi/acpi.h>
45
46#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("utstate")
Robert Moore73459f72005-06-24 00:00:00 -040048
49/*******************************************************************************
50 *
51 * FUNCTION: acpi_ut_create_pkg_state_and_push
52 *
53 * PARAMETERS: Object - Object to be added to the new state
54 * Action - Increment/Decrement
55 * state_list - List the state will be added to
56 *
57 * RETURN: Status
58 *
59 * DESCRIPTION: Create a new state and push it
60 *
61 ******************************************************************************/
Robert Moore73459f72005-06-24 00:00:00 -040062acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040063acpi_ut_create_pkg_state_and_push(void *internal_object,
64 void *external_object,
65 u16 index,
Bob Moore96db2552005-11-02 00:00:00 -050066 union acpi_generic_state **state_list)
Robert Moore73459f72005-06-24 00:00:00 -040067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -040069
Len Brown4be44fc2005-08-05 00:44:28 -040070 ACPI_FUNCTION_ENTRY();
Robert Moore73459f72005-06-24 00:00:00 -040071
Len Brown4be44fc2005-08-05 00:44:28 -040072 state =
73 acpi_ut_create_pkg_state(internal_object, external_object, index);
Robert Moore73459f72005-06-24 00:00:00 -040074 if (!state) {
75 return (AE_NO_MEMORY);
76 }
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 acpi_ut_push_generic_state(state_list, state);
Robert Moore73459f72005-06-24 00:00:00 -040079 return (AE_OK);
80}
81
Robert Moore73459f72005-06-24 00:00:00 -040082/*******************************************************************************
83 *
84 * FUNCTION: acpi_ut_push_generic_state
85 *
86 * PARAMETERS: list_head - Head of the state stack
87 * State - State object to push
88 *
89 * RETURN: None
90 *
91 * DESCRIPTION: Push a state object onto a state stack
92 *
93 ******************************************************************************/
94
95void
Len Brown4be44fc2005-08-05 00:44:28 -040096acpi_ut_push_generic_state(union acpi_generic_state **list_head,
97 union acpi_generic_state *state)
Robert Moore73459f72005-06-24 00:00:00 -040098{
Len Brown4be44fc2005-08-05 00:44:28 -040099 ACPI_FUNCTION_TRACE("ut_push_generic_state");
Robert Moore73459f72005-06-24 00:00:00 -0400100
101 /* Push the state object onto the front of the list (stack) */
102
103 state->common.next = *list_head;
104 *list_head = state;
105
106 return_VOID;
107}
108
Robert Moore73459f72005-06-24 00:00:00 -0400109/*******************************************************************************
110 *
111 * FUNCTION: acpi_ut_pop_generic_state
112 *
113 * PARAMETERS: list_head - Head of the state stack
114 *
115 * RETURN: The popped state object
116 *
117 * DESCRIPTION: Pop a state object from a state stack
118 *
119 ******************************************************************************/
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
122 **list_head)
Robert Moore73459f72005-06-24 00:00:00 -0400123{
Len Brown4be44fc2005-08-05 00:44:28 -0400124 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400125
Len Brown4be44fc2005-08-05 00:44:28 -0400126 ACPI_FUNCTION_TRACE("ut_pop_generic_state");
Robert Moore73459f72005-06-24 00:00:00 -0400127
128 /* Remove the state object at the head of the list (stack) */
129
130 state = *list_head;
131 if (state) {
132 /* Update the list head */
133
134 *list_head = state->common.next;
135 }
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 return_PTR(state);
Robert Moore73459f72005-06-24 00:00:00 -0400138}
139
Robert Moore73459f72005-06-24 00:00:00 -0400140/*******************************************************************************
141 *
142 * FUNCTION: acpi_ut_create_generic_state
143 *
144 * PARAMETERS: None
145 *
146 * RETURN: The new state object. NULL on failure.
147 *
148 * DESCRIPTION: Create a generic state object. Attempt to obtain one from
149 * the global state cache; If none available, create a new one.
150 *
151 ******************************************************************************/
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153union acpi_generic_state *acpi_ut_create_generic_state(void)
Robert Moore73459f72005-06-24 00:00:00 -0400154{
Len Brown4be44fc2005-08-05 00:44:28 -0400155 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400156
Len Brown4be44fc2005-08-05 00:44:28 -0400157 ACPI_FUNCTION_ENTRY();
Robert Moore73459f72005-06-24 00:00:00 -0400158
Len Brown4be44fc2005-08-05 00:44:28 -0400159 state = acpi_os_acquire_object(acpi_gbl_state_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400160 if (state) {
161 /* Initialize */
162 memset(state, 0, sizeof(union acpi_generic_state));
163 state->common.data_type = ACPI_DESC_TYPE_STATE;
164 }
165
166 return (state);
167}
168
Robert Moore73459f72005-06-24 00:00:00 -0400169/*******************************************************************************
170 *
171 * FUNCTION: acpi_ut_create_thread_state
172 *
173 * PARAMETERS: None
174 *
175 * RETURN: New Thread State. NULL on failure
176 *
177 * DESCRIPTION: Create a "Thread State" - a flavor of the generic state used
178 * to track per-thread info during method execution
179 *
180 ******************************************************************************/
181
Len Brown4be44fc2005-08-05 00:44:28 -0400182struct acpi_thread_state *acpi_ut_create_thread_state(void)
Robert Moore73459f72005-06-24 00:00:00 -0400183{
Len Brown4be44fc2005-08-05 00:44:28 -0400184 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400185
Len Brown4be44fc2005-08-05 00:44:28 -0400186 ACPI_FUNCTION_TRACE("ut_create_thread_state");
Robert Moore73459f72005-06-24 00:00:00 -0400187
188 /* Create the generic state object */
189
Len Brown4be44fc2005-08-05 00:44:28 -0400190 state = acpi_ut_create_generic_state();
Robert Moore73459f72005-06-24 00:00:00 -0400191 if (!state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400192 return_PTR(NULL);
Robert Moore73459f72005-06-24 00:00:00 -0400193 }
194
195 /* Init fields specific to the update struct */
196
197 state->common.data_type = ACPI_DESC_TYPE_STATE_THREAD;
Len Brown4be44fc2005-08-05 00:44:28 -0400198 state->thread.thread_id = acpi_os_get_thread_id();
Robert Moore73459f72005-06-24 00:00:00 -0400199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 return_PTR((struct acpi_thread_state *)state);
Robert Moore73459f72005-06-24 00:00:00 -0400201}
202
Robert Moore73459f72005-06-24 00:00:00 -0400203/*******************************************************************************
204 *
205 * FUNCTION: acpi_ut_create_update_state
206 *
207 * PARAMETERS: Object - Initial Object to be installed in the state
208 * Action - Update action to be performed
209 *
210 * RETURN: New state object, null on failure
211 *
212 * DESCRIPTION: Create an "Update State" - a flavor of the generic state used
213 * to update reference counts and delete complex objects such
214 * as packages.
215 *
216 ******************************************************************************/
217
Len Brown4be44fc2005-08-05 00:44:28 -0400218union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
219 *object, u16 action)
Robert Moore73459f72005-06-24 00:00:00 -0400220{
Len Brown4be44fc2005-08-05 00:44:28 -0400221 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 ACPI_FUNCTION_TRACE_PTR("ut_create_update_state", object);
Robert Moore73459f72005-06-24 00:00:00 -0400224
225 /* Create the generic state object */
226
Len Brown4be44fc2005-08-05 00:44:28 -0400227 state = acpi_ut_create_generic_state();
Robert Moore73459f72005-06-24 00:00:00 -0400228 if (!state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400229 return_PTR(NULL);
Robert Moore73459f72005-06-24 00:00:00 -0400230 }
231
232 /* Init fields specific to the update struct */
233
234 state->common.data_type = ACPI_DESC_TYPE_STATE_UPDATE;
235 state->update.object = object;
Len Brown4be44fc2005-08-05 00:44:28 -0400236 state->update.value = action;
Robert Moore73459f72005-06-24 00:00:00 -0400237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 return_PTR(state);
Robert Moore73459f72005-06-24 00:00:00 -0400239}
240
Robert Moore73459f72005-06-24 00:00:00 -0400241/*******************************************************************************
242 *
243 * FUNCTION: acpi_ut_create_pkg_state
244 *
245 * PARAMETERS: Object - Initial Object to be installed in the state
246 * Action - Update action to be performed
247 *
248 * RETURN: New state object, null on failure
249 *
250 * DESCRIPTION: Create a "Package State"
251 *
252 ******************************************************************************/
253
Len Brown4be44fc2005-08-05 00:44:28 -0400254union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
255 void *external_object,
256 u16 index)
Robert Moore73459f72005-06-24 00:00:00 -0400257{
Len Brown4be44fc2005-08-05 00:44:28 -0400258 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400259
Len Brown4be44fc2005-08-05 00:44:28 -0400260 ACPI_FUNCTION_TRACE_PTR("ut_create_pkg_state", internal_object);
Robert Moore73459f72005-06-24 00:00:00 -0400261
262 /* Create the generic state object */
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 state = acpi_ut_create_generic_state();
Robert Moore73459f72005-06-24 00:00:00 -0400265 if (!state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400266 return_PTR(NULL);
Robert Moore73459f72005-06-24 00:00:00 -0400267 }
268
269 /* Init fields specific to the update struct */
270
271 state->common.data_type = ACPI_DESC_TYPE_STATE_PACKAGE;
Len Brown4be44fc2005-08-05 00:44:28 -0400272 state->pkg.source_object = (union acpi_operand_object *)internal_object;
273 state->pkg.dest_object = external_object;
274 state->pkg.index = index;
Robert Moore73459f72005-06-24 00:00:00 -0400275 state->pkg.num_packages = 1;
276
Len Brown4be44fc2005-08-05 00:44:28 -0400277 return_PTR(state);
Robert Moore73459f72005-06-24 00:00:00 -0400278}
279
Robert Moore73459f72005-06-24 00:00:00 -0400280/*******************************************************************************
281 *
282 * FUNCTION: acpi_ut_create_control_state
283 *
284 * PARAMETERS: None
285 *
286 * RETURN: New state object, null on failure
287 *
288 * DESCRIPTION: Create a "Control State" - a flavor of the generic state used
289 * to support nested IF/WHILE constructs in the AML.
290 *
291 ******************************************************************************/
292
Len Brown4be44fc2005-08-05 00:44:28 -0400293union acpi_generic_state *acpi_ut_create_control_state(void)
Robert Moore73459f72005-06-24 00:00:00 -0400294{
Len Brown4be44fc2005-08-05 00:44:28 -0400295 union acpi_generic_state *state;
Robert Moore73459f72005-06-24 00:00:00 -0400296
Len Brown4be44fc2005-08-05 00:44:28 -0400297 ACPI_FUNCTION_TRACE("ut_create_control_state");
Robert Moore73459f72005-06-24 00:00:00 -0400298
299 /* Create the generic state object */
300
Len Brown4be44fc2005-08-05 00:44:28 -0400301 state = acpi_ut_create_generic_state();
Robert Moore73459f72005-06-24 00:00:00 -0400302 if (!state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400303 return_PTR(NULL);
Robert Moore73459f72005-06-24 00:00:00 -0400304 }
305
306 /* Init fields specific to the control struct */
307
308 state->common.data_type = ACPI_DESC_TYPE_STATE_CONTROL;
Len Brown4be44fc2005-08-05 00:44:28 -0400309 state->common.state = ACPI_CONTROL_CONDITIONAL_EXECUTING;
Robert Moore73459f72005-06-24 00:00:00 -0400310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 return_PTR(state);
Robert Moore73459f72005-06-24 00:00:00 -0400312}
313
Robert Moore73459f72005-06-24 00:00:00 -0400314/*******************************************************************************
315 *
316 * FUNCTION: acpi_ut_delete_generic_state
317 *
318 * PARAMETERS: State - The state object to be deleted
319 *
320 * RETURN: None
321 *
322 * DESCRIPTION: Put a state object back into the global state cache. The object
323 * is not actually freed at this time.
324 *
325 ******************************************************************************/
326
Len Brown4be44fc2005-08-05 00:44:28 -0400327void acpi_ut_delete_generic_state(union acpi_generic_state *state)
Robert Moore73459f72005-06-24 00:00:00 -0400328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 ACPI_FUNCTION_TRACE("ut_delete_generic_state");
Robert Moore73459f72005-06-24 00:00:00 -0400330
Len Brown4be44fc2005-08-05 00:44:28 -0400331 (void)acpi_os_release_object(acpi_gbl_state_cache, state);
Robert Moore73459f72005-06-24 00:00:00 -0400332 return_VOID;
333}