]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Bus/Pci/Ehci/Dxe/Debug.c
1. Add NULL QH to set as QH header;
[mirror_edk2.git] / EdkModulePkg / Bus / Pci / Ehci / Dxe / Debug.c
CommitLineData
74c56167 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13\r
14 Debug.c\r
15\r
16Abstract:\r
17\r
18\r
19Revision History\r
20--*/\r
21\r
22\r
23#include "Ehci.h"\r
24\r
4d1fe68e 25\r
26VOID\r
74c56167 27DumpEHCIPortsStatus (\r
28 IN USB2_HC_DEV *HcDev\r
29 )\r
30{\r
31 UINT8 PortNumber;\r
32 UINT8 Index;\r
33 UINT32 Value;\r
34\r
35 ReadEhcCapabiltiyReg (\r
36 HcDev,\r
37 HCSPARAMS,\r
38 &Value\r
39 );\r
40\r
41 PortNumber = (UINT8) (Value & HCSP_NPORTS);\r
42\r
43 for (Index = 0; Index < PortNumber; Index++) {\r
44 ReadEhcOperationalReg (\r
45 HcDev,\r
46 PORTSC + 4 * Index,\r
47 &Value\r
48 );\r
49 DEBUG((gEHCDebugLevel, "Port[%d] = 0x%x\n", Index, Value));\r
50 }\r
4d1fe68e 51\r
52\r
74c56167 53}\r
54\r
55\r