This source file includes following definitions.
- ACPI_MODULE_NAME
- acpi_ex_opcode_2A_2T_1R
- acpi_ex_opcode_2A_1T_1R
- acpi_ex_opcode_2A_0T_1R
1
2
3
4
5
6
7
8
9
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acparser.h"
13 #include "acinterp.h"
14 #include "acevents.h"
15 #include "amlcode.h"
16
17 #define _COMPONENT ACPI_EXECUTER
18 ACPI_MODULE_NAME("exoparg2")
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
54
55 acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state)
56 {
57 union acpi_operand_object **operand = &walk_state->operands[0];
58 struct acpi_namespace_node *node;
59 u32 value;
60 acpi_status status = AE_OK;
61
62 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R,
63 acpi_ps_get_opcode_name(walk_state->opcode));
64
65
66
67 switch (walk_state->opcode) {
68 case AML_NOTIFY_OP:
69
70
71
72 node = (struct acpi_namespace_node *)operand[0];
73
74
75
76 value = (u32) operand[1]->integer.value;
77
78
79
80 if (!acpi_ev_is_notify_object(node)) {
81 ACPI_ERROR((AE_INFO,
82 "Unexpected notify object type [%s]",
83 acpi_ut_get_type_name(node->type)));
84
85 status = AE_AML_OPERAND_TYPE;
86 break;
87 }
88
89
90
91
92
93
94
95
96 status = acpi_ev_queue_notify_request(node, value);
97 break;
98
99 default:
100
101 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
102 walk_state->opcode));
103 status = AE_AML_BAD_OPCODE;
104 }
105
106 return_ACPI_STATUS(status);
107 }
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122 acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
123 {
124 union acpi_operand_object **operand = &walk_state->operands[0];
125 union acpi_operand_object *return_desc1 = NULL;
126 union acpi_operand_object *return_desc2 = NULL;
127 acpi_status status;
128
129 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R,
130 acpi_ps_get_opcode_name(walk_state->opcode));
131
132
133
134 switch (walk_state->opcode) {
135 case AML_DIVIDE_OP:
136
137
138
139 return_desc1 =
140 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
141 if (!return_desc1) {
142 status = AE_NO_MEMORY;
143 goto cleanup;
144 }
145
146 return_desc2 =
147 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
148 if (!return_desc2) {
149 status = AE_NO_MEMORY;
150 goto cleanup;
151 }
152
153
154
155 status = acpi_ut_divide(operand[0]->integer.value,
156 operand[1]->integer.value,
157 &return_desc1->integer.value,
158 &return_desc2->integer.value);
159 if (ACPI_FAILURE(status)) {
160 goto cleanup;
161 }
162 break;
163
164 default:
165
166 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
167 walk_state->opcode));
168
169 status = AE_AML_BAD_OPCODE;
170 goto cleanup;
171 }
172
173
174
175 status = acpi_ex_store(return_desc2, operand[2], walk_state);
176 if (ACPI_FAILURE(status)) {
177 goto cleanup;
178 }
179
180 status = acpi_ex_store(return_desc1, operand[3], walk_state);
181 if (ACPI_FAILURE(status)) {
182 goto cleanup;
183 }
184
185 cleanup:
186
187
188
189
190 acpi_ut_remove_reference(return_desc2);
191
192 if (ACPI_FAILURE(status)) {
193
194
195
196 acpi_ut_remove_reference(return_desc1);
197 }
198
199
200
201 else {
202 walk_state->result_obj = return_desc1;
203 }
204
205 return_ACPI_STATUS(status);
206 }
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221 acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
222 {
223 union acpi_operand_object **operand = &walk_state->operands[0];
224 union acpi_operand_object *return_desc = NULL;
225 u64 index;
226 acpi_status status = AE_OK;
227 acpi_size length = 0;
228
229 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R,
230 acpi_ps_get_opcode_name(walk_state->opcode));
231
232
233
234 if (walk_state->op_info->flags & AML_MATH) {
235
236
237
238 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
239 if (!return_desc) {
240 status = AE_NO_MEMORY;
241 goto cleanup;
242 }
243
244 return_desc->integer.value =
245 acpi_ex_do_math_op(walk_state->opcode,
246 operand[0]->integer.value,
247 operand[1]->integer.value);
248 goto store_result_to_target;
249 }
250
251 switch (walk_state->opcode) {
252 case AML_MOD_OP:
253
254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
255 if (!return_desc) {
256 status = AE_NO_MEMORY;
257 goto cleanup;
258 }
259
260
261
262 status = acpi_ut_divide(operand[0]->integer.value,
263 operand[1]->integer.value,
264 NULL, &return_desc->integer.value);
265 break;
266
267 case AML_CONCATENATE_OP:
268
269 status =
270 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc,
271 walk_state);
272 break;
273
274 case AML_TO_STRING_OP:
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290 while ((length < operand[0]->buffer.length) &&
291 (length < operand[1]->integer.value) &&
292 (operand[0]->buffer.pointer[length])) {
293 length++;
294 }
295
296
297
298 return_desc = acpi_ut_create_string_object(length);
299 if (!return_desc) {
300 status = AE_NO_MEMORY;
301 goto cleanup;
302 }
303
304
305
306
307
308 memcpy(return_desc->string.pointer,
309 operand[0]->buffer.pointer, length);
310 break;
311
312 case AML_CONCATENATE_TEMPLATE_OP:
313
314
315
316 status =
317 acpi_ex_concat_template(operand[0], operand[1],
318 &return_desc, walk_state);
319 break;
320
321 case AML_INDEX_OP:
322
323
324
325 return_desc =
326 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
327 if (!return_desc) {
328 status = AE_NO_MEMORY;
329 goto cleanup;
330 }
331
332
333
334 index = operand[1]->integer.value;
335 return_desc->reference.value = (u32) index;
336 return_desc->reference.class = ACPI_REFCLASS_INDEX;
337
338
339
340
341
342 switch ((operand[0])->common.type) {
343 case ACPI_TYPE_STRING:
344
345 if (index >= operand[0]->string.length) {
346 length = operand[0]->string.length;
347 status = AE_AML_STRING_LIMIT;
348 }
349
350 return_desc->reference.target_type =
351 ACPI_TYPE_BUFFER_FIELD;
352 return_desc->reference.index_pointer =
353 &(operand[0]->buffer.pointer[index]);
354 break;
355
356 case ACPI_TYPE_BUFFER:
357
358 if (index >= operand[0]->buffer.length) {
359 length = operand[0]->buffer.length;
360 status = AE_AML_BUFFER_LIMIT;
361 }
362
363 return_desc->reference.target_type =
364 ACPI_TYPE_BUFFER_FIELD;
365 return_desc->reference.index_pointer =
366 &(operand[0]->buffer.pointer[index]);
367 break;
368
369 case ACPI_TYPE_PACKAGE:
370
371 if (index >= operand[0]->package.count) {
372 length = operand[0]->package.count;
373 status = AE_AML_PACKAGE_LIMIT;
374 }
375
376 return_desc->reference.target_type = ACPI_TYPE_PACKAGE;
377 return_desc->reference.where =
378 &operand[0]->package.elements[index];
379 break;
380
381 default:
382
383 ACPI_ERROR((AE_INFO,
384 "Invalid object type: %X",
385 (operand[0])->common.type));
386 status = AE_AML_INTERNAL;
387 goto cleanup;
388 }
389
390
391
392 if (ACPI_FAILURE(status)) {
393 ACPI_BIOS_EXCEPTION((AE_INFO, status,
394 "Index (0x%X%8.8X) is beyond end of object (length 0x%X)",
395 ACPI_FORMAT_UINT64(index),
396 (u32)length));
397 goto cleanup;
398 }
399
400
401
402
403
404 return_desc->reference.object = operand[0];
405 acpi_ut_add_reference(operand[0]);
406
407
408
409 status = acpi_ex_store(return_desc, operand[2], walk_state);
410
411
412
413 walk_state->result_obj = return_desc;
414 goto cleanup;
415
416 default:
417
418 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
419 walk_state->opcode));
420 status = AE_AML_BAD_OPCODE;
421 break;
422 }
423
424 store_result_to_target:
425
426 if (ACPI_SUCCESS(status)) {
427
428
429
430
431 status = acpi_ex_store(return_desc, operand[2], walk_state);
432 if (ACPI_FAILURE(status)) {
433 goto cleanup;
434 }
435
436 if (!walk_state->result_obj) {
437 walk_state->result_obj = return_desc;
438 }
439 }
440
441 cleanup:
442
443
444
445 if (ACPI_FAILURE(status)) {
446 acpi_ut_remove_reference(return_desc);
447 walk_state->result_obj = NULL;
448 }
449
450 return_ACPI_STATUS(status);
451 }
452
453
454
455
456
457
458
459
460
461
462
463
464
465 acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
466 {
467 union acpi_operand_object **operand = &walk_state->operands[0];
468 union acpi_operand_object *return_desc = NULL;
469 acpi_status status = AE_OK;
470 u8 logical_result = FALSE;
471
472 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R,
473 acpi_ps_get_opcode_name(walk_state->opcode));
474
475
476
477 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
478 if (!return_desc) {
479 status = AE_NO_MEMORY;
480 goto cleanup;
481 }
482
483
484
485 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
486
487
488
489 status = acpi_ex_do_logical_numeric_op(walk_state->opcode,
490 operand[0]->integer.
491 value,
492 operand[1]->integer.
493 value, &logical_result);
494 goto store_logical_result;
495 } else if (walk_state->op_info->flags & AML_LOGICAL) {
496
497
498
499 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
500 operand[1], &logical_result);
501 goto store_logical_result;
502 }
503
504 switch (walk_state->opcode) {
505 case AML_ACQUIRE_OP:
506
507 status =
508 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
509 if (status == AE_TIME) {
510 logical_result = TRUE;
511 status = AE_OK;
512 }
513 break;
514
515 case AML_WAIT_OP:
516
517 status = acpi_ex_system_wait_event(operand[1], operand[0]);
518 if (status == AE_TIME) {
519 logical_result = TRUE;
520 status = AE_OK;
521 }
522 break;
523
524 default:
525
526 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
527 walk_state->opcode));
528
529 status = AE_AML_BAD_OPCODE;
530 goto cleanup;
531 }
532
533 store_logical_result:
534
535
536
537
538 if (logical_result) {
539 return_desc->integer.value = ACPI_UINT64_MAX;
540 }
541
542 cleanup:
543
544
545
546 if (ACPI_FAILURE(status)) {
547 acpi_ut_remove_reference(return_desc);
548 }
549
550
551
552 else {
553 walk_state->result_obj = return_desc;
554 }
555
556 return_ACPI_STATUS(status);
557 }