blob: 89cb4bffcc7c047b2fd9f86721cc7e70aeb6feae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: psutils - Parser miscellaneous utilities (Parser only)
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acparser.h"
47#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("psutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_ps_create_scope_op
55 *
56 * PARAMETERS: None
57 *
Robert Moore44f6c012005-04-18 22:49:35 -040058 * RETURN: A new Scope object, null on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
60 * DESCRIPTION: Create a Scope and associated namepath op with the root name
61 *
62 ******************************************************************************/
Lv Zheng62eb9352015-07-23 12:52:24 +080063union acpi_parse_object *acpi_ps_create_scope_op(u8 *aml)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Len Brown4be44fc2005-08-05 00:44:28 -040065 union acpi_parse_object *scope_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Lv Zheng62eb9352015-07-23 12:52:24 +080067 scope_op = acpi_ps_alloc_op(AML_SCOPE_OP, aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (!scope_op) {
69 return (NULL);
70 }
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 scope_op->named.name = ACPI_ROOT_NAME;
73 return (scope_op);
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/*******************************************************************************
77 *
78 * FUNCTION: acpi_ps_init_op
79 *
Bob Mooreba494be2012-07-12 09:40:10 +080080 * PARAMETERS: op - A newly allocated Op object
81 * opcode - Opcode to store in the Op
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Robert Moore44f6c012005-04-18 22:49:35 -040083 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *
Robert Moore44f6c012005-04-18 22:49:35 -040085 * DESCRIPTION: Initialize a parse (Op) object
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 *
87 ******************************************************************************/
88
Len Brown4be44fc2005-08-05 00:44:28 -040089void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Len Brown4be44fc2005-08-05 00:44:28 -040091 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Bob Moore616861242006-03-17 16:44:00 -050093 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 op->common.aml_opcode = opcode;
95
Bob Moore4fa46162015-07-01 14:45:11 +080096 ACPI_DISASM_ONLY_MEMBERS(strncpy(op->common.aml_op_name,
97 (acpi_ps_get_opcode_info(opcode))->
98 name, sizeof(op->common.aml_op_name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*******************************************************************************
102 *
103 * FUNCTION: acpi_ps_alloc_op
104 *
Bob Mooreba494be2012-07-12 09:40:10 +0800105 * PARAMETERS: opcode - Opcode that will be stored in the new Op
Lv Zheng62eb9352015-07-23 12:52:24 +0800106 * aml - Address of the opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
Robert Moore44f6c012005-04-18 22:49:35 -0400108 * RETURN: Pointer to the new Op, null on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
110 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
Bob Moore73a30902012-10-31 02:26:55 +0000111 * opcode. A cache of opcodes is available for the pure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * GENERIC_OP, since this is by far the most commonly used.
113 *
114 ******************************************************************************/
115
Lv Zheng62eb9352015-07-23 12:52:24 +0800116union acpi_parse_object *acpi_ps_alloc_op(u16 opcode, u8 *aml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Len Brown4be44fc2005-08-05 00:44:28 -0400118 union acpi_parse_object *op;
119 const struct acpi_opcode_info *op_info;
120 u8 flags = ACPI_PARSEOP_GENERIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Len Brown4be44fc2005-08-05 00:44:28 -0400122 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Len Brown4be44fc2005-08-05 00:44:28 -0400124 op_info = acpi_ps_get_opcode_info(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Determine type of parse_op required */
127
128 if (op_info->flags & AML_DEFER) {
129 flags = ACPI_PARSEOP_DEFERRED;
Len Brown4be44fc2005-08-05 00:44:28 -0400130 } else if (op_info->flags & AML_NAMED) {
Bob Moore5391abf2016-05-05 12:58:25 +0800131 flags = ACPI_PARSEOP_NAMED_OBJECT;
Len Brown4be44fc2005-08-05 00:44:28 -0400132 } else if (opcode == AML_INT_BYTELIST_OP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 flags = ACPI_PARSEOP_BYTELIST;
134 }
135
136 /* Allocate the minimum required size object */
137
138 if (flags == ACPI_PARSEOP_GENERIC) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* The generic op (default) is by far the most common (16 to 1) */
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142 op = acpi_os_acquire_object(acpi_gbl_ps_node_cache);
Len Brown4be44fc2005-08-05 00:44:28 -0400143 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* Extended parseop */
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146 op = acpi_os_acquire_object(acpi_gbl_ps_node_ext_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 /* Initialize the Op */
150
151 if (op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400152 acpi_ps_init_op(op, opcode);
Lv Zheng62eb9352015-07-23 12:52:24 +0800153 op->common.aml = aml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 op->common.flags = flags;
155 }
156
157 return (op);
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*******************************************************************************
161 *
162 * FUNCTION: acpi_ps_free_op
163 *
Bob Mooreba494be2012-07-12 09:40:10 +0800164 * PARAMETERS: op - Op to be freed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * RETURN: None.
167 *
Bob Moore73a30902012-10-31 02:26:55 +0000168 * DESCRIPTION: Free an Op object. Either put it on the GENERIC_OP cache list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * or actually free it.
170 *
171 ******************************************************************************/
172
Len Brown4be44fc2005-08-05 00:44:28 -0400173void acpi_ps_free_op(union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Bob Mooreb229cf92006-04-21 17:15:00 -0400175 ACPI_FUNCTION_NAME(ps_free_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (op->common.aml_opcode == AML_INT_RETURN_VALUE_OP) {
Bob Moore1fad8732015-12-29 13:54:36 +0800178 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
179 "Free retval op: %p\n", op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
Len Brown4be44fc2005-08-05 00:44:28 -0400183 (void)acpi_os_release_object(acpi_gbl_ps_node_cache, op);
184 } else {
185 (void)acpi_os_release_object(acpi_gbl_ps_node_ext_cache, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*******************************************************************************
190 *
191 * FUNCTION: Utility functions
192 *
193 * DESCRIPTION: Low level character and object functions
194 *
195 ******************************************************************************/
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*
198 * Is "c" a namestring lead character?
199 */
Len Brown4be44fc2005-08-05 00:44:28 -0400200u8 acpi_ps_is_leading_char(u32 c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 return ((u8) (c == '_' || (c >= 'A' && c <= 'Z')));
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * Get op's name (4-byte name segment) or 0 if unnamed
207 */
Len Brown4be44fc2005-08-05 00:44:28 -0400208u32 acpi_ps_get_name(union acpi_parse_object * op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* The "generic" object has no name associated with it */
212
213 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
214 return (0);
215 }
216
217 /* Only the "Extended" parse objects have a name */
218
219 return (op->named.name);
220}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/*
223 * Set op's name
224 */
Len Brown4be44fc2005-08-05 00:44:28 -0400225void acpi_ps_set_name(union acpi_parse_object *op, u32 name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227
228 /* The "generic" object has no name associated with it */
229
230 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
231 return;
232 }
233
234 op->named.name = name;
235}