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