MdeModulePkg: Add UFS (Universal Flash Storage) Stack
It includes 4 drivers: 1. UfsPassThruDxe, which is a UEFI driver and consumes EFI_UFS_HOST_CONTROLLER_PROTOCOL and produces EFI_EXT_SCSI_PASS_THRU_PROTOCOL 2. UfsPciHcDxe, which is specific for pci-based UFS HC implementation and is a UEFI driver to produce EFI_UFS_HOST_CONTROLLER_PROTOCOL. 3. UfsBlockIoPei, which is a PEI driver and consumes EFI_UFS_HOST_CONTROLLER_PPI and produces EFI_PEI_VIRTUAL_BLOCK_IO_PPI. 4. UfsPciHcPei, which is specific for pci-based UFS HC implementation and is a PEI driver to produce EFI_UFS_HOST_CONTROLLER_PPI. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Feng Tian <feng.tian@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17246 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
152
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.c
Normal file
152
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.c
Normal file
@@ -0,0 +1,152 @@
|
||||
/** @file
|
||||
UfsPciHcPei driver is used to provide platform-dependent info, mainly UFS host controller
|
||||
MMIO base, to upper layer UFS drivers.
|
||||
|
||||
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
||||
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 "UfsPciHcPei.h"
|
||||
|
||||
EDKII_UFS_HOST_CONTROLLER_PPI mUfsHostControllerPpi = { GetUfsHcMmioBar };
|
||||
|
||||
EFI_PEI_PPI_DESCRIPTOR mPpiList = {
|
||||
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
||||
&gEdkiiPeiUfsHostControllerPpiGuid,
|
||||
&mUfsHostControllerPpi
|
||||
};
|
||||
|
||||
/**
|
||||
Get the MMIO base address of UFS host controller.
|
||||
|
||||
@param[in] This The protocol instance pointer.
|
||||
@param[in] ControllerId The ID of the UFS host controller.
|
||||
@param[out] MmioBar Pointer to the UFS host controller MMIO base address.
|
||||
|
||||
@retval EFI_SUCCESS The operation succeeds.
|
||||
@retval EFI_INVALID_PARAMETER The parameters are invalid.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetUfsHcMmioBar (
|
||||
IN EDKII_UFS_HOST_CONTROLLER_PPI *This,
|
||||
IN UINT8 ControllerId,
|
||||
OUT UINTN *MmioBar
|
||||
)
|
||||
{
|
||||
UFS_HC_PEI_PRIVATE_DATA *Private;
|
||||
|
||||
if ((This == NULL) || (MmioBar == NULL)) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Private = UFS_HC_PEI_PRIVATE_DATA_FROM_THIS (This);
|
||||
|
||||
if (ControllerId >= Private->TotalUfsHcs) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
*MmioBar = (UINTN)Private->UfsHcPciAddr[ControllerId];
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
The user code starts with this function.
|
||||
|
||||
@param FileHandle Handle of the file being invoked.
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
|
||||
@retval EFI_SUCCESS The driver is successfully initialized.
|
||||
@retval Others Can't initialize the driver.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
InitializeUfsHcPeim (
|
||||
IN EFI_PEI_FILE_HANDLE FileHandle,
|
||||
IN CONST EFI_PEI_SERVICES **PeiServices
|
||||
)
|
||||
{
|
||||
EFI_BOOT_MODE BootMode;
|
||||
EFI_STATUS Status;
|
||||
UINT16 Bus;
|
||||
UINT16 Device;
|
||||
UINT16 Function;
|
||||
UINT32 Size;
|
||||
UINT8 SubClass;
|
||||
UINT8 BaseClass;
|
||||
UFS_HC_PEI_PRIVATE_DATA *Private;
|
||||
|
||||
//
|
||||
// Shadow this PEIM to run from memory
|
||||
//
|
||||
if (!EFI_ERROR (PeiServicesRegisterForShadow (FileHandle))) {
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
Status = PeiServicesGetBootMode (&BootMode);
|
||||
///
|
||||
/// We do not export this in S3 boot path, because it is only for recovery.
|
||||
///
|
||||
if (BootMode == BOOT_ON_S3_RESUME) {
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
Private = (UFS_HC_PEI_PRIVATE_DATA *) AllocateZeroPool (sizeof (UFS_HC_PEI_PRIVATE_DATA));
|
||||
if (Private == NULL) {
|
||||
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for UFS_HC_PEI_PRIVATE_DATA! \n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Private->Signature = UFS_HC_PEI_SIGNATURE;
|
||||
Private->UfsHostControllerPpi = mUfsHostControllerPpi;
|
||||
Private->PpiList = mPpiList;
|
||||
Private->PpiList.Ppi = &Private->UfsHostControllerPpi;
|
||||
|
||||
for (Bus = 0; Bus < 256; Bus++) {
|
||||
for (Device = 0; Device < 32; Device++) {
|
||||
for (Function = 0; Function < 8; Function++) {
|
||||
SubClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0A));
|
||||
BaseClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0B));
|
||||
|
||||
if ((SubClass == 0x09) && (BaseClass == PCI_CLASS_MASS_STORAGE)) {
|
||||
//
|
||||
// Get the Ufs Pci host controller's MMIO region size.
|
||||
//
|
||||
PciAnd16 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_COMMAND_OFFSET), (UINT16)~(EFI_PCI_COMMAND_BUS_MASTER | EFI_PCI_COMMAND_MEMORY_SPACE));
|
||||
PciWrite32 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_BASE_ADDRESSREG_OFFSET), 0xFFFFFFFF);
|
||||
Size = PciRead32 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_BASE_ADDRESSREG_OFFSET));
|
||||
//
|
||||
// Assign resource to the Ufs Pci host controller's MMIO BAR.
|
||||
// Enable the Ufs Pci host controller by setting BME and MSE bits of PCI_CMD register.
|
||||
//
|
||||
PciWrite32 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_BASE_ADDRESSREG_OFFSET), (UINT32)(PcdGet32 (PcdUfsPciHostControllerMmioBase) + Size * Private->TotalUfsHcs));
|
||||
PciOr16 (PCI_LIB_ADDRESS (Bus, Device, Function, PCI_COMMAND_OFFSET), (EFI_PCI_COMMAND_BUS_MASTER | EFI_PCI_COMMAND_MEMORY_SPACE));
|
||||
//
|
||||
// Record the allocated Mmio base address.
|
||||
//
|
||||
Private->UfsHcPciAddr[Private->TotalUfsHcs] = PcdGet32 (PcdUfsPciHostControllerMmioBase) + Size * Private->TotalUfsHcs;
|
||||
Private->TotalUfsHcs++;
|
||||
ASSERT (Private->TotalUfsHcs < MAX_UFS_HCS);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
///
|
||||
/// Install Ufs Host Controller PPI
|
||||
///
|
||||
Status = PeiServicesInstallPpi (&Private->PpiList);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
return Status;
|
||||
}
|
62
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.h
Normal file
62
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/** @file
|
||||
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
||||
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.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _UFS_PCI_HOST_CONTROLLER_PEI_H_
|
||||
#define _UFS_PCI_HOST_CONTROLLER_PEI_H_
|
||||
|
||||
#include <PiPei.h>
|
||||
|
||||
#include <Ppi/MasterBootMode.h>
|
||||
#include <Ppi/UfsHostController.h>
|
||||
|
||||
#include <IndustryStandard/Pci.h>
|
||||
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/PciLib.h>
|
||||
#include <Library/PeiServicesLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
|
||||
#define UFS_HC_PEI_SIGNATURE SIGNATURE_32 ('U', 'F', 'S', 'P')
|
||||
#define MAX_UFS_HCS 8
|
||||
|
||||
typedef struct {
|
||||
UINTN Signature;
|
||||
EDKII_UFS_HOST_CONTROLLER_PPI UfsHostControllerPpi;
|
||||
EFI_PEI_PPI_DESCRIPTOR PpiList;
|
||||
UINTN TotalUfsHcs;
|
||||
UINTN UfsHcPciAddr[MAX_UFS_HCS];
|
||||
} UFS_HC_PEI_PRIVATE_DATA;
|
||||
|
||||
#define UFS_HC_PEI_PRIVATE_DATA_FROM_THIS(a) CR (a, UFS_HC_PEI_PRIVATE_DATA, UfsHostControllerPpi, UFS_HC_PEI_SIGNATURE)
|
||||
|
||||
/**
|
||||
Get the MMIO base address of UFS host controller.
|
||||
|
||||
@param[in] This The protocol instance pointer.
|
||||
@param[in] ControllerId The ID of the UFS host controller.
|
||||
@param[out] MmioBar Pointer to the UFS host controller MMIO base address.
|
||||
|
||||
@retval EFI_SUCCESS The operation succeeds.
|
||||
@retval EFI_INVALID_PARAMETER The parameters are invalid.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetUfsHcMmioBar (
|
||||
IN EDKII_UFS_HOST_CONTROLLER_PPI *This,
|
||||
IN UINT8 ControllerId,
|
||||
OUT UINTN *MmioBar
|
||||
);
|
||||
|
||||
#endif
|
56
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.inf
Normal file
56
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.inf
Normal file
@@ -0,0 +1,56 @@
|
||||
## @file
|
||||
# Component Description File For Universal Flash Storage Pci Host Controller Pei Module.
|
||||
#
|
||||
# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
##
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = UfsPciHcPei
|
||||
MODULE_UNI_FILE = UfsPciHcPei.uni
|
||||
FILE_GUID = 905DC1AD-C44D-4965-98AC-B6B4444BFD65
|
||||
MODULE_TYPE = PEIM
|
||||
VERSION_STRING = 0.9
|
||||
|
||||
ENTRY_POINT = InitializeUfsHcPeim
|
||||
|
||||
#
|
||||
# The following information is for reference only and not required by the build tools.
|
||||
#
|
||||
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
||||
#
|
||||
|
||||
[Sources]
|
||||
UfsPciHcPei.c
|
||||
UfsPciHcPei.h
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
PciLib
|
||||
DebugLib
|
||||
PeiServicesLib
|
||||
MemoryAllocationLib
|
||||
PeimEntryPoint
|
||||
|
||||
[Pcd]
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdUfsPciHostControllerMmioBase ## CONSUMES
|
||||
|
||||
[Ppis]
|
||||
gEdkiiPeiUfsHostControllerPpiGuid ## PRODUCES
|
||||
|
||||
[Depex]
|
||||
gEfiPeiMasterBootModePpiGuid AND gEfiPeiMemoryDiscoveredPpiGuid
|
||||
|
||||
[UserExtensions.TianoCore."ExtraFiles"]
|
||||
UfsPciHcPeiExtra.uni
|
BIN
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.uni
Normal file
BIN
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPei.uni
Normal file
Binary file not shown.
BIN
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPeiExtra.uni
Normal file
BIN
MdeModulePkg/Bus/Pci/UfsPciHcPei/UfsPciHcPeiExtra.uni
Normal file
Binary file not shown.
Reference in New Issue
Block a user