Lines Matching +full:dma +full:- +full:info

3  * Module Name: dmresrcs.c - "Small" Resource Descriptor disassembly
11 * Some or all of this work - Copyright (c) 1999 - 2024, Intel Corp.
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
108 * any of its subsidiaries will export/re-export any technical data, process,
130 * 3. Neither the names of the above-listed copyright holders nor the names
165 * PARAMETERS: Info - Extra resource info
166 * Resource - Pointer to the resource descriptor
167 * Length - Length of the descriptor in bytes
168 * Level - Current source code indentation level
178 ACPI_OP_WALK_INFO *Info, in AcpiDmIrqDescriptor() argument
193 AcpiGbl_HeDecode [ACPI_GET_1BIT_FLAG (Resource->Irq.Flags)], in AcpiDmIrqDescriptor()
194 AcpiGbl_LlDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->Irq.Flags, 3)], in AcpiDmIrqDescriptor()
195 AcpiGbl_ShrDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Irq.Flags, 4)]); in AcpiDmIrqDescriptor()
204 AcpiDmBitList (Resource->Irq.IrqMask); in AcpiDmIrqDescriptor()
212 * PARAMETERS: Info - Extra resource info
213 * Resource - Pointer to the resource descriptor
214 * Length - Length of the descriptor in bytes
215 * Level - Current source code indentation level
219 * DESCRIPTION: Decode a DMA descriptor
225 ACPI_OP_WALK_INFO *Info, in AcpiDmDmaDescriptor() argument
232 AcpiOsPrintf ("DMA (%s, %s, %s, ", in AcpiDmDmaDescriptor()
233 AcpiGbl_TypDecode [ACPI_EXTRACT_2BIT_FLAG (Resource->Dma.Flags, 5)], in AcpiDmDmaDescriptor()
234 AcpiGbl_BmDecode [ACPI_EXTRACT_1BIT_FLAG (Resource->Dma.Flags, 2)], in AcpiDmDmaDescriptor()
235 AcpiGbl_SizDecode [ACPI_GET_2BIT_FLAG (Resource->Dma.Flags)]); in AcpiDmDmaDescriptor()
243 AcpiDmBitList (Resource->Dma.DmaChannelMask); in AcpiDmDmaDescriptor()
251 * PARAMETERS: Info - Extra resource info
252 * Resource - Pointer to the resource descriptor
253 * Length - Length of the descriptor in bytes
254 * Level - Current source code indentation level
264 ACPI_OP_WALK_INFO *Info, in AcpiDmFixedDmaDescriptor() argument
272 Resource->FixedDma.RequestLines, in AcpiDmFixedDmaDescriptor()
273 Resource->FixedDma.Channels); in AcpiDmFixedDmaDescriptor()
275 if (Resource->FixedDma.Width <= 5) in AcpiDmFixedDmaDescriptor()
278 AcpiGbl_DtsDecode [Resource->FixedDma.Width]); in AcpiDmFixedDmaDescriptor()
282 AcpiOsPrintf ("%X /* INVALID DMA WIDTH */, ", in AcpiDmFixedDmaDescriptor()
283 Resource->FixedDma.Width); in AcpiDmFixedDmaDescriptor()
297 * PARAMETERS: Info - Extra resource info
298 * Resource - Pointer to the resource descriptor
299 * Length - Length of the descriptor in bytes
300 * Level - Current source code indentation level
310 ACPI_OP_WALK_INFO *Info, in AcpiDmIoDescriptor() argument
318 AcpiGbl_IoDecode [ACPI_GET_1BIT_FLAG (Resource->Io.Flags)]); in AcpiDmIoDescriptor()
321 AcpiDmDumpInteger16 (Resource->Io.Minimum, "Range Minimum"); in AcpiDmIoDescriptor()
324 AcpiDmDumpInteger16 (Resource->Io.Maximum, "Range Maximum"); in AcpiDmIoDescriptor()
327 AcpiDmDumpInteger8 (Resource->Io.Alignment, "Alignment"); in AcpiDmIoDescriptor()
330 AcpiDmDumpInteger8 (Resource->Io.AddressLength, "Length"); in AcpiDmIoDescriptor()
344 * PARAMETERS: Info - Extra resource info
345 * Resource - Pointer to the resource descriptor
346 * Length - Length of the descriptor in bytes
347 * Level - Current source code indentation level
357 ACPI_OP_WALK_INFO *Info, in AcpiDmFixedIoDescriptor() argument
367 AcpiDmDumpInteger16 (Resource->FixedIo.Address, "Address"); in AcpiDmFixedIoDescriptor()
370 AcpiDmDumpInteger8 (Resource->FixedIo.AddressLength, "Length"); in AcpiDmFixedIoDescriptor()
384 * PARAMETERS: Info - Extra resource info
385 * Resource - Pointer to the resource descriptor
386 * Length - Length of the descriptor in bytes
387 * Level - Current source code indentation level
397 ACPI_OP_WALK_INFO *Info, in AcpiDmStartDependentDescriptor() argument
408 (UINT32) ACPI_GET_2BIT_FLAG (Resource->StartDpf.Flags), in AcpiDmStartDependentDescriptor()
409 (UINT32) ACPI_EXTRACT_2BIT_FLAG (Resource->StartDpf.Flags, 2)); in AcpiDmStartDependentDescriptor()
425 * PARAMETERS: Info - Extra resource info
426 * Resource - Pointer to the resource descriptor
427 * Length - Length of the descriptor in bytes
428 * Level - Current source code indentation level
438 ACPI_OP_WALK_INFO *Info, in AcpiDmEndDependentDescriptor() argument
455 * PARAMETERS: Info - Extra resource info
456 * Resource - Pointer to the resource descriptor
457 * Length - Length of the descriptor in bytes
458 * Level - Current source code indentation level
468 ACPI_OP_WALK_INFO *Info, in AcpiDmVendorSmallDescriptor() argument