2007-07-11 08:46:38 +02:00
|
|
|
/** @file
|
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
The EHCI register operation routines.
|
|
|
|
|
2009-02-04 07:56:31 +01:00
|
|
|
Copyright (c) 2007 - 2009, Intel Corporation
|
2007-07-11 08:46:38 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
#include "Ehci.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Read EHCI capability register.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset Capability register address.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@return The register content read.
|
|
|
|
@retval If err, return 0xffff.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EhcReadCapRegister (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Data;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
Status = Ehc->PciIo->Mem.Read (
|
|
|
|
Ehc->PciIo,
|
|
|
|
EfiPciIoWidthUint32,
|
|
|
|
EHC_BAR_INDEX,
|
|
|
|
(UINT64) Offset,
|
|
|
|
1,
|
|
|
|
&Data
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "EhcReadCapRegister: Pci Io read error - %r at %d\n", Status, Offset));
|
2007-07-11 08:46:38 +02:00
|
|
|
Data = 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Read EHCI Operation register.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset The operation register offset.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@return The register content read.
|
|
|
|
@retval If err, return 0xffff.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EhcReadOpReg (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Data;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
ASSERT (Ehc->CapLen != 0);
|
|
|
|
|
|
|
|
Status = Ehc->PciIo->Mem.Read (
|
|
|
|
Ehc->PciIo,
|
|
|
|
EfiPciIoWidthUint32,
|
|
|
|
EHC_BAR_INDEX,
|
|
|
|
(UINT64) (Ehc->CapLen + Offset),
|
|
|
|
1,
|
|
|
|
&Data
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "EhcReadOpReg: Pci Io Read error - %r at %d\n", Status, Offset));
|
2007-07-11 08:46:38 +02:00
|
|
|
Data = 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Write the data to the EHCI operation register.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset EHCI operation register offset.
|
|
|
|
@param Data The data to write.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EhcWriteOpReg (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset,
|
|
|
|
IN UINT32 Data
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
ASSERT (Ehc->CapLen != 0);
|
|
|
|
|
|
|
|
Status = Ehc->PciIo->Mem.Write (
|
|
|
|
Ehc->PciIo,
|
|
|
|
EfiPciIoWidthUint32,
|
|
|
|
EHC_BAR_INDEX,
|
|
|
|
(UINT64) (Ehc->CapLen + Offset),
|
|
|
|
1,
|
|
|
|
&Data
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "EhcWriteOpReg: Pci Io Write error: %r at %d\n", Status, Offset));
|
2007-07-11 08:46:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Set one bit of the operational register while keeping other bits.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset The offset of the operational register.
|
|
|
|
@param Bit The bit mask of the register to set.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EhcSetOpRegBit (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset,
|
|
|
|
IN UINT32 Bit
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Data;
|
|
|
|
|
|
|
|
Data = EhcReadOpReg (Ehc, Offset);
|
|
|
|
Data |= Bit;
|
|
|
|
EhcWriteOpReg (Ehc, Offset, Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Clear one bit of the operational register while keeping other bits.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset The offset of the operational register.
|
|
|
|
@param Bit The bit mask of the register to clear.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EhcClearOpRegBit (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset,
|
|
|
|
IN UINT32 Bit
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Data;
|
|
|
|
|
|
|
|
Data = EhcReadOpReg (Ehc, Offset);
|
|
|
|
Data &= ~Bit;
|
|
|
|
EhcWriteOpReg (Ehc, Offset, Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wait the operation register's bit as specified by Bit
|
2008-07-08 12:26:16 +02:00
|
|
|
to become set (or clear).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Offset The offset of the operation register.
|
|
|
|
@param Bit The bit of the register to wait for.
|
|
|
|
@param WaitToSet Wait the bit to set or clear.
|
|
|
|
@param Timeout The time to wait before abort (in millisecond).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The bit successfully changed by host controller.
|
|
|
|
@retval EFI_TIMEOUT The time out occurred.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcWaitOpRegBit (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Offset,
|
|
|
|
IN UINT32 Bit,
|
|
|
|
IN BOOLEAN WaitToSet,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Index;
|
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
for (Index = 0; Index < Timeout / EHC_SYNC_POLL_INTERVAL + 1; Index++) {
|
2007-07-11 08:46:38 +02:00
|
|
|
if (EHC_REG_BIT_IS_SET (Ehc, Offset, Bit) == WaitToSet) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
gBS->Stall (EHC_SYNC_POLL_INTERVAL);
|
2007-07-11 08:46:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Add support for UEFI Over Legacy (UoL) feature, stop
|
2008-07-08 12:26:16 +02:00
|
|
|
the legacy USB SMI support.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
@param Ehc The EHCI device.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EhcClearLegacySupport (
|
|
|
|
IN USB2_HC_DEV *Ehc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 ExtendCap;
|
|
|
|
EFI_PCI_IO_PROTOCOL *PciIo;
|
|
|
|
UINT32 Value;
|
|
|
|
UINT32 TimeOut;
|
|
|
|
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_INFO, "EhcClearLegacySupport: called to clear legacy support\n"));
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
PciIo = Ehc->PciIo;
|
|
|
|
ExtendCap = (Ehc->HcCapParams >> 8) & 0xFF;
|
|
|
|
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap, 1, &Value);
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap + 0x4, 1, &Value);
|
|
|
|
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap, 1, &Value);
|
|
|
|
Value |= (0x1 << 24);
|
|
|
|
PciIo->Pci.Write (PciIo, EfiPciIoWidthUint32, ExtendCap, 1, &Value);
|
|
|
|
|
|
|
|
TimeOut = 40;
|
2008-07-08 12:26:16 +02:00
|
|
|
while (TimeOut-- != 0) {
|
2007-07-11 08:46:38 +02:00
|
|
|
gBS->Stall (500);
|
|
|
|
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap, 1, &Value);
|
|
|
|
|
|
|
|
if ((Value & 0x01010000) == 0x01000000) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap, 1, &Value);
|
|
|
|
PciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ExtendCap + 0x4, 1, &Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Set door bell and wait it to be ACKed by host controller.
|
|
|
|
This function is used to synchronize with the hardware.
|
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout The time to wait before abort (in millisecond, ms).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS Synchronized with the hardware.
|
|
|
|
@retval EFI_TIMEOUT Time out happened while waiting door bell to set.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcSetAndWaitDoorBell (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINT32 Data;
|
|
|
|
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_IAAD);
|
|
|
|
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_IAA, TRUE, Timeout);
|
|
|
|
|
|
|
|
//
|
|
|
|
// ACK the IAA bit in USBSTS register. Make sure other
|
|
|
|
// interrupt bits are not ACKed. These bits are WC (Write Clean).
|
|
|
|
//
|
|
|
|
Data = EhcReadOpReg (Ehc, EHC_USBSTS_OFFSET);
|
|
|
|
Data &= ~USBSTS_INTACK_MASK;
|
|
|
|
Data |= USBSTS_IAA;
|
|
|
|
|
|
|
|
EhcWriteOpReg (Ehc, EHC_USBSTS_OFFSET, Data);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Clear all the interrutp status bits, these bits
|
2008-07-08 12:26:16 +02:00
|
|
|
are Write-Clean.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EhcAckAllInterrupt (
|
|
|
|
IN USB2_HC_DEV *Ehc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EhcWriteOpReg (Ehc, EHC_USBSTS_OFFSET, USBSTS_INTACK_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Enable the periodic schedule then wait EHC to
|
|
|
|
actually enable it.
|
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout The time to wait before abort (in millisecond, ms).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The periodical schedule is enabled.
|
|
|
|
@retval EFI_TIMEOUT Time out happened while enabling periodic schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcEnablePeriodSchd (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_ENABLE_PERIOD);
|
|
|
|
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_PERIOD_ENABLED, TRUE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Disable periodic schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort (in millisecond, ms).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS Periodic schedule is disabled.
|
|
|
|
@retval EFI_DEVICE_ERROR Fail to disable periodic schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcDisablePeriodSchd (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcClearOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_ENABLE_PERIOD);
|
|
|
|
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_PERIOD_ENABLED, FALSE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Enable asynchrounous schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The EHCI asynchronous schedule is enabled.
|
|
|
|
@return Others Failed to enable the asynchronous scheudle.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcEnableAsyncSchd (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_ENABLE_ASYNC);
|
|
|
|
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_ASYNC_ENABLED, TRUE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Disable asynchrounous schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort (in millisecond, ms).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The asynchronous schedule is disabled.
|
|
|
|
@return Others Failed to disable the asynchronous schedule.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcDisableAsyncSchd (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcClearOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_ENABLE_ASYNC);
|
|
|
|
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_ASYNC_ENABLED, FALSE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Whether Ehc is halted.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval TRUE The controller is halted.
|
|
|
|
@retval FALSE It isn't halted.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EhcIsHalt (
|
|
|
|
IN USB2_HC_DEV *Ehc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EHC_REG_BIT_IS_SET (Ehc, EHC_USBSTS_OFFSET, USBSTS_HALT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Whether system error occurred.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@return TRUE System error happened.
|
|
|
|
@return FALSE No system error.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EhcIsSysError (
|
|
|
|
IN USB2_HC_DEV *Ehc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EHC_REG_BIT_IS_SET (Ehc, EHC_USBSTS_OFFSET, USBSTS_SYS_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Reset the host controller.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort (in millisecond, ms).
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The host controller is reset.
|
|
|
|
@return Others Failed to reset the host.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcResetHC (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Host can only be reset when it is halt. If not so, halt it
|
|
|
|
//
|
|
|
|
if (!EHC_REG_BIT_IS_SET (Ehc, EHC_USBSTS_OFFSET, USBSTS_HALT)) {
|
|
|
|
Status = EhcHaltHC (Ehc, Timeout);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_RESET);
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_RESET, FALSE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Halt the host controller.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The EHCI is halt.
|
|
|
|
@retval EFI_TIMEOUT Failed to halt the controller before Timeout.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcHaltHC (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcClearOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_RUN);
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_HALT, TRUE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-08 12:26:16 +02:00
|
|
|
Set the EHCI to run.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
|
|
|
@param Timeout Time to wait before abort.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@retval EFI_SUCCESS The EHCI is running.
|
|
|
|
@return Others Failed to set the EHCI to run.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcRunHC (
|
|
|
|
IN USB2_HC_DEV *Ehc,
|
|
|
|
IN UINT32 Timeout
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_RUN);
|
|
|
|
Status = EhcWaitOpRegBit (Ehc, EHC_USBSTS_OFFSET, USBSTS_HALT, FALSE, Timeout);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Initialize the HC hardware.
|
2008-07-08 12:26:16 +02:00
|
|
|
EHCI spec lists the five things to do to initialize the hardware:
|
2007-07-11 08:46:38 +02:00
|
|
|
1. Program CTRLDSSEGMENT
|
|
|
|
2. Set USBINTR to enable interrupts
|
|
|
|
3. Set periodic list base
|
|
|
|
4. Set USBCMD, interrupt threshold, frame list size etc
|
|
|
|
5. Write 1 to CONFIGFLAG to route all ports to EHCI
|
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@param Ehc The EHCI device.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
2008-07-08 12:26:16 +02:00
|
|
|
@return EFI_SUCCESS The EHCI has come out of halt state.
|
|
|
|
@return EFI_TIMEOUT Time out happened.
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EhcInitHC (
|
|
|
|
IN USB2_HC_DEV *Ehc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
2009-12-10 01:24:29 +01:00
|
|
|
// This ASSERT crashes the BeagleBoard. There is some issue in the USB stack.
|
|
|
|
// This ASSERT needs to be removed so the BeagleBoard will boot. When we fix
|
|
|
|
// the USB stack we can put this ASSERT back in
|
|
|
|
// ASSERT (EhcIsHalt (Ehc));
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Allocate the periodic frame and associated memeory
|
|
|
|
// management facilities if not already done.
|
|
|
|
//
|
2010-02-28 14:00:58 +01:00
|
|
|
if (Ehc->PeriodFrame != NULL) {
|
2007-07-11 08:46:38 +02:00
|
|
|
EhcFreeSched (Ehc);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = EhcInitSched (Ehc);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2010-02-28 14:00:58 +01:00
|
|
|
// 1. Clear USBINTR to disable all the interrupt. UEFI works by polling
|
2007-07-11 08:46:38 +02:00
|
|
|
//
|
|
|
|
EhcWriteOpReg (Ehc, EHC_USBINTR_OFFSET, 0);
|
|
|
|
|
|
|
|
//
|
2010-02-28 14:00:58 +01:00
|
|
|
// 2. Program periodic frame list, already done in EhcInitSched
|
|
|
|
// 3. Start the Host Controller
|
2007-07-11 08:46:38 +02:00
|
|
|
//
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_USBCMD_OFFSET, USBCMD_RUN);
|
|
|
|
|
|
|
|
//
|
2010-02-28 14:00:58 +01:00
|
|
|
// 4. Set all ports routing to EHC
|
2007-07-11 08:46:38 +02:00
|
|
|
//
|
|
|
|
EhcSetOpRegBit (Ehc, EHC_CONFIG_FLAG_OFFSET, CONFIGFLAG_ROUTE_EHC);
|
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
//
|
|
|
|
// Wait roothub port power stable
|
|
|
|
//
|
|
|
|
gBS->Stall (EHC_ROOT_PORT_RECOVERY_STALL);
|
|
|
|
|
|
|
|
Status = EhcEnablePeriodSchd (Ehc, EHC_GENERIC_TIMEOUT);
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "EhcInitHC: failed to enable period schedule\n"));
|
2007-07-11 08:46:38 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = EhcEnableAsyncSchd (Ehc, EHC_GENERIC_TIMEOUT);
|
2007-07-11 08:46:38 +02:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "EhcInitHC: failed to enable async schedule\n"));
|
2007-07-11 08:46:38 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|