dmresrcl2.c revision 1.1.1.13 1 1.1 christos /*******************************************************************************
2 1.1 christos *
3 1.1 christos * Module Name: dmresrcl2.c - "Large" Resource Descriptor disassembly (#2)
4 1.1 christos *
5 1.1 christos ******************************************************************************/
6 1.1 christos
7 1.1 christos /*
8 1.1.1.13 christos * Copyright (C) 2000 - 2022, Intel Corp.
9 1.1 christos * All rights reserved.
10 1.1 christos *
11 1.1 christos * Redistribution and use in source and binary forms, with or without
12 1.1 christos * modification, are permitted provided that the following conditions
13 1.1 christos * are met:
14 1.1 christos * 1. Redistributions of source code must retain the above copyright
15 1.1 christos * notice, this list of conditions, and the following disclaimer,
16 1.1 christos * without modification.
17 1.1 christos * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1 christos * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1 christos * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1 christos * including a substantially similar Disclaimer requirement for further
21 1.1 christos * binary redistribution.
22 1.1 christos * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1 christos * of any contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * Alternatively, this software may be distributed under the terms of the
27 1.1 christos * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1 christos * Software Foundation.
29 1.1 christos *
30 1.1 christos * NO WARRANTY
31 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1 christos * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1.1.12 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 1.1 christos * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1 christos * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1 christos * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1 christos * POSSIBILITY OF SUCH DAMAGES.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include "acpi.h"
45 1.1 christos #include "accommon.h"
46 1.1 christos #include "acdisasm.h"
47 1.1 christos
48 1.1 christos
49 1.1 christos #define _COMPONENT ACPI_CA_DEBUGGER
50 1.1 christos ACPI_MODULE_NAME ("dbresrcl2")
51 1.1 christos
52 1.1 christos /* Local prototypes */
53 1.1 christos
54 1.1 christos static void
55 1.1.1.12 christos AcpiDmCsi2SerialBusDescriptor (
56 1.1.1.12 christos ACPI_OP_WALK_INFO *Info,
57 1.1.1.12 christos AML_RESOURCE *Resource,
58 1.1.1.12 christos UINT32 Length,
59 1.1.1.12 christos UINT32 Level);
60 1.1.1.12 christos
61 1.1.1.12 christos static void
62 1.1 christos AcpiDmI2cSerialBusDescriptor (
63 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
64 1.1 christos AML_RESOURCE *Resource,
65 1.1 christos UINT32 Length,
66 1.1 christos UINT32 Level);
67 1.1 christos
68 1.1 christos static void
69 1.1 christos AcpiDmSpiSerialBusDescriptor (
70 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
71 1.1 christos AML_RESOURCE *Resource,
72 1.1 christos UINT32 Length,
73 1.1 christos UINT32 Level);
74 1.1 christos
75 1.1 christos static void
76 1.1 christos AcpiDmUartSerialBusDescriptor (
77 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
78 1.1 christos AML_RESOURCE *Resource,
79 1.1 christos UINT32 Length,
80 1.1 christos UINT32 Level);
81 1.1 christos
82 1.1 christos static void
83 1.1 christos AcpiDmGpioCommon (
84 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
85 1.1 christos AML_RESOURCE *Resource,
86 1.1 christos UINT32 Level);
87 1.1 christos
88 1.1 christos static void
89 1.1 christos AcpiDmDumpRawDataBuffer (
90 1.1 christos UINT8 *Buffer,
91 1.1 christos UINT32 Length,
92 1.1 christos UINT32 Level);
93 1.1 christos
94 1.1 christos
95 1.1 christos /* Dispatch table for the serial bus descriptors */
96 1.1 christos
97 1.1 christos static ACPI_RESOURCE_HANDLER SerialBusResourceDispatch [] =
98 1.1 christos {
99 1.1 christos NULL,
100 1.1 christos AcpiDmI2cSerialBusDescriptor,
101 1.1 christos AcpiDmSpiSerialBusDescriptor,
102 1.1.1.12 christos AcpiDmUartSerialBusDescriptor,
103 1.1.1.12 christos AcpiDmCsi2SerialBusDescriptor
104 1.1 christos };
105 1.1 christos
106 1.1 christos
107 1.1 christos /*******************************************************************************
108 1.1 christos *
109 1.1 christos * FUNCTION: AcpiDmDumpRawDataBuffer
110 1.1 christos *
111 1.1 christos * PARAMETERS: Buffer - Pointer to the data bytes
112 1.1 christos * Length - Length of the descriptor in bytes
113 1.1 christos * Level - Current source code indentation level
114 1.1 christos *
115 1.1 christos * RETURN: None
116 1.1 christos *
117 1.1 christos * DESCRIPTION: Dump a data buffer as a RawDataBuffer() object. Used for
118 1.1 christos * vendor data bytes.
119 1.1 christos *
120 1.1 christos ******************************************************************************/
121 1.1 christos
122 1.1 christos static void
123 1.1 christos AcpiDmDumpRawDataBuffer (
124 1.1 christos UINT8 *Buffer,
125 1.1 christos UINT32 Length,
126 1.1 christos UINT32 Level)
127 1.1 christos {
128 1.1 christos UINT32 Index;
129 1.1 christos UINT32 i;
130 1.1 christos UINT32 j;
131 1.1 christos
132 1.1 christos
133 1.1 christos if (!Length)
134 1.1 christos {
135 1.1 christos return;
136 1.1 christos }
137 1.1 christos
138 1.1 christos AcpiOsPrintf ("RawDataBuffer (0x%.2X) // Vendor Data", Length);
139 1.1 christos
140 1.1 christos AcpiOsPrintf ("\n");
141 1.1 christos AcpiDmIndent (Level + 1);
142 1.1 christos AcpiOsPrintf ("{\n");
143 1.1 christos AcpiDmIndent (Level + 2);
144 1.1 christos
145 1.1 christos for (i = 0; i < Length;)
146 1.1 christos {
147 1.1 christos for (j = 0; j < 8; j++)
148 1.1 christos {
149 1.1 christos Index = i + j;
150 1.1 christos if (Index >= Length)
151 1.1 christos {
152 1.1 christos goto Finish;
153 1.1 christos }
154 1.1 christos
155 1.1 christos AcpiOsPrintf ("0x%2.2X", Buffer[Index]);
156 1.1 christos if ((Index + 1) >= Length)
157 1.1 christos {
158 1.1 christos goto Finish;
159 1.1 christos }
160 1.1 christos
161 1.1 christos AcpiOsPrintf (", ");
162 1.1 christos }
163 1.1.1.4 christos
164 1.1 christos AcpiOsPrintf ("\n");
165 1.1 christos AcpiDmIndent (Level + 2);
166 1.1 christos
167 1.1 christos i += 8;
168 1.1 christos }
169 1.1 christos
170 1.1 christos Finish:
171 1.1 christos AcpiOsPrintf ("\n");
172 1.1 christos AcpiDmIndent (Level + 1);
173 1.1 christos AcpiOsPrintf ("}");
174 1.1 christos }
175 1.1 christos
176 1.1 christos
177 1.1 christos /*******************************************************************************
178 1.1 christos *
179 1.1 christos * FUNCTION: AcpiDmGpioCommon
180 1.1 christos *
181 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
182 1.1.1.2 christos * Resource - Pointer to the resource descriptor
183 1.1 christos * Level - Current source code indentation level
184 1.1 christos *
185 1.1 christos * RETURN: None
186 1.1 christos *
187 1.1 christos * DESCRIPTION: Decode common parts of a GPIO Interrupt descriptor
188 1.1 christos *
189 1.1 christos ******************************************************************************/
190 1.1 christos
191 1.1 christos static void
192 1.1 christos AcpiDmGpioCommon (
193 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
194 1.1 christos AML_RESOURCE *Resource,
195 1.1 christos UINT32 Level)
196 1.1 christos {
197 1.1 christos UINT16 *PinList;
198 1.1 christos UINT8 *VendorData;
199 1.1.1.2 christos char *DeviceName = NULL;
200 1.1.1.2 christos UINT32 PinCount;
201 1.1 christos UINT32 i;
202 1.1 christos
203 1.1 christos
204 1.1 christos /* ResourceSource, ResourceSourceIndex, ResourceType */
205 1.1 christos
206 1.1 christos AcpiDmIndent (Level + 1);
207 1.1 christos if (Resource->Gpio.ResSourceOffset)
208 1.1 christos {
209 1.1.1.4 christos DeviceName = ACPI_ADD_PTR (char,
210 1.1.1.4 christos Resource, Resource->Gpio.ResSourceOffset),
211 1.1.1.2 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
212 1.1 christos }
213 1.1 christos
214 1.1 christos AcpiOsPrintf (", ");
215 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.ResSourceIndex);
216 1.1 christos AcpiOsPrintf ("%s, ",
217 1.1 christos AcpiGbl_ConsumeDecode [ACPI_GET_1BIT_FLAG (Resource->Gpio.Flags)]);
218 1.1 christos
219 1.1 christos /* Insert a descriptor name */
220 1.1 christos
221 1.1 christos AcpiDmDescriptorName ();
222 1.1 christos AcpiOsPrintf (",");
223 1.1 christos
224 1.1 christos /* Dump the vendor data */
225 1.1 christos
226 1.1 christos if (Resource->Gpio.VendorOffset)
227 1.1 christos {
228 1.1 christos AcpiOsPrintf ("\n");
229 1.1 christos AcpiDmIndent (Level + 1);
230 1.1 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
231 1.1 christos Resource->Gpio.VendorOffset);
232 1.1 christos
233 1.1 christos AcpiDmDumpRawDataBuffer (VendorData,
234 1.1 christos Resource->Gpio.VendorLength, Level);
235 1.1 christos }
236 1.1 christos
237 1.1 christos AcpiOsPrintf (")\n");
238 1.1 christos
239 1.1 christos /* Dump the interrupt list */
240 1.1 christos
241 1.1 christos AcpiDmIndent (Level + 1);
242 1.1 christos AcpiOsPrintf ("{ // Pin list\n");
243 1.1 christos
244 1.1 christos PinCount = ((UINT32) (Resource->Gpio.ResSourceOffset -
245 1.1 christos Resource->Gpio.PinTableOffset)) /
246 1.1 christos sizeof (UINT16);
247 1.1 christos
248 1.1 christos PinList = (UINT16 *) ACPI_ADD_PTR (char, Resource,
249 1.1 christos Resource->Gpio.PinTableOffset);
250 1.1 christos
251 1.1 christos for (i = 0; i < PinCount; i++)
252 1.1 christos {
253 1.1 christos AcpiDmIndent (Level + 2);
254 1.1.1.4 christos AcpiOsPrintf ("0x%4.4X%s\n", PinList[i],
255 1.1.1.4 christos ((i + 1) < PinCount) ? "," : "");
256 1.1 christos }
257 1.1 christos
258 1.1 christos AcpiDmIndent (Level + 1);
259 1.1 christos AcpiOsPrintf ("}\n");
260 1.1.1.2 christos
261 1.1.1.4 christos MpSaveGpioInfo (Info->MappingOp, Resource,
262 1.1.1.4 christos PinCount, PinList, DeviceName);
263 1.1 christos }
264 1.1 christos
265 1.1 christos
266 1.1 christos /*******************************************************************************
267 1.1 christos *
268 1.1 christos * FUNCTION: AcpiDmGpioIntDescriptor
269 1.1 christos *
270 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
271 1.1.1.2 christos * Resource - Pointer to the resource descriptor
272 1.1 christos * Length - Length of the descriptor in bytes
273 1.1 christos * Level - Current source code indentation level
274 1.1 christos *
275 1.1 christos * RETURN: None
276 1.1 christos *
277 1.1 christos * DESCRIPTION: Decode a GPIO Interrupt descriptor
278 1.1 christos *
279 1.1 christos ******************************************************************************/
280 1.1 christos
281 1.1 christos static void
282 1.1 christos AcpiDmGpioIntDescriptor (
283 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
284 1.1 christos AML_RESOURCE *Resource,
285 1.1 christos UINT32 Length,
286 1.1 christos UINT32 Level)
287 1.1 christos {
288 1.1 christos
289 1.1 christos /* Dump the GpioInt-specific portion of the descriptor */
290 1.1 christos
291 1.1 christos /* EdgeLevel, ActiveLevel, Shared */
292 1.1 christos
293 1.1 christos AcpiDmIndent (Level);
294 1.1 christos AcpiOsPrintf ("GpioInt (%s, %s, %s, ",
295 1.1 christos AcpiGbl_HeDecode [ACPI_GET_1BIT_FLAG (Resource->Gpio.IntFlags)],
296 1.1.1.2 christos AcpiGbl_LlDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 1)],
297 1.1 christos AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 3)]);
298 1.1 christos
299 1.1 christos /* PinConfig, DebounceTimeout */
300 1.1 christos
301 1.1 christos if (Resource->Gpio.PinConfig <= 3)
302 1.1 christos {
303 1.1 christos AcpiOsPrintf ("%s, ",
304 1.1 christos AcpiGbl_PpcDecode[Resource->Gpio.PinConfig]);
305 1.1 christos }
306 1.1 christos else
307 1.1 christos {
308 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.PinConfig);
309 1.1 christos }
310 1.1 christos AcpiOsPrintf ("0x%4.4X,\n", Resource->Gpio.DebounceTimeout);
311 1.1 christos
312 1.1 christos /* Dump the GpioInt/GpioIo common portion of the descriptor */
313 1.1 christos
314 1.1.1.2 christos AcpiDmGpioCommon (Info, Resource, Level);
315 1.1 christos }
316 1.1 christos
317 1.1 christos
318 1.1 christos /*******************************************************************************
319 1.1 christos *
320 1.1 christos * FUNCTION: AcpiDmGpioIoDescriptor
321 1.1 christos *
322 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
323 1.1.1.2 christos * Resource - Pointer to the resource descriptor
324 1.1 christos * Length - Length of the descriptor in bytes
325 1.1 christos * Level - Current source code indentation level
326 1.1 christos *
327 1.1 christos * RETURN: None
328 1.1 christos *
329 1.1 christos * DESCRIPTION: Decode a GPIO I/O descriptor
330 1.1 christos *
331 1.1 christos ******************************************************************************/
332 1.1 christos
333 1.1 christos static void
334 1.1 christos AcpiDmGpioIoDescriptor (
335 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
336 1.1 christos AML_RESOURCE *Resource,
337 1.1 christos UINT32 Length,
338 1.1 christos UINT32 Level)
339 1.1 christos {
340 1.1 christos
341 1.1 christos /* Dump the GpioIo-specific portion of the descriptor */
342 1.1 christos
343 1.1 christos /* Shared, PinConfig */
344 1.1 christos
345 1.1 christos AcpiDmIndent (Level);
346 1.1 christos AcpiOsPrintf ("GpioIo (%s, ",
347 1.1 christos AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Gpio.IntFlags, 3)]);
348 1.1 christos
349 1.1 christos if (Resource->Gpio.PinConfig <= 3)
350 1.1 christos {
351 1.1 christos AcpiOsPrintf ("%s, ",
352 1.1 christos AcpiGbl_PpcDecode[Resource->Gpio.PinConfig]);
353 1.1 christos }
354 1.1 christos else
355 1.1 christos {
356 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->Gpio.PinConfig);
357 1.1 christos }
358 1.1 christos
359 1.1 christos /* DebounceTimeout, DriveStrength, IoRestriction */
360 1.1 christos
361 1.1 christos AcpiOsPrintf ("0x%4.4X, ", Resource->Gpio.DebounceTimeout);
362 1.1 christos AcpiOsPrintf ("0x%4.4X, ", Resource->Gpio.DriveStrength);
363 1.1 christos AcpiOsPrintf ("%s,\n",
364 1.1 christos AcpiGbl_IorDecode [ACPI_GET_2BIT_FLAG (Resource->Gpio.IntFlags)]);
365 1.1 christos
366 1.1 christos /* Dump the GpioInt/GpioIo common portion of the descriptor */
367 1.1 christos
368 1.1.1.2 christos AcpiDmGpioCommon (Info, Resource, Level);
369 1.1 christos }
370 1.1 christos
371 1.1 christos
372 1.1 christos /*******************************************************************************
373 1.1 christos *
374 1.1 christos * FUNCTION: AcpiDmGpioDescriptor
375 1.1 christos *
376 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
377 1.1.1.2 christos * Resource - Pointer to the resource descriptor
378 1.1 christos * Length - Length of the descriptor in bytes
379 1.1 christos * Level - Current source code indentation level
380 1.1 christos *
381 1.1 christos * RETURN: None
382 1.1 christos *
383 1.1 christos * DESCRIPTION: Decode a GpioInt/GpioIo GPIO Interrupt/IO descriptor
384 1.1 christos *
385 1.1 christos ******************************************************************************/
386 1.1 christos
387 1.1 christos void
388 1.1 christos AcpiDmGpioDescriptor (
389 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
390 1.1 christos AML_RESOURCE *Resource,
391 1.1 christos UINT32 Length,
392 1.1 christos UINT32 Level)
393 1.1 christos {
394 1.1 christos UINT8 ConnectionType;
395 1.1 christos
396 1.1 christos
397 1.1 christos ConnectionType = Resource->Gpio.ConnectionType;
398 1.1 christos
399 1.1 christos switch (ConnectionType)
400 1.1 christos {
401 1.1 christos case AML_RESOURCE_GPIO_TYPE_INT:
402 1.1 christos
403 1.1.1.2 christos AcpiDmGpioIntDescriptor (Info, Resource, Length, Level);
404 1.1 christos break;
405 1.1 christos
406 1.1 christos case AML_RESOURCE_GPIO_TYPE_IO:
407 1.1 christos
408 1.1.1.2 christos AcpiDmGpioIoDescriptor (Info, Resource, Length, Level);
409 1.1 christos break;
410 1.1 christos
411 1.1 christos default:
412 1.1 christos
413 1.1 christos AcpiOsPrintf ("Unknown GPIO type\n");
414 1.1 christos break;
415 1.1 christos }
416 1.1 christos }
417 1.1 christos
418 1.1.1.8 christos /*******************************************************************************
419 1.1.1.8 christos *
420 1.1.1.8 christos * FUNCTION: AcpiDmPinFunctionDescriptor
421 1.1.1.8 christos *
422 1.1.1.8 christos * PARAMETERS: Info - Extra resource info
423 1.1.1.8 christos * Resource - Pointer to the resource descriptor
424 1.1.1.8 christos * Length - Length of the descriptor in bytes
425 1.1.1.8 christos * Level - Current source code indentation level
426 1.1.1.8 christos *
427 1.1.1.8 christos * RETURN: None
428 1.1.1.8 christos *
429 1.1.1.8 christos * DESCRIPTION: Decode a PinFunction descriptor
430 1.1.1.8 christos *
431 1.1.1.8 christos ******************************************************************************/
432 1.1.1.8 christos
433 1.1.1.8 christos void
434 1.1.1.8 christos AcpiDmPinFunctionDescriptor (
435 1.1.1.8 christos ACPI_OP_WALK_INFO *Info,
436 1.1.1.8 christos AML_RESOURCE *Resource,
437 1.1.1.8 christos UINT32 Length,
438 1.1.1.8 christos UINT32 Level)
439 1.1.1.8 christos {
440 1.1.1.8 christos UINT16 *PinList;
441 1.1.1.8 christos UINT8 *VendorData;
442 1.1.1.8 christos char *DeviceName = NULL;
443 1.1.1.8 christos UINT32 PinCount;
444 1.1.1.8 christos UINT32 i;
445 1.1.1.8 christos
446 1.1.1.8 christos AcpiDmIndent (Level);
447 1.1.1.8 christos AcpiOsPrintf ("PinFunction (%s, ",
448 1.1.1.8 christos AcpiGbl_ShrDecode [ACPI_GET_1BIT_FLAG (Resource->PinFunction.Flags)]);
449 1.1.1.8 christos
450 1.1.1.8 christos if (Resource->PinFunction.PinConfig <= 3)
451 1.1.1.8 christos {
452 1.1.1.8 christos AcpiOsPrintf ("%s, ",
453 1.1.1.8 christos AcpiGbl_PpcDecode[Resource->PinFunction.PinConfig]);
454 1.1.1.8 christos }
455 1.1.1.8 christos else
456 1.1.1.8 christos {
457 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X, ", Resource->PinFunction.PinConfig);
458 1.1.1.8 christos }
459 1.1.1.8 christos
460 1.1.1.8 christos /* FunctionNumber */
461 1.1.1.8 christos
462 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X, ", Resource->PinFunction.FunctionNumber);
463 1.1.1.8 christos
464 1.1.1.8 christos if (Resource->PinFunction.ResSourceOffset)
465 1.1.1.8 christos {
466 1.1.1.8 christos DeviceName = ACPI_ADD_PTR (char,
467 1.1.1.8 christos Resource, Resource->PinFunction.ResSourceOffset),
468 1.1.1.8 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
469 1.1.1.8 christos }
470 1.1.1.8 christos
471 1.1.1.8 christos AcpiOsPrintf (", ");
472 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X,\n", Resource->PinFunction.ResSourceIndex);
473 1.1.1.8 christos
474 1.1.1.8 christos AcpiDmIndent (Level + 1);
475 1.1.1.8 christos
476 1.1.1.8 christos /* Always ResourceConsumer */
477 1.1.1.8 christos AcpiOsPrintf ("%s, ", AcpiGbl_ConsumeDecode [ACPI_CONSUMER]);
478 1.1.1.8 christos
479 1.1.1.8 christos /* Insert a descriptor name */
480 1.1.1.8 christos
481 1.1.1.8 christos AcpiDmDescriptorName ();
482 1.1.1.8 christos
483 1.1.1.8 christos AcpiOsPrintf (",");
484 1.1.1.8 christos
485 1.1.1.8 christos /* Dump the vendor data */
486 1.1.1.8 christos
487 1.1.1.8 christos if (Resource->PinFunction.VendorLength)
488 1.1.1.8 christos {
489 1.1.1.8 christos AcpiOsPrintf ("\n");
490 1.1.1.8 christos AcpiDmIndent (Level + 1);
491 1.1.1.8 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
492 1.1.1.8 christos Resource->PinFunction.VendorOffset);
493 1.1.1.8 christos
494 1.1.1.8 christos AcpiDmDumpRawDataBuffer (VendorData,
495 1.1.1.8 christos Resource->PinFunction.VendorLength, Level);
496 1.1.1.8 christos }
497 1.1.1.8 christos
498 1.1.1.8 christos AcpiOsPrintf (")\n");
499 1.1.1.8 christos
500 1.1.1.8 christos AcpiDmIndent (Level + 1);
501 1.1.1.8 christos
502 1.1.1.8 christos /* Dump the interrupt list */
503 1.1.1.8 christos
504 1.1.1.8 christos AcpiOsPrintf ("{ // Pin list\n");
505 1.1.1.8 christos
506 1.1.1.8 christos PinCount = ((UINT32) (Resource->PinFunction.ResSourceOffset -
507 1.1.1.8 christos Resource->PinFunction.PinTableOffset)) /
508 1.1.1.8 christos sizeof (UINT16);
509 1.1.1.8 christos
510 1.1.1.8 christos PinList = (UINT16 *) ACPI_ADD_PTR (char, Resource,
511 1.1.1.8 christos Resource->PinFunction.PinTableOffset);
512 1.1.1.8 christos
513 1.1.1.8 christos for (i = 0; i < PinCount; i++)
514 1.1.1.8 christos {
515 1.1.1.8 christos AcpiDmIndent (Level + 2);
516 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X%s\n", PinList[i],
517 1.1.1.8 christos ((i + 1) < PinCount) ? "," : "");
518 1.1.1.8 christos }
519 1.1.1.8 christos
520 1.1.1.8 christos AcpiDmIndent (Level + 1);
521 1.1.1.8 christos AcpiOsPrintf ("}\n");
522 1.1.1.8 christos }
523 1.1.1.8 christos
524 1.1 christos
525 1.1 christos /*******************************************************************************
526 1.1 christos *
527 1.1 christos * FUNCTION: AcpiDmDumpSerialBusVendorData
528 1.1 christos *
529 1.1 christos * PARAMETERS: Resource - Pointer to the resource descriptor
530 1.1 christos *
531 1.1 christos * RETURN: None
532 1.1 christos *
533 1.1 christos * DESCRIPTION: Dump optional serial bus vendor data
534 1.1 christos *
535 1.1 christos ******************************************************************************/
536 1.1 christos
537 1.1 christos static void
538 1.1 christos AcpiDmDumpSerialBusVendorData (
539 1.1 christos AML_RESOURCE *Resource,
540 1.1 christos UINT32 Level)
541 1.1 christos {
542 1.1 christos UINT8 *VendorData;
543 1.1 christos UINT32 VendorLength;
544 1.1 christos
545 1.1 christos
546 1.1 christos /* Get the (optional) vendor data and length */
547 1.1 christos
548 1.1 christos switch (Resource->CommonSerialBus.Type)
549 1.1 christos {
550 1.1 christos case AML_RESOURCE_I2C_SERIALBUSTYPE:
551 1.1 christos
552 1.1 christos VendorLength = Resource->CommonSerialBus.TypeDataLength -
553 1.1 christos AML_RESOURCE_I2C_MIN_DATA_LEN;
554 1.1 christos
555 1.1 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
556 1.1 christos sizeof (AML_RESOURCE_I2C_SERIALBUS));
557 1.1 christos break;
558 1.1 christos
559 1.1 christos case AML_RESOURCE_SPI_SERIALBUSTYPE:
560 1.1 christos
561 1.1 christos VendorLength = Resource->CommonSerialBus.TypeDataLength -
562 1.1 christos AML_RESOURCE_SPI_MIN_DATA_LEN;
563 1.1 christos
564 1.1 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
565 1.1 christos sizeof (AML_RESOURCE_SPI_SERIALBUS));
566 1.1 christos break;
567 1.1 christos
568 1.1 christos case AML_RESOURCE_UART_SERIALBUSTYPE:
569 1.1 christos
570 1.1 christos VendorLength = Resource->CommonSerialBus.TypeDataLength -
571 1.1 christos AML_RESOURCE_UART_MIN_DATA_LEN;
572 1.1 christos
573 1.1 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
574 1.1 christos sizeof (AML_RESOURCE_UART_SERIALBUS));
575 1.1 christos break;
576 1.1 christos
577 1.1.1.12 christos case AML_RESOURCE_CSI2_SERIALBUSTYPE:
578 1.1.1.12 christos
579 1.1.1.12 christos VendorLength = Resource->CommonSerialBus.TypeDataLength -
580 1.1.1.12 christos AML_RESOURCE_CSI2_MIN_DATA_LEN;
581 1.1.1.12 christos
582 1.1.1.12 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
583 1.1.1.12 christos sizeof (AML_RESOURCE_CSI2_SERIALBUS));
584 1.1.1.12 christos break;
585 1.1.1.12 christos
586 1.1 christos default:
587 1.1 christos
588 1.1 christos return;
589 1.1 christos }
590 1.1 christos
591 1.1 christos /* Dump the vendor bytes as a RawDataBuffer object */
592 1.1 christos
593 1.1 christos AcpiDmDumpRawDataBuffer (VendorData, VendorLength, Level);
594 1.1 christos }
595 1.1 christos
596 1.1 christos
597 1.1 christos /*******************************************************************************
598 1.1 christos *
599 1.1.1.12 christos * FUNCTION: AcpiDmCsi2SerialBusDescriptor
600 1.1.1.12 christos *
601 1.1.1.12 christos * PARAMETERS: Info - Extra resource info
602 1.1.1.12 christos * Resource - Pointer to the resource descriptor
603 1.1.1.12 christos * Length - Length of the descriptor in bytes
604 1.1.1.12 christos * Level - Current source code indentation level
605 1.1.1.12 christos *
606 1.1.1.12 christos * RETURN: None
607 1.1.1.12 christos *
608 1.1.1.12 christos * DESCRIPTION: Decode a CSI2 serial bus descriptor
609 1.1.1.12 christos *
610 1.1.1.12 christos ******************************************************************************/
611 1.1.1.12 christos
612 1.1.1.12 christos static void
613 1.1.1.12 christos AcpiDmCsi2SerialBusDescriptor (
614 1.1.1.12 christos ACPI_OP_WALK_INFO *Info,
615 1.1.1.12 christos AML_RESOURCE *Resource,
616 1.1.1.12 christos UINT32 Length,
617 1.1.1.12 christos UINT32 Level)
618 1.1.1.12 christos {
619 1.1.1.12 christos UINT32 ResourceSourceOffset;
620 1.1.1.12 christos char *DeviceName;
621 1.1.1.12 christos
622 1.1.1.12 christos
623 1.1.1.12 christos /* SlaveMode, PhyType, LocalPortInstance */
624 1.1.1.12 christos
625 1.1.1.12 christos AcpiDmIndent (Level);
626 1.1.1.12 christos AcpiOsPrintf ("Csi2Bus (%s,",
627 1.1.1.12 christos AcpiGbl_SmDecode [ACPI_GET_1BIT_FLAG (Resource->Csi2SerialBus.Flags)]);
628 1.1.1.12 christos
629 1.1.1.12 christos AcpiOsPrintf (" 0x%2.2X, 0x%2.2X,\n",
630 1.1.1.12 christos Resource->Csi2SerialBus.TypeSpecificFlags & 0x03,
631 1.1.1.12 christos Resource->Csi2SerialBus.TypeSpecificFlags & 0xFC);
632 1.1.1.12 christos
633 1.1.1.12 christos /* ResourceSource is a required field */
634 1.1.1.12 christos
635 1.1.1.12 christos ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
636 1.1.1.12 christos Resource->CommonSerialBus.TypeDataLength;
637 1.1.1.12 christos
638 1.1.1.12 christos AcpiDmIndent (Level + 1);
639 1.1.1.12 christos DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset);
640 1.1.1.12 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
641 1.1.1.12 christos
642 1.1.1.12 christos /* ResourceSourceIndex, ResourceUsage */
643 1.1.1.12 christos
644 1.1.1.12 christos AcpiOsPrintf (",\n");
645 1.1.1.12 christos AcpiDmIndent (Level + 1);
646 1.1.1.12 christos AcpiOsPrintf ("0x%2.2X, ", Resource->Csi2SerialBus.ResSourceIndex);
647 1.1.1.12 christos
648 1.1.1.12 christos AcpiOsPrintf ("%s, ",
649 1.1.1.12 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->Csi2SerialBus.Flags, 1)]);
650 1.1.1.12 christos
651 1.1.1.12 christos /* Insert a descriptor name */
652 1.1.1.12 christos
653 1.1.1.12 christos AcpiDmDescriptorName ();
654 1.1.1.12 christos
655 1.1.1.12 christos /* Dump the vendor data */
656 1.1.1.12 christos
657 1.1.1.12 christos AcpiOsPrintf (",\n");
658 1.1.1.12 christos AcpiDmIndent (Level + 1);
659 1.1.1.12 christos AcpiDmDumpSerialBusVendorData (Resource, Level);
660 1.1.1.12 christos AcpiOsPrintf (")\n");
661 1.1.1.12 christos
662 1.1.1.12 christos MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
663 1.1.1.12 christos }
664 1.1.1.12 christos
665 1.1.1.12 christos
666 1.1.1.12 christos /*******************************************************************************
667 1.1.1.12 christos *
668 1.1 christos * FUNCTION: AcpiDmI2cSerialBusDescriptor
669 1.1 christos *
670 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
671 1.1.1.2 christos * Resource - Pointer to the resource descriptor
672 1.1 christos * Length - Length of the descriptor in bytes
673 1.1 christos * Level - Current source code indentation level
674 1.1 christos *
675 1.1 christos * RETURN: None
676 1.1 christos *
677 1.1 christos * DESCRIPTION: Decode a I2C serial bus descriptor
678 1.1 christos *
679 1.1 christos ******************************************************************************/
680 1.1 christos
681 1.1 christos static void
682 1.1 christos AcpiDmI2cSerialBusDescriptor (
683 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
684 1.1 christos AML_RESOURCE *Resource,
685 1.1 christos UINT32 Length,
686 1.1 christos UINT32 Level)
687 1.1 christos {
688 1.1 christos UINT32 ResourceSourceOffset;
689 1.1.1.2 christos char *DeviceName;
690 1.1 christos
691 1.1 christos
692 1.1 christos /* SlaveAddress, SlaveMode, ConnectionSpeed, AddressingMode */
693 1.1 christos
694 1.1 christos AcpiDmIndent (Level);
695 1.1.1.5 christos AcpiOsPrintf ("I2cSerialBusV2 (0x%4.4X, %s, 0x%8.8X,\n",
696 1.1 christos Resource->I2cSerialBus.SlaveAddress,
697 1.1 christos AcpiGbl_SmDecode [ACPI_GET_1BIT_FLAG (Resource->I2cSerialBus.Flags)],
698 1.1 christos Resource->I2cSerialBus.ConnectionSpeed);
699 1.1 christos
700 1.1 christos AcpiDmIndent (Level + 1);
701 1.1 christos AcpiOsPrintf ("%s, ",
702 1.1 christos AcpiGbl_AmDecode [ACPI_GET_1BIT_FLAG (Resource->I2cSerialBus.TypeSpecificFlags)]);
703 1.1 christos
704 1.1 christos /* ResourceSource is a required field */
705 1.1 christos
706 1.1 christos ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
707 1.1 christos Resource->CommonSerialBus.TypeDataLength;
708 1.1 christos
709 1.1.1.6 christos DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset);
710 1.1.1.2 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
711 1.1 christos
712 1.1 christos /* ResourceSourceIndex, ResourceUsage */
713 1.1 christos
714 1.1 christos AcpiOsPrintf (",\n");
715 1.1 christos AcpiDmIndent (Level + 1);
716 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->I2cSerialBus.ResSourceIndex);
717 1.1 christos
718 1.1 christos AcpiOsPrintf ("%s, ",
719 1.1 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->I2cSerialBus.Flags, 1)]);
720 1.1 christos
721 1.1 christos /* Insert a descriptor name */
722 1.1 christos
723 1.1 christos AcpiDmDescriptorName ();
724 1.1.1.5 christos
725 1.1.1.5 christos /* Share */
726 1.1.1.5 christos
727 1.1.1.5 christos AcpiOsPrintf (", %s,\n",
728 1.1.1.5 christos AcpiGbl_ShrDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->I2cSerialBus.Flags, 2)]);
729 1.1 christos
730 1.1 christos /* Dump the vendor data */
731 1.1 christos
732 1.1 christos AcpiDmIndent (Level + 1);
733 1.1 christos AcpiDmDumpSerialBusVendorData (Resource, Level);
734 1.1 christos AcpiOsPrintf (")\n");
735 1.1.1.2 christos
736 1.1.1.2 christos MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
737 1.1 christos }
738 1.1 christos
739 1.1 christos
740 1.1 christos /*******************************************************************************
741 1.1 christos *
742 1.1 christos * FUNCTION: AcpiDmSpiSerialBusDescriptor
743 1.1 christos *
744 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
745 1.1.1.2 christos * Resource - Pointer to the resource descriptor
746 1.1 christos * Length - Length of the descriptor in bytes
747 1.1 christos * Level - Current source code indentation level
748 1.1 christos *
749 1.1 christos * RETURN: None
750 1.1 christos *
751 1.1 christos * DESCRIPTION: Decode a SPI serial bus descriptor
752 1.1 christos *
753 1.1 christos ******************************************************************************/
754 1.1 christos
755 1.1 christos static void
756 1.1 christos AcpiDmSpiSerialBusDescriptor (
757 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
758 1.1 christos AML_RESOURCE *Resource,
759 1.1 christos UINT32 Length,
760 1.1 christos UINT32 Level)
761 1.1 christos {
762 1.1 christos UINT32 ResourceSourceOffset;
763 1.1.1.2 christos char *DeviceName;
764 1.1 christos
765 1.1 christos
766 1.1 christos /* DeviceSelection, DeviceSelectionPolarity, WireMode, DataBitLength */
767 1.1 christos
768 1.1 christos AcpiDmIndent (Level);
769 1.1.1.5 christos AcpiOsPrintf ("SpiSerialBusV2 (0x%4.4X, %s, %s, 0x%2.2X,\n",
770 1.1 christos Resource->SpiSerialBus.DeviceSelection,
771 1.1 christos AcpiGbl_DpDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->SpiSerialBus.TypeSpecificFlags, 1)],
772 1.1 christos AcpiGbl_WmDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.TypeSpecificFlags)],
773 1.1 christos Resource->SpiSerialBus.DataBitLength);
774 1.1 christos
775 1.1 christos /* SlaveMode, ConnectionSpeed, ClockPolarity, ClockPhase */
776 1.1 christos
777 1.1 christos AcpiDmIndent (Level + 1);
778 1.1 christos AcpiOsPrintf ("%s, 0x%8.8X, %s,\n",
779 1.1 christos AcpiGbl_SmDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.Flags)],
780 1.1 christos Resource->SpiSerialBus.ConnectionSpeed,
781 1.1 christos AcpiGbl_CpoDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.ClockPolarity)]);
782 1.1 christos
783 1.1 christos AcpiDmIndent (Level + 1);
784 1.1 christos AcpiOsPrintf ("%s, ",
785 1.1 christos AcpiGbl_CphDecode [ACPI_GET_1BIT_FLAG (Resource->SpiSerialBus.ClockPhase)]);
786 1.1 christos
787 1.1 christos /* ResourceSource is a required field */
788 1.1 christos
789 1.1 christos ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
790 1.1 christos Resource->CommonSerialBus.TypeDataLength;
791 1.1 christos
792 1.1.1.6 christos DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset);
793 1.1.1.2 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
794 1.1 christos
795 1.1 christos /* ResourceSourceIndex, ResourceUsage */
796 1.1 christos
797 1.1 christos AcpiOsPrintf (",\n");
798 1.1 christos AcpiDmIndent (Level + 1);
799 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->SpiSerialBus.ResSourceIndex);
800 1.1 christos
801 1.1 christos AcpiOsPrintf ("%s, ",
802 1.1 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->SpiSerialBus.Flags, 1)]);
803 1.1 christos
804 1.1 christos /* Insert a descriptor name */
805 1.1 christos
806 1.1 christos AcpiDmDescriptorName ();
807 1.1.1.5 christos
808 1.1.1.5 christos /* Share */
809 1.1.1.5 christos
810 1.1.1.5 christos AcpiOsPrintf (", %s,\n",
811 1.1.1.5 christos AcpiGbl_ShrDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->SpiSerialBus.Flags, 2)]);
812 1.1 christos
813 1.1 christos /* Dump the vendor data */
814 1.1 christos
815 1.1 christos AcpiDmIndent (Level + 1);
816 1.1 christos AcpiDmDumpSerialBusVendorData (Resource, Level);
817 1.1 christos AcpiOsPrintf (")\n");
818 1.1.1.2 christos
819 1.1.1.2 christos MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
820 1.1 christos }
821 1.1 christos
822 1.1 christos
823 1.1 christos /*******************************************************************************
824 1.1 christos *
825 1.1 christos * FUNCTION: AcpiDmUartSerialBusDescriptor
826 1.1 christos *
827 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
828 1.1.1.2 christos * Resource - Pointer to the resource descriptor
829 1.1 christos * Length - Length of the descriptor in bytes
830 1.1 christos * Level - Current source code indentation level
831 1.1 christos *
832 1.1 christos * RETURN: None
833 1.1 christos *
834 1.1 christos * DESCRIPTION: Decode a UART serial bus descriptor
835 1.1 christos *
836 1.1 christos ******************************************************************************/
837 1.1 christos
838 1.1 christos static void
839 1.1 christos AcpiDmUartSerialBusDescriptor (
840 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
841 1.1 christos AML_RESOURCE *Resource,
842 1.1 christos UINT32 Length,
843 1.1 christos UINT32 Level)
844 1.1 christos {
845 1.1 christos UINT32 ResourceSourceOffset;
846 1.1.1.2 christos char *DeviceName;
847 1.1 christos
848 1.1 christos
849 1.1 christos /* ConnectionSpeed, BitsPerByte, StopBits */
850 1.1 christos
851 1.1 christos AcpiDmIndent (Level);
852 1.1.1.5 christos AcpiOsPrintf ("UartSerialBusV2 (0x%8.8X, %s, %s,\n",
853 1.1 christos Resource->UartSerialBus.DefaultBaudRate,
854 1.1 christos AcpiGbl_BpbDecode [ACPI_EXTRACT_3BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 4)],
855 1.1 christos AcpiGbl_SbDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 2)]);
856 1.1 christos
857 1.1 christos /* LinesInUse, IsBigEndian, Parity, FlowControl */
858 1.1 christos
859 1.1 christos AcpiDmIndent (Level + 1);
860 1.1 christos AcpiOsPrintf ("0x%2.2X, %s, %s, %s,\n",
861 1.1 christos Resource->UartSerialBus.LinesEnabled,
862 1.1 christos AcpiGbl_EdDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags, 7)],
863 1.1 christos AcpiGbl_PtDecode [ACPI_GET_3BIT_FLAG (Resource->UartSerialBus.Parity)],
864 1.1 christos AcpiGbl_FcDecode [ACPI_GET_2BIT_FLAG (Resource->UartSerialBus.TypeSpecificFlags)]);
865 1.1 christos
866 1.1 christos /* ReceiveBufferSize, TransmitBufferSize */
867 1.1 christos
868 1.1 christos AcpiDmIndent (Level + 1);
869 1.1 christos AcpiOsPrintf ("0x%4.4X, 0x%4.4X, ",
870 1.1 christos Resource->UartSerialBus.RxFifoSize,
871 1.1 christos Resource->UartSerialBus.TxFifoSize);
872 1.1 christos
873 1.1 christos /* ResourceSource is a required field */
874 1.1 christos
875 1.1 christos ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
876 1.1 christos Resource->CommonSerialBus.TypeDataLength;
877 1.1 christos
878 1.1.1.6 christos DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset);
879 1.1.1.2 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
880 1.1 christos
881 1.1 christos /* ResourceSourceIndex, ResourceUsage */
882 1.1 christos
883 1.1 christos AcpiOsPrintf (",\n");
884 1.1 christos AcpiDmIndent (Level + 1);
885 1.1 christos AcpiOsPrintf ("0x%2.2X, ", Resource->UartSerialBus.ResSourceIndex);
886 1.1 christos
887 1.1 christos AcpiOsPrintf ("%s, ",
888 1.1 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->UartSerialBus.Flags, 1)]);
889 1.1 christos
890 1.1 christos /* Insert a descriptor name */
891 1.1 christos
892 1.1 christos AcpiDmDescriptorName ();
893 1.1.1.5 christos
894 1.1.1.5 christos /* Share */
895 1.1.1.5 christos
896 1.1.1.5 christos AcpiOsPrintf (", %s,\n",
897 1.1.1.5 christos AcpiGbl_ShrDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->UartSerialBus.Flags, 2)]);
898 1.1 christos
899 1.1 christos /* Dump the vendor data */
900 1.1 christos
901 1.1 christos AcpiDmIndent (Level + 1);
902 1.1 christos AcpiDmDumpSerialBusVendorData (Resource, Level);
903 1.1 christos AcpiOsPrintf (")\n");
904 1.1.1.2 christos
905 1.1.1.2 christos MpSaveSerialInfo (Info->MappingOp, Resource, DeviceName);
906 1.1 christos }
907 1.1 christos
908 1.1 christos
909 1.1 christos /*******************************************************************************
910 1.1 christos *
911 1.1 christos * FUNCTION: AcpiDmSerialBusDescriptor
912 1.1 christos *
913 1.1.1.2 christos * PARAMETERS: Info - Extra resource info
914 1.1.1.2 christos * Resource - Pointer to the resource descriptor
915 1.1 christos * Length - Length of the descriptor in bytes
916 1.1 christos * Level - Current source code indentation level
917 1.1 christos *
918 1.1 christos * RETURN: None
919 1.1 christos *
920 1.1.1.12 christos * DESCRIPTION: Decode a I2C/SPI/UART/CSI2 serial bus descriptor
921 1.1 christos *
922 1.1 christos ******************************************************************************/
923 1.1 christos
924 1.1 christos void
925 1.1 christos AcpiDmSerialBusDescriptor (
926 1.1.1.2 christos ACPI_OP_WALK_INFO *Info,
927 1.1 christos AML_RESOURCE *Resource,
928 1.1 christos UINT32 Length,
929 1.1 christos UINT32 Level)
930 1.1 christos {
931 1.1 christos
932 1.1 christos SerialBusResourceDispatch [Resource->CommonSerialBus.Type] (
933 1.1.1.2 christos Info, Resource, Length, Level);
934 1.1 christos }
935 1.1.1.8 christos
936 1.1.1.8 christos /*******************************************************************************
937 1.1.1.8 christos *
938 1.1.1.8 christos * FUNCTION: AcpiDmPinConfig
939 1.1.1.8 christos *
940 1.1.1.8 christos * PARAMETERS: PinConfigType - Pin configuration type
941 1.1.1.8 christos * PinConfigValue - Pin configuration value
942 1.1.1.8 christos *
943 1.1.1.8 christos * RETURN: None
944 1.1.1.8 christos *
945 1.1.1.8 christos * DESCRIPTION: Pretty prints PinConfig type and value.
946 1.1.1.8 christos *
947 1.1.1.8 christos ******************************************************************************/
948 1.1.1.8 christos
949 1.1.1.8 christos static void
950 1.1.1.8 christos AcpiDmPinConfig(
951 1.1.1.8 christos UINT8 PinConfigType,
952 1.1.1.8 christos UINT32 PinConfigValue)
953 1.1.1.8 christos {
954 1.1.1.8 christos if (PinConfigType <= 13)
955 1.1.1.8 christos {
956 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X /* %s */, ", PinConfigType,
957 1.1.1.8 christos AcpiGbl_PtypDecode[PinConfigType]);
958 1.1.1.8 christos }
959 1.1.1.8 christos else
960 1.1.1.8 christos {
961 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X, /* Vendor Defined */ ", PinConfigType);
962 1.1.1.8 christos }
963 1.1.1.8 christos
964 1.1.1.8 christos /* PinConfigValue */
965 1.1.1.8 christos
966 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X,\n", PinConfigValue);
967 1.1.1.8 christos }
968 1.1.1.8 christos
969 1.1.1.8 christos /*******************************************************************************
970 1.1.1.8 christos *
971 1.1.1.8 christos * FUNCTION: AcpiDmPinConfigDescriptor
972 1.1.1.8 christos *
973 1.1.1.8 christos * PARAMETERS: Info - Extra resource info
974 1.1.1.8 christos * Resource - Pointer to the resource descriptor
975 1.1.1.8 christos * Length - Length of the descriptor in bytes
976 1.1.1.8 christos * Level - Current source code indentation level
977 1.1.1.8 christos *
978 1.1.1.8 christos * RETURN: None
979 1.1.1.8 christos *
980 1.1.1.8 christos * DESCRIPTION: Decode a PinConfig descriptor
981 1.1.1.8 christos *
982 1.1.1.8 christos ******************************************************************************/
983 1.1.1.8 christos
984 1.1.1.8 christos void
985 1.1.1.8 christos AcpiDmPinConfigDescriptor (
986 1.1.1.8 christos ACPI_OP_WALK_INFO *Info,
987 1.1.1.8 christos AML_RESOURCE *Resource,
988 1.1.1.8 christos UINT32 Length,
989 1.1.1.8 christos UINT32 Level)
990 1.1.1.8 christos {
991 1.1.1.8 christos UINT16 *PinList;
992 1.1.1.8 christos UINT8 *VendorData;
993 1.1.1.8 christos char *DeviceName = NULL;
994 1.1.1.8 christos UINT32 PinCount;
995 1.1.1.8 christos UINT32 i;
996 1.1.1.8 christos
997 1.1.1.8 christos AcpiDmIndent (Level);
998 1.1.1.8 christos AcpiOsPrintf ("PinConfig (%s, ",
999 1.1.1.8 christos AcpiGbl_ShrDecode [ACPI_GET_1BIT_FLAG (Resource->PinConfig.Flags)]);
1000 1.1.1.8 christos
1001 1.1.1.8 christos AcpiDmPinConfig (Resource->PinConfig.PinConfigType,
1002 1.1.1.8 christos Resource->PinConfig.PinConfigValue);
1003 1.1.1.8 christos
1004 1.1.1.8 christos AcpiDmIndent (Level + 1);
1005 1.1.1.8 christos
1006 1.1.1.8 christos if (Resource->PinConfig.ResSourceOffset)
1007 1.1.1.8 christos {
1008 1.1.1.8 christos DeviceName = ACPI_ADD_PTR (char,
1009 1.1.1.8 christos Resource, Resource->PinConfig.ResSourceOffset),
1010 1.1.1.8 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
1011 1.1.1.8 christos }
1012 1.1.1.8 christos
1013 1.1.1.8 christos AcpiOsPrintf (", ");
1014 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X, ", Resource->PinConfig.ResSourceIndex);
1015 1.1.1.8 christos
1016 1.1.1.8 christos AcpiOsPrintf ("%s, ",
1017 1.1.1.8 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->PinConfig.Flags, 1)]);
1018 1.1.1.8 christos
1019 1.1.1.8 christos /* Insert a descriptor name */
1020 1.1.1.8 christos
1021 1.1.1.8 christos AcpiDmDescriptorName ();
1022 1.1.1.8 christos
1023 1.1.1.8 christos AcpiOsPrintf (",");
1024 1.1.1.8 christos
1025 1.1.1.8 christos /* Dump the vendor data */
1026 1.1.1.8 christos
1027 1.1.1.8 christos if (Resource->PinConfig.VendorLength)
1028 1.1.1.8 christos {
1029 1.1.1.8 christos AcpiOsPrintf ("\n");
1030 1.1.1.8 christos AcpiDmIndent (Level + 1);
1031 1.1.1.8 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
1032 1.1.1.8 christos Resource->PinConfig.VendorOffset);
1033 1.1.1.8 christos
1034 1.1.1.8 christos AcpiDmDumpRawDataBuffer (VendorData,
1035 1.1.1.8 christos Resource->PinConfig.VendorLength, Level);
1036 1.1.1.8 christos }
1037 1.1.1.8 christos
1038 1.1.1.8 christos AcpiOsPrintf (")\n");
1039 1.1.1.8 christos
1040 1.1.1.8 christos AcpiDmIndent (Level + 1);
1041 1.1.1.8 christos
1042 1.1.1.8 christos /* Dump the interrupt list */
1043 1.1.1.8 christos
1044 1.1.1.8 christos AcpiOsPrintf ("{ // Pin list\n");
1045 1.1.1.8 christos
1046 1.1.1.8 christos PinCount = ((UINT32) (Resource->PinConfig.ResSourceOffset -
1047 1.1.1.8 christos Resource->PinConfig.PinTableOffset)) /
1048 1.1.1.8 christos sizeof (UINT16);
1049 1.1.1.8 christos
1050 1.1.1.8 christos PinList = (UINT16 *) ACPI_ADD_PTR (char, Resource,
1051 1.1.1.8 christos Resource->PinConfig.PinTableOffset);
1052 1.1.1.8 christos
1053 1.1.1.8 christos for (i = 0; i < PinCount; i++)
1054 1.1.1.8 christos {
1055 1.1.1.8 christos AcpiDmIndent (Level + 2);
1056 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X%s\n", PinList[i],
1057 1.1.1.8 christos ((i + 1) < PinCount) ? "," : "");
1058 1.1.1.8 christos }
1059 1.1.1.8 christos
1060 1.1.1.8 christos AcpiDmIndent (Level + 1);
1061 1.1.1.8 christos AcpiOsPrintf ("}\n");
1062 1.1.1.8 christos }
1063 1.1.1.8 christos
1064 1.1.1.8 christos /*******************************************************************************
1065 1.1.1.8 christos *
1066 1.1.1.8 christos * FUNCTION: AcpiDmPinGroupDescriptor
1067 1.1.1.8 christos *
1068 1.1.1.8 christos * PARAMETERS: Info - Extra resource info
1069 1.1.1.8 christos * Resource - Pointer to the resource descriptor
1070 1.1.1.8 christos * Length - Length of the descriptor in bytes
1071 1.1.1.8 christos * Level - Current source code indentation level
1072 1.1.1.8 christos *
1073 1.1.1.8 christos * RETURN: None
1074 1.1.1.8 christos *
1075 1.1.1.8 christos * DESCRIPTION: Decode a PinGroup descriptor
1076 1.1.1.8 christos *
1077 1.1.1.8 christos ******************************************************************************/
1078 1.1.1.8 christos
1079 1.1.1.8 christos void
1080 1.1.1.8 christos AcpiDmPinGroupDescriptor (
1081 1.1.1.8 christos ACPI_OP_WALK_INFO *Info,
1082 1.1.1.8 christos AML_RESOURCE *Resource,
1083 1.1.1.8 christos UINT32 Length,
1084 1.1.1.8 christos UINT32 Level)
1085 1.1.1.8 christos {
1086 1.1.1.8 christos char *Label;
1087 1.1.1.8 christos UINT16 *PinList;
1088 1.1.1.8 christos UINT8 *VendorData;
1089 1.1.1.8 christos UINT32 PinCount;
1090 1.1.1.8 christos UINT32 i;
1091 1.1.1.8 christos
1092 1.1.1.8 christos AcpiDmIndent (Level);
1093 1.1.1.8 christos /* Always producer */
1094 1.1.1.8 christos AcpiOsPrintf ("PinGroup (");
1095 1.1.1.8 christos
1096 1.1.1.8 christos Label = ACPI_ADD_PTR (char,
1097 1.1.1.8 christos Resource, Resource->PinGroup.LabelOffset),
1098 1.1.1.8 christos AcpiUtPrintString (Label, ACPI_UINT16_MAX);
1099 1.1.1.8 christos
1100 1.1.1.8 christos AcpiOsPrintf (", ");
1101 1.1.1.8 christos
1102 1.1.1.8 christos AcpiOsPrintf ("%s, ",
1103 1.1.1.8 christos AcpiGbl_ConsumeDecode [ACPI_GET_1BIT_FLAG (Resource->PinGroup.Flags)]);
1104 1.1.1.8 christos
1105 1.1.1.8 christos /* Insert a descriptor name */
1106 1.1.1.8 christos
1107 1.1.1.8 christos AcpiDmDescriptorName ();
1108 1.1.1.8 christos
1109 1.1.1.8 christos AcpiOsPrintf (",");
1110 1.1.1.8 christos
1111 1.1.1.8 christos /* Dump the vendor data */
1112 1.1.1.8 christos
1113 1.1.1.8 christos if (Resource->PinGroup.VendorLength)
1114 1.1.1.8 christos {
1115 1.1.1.8 christos AcpiOsPrintf ("\n");
1116 1.1.1.8 christos AcpiDmIndent (Level + 1);
1117 1.1.1.8 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
1118 1.1.1.8 christos Resource->PinGroup.VendorOffset);
1119 1.1.1.8 christos
1120 1.1.1.8 christos AcpiDmDumpRawDataBuffer (VendorData,
1121 1.1.1.8 christos Resource->PinGroup.VendorLength, Level);
1122 1.1.1.8 christos }
1123 1.1.1.8 christos
1124 1.1.1.8 christos AcpiOsPrintf (")\n");
1125 1.1.1.8 christos
1126 1.1.1.8 christos AcpiDmIndent (Level + 1);
1127 1.1.1.8 christos
1128 1.1.1.8 christos /* Dump the interrupt list */
1129 1.1.1.8 christos
1130 1.1.1.8 christos AcpiOsPrintf ("{ // Pin list\n");
1131 1.1.1.8 christos
1132 1.1.1.8 christos PinCount = (Resource->PinGroup.LabelOffset -
1133 1.1.1.8 christos Resource->PinGroup.PinTableOffset) / sizeof (UINT16);
1134 1.1.1.8 christos
1135 1.1.1.8 christos PinList = (UINT16 *) ACPI_ADD_PTR (char, Resource,
1136 1.1.1.8 christos Resource->PinGroup.PinTableOffset);
1137 1.1.1.8 christos
1138 1.1.1.8 christos for (i = 0; i < PinCount; i++)
1139 1.1.1.8 christos {
1140 1.1.1.8 christos AcpiDmIndent (Level + 2);
1141 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X%s\n", PinList[i],
1142 1.1.1.8 christos ((i + 1) < PinCount) ? "," : "");
1143 1.1.1.8 christos }
1144 1.1.1.8 christos
1145 1.1.1.8 christos AcpiDmIndent (Level + 1);
1146 1.1.1.8 christos AcpiOsPrintf ("}\n");
1147 1.1.1.8 christos }
1148 1.1.1.8 christos
1149 1.1.1.8 christos /*******************************************************************************
1150 1.1.1.8 christos *
1151 1.1.1.8 christos * FUNCTION: AcpiDmPinGroupFunctionDescriptor
1152 1.1.1.8 christos *
1153 1.1.1.8 christos * PARAMETERS: Info - Extra resource info
1154 1.1.1.8 christos * Resource - Pointer to the resource descriptor
1155 1.1.1.8 christos * Length - Length of the descriptor in bytes
1156 1.1.1.8 christos * Level - Current source code indentation level
1157 1.1.1.8 christos *
1158 1.1.1.8 christos * RETURN: None
1159 1.1.1.8 christos *
1160 1.1.1.8 christos * DESCRIPTION: Decode a PinGroupFunction descriptor
1161 1.1.1.8 christos *
1162 1.1.1.8 christos ******************************************************************************/
1163 1.1.1.8 christos
1164 1.1.1.8 christos void
1165 1.1.1.8 christos AcpiDmPinGroupFunctionDescriptor (
1166 1.1.1.8 christos ACPI_OP_WALK_INFO *Info,
1167 1.1.1.8 christos AML_RESOURCE *Resource,
1168 1.1.1.8 christos UINT32 Length,
1169 1.1.1.8 christos UINT32 Level)
1170 1.1.1.8 christos {
1171 1.1.1.8 christos UINT8 *VendorData;
1172 1.1.1.8 christos char *DeviceName = NULL;
1173 1.1.1.8 christos char *Label = NULL;
1174 1.1.1.8 christos
1175 1.1.1.8 christos AcpiDmIndent (Level);
1176 1.1.1.8 christos AcpiOsPrintf ("PinGroupFunction (%s, ",
1177 1.1.1.8 christos AcpiGbl_ShrDecode [ACPI_GET_1BIT_FLAG (Resource->PinGroupFunction.Flags)]);
1178 1.1.1.8 christos
1179 1.1.1.8 christos /* FunctionNumber */
1180 1.1.1.8 christos
1181 1.1.1.8 christos AcpiOsPrintf ("0x%4.4X, ", Resource->PinGroupFunction.FunctionNumber);
1182 1.1.1.8 christos
1183 1.1.1.8 christos DeviceName = ACPI_ADD_PTR (char,
1184 1.1.1.8 christos Resource, Resource->PinGroupFunction.ResSourceOffset),
1185 1.1.1.8 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
1186 1.1.1.8 christos
1187 1.1.1.8 christos AcpiOsPrintf (", ");
1188 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X,\n", Resource->PinGroupFunction.ResSourceIndex);
1189 1.1.1.8 christos
1190 1.1.1.8 christos AcpiDmIndent (Level + 1);
1191 1.1.1.8 christos
1192 1.1.1.8 christos Label = ACPI_ADD_PTR (char, Resource,
1193 1.1.1.8 christos Resource->PinGroupFunction.ResSourceLabelOffset);
1194 1.1.1.8 christos AcpiUtPrintString (Label, ACPI_UINT16_MAX);
1195 1.1.1.8 christos
1196 1.1.1.8 christos AcpiOsPrintf (", ");
1197 1.1.1.8 christos
1198 1.1.1.8 christos AcpiOsPrintf ("%s, ",
1199 1.1.1.8 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->PinGroupFunction.Flags, 1)]);
1200 1.1.1.8 christos
1201 1.1.1.8 christos /* Insert a descriptor name */
1202 1.1.1.8 christos
1203 1.1.1.8 christos AcpiDmDescriptorName ();
1204 1.1.1.8 christos
1205 1.1.1.8 christos AcpiOsPrintf (",");
1206 1.1.1.8 christos
1207 1.1.1.8 christos /* Dump the vendor data */
1208 1.1.1.8 christos
1209 1.1.1.8 christos if (Resource->PinGroupFunction.VendorLength)
1210 1.1.1.8 christos {
1211 1.1.1.8 christos AcpiOsPrintf ("\n");
1212 1.1.1.8 christos AcpiDmIndent (Level + 1);
1213 1.1.1.8 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
1214 1.1.1.8 christos Resource->PinGroupFunction.VendorOffset);
1215 1.1.1.8 christos
1216 1.1.1.8 christos AcpiDmDumpRawDataBuffer (VendorData,
1217 1.1.1.8 christos Resource->PinGroupFunction.VendorLength, Level);
1218 1.1.1.8 christos }
1219 1.1.1.8 christos
1220 1.1.1.8 christos AcpiOsPrintf (")\n");
1221 1.1.1.8 christos }
1222 1.1.1.8 christos
1223 1.1.1.8 christos /*******************************************************************************
1224 1.1.1.8 christos *
1225 1.1.1.8 christos * FUNCTION: AcpiDmPinGroupConfigDescriptor
1226 1.1.1.8 christos *
1227 1.1.1.8 christos * PARAMETERS: Info - Extra resource info
1228 1.1.1.8 christos * Resource - Pointer to the resource descriptor
1229 1.1.1.8 christos * Length - Length of the descriptor in bytes
1230 1.1.1.8 christos * Level - Current source code indentation level
1231 1.1.1.8 christos *
1232 1.1.1.8 christos * RETURN: None
1233 1.1.1.8 christos *
1234 1.1.1.8 christos * DESCRIPTION: Decode a PinGroupConfig descriptor
1235 1.1.1.8 christos *
1236 1.1.1.8 christos ******************************************************************************/
1237 1.1.1.8 christos
1238 1.1.1.8 christos void
1239 1.1.1.8 christos AcpiDmPinGroupConfigDescriptor (
1240 1.1.1.8 christos ACPI_OP_WALK_INFO *Info,
1241 1.1.1.8 christos AML_RESOURCE *Resource,
1242 1.1.1.8 christos UINT32 Length,
1243 1.1.1.8 christos UINT32 Level)
1244 1.1.1.8 christos {
1245 1.1.1.8 christos UINT8 *VendorData;
1246 1.1.1.8 christos char *DeviceName = NULL;
1247 1.1.1.8 christos char *Label = NULL;
1248 1.1.1.8 christos
1249 1.1.1.8 christos AcpiDmIndent (Level);
1250 1.1.1.8 christos AcpiOsPrintf ("PinGroupConfig (%s, ",
1251 1.1.1.8 christos AcpiGbl_ShrDecode [ACPI_GET_1BIT_FLAG (Resource->PinGroupConfig.Flags)]);
1252 1.1.1.8 christos
1253 1.1.1.8 christos AcpiDmPinConfig(Resource->PinGroupConfig.PinConfigType,
1254 1.1.1.8 christos Resource->PinGroupConfig.PinConfigValue);
1255 1.1.1.8 christos
1256 1.1.1.8 christos AcpiDmIndent (Level + 1);
1257 1.1.1.8 christos
1258 1.1.1.8 christos DeviceName = ACPI_ADD_PTR (char,
1259 1.1.1.8 christos Resource, Resource->PinGroupConfig.ResSourceOffset),
1260 1.1.1.8 christos AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
1261 1.1.1.8 christos
1262 1.1.1.8 christos AcpiOsPrintf (", ");
1263 1.1.1.8 christos AcpiOsPrintf ("0x%2.2X, ", Resource->PinGroupConfig.ResSourceIndex);
1264 1.1.1.8 christos
1265 1.1.1.8 christos Label = ACPI_ADD_PTR (char, Resource,
1266 1.1.1.8 christos Resource->PinGroupConfig.ResSourceLabelOffset);
1267 1.1.1.8 christos AcpiUtPrintString (Label, ACPI_UINT16_MAX);
1268 1.1.1.8 christos
1269 1.1.1.8 christos AcpiOsPrintf (", ");
1270 1.1.1.8 christos
1271 1.1.1.8 christos AcpiOsPrintf ("%s, ",
1272 1.1.1.8 christos AcpiGbl_ConsumeDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->PinGroupConfig.Flags, 1)]);
1273 1.1.1.8 christos
1274 1.1.1.8 christos /* Insert a descriptor name */
1275 1.1.1.8 christos
1276 1.1.1.8 christos AcpiDmDescriptorName ();
1277 1.1.1.8 christos
1278 1.1.1.8 christos AcpiOsPrintf (",");
1279 1.1.1.8 christos
1280 1.1.1.8 christos /* Dump the vendor data */
1281 1.1.1.8 christos
1282 1.1.1.8 christos if (Resource->PinGroupConfig.VendorLength)
1283 1.1.1.8 christos {
1284 1.1.1.8 christos AcpiOsPrintf ("\n");
1285 1.1.1.8 christos AcpiDmIndent (Level + 1);
1286 1.1.1.8 christos VendorData = ACPI_ADD_PTR (UINT8, Resource,
1287 1.1.1.8 christos Resource->PinGroupConfig.VendorOffset);
1288 1.1.1.8 christos
1289 1.1.1.8 christos AcpiDmDumpRawDataBuffer (VendorData,
1290 1.1.1.8 christos Resource->PinGroupConfig.VendorLength, Level);
1291 1.1.1.8 christos }
1292 1.1.1.8 christos
1293 1.1.1.8 christos AcpiOsPrintf (")\n");
1294 1.1.1.8 christos }
1295