1bc36eafdSMike Gerdts /*******************************************************************************
2bc36eafdSMike Gerdts *
3bc36eafdSMike Gerdts * Module Name: dmbuffer - AML disassembler, buffer and string support
4bc36eafdSMike Gerdts *
5bc36eafdSMike Gerdts ******************************************************************************/
6bc36eafdSMike Gerdts
7*35786f68SRobert Mustacchi /******************************************************************************
8*35786f68SRobert Mustacchi *
9*35786f68SRobert Mustacchi * 1. Copyright Notice
10*35786f68SRobert Mustacchi *
11*35786f68SRobert Mustacchi * Some or all of this work - Copyright (c) 1999 - 2018, Intel Corp.
12bc36eafdSMike Gerdts * All rights reserved.
13bc36eafdSMike Gerdts *
14*35786f68SRobert Mustacchi * 2. License
15*35786f68SRobert Mustacchi *
16*35786f68SRobert Mustacchi * 2.1. This is your license from Intel Corp. under its intellectual property
17*35786f68SRobert Mustacchi * rights. You may have additional license terms from the party that provided
18*35786f68SRobert Mustacchi * you this software, covering your right to use that party's intellectual
19*35786f68SRobert Mustacchi * property rights.
20*35786f68SRobert Mustacchi *
21*35786f68SRobert Mustacchi * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22*35786f68SRobert Mustacchi * copy of the source code appearing in this file ("Covered Code") an
23*35786f68SRobert Mustacchi * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24*35786f68SRobert Mustacchi * base code distributed originally by Intel ("Original Intel Code") to copy,
25*35786f68SRobert Mustacchi * make derivatives, distribute, use and display any portion of the Covered
26*35786f68SRobert Mustacchi * Code in any form, with the right to sublicense such rights; and
27*35786f68SRobert Mustacchi *
28*35786f68SRobert Mustacchi * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29*35786f68SRobert Mustacchi * license (with the right to sublicense), under only those claims of Intel
30*35786f68SRobert Mustacchi * patents that are infringed by the Original Intel Code, to make, use, sell,
31*35786f68SRobert Mustacchi * offer to sell, and import the Covered Code and derivative works thereof
32*35786f68SRobert Mustacchi * solely to the minimum extent necessary to exercise the above copyright
33*35786f68SRobert Mustacchi * license, and in no event shall the patent license extend to any additions
34*35786f68SRobert Mustacchi * to or modifications of the Original Intel Code. No other license or right
35*35786f68SRobert Mustacchi * is granted directly or by implication, estoppel or otherwise;
36*35786f68SRobert Mustacchi *
37*35786f68SRobert Mustacchi * The above copyright and patent license is granted only if the following
38*35786f68SRobert Mustacchi * conditions are met:
39*35786f68SRobert Mustacchi *
40*35786f68SRobert Mustacchi * 3. Conditions
41*35786f68SRobert Mustacchi *
42*35786f68SRobert Mustacchi * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43*35786f68SRobert Mustacchi * Redistribution of source code of any substantial portion of the Covered
44*35786f68SRobert Mustacchi * Code or modification with rights to further distribute source must include
45*35786f68SRobert Mustacchi * the above Copyright Notice, the above License, this list of Conditions,
46*35786f68SRobert Mustacchi * and the following Disclaimer and Export Compliance provision. In addition,
47*35786f68SRobert Mustacchi * Licensee must cause all Covered Code to which Licensee contributes to
48*35786f68SRobert Mustacchi * contain a file documenting the changes Licensee made to create that Covered
49*35786f68SRobert Mustacchi * Code and the date of any change. Licensee must include in that file the
50*35786f68SRobert Mustacchi * documentation of any changes made by any predecessor Licensee. Licensee
51*35786f68SRobert Mustacchi * must include a prominent statement that the modification is derived,
52*35786f68SRobert Mustacchi * directly or indirectly, from Original Intel Code.
53*35786f68SRobert Mustacchi *
54*35786f68SRobert Mustacchi * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55*35786f68SRobert Mustacchi * Redistribution of source code of any substantial portion of the Covered
56*35786f68SRobert Mustacchi * Code or modification without rights to further distribute source must
57*35786f68SRobert Mustacchi * include the following Disclaimer and Export Compliance provision in the
58*35786f68SRobert Mustacchi * documentation and/or other materials provided with distribution. In
59*35786f68SRobert Mustacchi * addition, Licensee may not authorize further sublicense of source of any
60*35786f68SRobert Mustacchi * portion of the Covered Code, and must include terms to the effect that the
61*35786f68SRobert Mustacchi * license from Licensee to its licensee is limited to the intellectual
62*35786f68SRobert Mustacchi * property embodied in the software Licensee provides to its licensee, and
63*35786f68SRobert Mustacchi * not to intellectual property embodied in modifications its licensee may
64*35786f68SRobert Mustacchi * make.
65*35786f68SRobert Mustacchi *
66*35786f68SRobert Mustacchi * 3.3. Redistribution of Executable. Redistribution in executable form of any
67*35786f68SRobert Mustacchi * substantial portion of the Covered Code or modification must reproduce the
68*35786f68SRobert Mustacchi * above Copyright Notice, and the following Disclaimer and Export Compliance
69*35786f68SRobert Mustacchi * provision in the documentation and/or other materials provided with the
70*35786f68SRobert Mustacchi * distribution.
71*35786f68SRobert Mustacchi *
72*35786f68SRobert Mustacchi * 3.4. Intel retains all right, title, and interest in and to the Original
73*35786f68SRobert Mustacchi * Intel Code.
74*35786f68SRobert Mustacchi *
75*35786f68SRobert Mustacchi * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76*35786f68SRobert Mustacchi * Intel shall be used in advertising or otherwise to promote the sale, use or
77*35786f68SRobert Mustacchi * other dealings in products derived from or relating to the Covered Code
78*35786f68SRobert Mustacchi * without prior written authorization from Intel.
79*35786f68SRobert Mustacchi *
80*35786f68SRobert Mustacchi * 4. Disclaimer and Export Compliance
81*35786f68SRobert Mustacchi *
82*35786f68SRobert Mustacchi * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83*35786f68SRobert Mustacchi * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84*35786f68SRobert Mustacchi * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85*35786f68SRobert Mustacchi * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86*35786f68SRobert Mustacchi * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87*35786f68SRobert Mustacchi * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88*35786f68SRobert Mustacchi * PARTICULAR PURPOSE.
89*35786f68SRobert Mustacchi *
90*35786f68SRobert Mustacchi * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91*35786f68SRobert Mustacchi * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92*35786f68SRobert Mustacchi * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93*35786f68SRobert Mustacchi * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94*35786f68SRobert Mustacchi * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95*35786f68SRobert Mustacchi * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96*35786f68SRobert Mustacchi * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97*35786f68SRobert Mustacchi * LIMITED REMEDY.
98*35786f68SRobert Mustacchi *
99*35786f68SRobert Mustacchi * 4.3. Licensee shall not export, either directly or indirectly, any of this
100*35786f68SRobert Mustacchi * software or system incorporating such software without first obtaining any
101*35786f68SRobert Mustacchi * required license or other approval from the U. S. Department of Commerce or
102*35786f68SRobert Mustacchi * any other agency or department of the United States Government. In the
103*35786f68SRobert Mustacchi * event Licensee exports any such software from the United States or
104*35786f68SRobert Mustacchi * re-exports any such software from a foreign destination, Licensee shall
105*35786f68SRobert Mustacchi * ensure that the distribution and export/re-export of the software is in
106*35786f68SRobert Mustacchi * compliance with all laws, regulations, orders, or other restrictions of the
107*35786f68SRobert Mustacchi * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108*35786f68SRobert Mustacchi * any of its subsidiaries will export/re-export any technical data, process,
109*35786f68SRobert Mustacchi * software, or service, directly or indirectly, to any country for which the
110*35786f68SRobert Mustacchi * United States government or any agency thereof requires an export license,
111*35786f68SRobert Mustacchi * other governmental approval, or letter of assurance, without first obtaining
112*35786f68SRobert Mustacchi * such license, approval or letter.
113*35786f68SRobert Mustacchi *
114*35786f68SRobert Mustacchi *****************************************************************************
115*35786f68SRobert Mustacchi *
116*35786f68SRobert Mustacchi * Alternatively, you may choose to be licensed under the terms of the
117*35786f68SRobert Mustacchi * following license:
118*35786f68SRobert Mustacchi *
119bc36eafdSMike Gerdts * Redistribution and use in source and binary forms, with or without
120bc36eafdSMike Gerdts * modification, are permitted provided that the following conditions
121bc36eafdSMike Gerdts * are met:
122bc36eafdSMike Gerdts * 1. Redistributions of source code must retain the above copyright
123bc36eafdSMike Gerdts * notice, this list of conditions, and the following disclaimer,
124bc36eafdSMike Gerdts * without modification.
125bc36eafdSMike Gerdts * 2. Redistributions in binary form must reproduce at minimum a disclaimer
126bc36eafdSMike Gerdts * substantially similar to the "NO WARRANTY" disclaimer below
127bc36eafdSMike Gerdts * ("Disclaimer") and any redistribution must be conditioned upon
128bc36eafdSMike Gerdts * including a substantially similar Disclaimer requirement for further
129bc36eafdSMike Gerdts * binary redistribution.
130bc36eafdSMike Gerdts * 3. Neither the names of the above-listed copyright holders nor the names
131bc36eafdSMike Gerdts * of any contributors may be used to endorse or promote products derived
132bc36eafdSMike Gerdts * from this software without specific prior written permission.
133bc36eafdSMike Gerdts *
134*35786f68SRobert Mustacchi * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
135*35786f68SRobert Mustacchi * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
136*35786f68SRobert Mustacchi * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
137*35786f68SRobert Mustacchi * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
138*35786f68SRobert Mustacchi * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
139*35786f68SRobert Mustacchi * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
140*35786f68SRobert Mustacchi * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
141*35786f68SRobert Mustacchi * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
142*35786f68SRobert Mustacchi * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
143*35786f68SRobert Mustacchi * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
144*35786f68SRobert Mustacchi * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
145*35786f68SRobert Mustacchi *
146*35786f68SRobert Mustacchi * Alternatively, you may choose to be licensed under the terms of the
147bc36eafdSMike Gerdts * GNU General Public License ("GPL") version 2 as published by the Free
148bc36eafdSMike Gerdts * Software Foundation.
149bc36eafdSMike Gerdts *
150*35786f68SRobert Mustacchi *****************************************************************************/
151bc36eafdSMike Gerdts
152bc36eafdSMike Gerdts #include "acpi.h"
153bc36eafdSMike Gerdts #include "accommon.h"
154bc36eafdSMike Gerdts #include "acutils.h"
155bc36eafdSMike Gerdts #include "acdisasm.h"
156bc36eafdSMike Gerdts #include "acparser.h"
157bc36eafdSMike Gerdts #include "amlcode.h"
158bc36eafdSMike Gerdts #include "acinterp.h"
159bc36eafdSMike Gerdts
160bc36eafdSMike Gerdts
161bc36eafdSMike Gerdts #define _COMPONENT ACPI_CA_DEBUGGER
162bc36eafdSMike Gerdts ACPI_MODULE_NAME ("dmbuffer")
163bc36eafdSMike Gerdts
164bc36eafdSMike Gerdts /* Local prototypes */
165bc36eafdSMike Gerdts
166bc36eafdSMike Gerdts static void
167bc36eafdSMike Gerdts AcpiDmUuid (
168bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op);
169bc36eafdSMike Gerdts
170bc36eafdSMike Gerdts static void
171bc36eafdSMike Gerdts AcpiDmUnicode (
172bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op);
173bc36eafdSMike Gerdts
174bc36eafdSMike Gerdts static void
175bc36eafdSMike Gerdts AcpiDmGetHardwareIdType (
176bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op);
177bc36eafdSMike Gerdts
178bc36eafdSMike Gerdts static void
179bc36eafdSMike Gerdts AcpiDmPldBuffer (
180bc36eafdSMike Gerdts UINT32 Level,
181bc36eafdSMike Gerdts UINT8 *ByteData,
182bc36eafdSMike Gerdts UINT32 ByteCount);
183bc36eafdSMike Gerdts
184bc36eafdSMike Gerdts static const char *
185bc36eafdSMike Gerdts AcpiDmFindNameByIndex (
186bc36eafdSMike Gerdts UINT64 Index,
187bc36eafdSMike Gerdts const char **List);
188bc36eafdSMike Gerdts
189bc36eafdSMike Gerdts
190bc36eafdSMike Gerdts #define ACPI_BUFFER_BYTES_PER_LINE 8
191bc36eafdSMike Gerdts
192bc36eafdSMike Gerdts
193bc36eafdSMike Gerdts /*******************************************************************************
194bc36eafdSMike Gerdts *
195bc36eafdSMike Gerdts * FUNCTION: AcpiDmDisasmByteList
196bc36eafdSMike Gerdts *
197bc36eafdSMike Gerdts * PARAMETERS: Level - Current source code indentation level
198bc36eafdSMike Gerdts * ByteData - Pointer to the byte list
199bc36eafdSMike Gerdts * ByteCount - Length of the byte list
200bc36eafdSMike Gerdts *
201bc36eafdSMike Gerdts * RETURN: None
202bc36eafdSMike Gerdts *
203bc36eafdSMike Gerdts * DESCRIPTION: Dump an AML "ByteList" in Hex format. 8 bytes per line, prefixed
204bc36eafdSMike Gerdts * with the hex buffer offset.
205bc36eafdSMike Gerdts *
206bc36eafdSMike Gerdts ******************************************************************************/
207bc36eafdSMike Gerdts
208bc36eafdSMike Gerdts void
AcpiDmDisasmByteList(UINT32 Level,UINT8 * ByteData,UINT32 ByteCount)209bc36eafdSMike Gerdts AcpiDmDisasmByteList (
210bc36eafdSMike Gerdts UINT32 Level,
211bc36eafdSMike Gerdts UINT8 *ByteData,
212bc36eafdSMike Gerdts UINT32 ByteCount)
213bc36eafdSMike Gerdts {
214bc36eafdSMike Gerdts UINT32 i;
215bc36eafdSMike Gerdts UINT32 j;
216bc36eafdSMike Gerdts UINT32 CurrentIndex;
217bc36eafdSMike Gerdts UINT8 BufChar;
218bc36eafdSMike Gerdts
219bc36eafdSMike Gerdts
220bc36eafdSMike Gerdts if (!ByteCount)
221bc36eafdSMike Gerdts {
222bc36eafdSMike Gerdts return;
223bc36eafdSMike Gerdts }
224bc36eafdSMike Gerdts
225bc36eafdSMike Gerdts for (i = 0; i < ByteCount; i += ACPI_BUFFER_BYTES_PER_LINE)
226bc36eafdSMike Gerdts {
227bc36eafdSMike Gerdts /* Line indent and offset prefix for each new line */
228bc36eafdSMike Gerdts
229bc36eafdSMike Gerdts AcpiDmIndent (Level);
230bc36eafdSMike Gerdts if (ByteCount > ACPI_BUFFER_BYTES_PER_LINE)
231bc36eafdSMike Gerdts {
232bc36eafdSMike Gerdts AcpiOsPrintf ("/* %04X */ ", i);
233bc36eafdSMike Gerdts }
234bc36eafdSMike Gerdts
235bc36eafdSMike Gerdts /* Dump the actual hex values */
236bc36eafdSMike Gerdts
237bc36eafdSMike Gerdts for (j = 0; j < ACPI_BUFFER_BYTES_PER_LINE; j++)
238bc36eafdSMike Gerdts {
239bc36eafdSMike Gerdts CurrentIndex = i + j;
240bc36eafdSMike Gerdts if (CurrentIndex >= ByteCount)
241bc36eafdSMike Gerdts {
242bc36eafdSMike Gerdts /* Dump fill spaces */
243bc36eafdSMike Gerdts
244bc36eafdSMike Gerdts AcpiOsPrintf (" ");
245bc36eafdSMike Gerdts continue;
246bc36eafdSMike Gerdts }
247bc36eafdSMike Gerdts
248bc36eafdSMike Gerdts AcpiOsPrintf (" 0x%2.2X", ByteData[CurrentIndex]);
249bc36eafdSMike Gerdts
250bc36eafdSMike Gerdts /* Add comma if there are more bytes to display */
251bc36eafdSMike Gerdts
252bc36eafdSMike Gerdts if (CurrentIndex < (ByteCount - 1))
253bc36eafdSMike Gerdts {
254bc36eafdSMike Gerdts AcpiOsPrintf (",");
255bc36eafdSMike Gerdts }
256bc36eafdSMike Gerdts else
257bc36eafdSMike Gerdts {
258bc36eafdSMike Gerdts AcpiOsPrintf (" ");
259bc36eafdSMike Gerdts }
260bc36eafdSMike Gerdts }
261bc36eafdSMike Gerdts
262bc36eafdSMike Gerdts /* Dump the ASCII equivalents within a comment */
263bc36eafdSMike Gerdts
264*35786f68SRobert Mustacchi AcpiOsPrintf (" // ");
265bc36eafdSMike Gerdts for (j = 0; j < ACPI_BUFFER_BYTES_PER_LINE; j++)
266bc36eafdSMike Gerdts {
267bc36eafdSMike Gerdts CurrentIndex = i + j;
268bc36eafdSMike Gerdts if (CurrentIndex >= ByteCount)
269bc36eafdSMike Gerdts {
270bc36eafdSMike Gerdts break;
271bc36eafdSMike Gerdts }
272bc36eafdSMike Gerdts
273bc36eafdSMike Gerdts BufChar = ByteData[CurrentIndex];
274bc36eafdSMike Gerdts if (isprint (BufChar))
275bc36eafdSMike Gerdts {
276bc36eafdSMike Gerdts AcpiOsPrintf ("%c", BufChar);
277bc36eafdSMike Gerdts }
278bc36eafdSMike Gerdts else
279bc36eafdSMike Gerdts {
280bc36eafdSMike Gerdts AcpiOsPrintf (".");
281bc36eafdSMike Gerdts }
282bc36eafdSMike Gerdts }
283bc36eafdSMike Gerdts
284bc36eafdSMike Gerdts /* Finished with this line */
285bc36eafdSMike Gerdts
286*35786f68SRobert Mustacchi AcpiOsPrintf ("\n");
287bc36eafdSMike Gerdts }
288bc36eafdSMike Gerdts }
289bc36eafdSMike Gerdts
290bc36eafdSMike Gerdts
291bc36eafdSMike Gerdts /*******************************************************************************
292bc36eafdSMike Gerdts *
293bc36eafdSMike Gerdts * FUNCTION: AcpiDmByteList
294bc36eafdSMike Gerdts *
295bc36eafdSMike Gerdts * PARAMETERS: Info - Parse tree walk info
296bc36eafdSMike Gerdts * Op - Byte list op
297bc36eafdSMike Gerdts *
298bc36eafdSMike Gerdts * RETURN: None
299bc36eafdSMike Gerdts *
300bc36eafdSMike Gerdts * DESCRIPTION: Dump a buffer byte list, handling the various types of buffers.
301bc36eafdSMike Gerdts * Buffer type must be already set in the Op DisasmOpcode.
302bc36eafdSMike Gerdts *
303bc36eafdSMike Gerdts ******************************************************************************/
304bc36eafdSMike Gerdts
305bc36eafdSMike Gerdts void
AcpiDmByteList(ACPI_OP_WALK_INFO * Info,ACPI_PARSE_OBJECT * Op)306bc36eafdSMike Gerdts AcpiDmByteList (
307bc36eafdSMike Gerdts ACPI_OP_WALK_INFO *Info,
308bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
309bc36eafdSMike Gerdts {
310bc36eafdSMike Gerdts UINT8 *ByteData;
311bc36eafdSMike Gerdts UINT32 ByteCount;
312bc36eafdSMike Gerdts
313bc36eafdSMike Gerdts
314bc36eafdSMike Gerdts ByteData = Op->Named.Data;
315bc36eafdSMike Gerdts ByteCount = (UINT32) Op->Common.Value.Integer;
316bc36eafdSMike Gerdts
317bc36eafdSMike Gerdts /*
318bc36eafdSMike Gerdts * The byte list belongs to a buffer, and can be produced by either
319bc36eafdSMike Gerdts * a ResourceTemplate, Unicode, quoted string, or a plain byte list.
320bc36eafdSMike Gerdts */
321bc36eafdSMike Gerdts switch (Op->Common.Parent->Common.DisasmOpcode)
322bc36eafdSMike Gerdts {
323bc36eafdSMike Gerdts case ACPI_DASM_RESOURCE:
324bc36eafdSMike Gerdts
325bc36eafdSMike Gerdts AcpiDmResourceTemplate (
326bc36eafdSMike Gerdts Info, Op->Common.Parent, ByteData, ByteCount);
327bc36eafdSMike Gerdts break;
328bc36eafdSMike Gerdts
329bc36eafdSMike Gerdts case ACPI_DASM_STRING:
330bc36eafdSMike Gerdts
331bc36eafdSMike Gerdts AcpiDmIndent (Info->Level);
332bc36eafdSMike Gerdts AcpiUtPrintString ((char *) ByteData, ACPI_UINT16_MAX);
333bc36eafdSMike Gerdts AcpiOsPrintf ("\n");
334bc36eafdSMike Gerdts break;
335bc36eafdSMike Gerdts
336bc36eafdSMike Gerdts case ACPI_DASM_UUID:
337bc36eafdSMike Gerdts
338bc36eafdSMike Gerdts AcpiDmUuid (Op);
339bc36eafdSMike Gerdts break;
340bc36eafdSMike Gerdts
341bc36eafdSMike Gerdts case ACPI_DASM_UNICODE:
342bc36eafdSMike Gerdts
343bc36eafdSMike Gerdts AcpiDmUnicode (Op);
344bc36eafdSMike Gerdts break;
345bc36eafdSMike Gerdts
346bc36eafdSMike Gerdts case ACPI_DASM_PLD_METHOD:
347bc36eafdSMike Gerdts #if 0
348bc36eafdSMike Gerdts AcpiDmDisasmByteList (Info->Level, ByteData, ByteCount);
349bc36eafdSMike Gerdts #endif
350bc36eafdSMike Gerdts AcpiDmPldBuffer (Info->Level, ByteData, ByteCount);
351bc36eafdSMike Gerdts break;
352bc36eafdSMike Gerdts
353bc36eafdSMike Gerdts case ACPI_DASM_BUFFER:
354bc36eafdSMike Gerdts default:
355bc36eafdSMike Gerdts /*
356bc36eafdSMike Gerdts * Not a resource, string, or unicode string.
357bc36eafdSMike Gerdts * Just dump the buffer
358bc36eafdSMike Gerdts */
359bc36eafdSMike Gerdts AcpiDmDisasmByteList (Info->Level, ByteData, ByteCount);
360bc36eafdSMike Gerdts break;
361bc36eafdSMike Gerdts }
362bc36eafdSMike Gerdts }
363bc36eafdSMike Gerdts
364bc36eafdSMike Gerdts
365bc36eafdSMike Gerdts /*******************************************************************************
366bc36eafdSMike Gerdts *
367bc36eafdSMike Gerdts * FUNCTION: AcpiDmIsUuidBuffer
368bc36eafdSMike Gerdts *
369bc36eafdSMike Gerdts * PARAMETERS: Op - Buffer Object to be examined
370bc36eafdSMike Gerdts *
371bc36eafdSMike Gerdts * RETURN: TRUE if buffer contains a UUID
372bc36eafdSMike Gerdts *
373bc36eafdSMike Gerdts * DESCRIPTION: Determine if a buffer Op contains a UUID
374bc36eafdSMike Gerdts *
375bc36eafdSMike Gerdts * To help determine whether the buffer is a UUID versus a raw data buffer,
376bc36eafdSMike Gerdts * there a are a couple bytes we can look at:
377bc36eafdSMike Gerdts *
378bc36eafdSMike Gerdts * xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx
379bc36eafdSMike Gerdts *
380bc36eafdSMike Gerdts * The variant covered by the UUID specification is indicated by the two most
381bc36eafdSMike Gerdts * significant bits of N being 1 0 (i.e., the hexadecimal N will always be
382bc36eafdSMike Gerdts * 8, 9, A, or B).
383bc36eafdSMike Gerdts *
384bc36eafdSMike Gerdts * The variant covered by the UUID specification has five versions. For this
385bc36eafdSMike Gerdts * variant, the four bits of M indicates the UUID version (i.e., the
386bc36eafdSMike Gerdts * hexadecimal M will be either 1, 2, 3, 4, or 5).
387bc36eafdSMike Gerdts *
388bc36eafdSMike Gerdts ******************************************************************************/
389bc36eafdSMike Gerdts
390bc36eafdSMike Gerdts BOOLEAN
AcpiDmIsUuidBuffer(ACPI_PARSE_OBJECT * Op)391bc36eafdSMike Gerdts AcpiDmIsUuidBuffer (
392bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
393bc36eafdSMike Gerdts {
394bc36eafdSMike Gerdts UINT8 *ByteData;
395bc36eafdSMike Gerdts UINT32 ByteCount;
396bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *SizeOp;
397bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *NextOp;
398bc36eafdSMike Gerdts
399bc36eafdSMike Gerdts
400bc36eafdSMike Gerdts /* Buffer size is the buffer argument */
401bc36eafdSMike Gerdts
402bc36eafdSMike Gerdts SizeOp = Op->Common.Value.Arg;
403bc36eafdSMike Gerdts
404bc36eafdSMike Gerdts /* Next, the initializer byte list to examine */
405bc36eafdSMike Gerdts
406bc36eafdSMike Gerdts NextOp = SizeOp->Common.Next;
407bc36eafdSMike Gerdts if (!NextOp)
408bc36eafdSMike Gerdts {
409bc36eafdSMike Gerdts return (FALSE);
410bc36eafdSMike Gerdts }
411bc36eafdSMike Gerdts
412bc36eafdSMike Gerdts /* Extract the byte list info */
413bc36eafdSMike Gerdts
414bc36eafdSMike Gerdts ByteData = NextOp->Named.Data;
415bc36eafdSMike Gerdts ByteCount = (UINT32) NextOp->Common.Value.Integer;
416bc36eafdSMike Gerdts
417bc36eafdSMike Gerdts /* Byte count must be exactly 16 */
418bc36eafdSMike Gerdts
419bc36eafdSMike Gerdts if (ByteCount != UUID_BUFFER_LENGTH)
420bc36eafdSMike Gerdts {
421bc36eafdSMike Gerdts return (FALSE);
422bc36eafdSMike Gerdts }
423bc36eafdSMike Gerdts
424bc36eafdSMike Gerdts /* Check for valid "M" and "N" values (see function header above) */
425bc36eafdSMike Gerdts
426bc36eafdSMike Gerdts if (((ByteData[7] & 0xF0) == 0x00) || /* M={1,2,3,4,5} */
427bc36eafdSMike Gerdts ((ByteData[7] & 0xF0) > 0x50) ||
428bc36eafdSMike Gerdts ((ByteData[8] & 0xF0) < 0x80) || /* N={8,9,A,B} */
429bc36eafdSMike Gerdts ((ByteData[8] & 0xF0) > 0xB0))
430bc36eafdSMike Gerdts {
431bc36eafdSMike Gerdts return (FALSE);
432bc36eafdSMike Gerdts }
433bc36eafdSMike Gerdts
434bc36eafdSMike Gerdts /* Ignore the Size argument in the disassembly of this buffer op */
435bc36eafdSMike Gerdts
436bc36eafdSMike Gerdts SizeOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
437bc36eafdSMike Gerdts return (TRUE);
438bc36eafdSMike Gerdts }
439bc36eafdSMike Gerdts
440bc36eafdSMike Gerdts
441bc36eafdSMike Gerdts /*******************************************************************************
442bc36eafdSMike Gerdts *
443bc36eafdSMike Gerdts * FUNCTION: AcpiDmUuid
444bc36eafdSMike Gerdts *
445bc36eafdSMike Gerdts * PARAMETERS: Op - Byte List op containing a UUID
446bc36eafdSMike Gerdts *
447bc36eafdSMike Gerdts * RETURN: None
448bc36eafdSMike Gerdts *
449bc36eafdSMike Gerdts * DESCRIPTION: Dump a buffer containing a UUID as a standard ASCII string.
450bc36eafdSMike Gerdts *
451bc36eafdSMike Gerdts * Output Format:
452bc36eafdSMike Gerdts * In its canonical form, the UUID is represented by a string containing 32
453bc36eafdSMike Gerdts * lowercase hexadecimal digits, displayed in 5 groups separated by hyphens.
454bc36eafdSMike Gerdts * The complete form is 8-4-4-4-12 for a total of 36 characters (32
455bc36eafdSMike Gerdts * alphanumeric characters representing hex digits and 4 hyphens). In bytes,
456bc36eafdSMike Gerdts * 4-2-2-2-6. Example:
457bc36eafdSMike Gerdts *
458bc36eafdSMike Gerdts * ToUUID ("107ededd-d381-4fd7-8da9-08e9a6c79644")
459bc36eafdSMike Gerdts *
460bc36eafdSMike Gerdts ******************************************************************************/
461bc36eafdSMike Gerdts
462bc36eafdSMike Gerdts static void
AcpiDmUuid(ACPI_PARSE_OBJECT * Op)463bc36eafdSMike Gerdts AcpiDmUuid (
464bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
465bc36eafdSMike Gerdts {
466bc36eafdSMike Gerdts UINT8 *Data;
467bc36eafdSMike Gerdts const char *Description;
468bc36eafdSMike Gerdts
469bc36eafdSMike Gerdts
470bc36eafdSMike Gerdts Data = ACPI_CAST_PTR (UINT8, Op->Named.Data);
471bc36eafdSMike Gerdts
472bc36eafdSMike Gerdts /* Emit the 36-byte UUID string in the proper format/order */
473bc36eafdSMike Gerdts
474bc36eafdSMike Gerdts AcpiOsPrintf (
475bc36eafdSMike Gerdts "\"%2.2x%2.2x%2.2x%2.2x-"
476bc36eafdSMike Gerdts "%2.2x%2.2x-"
477bc36eafdSMike Gerdts "%2.2x%2.2x-"
478bc36eafdSMike Gerdts "%2.2x%2.2x-"
479bc36eafdSMike Gerdts "%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x\")",
480bc36eafdSMike Gerdts Data[3], Data[2], Data[1], Data[0],
481bc36eafdSMike Gerdts Data[5], Data[4],
482bc36eafdSMike Gerdts Data[7], Data[6],
483bc36eafdSMike Gerdts Data[8], Data[9],
484bc36eafdSMike Gerdts Data[10], Data[11], Data[12], Data[13], Data[14], Data[15]);
485bc36eafdSMike Gerdts
486bc36eafdSMike Gerdts #ifdef ACPI_APPLICATION
487bc36eafdSMike Gerdts /* Dump the UUID description string if available */
488bc36eafdSMike Gerdts
489bc36eafdSMike Gerdts Description = AcpiAhMatchUuid (Data);
490bc36eafdSMike Gerdts if (Description)
491bc36eafdSMike Gerdts {
492bc36eafdSMike Gerdts AcpiOsPrintf (" /* %s */", Description);
493bc36eafdSMike Gerdts }
494bc36eafdSMike Gerdts #endif
495bc36eafdSMike Gerdts }
496bc36eafdSMike Gerdts
497bc36eafdSMike Gerdts
498bc36eafdSMike Gerdts /*******************************************************************************
499bc36eafdSMike Gerdts *
500bc36eafdSMike Gerdts * FUNCTION: AcpiDmIsUnicodeBuffer
501bc36eafdSMike Gerdts *
502bc36eafdSMike Gerdts * PARAMETERS: Op - Buffer Object to be examined
503bc36eafdSMike Gerdts *
504bc36eafdSMike Gerdts * RETURN: TRUE if buffer contains a UNICODE string
505bc36eafdSMike Gerdts *
506bc36eafdSMike Gerdts * DESCRIPTION: Determine if a buffer Op contains a Unicode string
507bc36eafdSMike Gerdts *
508bc36eafdSMike Gerdts ******************************************************************************/
509bc36eafdSMike Gerdts
510bc36eafdSMike Gerdts BOOLEAN
AcpiDmIsUnicodeBuffer(ACPI_PARSE_OBJECT * Op)511bc36eafdSMike Gerdts AcpiDmIsUnicodeBuffer (
512bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
513bc36eafdSMike Gerdts {
514bc36eafdSMike Gerdts UINT8 *ByteData;
515bc36eafdSMike Gerdts UINT32 ByteCount;
516bc36eafdSMike Gerdts UINT32 WordCount;
517bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *SizeOp;
518bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *NextOp;
519bc36eafdSMike Gerdts UINT32 i;
520bc36eafdSMike Gerdts
521bc36eafdSMike Gerdts
522bc36eafdSMike Gerdts /* Buffer size is the buffer argument */
523bc36eafdSMike Gerdts
524bc36eafdSMike Gerdts SizeOp = Op->Common.Value.Arg;
525bc36eafdSMike Gerdts
526bc36eafdSMike Gerdts /* Next, the initializer byte list to examine */
527bc36eafdSMike Gerdts
528bc36eafdSMike Gerdts NextOp = SizeOp->Common.Next;
529bc36eafdSMike Gerdts if (!NextOp)
530bc36eafdSMike Gerdts {
531bc36eafdSMike Gerdts return (FALSE);
532bc36eafdSMike Gerdts }
533bc36eafdSMike Gerdts
534bc36eafdSMike Gerdts /* Extract the byte list info */
535bc36eafdSMike Gerdts
536bc36eafdSMike Gerdts ByteData = NextOp->Named.Data;
537bc36eafdSMike Gerdts ByteCount = (UINT32) NextOp->Common.Value.Integer;
538bc36eafdSMike Gerdts WordCount = ACPI_DIV_2 (ByteCount);
539bc36eafdSMike Gerdts
540bc36eafdSMike Gerdts /*
541bc36eafdSMike Gerdts * Unicode string must have an even number of bytes and last
542bc36eafdSMike Gerdts * word must be zero
543bc36eafdSMike Gerdts */
544bc36eafdSMike Gerdts if ((!ByteCount) ||
545bc36eafdSMike Gerdts (ByteCount < 4) ||
546bc36eafdSMike Gerdts (ByteCount & 1) ||
547bc36eafdSMike Gerdts ((UINT16 *) (void *) ByteData)[WordCount - 1] != 0)
548bc36eafdSMike Gerdts {
549bc36eafdSMike Gerdts return (FALSE);
550bc36eafdSMike Gerdts }
551bc36eafdSMike Gerdts
552*35786f68SRobert Mustacchi /*
553*35786f68SRobert Mustacchi * For each word, 1st byte must be printable ascii, and the
554*35786f68SRobert Mustacchi * 2nd byte must be zero. This does not allow for escape
555*35786f68SRobert Mustacchi * sequences, but it is the most secure way to detect a
556*35786f68SRobert Mustacchi * unicode string.
557*35786f68SRobert Mustacchi */
558bc36eafdSMike Gerdts for (i = 0; i < (ByteCount - 2); i += 2)
559bc36eafdSMike Gerdts {
560bc36eafdSMike Gerdts if ((ByteData[i] == 0) ||
561*35786f68SRobert Mustacchi !(isprint (ByteData[i])) ||
562bc36eafdSMike Gerdts (ByteData[(ACPI_SIZE) i + 1] != 0))
563bc36eafdSMike Gerdts {
564bc36eafdSMike Gerdts return (FALSE);
565bc36eafdSMike Gerdts }
566bc36eafdSMike Gerdts }
567bc36eafdSMike Gerdts
568bc36eafdSMike Gerdts /* Ignore the Size argument in the disassembly of this buffer op */
569bc36eafdSMike Gerdts
570bc36eafdSMike Gerdts SizeOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
571bc36eafdSMike Gerdts return (TRUE);
572bc36eafdSMike Gerdts }
573bc36eafdSMike Gerdts
574bc36eafdSMike Gerdts
575bc36eafdSMike Gerdts /*******************************************************************************
576bc36eafdSMike Gerdts *
577bc36eafdSMike Gerdts * FUNCTION: AcpiDmIsStringBuffer
578bc36eafdSMike Gerdts *
579bc36eafdSMike Gerdts * PARAMETERS: Op - Buffer Object to be examined
580bc36eafdSMike Gerdts *
581bc36eafdSMike Gerdts * RETURN: TRUE if buffer contains a ASCII string, FALSE otherwise
582bc36eafdSMike Gerdts *
583bc36eafdSMike Gerdts * DESCRIPTION: Determine if a buffer Op contains a ASCII string
584bc36eafdSMike Gerdts *
585bc36eafdSMike Gerdts ******************************************************************************/
586bc36eafdSMike Gerdts
587bc36eafdSMike Gerdts BOOLEAN
AcpiDmIsStringBuffer(ACPI_PARSE_OBJECT * Op)588bc36eafdSMike Gerdts AcpiDmIsStringBuffer (
589bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
590bc36eafdSMike Gerdts {
591bc36eafdSMike Gerdts UINT8 *ByteData;
592bc36eafdSMike Gerdts UINT32 ByteCount;
593bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *SizeOp;
594bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *NextOp;
595bc36eafdSMike Gerdts UINT32 i;
596bc36eafdSMike Gerdts
597bc36eafdSMike Gerdts
598bc36eafdSMike Gerdts /* Buffer size is the buffer argument */
599bc36eafdSMike Gerdts
600bc36eafdSMike Gerdts SizeOp = Op->Common.Value.Arg;
601bc36eafdSMike Gerdts
602bc36eafdSMike Gerdts /* Next, the initializer byte list to examine */
603bc36eafdSMike Gerdts
604bc36eafdSMike Gerdts NextOp = SizeOp->Common.Next;
605bc36eafdSMike Gerdts if (!NextOp)
606bc36eafdSMike Gerdts {
607bc36eafdSMike Gerdts return (FALSE);
608bc36eafdSMike Gerdts }
609bc36eafdSMike Gerdts
610bc36eafdSMike Gerdts /* Extract the byte list info */
611bc36eafdSMike Gerdts
612bc36eafdSMike Gerdts ByteData = NextOp->Named.Data;
613bc36eafdSMike Gerdts ByteCount = (UINT32) NextOp->Common.Value.Integer;
614bc36eafdSMike Gerdts
615bc36eafdSMike Gerdts /* Last byte must be the null terminator */
616bc36eafdSMike Gerdts
617bc36eafdSMike Gerdts if ((!ByteCount) ||
618bc36eafdSMike Gerdts (ByteCount < 2) ||
619bc36eafdSMike Gerdts (ByteData[ByteCount-1] != 0))
620bc36eafdSMike Gerdts {
621bc36eafdSMike Gerdts return (FALSE);
622bc36eafdSMike Gerdts }
623bc36eafdSMike Gerdts
624*35786f68SRobert Mustacchi /*
625*35786f68SRobert Mustacchi * Check for a possible standalone resource EndTag, ignore it
626*35786f68SRobert Mustacchi * here. However, this sequence is also the string "Y", but
627*35786f68SRobert Mustacchi * this seems rare enough to be acceptable.
628*35786f68SRobert Mustacchi */
629*35786f68SRobert Mustacchi if ((ByteCount == 2) && (ByteData[0] == 0x79))
630*35786f68SRobert Mustacchi {
631*35786f68SRobert Mustacchi return (FALSE);
632*35786f68SRobert Mustacchi }
633*35786f68SRobert Mustacchi
634*35786f68SRobert Mustacchi /* Check all bytes for ASCII */
635*35786f68SRobert Mustacchi
636bc36eafdSMike Gerdts for (i = 0; i < (ByteCount - 1); i++)
637bc36eafdSMike Gerdts {
638*35786f68SRobert Mustacchi /*
639*35786f68SRobert Mustacchi * TBD: allow some escapes (non-ascii chars).
640bc36eafdSMike Gerdts * they will be handled in the string output routine
641bc36eafdSMike Gerdts */
642bc36eafdSMike Gerdts
643*35786f68SRobert Mustacchi /* Not a string if not printable ascii */
644*35786f68SRobert Mustacchi
645bc36eafdSMike Gerdts if (!isprint (ByteData[i]))
646bc36eafdSMike Gerdts {
647bc36eafdSMike Gerdts return (FALSE);
648bc36eafdSMike Gerdts }
649bc36eafdSMike Gerdts }
650bc36eafdSMike Gerdts
651bc36eafdSMike Gerdts return (TRUE);
652bc36eafdSMike Gerdts }
653bc36eafdSMike Gerdts
654bc36eafdSMike Gerdts
655bc36eafdSMike Gerdts /*******************************************************************************
656bc36eafdSMike Gerdts *
657bc36eafdSMike Gerdts * FUNCTION: AcpiDmIsPldBuffer
658bc36eafdSMike Gerdts *
659bc36eafdSMike Gerdts * PARAMETERS: Op - Buffer Object to be examined
660bc36eafdSMike Gerdts *
661*35786f68SRobert Mustacchi * RETURN: TRUE if buffer appears to contain data produced via the
662*35786f68SRobert Mustacchi * ToPLD macro, FALSE otherwise
663bc36eafdSMike Gerdts *
664bc36eafdSMike Gerdts * DESCRIPTION: Determine if a buffer Op contains a _PLD structure
665bc36eafdSMike Gerdts *
666bc36eafdSMike Gerdts ******************************************************************************/
667bc36eafdSMike Gerdts
668bc36eafdSMike Gerdts BOOLEAN
AcpiDmIsPldBuffer(ACPI_PARSE_OBJECT * Op)669bc36eafdSMike Gerdts AcpiDmIsPldBuffer (
670bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
671bc36eafdSMike Gerdts {
672bc36eafdSMike Gerdts ACPI_NAMESPACE_NODE *Node;
673bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *SizeOp;
674*35786f68SRobert Mustacchi ACPI_PARSE_OBJECT *ByteListOp;
675bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *ParentOp;
676*35786f68SRobert Mustacchi UINT64 BufferSize;
677*35786f68SRobert Mustacchi UINT64 InitializerSize;
678bc36eafdSMike Gerdts
679bc36eafdSMike Gerdts
680*35786f68SRobert Mustacchi /*
681*35786f68SRobert Mustacchi * Get the BufferSize argument - Buffer(BufferSize)
682*35786f68SRobert Mustacchi * If the buffer was generated by the ToPld macro, it must
683*35786f68SRobert Mustacchi * be a BYTE constant.
684*35786f68SRobert Mustacchi */
685bc36eafdSMike Gerdts SizeOp = Op->Common.Value.Arg;
686*35786f68SRobert Mustacchi if (SizeOp->Common.AmlOpcode != AML_BYTE_OP)
687*35786f68SRobert Mustacchi {
688*35786f68SRobert Mustacchi return (FALSE);
689*35786f68SRobert Mustacchi }
690*35786f68SRobert Mustacchi
691*35786f68SRobert Mustacchi /* Check the declared BufferSize, two possibilities */
692*35786f68SRobert Mustacchi
693*35786f68SRobert Mustacchi BufferSize = SizeOp->Common.Value.Integer;
694*35786f68SRobert Mustacchi if ((BufferSize != ACPI_PLD_REV1_BUFFER_SIZE) &&
695*35786f68SRobert Mustacchi (BufferSize != ACPI_PLD_REV2_BUFFER_SIZE))
696*35786f68SRobert Mustacchi {
697*35786f68SRobert Mustacchi return (FALSE);
698*35786f68SRobert Mustacchi }
699*35786f68SRobert Mustacchi
700*35786f68SRobert Mustacchi /*
701*35786f68SRobert Mustacchi * Check the initializer list length. This is the actual
702*35786f68SRobert Mustacchi * number of bytes in the buffer as counted by the AML parser.
703*35786f68SRobert Mustacchi * The declared BufferSize can be larger than the actual length.
704*35786f68SRobert Mustacchi * However, for the ToPLD macro, the BufferSize will be the same
705*35786f68SRobert Mustacchi * as the initializer list length.
706*35786f68SRobert Mustacchi */
707*35786f68SRobert Mustacchi ByteListOp = SizeOp->Common.Next;
708*35786f68SRobert Mustacchi if (!ByteListOp)
709*35786f68SRobert Mustacchi {
710*35786f68SRobert Mustacchi return (FALSE); /* Zero-length buffer case */
711*35786f68SRobert Mustacchi }
712*35786f68SRobert Mustacchi
713*35786f68SRobert Mustacchi InitializerSize = ByteListOp->Common.Value.Integer;
714*35786f68SRobert Mustacchi if ((InitializerSize != ACPI_PLD_REV1_BUFFER_SIZE) &&
715*35786f68SRobert Mustacchi (InitializerSize != ACPI_PLD_REV2_BUFFER_SIZE))
716*35786f68SRobert Mustacchi {
717*35786f68SRobert Mustacchi return (FALSE);
718*35786f68SRobert Mustacchi }
719*35786f68SRobert Mustacchi
720*35786f68SRobert Mustacchi /* Final size check */
721*35786f68SRobert Mustacchi
722*35786f68SRobert Mustacchi if (BufferSize != InitializerSize)
723*35786f68SRobert Mustacchi {
724*35786f68SRobert Mustacchi return (FALSE);
725*35786f68SRobert Mustacchi }
726*35786f68SRobert Mustacchi
727*35786f68SRobert Mustacchi /* Now examine the buffer parent */
728bc36eafdSMike Gerdts
729bc36eafdSMike Gerdts ParentOp = Op->Common.Parent;
730bc36eafdSMike Gerdts if (!ParentOp)
731bc36eafdSMike Gerdts {
732bc36eafdSMike Gerdts return (FALSE);
733bc36eafdSMike Gerdts }
734bc36eafdSMike Gerdts
735bc36eafdSMike Gerdts /* Check for form: Name(_PLD, Buffer() {}). Not legal, however */
736bc36eafdSMike Gerdts
737bc36eafdSMike Gerdts if (ParentOp->Common.AmlOpcode == AML_NAME_OP)
738bc36eafdSMike Gerdts {
739bc36eafdSMike Gerdts Node = ParentOp->Common.Node;
740bc36eafdSMike Gerdts
741bc36eafdSMike Gerdts if (ACPI_COMPARE_NAME (Node->Name.Ascii, METHOD_NAME__PLD))
742bc36eafdSMike Gerdts {
743bc36eafdSMike Gerdts /* Ignore the Size argument in the disassembly of this buffer op */
744bc36eafdSMike Gerdts
745bc36eafdSMike Gerdts SizeOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
746bc36eafdSMike Gerdts return (TRUE);
747bc36eafdSMike Gerdts }
748bc36eafdSMike Gerdts
749bc36eafdSMike Gerdts return (FALSE);
750bc36eafdSMike Gerdts }
751bc36eafdSMike Gerdts
752*35786f68SRobert Mustacchi /*
753*35786f68SRobert Mustacchi * Check for proper form: Name(_PLD, Package() {ToPLD()})
754*35786f68SRobert Mustacchi *
755*35786f68SRobert Mustacchi * Note: All other forms such as
756*35786f68SRobert Mustacchi * Return (Package() {ToPLD()})
757*35786f68SRobert Mustacchi * Local0 = ToPLD()
758*35786f68SRobert Mustacchi * etc. are not converted back to the ToPLD macro, because
759*35786f68SRobert Mustacchi * there is really no deterministic way to disassemble the buffer
760*35786f68SRobert Mustacchi * back to the ToPLD macro, other than trying to find the "_PLD"
761*35786f68SRobert Mustacchi * name
762*35786f68SRobert Mustacchi */
763bc36eafdSMike Gerdts if (ParentOp->Common.AmlOpcode == AML_PACKAGE_OP)
764bc36eafdSMike Gerdts {
765bc36eafdSMike Gerdts ParentOp = ParentOp->Common.Parent;
766bc36eafdSMike Gerdts if (!ParentOp)
767bc36eafdSMike Gerdts {
768bc36eafdSMike Gerdts return (FALSE);
769bc36eafdSMike Gerdts }
770bc36eafdSMike Gerdts
771bc36eafdSMike Gerdts if (ParentOp->Common.AmlOpcode == AML_NAME_OP)
772bc36eafdSMike Gerdts {
773bc36eafdSMike Gerdts Node = ParentOp->Common.Node;
774bc36eafdSMike Gerdts
775bc36eafdSMike Gerdts if (ACPI_COMPARE_NAME (Node->Name.Ascii, METHOD_NAME__PLD))
776bc36eafdSMike Gerdts {
777bc36eafdSMike Gerdts /* Ignore the Size argument in the disassembly of this buffer op */
778bc36eafdSMike Gerdts
779bc36eafdSMike Gerdts SizeOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
780bc36eafdSMike Gerdts return (TRUE);
781bc36eafdSMike Gerdts }
782bc36eafdSMike Gerdts }
783bc36eafdSMike Gerdts }
784bc36eafdSMike Gerdts
785bc36eafdSMike Gerdts return (FALSE);
786bc36eafdSMike Gerdts }
787bc36eafdSMike Gerdts
788bc36eafdSMike Gerdts
789bc36eafdSMike Gerdts /*******************************************************************************
790bc36eafdSMike Gerdts *
791bc36eafdSMike Gerdts * FUNCTION: AcpiDmFindNameByIndex
792bc36eafdSMike Gerdts *
793bc36eafdSMike Gerdts * PARAMETERS: Index - Index of array to check
794bc36eafdSMike Gerdts * List - Array to reference
795bc36eafdSMike Gerdts *
796bc36eafdSMike Gerdts * RETURN: String from List or empty string
797bc36eafdSMike Gerdts *
798bc36eafdSMike Gerdts * DESCRIPTION: Finds and returns the char string located at the given index
799bc36eafdSMike Gerdts * position in List.
800bc36eafdSMike Gerdts *
801bc36eafdSMike Gerdts ******************************************************************************/
802bc36eafdSMike Gerdts
803bc36eafdSMike Gerdts static const char *
AcpiDmFindNameByIndex(UINT64 Index,const char ** List)804bc36eafdSMike Gerdts AcpiDmFindNameByIndex (
805bc36eafdSMike Gerdts UINT64 Index,
806bc36eafdSMike Gerdts const char **List)
807bc36eafdSMike Gerdts {
808bc36eafdSMike Gerdts const char *NameString;
809bc36eafdSMike Gerdts UINT32 i;
810bc36eafdSMike Gerdts
811bc36eafdSMike Gerdts
812bc36eafdSMike Gerdts /* Bounds check */
813bc36eafdSMike Gerdts
814bc36eafdSMike Gerdts NameString = List[0];
815bc36eafdSMike Gerdts i = 0;
816bc36eafdSMike Gerdts
817bc36eafdSMike Gerdts while (NameString)
818bc36eafdSMike Gerdts {
819bc36eafdSMike Gerdts i++;
820bc36eafdSMike Gerdts NameString = List[i];
821bc36eafdSMike Gerdts }
822bc36eafdSMike Gerdts
823bc36eafdSMike Gerdts if (Index >= i)
824bc36eafdSMike Gerdts {
825bc36eafdSMike Gerdts /* TBD: Add error msg */
826bc36eafdSMike Gerdts
827bc36eafdSMike Gerdts return ("");
828bc36eafdSMike Gerdts }
829bc36eafdSMike Gerdts
830bc36eafdSMike Gerdts return (List[Index]);
831bc36eafdSMike Gerdts }
832bc36eafdSMike Gerdts
833bc36eafdSMike Gerdts
834bc36eafdSMike Gerdts /*******************************************************************************
835bc36eafdSMike Gerdts *
836bc36eafdSMike Gerdts * FUNCTION: AcpiDmPldBuffer
837bc36eafdSMike Gerdts *
838bc36eafdSMike Gerdts * PARAMETERS: Level - Current source code indentation level
839bc36eafdSMike Gerdts * ByteData - Pointer to the byte list
840bc36eafdSMike Gerdts * ByteCount - Length of the byte list
841bc36eafdSMike Gerdts *
842bc36eafdSMike Gerdts * RETURN: None
843bc36eafdSMike Gerdts *
844bc36eafdSMike Gerdts * DESCRIPTION: Dump and format the contents of a _PLD buffer object
845bc36eafdSMike Gerdts *
846bc36eafdSMike Gerdts ******************************************************************************/
847bc36eafdSMike Gerdts
848bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUT08 "%*.s%-22s = 0x%X,\n", ACPI_MUL_4 (Level), " "
849bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUT08P "%*.s%-22s = 0x%X)\n", ACPI_MUL_4 (Level), " "
850bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUT16 "%*.s%-22s = 0x%X,\n", ACPI_MUL_4 (Level), " "
851bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUT16P "%*.s%-22s = 0x%X)\n", ACPI_MUL_4 (Level), " "
852bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUT24 "%*.s%-22s = 0x%X,\n", ACPI_MUL_4 (Level), " "
853bc36eafdSMike Gerdts #define ACPI_PLD_OUTPUTSTR "%*.s%-22s = \"%s\",\n", ACPI_MUL_4 (Level), " "
854bc36eafdSMike Gerdts
855bc36eafdSMike Gerdts static void
AcpiDmPldBuffer(UINT32 Level,UINT8 * ByteData,UINT32 ByteCount)856bc36eafdSMike Gerdts AcpiDmPldBuffer (
857bc36eafdSMike Gerdts UINT32 Level,
858bc36eafdSMike Gerdts UINT8 *ByteData,
859bc36eafdSMike Gerdts UINT32 ByteCount)
860bc36eafdSMike Gerdts {
861bc36eafdSMike Gerdts ACPI_PLD_INFO *PldInfo;
862bc36eafdSMike Gerdts ACPI_STATUS Status;
863bc36eafdSMike Gerdts
864bc36eafdSMike Gerdts
865bc36eafdSMike Gerdts /* Check for valid byte count */
866bc36eafdSMike Gerdts
867bc36eafdSMike Gerdts if (ByteCount < ACPI_PLD_REV1_BUFFER_SIZE)
868bc36eafdSMike Gerdts {
869bc36eafdSMike Gerdts return;
870bc36eafdSMike Gerdts }
871bc36eafdSMike Gerdts
872bc36eafdSMike Gerdts /* Convert _PLD buffer to local _PLD struct */
873bc36eafdSMike Gerdts
874bc36eafdSMike Gerdts Status = AcpiDecodePldBuffer (ByteData, ByteCount, &PldInfo);
875bc36eafdSMike Gerdts if (ACPI_FAILURE (Status))
876bc36eafdSMike Gerdts {
877bc36eafdSMike Gerdts return;
878bc36eafdSMike Gerdts }
879bc36eafdSMike Gerdts
880bc36eafdSMike Gerdts AcpiOsPrintf ("\n");
881bc36eafdSMike Gerdts
882bc36eafdSMike Gerdts /* First 32-bit dword */
883bc36eafdSMike Gerdts
884bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Revision", PldInfo->Revision);
885bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_IgnoreColor", PldInfo->IgnoreColor);
886bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Red", PldInfo->Red);
887bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Green", PldInfo->Green);
888bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Blue", PldInfo->Blue);
889bc36eafdSMike Gerdts
890bc36eafdSMike Gerdts /* Second 32-bit dword */
891bc36eafdSMike Gerdts
892bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT16, "PLD_Width", PldInfo->Width);
893bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT16, "PLD_Height", PldInfo->Height);
894bc36eafdSMike Gerdts
895bc36eafdSMike Gerdts /* Third 32-bit dword */
896bc36eafdSMike Gerdts
897bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_UserVisible", PldInfo->UserVisible);
898bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Dock", PldInfo->Dock);
899bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Lid", PldInfo->Lid);
900bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUTSTR, "PLD_Panel",
901bc36eafdSMike Gerdts AcpiDmFindNameByIndex(PldInfo->Panel, AcpiGbl_PldPanelList));
902bc36eafdSMike Gerdts
903bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUTSTR, "PLD_VerticalPosition",
904bc36eafdSMike Gerdts AcpiDmFindNameByIndex(PldInfo->VerticalPosition, AcpiGbl_PldVerticalPositionList));
905bc36eafdSMike Gerdts
906bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUTSTR, "PLD_HorizontalPosition",
907bc36eafdSMike Gerdts AcpiDmFindNameByIndex(PldInfo->HorizontalPosition, AcpiGbl_PldHorizontalPositionList));
908bc36eafdSMike Gerdts
909bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUTSTR, "PLD_Shape",
910bc36eafdSMike Gerdts AcpiDmFindNameByIndex(PldInfo->Shape, AcpiGbl_PldShapeList));
911bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_GroupOrientation", PldInfo->GroupOrientation);
912bc36eafdSMike Gerdts
913bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_GroupToken", PldInfo->GroupToken);
914bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_GroupPosition", PldInfo->GroupPosition);
915bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Bay", PldInfo->Bay);
916bc36eafdSMike Gerdts
917bc36eafdSMike Gerdts /* Fourth 32-bit dword */
918bc36eafdSMike Gerdts
919bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Ejectable", PldInfo->Ejectable);
920bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_EjectRequired", PldInfo->OspmEjectRequired);
921bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_CabinetNumber", PldInfo->CabinetNumber);
922bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_CardCageNumber", PldInfo->CardCageNumber);
923bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Reference", PldInfo->Reference);
924bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Rotation", PldInfo->Rotation);
925bc36eafdSMike Gerdts
926bc36eafdSMike Gerdts if (ByteCount >= ACPI_PLD_REV2_BUFFER_SIZE)
927bc36eafdSMike Gerdts {
928bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08, "PLD_Order", PldInfo->Order);
929bc36eafdSMike Gerdts
930bc36eafdSMike Gerdts /* Fifth 32-bit dword */
931bc36eafdSMike Gerdts
932bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT16, "PLD_VerticalOffset", PldInfo->VerticalOffset);
933bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT16P, "PLD_HorizontalOffset", PldInfo->HorizontalOffset);
934bc36eafdSMike Gerdts }
935bc36eafdSMike Gerdts else /* Rev 1 buffer */
936bc36eafdSMike Gerdts {
937bc36eafdSMike Gerdts AcpiOsPrintf (ACPI_PLD_OUTPUT08P, "PLD_Order", PldInfo->Order);
938bc36eafdSMike Gerdts }
939bc36eafdSMike Gerdts
940bc36eafdSMike Gerdts ACPI_FREE (PldInfo);
941bc36eafdSMike Gerdts }
942bc36eafdSMike Gerdts
943bc36eafdSMike Gerdts
944bc36eafdSMike Gerdts /*******************************************************************************
945bc36eafdSMike Gerdts *
946bc36eafdSMike Gerdts * FUNCTION: AcpiDmUnicode
947bc36eafdSMike Gerdts *
948bc36eafdSMike Gerdts * PARAMETERS: Op - Byte List op containing Unicode string
949bc36eafdSMike Gerdts *
950bc36eafdSMike Gerdts * RETURN: None
951bc36eafdSMike Gerdts *
952bc36eafdSMike Gerdts * DESCRIPTION: Dump Unicode string as a standard ASCII string. (Remove
953bc36eafdSMike Gerdts * the extra zero bytes).
954bc36eafdSMike Gerdts *
955bc36eafdSMike Gerdts ******************************************************************************/
956bc36eafdSMike Gerdts
957bc36eafdSMike Gerdts static void
AcpiDmUnicode(ACPI_PARSE_OBJECT * Op)958bc36eafdSMike Gerdts AcpiDmUnicode (
959bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
960bc36eafdSMike Gerdts {
961bc36eafdSMike Gerdts UINT16 *WordData;
962bc36eafdSMike Gerdts UINT32 WordCount;
963bc36eafdSMike Gerdts UINT32 i;
964bc36eafdSMike Gerdts int OutputValue;
965bc36eafdSMike Gerdts
966bc36eafdSMike Gerdts
967bc36eafdSMike Gerdts /* Extract the buffer info as a WORD buffer */
968bc36eafdSMike Gerdts
969bc36eafdSMike Gerdts WordData = ACPI_CAST_PTR (UINT16, Op->Named.Data);
970bc36eafdSMike Gerdts WordCount = ACPI_DIV_2 (((UINT32) Op->Common.Value.Integer));
971bc36eafdSMike Gerdts
972bc36eafdSMike Gerdts /* Write every other byte as an ASCII character */
973bc36eafdSMike Gerdts
974bc36eafdSMike Gerdts AcpiOsPrintf ("\"");
975bc36eafdSMike Gerdts for (i = 0; i < (WordCount - 1); i++)
976bc36eafdSMike Gerdts {
977bc36eafdSMike Gerdts OutputValue = (int) WordData[i];
978bc36eafdSMike Gerdts
979bc36eafdSMike Gerdts /* Handle values that must be escaped */
980bc36eafdSMike Gerdts
981bc36eafdSMike Gerdts if ((OutputValue == '\"') ||
982bc36eafdSMike Gerdts (OutputValue == '\\'))
983bc36eafdSMike Gerdts {
984bc36eafdSMike Gerdts AcpiOsPrintf ("\\%c", OutputValue);
985bc36eafdSMike Gerdts }
986bc36eafdSMike Gerdts else if (!isprint (OutputValue))
987bc36eafdSMike Gerdts {
988bc36eafdSMike Gerdts AcpiOsPrintf ("\\x%2.2X", OutputValue);
989bc36eafdSMike Gerdts }
990bc36eafdSMike Gerdts else
991bc36eafdSMike Gerdts {
992bc36eafdSMike Gerdts AcpiOsPrintf ("%c", OutputValue);
993bc36eafdSMike Gerdts }
994bc36eafdSMike Gerdts }
995bc36eafdSMike Gerdts
996bc36eafdSMike Gerdts AcpiOsPrintf ("\")");
997bc36eafdSMike Gerdts }
998bc36eafdSMike Gerdts
999bc36eafdSMike Gerdts
1000bc36eafdSMike Gerdts /*******************************************************************************
1001bc36eafdSMike Gerdts *
1002bc36eafdSMike Gerdts * FUNCTION: AcpiDmGetHardwareIdType
1003bc36eafdSMike Gerdts *
1004bc36eafdSMike Gerdts * PARAMETERS: Op - Op to be examined
1005bc36eafdSMike Gerdts *
1006bc36eafdSMike Gerdts * RETURN: None
1007bc36eafdSMike Gerdts *
1008bc36eafdSMike Gerdts * DESCRIPTION: Determine the type of the argument to a _HID or _CID
1009bc36eafdSMike Gerdts * 1) Strings are allowed
1010bc36eafdSMike Gerdts * 2) If Integer, determine if it is a valid EISAID
1011bc36eafdSMike Gerdts *
1012bc36eafdSMike Gerdts ******************************************************************************/
1013bc36eafdSMike Gerdts
1014bc36eafdSMike Gerdts static void
AcpiDmGetHardwareIdType(ACPI_PARSE_OBJECT * Op)1015bc36eafdSMike Gerdts AcpiDmGetHardwareIdType (
1016bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
1017bc36eafdSMike Gerdts {
1018bc36eafdSMike Gerdts UINT32 BigEndianId;
1019bc36eafdSMike Gerdts UINT32 Prefix[3];
1020bc36eafdSMike Gerdts UINT32 i;
1021bc36eafdSMike Gerdts
1022bc36eafdSMike Gerdts
1023bc36eafdSMike Gerdts switch (Op->Common.AmlOpcode)
1024bc36eafdSMike Gerdts {
1025bc36eafdSMike Gerdts case AML_STRING_OP:
1026bc36eafdSMike Gerdts
1027bc36eafdSMike Gerdts /* Mark this string as an _HID/_CID string */
1028bc36eafdSMike Gerdts
1029bc36eafdSMike Gerdts Op->Common.DisasmOpcode = ACPI_DASM_HID_STRING;
1030bc36eafdSMike Gerdts break;
1031bc36eafdSMike Gerdts
1032bc36eafdSMike Gerdts case AML_WORD_OP:
1033bc36eafdSMike Gerdts case AML_DWORD_OP:
1034bc36eafdSMike Gerdts
1035bc36eafdSMike Gerdts /* Determine if a Word/Dword is a valid encoded EISAID */
1036bc36eafdSMike Gerdts
1037bc36eafdSMike Gerdts /* Swap from little-endian to big-endian to simplify conversion */
1038bc36eafdSMike Gerdts
1039bc36eafdSMike Gerdts BigEndianId = AcpiUtDwordByteSwap ((UINT32) Op->Common.Value.Integer);
1040bc36eafdSMike Gerdts
1041bc36eafdSMike Gerdts /* Create the 3 leading ASCII letters */
1042bc36eafdSMike Gerdts
1043bc36eafdSMike Gerdts Prefix[0] = ((BigEndianId >> 26) & 0x1F) + 0x40;
1044bc36eafdSMike Gerdts Prefix[1] = ((BigEndianId >> 21) & 0x1F) + 0x40;
1045bc36eafdSMike Gerdts Prefix[2] = ((BigEndianId >> 16) & 0x1F) + 0x40;
1046bc36eafdSMike Gerdts
1047bc36eafdSMike Gerdts /* Verify that all 3 are ascii and alpha */
1048bc36eafdSMike Gerdts
1049bc36eafdSMike Gerdts for (i = 0; i < 3; i++)
1050bc36eafdSMike Gerdts {
1051bc36eafdSMike Gerdts if (!ACPI_IS_ASCII (Prefix[i]) ||
1052bc36eafdSMike Gerdts !isalpha (Prefix[i]))
1053bc36eafdSMike Gerdts {
1054bc36eafdSMike Gerdts return;
1055bc36eafdSMike Gerdts }
1056bc36eafdSMike Gerdts }
1057bc36eafdSMike Gerdts
1058bc36eafdSMike Gerdts /* Mark this node as convertable to an EISA ID string */
1059bc36eafdSMike Gerdts
1060bc36eafdSMike Gerdts Op->Common.DisasmOpcode = ACPI_DASM_EISAID;
1061bc36eafdSMike Gerdts break;
1062bc36eafdSMike Gerdts
1063bc36eafdSMike Gerdts default:
1064bc36eafdSMike Gerdts break;
1065bc36eafdSMike Gerdts }
1066bc36eafdSMike Gerdts }
1067bc36eafdSMike Gerdts
1068bc36eafdSMike Gerdts
1069bc36eafdSMike Gerdts /*******************************************************************************
1070bc36eafdSMike Gerdts *
1071bc36eafdSMike Gerdts * FUNCTION: AcpiDmCheckForHardwareId
1072bc36eafdSMike Gerdts *
1073bc36eafdSMike Gerdts * PARAMETERS: Op - Op to be examined
1074bc36eafdSMike Gerdts *
1075bc36eafdSMike Gerdts * RETURN: None
1076bc36eafdSMike Gerdts *
1077bc36eafdSMike Gerdts * DESCRIPTION: Determine if a Name() Op is a _HID/_CID.
1078bc36eafdSMike Gerdts *
1079bc36eafdSMike Gerdts ******************************************************************************/
1080bc36eafdSMike Gerdts
1081bc36eafdSMike Gerdts void
AcpiDmCheckForHardwareId(ACPI_PARSE_OBJECT * Op)1082bc36eafdSMike Gerdts AcpiDmCheckForHardwareId (
1083bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *Op)
1084bc36eafdSMike Gerdts {
1085bc36eafdSMike Gerdts UINT32 Name;
1086bc36eafdSMike Gerdts ACPI_PARSE_OBJECT *NextOp;
1087bc36eafdSMike Gerdts
1088bc36eafdSMike Gerdts
1089bc36eafdSMike Gerdts /* Get the NameSegment */
1090bc36eafdSMike Gerdts
1091bc36eafdSMike Gerdts Name = AcpiPsGetName (Op);
1092bc36eafdSMike Gerdts if (!Name)
1093bc36eafdSMike Gerdts {
1094bc36eafdSMike Gerdts return;
1095bc36eafdSMike Gerdts }
1096bc36eafdSMike Gerdts
1097bc36eafdSMike Gerdts NextOp = AcpiPsGetDepthNext (NULL, Op);
1098bc36eafdSMike Gerdts if (!NextOp)
1099bc36eafdSMike Gerdts {
1100bc36eafdSMike Gerdts return;
1101bc36eafdSMike Gerdts }
1102bc36eafdSMike Gerdts
1103bc36eafdSMike Gerdts /* Check for _HID - has one argument */
1104bc36eafdSMike Gerdts
1105bc36eafdSMike Gerdts if (ACPI_COMPARE_NAME (&Name, METHOD_NAME__HID))
1106bc36eafdSMike Gerdts {
1107bc36eafdSMike Gerdts AcpiDmGetHardwareIdType (NextOp);
1108bc36eafdSMike Gerdts return;
1109bc36eafdSMike Gerdts }
1110bc36eafdSMike Gerdts
1111bc36eafdSMike Gerdts /* Exit if not _CID */
1112bc36eafdSMike Gerdts
1113bc36eafdSMike Gerdts if (!ACPI_COMPARE_NAME (&Name, METHOD_NAME__CID))
1114bc36eafdSMike Gerdts {
1115bc36eafdSMike Gerdts return;
1116bc36eafdSMike Gerdts }
1117bc36eafdSMike Gerdts
1118bc36eafdSMike Gerdts /* _CID can contain a single argument or a package */
1119bc36eafdSMike Gerdts
1120bc36eafdSMike Gerdts if (NextOp->Common.AmlOpcode != AML_PACKAGE_OP)
1121bc36eafdSMike Gerdts {
1122bc36eafdSMike Gerdts AcpiDmGetHardwareIdType (NextOp);
1123bc36eafdSMike Gerdts return;
1124bc36eafdSMike Gerdts }
1125bc36eafdSMike Gerdts
1126bc36eafdSMike Gerdts /* _CID with Package: get the package length, check all elements */
1127bc36eafdSMike Gerdts
1128bc36eafdSMike Gerdts NextOp = AcpiPsGetDepthNext (NULL, NextOp);
1129bc36eafdSMike Gerdts if (!NextOp)
1130bc36eafdSMike Gerdts {
1131bc36eafdSMike Gerdts return;
1132bc36eafdSMike Gerdts }
1133bc36eafdSMike Gerdts
1134bc36eafdSMike Gerdts /* Don't need to use the length, just walk the peer list */
1135bc36eafdSMike Gerdts
1136bc36eafdSMike Gerdts NextOp = NextOp->Common.Next;
1137bc36eafdSMike Gerdts while (NextOp)
1138bc36eafdSMike Gerdts {
1139bc36eafdSMike Gerdts AcpiDmGetHardwareIdType (NextOp);
1140bc36eafdSMike Gerdts NextOp = NextOp->Common.Next;
1141bc36eafdSMike Gerdts }
1142bc36eafdSMike Gerdts }
1143bc36eafdSMike Gerdts
1144bc36eafdSMike Gerdts
1145bc36eafdSMike Gerdts /*******************************************************************************
1146bc36eafdSMike Gerdts *
1147bc36eafdSMike Gerdts * FUNCTION: AcpiDmDecompressEisaId
1148bc36eafdSMike Gerdts *
1149bc36eafdSMike Gerdts * PARAMETERS: EncodedId - Raw encoded EISA ID.
1150bc36eafdSMike Gerdts *
1151bc36eafdSMike Gerdts * RETURN: None
1152bc36eafdSMike Gerdts *
1153bc36eafdSMike Gerdts * DESCRIPTION: Convert an encoded EISAID back to the original ASCII String
1154bc36eafdSMike Gerdts * and emit the correct ASL statement. If the ID is known, emit
1155bc36eafdSMike Gerdts * a description of the ID as a comment.
1156bc36eafdSMike Gerdts *
1157bc36eafdSMike Gerdts ******************************************************************************/
1158bc36eafdSMike Gerdts
1159bc36eafdSMike Gerdts void
AcpiDmDecompressEisaId(UINT32 EncodedId)1160bc36eafdSMike Gerdts AcpiDmDecompressEisaId (
1161bc36eafdSMike Gerdts UINT32 EncodedId)
1162bc36eafdSMike Gerdts {
1163bc36eafdSMike Gerdts char IdBuffer[ACPI_EISAID_STRING_SIZE];
1164bc36eafdSMike Gerdts const AH_DEVICE_ID *Info;
1165bc36eafdSMike Gerdts
1166bc36eafdSMike Gerdts
1167bc36eafdSMike Gerdts /* Convert EISAID to a string an emit the statement */
1168bc36eafdSMike Gerdts
1169bc36eafdSMike Gerdts AcpiExEisaIdToString (IdBuffer, EncodedId);
1170bc36eafdSMike Gerdts AcpiOsPrintf ("EisaId (\"%s\")", IdBuffer);
1171bc36eafdSMike Gerdts
1172bc36eafdSMike Gerdts /* If we know about the ID, emit the description */
1173bc36eafdSMike Gerdts
1174bc36eafdSMike Gerdts Info = AcpiAhMatchHardwareId (IdBuffer);
1175bc36eafdSMike Gerdts if (Info)
1176bc36eafdSMike Gerdts {
1177bc36eafdSMike Gerdts AcpiOsPrintf (" /* %s */", Info->Description);
1178bc36eafdSMike Gerdts }
1179bc36eafdSMike Gerdts }
1180