Merge tag 'pci-v3.15-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[deliverable/linux.git] / drivers / acpi / acpica / utstate.c
CommitLineData
73459f73
RM
1/*******************************************************************************
2 *
3 * Module Name: utstate - state object support procedures
4 *
5 ******************************************************************************/
6
7/*
fbb7a2dc 8 * Copyright (C) 2000 - 2014, Intel Corp.
73459f73
RM
9 * 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
73459f73 44#include <acpi/acpi.h>
e2f7a777 45#include "accommon.h"
73459f73
RM
46
47#define _COMPONENT ACPI_UTILITIES
4be44fcd 48ACPI_MODULE_NAME("utstate")
73459f73
RM
49
50/*******************************************************************************
51 *
52 * FUNCTION: acpi_ut_create_pkg_state_and_push
53 *
ba494bee
BM
54 * PARAMETERS: object - Object to be added to the new state
55 * action - Increment/Decrement
73459f73
RM
56 * state_list - List the state will be added to
57 *
58 * RETURN: Status
59 *
60 * DESCRIPTION: Create a new state and push it
61 *
62 ******************************************************************************/
73459f73 63acpi_status
4be44fcd
LB
64acpi_ut_create_pkg_state_and_push(void *internal_object,
65 void *external_object,
66 u16 index,
96db255c 67 union acpi_generic_state **state_list)
73459f73 68{
4be44fcd 69 union acpi_generic_state *state;
73459f73 70
4be44fcd 71 ACPI_FUNCTION_ENTRY();
73459f73 72
4be44fcd
LB
73 state =
74 acpi_ut_create_pkg_state(internal_object, external_object, index);
73459f73
RM
75 if (!state) {
76 return (AE_NO_MEMORY);
77 }
78
4be44fcd 79 acpi_ut_push_generic_state(state_list, state);
73459f73
RM
80 return (AE_OK);
81}
82
73459f73
RM
83/*******************************************************************************
84 *
85 * FUNCTION: acpi_ut_push_generic_state
86 *
87 * PARAMETERS: list_head - Head of the state stack
ba494bee 88 * state - State object to push
73459f73
RM
89 *
90 * RETURN: None
91 *
92 * DESCRIPTION: Push a state object onto a state stack
93 *
94 ******************************************************************************/
95
96void
4be44fcd
LB
97acpi_ut_push_generic_state(union acpi_generic_state **list_head,
98 union acpi_generic_state *state)
73459f73 99{
0e770b32 100 ACPI_FUNCTION_ENTRY();
73459f73
RM
101
102 /* Push the state object onto the front of the list (stack) */
103
104 state->common.next = *list_head;
105 *list_head = state;
0e770b32 106 return;
73459f73
RM
107}
108
73459f73
RM
109/*******************************************************************************
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
4be44fcd
LB
121union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
122 **list_head)
73459f73 123{
4be44fcd 124 union acpi_generic_state *state;
73459f73 125
0e770b32 126 ACPI_FUNCTION_ENTRY();
73459f73
RM
127
128 /* Remove the state object at the head of the list (stack) */
129
130 state = *list_head;
131 if (state) {
52fc0b02 132
73459f73
RM
133 /* Update the list head */
134
135 *list_head = state->common.next;
136 }
137
0e770b32 138 return (state);
73459f73
RM
139}
140
73459f73
RM
141/*******************************************************************************
142 *
143 * FUNCTION: acpi_ut_create_generic_state
144 *
145 * PARAMETERS: None
146 *
147 * RETURN: The new state object. NULL on failure.
148 *
73a3090a 149 * DESCRIPTION: Create a generic state object. Attempt to obtain one from
73459f73
RM
150 * the global state cache; If none available, create a new one.
151 *
152 ******************************************************************************/
153
4be44fcd 154union acpi_generic_state *acpi_ut_create_generic_state(void)
73459f73 155{
4be44fcd 156 union acpi_generic_state *state;
73459f73 157
4be44fcd 158 ACPI_FUNCTION_ENTRY();
73459f73 159
4be44fcd 160 state = acpi_os_acquire_object(acpi_gbl_state_cache);
73459f73 161 if (state) {
52fc0b02 162
73459f73 163 /* Initialize */
61686124 164 state->common.descriptor_type = ACPI_DESC_TYPE_STATE;
73459f73
RM
165 }
166
167 return (state);
168}
169
73459f73
RM
170/*******************************************************************************
171 *
172 * FUNCTION: acpi_ut_create_thread_state
173 *
174 * PARAMETERS: None
175 *
176 * RETURN: New Thread State. NULL on failure
177 *
178 * DESCRIPTION: Create a "Thread State" - a flavor of the generic state used
179 * to track per-thread info during method execution
180 *
181 ******************************************************************************/
182
4be44fcd 183struct acpi_thread_state *acpi_ut_create_thread_state(void)
73459f73 184{
4be44fcd 185 union acpi_generic_state *state;
73459f73 186
0e770b32 187 ACPI_FUNCTION_ENTRY();
73459f73
RM
188
189 /* Create the generic state object */
190
4be44fcd 191 state = acpi_ut_create_generic_state();
73459f73 192 if (!state) {
0e770b32 193 return (NULL);
73459f73
RM
194 }
195
196 /* Init fields specific to the update struct */
197
61686124 198 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_THREAD;
4be44fcd 199 state->thread.thread_id = acpi_os_get_thread_id();
73459f73 200
f6dd9221
BM
201 /* Check for invalid thread ID - zero is very bad, it will break things */
202
203 if (!state->thread.thread_id) {
204 ACPI_ERROR((AE_INFO, "Invalid zero ID from AcpiOsGetThreadId"));
205 state->thread.thread_id = (acpi_thread_id) 1;
206 }
207
0e770b32 208 return ((struct acpi_thread_state *)state);
73459f73
RM
209}
210
73459f73
RM
211/*******************************************************************************
212 *
213 * FUNCTION: acpi_ut_create_update_state
214 *
ba494bee
BM
215 * PARAMETERS: object - Initial Object to be installed in the state
216 * action - Update action to be performed
73459f73
RM
217 *
218 * RETURN: New state object, null on failure
219 *
220 * DESCRIPTION: Create an "Update State" - a flavor of the generic state used
221 * to update reference counts and delete complex objects such
222 * as packages.
223 *
224 ******************************************************************************/
225
4be44fcd
LB
226union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
227 *object, u16 action)
73459f73 228{
4be44fcd 229 union acpi_generic_state *state;
73459f73 230
0e770b32 231 ACPI_FUNCTION_ENTRY();
73459f73
RM
232
233 /* Create the generic state object */
234
4be44fcd 235 state = acpi_ut_create_generic_state();
73459f73 236 if (!state) {
0e770b32 237 return (NULL);
73459f73
RM
238 }
239
240 /* Init fields specific to the update struct */
241
61686124 242 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_UPDATE;
73459f73 243 state->update.object = object;
4be44fcd 244 state->update.value = action;
0e770b32 245 return (state);
73459f73
RM
246}
247
73459f73
RM
248/*******************************************************************************
249 *
250 * FUNCTION: acpi_ut_create_pkg_state
251 *
ba494bee
BM
252 * PARAMETERS: object - Initial Object to be installed in the state
253 * action - Update action to be performed
73459f73
RM
254 *
255 * RETURN: New state object, null on failure
256 *
257 * DESCRIPTION: Create a "Package State"
258 *
259 ******************************************************************************/
260
4be44fcd
LB
261union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
262 void *external_object,
263 u16 index)
73459f73 264{
4be44fcd 265 union acpi_generic_state *state;
73459f73 266
0e770b32 267 ACPI_FUNCTION_ENTRY();
73459f73
RM
268
269 /* Create the generic state object */
270
4be44fcd 271 state = acpi_ut_create_generic_state();
73459f73 272 if (!state) {
0e770b32 273 return (NULL);
73459f73
RM
274 }
275
276 /* Init fields specific to the update struct */
277
61686124 278 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_PACKAGE;
4be44fcd
LB
279 state->pkg.source_object = (union acpi_operand_object *)internal_object;
280 state->pkg.dest_object = external_object;
281 state->pkg.index = index;
73459f73 282 state->pkg.num_packages = 1;
0e770b32 283 return (state);
73459f73
RM
284}
285
73459f73
RM
286/*******************************************************************************
287 *
288 * FUNCTION: acpi_ut_create_control_state
289 *
290 * PARAMETERS: None
291 *
292 * RETURN: New state object, null on failure
293 *
294 * DESCRIPTION: Create a "Control State" - a flavor of the generic state used
295 * to support nested IF/WHILE constructs in the AML.
296 *
297 ******************************************************************************/
298
4be44fcd 299union acpi_generic_state *acpi_ut_create_control_state(void)
73459f73 300{
4be44fcd 301 union acpi_generic_state *state;
73459f73 302
0e770b32 303 ACPI_FUNCTION_ENTRY();
73459f73
RM
304
305 /* Create the generic state object */
306
4be44fcd 307 state = acpi_ut_create_generic_state();
73459f73 308 if (!state) {
0e770b32 309 return (NULL);
73459f73
RM
310 }
311
312 /* Init fields specific to the control struct */
313
61686124 314 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_CONTROL;
4be44fcd 315 state->common.state = ACPI_CONTROL_CONDITIONAL_EXECUTING;
0e770b32 316 return (state);
73459f73
RM
317}
318
73459f73
RM
319/*******************************************************************************
320 *
321 * FUNCTION: acpi_ut_delete_generic_state
322 *
ba494bee 323 * PARAMETERS: state - The state object to be deleted
73459f73
RM
324 *
325 * RETURN: None
326 *
793c2388
BM
327 * DESCRIPTION: Release a state object to the state cache. NULL state objects
328 * are ignored.
73459f73
RM
329 *
330 ******************************************************************************/
331
4be44fcd 332void acpi_ut_delete_generic_state(union acpi_generic_state *state)
73459f73 333{
0e770b32 334 ACPI_FUNCTION_ENTRY();
73459f73 335
793c2388
BM
336 /* Ignore null state */
337
338 if (state) {
339 (void)acpi_os_release_object(acpi_gbl_state_cache, state);
340 }
0e770b32 341 return;
73459f73 342}
This page took 0.622901 seconds and 5 git commands to generate.