/** @file The OHCI driver model and HC protocol routines. Copyright (c) 2004 - 2010, Intel Corporation. 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 "Ohci.h" #include EFI_CPU_ARCH_PROTOCOL *gCpu; EFI_DRIVER_BINDING_PROTOCOL gOhciDriverBinding = { OhciDriverBindingSupported, OhciDriverBindingStart, OhciDriverBindingStop, 0x30, NULL, NULL }; /** Provides software reset for the USB host controller according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param Attributes A bit mask of the reset operation to perform. See below for a list of the supported bit mask values. @return EFI_SUCCESS The reset operation succeeded. @return EFI_INVALID_PARAMETER Attributes is not valid. @return EFI_UNSUPPORTED This type of reset is not currently supported. @return EFI_DEVICE_ERROR Other errors. **/ EFI_STATUS EFIAPI Ohci2Reset ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT16 Attributes ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; EFI_TPL OldTpl; UINT32 UsbCtr; if ((Attributes == EFI_USB_HC_RESET_GLOBAL_WITH_DEBUG) || (Attributes == EFI_USB_HC_RESET_HOST_WITH_DEBUG)) { return EFI_UNSUPPORTED; } Ohc = OHC_FROM_USB2_HC_PROTO (This); OldTpl = gBS->RaiseTPL (OHCI_TPL); #if 1 switch (Attributes) { case EFI_USB_HC_RESET_GLOBAL: // // Stop schedule and set the Global Reset bit in the command register // /* OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); UsbCtr = OhciReadReg(Ohc, HC_CONTROL_OFFSET); UsbCtr &= (1<<9); //all except of RWC is clear OhciWriteReg(Ohc, HC_CONTROL_OFFSET, UsbCtr); gBS->Stall (OHC_ROOT_PORT_RECOVERY_STALL);*/ break; case EFI_USB_HC_RESET_HOST_CONTROLLER: // // Stop schedule and set Host Controller Reset bit to 1 // /* OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); UsbCtr = OhciReadReg(Ohc, HC_CONTROL_OFFSET); UsbCtr &= (1<<9); //all except of RWC is clear OhciWriteReg(Ohc, HC_CONTROL_OFFSET, UsbCtr);*/ break; default: goto ON_INVAILD_PARAMETER; } OhcDumpRegs(Ohc); // // Delete all old transactions on the USB bus, then // reinitialize the frame list // OhciFreeAllAsyncReq (Ohc); OhciDestoryFrameList (Ohc); OhciInitFrameList (Ohc); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; ON_INVAILD_PARAMETER: gBS->RestoreTPL (OldTpl); return EFI_INVALID_PARAMETER; #else switch (Attributes) { case EFI_USB_HC_RESET_GLOBAL: // // Stop schedule and set the Global Reset bit in the command register // OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); OhciSetRegBit (Ohc->PciIo, USBCMD_OFFSET, USBCMD_GRESET); gBS->Stall (OHC_ROOT_PORT_RESET_STALL); // // Clear the Global Reset bit to zero. // OhciClearRegBit (Ohc->PciIo, USBCMD_OFFSET, USBCMD_GRESET); gBS->Stall (OHC_ROOT_PORT_RECOVERY_STALL); break; case EFI_USB_HC_RESET_HOST_CONTROLLER: // // Stop schedule and set Host Controller Reset bit to 1 // OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); OhciSetRegBit (Ohc->PciIo, USBCMD_OFFSET, USBCMD_HCRESET); gBS->Stall (OHC_ROOT_PORT_RECOVERY_STALL); break; default: goto ON_INVAILD_PARAMETER; } // // Delete all old transactions on the USB bus, then // reinitialize the frame list // OhciFreeAllAsyncReq (Ohc); OhciDestoryFrameList (Ohc); OhciInitFrameList (Ohc); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INIT, "---Ohci2Reset()\n")); return EFI_SUCCESS; ON_INVAILD_PARAMETER: gBS->RestoreTPL (OldTpl); return EFI_INVALID_PARAMETER; #endif } /** Retrieves current state of the USB host controller according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param State Variable to receive current device state. @return EFI_SUCCESS The state is returned. @return EFI_INVALID_PARAMETER State is not valid. @return EFI_DEVICE_ERROR Other errors. **/ EFI_STATUS EFIAPI Ohci2GetState ( IN CONST EFI_USB2_HC_PROTOCOL *This, OUT EFI_USB_HC_STATE *State ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; UINT16 UsbSts; UINT16 UsbCmd; if (State == NULL) { return EFI_INVALID_PARAMETER; } Ohc = OHC_FROM_USB2_HC_PROTO (This); #if 1 UsbSts = OhciReadReg (Ohc, HC_CONTROL_OFFSET); UsbSts = (UsbSts>>6) & 0x3; if (UsbSts == 3) { *State = EfiUsbHcStateSuspend; } else if (UsbSts == 2) { *State = EfiUsbHcStateOperational; } else { *State = EfiUsbHcStateHalt; } #else UsbCmd = OhciReadReg (Ohc->PciIo, USBCMD_OFFSET); UsbSts = OhciReadReg (Ohc->PciIo, USBSTS_OFFSET); if ((UsbCmd & USBCMD_EGSM) !=0 ) { *State = EfiUsbHcStateSuspend; } else if ((UsbSts & USBSTS_HCH) != 0) { *State = EfiUsbHcStateHalt; } else { *State = EfiUsbHcStateOperational; } #endif DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; } /** Sets the USB host controller to a specific state according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param State Indicates the state of the host controller that will be set. @return EFI_SUCCESS Host controller was successfully placed in the state. @return EFI_INVALID_PARAMETER State is invalid. @return EFI_DEVICE_ERROR Failed to set the state. **/ EFI_STATUS EFIAPI Ohci2SetState ( IN EFI_USB2_HC_PROTOCOL *This, IN EFI_USB_HC_STATE State ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); EFI_USB_HC_STATE CurState; USB_HC_DEV *Ohc; EFI_TPL OldTpl; EFI_STATUS Status; UINT16 UsbSts; Ohc = OHC_FROM_USB2_HC_PROTO (This); Status = Ohci2GetState (This, &CurState); if (EFI_ERROR (Status)) { return EFI_DEVICE_ERROR; } if (CurState == State) { return EFI_SUCCESS; } Status = EFI_SUCCESS; OldTpl = gBS->RaiseTPL (OHCI_TPL); switch (State) { case EfiUsbHcStateHalt: Status = OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); break; case EfiUsbHcStateOperational: #if 1 UsbSts = OhciReadReg (Ohc, HC_CONTROL_OFFSET); UsbSts &= (1<<9); UsbSts |= (3<<0) | (2<<6); OhciWriteReg (Ohc, HC_CONTROL_OFFSET, UsbSts); OhcDumpRegs(Ohc); #else UsbCmd = OhciReadReg (Ohc->PciIo, USBCMD_OFFSET); if (CurState == EfiUsbHcStateHalt) { // // Set Run/Stop bit to 1, also set the bandwidht reclamation // point to 64 bytes // UsbCmd |= USBCMD_RS | USBCMD_MAXP; OhciWriteReg (Ohc->PciIo, USBCMD_OFFSET, UsbCmd); } else if (CurState == EfiUsbHcStateSuspend) { // // If FGR(Force Global Resume) bit is 0, set it // if ((UsbCmd & USBCMD_FGR) == 0) { UsbCmd |= USBCMD_FGR; OhciWriteReg (Ohc->PciIo, USBCMD_OFFSET, UsbCmd); } // // wait 20ms to let resume complete (20ms is specified by OHCI spec) // gBS->Stall (OHC_FORCE_GLOBAL_RESUME_STALL); // // Write FGR bit to 0 and EGSM(Enter Global Suspend Mode) bit to 0 // UsbCmd &= ~USBCMD_FGR; UsbCmd &= ~USBCMD_EGSM; UsbCmd |= USBCMD_RS; OhciWriteReg (Ohc->PciIo, USBCMD_OFFSET, UsbCmd); } #endif break; case EfiUsbHcStateSuspend: #if 1 Status = EFI_INVALID_PARAMETER; #else Status = Ohci2SetState (This, EfiUsbHcStateHalt); if (EFI_ERROR (Status)) { Status = EFI_DEVICE_ERROR; goto ON_EXIT; } // // Set Enter Global Suspend Mode bit to 1. // UsbCmd = OhciReadReg (Ohc->PciIo, USBCMD_OFFSET); UsbCmd |= USBCMD_EGSM; OhciWriteReg (Ohc->PciIo, USBCMD_OFFSET, UsbCmd); #endif break; default: Status = EFI_INVALID_PARAMETER; break; } ON_EXIT: gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Status; } /** Retrieves capabilities of USB host controller according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param MaxSpeed A pointer to the max speed USB host controller supports. @param PortNumber A pointer to the number of root hub ports. @param Is64BitCapable A pointer to an integer to show whether USB host controller supports 64-bit memory addressing. @return EFI_SUCCESS capabilities were retrieved successfully. @return EFI_INVALID_PARAMETER MaxSpeed or PortNumber or Is64BitCapable is NULL. @return EFI_DEVICE_ERROR An error was encountered. **/ EFI_STATUS EFIAPI Ohci2GetCapability ( IN EFI_USB2_HC_PROTOCOL *This, OUT UINT8 *MaxSpeed, OUT UINT8 *PortNumber, OUT UINT8 *Is64BitCapable ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; UINT32 Offset; UINT16 PortSC; UINT32 Index; Ohc = OHC_FROM_USB2_HC_PROTO (This); if ((NULL == MaxSpeed) || (NULL == PortNumber) || (NULL == Is64BitCapable)) { return EFI_INVALID_PARAMETER; } *MaxSpeed = EFI_USB_SPEED_FULL; *Is64BitCapable = (UINT8) FALSE; *PortNumber = 3; /* for (Index = 0; Index < USB_MAX_ROOTHUB_PORT; Index++) { Offset = HC_PORT_STATUS_OFFSET + Index * 4; PortSC = OhciReadReg (Ohc, Offset); // // Port status's bit 7 is reserved and always returns 1 if // the port number is valid. Intel's UHCI (in EHCI controller) // returns 0 in this bit if port number is invalid. Also, if // PciIo IoRead returns error, 0xFFFF is returned to caller. // if (((PortSC & 0x80) == 0) || (PortSC == 0xFFFF)) { break; } (*PortNumber)++; }*/ Ohc->RootPorts = *PortNumber; DEBUG ((EFI_D_INIT, "Ohci2GetCapability: %d ports\n", (UINT32)Ohc->RootPorts)); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; } /** Retrieves the current status of a USB root hub port according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL. @param PortNumber The port to get status. @param PortStatus A pointer to the current port status bits and port status change bits. @return EFI_SUCCESS status of the USB root hub port was returned in PortStatus. @return EFI_INVALID_PARAMETER PortNumber is invalid. @return EFI_DEVICE_ERROR Can't read register. **/ EFI_STATUS EFIAPI Ohci2GetRootHubPortStatus ( IN CONST EFI_USB2_HC_PROTOCOL *This, IN CONST UINT8 PortNumber, OUT EFI_USB_PORT_STATUS *PortStatus ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; UINT32 Offset; UINT32 PortSC; Ohc = OHC_FROM_USB2_HC_PROTO (This); if (PortStatus == NULL) { return EFI_INVALID_PARAMETER; } if (PortNumber >= Ohc->RootPorts) { return EFI_INVALID_PARAMETER; } Offset = HC_PORT_STATUS_OFFSET + PortNumber * 4; PortStatus->PortStatus = 0; PortStatus->PortChangeStatus = 0; PortSC = OhciReadReg (Ohc, Offset); if ((PortSC & USBPORTSC_CCS) != 0) { PortStatus->PortStatus |= USB_PORT_STAT_CONNECTION; } if ((PortSC & USBPORTSC_PED) != 0) { PortStatus->PortStatus |= USB_PORT_STAT_ENABLE; } if ((PortSC & USBPORTSC_SUSP) != 0) { DEBUG ((EFI_D_INIT, "Ohci2GetRootHubPortStatus: port %d is suspended\n", PortNumber)); PortStatus->PortStatus |= USB_PORT_STAT_SUSPEND; } if ((PortSC & USBPORTSC_PR) != 0) { PortStatus->PortStatus |= USB_PORT_STAT_RESET; } if ((PortSC & USBPORTSC_LSDA) != 0) { PortStatus->PortStatus |= USB_PORT_STAT_LOW_SPEED; } // // CHC will always return one in port owner bit // PortStatus->PortStatus |= USB_PORT_STAT_OWNER; if ((PortSC & USBPORTSC_CSC) != 0) { PortStatus->PortChangeStatus |= USB_PORT_STAT_C_CONNECTION; } if ((PortSC & USBPORTSC_PEDC) != 0) { PortStatus->PortChangeStatus |= USB_PORT_STAT_C_ENABLE; } DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; } /** Sets a feature for the specified root hub port according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL. @param PortNumber Specifies the root hub port whose feature is requested to be set. @param PortFeature Indicates the feature selector associated with the feature set request. @return EFI_SUCCESS PortFeature was set for the root port. @return EFI_INVALID_PARAMETER PortNumber is invalid or PortFeature is invalid. @return EFI_DEVICE_ERROR Can't read register. **/ EFI_STATUS EFIAPI Ohci2SetRootHubPortFeature ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 PortNumber, IN EFI_USB_PORT_FEATURE PortFeature ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; EFI_TPL OldTpl; UINT32 Offset; UINT32 PortSC; UINT32 Command; Ohc = OHC_FROM_USB2_HC_PROTO (This); if (PortNumber >= Ohc->RootPorts) { return EFI_INVALID_PARAMETER; } Offset = HC_PORT_STATUS_OFFSET + PortNumber * 4; OldTpl = gBS->RaiseTPL (OHCI_TPL); PortSC = OhciReadReg (Ohc, Offset); switch (PortFeature) { case EfiUsbPortSuspend: /* Command = OhciReadReg (Ohc, USBCMD_OFFSET); if ((Command & USBCMD_EGSM) == 0) { // // if global suspend is not active, can set port suspend // PortSC &= 0xfff5; PortSC |= USBPORTSC_SUSP; }*/ break; case EfiUsbPortReset: //PortSC &= ~0xFFFF0000; PortSC = USBPORTSC_PR; break; case EfiUsbPortPower: //PortSC &= ~0xFFFF0000; PortSC = USBPORTSC_PPS; break; case EfiUsbPortEnable: //PortSC &= ~0xFFFF0000; PortSC = USBPORTSC_PED; break; default: gBS->RestoreTPL (OldTpl); return EFI_INVALID_PARAMETER; } OhciWriteReg (Ohc, Offset, PortSC); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; } /** Clears a feature for the specified root hub port according to Uefi 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param PortNumber Specifies the root hub port whose feature is requested to be cleared. @param PortFeature Indicates the feature selector associated with the feature clear request. @return EFI_SUCCESS PortFeature was cleared for the USB root hub port. @return EFI_INVALID_PARAMETER PortNumber is invalid or PortFeature is invalid. @return EFI_DEVICE_ERROR Can't read register. **/ EFI_STATUS EFIAPI Ohci2ClearRootHubPortFeature ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 PortNumber, IN EFI_USB_PORT_FEATURE PortFeature ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; EFI_TPL OldTpl; UINT32 Offset; UINT32 PortSC; Ohc = OHC_FROM_USB2_HC_PROTO (This); Ohc = OHC_FROM_USB2_HC_PROTO (This); if (PortNumber >= Ohc->RootPorts) { return EFI_INVALID_PARAMETER; } Offset = HC_PORT_STATUS_OFFSET + PortNumber * 4; OldTpl = gBS->RaiseTPL (OHCI_TPL); PortSC = OhciReadReg (Ohc, Offset); switch (PortFeature) { case EfiUsbPortEnable: //PortSC &= ~0xFFFF0000; PortSC = USBPORTSC_CCS; break; case EfiUsbPortSuspend: PortSC = 0; /* // // Cause a resume on the specified port if in suspend mode. // PortSC &= ~USBPORTSC_SUSP;*/ break; case EfiUsbPortPower: PortSC = 0; //PortSC &= ~0xFFFF0000; // // No action // break; case EfiUsbPortReset: /*PortSC &= ~0xFFFF0000; //iky temporary PortSC |= USBPORTSC_PRSC; OhciWriteReg (Ohc, Offset, PortSC); while(OhciReadReg(Ohc, Offset) & USBPORTSC_PRSC); PortSC = OhciReadReg (Ohc, Offset); PortSC |= USBPORTSC_CSC; PortSC &= ~0xFFFF0000; OhciWriteReg (Ohc, Offset, PortSC); PortSC = OhciReadReg (Ohc, Offset); PortSC &= ~0xFFFF0000; PortSC |= USBPORTSC_PED; //PortSC &= ~USBPORTSC_PR;*/ break; case EfiUsbPortConnectChange: //PortSC &= ~0xFFFF0000; //PortSC |= USBPORTSC_CSC; PortSC = USBPORTSC_CSC; break; case EfiUsbPortEnableChange: //PortSC &= ~0xFFFF0000; //PortSC |= USBPORTSC_PEDC; PortSC = USBPORTSC_PEDC; break; case EfiUsbPortSuspendChange: // // Root hub does not support this // //PortSC &= ~0xFFFF0000; break; case EfiUsbPortOverCurrentChange: // // Root hub does not support this // //PortSC &= ~0xFFFF0000; break; case EfiUsbPortResetChange: // // Root hub does not support this // //PortSC &= ~0xFFFF0000; break; default: gBS->RestoreTPL (OldTpl); return EFI_INVALID_PARAMETER; } OhciWriteReg (Ohc, Offset, PortSC); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; } /** Submits control transfer to a target USB device accroding to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param Request USB device request to send. @param TransferDirection Data direction of the Data stage in control transfer. @param Data Data to transmit/receive in data stage. @param DataLength Length of the data. @param TimeOut Maximum time, in microseconds, for transfer to complete. @param Translator Transaction translator to be used by this device. @param TransferResult Variable to receive the transfer result. @return EFI_SUCCESS The control transfer was completed successfully. @return EFI_OUT_OF_RESOURCES Failed due to lack of resource. @return EFI_INVALID_PARAMETER Some parameters are invalid. @return EFI_TIMEOUT Failed due to timeout. @return EFI_DEVICE_ERROR Failed due to host controller or device error. **/ EFI_STATUS EFIAPI Ohci2ControlTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN EFI_USB_DEVICE_REQUEST *Request, IN EFI_USB_DATA_DIRECTION TransferDirection, IN OUT VOID *Data, IN OUT UINTN *DataLength, IN UINTN TimeOut, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; OHCI_ED_HW *Ed; EFI_TPL OldTpl; EFI_STATUS Status; OHCI_QH_RESULT QhResult; UINT8 PktId; UINT8 *RequestPhy; VOID *RequestMap; UINT8 *DataPhy; VOID *DataMap; BOOLEAN IsSlowDevice; UINTN TransferDataLength; DEBUG((EFI_D_INIT, "+++Ohci2ControlTransfer(DeviceAddr : %d, Data : 0x%p, Datas : %d, Max : %d, Dir : %d)\n", DeviceAddress, Data, *DataLength, MaximumPacketLength, TransferDirection)); Ohc = OHC_FROM_USB2_HC_PROTO (This); Ed = NULL; DataPhy = NULL; DataMap = NULL; RequestPhy = NULL; RequestMap = NULL; IsSlowDevice = (BOOLEAN) ((EFI_USB_SPEED_LOW == DeviceSpeed) ? TRUE : FALSE); // // Parameters Checking // if (Request == NULL || TransferResult == NULL) { DEBUG((EFI_D_ERROR, "FAIL! NULL point\n")); return EFI_INVALID_PARAMETER; } //iky ??? if (IsSlowDevice && (MaximumPacketLength != 8)) { DEBUG((EFI_D_ERROR, "FAIL! not matched MaximumPacketLength1\n")); //MaximumPacketLength = 8; return EFI_INVALID_PARAMETER; } if ((MaximumPacketLength != 8) && (MaximumPacketLength != 16) && (MaximumPacketLength != 32) && (MaximumPacketLength != 64)) { DEBUG((EFI_D_ERROR, "FAIL! not matched MaximumPacketLength2\n")); return EFI_INVALID_PARAMETER; } if ((TransferDirection != EfiUsbNoData) && (Data == NULL || DataLength == NULL)) { DEBUG((EFI_D_ERROR, "FAIL! no DATA\n")); return EFI_INVALID_PARAMETER; } if (TransferDirection == EfiUsbNoData) { TransferDataLength = 0; } else { TransferDataLength = *DataLength; } *TransferResult = EFI_USB_ERR_SYSTEM; Status = EFI_DEVICE_ERROR; // // If errors exist that cause host controller halt, // clear status then return EFI_DEVICE_ERROR. // OhciAckAllInterrupt (Ohc); if (!OhciIsHcWorking (Ohc)) { return EFI_DEVICE_ERROR; } OldTpl = gBS->RaiseTPL (OHCI_TPL); // // Map the Request and data for bus master access, // then create a list of TD for this transfer // Status = OhciMapUserRequest (Ohc, Request, &RequestPhy, &RequestMap); if (EFI_ERROR (Status)) { goto ON_EXIT; } Status = OhciMapUserData (Ohc, TransferDirection, Data, DataLength, &PktId, &DataPhy, &DataMap); if (EFI_ERROR (Status)) { Ohc->PciIo->Unmap (Ohc->PciIo, RequestMap); goto ON_EXIT; } Ed = OhciCreateCtrlTds ( Ohc, DeviceAddress, PktId, (UINT8*)Request, RequestPhy, (UINT8*)Data, DataPhy, TransferDataLength, (UINT8) MaximumPacketLength, IsSlowDevice ); if (Ed == NULL) { Status = EFI_OUT_OF_RESOURCES; goto UNMAP_DATA; } gCpu->FlushDataCache (gCpu, (EFI_PHYSICAL_ADDRESS)(UINTN)Ed, sizeof(OHCI_ED_HW), EfiCpuFlushTypeWriteBackInvalidate); { OHCI_TD_HW *Td = Ed->head_td_ptr; OHCI_TD_SW *Before = NULL; OHCI_TD_SW *Current = NULL; Ohc->CtrlQh = UsbHcAllocateMem (Ohc->MemPool, sizeof(OHCI_TD_SW)); Ohc->CtrlQh->TdHw = NULL; Ohc->CtrlQh->NextTd = NULL; Before = Ohc->CtrlQh; do { Current = UsbHcAllocateMem (Ohc->MemPool, sizeof(OHCI_TD_SW)); Current->TdHw = NULL; Current->NextTd = NULL; Before->NextTd = Current; Before->TdHw = Td; Before->DataLen = (Td->buffer_end - Td->current_buf_ptr + 1); Before = Current; gCpu->FlushDataCache (gCpu, (EFI_PHYSICAL_ADDRESS)(UINTN)Td, sizeof(OHCI_TD_HW), EfiCpuFlushTypeWriteBackInvalidate); } while(Td = Td->next_td); } OhciDumpEd(Ed); #if 1 // // According to the speed of the end point, link // the TD to corrosponding queue head, then check // the execution result // OhciLinkTdToQh (Ohc, Ed, 0); Status = OhciExecuteTransfer (Ohc, Ed, TimeOut, IsSlowDevice, &QhResult); OhciUnlinkTdFromQh (Ohc->CtrlQh, NULL); Ohc->PciIo->Flush (Ohc); *TransferResult = QhResult.Result; if (DataLength != NULL) { *DataLength = QhResult.Complete; } OhciDestoryTds (Ohc, Ohc->CtrlQh); UNMAP_DATA: if(DataMap) { DEBUG((EFI_D_INIT, "Unmap(DataMap)\n")); Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); } if(RequestMap) { DEBUG((EFI_D_INIT, "Unmap(RequestMap)\n")); Ohc->PciIo->Unmap (Ohc->PciIo, RequestMap); } ON_EXIT: gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Status; #else // // According to the speed of the end point, link // the TD to corrosponding queue head, then check // the execution result // OhciLinkTdToQh (Ohc, Ed); Status = OhciExecuteTransfer (Ohc, Ed, TimeOut, IsSlowDevice, &QhResult); OhciUnlinkTdFromQh (Ohc->CtrlQh, TDs); Ohc->PciIo->Flush (Ohc->PciIo); *TransferResult = QhResult.Result; if (DataLength != NULL) { *DataLength = QhResult.Complete; } OhciDestoryTds (Ohc, TDs); UNMAP_DATA: Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); Ohc->PciIo->Unmap (Ohc->PciIo, RequestMap); ON_EXIT: gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Status; #endif } /** Submits bulk transfer to a bulk endpoint of a USB device. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param EndPointAddress Endpoint number and direction. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param DataBuffersNumber Number of data buffers prepared for the transfer. @param Data Array of pointers to the buffers of data. @param DataLength On input, size of the data buffer, On output, actually transferred data size. @param DataToggle On input, data toggle to use; On output, next data toggle. @param TimeOut Maximum time out, in microseconds. @param Translator A pointr to the transaction translator data. @param TransferResult Variable to receive transfer result. @return EFI_SUCCESS The bulk transfer was completed successfully. @return EFI_OUT_OF_RESOURCES Failed due to lack of resource. @return EFI_INVALID_PARAMETER Some parameters are invalid. @return EFI_TIMEOUT Failed due to timeout. @return EFI_DEVICE_ERROR Failed due to host controller or device error. **/ EFI_STATUS EFIAPI Ohci2BulkTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, IN OUT VOID *Data[EFI_USB_MAX_BULK_BUFFER_NUM], IN OUT UINTN *DataLength, IN OUT UINT8 *DataToggle, IN UINTN TimeOut, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); EFI_USB_DATA_DIRECTION Direction; EFI_TPL OldTpl; USB_HC_DEV *Ohc; OHCI_TD_HW *TDs; OHCI_QH_SW *BulkQh; OHCI_QH_RESULT QhResult; EFI_STATUS Status; UINT8 PktId; UINT8 *DataPhy; VOID *DataMap; #if 1 DEBUG((EFI_D_INIT, "+++Ohci2BulkTransfer()\n")); DEBUG((EFI_D_INIT, "---Ohci2BulkTransfer()\n")); #else Ohc = OHC_FROM_USB2_HC_PROTO (This); DataPhy = NULL; DataMap = NULL; if (DeviceSpeed == EFI_USB_SPEED_LOW) { return EFI_INVALID_PARAMETER; } if ((DataLength == NULL) || (*DataLength == 0) || (Data == NULL) || (TransferResult == NULL)) { return EFI_INVALID_PARAMETER; } if ((*DataToggle != 1) && (*DataToggle != 0)) { return EFI_INVALID_PARAMETER; } if ((MaximumPacketLength != 8) && (MaximumPacketLength != 16) && (MaximumPacketLength != 32) && (MaximumPacketLength != 64)) { return EFI_INVALID_PARAMETER; } *TransferResult = EFI_USB_ERR_SYSTEM; Status = EFI_OUT_OF_RESOURCES; // // If has errors that cause host controller halt, // then return EFI_DEVICE_ERROR directly. // OhciAckAllInterrupt (Ohc); if (!OhciIsHcWorking (Ohc->PciIo)) { return EFI_DEVICE_ERROR; } OldTpl = gBS->RaiseTPL (OHCI_TPL); // // Map the source data buffer for bus master access, // then create a list of TDs // if ((EndPointAddress & 0x80) != 0) { Direction = EfiUsbDataIn; } else { Direction = EfiUsbDataOut; } Status = OhciMapUserData (Ohc, Direction, *Data, DataLength, &PktId, &DataPhy, &DataMap); if (EFI_ERROR (Status)) { goto ON_EXIT; } Status = EFI_OUT_OF_RESOURCES; TDs = OhciCreateBulkOrIntTds ( Ohc, DeviceAddress, EndPointAddress, PktId, (UINT8 *)*Data, DataPhy, *DataLength, DataToggle, (UINT8) MaximumPacketLength, FALSE ); if (TDs == NULL) { Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); goto ON_EXIT; } // // Link the TDs to bulk queue head. According to the platfore // defintion of OHCI_NO_BW_RECLAMATION, BulkQh is either configured // to do full speed bandwidth reclamation or not. // BulkQh = Ohc->BulkQh; OhciLinkTdToQh (Ohc, BulkQh, TDs); Status = OhciExecuteTransfer (Ohc, BulkQh, TDs, TimeOut, FALSE, &QhResult); OhciUnlinkTdFromQh (BulkQh, TDs); Ohc->PciIo->Flush (Ohc->PciIo); *TransferResult = QhResult.Result; *DataToggle = QhResult.NextToggle; *DataLength = QhResult.Complete; OhciDestoryTds (Ohc, TDs); Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); ON_EXIT: gBS->RestoreTPL (OldTpl); #endif return Status; } /** Submits an asynchronous interrupt transfer to an interrupt endpoint of a USB device according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param EndPointAddress Endpoint number and direction. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param IsNewTransfer If TRUE, submit a new transfer, if FALSE cancel old transfer. @param DataToggle On input, data toggle to use; On output, next data toggle. @param PollingInterval Interrupt poll rate in milliseconds. @param DataLength On input, size of the data buffer, On output, actually transferred data size. @param Translator A pointr to the transaction translator data. @param CallBackFunction Function to call periodically. @param Context User context. @return EFI_SUCCESS Transfer was submitted. @return EFI_INVALID_PARAMETER Some parameters are invalid. @return EFI_OUT_OF_RESOURCES Failed due to a lack of resources. @return EFI_DEVICE_ERROR Can't read register. **/ EFI_STATUS EFIAPI Ohci2AsyncInterruptTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN BOOLEAN IsNewTransfer, IN OUT UINT8 *DataToggle, IN UINTN PollingInterval, IN UINTN DataLength, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, IN EFI_ASYNC_USB_TRANSFER_CALLBACK CallBackFunction, IN VOID *Context ) { #if 1 USB_HC_DEV *Ohc; OHCI_ED_HW *Ed; BOOLEAN IsSlowDevice; OHCI_TD_HW *IntTds; EFI_TPL OldTpl; EFI_STATUS Status; UINT8 *DataPtr; UINT8 *DataPhy; UINT8 PktId; OHCI_QH_RESULT QhResult; DEBUG((EFI_D_INIT, "+++Ohci2AsyncInterruptTransfer(EP%d)\n", EndPointAddress)); Ohc = OHC_FROM_USB2_HC_PROTO (This); IntTds = NULL; DataPtr = NULL; DataPhy = NULL; IsSlowDevice = (BOOLEAN) ((EFI_USB_SPEED_LOW == DeviceSpeed) ? TRUE : FALSE); if ((EndPointAddress & 0x80) == 0) { DEBUG((EFI_D_ERROR, "FAIL! EndPointAddress ERROR\n")); return EFI_INVALID_PARAMETER; } // // Delete Async interrupt transfer request // if (!IsNewTransfer) { OldTpl = gBS->RaiseTPL (OHCI_TPL); Status = OhciRemoveAsyncReq (Ohc, DeviceAddress, EndPointAddress, DataToggle); gBS->RestoreTPL (OldTpl); return Status; } if (PollingInterval < 1 || PollingInterval > 255) { DEBUG((EFI_D_ERROR, "FAIL! PollingInterval ERROR\n")); return EFI_INVALID_PARAMETER; } if (DataLength == 0) { DEBUG((EFI_D_ERROR, "FAIL! DataLength ERROR\n")); return EFI_INVALID_PARAMETER; } if ((*DataToggle != 1) && (*DataToggle != 0)) { DEBUG((EFI_D_ERROR, "FAIL! DataToggle ERROR\n")); return EFI_INVALID_PARAMETER; } // // If has errors that cause host controller halt, // then return EFI_DEVICE_ERROR directly. // OhciAckAllInterrupt (Ohc); if (!OhciIsHcWorking (Ohc->PciIo)) { return EFI_DEVICE_ERROR; } if ((EndPointAddress & 0x80) == 0) { PktId = OUTPUT_PACKET_ID; } else { PktId = INPUT_PACKET_ID; } // // Allocate and map source data buffer for bus master access. // DataPtr = UsbHcAllocateMem (Ohc->MemPool, DataLength); if (DataPtr == NULL) { return EFI_OUT_OF_RESOURCES; } DataPhy = (UINT8 *) (UINTN) UsbHcGetPciAddressForHostMem (Ohc->MemPool, DataPtr, DataLength); OldTpl = gBS->RaiseTPL (OHCI_TPL); /*Qh = OhciCreateQh (Ohc, PollingInterval); if (Qh == NULL) { Status = EFI_OUT_OF_RESOURCES; goto FREE_DATA; }*/ Ed = OhciCreateBulkOrIntTds ( Ohc, DeviceAddress, EndPointAddress, PktId, DataPtr, DataPhy, DataLength, DataToggle, (UINT8) MaximumPacketLength, IsSlowDevice ); if (Ed == NULL) { Status = EFI_OUT_OF_RESOURCES; DEBUG((EFI_D_ERROR, "FAIL! OhciCreateBulkOrIntTds ERROR\n")); goto DESTORY_QH; } gCpu->FlushDataCache (gCpu, (EFI_PHYSICAL_ADDRESS)(UINTN)Ed, sizeof(OHCI_ED_HW), EfiCpuFlushTypeWriteBackInvalidate); { OHCI_TD_HW *Td = Ed->head_td_ptr; OHCI_TD_SW *Before = NULL; OHCI_TD_SW *Current = NULL; Ohc->IntrQh = UsbHcAllocateMem (Ohc->MemPool, sizeof(OHCI_TD_SW)); Ohc->IntrQh->TdHw = NULL; Ohc->IntrQh->NextTd = NULL; Before = Ohc->IntrQh; do { Current = UsbHcAllocateMem (Ohc->MemPool, sizeof(OHCI_TD_SW)); Current->TdHw = NULL; Current->NextTd = NULL; Before->NextTd = Current; Before->TdHw = Td; Before->TdHw->gtd_info.b.buffer_rounding = 0; Before->Data = Td->current_buf_ptr; Before->DataLen = (Td->buffer_end - Td->current_buf_ptr + 1); Before = Current; gCpu->FlushDataCache (gCpu, (EFI_PHYSICAL_ADDRESS)(UINTN)Td, sizeof(OHCI_TD_HW), EfiCpuFlushTypeWriteBackInvalidate); } while(Td = Td->next_td); } OhciDumpEd(Ed); OhciLinkTdToQh (Ohc, Ed, 1); // // Save QH-TD structures to async Interrupt transfer list, // for monitor interrupt transfer execution routine use. // Status = OhciCreateAsyncReq ( Ohc, Ed, Ohc->IntrQh, DeviceAddress, EndPointAddress, DataLength, PollingInterval, DataPtr, CallBackFunction, Context, IsSlowDevice ); if (EFI_ERROR (Status)) { goto DESTORY_QH; } //OhciLinkQhToFrameList (Ohc, Qh); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INIT, "---Ohci2AsyncInterruptTransfer()\n")); return EFI_SUCCESS; DESTORY_QH: //UsbHcFreeMem (Ohc->MemPool, Qh, sizeof (OHCI_QH_SW)); FREE_DATA: UsbHcFreeMem (Ohc->MemPool, DataPtr, DataLength); Ohc->PciIo->Flush (Ohc->PciIo); gBS->RestoreTPL (OldTpl); #else Ohc = OHC_FROM_USB2_HC_PROTO (This); Qh = NULL; IntTds = NULL; DataPtr = NULL; DataPhy = NULL; IsSlowDevice = (BOOLEAN) ((EFI_USB_SPEED_LOW == DeviceSpeed) ? TRUE : FALSE); if ((EndPointAddress & 0x80) == 0) { return EFI_INVALID_PARAMETER; } // // Delete Async interrupt transfer request // if (!IsNewTransfer) { OldTpl = gBS->RaiseTPL (OHCI_TPL); Status = OhciRemoveAsyncReq (Ohc, DeviceAddress, EndPointAddress, DataToggle); gBS->RestoreTPL (OldTpl); return Status; } if (PollingInterval < 1 || PollingInterval > 255) { return EFI_INVALID_PARAMETER; } if (DataLength == 0) { return EFI_INVALID_PARAMETER; } if ((*DataToggle != 1) && (*DataToggle != 0)) { return EFI_INVALID_PARAMETER; } // // If has errors that cause host controller halt, // then return EFI_DEVICE_ERROR directly. // OhciAckAllInterrupt (Ohc); if (!OhciIsHcWorking (Ohc->PciIo)) { return EFI_DEVICE_ERROR; } if ((EndPointAddress & 0x80) == 0) { PktId = OUTPUT_PACKET_ID; } else { PktId = INPUT_PACKET_ID; } // // Allocate and map source data buffer for bus master access. // DataPtr = UsbHcAllocateMem (Ohc->MemPool, DataLength); if (DataPtr == NULL) { return EFI_OUT_OF_RESOURCES; } DataPhy = (UINT8 *) (UINTN) UsbHcGetPciAddressForHostMem (Ohc->MemPool, DataPtr, DataLength); OldTpl = gBS->RaiseTPL (OHCI_TPL); Qh = OhciCreateQh (Ohc, PollingInterval); if (Qh == NULL) { Status = EFI_OUT_OF_RESOURCES; goto FREE_DATA; } IntTds = OhciCreateBulkOrIntTds ( Ohc, DeviceAddress, EndPointAddress, PktId, DataPtr, DataPhy, DataLength, DataToggle, (UINT8) MaximumPacketLength, IsSlowDevice ); if (IntTds == NULL) { Status = EFI_OUT_OF_RESOURCES; goto DESTORY_QH; } OhciLinkTdToQh (Ohc, Qh, IntTds); // // Save QH-TD structures to async Interrupt transfer list, // for monitor interrupt transfer execution routine use. // Status = OhciCreateAsyncReq ( Ohc, Qh, IntTds, DeviceAddress, EndPointAddress, DataLength, PollingInterval, DataPtr, CallBackFunction, Context, IsSlowDevice ); if (EFI_ERROR (Status)) { goto DESTORY_QH; } OhciLinkQhToFrameList (Ohc, Qh); gBS->RestoreTPL (OldTpl); DEBUG((EFI_D_INIT, "---Ohci2AsyncInterruptTransfer()\n")); return EFI_SUCCESS; DESTORY_QH: UsbHcFreeMem (Ohc->MemPool, Qh, sizeof (OHCI_QH_SW)); FREE_DATA: UsbHcFreeMem (Ohc->MemPool, DataPtr, DataLength); Ohc->PciIo->Flush (Ohc->PciIo); gBS->RestoreTPL (OldTpl); #endif } /** Submits synchronous interrupt transfer to an interrupt endpoint of a USB device according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param EndPointAddress Endpoint number and direction. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param Data Array of pointers to the buffers of data. @param DataLength On input, size of the data buffer, On output, actually transferred data size. @param DataToggle On input, data toggle to use; On output, next data toggle. @param TimeOut Maximum time out, in microseconds. @param Translator A pointr to the transaction translator data. @param TransferResult Variable to receive transfer result. @return EFI_SUCCESS The transfer was completed successfully. @return EFI_OUT_OF_RESOURCES Failed due to lack of resource. @return EFI_INVALID_PARAMETER Some parameters are invalid. @return EFI_TIMEOUT Failed due to timeout. @return EFI_DEVICE_ERROR Failed due to host controller or device error. **/ EFI_STATUS EFIAPI Ohci2SyncInterruptTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN OUT VOID *Data, IN OUT UINTN *DataLength, IN OUT UINT8 *DataToggle, IN UINTN TimeOut, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult ) { EFI_STATUS Status; USB_HC_DEV *Ohc; OHCI_TD_HW *TDs; OHCI_QH_RESULT QhResult; EFI_TPL OldTpl; UINT8 *DataPhy; VOID *DataMap; UINT8 PktId; BOOLEAN IsSlowDevice; #if 1 DEBUG((EFI_D_INIT, "+++Ohci2SyncInterruptTransfer()\n")); DEBUG((EFI_D_INIT, "---Ohci2SyncInterruptTransfer()\n")); #else Ohc = OHC_FROM_USB2_HC_PROTO (This); DataPhy = NULL; DataMap = NULL; TDs = NULL; if (DeviceSpeed == EFI_USB_SPEED_HIGH) { return EFI_INVALID_PARAMETER; } IsSlowDevice = (BOOLEAN) ((EFI_USB_SPEED_LOW == DeviceSpeed) ? TRUE : FALSE); if ((DataLength == NULL) || (Data == NULL) || (TransferResult == NULL)) { return EFI_INVALID_PARAMETER; } if ((EndPointAddress & 0x80) == 0) { return EFI_INVALID_PARAMETER; } if ((*DataToggle != 1) && (*DataToggle != 0)) { return EFI_INVALID_PARAMETER; } if ((*DataLength == 0) || (MaximumPacketLength > 64)) { return EFI_INVALID_PARAMETER; } if (IsSlowDevice && (MaximumPacketLength > 8)) { return EFI_INVALID_PARAMETER; } *TransferResult = EFI_USB_ERR_SYSTEM; Status = EFI_DEVICE_ERROR; OhciAckAllInterrupt (Ohc); if (!OhciIsHcWorking (Ohc->PciIo)) { return Status; } OldTpl = gBS->RaiseTPL (OHCI_TPL); // // Map the source data buffer for bus master access. // Create Tds list, then link it to the OHC's interrupt list // Status = OhciMapUserData ( Ohc, EfiUsbDataIn, Data, DataLength, &PktId, &DataPhy, &DataMap ); if (EFI_ERROR (Status)) { goto ON_EXIT; } TDs = OhciCreateBulkOrIntTds ( Ohc, DeviceAddress, EndPointAddress, PktId, (UINT8 *)Data, DataPhy, *DataLength, DataToggle, (UINT8) MaximumPacketLength, IsSlowDevice ); if (TDs == NULL) { Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); Status = EFI_OUT_OF_RESOURCES; goto ON_EXIT; } OhciLinkTdToQh (Ohc, Ohc->SyncIntQh, TDs); Status = OhciExecuteTransfer (Ohc, Ohc->SyncIntQh, TDs, TimeOut, IsSlowDevice, &QhResult); OhciUnlinkTdFromQh (Ohc->SyncIntQh, TDs); Ohc->PciIo->Flush (Ohc->PciIo); *TransferResult = QhResult.Result; *DataToggle = QhResult.NextToggle; *DataLength = QhResult.Complete; OhciDestoryTds (Ohc, TDs); Ohc->PciIo->Unmap (Ohc->PciIo, DataMap); ON_EXIT: gBS->RestoreTPL (OldTpl); #endif return Status; } /** Submits isochronous transfer to a target USB device according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param EndPointAddress Endpoint number and direction. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param DataBuffersNumber Number of data buffers prepared for the transfer. @param Data Array of pointers to the buffers of data. @param DataLength On input, size of the data buffer, On output, actually transferred data size. @param Translator A pointr to the transaction translator data. @param TransferResult Variable to receive transfer result. @return EFI_UNSUPPORTED **/ EFI_STATUS EFIAPI Ohci2IsochronousTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, IN OUT VOID *Data[EFI_USB_MAX_ISO_BUFFER_NUM], IN UINTN DataLength, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult ) { DEBUG((EFI_D_INIT, "+++Ohci2IsochronousTransfer()\n")); DEBUG((EFI_D_INIT, "---Ohci2IsochronousTransfer()\n")); return EFI_UNSUPPORTED; } /** Submits Async isochronous transfer to a target USB device according to UEFI 2.0 spec. @param This A pointer to the EFI_USB2_HC_PROTOCOL instance. @param DeviceAddress Target device address. @param EndPointAddress Endpoint number and direction. @param DeviceSpeed Device speed. @param MaximumPacketLength Maximum packet size of the target endpoint. @param DataBuffersNumber Number of data buffers prepared for the transfer. @param Data Array of pointers to the buffers of data. @param DataLength On input, size of the data buffer, On output, actually transferred data size. @param Translator A pointr to the transaction translator data. @param IsochronousCallBack Function to call when the transfer complete. @param Context Pass to the call back function as parameter. @return EFI_UNSUPPORTED **/ EFI_STATUS EFIAPI Ohci2AsyncIsochronousTransfer ( IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, IN OUT VOID *Data[EFI_USB_MAX_ISO_BUFFER_NUM], IN UINTN DataLength, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, IN EFI_ASYNC_USB_TRANSFER_CALLBACK IsochronousCallBack, IN VOID *Context ) { DEBUG((EFI_D_INIT, "+++Ohci2AsyncIsochronousTransfer()\n")); DEBUG((EFI_D_INIT, "---Ohci2AsyncIsochronousTransfer()\n")); return EFI_UNSUPPORTED; } /** Entry point for EFI drivers. @param ImageHandle EFI_HANDLE. @param SystemTable EFI_SYSTEM_TABLE. @retval EFI_SUCCESS Driver is successfully loaded. @return Others Failed. **/ EFI_STATUS EFIAPI OhciDriverEntryPoint ( IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable ) { EFI_STATUS status; DEBUG((EFI_D_INIT, "+++OhciDriverEntryPoint()\n")); status = EfiLibInstallDriverBindingComponentName2 ( ImageHandle, SystemTable, &gOhciDriverBinding, ImageHandle, &gOhciComponentName, &gOhciComponentName2 ); DEBUG((EFI_D_INIT, "---OhciDriverEntryPoint(%r)\n", status)); return status; } /** Test to see if this driver supports ControllerHandle. Any ControllerHandle that has UsbHcProtocol installed will be supported. @param This Protocol instance pointer. @param Controller Handle of device to test. @param RemainingDevicePath Not used. @return EFI_SUCCESS This driver supports this device. @return EFI_UNSUPPORTED This driver does not support this device. **/ EFI_STATUS EFIAPI OhciDriverBindingSupported ( IN EFI_DRIVER_BINDING_PROTOCOL *This, IN EFI_HANDLE Controller, IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); EFI_STATUS OpenStatus; EFI_STATUS Status; EFI_PCI_IO_PROTOCOL *PciIo; USB_CLASSC UsbClassCReg; // // Test whether there is PCI IO Protocol attached on the controller handle. // OpenStatus = gBS->OpenProtocol ( Controller, &gEfiPciIoProtocolGuid, (VOID **) &PciIo, This->DriverBindingHandle, Controller, EFI_OPEN_PROTOCOL_BY_DRIVER ); if (EFI_ERROR (OpenStatus)) { DEBUG((EFI_D_ERROR, "--%a(OpenProtocol Error):%d\n", __FUNCTION__, __LINE__)); return OpenStatus; } Status = PciIo->Pci.Read ( PciIo, EfiPciIoWidthUint8, PCI_CLASSCODE_OFFSET, sizeof (USB_CLASSC) / sizeof (UINT8), &UsbClassCReg ); if (EFI_ERROR (Status)) { DEBUG((EFI_D_ERROR, "--%a(Pci.Read Error):%d\n", __FUNCTION__, __LINE__)); Status = EFI_UNSUPPORTED; goto ON_EXIT; } // // Test whether the controller belongs to OHCI type // if ((UsbClassCReg.BaseCode != PCI_CLASS_SERIAL) || (UsbClassCReg.SubClassCode != PCI_CLASS_SERIAL_USB) || (UsbClassCReg.ProgInterface != PCI_IF_OHCI) ) { DEBUG ((EFI_D_ERROR, "FAIL! INTERFACE IS NOT OHCI(%X, %X, %X, %X, %X, %X)\n", UsbClassCReg.BaseCode, PCI_CLASS_SERIAL, UsbClassCReg.SubClassCode, PCI_CLASS_SERIAL_USB, UsbClassCReg.ProgInterface, PCI_IF_OHCI )); Status = EFI_UNSUPPORTED; } ON_EXIT: gBS->CloseProtocol ( Controller, &gEfiPciIoProtocolGuid, This->DriverBindingHandle, Controller ); DEBUG((EFI_D_INIT, "OhciDriverBindingSupported(%r)\n", Status)); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Status; } /** Allocate and initialize the empty OHCI device. @param PciIo The PCIIO to use. @param OriginalPciAttributes The original PCI attributes. @return Allocated OHCI device. If err, return NULL. **/ USB_HC_DEV * OhciAllocateDev ( IN EFI_PCI_IO_PROTOCOL *PciIo, IN UINT64 OriginalPciAttributes ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; EFI_STATUS Status; UINT32 i; Ohc = AllocateZeroPool (sizeof (USB_HC_DEV)); if (Ohc == NULL) { return NULL; } // // This driver supports both USB_HC_PROTOCOL and USB2_HC_PROTOCOL. // USB_HC_PROTOCOL is for EFI 1.1 backward compability. // Ohc->Signature = USB_HC_DEV_SIGNATURE; Ohc->Usb2Hc.GetCapability = Ohci2GetCapability; Ohc->Usb2Hc.Reset = Ohci2Reset; Ohc->Usb2Hc.GetState = Ohci2GetState; Ohc->Usb2Hc.SetState = Ohci2SetState; Ohc->Usb2Hc.ControlTransfer = Ohci2ControlTransfer; Ohc->Usb2Hc.BulkTransfer = Ohci2BulkTransfer; Ohc->Usb2Hc.AsyncInterruptTransfer = Ohci2AsyncInterruptTransfer; Ohc->Usb2Hc.SyncInterruptTransfer = Ohci2SyncInterruptTransfer; Ohc->Usb2Hc.IsochronousTransfer = Ohci2IsochronousTransfer; Ohc->Usb2Hc.AsyncIsochronousTransfer = Ohci2AsyncIsochronousTransfer; Ohc->Usb2Hc.GetRootHubPortStatus = Ohci2GetRootHubPortStatus; Ohc->Usb2Hc.SetRootHubPortFeature = Ohci2SetRootHubPortFeature; Ohc->Usb2Hc.ClearRootHubPortFeature = Ohci2ClearRootHubPortFeature; Ohc->Usb2Hc.MajorRevision = 0x1; Ohc->Usb2Hc.MinorRevision = 0x1; Ohc->Destory = NULL; Ohc->PciIo = PciIo; Ohc->OriginalPciAttributes = OriginalPciAttributes; Ohc->MemPool = UsbHcInitMemPool (PciIo, TRUE, 0); if (Ohc->MemPool == NULL) { Status = EFI_OUT_OF_RESOURCES; goto ON_ERROR; } InitializeListHead (&Ohc->AsyncIntList); Status = gBS->CreateEvent ( EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK, OhciMonitorAsyncReqList, Ohc, &Ohc->AsyncIntMonitor ); if (EFI_ERROR (Status)) { UsbHcFreeMemPool (Ohc->MemPool); goto ON_ERROR; } for(i=0; i<15; ++i) { Ohc->EdHw[i] = OhciCreateEd(Ohc, 0, 0, 0, 0); } DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Ohc; ON_ERROR: FreePool (Ohc); return NULL; } /** Free the OHCI device and release its associated resources. @param Ohc The OHCI device to release. **/ VOID OhciFreeDev ( IN USB_HC_DEV *Ohc ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); if (Ohc->AsyncIntMonitor != NULL) { gBS->CloseEvent (Ohc->AsyncIntMonitor); } if (Ohc->ExitBootServiceEvent != NULL) { gBS->CloseEvent (Ohc->ExitBootServiceEvent); } if (Ohc->MemPool != NULL) { UsbHcFreeMemPool (Ohc->MemPool); } if (Ohc->CtrlNameTable != NULL) { FreeUnicodeStringTable (Ohc->CtrlNameTable); } FreePool (Ohc); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); } /** Uninstall all Ohci Interface. @param Controller Controller handle. @param This Protocol instance pointer. **/ VOID OhciCleanDevUp ( IN EFI_HANDLE Controller, IN EFI_USB2_HC_PROTOCOL *This ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; // // Uninstall the USB_HC and USB_HC2 protocol, then disable the controller // Ohc = OHC_FROM_USB2_HC_PROTO (This); OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); gBS->UninstallProtocolInterface ( Controller, &gEfiUsb2HcProtocolGuid, &Ohc->Usb2Hc ); OhciFreeAllAsyncReq (Ohc); OhciDestoryFrameList (Ohc); // // Restore original PCI attributes // Ohc->PciIo->Attributes ( Ohc->PciIo, EfiPciIoAttributeOperationSet, Ohc->OriginalPciAttributes, NULL ); OhciFreeDev (Ohc); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); } /** One notified function to stop the Host Controller when gBS->ExitBootServices() called. @param Event Pointer to this event @param Context Event hanlder private data **/ VOID EFIAPI OhcExitBootService ( EFI_EVENT Event, VOID *Context ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); USB_HC_DEV *Ohc; Ohc = (USB_HC_DEV *) Context; // // Stop the Host Controller // OhciStopHc (Ohc, OHC_GENERIC_TIMEOUT); // // Reset the Host Controller // OhciSetRegBit (Ohc->PciIo, USBCMD_OFFSET, USBCMD_HCRESET); gBS->Stall (OHC_ROOT_PORT_RECOVERY_STALL); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); } /** Starting the Usb OHCI Driver. @param This Protocol instance pointer. @param Controller Handle of device to test. @param RemainingDevicePath Not used. @retval EFI_SUCCESS This driver supports this device. @retval EFI_UNSUPPORTED This driver does not support this device. @retval EFI_DEVICE_ERROR This driver cannot be started due to device Error. EFI_OUT_OF_RESOURCES- Failed due to resource shortage. **/ EFI_STATUS EFIAPI OhciDriverBindingStart ( IN EFI_DRIVER_BINDING_PROTOCOL *This, IN EFI_HANDLE Controller, IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); EFI_STATUS Status; EFI_PCI_IO_PROTOCOL *PciIo; USB_HC_DEV *Ohc; UINT64 Supports; UINT64 OriginalPciAttributes; BOOLEAN PciAttributesSaved; UINT32 CmdStatus; UINT32 Buffer; // // Open PCIIO, then enable the EHC device and turn off emulation // Ohc = NULL; Status = gBS->OpenProtocol ( Controller, &gEfiPciIoProtocolGuid, (VOID **) &PciIo, This->DriverBindingHandle, Controller, EFI_OPEN_PROTOCOL_BY_DRIVER ); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "FAIL! OpenProtocol\n")); return Status; } PciAttributesSaved = FALSE; // // Save original PCI attributes // Status = PciIo->Attributes ( PciIo, EfiPciIoAttributeOperationGet, 0, &OriginalPciAttributes ); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "FAIL! Attributes\n")); goto CLOSE_PCIIO; } PciAttributesSaved = TRUE; Status = PciIo->Attributes ( PciIo, EfiPciIoAttributeOperationSupported, 0, &Supports ); if (!EFI_ERROR (Status)) { Supports &= EFI_PCI_DEVICE_ENABLE; Status = PciIo->Attributes ( PciIo, EfiPciIoAttributeOperationEnable, Supports, NULL ); } if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "OhcDriverBindingStart: failed to enable controller\n")); goto CLOSE_PCIIO; } gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **)&gCpu); Ohc = OhciAllocateDev (PciIo, OriginalPciAttributes); if (Ohc == NULL) { DEBUG ((EFI_D_ERROR, "FAIL OhciAllocateDev \n")); Status = EFI_OUT_OF_RESOURCES; goto CLOSE_PCIIO; } DEBUG ((EFI_D_ERROR, "OHCI SetTimer\n")); Status = gBS->SetTimer ( Ohc->AsyncIntMonitor, TimerPeriodic, OHC_ASYNC_POLL_INTERVAL ); if (EFI_ERROR (Status)) { goto FREE_OHC; } // // Install USB2_HC_PROTOCOL // Status = gBS->InstallMultipleProtocolInterfaces ( &Controller, &gEfiUsb2HcProtocolGuid, &Ohc->Usb2Hc, NULL ); if (EFI_ERROR (Status)) { goto FREE_OHC; } // // Create event to stop the HC when exit boot service. // Status = gBS->CreateEventEx ( EVT_NOTIFY_SIGNAL, TPL_NOTIFY, OhcExitBootService, Ohc, &gEfiEventExitBootServicesGuid, &Ohc->ExitBootServiceEvent ); if (EFI_ERROR (Status)) { goto UNINSTALL_USBHC; } // // Install the component name protocol // Ohc->CtrlNameTable = NULL; AddUnicodeString2 ( "eng", gOhciComponentName.SupportedLanguages, &Ohc->CtrlNameTable, L"Usb Universal Host Controller", TRUE ); AddUnicodeString2 ( "en", gOhciComponentName2.SupportedLanguages, &Ohc->CtrlNameTable, L"Usb Universal Host Controller", FALSE ); // // Start the OHCI hardware, also set its reclamation point to 64 bytes // //take ownership // OhcDumpRegs(Ohc); CmdStatus = OhciReadReg(Ohc, HC_COM_STATUS_OFFSET); OhciWriteReg(Ohc, HC_COM_STATUS_OFFSET, (CmdStatus | (1<<3))); do { gBS->Stall(1000); CmdStatus = OhciReadReg(Ohc, HC_COM_STATUS_OFFSET); } while((CmdStatus & (1<<3))); //interrupt disable OhciWriteReg(Ohc, HC_INT_DISABLE_OFFSET, 0xFFFFFFFF); //interrupt status clear CmdStatus = OhciReadReg(Ohc, HC_INT_STATUS_OFFSET); OhciWriteReg(Ohc, HC_INT_STATUS_OFFSET, CmdStatus); //frame interval CmdStatus = OhciReadReg(Ohc, HC_FMINTERVAL_OFFSET); CmdStatus &= 0x8000FFFF; CmdStatus |= (0x800<<16); //256*8 OhciWriteReg(Ohc, HC_FMINTERVAL_OFFSET, CmdStatus); //set hcca base // // Allocate and Init Host Controller's Frame List Entry // #if 1 Buffer = UsbHcAllocateMem (Ohc->MemPool, sizeof(OHCI_HCCA)); ZeroMem (Buffer, sizeof(OHCI_HCCA)); OhciWriteReg(Ohc, HC_HCCA_OFFSET, (UINT32)Buffer); #else Status = OhciInitFrameList (Ohc); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "FAIL OhciInitFrameList\n")); Status = EFI_OUT_OF_RESOURCES; goto FREE_OHC; } #endif //Set opertional state CmdStatus = OhciReadReg(Ohc, HC_CONTROL_OFFSET); CmdStatus &= ~(3<<6); CmdStatus |= (2<<6); OhciWriteReg(Ohc, HC_CONTROL_OFFSET, CmdStatus); //setPowerSwitchingMode off CmdStatus = OhciReadReg(Ohc, HC_RH_DESCRIPTORA_OFFSET); CmdStatus &= ~(1<<8); OhciWriteReg(Ohc, HC_RH_DESCRIPTORA_OFFSET, CmdStatus); //Set global power CmdStatus = OhciReadReg(Ohc, HC_RH_STATUS_OFFSET); CmdStatus |= (1<<16); OhciWriteReg(Ohc, HC_RH_STATUS_OFFSET, CmdStatus); OhcDumpRegs(Ohc); DEBUG((EFI_D_INFO, "--%a(EFI_SUCCESS):%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; UNINSTALL_USBHC: gBS->UninstallMultipleProtocolInterfaces ( Controller, &gEfiUsb2HcProtocolGuid, &Ohc->Usb2Hc, NULL ); FREE_OHC: OhciFreeDev (Ohc); CLOSE_PCIIO: if (PciAttributesSaved) { // // Restore original PCI attributes // PciIo->Attributes ( PciIo, EfiPciIoAttributeOperationSet, OriginalPciAttributes, NULL ); } gBS->CloseProtocol ( Controller, &gEfiPciIoProtocolGuid, This->DriverBindingHandle, Controller ); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return Status; } /** Stop this driver on ControllerHandle. Support stoping any child handles created by this driver. @param This Protocol instance pointer. @param Controller Handle of device to stop driver on. @param NumberOfChildren Number of Children in the ChildHandleBuffer. @param ChildHandleBuffer List of handles for the children we need to stop. @return EFI_SUCCESS @return others **/ EFI_STATUS EFIAPI OhciDriverBindingStop ( IN EFI_DRIVER_BINDING_PROTOCOL *This, IN EFI_HANDLE Controller, IN UINTN NumberOfChildren, IN EFI_HANDLE *ChildHandleBuffer ) { DEBUG((EFI_D_INFO, "++%a:%d\n", __FUNCTION__, __LINE__)); EFI_USB2_HC_PROTOCOL *Usb2Hc; EFI_STATUS Status; Status = gBS->OpenProtocol ( Controller, &gEfiUsb2HcProtocolGuid, (VOID **) &Usb2Hc, This->DriverBindingHandle, Controller, EFI_OPEN_PROTOCOL_GET_PROTOCOL ); // // Test whether the Controller handler passed in is a valid // Usb controller handle that should be supported, if not, // return the error status directly // if (EFI_ERROR (Status)) { return Status; } OhciCleanDevUp (Controller, Usb2Hc); gBS->CloseProtocol ( Controller, &gEfiPciIoProtocolGuid, This->DriverBindingHandle, Controller ); DEBUG((EFI_D_INFO, "--%a:%d\n", __FUNCTION__, __LINE__)); return EFI_SUCCESS; }