]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/UhciDxe/UhciDebug.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / UhciDxe / UhciDebug.h
1 /** @file
2
3 This file contains the definination for host controller debug support routines
4
5 Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _EFI_UHCI_DEBUG_H_
11 #define _EFI_UHCI_DEBUG_H_
12
13 /**
14 Dump the content of QH structure.
15
16 @param QhSw Pointer to software QH structure.
17
18 @return None.
19
20 **/
21 VOID
22 UhciDumpQh (
23 IN UHCI_QH_SW *QhSw
24 );
25
26 /**
27 Dump the content of TD structure.
28
29 @param TdSw Pointer to software TD structure.
30
31 @return None.
32
33 **/
34 VOID
35 UhciDumpTds (
36 IN UHCI_TD_SW *TdSw
37 );
38
39 #endif