dbcmds.c revision 1.1.1.6 1 1.1 jruoho /*******************************************************************************
2 1.1 jruoho *
3 1.1.1.2 jruoho * Module Name: dbcmds - Miscellaneous debug commands and output routines
4 1.1 jruoho *
5 1.1 jruoho ******************************************************************************/
6 1.1 jruoho
7 1.1.1.2 jruoho /*
8 1.1.1.5 christos * Copyright (C) 2000 - 2015, Intel Corp.
9 1.1 jruoho * All rights reserved.
10 1.1 jruoho *
11 1.1.1.2 jruoho * Redistribution and use in source and binary forms, with or without
12 1.1.1.2 jruoho * modification, are permitted provided that the following conditions
13 1.1.1.2 jruoho * are met:
14 1.1.1.2 jruoho * 1. Redistributions of source code must retain the above copyright
15 1.1.1.2 jruoho * notice, this list of conditions, and the following disclaimer,
16 1.1.1.2 jruoho * without modification.
17 1.1.1.2 jruoho * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1.1.2 jruoho * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1.1.2 jruoho * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1.1.2 jruoho * including a substantially similar Disclaimer requirement for further
21 1.1.1.2 jruoho * binary redistribution.
22 1.1.1.2 jruoho * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1.1.2 jruoho * of any contributors may be used to endorse or promote products derived
24 1.1.1.2 jruoho * from this software without specific prior written permission.
25 1.1.1.2 jruoho *
26 1.1.1.2 jruoho * Alternatively, this software may be distributed under the terms of the
27 1.1.1.2 jruoho * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1.1.2 jruoho * Software Foundation.
29 1.1.1.2 jruoho *
30 1.1.1.2 jruoho * NO WARRANTY
31 1.1.1.2 jruoho * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1.1.2 jruoho * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1.1.2 jruoho * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1.1.2 jruoho * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1.1.2 jruoho * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1.1.2 jruoho * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1.1.2 jruoho * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1.1.2 jruoho * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1.1.2 jruoho * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1.1.2 jruoho * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1.1.2 jruoho * POSSIBILITY OF SUCH DAMAGES.
42 1.1.1.2 jruoho */
43 1.1 jruoho
44 1.1 jruoho #include "acpi.h"
45 1.1 jruoho #include "accommon.h"
46 1.1 jruoho #include "acevents.h"
47 1.1 jruoho #include "acdebug.h"
48 1.1.1.3 christos #include "acnamesp.h"
49 1.1 jruoho #include "acresrc.h"
50 1.1 jruoho #include "actables.h"
51 1.1 jruoho
52 1.1 jruoho #ifdef ACPI_DEBUGGER
53 1.1 jruoho
54 1.1 jruoho #define _COMPONENT ACPI_CA_DEBUGGER
55 1.1 jruoho ACPI_MODULE_NAME ("dbcmds")
56 1.1 jruoho
57 1.1 jruoho
58 1.1 jruoho /* Local prototypes */
59 1.1 jruoho
60 1.1 jruoho static void
61 1.1 jruoho AcpiDmCompareAmlResources (
62 1.1 jruoho UINT8 *Aml1Buffer,
63 1.1 jruoho ACPI_RSDESC_SIZE Aml1BufferLength,
64 1.1 jruoho UINT8 *Aml2Buffer,
65 1.1 jruoho ACPI_RSDESC_SIZE Aml2BufferLength);
66 1.1 jruoho
67 1.1 jruoho static ACPI_STATUS
68 1.1 jruoho AcpiDmTestResourceConversion (
69 1.1 jruoho ACPI_NAMESPACE_NODE *Node,
70 1.1 jruoho char *Name);
71 1.1 jruoho
72 1.1.1.3 christos static ACPI_STATUS
73 1.1.1.3 christos AcpiDbResourceCallback (
74 1.1.1.3 christos ACPI_RESOURCE *Resource,
75 1.1.1.3 christos void *Context);
76 1.1.1.3 christos
77 1.1.1.3 christos static ACPI_STATUS
78 1.1.1.3 christos AcpiDbDeviceResources (
79 1.1.1.3 christos ACPI_HANDLE ObjHandle,
80 1.1.1.3 christos UINT32 NestingLevel,
81 1.1.1.3 christos void *Context,
82 1.1.1.3 christos void **ReturnValue);
83 1.1.1.3 christos
84 1.1.1.3 christos static void
85 1.1.1.3 christos AcpiDbDoOneSleepState (
86 1.1.1.3 christos UINT8 SleepState);
87 1.1.1.3 christos
88 1.1 jruoho
89 1.1.1.6 christos static char *AcpiDbTraceMethodName = NULL;
90 1.1.1.6 christos
91 1.1 jruoho /*******************************************************************************
92 1.1 jruoho *
93 1.1 jruoho * FUNCTION: AcpiDbConvertToNode
94 1.1 jruoho *
95 1.1.1.3 christos * PARAMETERS: InString - String to convert
96 1.1 jruoho *
97 1.1 jruoho * RETURN: Pointer to a NS node
98 1.1 jruoho *
99 1.1.1.3 christos * DESCRIPTION: Convert a string to a valid NS pointer. Handles numeric or
100 1.1.1.3 christos * alphanumeric strings.
101 1.1 jruoho *
102 1.1 jruoho ******************************************************************************/
103 1.1 jruoho
104 1.1.1.2 jruoho ACPI_NAMESPACE_NODE *
105 1.1 jruoho AcpiDbConvertToNode (
106 1.1 jruoho char *InString)
107 1.1 jruoho {
108 1.1 jruoho ACPI_NAMESPACE_NODE *Node;
109 1.1.1.3 christos ACPI_SIZE Address;
110 1.1 jruoho
111 1.1 jruoho
112 1.1 jruoho if ((*InString >= 0x30) && (*InString <= 0x39))
113 1.1 jruoho {
114 1.1 jruoho /* Numeric argument, convert */
115 1.1 jruoho
116 1.1.1.6 christos Address = strtoul (InString, NULL, 16);
117 1.1.1.3 christos Node = ACPI_TO_POINTER (Address);
118 1.1 jruoho if (!AcpiOsReadable (Node, sizeof (ACPI_NAMESPACE_NODE)))
119 1.1 jruoho {
120 1.1.1.4 christos AcpiOsPrintf ("Address %p is invalid",
121 1.1 jruoho Node);
122 1.1 jruoho return (NULL);
123 1.1 jruoho }
124 1.1 jruoho
125 1.1 jruoho /* Make sure pointer is valid NS node */
126 1.1 jruoho
127 1.1 jruoho if (ACPI_GET_DESCRIPTOR_TYPE (Node) != ACPI_DESC_TYPE_NAMED)
128 1.1 jruoho {
129 1.1.1.4 christos AcpiOsPrintf ("Address %p is not a valid namespace node [%s]\n",
130 1.1 jruoho Node, AcpiUtGetDescriptorName (Node));
131 1.1 jruoho return (NULL);
132 1.1 jruoho }
133 1.1 jruoho }
134 1.1 jruoho else
135 1.1 jruoho {
136 1.1.1.3 christos /*
137 1.1.1.3 christos * Alpha argument: The parameter is a name string that must be
138 1.1.1.3 christos * resolved to a Namespace object.
139 1.1 jruoho */
140 1.1 jruoho Node = AcpiDbLocalNsLookup (InString);
141 1.1 jruoho if (!Node)
142 1.1 jruoho {
143 1.1.1.4 christos AcpiOsPrintf ("Could not find [%s] in namespace, defaulting to root node\n",
144 1.1.1.4 christos InString);
145 1.1 jruoho Node = AcpiGbl_RootNode;
146 1.1 jruoho }
147 1.1 jruoho }
148 1.1 jruoho
149 1.1 jruoho return (Node);
150 1.1 jruoho }
151 1.1 jruoho
152 1.1 jruoho
153 1.1 jruoho /*******************************************************************************
154 1.1 jruoho *
155 1.1 jruoho * FUNCTION: AcpiDbSleep
156 1.1 jruoho *
157 1.1.1.3 christos * PARAMETERS: ObjectArg - Desired sleep state (0-5). NULL means
158 1.1.1.3 christos * invoke all possible sleep states.
159 1.1 jruoho *
160 1.1 jruoho * RETURN: Status
161 1.1 jruoho *
162 1.1.1.3 christos * DESCRIPTION: Simulate sleep/wake sequences
163 1.1 jruoho *
164 1.1 jruoho ******************************************************************************/
165 1.1 jruoho
166 1.1 jruoho ACPI_STATUS
167 1.1 jruoho AcpiDbSleep (
168 1.1 jruoho char *ObjectArg)
169 1.1 jruoho {
170 1.1 jruoho UINT8 SleepState;
171 1.1.1.3 christos UINT32 i;
172 1.1.1.3 christos
173 1.1.1.3 christos
174 1.1.1.3 christos ACPI_FUNCTION_TRACE (AcpiDbSleep);
175 1.1.1.3 christos
176 1.1.1.3 christos
177 1.1.1.3 christos /* Null input (no arguments) means to invoke all sleep states */
178 1.1.1.3 christos
179 1.1.1.3 christos if (!ObjectArg)
180 1.1.1.3 christos {
181 1.1.1.3 christos AcpiOsPrintf ("Invoking all possible sleep states, 0-%d\n",
182 1.1.1.3 christos ACPI_S_STATES_MAX);
183 1.1.1.3 christos
184 1.1.1.3 christos for (i = 0; i <= ACPI_S_STATES_MAX; i++)
185 1.1.1.3 christos {
186 1.1.1.3 christos AcpiDbDoOneSleepState ((UINT8) i);
187 1.1.1.3 christos }
188 1.1.1.3 christos
189 1.1.1.3 christos return_ACPI_STATUS (AE_OK);
190 1.1.1.3 christos }
191 1.1 jruoho
192 1.1.1.3 christos /* Convert argument to binary and invoke the sleep state */
193 1.1 jruoho
194 1.1.1.6 christos SleepState = (UINT8) strtoul (ObjectArg, NULL, 0);
195 1.1.1.3 christos AcpiDbDoOneSleepState (SleepState);
196 1.1.1.3 christos return_ACPI_STATUS (AE_OK);
197 1.1.1.3 christos }
198 1.1.1.3 christos
199 1.1.1.3 christos
200 1.1.1.3 christos /*******************************************************************************
201 1.1.1.3 christos *
202 1.1.1.3 christos * FUNCTION: AcpiDbDoOneSleepState
203 1.1.1.3 christos *
204 1.1.1.3 christos * PARAMETERS: SleepState - Desired sleep state (0-5)
205 1.1.1.3 christos *
206 1.1.1.3 christos * RETURN: Status
207 1.1.1.3 christos *
208 1.1.1.3 christos * DESCRIPTION: Simulate a sleep/wake sequence
209 1.1.1.3 christos *
210 1.1.1.3 christos ******************************************************************************/
211 1.1.1.3 christos
212 1.1.1.3 christos static void
213 1.1.1.3 christos AcpiDbDoOneSleepState (
214 1.1.1.3 christos UINT8 SleepState)
215 1.1.1.3 christos {
216 1.1.1.3 christos ACPI_STATUS Status;
217 1.1.1.3 christos UINT8 SleepTypeA;
218 1.1.1.3 christos UINT8 SleepTypeB;
219 1.1.1.3 christos
220 1.1.1.3 christos
221 1.1.1.3 christos /* Validate parameter */
222 1.1.1.3 christos
223 1.1.1.3 christos if (SleepState > ACPI_S_STATES_MAX)
224 1.1.1.3 christos {
225 1.1.1.3 christos AcpiOsPrintf ("Sleep state %d out of range (%d max)\n",
226 1.1.1.3 christos SleepState, ACPI_S_STATES_MAX);
227 1.1.1.3 christos return;
228 1.1.1.3 christos }
229 1.1.1.3 christos
230 1.1.1.3 christos AcpiOsPrintf ("\n---- Invoking sleep state S%d (%s):\n",
231 1.1.1.3 christos SleepState, AcpiGbl_SleepStateNames[SleepState]);
232 1.1.1.3 christos
233 1.1.1.3 christos /* Get the values for the sleep type registers (for display only) */
234 1.1.1.3 christos
235 1.1.1.3 christos Status = AcpiGetSleepTypeData (SleepState, &SleepTypeA, &SleepTypeB);
236 1.1.1.3 christos if (ACPI_FAILURE (Status))
237 1.1.1.3 christos {
238 1.1.1.3 christos AcpiOsPrintf ("Could not evaluate [%s] method, %s\n",
239 1.1.1.3 christos AcpiGbl_SleepStateNames[SleepState],
240 1.1.1.3 christos AcpiFormatException (Status));
241 1.1.1.3 christos return;
242 1.1.1.3 christos }
243 1.1 jruoho
244 1.1.1.3 christos AcpiOsPrintf (
245 1.1.1.3 christos "Register values for sleep state S%d: Sleep-A: %.2X, Sleep-B: %.2X\n",
246 1.1.1.3 christos SleepState, SleepTypeA, SleepTypeB);
247 1.1.1.3 christos
248 1.1.1.3 christos /* Invoke the various sleep/wake interfaces */
249 1.1.1.3 christos
250 1.1.1.3 christos AcpiOsPrintf ("**** Sleep: Prepare to sleep (S%d) ****\n",
251 1.1.1.3 christos SleepState);
252 1.1 jruoho Status = AcpiEnterSleepStatePrep (SleepState);
253 1.1 jruoho if (ACPI_FAILURE (Status))
254 1.1 jruoho {
255 1.1.1.3 christos goto ErrorExit;
256 1.1 jruoho }
257 1.1 jruoho
258 1.1.1.3 christos AcpiOsPrintf ("**** Sleep: Going to sleep (S%d) ****\n",
259 1.1.1.3 christos SleepState);
260 1.1 jruoho Status = AcpiEnterSleepState (SleepState);
261 1.1 jruoho if (ACPI_FAILURE (Status))
262 1.1 jruoho {
263 1.1.1.3 christos goto ErrorExit;
264 1.1.1.3 christos }
265 1.1.1.3 christos
266 1.1.1.3 christos AcpiOsPrintf ("**** Wake: Prepare to return from sleep (S%d) ****\n",
267 1.1.1.3 christos SleepState);
268 1.1.1.3 christos Status = AcpiLeaveSleepStatePrep (SleepState);
269 1.1.1.3 christos if (ACPI_FAILURE (Status))
270 1.1.1.3 christos {
271 1.1.1.3 christos goto ErrorExit;
272 1.1 jruoho }
273 1.1 jruoho
274 1.1.1.3 christos AcpiOsPrintf ("**** Wake: Return from sleep (S%d) ****\n",
275 1.1.1.3 christos SleepState);
276 1.1 jruoho Status = AcpiLeaveSleepState (SleepState);
277 1.1.1.3 christos if (ACPI_FAILURE (Status))
278 1.1.1.3 christos {
279 1.1.1.3 christos goto ErrorExit;
280 1.1.1.3 christos }
281 1.1 jruoho
282 1.1.1.3 christos return;
283 1.1.1.3 christos
284 1.1.1.3 christos
285 1.1.1.3 christos ErrorExit:
286 1.1.1.3 christos ACPI_EXCEPTION ((AE_INFO, Status, "During invocation of sleep state S%d",
287 1.1.1.3 christos SleepState));
288 1.1 jruoho }
289 1.1 jruoho
290 1.1.1.3 christos
291 1.1 jruoho /*******************************************************************************
292 1.1 jruoho *
293 1.1 jruoho * FUNCTION: AcpiDbDisplayLocks
294 1.1 jruoho *
295 1.1 jruoho * PARAMETERS: None
296 1.1 jruoho *
297 1.1 jruoho * RETURN: None
298 1.1 jruoho *
299 1.1 jruoho * DESCRIPTION: Display information about internal mutexes.
300 1.1 jruoho *
301 1.1 jruoho ******************************************************************************/
302 1.1 jruoho
303 1.1 jruoho void
304 1.1 jruoho AcpiDbDisplayLocks (
305 1.1 jruoho void)
306 1.1 jruoho {
307 1.1 jruoho UINT32 i;
308 1.1 jruoho
309 1.1 jruoho
310 1.1 jruoho for (i = 0; i < ACPI_MAX_MUTEX; i++)
311 1.1 jruoho {
312 1.1 jruoho AcpiOsPrintf ("%26s : %s\n", AcpiUtGetMutexName (i),
313 1.1 jruoho AcpiGbl_MutexInfo[i].ThreadId == ACPI_MUTEX_NOT_ACQUIRED
314 1.1 jruoho ? "Locked" : "Unlocked");
315 1.1 jruoho }
316 1.1 jruoho }
317 1.1 jruoho
318 1.1 jruoho
319 1.1 jruoho /*******************************************************************************
320 1.1 jruoho *
321 1.1 jruoho * FUNCTION: AcpiDbDisplayTableInfo
322 1.1 jruoho *
323 1.1.1.3 christos * PARAMETERS: TableArg - Name of table to be displayed
324 1.1 jruoho *
325 1.1 jruoho * RETURN: None
326 1.1 jruoho *
327 1.1.1.3 christos * DESCRIPTION: Display information about loaded tables. Current
328 1.1 jruoho * implementation displays all loaded tables.
329 1.1 jruoho *
330 1.1 jruoho ******************************************************************************/
331 1.1 jruoho
332 1.1 jruoho void
333 1.1 jruoho AcpiDbDisplayTableInfo (
334 1.1 jruoho char *TableArg)
335 1.1 jruoho {
336 1.1 jruoho UINT32 i;
337 1.1 jruoho ACPI_TABLE_DESC *TableDesc;
338 1.1 jruoho ACPI_STATUS Status;
339 1.1 jruoho
340 1.1 jruoho
341 1.1.1.3 christos /* Header */
342 1.1.1.3 christos
343 1.1.1.4 christos AcpiOsPrintf ("Idx ID Status Type TableHeader (Sig, Address, Length)\n");
344 1.1.1.3 christos
345 1.1 jruoho /* Walk the entire root table list */
346 1.1 jruoho
347 1.1 jruoho for (i = 0; i < AcpiGbl_RootTableList.CurrentTableCount; i++)
348 1.1 jruoho {
349 1.1 jruoho TableDesc = &AcpiGbl_RootTableList.Tables[i];
350 1.1.1.3 christos
351 1.1.1.3 christos /* Index and Table ID */
352 1.1.1.3 christos
353 1.1.1.3 christos AcpiOsPrintf ("%3u %.2u ", i, TableDesc->OwnerId);
354 1.1.1.3 christos
355 1.1.1.3 christos /* Decode the table flags */
356 1.1.1.3 christos
357 1.1.1.3 christos if (!(TableDesc->Flags & ACPI_TABLE_IS_LOADED))
358 1.1.1.3 christos {
359 1.1.1.3 christos AcpiOsPrintf ("NotLoaded ");
360 1.1.1.3 christos }
361 1.1.1.3 christos else
362 1.1.1.3 christos {
363 1.1.1.3 christos AcpiOsPrintf (" Loaded ");
364 1.1.1.3 christos }
365 1.1.1.3 christos
366 1.1.1.3 christos switch (TableDesc->Flags & ACPI_TABLE_ORIGIN_MASK)
367 1.1.1.3 christos {
368 1.1.1.4 christos case ACPI_TABLE_ORIGIN_EXTERNAL_VIRTUAL:
369 1.1.1.3 christos
370 1.1.1.4 christos AcpiOsPrintf ("External/virtual ");
371 1.1.1.3 christos break;
372 1.1.1.3 christos
373 1.1.1.4 christos case ACPI_TABLE_ORIGIN_INTERNAL_PHYSICAL:
374 1.1.1.3 christos
375 1.1.1.4 christos AcpiOsPrintf ("Internal/physical ");
376 1.1.1.3 christos break;
377 1.1.1.3 christos
378 1.1.1.4 christos case ACPI_TABLE_ORIGIN_INTERNAL_VIRTUAL:
379 1.1.1.3 christos
380 1.1.1.4 christos AcpiOsPrintf ("Internal/virtual ");
381 1.1.1.3 christos break;
382 1.1.1.3 christos
383 1.1.1.3 christos default:
384 1.1.1.3 christos
385 1.1.1.4 christos AcpiOsPrintf ("INVALID TYPE ");
386 1.1.1.3 christos break;
387 1.1.1.3 christos }
388 1.1 jruoho
389 1.1 jruoho /* Make sure that the table is mapped */
390 1.1 jruoho
391 1.1.1.4 christos Status = AcpiTbValidateTable (TableDesc);
392 1.1 jruoho if (ACPI_FAILURE (Status))
393 1.1 jruoho {
394 1.1 jruoho return;
395 1.1 jruoho }
396 1.1 jruoho
397 1.1 jruoho /* Dump the table header */
398 1.1 jruoho
399 1.1 jruoho if (TableDesc->Pointer)
400 1.1 jruoho {
401 1.1 jruoho AcpiTbPrintTableHeader (TableDesc->Address, TableDesc->Pointer);
402 1.1 jruoho }
403 1.1 jruoho else
404 1.1 jruoho {
405 1.1 jruoho /* If the pointer is null, the table has been unloaded */
406 1.1 jruoho
407 1.1 jruoho ACPI_INFO ((AE_INFO, "%4.4s - Table has been unloaded",
408 1.1 jruoho TableDesc->Signature.Ascii));
409 1.1 jruoho }
410 1.1 jruoho }
411 1.1 jruoho }
412 1.1 jruoho
413 1.1 jruoho
414 1.1 jruoho /*******************************************************************************
415 1.1 jruoho *
416 1.1.1.2 jruoho * FUNCTION: AcpiDbUnloadAcpiTable
417 1.1 jruoho *
418 1.1.1.3 christos * PARAMETERS: ObjectName - Namespace pathname for an object that
419 1.1.1.3 christos * is owned by the table to be unloaded
420 1.1 jruoho *
421 1.1.1.3 christos * RETURN: None
422 1.1 jruoho *
423 1.1.1.3 christos * DESCRIPTION: Unload an ACPI table, via any namespace node that is owned
424 1.1.1.3 christos * by the table.
425 1.1 jruoho *
426 1.1 jruoho ******************************************************************************/
427 1.1 jruoho
428 1.1.1.2 jruoho void
429 1.1.1.2 jruoho AcpiDbUnloadAcpiTable (
430 1.1.1.3 christos char *ObjectName)
431 1.1 jruoho {
432 1.1.1.3 christos ACPI_NAMESPACE_NODE *Node;
433 1.1.1.2 jruoho ACPI_STATUS Status;
434 1.1 jruoho
435 1.1 jruoho
436 1.1.1.3 christos /* Translate name to an Named object */
437 1.1 jruoho
438 1.1.1.3 christos Node = AcpiDbConvertToNode (ObjectName);
439 1.1.1.3 christos if (!Node)
440 1.1 jruoho {
441 1.1.1.3 christos return;
442 1.1 jruoho }
443 1.1 jruoho
444 1.1.1.3 christos Status = AcpiUnloadParentTable (ACPI_CAST_PTR (ACPI_HANDLE, Node));
445 1.1.1.3 christos if (ACPI_SUCCESS (Status))
446 1.1.1.3 christos {
447 1.1.1.3 christos AcpiOsPrintf ("Parent of [%s] (%p) unloaded and uninstalled\n",
448 1.1.1.3 christos ObjectName, Node);
449 1.1.1.3 christos }
450 1.1.1.3 christos else
451 1.1.1.3 christos {
452 1.1.1.3 christos AcpiOsPrintf ("%s, while unloading parent table of [%s]\n",
453 1.1.1.3 christos AcpiFormatException (Status), ObjectName);
454 1.1.1.3 christos }
455 1.1 jruoho }
456 1.1 jruoho
457 1.1 jruoho
458 1.1 jruoho /*******************************************************************************
459 1.1 jruoho *
460 1.1.1.2 jruoho * FUNCTION: AcpiDbSendNotify
461 1.1 jruoho *
462 1.1.1.3 christos * PARAMETERS: Name - Name of ACPI object where to send notify
463 1.1.1.3 christos * Value - Value of the notify to send.
464 1.1 jruoho *
465 1.1 jruoho * RETURN: None
466 1.1 jruoho *
467 1.1.1.3 christos * DESCRIPTION: Send an ACPI notification. The value specified is sent to the
468 1.1.1.2 jruoho * named object as an ACPI notify.
469 1.1 jruoho *
470 1.1 jruoho ******************************************************************************/
471 1.1 jruoho
472 1.1.1.2 jruoho void
473 1.1.1.2 jruoho AcpiDbSendNotify (
474 1.1.1.2 jruoho char *Name,
475 1.1.1.2 jruoho UINT32 Value)
476 1.1 jruoho {
477 1.1.1.2 jruoho ACPI_NAMESPACE_NODE *Node;
478 1.1.1.2 jruoho ACPI_STATUS Status;
479 1.1.1.2 jruoho
480 1.1 jruoho
481 1.1.1.2 jruoho /* Translate name to an Named object */
482 1.1 jruoho
483 1.1.1.2 jruoho Node = AcpiDbConvertToNode (Name);
484 1.1.1.2 jruoho if (!Node)
485 1.1 jruoho {
486 1.1.1.2 jruoho return;
487 1.1 jruoho }
488 1.1 jruoho
489 1.1.1.3 christos /* Dispatch the notify if legal */
490 1.1 jruoho
491 1.1.1.3 christos if (AcpiEvIsNotifyObject (Node))
492 1.1 jruoho {
493 1.1.1.2 jruoho Status = AcpiEvQueueNotifyRequest (Node, Value);
494 1.1.1.2 jruoho if (ACPI_FAILURE (Status))
495 1.1.1.2 jruoho {
496 1.1.1.2 jruoho AcpiOsPrintf ("Could not queue notify\n");
497 1.1.1.2 jruoho }
498 1.1.1.3 christos }
499 1.1.1.3 christos else
500 1.1.1.3 christos {
501 1.1.1.3 christos AcpiOsPrintf (
502 1.1.1.3 christos "Named object [%4.4s] Type %s, must be Device/Thermal/Processor type\n",
503 1.1.1.3 christos AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type));
504 1.1.1.2 jruoho }
505 1.1 jruoho }
506 1.1 jruoho
507 1.1 jruoho
508 1.1 jruoho /*******************************************************************************
509 1.1 jruoho *
510 1.1.1.2 jruoho * FUNCTION: AcpiDbDisplayInterfaces
511 1.1 jruoho *
512 1.1.1.2 jruoho * PARAMETERS: ActionArg - Null, "install", or "remove"
513 1.1.1.2 jruoho * InterfaceNameArg - Name for install/remove options
514 1.1 jruoho *
515 1.1.1.2 jruoho * RETURN: None
516 1.1 jruoho *
517 1.1.1.2 jruoho * DESCRIPTION: Display or modify the global _OSI interface list
518 1.1 jruoho *
519 1.1 jruoho ******************************************************************************/
520 1.1 jruoho
521 1.1 jruoho void
522 1.1.1.2 jruoho AcpiDbDisplayInterfaces (
523 1.1.1.2 jruoho char *ActionArg,
524 1.1.1.2 jruoho char *InterfaceNameArg)
525 1.1 jruoho {
526 1.1.1.2 jruoho ACPI_INTERFACE_INFO *NextInterface;
527 1.1.1.2 jruoho char *SubString;
528 1.1 jruoho ACPI_STATUS Status;
529 1.1 jruoho
530 1.1 jruoho
531 1.1.1.2 jruoho /* If no arguments, just display current interface list */
532 1.1.1.2 jruoho
533 1.1.1.2 jruoho if (!ActionArg)
534 1.1 jruoho {
535 1.1.1.2 jruoho (void) AcpiOsAcquireMutex (AcpiGbl_OsiMutex,
536 1.1.1.2 jruoho ACPI_WAIT_FOREVER);
537 1.1.1.2 jruoho
538 1.1.1.2 jruoho NextInterface = AcpiGbl_SupportedInterfaces;
539 1.1.1.2 jruoho while (NextInterface)
540 1.1.1.2 jruoho {
541 1.1.1.2 jruoho if (!(NextInterface->Flags & ACPI_OSI_INVALID))
542 1.1.1.2 jruoho {
543 1.1.1.2 jruoho AcpiOsPrintf ("%s\n", NextInterface->Name);
544 1.1.1.2 jruoho }
545 1.1.1.2 jruoho NextInterface = NextInterface->Next;
546 1.1.1.2 jruoho }
547 1.1.1.2 jruoho
548 1.1.1.2 jruoho AcpiOsReleaseMutex (AcpiGbl_OsiMutex);
549 1.1 jruoho return;
550 1.1 jruoho }
551 1.1 jruoho
552 1.1.1.2 jruoho /* If ActionArg exists, so must InterfaceNameArg */
553 1.1 jruoho
554 1.1.1.2 jruoho if (!InterfaceNameArg)
555 1.1 jruoho {
556 1.1.1.2 jruoho AcpiOsPrintf ("Missing Interface Name argument\n");
557 1.1.1.2 jruoho return;
558 1.1.1.2 jruoho }
559 1.1.1.2 jruoho
560 1.1.1.2 jruoho /* Uppercase the action for match below */
561 1.1 jruoho
562 1.1.1.2 jruoho AcpiUtStrupr (ActionArg);
563 1.1.1.2 jruoho
564 1.1.1.2 jruoho /* Install - install an interface */
565 1.1.1.2 jruoho
566 1.1.1.6 christos SubString = strstr ("INSTALL", ActionArg);
567 1.1.1.2 jruoho if (SubString)
568 1.1.1.2 jruoho {
569 1.1.1.2 jruoho Status = AcpiInstallInterface (InterfaceNameArg);
570 1.1 jruoho if (ACPI_FAILURE (Status))
571 1.1 jruoho {
572 1.1.1.2 jruoho AcpiOsPrintf ("%s, while installing \"%s\"\n",
573 1.1.1.2 jruoho AcpiFormatException (Status), InterfaceNameArg);
574 1.1 jruoho }
575 1.1.1.2 jruoho return;
576 1.1 jruoho }
577 1.1 jruoho
578 1.1.1.2 jruoho /* Remove - remove an interface */
579 1.1.1.2 jruoho
580 1.1.1.6 christos SubString = strstr ("REMOVE", ActionArg);
581 1.1.1.2 jruoho if (SubString)
582 1.1.1.2 jruoho {
583 1.1.1.2 jruoho Status = AcpiRemoveInterface (InterfaceNameArg);
584 1.1 jruoho if (ACPI_FAILURE (Status))
585 1.1 jruoho {
586 1.1.1.2 jruoho AcpiOsPrintf ("%s, while removing \"%s\"\n",
587 1.1.1.2 jruoho AcpiFormatException (Status), InterfaceNameArg);
588 1.1 jruoho }
589 1.1.1.2 jruoho return;
590 1.1 jruoho }
591 1.1 jruoho
592 1.1.1.2 jruoho /* Invalid ActionArg */
593 1.1 jruoho
594 1.1.1.2 jruoho AcpiOsPrintf ("Invalid action argument: %s\n", ActionArg);
595 1.1.1.2 jruoho return;
596 1.1 jruoho }
597 1.1 jruoho
598 1.1 jruoho
599 1.1 jruoho /*******************************************************************************
600 1.1 jruoho *
601 1.1.1.3 christos * FUNCTION: AcpiDbDisplayTemplate
602 1.1.1.3 christos *
603 1.1.1.3 christos * PARAMETERS: BufferArg - Buffer name or address
604 1.1.1.3 christos *
605 1.1.1.3 christos * RETURN: None
606 1.1.1.3 christos *
607 1.1.1.3 christos * DESCRIPTION: Dump a buffer that contains a resource template
608 1.1.1.3 christos *
609 1.1.1.3 christos ******************************************************************************/
610 1.1.1.3 christos
611 1.1.1.3 christos void
612 1.1.1.3 christos AcpiDbDisplayTemplate (
613 1.1.1.3 christos char *BufferArg)
614 1.1.1.3 christos {
615 1.1.1.3 christos ACPI_NAMESPACE_NODE *Node;
616 1.1.1.3 christos ACPI_STATUS Status;
617 1.1.1.3 christos ACPI_BUFFER ReturnBuffer;
618 1.1.1.3 christos
619 1.1.1.3 christos
620 1.1.1.3 christos /* Translate BufferArg to an Named object */
621 1.1.1.3 christos
622 1.1.1.3 christos Node = AcpiDbConvertToNode (BufferArg);
623 1.1.1.3 christos if (!Node || (Node == AcpiGbl_RootNode))
624 1.1.1.3 christos {
625 1.1.1.3 christos AcpiOsPrintf ("Invalid argument: %s\n", BufferArg);
626 1.1.1.3 christos return;
627 1.1.1.3 christos }
628 1.1.1.3 christos
629 1.1.1.3 christos /* We must have a buffer object */
630 1.1.1.3 christos
631 1.1.1.3 christos if (Node->Type != ACPI_TYPE_BUFFER)
632 1.1.1.3 christos {
633 1.1.1.3 christos AcpiOsPrintf ("Not a Buffer object, cannot be a template: %s\n",
634 1.1.1.3 christos BufferArg);
635 1.1.1.3 christos return;
636 1.1.1.3 christos }
637 1.1.1.3 christos
638 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
639 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
640 1.1.1.3 christos
641 1.1.1.3 christos /* Attempt to convert the raw buffer to a resource list */
642 1.1.1.3 christos
643 1.1.1.3 christos Status = AcpiRsCreateResourceList (Node->Object, &ReturnBuffer);
644 1.1.1.3 christos
645 1.1.1.3 christos AcpiDbSetOutputDestination (ACPI_DB_REDIRECTABLE_OUTPUT);
646 1.1.1.3 christos AcpiDbgLevel |= ACPI_LV_RESOURCES;
647 1.1.1.3 christos
648 1.1.1.3 christos if (ACPI_FAILURE (Status))
649 1.1.1.3 christos {
650 1.1.1.3 christos AcpiOsPrintf ("Could not convert Buffer to a resource list: %s, %s\n",
651 1.1.1.3 christos BufferArg, AcpiFormatException (Status));
652 1.1.1.3 christos goto DumpBuffer;
653 1.1.1.3 christos }
654 1.1.1.3 christos
655 1.1.1.3 christos /* Now we can dump the resource list */
656 1.1.1.3 christos
657 1.1.1.3 christos AcpiRsDumpResourceList (ACPI_CAST_PTR (ACPI_RESOURCE,
658 1.1.1.3 christos ReturnBuffer.Pointer));
659 1.1.1.3 christos
660 1.1.1.3 christos DumpBuffer:
661 1.1.1.3 christos AcpiOsPrintf ("\nRaw data buffer:\n");
662 1.1.1.3 christos AcpiUtDebugDumpBuffer ((UINT8 *) Node->Object->Buffer.Pointer,
663 1.1.1.3 christos Node->Object->Buffer.Length,
664 1.1.1.3 christos DB_BYTE_DISPLAY, ACPI_UINT32_MAX);
665 1.1.1.3 christos
666 1.1.1.3 christos AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT);
667 1.1.1.3 christos return;
668 1.1.1.3 christos }
669 1.1.1.3 christos
670 1.1.1.3 christos
671 1.1.1.3 christos /*******************************************************************************
672 1.1.1.3 christos *
673 1.1 jruoho * FUNCTION: AcpiDmCompareAmlResources
674 1.1 jruoho *
675 1.1 jruoho * PARAMETERS: Aml1Buffer - Contains first resource list
676 1.1 jruoho * Aml1BufferLength - Length of first resource list
677 1.1 jruoho * Aml2Buffer - Contains second resource list
678 1.1 jruoho * Aml2BufferLength - Length of second resource list
679 1.1 jruoho *
680 1.1 jruoho * RETURN: None
681 1.1 jruoho *
682 1.1 jruoho * DESCRIPTION: Compare two AML resource lists, descriptor by descriptor (in
683 1.1 jruoho * order to isolate a miscompare to an individual resource)
684 1.1 jruoho *
685 1.1 jruoho ******************************************************************************/
686 1.1 jruoho
687 1.1 jruoho static void
688 1.1 jruoho AcpiDmCompareAmlResources (
689 1.1 jruoho UINT8 *Aml1Buffer,
690 1.1 jruoho ACPI_RSDESC_SIZE Aml1BufferLength,
691 1.1 jruoho UINT8 *Aml2Buffer,
692 1.1 jruoho ACPI_RSDESC_SIZE Aml2BufferLength)
693 1.1 jruoho {
694 1.1 jruoho UINT8 *Aml1;
695 1.1 jruoho UINT8 *Aml2;
696 1.1.1.3 christos UINT8 *Aml1End;
697 1.1.1.3 christos UINT8 *Aml2End;
698 1.1 jruoho ACPI_RSDESC_SIZE Aml1Length;
699 1.1 jruoho ACPI_RSDESC_SIZE Aml2Length;
700 1.1 jruoho ACPI_RSDESC_SIZE Offset = 0;
701 1.1 jruoho UINT8 ResourceType;
702 1.1 jruoho UINT32 Count = 0;
703 1.1.1.3 christos UINT32 i;
704 1.1 jruoho
705 1.1 jruoho
706 1.1 jruoho /* Compare overall buffer sizes (may be different due to size rounding) */
707 1.1 jruoho
708 1.1 jruoho if (Aml1BufferLength != Aml2BufferLength)
709 1.1 jruoho {
710 1.1 jruoho AcpiOsPrintf (
711 1.1.1.3 christos "**** Buffer length mismatch in converted AML: Original %X, New %X ****\n",
712 1.1 jruoho Aml1BufferLength, Aml2BufferLength);
713 1.1 jruoho }
714 1.1 jruoho
715 1.1 jruoho Aml1 = Aml1Buffer;
716 1.1 jruoho Aml2 = Aml2Buffer;
717 1.1.1.3 christos Aml1End = Aml1Buffer + Aml1BufferLength;
718 1.1.1.3 christos Aml2End = Aml2Buffer + Aml2BufferLength;
719 1.1 jruoho
720 1.1 jruoho /* Walk the descriptor lists, comparing each descriptor */
721 1.1 jruoho
722 1.1.1.3 christos while ((Aml1 < Aml1End) && (Aml2 < Aml2End))
723 1.1 jruoho {
724 1.1 jruoho /* Get the lengths of each descriptor */
725 1.1 jruoho
726 1.1 jruoho Aml1Length = AcpiUtGetDescriptorLength (Aml1);
727 1.1 jruoho Aml2Length = AcpiUtGetDescriptorLength (Aml2);
728 1.1 jruoho ResourceType = AcpiUtGetResourceType (Aml1);
729 1.1 jruoho
730 1.1 jruoho /* Check for descriptor length match */
731 1.1 jruoho
732 1.1 jruoho if (Aml1Length != Aml2Length)
733 1.1 jruoho {
734 1.1 jruoho AcpiOsPrintf (
735 1.1.1.3 christos "**** Length mismatch in descriptor [%.2X] type %2.2X, Offset %8.8X Len1 %X, Len2 %X ****\n",
736 1.1 jruoho Count, ResourceType, Offset, Aml1Length, Aml2Length);
737 1.1 jruoho }
738 1.1 jruoho
739 1.1 jruoho /* Check for descriptor byte match */
740 1.1 jruoho
741 1.1.1.6 christos else if (memcmp (Aml1, Aml2, Aml1Length))
742 1.1 jruoho {
743 1.1 jruoho AcpiOsPrintf (
744 1.1 jruoho "**** Data mismatch in descriptor [%.2X] type %2.2X, Offset %8.8X ****\n",
745 1.1 jruoho Count, ResourceType, Offset);
746 1.1.1.3 christos
747 1.1.1.3 christos for (i = 0; i < Aml1Length; i++)
748 1.1.1.3 christos {
749 1.1.1.3 christos if (Aml1[i] != Aml2[i])
750 1.1.1.3 christos {
751 1.1.1.3 christos AcpiOsPrintf (
752 1.1.1.3 christos "Mismatch at byte offset %.2X: is %2.2X, should be %2.2X\n",
753 1.1.1.3 christos i, Aml2[i], Aml1[i]);
754 1.1.1.3 christos }
755 1.1.1.3 christos }
756 1.1 jruoho }
757 1.1 jruoho
758 1.1 jruoho /* Exit on EndTag descriptor */
759 1.1 jruoho
760 1.1 jruoho if (ResourceType == ACPI_RESOURCE_NAME_END_TAG)
761 1.1 jruoho {
762 1.1 jruoho return;
763 1.1 jruoho }
764 1.1 jruoho
765 1.1 jruoho /* Point to next descriptor in each buffer */
766 1.1 jruoho
767 1.1 jruoho Count++;
768 1.1 jruoho Offset += Aml1Length;
769 1.1 jruoho Aml1 += Aml1Length;
770 1.1 jruoho Aml2 += Aml2Length;
771 1.1 jruoho }
772 1.1 jruoho }
773 1.1 jruoho
774 1.1 jruoho
775 1.1 jruoho /*******************************************************************************
776 1.1 jruoho *
777 1.1 jruoho * FUNCTION: AcpiDmTestResourceConversion
778 1.1 jruoho *
779 1.1.1.3 christos * PARAMETERS: Node - Parent device node
780 1.1.1.3 christos * Name - resource method name (_CRS)
781 1.1 jruoho *
782 1.1 jruoho * RETURN: Status
783 1.1 jruoho *
784 1.1 jruoho * DESCRIPTION: Compare the original AML with a conversion of the AML to
785 1.1 jruoho * internal resource list, then back to AML.
786 1.1 jruoho *
787 1.1 jruoho ******************************************************************************/
788 1.1 jruoho
789 1.1 jruoho static ACPI_STATUS
790 1.1 jruoho AcpiDmTestResourceConversion (
791 1.1 jruoho ACPI_NAMESPACE_NODE *Node,
792 1.1 jruoho char *Name)
793 1.1 jruoho {
794 1.1 jruoho ACPI_STATUS Status;
795 1.1.1.3 christos ACPI_BUFFER ReturnBuffer;
796 1.1.1.3 christos ACPI_BUFFER ResourceBuffer;
797 1.1 jruoho ACPI_BUFFER NewAml;
798 1.1 jruoho ACPI_OBJECT *OriginalAml;
799 1.1 jruoho
800 1.1 jruoho
801 1.1 jruoho AcpiOsPrintf ("Resource Conversion Comparison:\n");
802 1.1 jruoho
803 1.1 jruoho NewAml.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
804 1.1.1.3 christos ReturnBuffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
805 1.1.1.3 christos ResourceBuffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
806 1.1 jruoho
807 1.1 jruoho /* Get the original _CRS AML resource template */
808 1.1 jruoho
809 1.1.1.3 christos Status = AcpiEvaluateObject (Node, Name, NULL, &ReturnBuffer);
810 1.1 jruoho if (ACPI_FAILURE (Status))
811 1.1 jruoho {
812 1.1 jruoho AcpiOsPrintf ("Could not obtain %s: %s\n",
813 1.1 jruoho Name, AcpiFormatException (Status));
814 1.1 jruoho return (Status);
815 1.1 jruoho }
816 1.1 jruoho
817 1.1 jruoho /* Get the AML resource template, converted to internal resource structs */
818 1.1 jruoho
819 1.1.1.3 christos Status = AcpiGetCurrentResources (Node, &ResourceBuffer);
820 1.1 jruoho if (ACPI_FAILURE (Status))
821 1.1 jruoho {
822 1.1 jruoho AcpiOsPrintf ("AcpiGetCurrentResources failed: %s\n",
823 1.1 jruoho AcpiFormatException (Status));
824 1.1 jruoho goto Exit1;
825 1.1 jruoho }
826 1.1 jruoho
827 1.1 jruoho /* Convert internal resource list to external AML resource template */
828 1.1 jruoho
829 1.1.1.3 christos Status = AcpiRsCreateAmlResources (&ResourceBuffer, &NewAml);
830 1.1 jruoho if (ACPI_FAILURE (Status))
831 1.1 jruoho {
832 1.1 jruoho AcpiOsPrintf ("AcpiRsCreateAmlResources failed: %s\n",
833 1.1 jruoho AcpiFormatException (Status));
834 1.1 jruoho goto Exit2;
835 1.1 jruoho }
836 1.1 jruoho
837 1.1 jruoho /* Compare original AML to the newly created AML resource list */
838 1.1 jruoho
839 1.1.1.3 christos OriginalAml = ReturnBuffer.Pointer;
840 1.1 jruoho
841 1.1.1.3 christos AcpiDmCompareAmlResources (OriginalAml->Buffer.Pointer,
842 1.1.1.3 christos (ACPI_RSDESC_SIZE) OriginalAml->Buffer.Length,
843 1.1 jruoho NewAml.Pointer, (ACPI_RSDESC_SIZE) NewAml.Length);
844 1.1 jruoho
845 1.1 jruoho /* Cleanup and exit */
846 1.1 jruoho
847 1.1 jruoho ACPI_FREE (NewAml.Pointer);
848 1.1 jruoho Exit2:
849 1.1.1.3 christos ACPI_FREE (ResourceBuffer.Pointer);
850 1.1 jruoho Exit1:
851 1.1.1.3 christos ACPI_FREE (ReturnBuffer.Pointer);
852 1.1 jruoho return (Status);
853 1.1 jruoho }
854 1.1 jruoho
855 1.1 jruoho
856 1.1 jruoho /*******************************************************************************
857 1.1 jruoho *
858 1.1.1.3 christos * FUNCTION: AcpiDbResourceCallback
859 1.1 jruoho *
860 1.1.1.3 christos * PARAMETERS: ACPI_WALK_RESOURCE_CALLBACK
861 1.1 jruoho *
862 1.1.1.3 christos * RETURN: Status
863 1.1 jruoho *
864 1.1.1.3 christos * DESCRIPTION: Simple callback to exercise AcpiWalkResources and
865 1.1.1.3 christos * AcpiWalkResourceBuffer.
866 1.1 jruoho *
867 1.1 jruoho ******************************************************************************/
868 1.1 jruoho
869 1.1.1.3 christos static ACPI_STATUS
870 1.1.1.3 christos AcpiDbResourceCallback (
871 1.1.1.3 christos ACPI_RESOURCE *Resource,
872 1.1.1.3 christos void *Context)
873 1.1.1.3 christos {
874 1.1.1.3 christos
875 1.1.1.3 christos return (AE_OK);
876 1.1.1.3 christos }
877 1.1.1.3 christos
878 1.1.1.3 christos
879 1.1.1.3 christos /*******************************************************************************
880 1.1.1.3 christos *
881 1.1.1.3 christos * FUNCTION: AcpiDbDeviceResources
882 1.1.1.3 christos *
883 1.1.1.3 christos * PARAMETERS: ACPI_WALK_CALLBACK
884 1.1.1.3 christos *
885 1.1.1.3 christos * RETURN: Status
886 1.1.1.3 christos *
887 1.1.1.3 christos * DESCRIPTION: Display the _PRT/_CRS/_PRS resources for a device object.
888 1.1.1.3 christos *
889 1.1.1.3 christos ******************************************************************************/
890 1.1.1.3 christos
891 1.1.1.3 christos static ACPI_STATUS
892 1.1.1.3 christos AcpiDbDeviceResources (
893 1.1.1.3 christos ACPI_HANDLE ObjHandle,
894 1.1.1.3 christos UINT32 NestingLevel,
895 1.1.1.3 christos void *Context,
896 1.1.1.3 christos void **ReturnValue)
897 1.1 jruoho {
898 1.1 jruoho ACPI_NAMESPACE_NODE *Node;
899 1.1.1.3 christos ACPI_NAMESPACE_NODE *PrtNode = NULL;
900 1.1.1.3 christos ACPI_NAMESPACE_NODE *CrsNode = NULL;
901 1.1.1.3 christos ACPI_NAMESPACE_NODE *PrsNode = NULL;
902 1.1.1.3 christos ACPI_NAMESPACE_NODE *AeiNode = NULL;
903 1.1.1.3 christos char *ParentPath;
904 1.1.1.3 christos ACPI_BUFFER ReturnBuffer;
905 1.1 jruoho ACPI_STATUS Status;
906 1.1 jruoho
907 1.1 jruoho
908 1.1.1.3 christos Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle);
909 1.1.1.3 christos ParentPath = AcpiNsGetExternalPathname (Node);
910 1.1.1.3 christos if (!ParentPath)
911 1.1.1.3 christos {
912 1.1.1.3 christos return (AE_NO_MEMORY);
913 1.1.1.3 christos }
914 1.1 jruoho
915 1.1.1.3 christos /* Get handles to the resource methods for this device */
916 1.1 jruoho
917 1.1.1.3 christos (void) AcpiGetHandle (Node, METHOD_NAME__PRT, ACPI_CAST_PTR (ACPI_HANDLE, &PrtNode));
918 1.1.1.3 christos (void) AcpiGetHandle (Node, METHOD_NAME__CRS, ACPI_CAST_PTR (ACPI_HANDLE, &CrsNode));
919 1.1.1.3 christos (void) AcpiGetHandle (Node, METHOD_NAME__PRS, ACPI_CAST_PTR (ACPI_HANDLE, &PrsNode));
920 1.1.1.3 christos (void) AcpiGetHandle (Node, METHOD_NAME__AEI, ACPI_CAST_PTR (ACPI_HANDLE, &AeiNode));
921 1.1.1.3 christos if (!PrtNode && !CrsNode && !PrsNode && !AeiNode)
922 1.1 jruoho {
923 1.1.1.3 christos goto Cleanup; /* Nothing to do */
924 1.1 jruoho }
925 1.1 jruoho
926 1.1.1.3 christos AcpiOsPrintf ("\nDevice: %s\n", ParentPath);
927 1.1.1.3 christos
928 1.1 jruoho /* Prepare for a return object of arbitrary size */
929 1.1 jruoho
930 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
931 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
932 1.1.1.3 christos
933 1.1 jruoho
934 1.1 jruoho /* _PRT */
935 1.1 jruoho
936 1.1.1.3 christos if (PrtNode)
937 1.1.1.3 christos {
938 1.1.1.3 christos AcpiOsPrintf ("Evaluating _PRT\n");
939 1.1 jruoho
940 1.1.1.3 christos Status = AcpiEvaluateObject (PrtNode, NULL, NULL, &ReturnBuffer);
941 1.1.1.3 christos if (ACPI_FAILURE (Status))
942 1.1.1.3 christos {
943 1.1.1.3 christos AcpiOsPrintf ("Could not evaluate _PRT: %s\n",
944 1.1.1.3 christos AcpiFormatException (Status));
945 1.1.1.3 christos goto GetCrs;
946 1.1.1.3 christos }
947 1.1 jruoho
948 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
949 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
950 1.1 jruoho
951 1.1.1.3 christos Status = AcpiGetIrqRoutingTable (Node, &ReturnBuffer);
952 1.1.1.3 christos if (ACPI_FAILURE (Status))
953 1.1.1.3 christos {
954 1.1.1.3 christos AcpiOsPrintf ("GetIrqRoutingTable failed: %s\n",
955 1.1.1.3 christos AcpiFormatException (Status));
956 1.1.1.3 christos goto GetCrs;
957 1.1.1.3 christos }
958 1.1 jruoho
959 1.1.1.3 christos AcpiRsDumpIrqList (ACPI_CAST_PTR (UINT8, AcpiGbl_DbBuffer));
960 1.1 jruoho }
961 1.1 jruoho
962 1.1 jruoho
963 1.1 jruoho /* _CRS */
964 1.1 jruoho
965 1.1 jruoho GetCrs:
966 1.1.1.3 christos if (CrsNode)
967 1.1.1.3 christos {
968 1.1.1.3 christos AcpiOsPrintf ("Evaluating _CRS\n");
969 1.1 jruoho
970 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
971 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
972 1.1 jruoho
973 1.1.1.3 christos Status = AcpiEvaluateObject (CrsNode, NULL, NULL, &ReturnBuffer);
974 1.1.1.3 christos if (ACPI_FAILURE (Status))
975 1.1.1.3 christos {
976 1.1.1.3 christos AcpiOsPrintf ("Could not evaluate _CRS: %s\n",
977 1.1.1.3 christos AcpiFormatException (Status));
978 1.1.1.3 christos goto GetPrs;
979 1.1.1.3 christos }
980 1.1 jruoho
981 1.1.1.3 christos /* This code exercises the AcpiWalkResources interface */
982 1.1 jruoho
983 1.1.1.3 christos Status = AcpiWalkResources (Node, METHOD_NAME__CRS,
984 1.1.1.3 christos AcpiDbResourceCallback, NULL);
985 1.1.1.3 christos if (ACPI_FAILURE (Status))
986 1.1.1.3 christos {
987 1.1.1.3 christos AcpiOsPrintf ("AcpiWalkResources failed: %s\n",
988 1.1.1.3 christos AcpiFormatException (Status));
989 1.1.1.3 christos goto GetPrs;
990 1.1.1.3 christos }
991 1.1 jruoho
992 1.1.1.3 christos /* Get the _CRS resource list (test ALLOCATE buffer) */
993 1.1 jruoho
994 1.1.1.3 christos ReturnBuffer.Pointer = NULL;
995 1.1.1.3 christos ReturnBuffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
996 1.1.1.3 christos
997 1.1.1.3 christos Status = AcpiGetCurrentResources (Node, &ReturnBuffer);
998 1.1.1.3 christos if (ACPI_FAILURE (Status))
999 1.1.1.3 christos {
1000 1.1.1.3 christos AcpiOsPrintf ("AcpiGetCurrentResources failed: %s\n",
1001 1.1.1.3 christos AcpiFormatException (Status));
1002 1.1.1.3 christos goto GetPrs;
1003 1.1.1.3 christos }
1004 1.1 jruoho
1005 1.1.1.3 christos /* This code exercises the AcpiWalkResourceBuffer interface */
1006 1.1 jruoho
1007 1.1.1.3 christos Status = AcpiWalkResourceBuffer (&ReturnBuffer,
1008 1.1.1.3 christos AcpiDbResourceCallback, NULL);
1009 1.1.1.3 christos if (ACPI_FAILURE (Status))
1010 1.1.1.3 christos {
1011 1.1.1.3 christos AcpiOsPrintf ("AcpiWalkResourceBuffer failed: %s\n",
1012 1.1.1.3 christos AcpiFormatException (Status));
1013 1.1.1.3 christos goto EndCrs;
1014 1.1.1.3 christos }
1015 1.1 jruoho
1016 1.1.1.3 christos /* Dump the _CRS resource list */
1017 1.1 jruoho
1018 1.1.1.3 christos AcpiRsDumpResourceList (ACPI_CAST_PTR (ACPI_RESOURCE,
1019 1.1.1.3 christos ReturnBuffer.Pointer));
1020 1.1 jruoho
1021 1.1.1.3 christos /*
1022 1.1.1.3 christos * Perform comparison of original AML to newly created AML. This
1023 1.1.1.3 christos * tests both the AML->Resource conversion and the Resource->AML
1024 1.1.1.3 christos * conversion.
1025 1.1.1.3 christos */
1026 1.1.1.3 christos (void) AcpiDmTestResourceConversion (Node, METHOD_NAME__CRS);
1027 1.1.1.3 christos
1028 1.1.1.3 christos /* Execute _SRS with the resource list */
1029 1.1.1.3 christos
1030 1.1.1.3 christos AcpiOsPrintf ("Evaluating _SRS\n");
1031 1.1.1.3 christos
1032 1.1.1.3 christos Status = AcpiSetCurrentResources (Node, &ReturnBuffer);
1033 1.1.1.3 christos if (ACPI_FAILURE (Status))
1034 1.1.1.3 christos {
1035 1.1.1.3 christos AcpiOsPrintf ("AcpiSetCurrentResources failed: %s\n",
1036 1.1.1.3 christos AcpiFormatException (Status));
1037 1.1.1.3 christos goto EndCrs;
1038 1.1.1.3 christos }
1039 1.1.1.3 christos
1040 1.1.1.3 christos EndCrs:
1041 1.1.1.3 christos ACPI_FREE (ReturnBuffer.Pointer);
1042 1.1 jruoho }
1043 1.1 jruoho
1044 1.1 jruoho
1045 1.1 jruoho /* _PRS */
1046 1.1 jruoho
1047 1.1 jruoho GetPrs:
1048 1.1.1.3 christos if (PrsNode)
1049 1.1.1.3 christos {
1050 1.1.1.3 christos AcpiOsPrintf ("Evaluating _PRS\n");
1051 1.1.1.3 christos
1052 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
1053 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
1054 1.1 jruoho
1055 1.1.1.3 christos Status = AcpiEvaluateObject (PrsNode, NULL, NULL, &ReturnBuffer);
1056 1.1.1.3 christos if (ACPI_FAILURE (Status))
1057 1.1.1.3 christos {
1058 1.1.1.3 christos AcpiOsPrintf ("Could not evaluate _PRS: %s\n",
1059 1.1.1.3 christos AcpiFormatException (Status));
1060 1.1.1.3 christos goto GetAei;
1061 1.1.1.3 christos }
1062 1.1 jruoho
1063 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
1064 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
1065 1.1 jruoho
1066 1.1.1.3 christos Status = AcpiGetPossibleResources (Node, &ReturnBuffer);
1067 1.1.1.3 christos if (ACPI_FAILURE (Status))
1068 1.1.1.3 christos {
1069 1.1.1.3 christos AcpiOsPrintf ("AcpiGetPossibleResources failed: %s\n",
1070 1.1.1.3 christos AcpiFormatException (Status));
1071 1.1.1.3 christos goto GetAei;
1072 1.1.1.3 christos }
1073 1.1.1.3 christos
1074 1.1.1.3 christos AcpiRsDumpResourceList (ACPI_CAST_PTR (ACPI_RESOURCE, AcpiGbl_DbBuffer));
1075 1.1 jruoho }
1076 1.1 jruoho
1077 1.1 jruoho
1078 1.1.1.3 christos /* _AEI */
1079 1.1.1.3 christos
1080 1.1.1.3 christos GetAei:
1081 1.1.1.3 christos if (AeiNode)
1082 1.1 jruoho {
1083 1.1.1.3 christos AcpiOsPrintf ("Evaluating _AEI\n");
1084 1.1.1.3 christos
1085 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
1086 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
1087 1.1.1.3 christos
1088 1.1.1.3 christos Status = AcpiEvaluateObject (AeiNode, NULL, NULL, &ReturnBuffer);
1089 1.1.1.3 christos if (ACPI_FAILURE (Status))
1090 1.1.1.3 christos {
1091 1.1.1.3 christos AcpiOsPrintf ("Could not evaluate _AEI: %s\n",
1092 1.1.1.3 christos AcpiFormatException (Status));
1093 1.1.1.3 christos goto Cleanup;
1094 1.1.1.3 christos }
1095 1.1.1.3 christos
1096 1.1.1.3 christos ReturnBuffer.Pointer = AcpiGbl_DbBuffer;
1097 1.1.1.3 christos ReturnBuffer.Length = ACPI_DEBUG_BUFFER_SIZE;
1098 1.1.1.3 christos
1099 1.1.1.3 christos Status = AcpiGetEventResources (Node, &ReturnBuffer);
1100 1.1.1.3 christos if (ACPI_FAILURE (Status))
1101 1.1.1.3 christos {
1102 1.1.1.3 christos AcpiOsPrintf ("AcpiGetEventResources failed: %s\n",
1103 1.1.1.3 christos AcpiFormatException (Status));
1104 1.1.1.3 christos goto Cleanup;
1105 1.1.1.3 christos }
1106 1.1.1.3 christos
1107 1.1.1.3 christos AcpiRsDumpResourceList (ACPI_CAST_PTR (ACPI_RESOURCE, AcpiGbl_DbBuffer));
1108 1.1 jruoho }
1109 1.1 jruoho
1110 1.1 jruoho
1111 1.1 jruoho Cleanup:
1112 1.1.1.3 christos ACPI_FREE (ParentPath);
1113 1.1.1.3 christos return (AE_OK);
1114 1.1.1.3 christos }
1115 1.1.1.3 christos
1116 1.1.1.3 christos
1117 1.1.1.3 christos /*******************************************************************************
1118 1.1.1.3 christos *
1119 1.1.1.3 christos * FUNCTION: AcpiDbDisplayResources
1120 1.1.1.3 christos *
1121 1.1.1.3 christos * PARAMETERS: ObjectArg - String object name or object pointer.
1122 1.1.1.3 christos * NULL or "*" means "display resources for
1123 1.1.1.3 christos * all devices"
1124 1.1.1.3 christos *
1125 1.1.1.3 christos * RETURN: None
1126 1.1.1.3 christos *
1127 1.1.1.3 christos * DESCRIPTION: Display the resource objects associated with a device.
1128 1.1.1.3 christos *
1129 1.1.1.3 christos ******************************************************************************/
1130 1.1.1.3 christos
1131 1.1.1.3 christos void
1132 1.1.1.3 christos AcpiDbDisplayResources (
1133 1.1.1.3 christos char *ObjectArg)
1134 1.1.1.3 christos {
1135 1.1.1.3 christos ACPI_NAMESPACE_NODE *Node;
1136 1.1.1.3 christos
1137 1.1.1.3 christos
1138 1.1.1.3 christos AcpiDbSetOutputDestination (ACPI_DB_REDIRECTABLE_OUTPUT);
1139 1.1.1.3 christos AcpiDbgLevel |= ACPI_LV_RESOURCES;
1140 1.1.1.3 christos
1141 1.1.1.3 christos /* Asterisk means "display resources for all devices" */
1142 1.1.1.3 christos
1143 1.1.1.6 christos if (!ObjectArg || (!strcmp (ObjectArg, "*")))
1144 1.1.1.3 christos {
1145 1.1.1.3 christos (void) AcpiWalkNamespace (ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1146 1.1.1.3 christos ACPI_UINT32_MAX, AcpiDbDeviceResources, NULL, NULL, NULL);
1147 1.1.1.3 christos }
1148 1.1.1.3 christos else
1149 1.1.1.3 christos {
1150 1.1.1.3 christos /* Convert string to object pointer */
1151 1.1.1.3 christos
1152 1.1.1.3 christos Node = AcpiDbConvertToNode (ObjectArg);
1153 1.1.1.3 christos if (Node)
1154 1.1.1.3 christos {
1155 1.1.1.3 christos if (Node->Type != ACPI_TYPE_DEVICE)
1156 1.1.1.3 christos {
1157 1.1.1.3 christos AcpiOsPrintf ("%4.4s: Name is not a device object (%s)\n",
1158 1.1.1.3 christos Node->Name.Ascii, AcpiUtGetTypeName (Node->Type));
1159 1.1.1.3 christos }
1160 1.1.1.3 christos else
1161 1.1.1.3 christos {
1162 1.1.1.3 christos (void) AcpiDbDeviceResources (Node, 0, NULL, NULL);
1163 1.1.1.3 christos }
1164 1.1.1.3 christos }
1165 1.1.1.3 christos }
1166 1.1 jruoho
1167 1.1 jruoho AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT);
1168 1.1 jruoho }
1169 1.1 jruoho
1170 1.1 jruoho
1171 1.1.1.3 christos #if (!ACPI_REDUCED_HARDWARE)
1172 1.1 jruoho /*******************************************************************************
1173 1.1 jruoho *
1174 1.1 jruoho * FUNCTION: AcpiDbGenerateGpe
1175 1.1 jruoho *
1176 1.1.1.3 christos * PARAMETERS: GpeArg - Raw GPE number, ascii string
1177 1.1.1.3 christos * BlockArg - GPE block number, ascii string
1178 1.1.1.3 christos * 0 or 1 for FADT GPE blocks
1179 1.1 jruoho *
1180 1.1 jruoho * RETURN: None
1181 1.1 jruoho *
1182 1.1.1.3 christos * DESCRIPTION: Simulate firing of a GPE
1183 1.1 jruoho *
1184 1.1 jruoho ******************************************************************************/
1185 1.1 jruoho
1186 1.1 jruoho void
1187 1.1 jruoho AcpiDbGenerateGpe (
1188 1.1 jruoho char *GpeArg,
1189 1.1 jruoho char *BlockArg)
1190 1.1 jruoho {
1191 1.1.1.4 christos UINT32 BlockNumber = 0;
1192 1.1 jruoho UINT32 GpeNumber;
1193 1.1 jruoho ACPI_GPE_EVENT_INFO *GpeEventInfo;
1194 1.1 jruoho
1195 1.1 jruoho
1196 1.1.1.6 christos GpeNumber = strtoul (GpeArg, NULL, 0);
1197 1.1 jruoho
1198 1.1.1.4 christos /*
1199 1.1.1.4 christos * If no block arg, or block arg == 0 or 1, use the FADT-defined
1200 1.1.1.4 christos * GPE blocks.
1201 1.1.1.4 christos */
1202 1.1.1.4 christos if (BlockArg)
1203 1.1.1.4 christos {
1204 1.1.1.6 christos BlockNumber = strtoul (BlockArg, NULL, 0);
1205 1.1.1.4 christos if (BlockNumber == 1)
1206 1.1.1.4 christos {
1207 1.1.1.4 christos BlockNumber = 0;
1208 1.1.1.4 christos }
1209 1.1.1.4 christos }
1210 1.1 jruoho
1211 1.1 jruoho GpeEventInfo = AcpiEvGetGpeEventInfo (ACPI_TO_POINTER (BlockNumber),
1212 1.1 jruoho GpeNumber);
1213 1.1 jruoho if (!GpeEventInfo)
1214 1.1 jruoho {
1215 1.1 jruoho AcpiOsPrintf ("Invalid GPE\n");
1216 1.1 jruoho return;
1217 1.1 jruoho }
1218 1.1 jruoho
1219 1.1.1.2 jruoho (void) AcpiEvGpeDispatch (NULL, GpeEventInfo, GpeNumber);
1220 1.1 jruoho }
1221 1.1 jruoho
1222 1.1.1.3 christos void
1223 1.1.1.3 christos AcpiDbGenerateSci (
1224 1.1.1.3 christos void)
1225 1.1.1.3 christos {
1226 1.1.1.3 christos AcpiEvSciDispatch ();
1227 1.1.1.3 christos }
1228 1.1.1.3 christos
1229 1.1.1.3 christos #endif /* !ACPI_REDUCED_HARDWARE */
1230 1.1.1.3 christos
1231 1.1.1.6 christos
1232 1.1.1.6 christos /*******************************************************************************
1233 1.1.1.6 christos *
1234 1.1.1.6 christos * FUNCTION: AcpiDbTrace
1235 1.1.1.6 christos *
1236 1.1.1.6 christos * PARAMETERS: EnableArg - ENABLE/AML to enable tracer
1237 1.1.1.6 christos * DISABLE to disable tracer
1238 1.1.1.6 christos * MethodArg - Method to trace
1239 1.1.1.6 christos * OnceArg - Whether trace once
1240 1.1.1.6 christos *
1241 1.1.1.6 christos * RETURN: None
1242 1.1.1.6 christos *
1243 1.1.1.6 christos * DESCRIPTION: Control method tracing facility
1244 1.1.1.6 christos *
1245 1.1.1.6 christos ******************************************************************************/
1246 1.1.1.6 christos
1247 1.1.1.6 christos void
1248 1.1.1.6 christos AcpiDbTrace (
1249 1.1.1.6 christos char *EnableArg,
1250 1.1.1.6 christos char *MethodArg,
1251 1.1.1.6 christos char *OnceArg)
1252 1.1.1.6 christos {
1253 1.1.1.6 christos UINT32 DebugLevel = 0;
1254 1.1.1.6 christos UINT32 DebugLayer = 0;
1255 1.1.1.6 christos UINT32 Flags = 0;
1256 1.1.1.6 christos
1257 1.1.1.6 christos
1258 1.1.1.6 christos if (EnableArg)
1259 1.1.1.6 christos {
1260 1.1.1.6 christos AcpiUtStrupr (EnableArg);
1261 1.1.1.6 christos }
1262 1.1.1.6 christos if (OnceArg)
1263 1.1.1.6 christos {
1264 1.1.1.6 christos AcpiUtStrupr (OnceArg);
1265 1.1.1.6 christos }
1266 1.1.1.6 christos if (MethodArg)
1267 1.1.1.6 christos {
1268 1.1.1.6 christos if (AcpiDbTraceMethodName)
1269 1.1.1.6 christos {
1270 1.1.1.6 christos ACPI_FREE (AcpiDbTraceMethodName);
1271 1.1.1.6 christos AcpiDbTraceMethodName = NULL;
1272 1.1.1.6 christos }
1273 1.1.1.6 christos AcpiDbTraceMethodName = ACPI_ALLOCATE (strlen (MethodArg) + 1);
1274 1.1.1.6 christos if (!AcpiDbTraceMethodName)
1275 1.1.1.6 christos {
1276 1.1.1.6 christos AcpiOsPrintf ("Failed to allocate method name (%s)\n", MethodArg);
1277 1.1.1.6 christos return;
1278 1.1.1.6 christos }
1279 1.1.1.6 christos strcpy (AcpiDbTraceMethodName, MethodArg);
1280 1.1.1.6 christos }
1281 1.1.1.6 christos if (!strcmp (EnableArg, "ENABLE") ||
1282 1.1.1.6 christos !strcmp (EnableArg, "METHOD") ||
1283 1.1.1.6 christos !strcmp (EnableArg, "OPCODE"))
1284 1.1.1.6 christos {
1285 1.1.1.6 christos if (!strcmp (EnableArg, "ENABLE"))
1286 1.1.1.6 christos {
1287 1.1.1.6 christos /* Inherit current console settings */
1288 1.1.1.6 christos
1289 1.1.1.6 christos DebugLevel = AcpiGbl_DbConsoleDebugLevel;
1290 1.1.1.6 christos DebugLayer = AcpiDbgLayer;
1291 1.1.1.6 christos }
1292 1.1.1.6 christos else
1293 1.1.1.6 christos {
1294 1.1.1.6 christos /* Restrict console output to trace points only */
1295 1.1.1.6 christos
1296 1.1.1.6 christos DebugLevel = ACPI_LV_TRACE_POINT;
1297 1.1.1.6 christos DebugLayer = ACPI_EXECUTER;
1298 1.1.1.6 christos }
1299 1.1.1.6 christos
1300 1.1.1.6 christos Flags = ACPI_TRACE_ENABLED;
1301 1.1.1.6 christos if (!strcmp (EnableArg, "OPCODE"))
1302 1.1.1.6 christos {
1303 1.1.1.6 christos Flags |= ACPI_TRACE_OPCODE;
1304 1.1.1.6 christos }
1305 1.1.1.6 christos if (OnceArg && !strcmp (OnceArg, "ONCE"))
1306 1.1.1.6 christos {
1307 1.1.1.6 christos Flags |= ACPI_TRACE_ONESHOT;
1308 1.1.1.6 christos }
1309 1.1.1.6 christos }
1310 1.1.1.6 christos
1311 1.1.1.6 christos (void) AcpiDebugTrace (AcpiDbTraceMethodName,
1312 1.1.1.6 christos DebugLevel, DebugLayer, Flags);
1313 1.1.1.6 christos }
1314 1.1.1.6 christos
1315 1.1 jruoho #endif /* ACPI_DEBUGGER */
1316