//********************************************************************** //********************************************************************** //** ** //** (C)Copyright 1985-2009, American Megatrends, Inc. ** //** ** //** All Rights Reserved. ** //** ** //** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 ** //** ** //** Phone: (770)-246-8600 ** //** ** //********************************************************************** //********************************************************************** //********************************************************************** // // $Header: /Alaska/SOURCE/Modules/USBRecovery/EhciPeiBoard.c 1 3/03/09 7:28p Olegi $ // // $Revision: 1 $ // // $Date: 3/03/09 7:28p $ // //********************************************************************** // Revision History // ---------------- // $Log: /Alaska/SOURCE/Modules/USBRecovery/EhciPeiBoard.c $ // // 1 3/03/09 7:28p Olegi //********************************************************************** // //---------------------------------------------------------------------------- // // Name: EhciPeiBoard.c // // Description: This file contains routines that are board specific for // initializing the EHCI controller in the USB Recovery module. // //---------------------------------------------------------------------------- // #include #include #include #include #include #include #include "EhciPei.h" //---------------------------------------------------------------------------- // Porting Steps: // // 1) define/undefine the appropriate southbridge type // 2) define registers and their set/clear bits for each register to be // modified in each controller's PCI configuration space // 3) do not do any generic initialization - programming of BAR and command // register is done generically // //---------------------------------------------------------------------------- // //---------------------------------------------------------------------------- // // Procedure: EhciPeiBoardInit // // Description: // This is a porting hook for board-specific EHCI controller // initialization // // Input: // IN EFI_PEI_SERVICES **PeiServices - // IN EFI_PEI_PCI_CFG_PPI *Pci - // IN EFI_PEI_STALL_PPI *StallPpi - // // Output: // VOID // //---------------------------------------------------------------------------- // EFI_STATUS EhciPeiBoardInit ( IN EFI_PEI_SERVICES **PeiServices, IN EFI_PEI_PCI_CFG_PPI *Pci, IN EFI_PEI_STALL_PPI *StallPpi ) { EFI_STATUS Status = EFI_SUCCESS; return Status; } //********************************************************************** //********************************************************************** //** ** //** (C)Copyright 1985-2009, American Megatrends, Inc. ** //** ** //** All Rights Reserved. ** //** ** //** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 ** //** ** //** Phone: (770)-246-8600 ** //** ** //********************************************************************** //********************************************************************** //**********************************************************************