1 /******************************************************************************
3 * Module Name: dsfield - Dispatcher field routines
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2008, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/amlcode.h>
46 #include <acpi/acdispat.h>
47 #include <acpi/acinterp.h>
48 #include <acpi/acnamesp.h>
49 #include <acpi/acparser.h>
51 #define _COMPONENT ACPI_DISPATCHER
52 ACPI_MODULE_NAME("dsfield")
54 /* Local prototypes */
56 acpi_ds_get_field_names(struct acpi_create_field_info *info,
57 struct acpi_walk_state *walk_state,
58 union acpi_parse_object *arg);
60 /*******************************************************************************
62 * FUNCTION: acpi_ds_create_buffer_field
64 * PARAMETERS: Op - Current parse op (create_xXField)
65 * walk_state - Current state
69 * DESCRIPTION: Execute the create_field operators:
70 * create_bit_field_op,
71 * create_byte_field_op,
72 * create_word_field_op,
73 * create_dword_field_op,
74 * create_qword_field_op,
75 * create_field_op (all of which define a field in a buffer)
77 ******************************************************************************/
80 acpi_ds_create_buffer_field(union acpi_parse_object *op,
81 struct acpi_walk_state *walk_state)
83 union acpi_parse_object *arg;
84 struct acpi_namespace_node *node;
86 union acpi_operand_object *obj_desc;
87 union acpi_operand_object *second_desc = NULL;
90 ACPI_FUNCTION_TRACE(ds_create_buffer_field);
93 * Get the name_string argument (name of the new buffer_field)
95 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) {
97 /* For create_field, name is the 4th argument */
99 arg = acpi_ps_get_arg(op, 3);
101 /* For all other create_xXXField operators, name is the 3rd argument */
103 arg = acpi_ps_get_arg(op, 2);
107 return_ACPI_STATUS(AE_AML_NO_OPERAND);
110 if (walk_state->deferred_node) {
111 node = walk_state->deferred_node;
114 /* Execute flag should always be set when this function is entered */
116 if (!(walk_state->parse_flags & ACPI_PARSE_EXECUTE)) {
117 return_ACPI_STATUS(AE_AML_INTERNAL);
120 /* Creating new namespace node, should not already exist */
122 flags = ACPI_NS_NO_UPSEARCH | ACPI_NS_DONT_OPEN_SCOPE |
123 ACPI_NS_ERROR_IF_FOUND;
125 /* Mark node temporary if we are executing a method */
127 if (walk_state->method_node) {
128 flags |= ACPI_NS_TEMPORARY;
131 /* Enter the name_string into the namespace */
134 acpi_ns_lookup(walk_state->scope_info,
135 arg->common.value.string, ACPI_TYPE_ANY,
136 ACPI_IMODE_LOAD_PASS1, flags, walk_state,
138 if (ACPI_FAILURE(status)) {
139 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
140 return_ACPI_STATUS(status);
145 * We could put the returned object (Node) on the object stack for later,
146 * but for now, we will put it in the "op" object that the parser uses,
147 * so we can get it again at the end of this scope.
149 op->common.node = node;
152 * If there is no object attached to the node, this node was just created
153 * and we need to create the field object. Otherwise, this was a lookup
154 * of an existing node and we don't want to create the field object again.
156 obj_desc = acpi_ns_get_attached_object(node);
158 return_ACPI_STATUS(AE_OK);
162 * The Field definition is not fully parsed at this time.
163 * (We must save the address of the AML for the buffer and index operands)
166 /* Create the buffer field object */
168 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER_FIELD);
170 status = AE_NO_MEMORY;
175 * Remember location in AML stream of the field unit opcode and operands --
176 * since the buffer and index operands must be evaluated.
178 second_desc = obj_desc->common.next_object;
179 second_desc->extra.aml_start = op->named.data;
180 second_desc->extra.aml_length = op->named.length;
181 obj_desc->buffer_field.node = node;
183 /* Attach constructed field descriptors to parent node */
185 status = acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_BUFFER_FIELD);
186 if (ACPI_FAILURE(status)) {
192 /* Remove local reference to the object */
194 acpi_ut_remove_reference(obj_desc);
195 return_ACPI_STATUS(status);
198 /*******************************************************************************
200 * FUNCTION: acpi_ds_get_field_names
202 * PARAMETERS: Info - create_field info structure
203 * ` walk_state - Current method state
204 * Arg - First parser arg for the field name list
208 * DESCRIPTION: Process all named fields in a field declaration. Names are
209 * entered into the namespace.
211 ******************************************************************************/
214 acpi_ds_get_field_names(struct acpi_create_field_info *info,
215 struct acpi_walk_state *walk_state,
216 union acpi_parse_object *arg)
219 acpi_integer position;
221 ACPI_FUNCTION_TRACE_PTR(ds_get_field_names, info);
223 /* First field starts at bit zero */
225 info->field_bit_position = 0;
227 /* Process all elements in the field list (of parse nodes) */
231 * Three types of field elements are handled:
232 * 1) Offset - specifies a bit offset
233 * 2) access_as - changes the access mode
234 * 3) Name - Enters a new named field into the namespace
236 switch (arg->common.aml_opcode) {
237 case AML_INT_RESERVEDFIELD_OP:
239 position = (acpi_integer) info->field_bit_position
240 + (acpi_integer) arg->common.value.size;
242 if (position > ACPI_UINT32_MAX) {
244 "Bit offset within field too large (> 0xFFFFFFFF)"));
245 return_ACPI_STATUS(AE_SUPPORT);
248 info->field_bit_position = (u32) position;
251 case AML_INT_ACCESSFIELD_OP:
254 * Get a new access_type and access_attribute -- to be used for all
255 * field units that follow, until field end or another access_as
258 * In field_flags, preserve the flag bits other than the
261 info->field_flags = (u8)
263 field_flags & ~(AML_FIELD_ACCESS_TYPE_MASK)) |
264 ((u8) ((u32) arg->common.value.integer >> 8)));
266 info->attribute = (u8) (arg->common.value.integer);
269 case AML_INT_NAMEDFIELD_OP:
271 /* Lookup the name, it should already exist */
273 status = acpi_ns_lookup(walk_state->scope_info,
274 (char *)&arg->named.name,
277 ACPI_NS_DONT_OPEN_SCOPE,
278 walk_state, &info->field_node);
279 if (ACPI_FAILURE(status)) {
280 ACPI_ERROR_NAMESPACE((char *)&arg->named.name,
282 return_ACPI_STATUS(status);
284 arg->common.node = info->field_node;
285 info->field_bit_length = arg->common.value.size;
288 * If there is no object attached to the node, this node was
289 * just created and we need to create the field object.
290 * Otherwise, this was a lookup of an existing node and we
291 * don't want to create the field object again.
293 if (!acpi_ns_get_attached_object
294 (info->field_node)) {
295 status = acpi_ex_prep_field_value(info);
296 if (ACPI_FAILURE(status)) {
297 return_ACPI_STATUS(status);
302 /* Keep track of bit position for the next field */
304 position = (acpi_integer) info->field_bit_position
305 + (acpi_integer) arg->common.value.size;
307 if (position > ACPI_UINT32_MAX) {
309 "Field [%4.4s] bit offset too large (> 0xFFFFFFFF)",
313 return_ACPI_STATUS(AE_SUPPORT);
316 info->field_bit_position += info->field_bit_length;
322 "Invalid opcode in field list: %X",
323 arg->common.aml_opcode));
324 return_ACPI_STATUS(AE_AML_BAD_OPCODE);
327 arg = arg->common.next;
330 return_ACPI_STATUS(AE_OK);
333 /*******************************************************************************
335 * FUNCTION: acpi_ds_create_field
337 * PARAMETERS: Op - Op containing the Field definition and args
338 * region_node - Object for the containing Operation Region
339 * ` walk_state - Current method state
343 * DESCRIPTION: Create a new field in the specified operation region
345 ******************************************************************************/
348 acpi_ds_create_field(union acpi_parse_object *op,
349 struct acpi_namespace_node *region_node,
350 struct acpi_walk_state *walk_state)
353 union acpi_parse_object *arg;
354 struct acpi_create_field_info info;
356 ACPI_FUNCTION_TRACE_PTR(ds_create_field, op);
358 /* First arg is the name of the parent op_region (must already exist) */
360 arg = op->common.value.arg;
363 acpi_ns_lookup(walk_state->scope_info,
364 arg->common.value.name, ACPI_TYPE_REGION,
365 ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
366 walk_state, ®ion_node);
367 if (ACPI_FAILURE(status)) {
368 ACPI_ERROR_NAMESPACE(arg->common.value.name, status);
369 return_ACPI_STATUS(status);
373 /* Second arg is the field flags */
375 arg = arg->common.next;
376 info.field_flags = (u8) arg->common.value.integer;
379 /* Each remaining arg is a Named Field */
381 info.field_type = ACPI_TYPE_LOCAL_REGION_FIELD;
382 info.region_node = region_node;
384 status = acpi_ds_get_field_names(&info, walk_state, arg->common.next);
386 return_ACPI_STATUS(status);
389 /*******************************************************************************
391 * FUNCTION: acpi_ds_init_field_objects
393 * PARAMETERS: Op - Op containing the Field definition and args
394 * ` walk_state - Current method state
398 * DESCRIPTION: For each "Field Unit" name in the argument list that is
399 * part of the field declaration, enter the name into the
402 ******************************************************************************/
405 acpi_ds_init_field_objects(union acpi_parse_object *op,
406 struct acpi_walk_state *walk_state)
409 union acpi_parse_object *arg = NULL;
410 struct acpi_namespace_node *node;
414 ACPI_FUNCTION_TRACE_PTR(ds_init_field_objects, op);
416 /* Execute flag should always be set when this function is entered */
418 if (!(walk_state->parse_flags & ACPI_PARSE_EXECUTE)) {
419 if (walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP) {
421 /* bank_field Op is deferred, just return OK */
423 return_ACPI_STATUS(AE_OK);
426 return_ACPI_STATUS(AE_AML_INTERNAL);
430 * Get the field_list argument for this opcode. This is the start of the
431 * list of field elements.
433 switch (walk_state->opcode) {
435 arg = acpi_ps_get_arg(op, 2);
436 type = ACPI_TYPE_LOCAL_REGION_FIELD;
439 case AML_BANK_FIELD_OP:
440 arg = acpi_ps_get_arg(op, 4);
441 type = ACPI_TYPE_LOCAL_BANK_FIELD;
444 case AML_INDEX_FIELD_OP:
445 arg = acpi_ps_get_arg(op, 3);
446 type = ACPI_TYPE_LOCAL_INDEX_FIELD;
450 return_ACPI_STATUS(AE_BAD_PARAMETER);
454 return_ACPI_STATUS(AE_AML_NO_OPERAND);
457 /* Creating new namespace node(s), should not already exist */
459 flags = ACPI_NS_NO_UPSEARCH | ACPI_NS_DONT_OPEN_SCOPE |
460 ACPI_NS_ERROR_IF_FOUND;
462 /* Mark node(s) temporary if we are executing a method */
464 if (walk_state->method_node) {
465 flags |= ACPI_NS_TEMPORARY;
469 * Walk the list of entries in the field_list
473 * Ignore OFFSET and ACCESSAS terms here; we are only interested in the
474 * field names in order to enter them into the namespace.
476 if (arg->common.aml_opcode == AML_INT_NAMEDFIELD_OP) {
477 status = acpi_ns_lookup(walk_state->scope_info,
478 (char *)&arg->named.name, type,
479 ACPI_IMODE_LOAD_PASS1, flags,
481 if (ACPI_FAILURE(status)) {
482 ACPI_ERROR_NAMESPACE((char *)&arg->named.name,
484 if (status != AE_ALREADY_EXISTS) {
485 return_ACPI_STATUS(status);
488 /* Name already exists, just ignore this error */
493 arg->common.node = node;
496 /* Get the next field element in the list */
498 arg = arg->common.next;
501 return_ACPI_STATUS(AE_OK);
504 /*******************************************************************************
506 * FUNCTION: acpi_ds_create_bank_field
508 * PARAMETERS: Op - Op containing the Field definition and args
509 * region_node - Object for the containing Operation Region
510 * walk_state - Current method state
514 * DESCRIPTION: Create a new bank field in the specified operation region
516 ******************************************************************************/
519 acpi_ds_create_bank_field(union acpi_parse_object *op,
520 struct acpi_namespace_node *region_node,
521 struct acpi_walk_state *walk_state)
524 union acpi_parse_object *arg;
525 struct acpi_create_field_info info;
527 ACPI_FUNCTION_TRACE_PTR(ds_create_bank_field, op);
529 /* First arg is the name of the parent op_region (must already exist) */
531 arg = op->common.value.arg;
534 acpi_ns_lookup(walk_state->scope_info,
535 arg->common.value.name, ACPI_TYPE_REGION,
536 ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
537 walk_state, ®ion_node);
538 if (ACPI_FAILURE(status)) {
539 ACPI_ERROR_NAMESPACE(arg->common.value.name, status);
540 return_ACPI_STATUS(status);
544 /* Second arg is the Bank Register (Field) (must already exist) */
546 arg = arg->common.next;
548 acpi_ns_lookup(walk_state->scope_info, arg->common.value.string,
549 ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
550 ACPI_NS_SEARCH_PARENT, walk_state,
551 &info.register_node);
552 if (ACPI_FAILURE(status)) {
553 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
554 return_ACPI_STATUS(status);
558 * Third arg is the bank_value
559 * This arg is a term_arg, not a constant
560 * It will be evaluated later, by acpi_ds_eval_bank_field_operands
562 arg = arg->common.next;
564 /* Fourth arg is the field flags */
566 arg = arg->common.next;
567 info.field_flags = (u8) arg->common.value.integer;
569 /* Each remaining arg is a Named Field */
571 info.field_type = ACPI_TYPE_LOCAL_BANK_FIELD;
572 info.region_node = region_node;
575 * Use Info.data_register_node to store bank_field Op
576 * It's safe because data_register_node will never be used when create bank field
577 * We store aml_start and aml_length in the bank_field Op for late evaluation
578 * Used in acpi_ex_prep_field_value(Info)
580 * TBD: Or, should we add a field in struct acpi_create_field_info, like "void *ParentOp"?
582 info.data_register_node = (struct acpi_namespace_node *)op;
584 status = acpi_ds_get_field_names(&info, walk_state, arg->common.next);
585 return_ACPI_STATUS(status);
588 /*******************************************************************************
590 * FUNCTION: acpi_ds_create_index_field
592 * PARAMETERS: Op - Op containing the Field definition and args
593 * region_node - Object for the containing Operation Region
594 * ` walk_state - Current method state
598 * DESCRIPTION: Create a new index field in the specified operation region
600 ******************************************************************************/
603 acpi_ds_create_index_field(union acpi_parse_object *op,
604 struct acpi_namespace_node *region_node,
605 struct acpi_walk_state *walk_state)
608 union acpi_parse_object *arg;
609 struct acpi_create_field_info info;
611 ACPI_FUNCTION_TRACE_PTR(ds_create_index_field, op);
613 /* First arg is the name of the Index register (must already exist) */
615 arg = op->common.value.arg;
617 acpi_ns_lookup(walk_state->scope_info, arg->common.value.string,
618 ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
619 ACPI_NS_SEARCH_PARENT, walk_state,
620 &info.register_node);
621 if (ACPI_FAILURE(status)) {
622 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
623 return_ACPI_STATUS(status);
626 /* Second arg is the data register (must already exist) */
628 arg = arg->common.next;
630 acpi_ns_lookup(walk_state->scope_info, arg->common.value.string,
631 ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
632 ACPI_NS_SEARCH_PARENT, walk_state,
633 &info.data_register_node);
634 if (ACPI_FAILURE(status)) {
635 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
636 return_ACPI_STATUS(status);
639 /* Next arg is the field flags */
641 arg = arg->common.next;
642 info.field_flags = (u8) arg->common.value.integer;
644 /* Each remaining arg is a Named Field */
646 info.field_type = ACPI_TYPE_LOCAL_INDEX_FIELD;
647 info.region_node = region_node;
649 status = acpi_ds_get_field_names(&info, walk_state, arg->common.next);
651 return_ACPI_STATUS(status);