ACPICA: Fix for Load/LoadTable to specify load location
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / namespace / nsparse.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: nsparse - namespace interface to AML parser
4 *
5 *****************************************************************************/
6
7/*
6c9deb72 8 * Copyright (C) 2000 - 2007, R. Byron Moore
1da177e4
LT
9 * 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
1da177e4
LT
44#include <acpi/acpi.h>
45#include <acpi/acnamesp.h>
46#include <acpi/acparser.h>
47#include <acpi/acdispat.h>
f3d2e786 48#include <acpi/actables.h>
1da177e4 49
1da177e4 50#define _COMPONENT ACPI_NAMESPACE
4be44fcd 51ACPI_MODULE_NAME("nsparse")
1da177e4
LT
52
53/*******************************************************************************
54 *
55 * FUNCTION: ns_one_complete_parse
56 *
57 * PARAMETERS: pass_number - 1 or 2
58 * table_desc - The table to be parsed.
59 *
60 * RETURN: Status
61 *
62 * DESCRIPTION: Perform one complete parse of an ACPI/AML table.
63 *
64 ******************************************************************************/
1da177e4 65acpi_status
f3d2e786 66acpi_ns_one_complete_parse(acpi_native_uint pass_number,
7f4ac9f9
BM
67 acpi_native_uint table_index,
68 struct acpi_namespace_node * start_node)
1da177e4 69{
4be44fcd
LB
70 union acpi_parse_object *parse_root;
71 acpi_status status;
f3d2e786
BM
72 acpi_native_uint aml_length;
73 u8 *aml_start;
4be44fcd 74 struct acpi_walk_state *walk_state;
f3d2e786
BM
75 struct acpi_table_header *table;
76 acpi_owner_id owner_id;
1da177e4 77
b229cf92 78 ACPI_FUNCTION_TRACE(ns_one_complete_parse);
1da177e4 79
f3d2e786
BM
80 status = acpi_tb_get_owner_id(table_index, &owner_id);
81 if (ACPI_FAILURE(status)) {
82 return_ACPI_STATUS(status);
83 }
84
1da177e4
LT
85 /* Create and init a Root Node */
86
4be44fcd 87 parse_root = acpi_ps_create_scope_op();
1da177e4 88 if (!parse_root) {
4be44fcd 89 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
90 }
91
92 /* Create and initialize a new walk state */
93
f3d2e786 94 walk_state = acpi_ds_create_walk_state(owner_id, NULL, NULL, NULL);
1da177e4 95 if (!walk_state) {
4be44fcd
LB
96 acpi_ps_free_op(parse_root);
97 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
98 }
99
f3d2e786
BM
100 status = acpi_get_table_by_index(table_index, &table);
101 if (ACPI_FAILURE(status)) {
102 acpi_ds_delete_walk_state(walk_state);
103 acpi_ps_free_op(parse_root);
104 return_ACPI_STATUS(status);
105 }
106
107 /* Table must consist of at least a complete header */
108
109 if (table->length < sizeof(struct acpi_table_header)) {
110 status = AE_BAD_HEADER;
111 } else {
112 aml_start = (u8 *) table + sizeof(struct acpi_table_header);
113 aml_length = table->length - sizeof(struct acpi_table_header);
114 status = acpi_ds_init_aml_walk(walk_state, parse_root, NULL,
115 aml_start, aml_length, NULL,
116 (u8) pass_number);
117 }
118
4be44fcd
LB
119 if (ACPI_FAILURE(status)) {
120 acpi_ds_delete_walk_state(walk_state);
f3d2e786 121 acpi_ps_delete_parse_tree(parse_root);
4be44fcd 122 return_ACPI_STATUS(status);
1da177e4
LT
123 }
124
7f4ac9f9
BM
125 /* start_node is the default location to load the table */
126
127 if (start_node && start_node != acpi_gbl_root_node) {
128 acpi_ds_scope_stack_push(start_node, ACPI_TYPE_METHOD,
129 walk_state);
130 }
131
1da177e4
LT
132 /* Parse the AML */
133
4be44fcd 134 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "*PARSE* pass %d parse\n",
b0b7eaaf 135 (unsigned)pass_number));
4be44fcd 136 status = acpi_ps_parse_aml(walk_state);
1da177e4 137
4be44fcd
LB
138 acpi_ps_delete_parse_tree(parse_root);
139 return_ACPI_STATUS(status);
1da177e4
LT
140}
141
1da177e4
LT
142/*******************************************************************************
143 *
144 * FUNCTION: acpi_ns_parse_table
145 *
146 * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
147 * start_node - Where to enter the table into the namespace
148 *
149 * RETURN: Status
150 *
151 * DESCRIPTION: Parse AML within an ACPI table and return a tree of ops
152 *
153 ******************************************************************************/
154
155acpi_status
f3d2e786 156acpi_ns_parse_table(acpi_native_uint table_index,
4be44fcd 157 struct acpi_namespace_node *start_node)
1da177e4 158{
4be44fcd 159 acpi_status status;
1da177e4 160
b229cf92 161 ACPI_FUNCTION_TRACE(ns_parse_table);
1da177e4
LT
162
163 /*
164 * AML Parse, pass 1
165 *
166 * In this pass, we load most of the namespace. Control methods
167 * are not parsed until later. A parse tree is not created. Instead,
168 * each Parser Op subtree is deleted when it is finished. This saves
169 * a great deal of memory, and allows a small cache of parse objects
170 * to service the entire parse. The second pass of the parse then
ec3153fb 171 * performs another complete parse of the AML.
1da177e4 172 */
4be44fcd 173 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "**** Start pass 1\n"));
7f4ac9f9
BM
174 status =
175 acpi_ns_one_complete_parse(ACPI_IMODE_LOAD_PASS1, table_index,
176 start_node);
4be44fcd
LB
177 if (ACPI_FAILURE(status)) {
178 return_ACPI_STATUS(status);
1da177e4
LT
179 }
180
181 /*
182 * AML Parse, pass 2
183 *
184 * In this pass, we resolve forward references and other things
185 * that could not be completed during the first pass.
186 * Another complete parse of the AML is performed, but the
187 * overhead of this is compensated for by the fact that the
188 * parse objects are all cached.
189 */
4be44fcd 190 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "**** Start pass 2\n"));
7f4ac9f9
BM
191 status =
192 acpi_ns_one_complete_parse(ACPI_IMODE_LOAD_PASS2, table_index,
193 start_node);
4be44fcd
LB
194 if (ACPI_FAILURE(status)) {
195 return_ACPI_STATUS(status);
1da177e4
LT
196 }
197
4be44fcd 198 return_ACPI_STATUS(status);
1da177e4 199}