Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
  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
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
/******************************************************************************
 *
 * Module Name: dswload - Dispatcher namespace load callbacks
 *              $Revision: 26 $
 *
 *****************************************************************************/

/*
 *  Copyright (C) 2000, 2001 R. Byron Moore
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#include "acpi.h"
#include "acparser.h"
#include "amlcode.h"
#include "acdispat.h"
#include "acinterp.h"
#include "acnamesp.h"
#include "acevents.h"


#define _COMPONENT          DISPATCHER
	 MODULE_NAME         ("dswload")


/*****************************************************************************
 *
 * FUNCTION:    Acpi_ds_load1_begin_op
 *
 * PARAMETERS:  Walk_state      - Current state of the parse tree walk
 *              Op              - Op that has been just been reached in the
 *                                walk;  Arguments have not been evaluated yet.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
 *
 ****************************************************************************/

ACPI_STATUS
acpi_ds_load1_begin_op (
	u16                     opcode,
	ACPI_PARSE_OBJECT       *op,
	ACPI_WALK_STATE         *walk_state,
	ACPI_PARSE_OBJECT       **out_op)
{
	ACPI_NAMESPACE_NODE     *node;
	ACPI_STATUS             status;
	OBJECT_TYPE_INTERNAL    data_type;
	NATIVE_CHAR             *path;


	/* We are only interested in opcodes that have an associated name */

	if (!acpi_ps_is_named_op (opcode)) {
		*out_op = op;
		return (AE_OK);
	}


	/* Check if this object has already been installed in the namespace */

	if (op && op->node) {
		*out_op = op;
		return (AE_OK);
	}

	path = acpi_ps_get_next_namestring (walk_state->parser_state);

	/* Map the raw opcode into an internal object type */

	data_type = acpi_ds_map_named_opcode_to_data_type (opcode);



	/*
	 * Enter the named type into the internal namespace.  We enter the name
	 * as we go downward in the parse tree.  Any necessary subobjects that involve
	 * arguments to the opcode must be created as we go back up the parse tree later.
	 */
	status = acpi_ns_lookup (walk_state->scope_info, path,
			 data_type, IMODE_LOAD_PASS1,
			 NS_NO_UPSEARCH, walk_state, &(node));

	if (ACPI_FAILURE (status)) {
		return (status);
	}

	if (!op) {
		/* Create a new op */

		op = acpi_ps_alloc_op (opcode);
		if (!op) {
			return (AE_NO_MEMORY);
		}
	}

	/* Initialize */

	((ACPI_PARSE2_OBJECT *)op)->name = node->name;

	/*
	 * Put the Node in the "op" object that the parser uses, so we
	 * can get it again quickly when this scope is closed
	 */
	op->node = node;


	acpi_ps_append_arg (acpi_ps_get_parent_scope (walk_state->parser_state), op);

	*out_op = op;

	return (status);
}


/*****************************************************************************
 *
 * FUNCTION:    Acpi_ds_load1_end_op
 *
 * PARAMETERS:  Walk_state      - Current state of the parse tree walk
 *              Op              - Op that has been just been completed in the
 *                                walk;  Arguments have now been evaluated.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Ascending callback used during the loading of the namespace,
 *              both control methods and everything else.
 *
 ****************************************************************************/

ACPI_STATUS
acpi_ds_load1_end_op (
	ACPI_WALK_STATE         *walk_state,
	ACPI_PARSE_OBJECT       *op)
{
	OBJECT_TYPE_INTERNAL    data_type;


	/* We are only interested in opcodes that have an associated name */

	if (!acpi_ps_is_named_op (op->opcode)) {
		return (AE_OK);
	}


	/* Get the type to determine if we should pop the scope */

	data_type = acpi_ds_map_named_opcode_to_data_type (op->opcode);

	if (op->opcode == AML_NAME_OP) {
		/* For Name opcode, check the argument */

		if (op->value.arg) {
			data_type = acpi_ds_map_opcode_to_data_type (
					  (op->value.arg)->opcode, NULL);
			((ACPI_NAMESPACE_NODE *)op->node)->type =
					  (u8) data_type;
		}
	}


	/* Pop the scope stack */

	if (acpi_ns_opens_scope (data_type)) {

		acpi_ds_scope_stack_pop (walk_state);
	}

	return (AE_OK);

}


/*****************************************************************************
 *
 * FUNCTION:    Acpi_ds_load2_begin_op
 *
 * PARAMETERS:  Walk_state      - Current state of the parse tree walk
 *              Op              - Op that has been just been reached in the
 *                                walk;  Arguments have not been evaluated yet.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
 *
 ****************************************************************************/

ACPI_STATUS
acpi_ds_load2_begin_op (
	u16                     opcode,
	ACPI_PARSE_OBJECT       *op,
	ACPI_WALK_STATE         *walk_state,
	ACPI_PARSE_OBJECT       **out_op)
{
	ACPI_NAMESPACE_NODE     *node;
	ACPI_STATUS             status;
	OBJECT_TYPE_INTERNAL    data_type;
	NATIVE_CHAR             *buffer_ptr;
	void                    *original = NULL;


	/* We only care about Namespace opcodes here */

	if (!acpi_ps_is_namespace_op (opcode) &&
		opcode != AML_NAMEPATH_OP)
	{
		return (AE_OK);
	}


	/* Temp! same code as in psparse */

	if (!acpi_ps_is_named_op (opcode)) {
		return (AE_OK);
	}

	if (op) {
		/*
		 * Get the name we are going to enter or lookup in the namespace
		 */
		if (opcode == AML_NAMEPATH_OP) {
			/* For Namepath op, get the path string */

			buffer_ptr = op->value.string;
			if (!buffer_ptr) {
				/* No name, just exit */

				return (AE_OK);
			}
		}

		else {
			/* Get name from the op */

			buffer_ptr = (NATIVE_CHAR *) &((ACPI_PARSE2_OBJECT *)op)->name;
		}
	}

	else {
		buffer_ptr = acpi_ps_get_next_namestring (walk_state->parser_state);
	}


	/* Map the raw opcode into an internal object type */

	data_type = acpi_ds_map_named_opcode_to_data_type (opcode);


	if (opcode == AML_DEF_FIELD_OP      ||
		opcode == AML_BANK_FIELD_OP     ||
		opcode == AML_INDEX_FIELD_OP)
	{
		node = NULL;
		status = AE_OK;
	}

	else if (opcode == AML_NAMEPATH_OP) {
		/*
		 * The Name_path is an object reference to an existing object. Don't enter the
		 * name into the namespace, but look it up for use later
		 */
		status = acpi_ns_lookup (walk_state->scope_info, buffer_ptr,
				 data_type, IMODE_EXECUTE,
				 NS_SEARCH_PARENT, walk_state,
				 &(node));
	}

	else {
		if (op && op->node) {
			original = op->node;
			node = op->node;

			if (acpi_ns_opens_scope (data_type)) {
				status = acpi_ds_scope_stack_push (node,
						   data_type,
						   walk_state);
				if (ACPI_FAILURE (status)) {
					return (status);
				}

			}
			return (AE_OK);
		}

		/*
		 * Enter the named type into the internal namespace.  We enter the name
		 * as we go downward in the parse tree.  Any necessary subobjects that involve
		 * arguments to the opcode must be created as we go back up the parse tree later.
		 */
		status = acpi_ns_lookup (walk_state->scope_info, buffer_ptr,
				 data_type, IMODE_EXECUTE,
				 NS_NO_UPSEARCH, walk_state,
				 &(node));
	}

	if (ACPI_SUCCESS (status)) {
		if (!op) {
			/* Create a new op */

			op = acpi_ps_alloc_op (opcode);
			if (!op) {
				return (AE_NO_MEMORY);
			}

			/* Initialize */

			((ACPI_PARSE2_OBJECT *)op)->name = node->name;
			*out_op = op;
		}


		/*
		 * Put the Node in the "op" object that the parser uses, so we
		 * can get it again quickly when this scope is closed
		 */
		op->node = node;

	}


	return (status);
}


/*****************************************************************************
 *
 * FUNCTION:    Acpi_ds_load2_end_op
 *
 * PARAMETERS:  Walk_state      - Current state of the parse tree walk
 *              Op              - Op that has been just been completed in the
 *                                walk;  Arguments have now been evaluated.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Ascending callback used during the loading of the namespace,
 *              both control methods and everything else.
 *
 ****************************************************************************/

ACPI_STATUS
acpi_ds_load2_end_op (
	ACPI_WALK_STATE         *walk_state,
	ACPI_PARSE_OBJECT       *op)
{
	ACPI_STATUS             status = AE_OK;
	OBJECT_TYPE_INTERNAL    data_type;
	ACPI_NAMESPACE_NODE     *node;
	ACPI_PARSE_OBJECT       *arg;
	ACPI_NAMESPACE_NODE     *new_node;


	if (!acpi_ps_is_namespace_object_op (op->opcode)) {
		return (AE_OK);
	}

	if (op->opcode == AML_SCOPE_OP) {
		if (((ACPI_PARSE2_OBJECT *)op)->name == -1) {
			return (AE_OK);
		}
	}


	data_type = acpi_ds_map_named_opcode_to_data_type (op->opcode);

	/*
	 * Get the Node/name from the earlier lookup
	 * (It was saved in the *op structure)
	 */
	node = op->node;

	/*
	 * Put the Node on the object stack (Contains the ACPI Name of
	 * this object)
	 */

	walk_state->operands[0] = (void *) node;
	walk_state->num_operands = 1;

	/* Pop the scope stack */

	if (acpi_ns_opens_scope (data_type)) {

		acpi_ds_scope_stack_pop (walk_state);
	}


	/*
	 * Named operations are as follows:
	 *
	 * AML_SCOPE
	 * AML_DEVICE
	 * AML_THERMALZONE
	 * AML_METHOD
	 * AML_POWERRES
	 * AML_PROCESSOR
	 * AML_FIELD
	 * AML_INDEXFIELD
	 * AML_BANKFIELD
	 * AML_NAMEDFIELD
	 * AML_NAME
	 * AML_ALIAS
	 * AML_MUTEX
	 * AML_EVENT
	 * AML_OPREGION
	 * AML_CREATEFIELD
	 * AML_CREATEBITFIELD
	 * AML_CREATEBYTEFIELD
	 * AML_CREATEWORDFIELD
	 * AML_CREATEDWORDFIELD
	 * AML_METHODCALL
	 */


	/* Decode the opcode */

	arg = op->value.arg;

	switch (op->opcode)
	{

	case AML_CREATE_FIELD_OP:
	case AML_BIT_FIELD_OP:
	case AML_BYTE_FIELD_OP:
	case AML_WORD_FIELD_OP:
	case AML_DWORD_FIELD_OP:

		/*
		 * Create the field object, but the field buffer and index must
		 * be evaluated later during the execution phase
		 */

		/* Get the Name_string argument */

		if (op->opcode == AML_CREATE_FIELD_OP) {
			arg = acpi_ps_get_arg (op, 3);
		}
		else {
			/* Create Bit/Byte/Word/Dword field */

			arg = acpi_ps_get_arg (op, 2);
		}

		/*
		 * Enter the Name_string into the namespace
		 */

		status = acpi_ns_lookup (walk_state->scope_info,
				 arg->value.string,
				 INTERNAL_TYPE_DEF_ANY,
				 IMODE_LOAD_PASS1,
				 NS_NO_UPSEARCH | NS_DONT_OPEN_SCOPE,
				 walk_state, &(new_node));

		if (ACPI_SUCCESS (status)) {
			/* We could put the returned object (Node) on the object stack for later, but
			 * for now, we will put it in the "op" object that the parser uses, so we
			 * can get it again at the end of this scope
			 */
			op->node = new_node;

			/*
			 * If there is no object attached to the node, this node was just created and
			 * we need to create the field object.  Otherwise, this was a lookup of an
			 * existing node and we don't want to create the field object again.
			 */
			if (!new_node->object) {
				/*
				 * The Field definition is not fully parsed at this time.
				 * (We must save the address of the AML for the buffer and index operands)
				 */
				status = acpi_aml_exec_create_field (((ACPI_PARSE2_OBJECT *) op)->data,
						   ((ACPI_PARSE2_OBJECT *) op)->length,
						   new_node, walk_state);
			}
		}


		break;


	case AML_METHODCALL_OP:

		/*
		 * Lookup the method name and save the Node
		 */

		status = acpi_ns_lookup (walk_state->scope_info, arg->value.string,
				 ACPI_TYPE_ANY, IMODE_LOAD_PASS2,
				 NS_SEARCH_PARENT | NS_DONT_OPEN_SCOPE,
				 walk_state, &(new_node));

		if (ACPI_SUCCESS (status)) {

/* has name already been resolved by here ??*/

			/* TBD: [Restructure] Make sure that what we found is indeed a method! */
			/* We didn't search for a method on purpose, to see if the name would resolve! */

			/* We could put the returned object (Node) on the object stack for later, but
			 * for now, we will put it in the "op" object that the parser uses, so we
			 * can get it again at the end of this scope
			 */
			op->node = new_node;
		}


		 break;


	case AML_PROCESSOR_OP:

		/* Nothing to do other than enter object into namespace */

		status = acpi_aml_exec_create_processor (op, (ACPI_HANDLE) node);
		if (ACPI_FAILURE (status)) {
			goto cleanup;
		}

		break;


	case AML_POWER_RES_OP:

		/* Nothing to do other than enter object into namespace */

		status = acpi_aml_exec_create_power_resource (op, (ACPI_HANDLE) node);
		if (ACPI_FAILURE (status)) {
			goto cleanup;
		}

		break;


	case AML_THERMAL_ZONE_OP:

		/* Nothing to do other than enter object into namespace */

		break;


	case AML_DEF_FIELD_OP:

		arg = op->value.arg;

		status = acpi_ds_create_field (op,
				  arg->node,
				  walk_state);
		break;


	case AML_INDEX_FIELD_OP:

		arg = op->value.arg;

		status = acpi_ds_create_index_field (op,
				   (ACPI_HANDLE) arg->node,
				   walk_state);
		break;


	case AML_BANK_FIELD_OP:

		arg = op->value.arg;
		status = acpi_ds_create_bank_field (op,
				   arg->node,
				   walk_state);
		break;


	/*
	 * Method_op Pkg_length Names_string Method_flags Term_list
	 */
	case AML_METHOD_OP:

		if (!node->object) {
			status = acpi_aml_exec_create_method (((ACPI_PARSE2_OBJECT *) op)->data,
					   ((ACPI_PARSE2_OBJECT *) op)->length,
					   arg->value.integer, (ACPI_HANDLE) node);
		}

		break;


	case AML_MUTEX_OP:

		status = acpi_ds_create_operands (walk_state, arg);
		if (ACPI_FAILURE (status)) {
			goto cleanup;
		}

		status = acpi_aml_exec_create_mutex (walk_state);
		break;


	case AML_EVENT_OP:

		status = acpi_ds_create_operands (walk_state, arg);
		if (ACPI_FAILURE (status)) {
			goto cleanup;
		}

		status = acpi_aml_exec_create_event (walk_state);
		break;


	case AML_REGION_OP:

		if (node->object) {
			break;
		}


		/*
		 * The Op_region is not fully parsed at this time. Only valid argument is the Space_id.
		 * (We must save the address of the AML of the address and length operands)
		 */

		status = acpi_aml_exec_create_region (((ACPI_PARSE2_OBJECT *) op)->data,
				   ((ACPI_PARSE2_OBJECT *) op)->length,
				   (ACPI_ADDRESS_SPACE_TYPE) arg->value.integer,
				   walk_state);

		break;


	/* Namespace Modifier Opcodes */

	case AML_ALIAS_OP:

		status = acpi_ds_create_operands (walk_state, arg);
		if (ACPI_FAILURE (status)) {
			goto cleanup;
		}

		status = acpi_aml_exec_create_alias (walk_state);
		break;


	case AML_NAME_OP:

		/*
		 * Because of the execution pass through the non-control-method
		 * parts of the table, we can arrive here twice.  Only init
		 * the named object node the first time through
		 */

		if (!node->object) {
			status = acpi_ds_create_node (walk_state, node, op);
		}

		break;


	case AML_NAMEPATH_OP:

		break;


	default:
		break;
	}


cleanup:

	/* Remove the Node pushed at the very beginning */

	acpi_ds_obj_stack_pop (1, walk_state);
	return (status);
}