blob: fe151f42de3a5b02d0f75731ea894ec2edcb496e [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 Mooreda6f8322018-01-04 10:06:38 -08008 * Copyright (C) 2000 - 2018, 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"
Bob Moore9cf7ade2017-04-28 08:53:22 +080048#include "acconvert.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("psutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_ps_create_scope_op
56 *
57 * PARAMETERS: None
58 *
Robert Moore44f6c012005-04-18 22:49:35 -040059 * RETURN: A new Scope object, null on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * DESCRIPTION: Create a Scope and associated namepath op with the root name
62 *
63 ******************************************************************************/
Lv Zheng62eb9352015-07-23 12:52:24 +080064union acpi_parse_object *acpi_ps_create_scope_op(u8 *aml)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Len Brown4be44fc2005-08-05 00:44:28 -040066 union acpi_parse_object *scope_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Lv Zheng62eb9352015-07-23 12:52:24 +080068 scope_op = acpi_ps_alloc_op(AML_SCOPE_OP, aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (!scope_op) {
70 return (NULL);
71 }
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 scope_op->named.name = ACPI_ROOT_NAME;
74 return (scope_op);
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*******************************************************************************
78 *
79 * FUNCTION: acpi_ps_init_op
80 *
Bob Mooreba494be2012-07-12 09:40:10 +080081 * PARAMETERS: op - A newly allocated Op object
82 * opcode - Opcode to store in the Op
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
Robert Moore44f6c012005-04-18 22:49:35 -040084 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *
Robert Moore44f6c012005-04-18 22:49:35 -040086 * DESCRIPTION: Initialize a parse (Op) object
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
88 ******************************************************************************/
89
Len Brown4be44fc2005-08-05 00:44:28 -040090void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Len Brown4be44fc2005-08-05 00:44:28 -040092 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Bob Moore616861242006-03-17 16:44:00 -050094 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 op->common.aml_opcode = opcode;
96
Bob Mooreee68d472018-01-04 13:41:27 -080097 ACPI_DISASM_ONLY_MEMBERS(acpi_ut_safe_strncpy(op->common.aml_op_name,
98 (acpi_ps_get_opcode_info
99 (opcode))->name,
100 sizeof(op->common.
101 aml_op_name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*******************************************************************************
105 *
106 * FUNCTION: acpi_ps_alloc_op
107 *
Bob Mooreba494be2012-07-12 09:40:10 +0800108 * PARAMETERS: opcode - Opcode that will be stored in the new Op
Lv Zheng62eb9352015-07-23 12:52:24 +0800109 * aml - Address of the opcode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 *
Robert Moore44f6c012005-04-18 22:49:35 -0400111 * RETURN: Pointer to the new Op, null on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 *
113 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
Bob Moore73a30902012-10-31 02:26:55 +0000114 * opcode. A cache of opcodes is available for the pure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * GENERIC_OP, since this is by far the most commonly used.
116 *
117 ******************************************************************************/
118
Lv Zheng62eb9352015-07-23 12:52:24 +0800119union acpi_parse_object *acpi_ps_alloc_op(u16 opcode, u8 *aml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Len Brown4be44fc2005-08-05 00:44:28 -0400121 union acpi_parse_object *op;
122 const struct acpi_opcode_info *op_info;
123 u8 flags = ACPI_PARSEOP_GENERIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Len Brown4be44fc2005-08-05 00:44:28 -0400127 op_info = acpi_ps_get_opcode_info(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* Determine type of parse_op required */
130
131 if (op_info->flags & AML_DEFER) {
132 flags = ACPI_PARSEOP_DEFERRED;
Len Brown4be44fc2005-08-05 00:44:28 -0400133 } else if (op_info->flags & AML_NAMED) {
Bob Moore5391abf2016-05-05 12:58:25 +0800134 flags = ACPI_PARSEOP_NAMED_OBJECT;
Len Brown4be44fc2005-08-05 00:44:28 -0400135 } else if (opcode == AML_INT_BYTELIST_OP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 flags = ACPI_PARSEOP_BYTELIST;
137 }
138
139 /* Allocate the minimum required size object */
140
141 if (flags == ACPI_PARSEOP_GENERIC) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* The generic op (default) is by far the most common (16 to 1) */
144
Len Brown4be44fc2005-08-05 00:44:28 -0400145 op = acpi_os_acquire_object(acpi_gbl_ps_node_cache);
Len Brown4be44fc2005-08-05 00:44:28 -0400146 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Extended parseop */
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149 op = acpi_os_acquire_object(acpi_gbl_ps_node_ext_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
152 /* Initialize the Op */
153
154 if (op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_ps_init_op(op, opcode);
Lv Zheng62eb9352015-07-23 12:52:24 +0800156 op->common.aml = aml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 op->common.flags = flags;
Bob Moore9cf7ade2017-04-28 08:53:22 +0800158 ASL_CV_CLEAR_OP_COMMENTS(op);
159
160 if (opcode == AML_SCOPE_OP) {
161 acpi_gbl_current_scope = op;
162 }
Bob Moore9cf7ade2017-04-28 08:53:22 +0800163
Bob Mooreee174d32018-01-03 15:06:26 -0800164 if (acpi_gbl_capture_comments) {
Colin Ian King29ad1f82017-11-17 15:40:17 -0800165 ASL_CV_TRANSFER_COMMENTS(op);
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
169 return (op);
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*******************************************************************************
173 *
174 * FUNCTION: acpi_ps_free_op
175 *
Bob Mooreba494be2012-07-12 09:40:10 +0800176 * PARAMETERS: op - Op to be freed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 *
178 * RETURN: None.
179 *
Bob Moore73a30902012-10-31 02:26:55 +0000180 * DESCRIPTION: Free an Op object. Either put it on the GENERIC_OP cache list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * or actually free it.
182 *
183 ******************************************************************************/
184
Len Brown4be44fc2005-08-05 00:44:28 -0400185void acpi_ps_free_op(union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Bob Mooreb229cf92006-04-21 17:15:00 -0400187 ACPI_FUNCTION_NAME(ps_free_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bob Moore9cf7ade2017-04-28 08:53:22 +0800189 ASL_CV_CLEAR_OP_COMMENTS(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (op->common.aml_opcode == AML_INT_RETURN_VALUE_OP) {
Bob Moore1fad8732015-12-29 13:54:36 +0800191 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
192 "Free retval op: %p\n", op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
195 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
Len Brown4be44fc2005-08-05 00:44:28 -0400196 (void)acpi_os_release_object(acpi_gbl_ps_node_cache, op);
197 } else {
198 (void)acpi_os_release_object(acpi_gbl_ps_node_ext_cache, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*******************************************************************************
203 *
204 * FUNCTION: Utility functions
205 *
206 * DESCRIPTION: Low level character and object functions
207 *
208 ******************************************************************************/
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*
211 * Is "c" a namestring lead character?
212 */
Len Brown4be44fc2005-08-05 00:44:28 -0400213u8 acpi_ps_is_leading_char(u32 c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 return ((u8) (c == '_' || (c >= 'A' && c <= 'Z')));
216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * Get op's name (4-byte name segment) or 0 if unnamed
220 */
Len Brown4be44fc2005-08-05 00:44:28 -0400221u32 acpi_ps_get_name(union acpi_parse_object * op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* The "generic" object has no name associated with it */
225
226 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
227 return (0);
228 }
229
230 /* Only the "Extended" parse objects have a name */
231
232 return (op->named.name);
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235/*
236 * Set op's name
237 */
Len Brown4be44fc2005-08-05 00:44:28 -0400238void acpi_ps_set_name(union acpi_parse_object *op, u32 name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240
241 /* The "generic" object has no name associated with it */
242
243 if (op->common.flags & ACPI_PARSEOP_GENERIC) {
244 return;
245 }
246
247 op->named.name = name;
248}