1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53#include <acpi/acpi.h>
54#include "accommon.h"
55#include "acparser.h"
56#include "acdispat.h"
57#include "amlcode.h"
58#include "acinterp.h"
59
60#define _COMPONENT ACPI_PARSER
61ACPI_MODULE_NAME("psparse")
62
63
64
65
66
67
68
69
70
71
72
73
74u32 acpi_ps_get_opcode_size(u32 opcode)
75{
76
77
78
79 if (opcode > 0x00FF) {
80 return (2);
81 }
82
83
84
85 return (1);
86}
87
88
89
90
91
92
93
94
95
96
97
98
99
100u16 acpi_ps_peek_opcode(struct acpi_parse_state * parser_state)
101{
102 u8 *aml;
103 u16 opcode;
104
105 aml = parser_state->aml;
106 opcode = (u16) ACPI_GET8(aml);
107
108 if (opcode == AML_EXTENDED_OP_PREFIX) {
109
110
111
112 aml++;
113 opcode = (u16) ((opcode << 8) | ACPI_GET8(aml));
114 }
115
116 return (opcode);
117}
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132acpi_status
133acpi_ps_complete_this_op(struct acpi_walk_state *walk_state,
134 union acpi_parse_object *op)
135{
136 union acpi_parse_object *prev;
137 union acpi_parse_object *next;
138 const struct acpi_opcode_info *parent_info;
139 union acpi_parse_object *replacement_op = NULL;
140 acpi_status status = AE_OK;
141
142 ACPI_FUNCTION_TRACE_PTR(ps_complete_this_op, op);
143
144
145
146 if (!op) {
147 return_ACPI_STATUS(AE_OK);
148 }
149
150 acpi_ex_stop_trace_opcode(op, walk_state);
151
152
153
154 if (((walk_state->parse_flags & ACPI_PARSE_TREE_MASK) !=
155 ACPI_PARSE_DELETE_TREE)
156 || (walk_state->op_info->class == AML_CLASS_ARGUMENT)) {
157 return_ACPI_STATUS(AE_OK);
158 }
159
160
161
162 if (op->common.parent) {
163 prev = op->common.parent->common.value.arg;
164 if (!prev) {
165
166
167
168 goto cleanup;
169 }
170
171
172
173
174
175 parent_info =
176 acpi_ps_get_opcode_info(op->common.parent->common.
177 aml_opcode);
178
179 switch (parent_info->class) {
180 case AML_CLASS_CONTROL:
181
182 break;
183
184 case AML_CLASS_CREATE:
185
186
187
188
189 replacement_op =
190 acpi_ps_alloc_op(AML_INT_RETURN_VALUE_OP,
191 op->common.aml);
192 if (!replacement_op) {
193 status = AE_NO_MEMORY;
194 }
195 break;
196
197 case AML_CLASS_NAMED_OBJECT:
198
199
200
201
202 if ((op->common.parent->common.aml_opcode ==
203 AML_REGION_OP)
204 || (op->common.parent->common.aml_opcode ==
205 AML_DATA_REGION_OP)
206 || (op->common.parent->common.aml_opcode ==
207 AML_BUFFER_OP)
208 || (op->common.parent->common.aml_opcode ==
209 AML_PACKAGE_OP)
210 || (op->common.parent->common.aml_opcode ==
211 AML_BANK_FIELD_OP)
212 || (op->common.parent->common.aml_opcode ==
213 AML_VAR_PACKAGE_OP)) {
214 replacement_op =
215 acpi_ps_alloc_op(AML_INT_RETURN_VALUE_OP,
216 op->common.aml);
217 if (!replacement_op) {
218 status = AE_NO_MEMORY;
219 }
220 } else
221 if ((op->common.parent->common.aml_opcode ==
222 AML_NAME_OP)
223 && (walk_state->pass_number <=
224 ACPI_IMODE_LOAD_PASS2)) {
225 if ((op->common.aml_opcode == AML_BUFFER_OP)
226 || (op->common.aml_opcode == AML_PACKAGE_OP)
227 || (op->common.aml_opcode ==
228 AML_VAR_PACKAGE_OP)) {
229 replacement_op =
230 acpi_ps_alloc_op(op->common.
231 aml_opcode,
232 op->common.aml);
233 if (!replacement_op) {
234 status = AE_NO_MEMORY;
235 } else {
236 replacement_op->named.data =
237 op->named.data;
238 replacement_op->named.length =
239 op->named.length;
240 }
241 }
242 }
243 break;
244
245 default:
246
247 replacement_op =
248 acpi_ps_alloc_op(AML_INT_RETURN_VALUE_OP,
249 op->common.aml);
250 if (!replacement_op) {
251 status = AE_NO_MEMORY;
252 }
253 }
254
255
256
257 if (prev == op) {
258
259
260
261 if (replacement_op) {
262 replacement_op->common.parent =
263 op->common.parent;
264 replacement_op->common.value.arg = NULL;
265 replacement_op->common.node = op->common.node;
266 op->common.parent->common.value.arg =
267 replacement_op;
268 replacement_op->common.next = op->common.next;
269 } else {
270 op->common.parent->common.value.arg =
271 op->common.next;
272 }
273 }
274
275
276
277 else
278 while (prev) {
279
280
281
282 next = prev->common.next;
283 if (next == op) {
284 if (replacement_op) {
285 replacement_op->common.parent =
286 op->common.parent;
287 replacement_op->common.value.
288 arg = NULL;
289 replacement_op->common.node =
290 op->common.node;
291 prev->common.next =
292 replacement_op;
293 replacement_op->common.next =
294 op->common.next;
295 next = NULL;
296 } else {
297 prev->common.next =
298 op->common.next;
299 next = NULL;
300 }
301 }
302 prev = next;
303 }
304 }
305
306cleanup:
307
308
309
310 acpi_ps_delete_parse_tree(op);
311 return_ACPI_STATUS(status);
312}
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329acpi_status
330acpi_ps_next_parse_state(struct acpi_walk_state *walk_state,
331 union acpi_parse_object *op,
332 acpi_status callback_status)
333{
334 struct acpi_parse_state *parser_state = &walk_state->parser_state;
335 acpi_status status = AE_CTRL_PENDING;
336
337 ACPI_FUNCTION_TRACE_PTR(ps_next_parse_state, op);
338
339 switch (callback_status) {
340 case AE_CTRL_TERMINATE:
341
342
343
344
345 parser_state->aml = parser_state->aml_end;
346 status = AE_CTRL_TERMINATE;
347 break;
348
349 case AE_CTRL_BREAK:
350
351 parser_state->aml = walk_state->aml_last_while;
352 walk_state->control_state->common.value = FALSE;
353 status = AE_CTRL_BREAK;
354 break;
355
356 case AE_CTRL_CONTINUE:
357
358 parser_state->aml = walk_state->aml_last_while;
359 status = AE_CTRL_CONTINUE;
360 break;
361
362 case AE_CTRL_PENDING:
363
364 parser_state->aml = walk_state->aml_last_while;
365 break;
366
367#if 0
368 case AE_CTRL_SKIP:
369
370 parser_state->aml = parser_state->scope->parse_scope.pkg_end;
371 status = AE_OK;
372 break;
373#endif
374
375 case AE_CTRL_TRUE:
376
377
378
379
380 parser_state->aml = acpi_ps_get_next_package_end(parser_state);
381 status = AE_CTRL_PENDING;
382 break;
383
384 case AE_CTRL_FALSE:
385
386
387
388
389
390
391
392 parser_state->aml = parser_state->scope->parse_scope.pkg_end;
393
394
395
396 walk_state->control_state->common.value = FALSE;
397 status = AE_CTRL_END;
398 break;
399
400 case AE_CTRL_TRANSFER:
401
402
403
404 status = AE_CTRL_TRANSFER;
405 walk_state->prev_op = op;
406 walk_state->method_call_op = op;
407 walk_state->method_call_node =
408 (op->common.value.arg)->common.node;
409
410
411
412 walk_state->return_used =
413 acpi_ds_is_result_used(op, walk_state);
414 break;
415
416 default:
417
418 status = callback_status;
419 if ((callback_status & AE_CODE_MASK) == AE_CODE_CONTROL) {
420 status = AE_OK;
421 }
422 break;
423 }
424
425 return_ACPI_STATUS(status);
426}
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state)
442{
443 acpi_status status;
444 struct acpi_thread_state *thread;
445 struct acpi_thread_state *prev_walk_list = acpi_gbl_current_walk_list;
446 struct acpi_walk_state *previous_walk_state;
447
448 ACPI_FUNCTION_TRACE(ps_parse_aml);
449
450 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
451 "Entered with WalkState=%p Aml=%p size=%X\n",
452 walk_state, walk_state->parser_state.aml,
453 walk_state->parser_state.aml_size));
454
455 if (!walk_state->parser_state.aml) {
456 return_ACPI_STATUS(AE_NULL_OBJECT);
457 }
458
459
460
461 thread = acpi_ut_create_thread_state();
462 if (!thread) {
463 if (walk_state->method_desc) {
464
465
466
467 acpi_ds_terminate_control_method(walk_state->
468 method_desc,
469 walk_state);
470 }
471
472 acpi_ds_delete_walk_state(walk_state);
473 return_ACPI_STATUS(AE_NO_MEMORY);
474 }
475
476 walk_state->thread = thread;
477
478
479
480
481
482 if (walk_state->method_desc) {
483 walk_state->thread->current_sync_level =
484 walk_state->method_desc->method.sync_level;
485 }
486
487 acpi_ds_push_walk_state(walk_state, thread);
488
489
490
491
492
493 acpi_gbl_current_walk_list = thread;
494
495
496
497
498
499 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "State=%p\n", walk_state));
500
501 status = AE_OK;
502 while (walk_state) {
503 if (ACPI_SUCCESS(status)) {
504
505
506
507
508 status = acpi_ps_parse_loop(walk_state);
509 }
510
511 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
512 "Completed one call to walk loop, %s State=%p\n",
513 acpi_format_exception(status), walk_state));
514
515 if (status == AE_CTRL_TRANSFER) {
516
517
518
519
520 status =
521 acpi_ds_call_control_method(thread, walk_state,
522 NULL);
523 if (ACPI_FAILURE(status)) {
524 status =
525 acpi_ds_method_error(status, walk_state);
526 }
527
528
529
530
531
532 walk_state = acpi_ds_get_current_walk_state(thread);
533 continue;
534 } else if (status == AE_CTRL_TERMINATE) {
535 status = AE_OK;
536 } else if ((status != AE_OK) && (walk_state->method_desc)) {
537
538
539
540 acpi_ex_exit_interpreter();
541 ACPI_ERROR_METHOD("Method parse/execution failed",
542 walk_state->method_node, NULL,
543 status);
544 acpi_ex_enter_interpreter();
545
546
547
548 if ((status == AE_ALREADY_EXISTS) &&
549 (!(walk_state->method_desc->method.info_flags &
550 ACPI_METHOD_SERIALIZED))) {
551
552
553
554
555
556
557 walk_state->method_desc->method.info_flags |=
558 ACPI_METHOD_SERIALIZED_PENDING;
559 }
560 }
561
562
563
564 walk_state = acpi_ds_pop_walk_state(thread);
565
566
567
568 acpi_ds_scope_stack_clear(walk_state);
569
570
571
572
573
574
575 if (((walk_state->parse_flags & ACPI_PARSE_MODE_MASK) ==
576 ACPI_PARSE_EXECUTE &&
577 !(walk_state->parse_flags & ACPI_PARSE_MODULE_LEVEL)) ||
578 (ACPI_FAILURE(status))) {
579 acpi_ds_terminate_control_method(walk_state->
580 method_desc,
581 walk_state);
582 }
583
584
585
586 acpi_ps_cleanup_scope(&walk_state->parser_state);
587 previous_walk_state = walk_state;
588
589 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
590 "ReturnValue=%p, ImplicitValue=%p State=%p\n",
591 walk_state->return_desc,
592 walk_state->implicit_return_obj, walk_state));
593
594
595
596 walk_state = acpi_ds_get_current_walk_state(thread);
597 if (walk_state) {
598 if (ACPI_SUCCESS(status)) {
599
600
601
602
603
604 if (!previous_walk_state->return_desc) {
605
606
607
608
609 if (acpi_gbl_enable_interpreter_slack &&
610 !previous_walk_state->
611 implicit_return_obj) {
612 previous_walk_state->
613 implicit_return_obj =
614 acpi_ut_create_integer_object
615 ((u64) 0);
616 if (!previous_walk_state->
617 implicit_return_obj) {
618 return_ACPI_STATUS
619 (AE_NO_MEMORY);
620 }
621 }
622
623
624
625 status =
626 acpi_ds_restart_control_method
627 (walk_state,
628 previous_walk_state->
629 implicit_return_obj);
630 } else {
631
632
633
634
635 acpi_ds_clear_implicit_return
636 (previous_walk_state);
637
638 status =
639 acpi_ds_restart_control_method
640 (walk_state,
641 previous_walk_state->return_desc);
642 }
643 if (ACPI_SUCCESS(status)) {
644 walk_state->walk_type |=
645 ACPI_WALK_METHOD_RESTART;
646 }
647 } else {
648
649
650 acpi_ut_remove_reference(previous_walk_state->
651 return_desc);
652 acpi_ds_clear_implicit_return
653 (previous_walk_state);
654 }
655 }
656
657
658
659
660
661 else if (previous_walk_state->caller_return_desc) {
662 if (previous_walk_state->implicit_return_obj) {
663 *(previous_walk_state->caller_return_desc) =
664 previous_walk_state->implicit_return_obj;
665 } else {
666
667
668 *(previous_walk_state->caller_return_desc) =
669 previous_walk_state->return_desc;
670 }
671 } else {
672 if (previous_walk_state->return_desc) {
673
674
675
676 acpi_ut_remove_reference(previous_walk_state->
677 return_desc);
678 }
679 if (previous_walk_state->implicit_return_obj) {
680
681
682
683 acpi_ut_remove_reference(previous_walk_state->
684 implicit_return_obj);
685 }
686 }
687
688 acpi_ds_delete_walk_state(previous_walk_state);
689 }
690
691
692
693 acpi_ex_release_all_mutexes(thread);
694 acpi_ut_delete_generic_state(ACPI_CAST_PTR
695 (union acpi_generic_state, thread));
696 acpi_gbl_current_walk_list = prev_walk_list;
697 return_ACPI_STATUS(status);
698}
699