data_type large_stringclasses 3
values | source large_stringclasses 29
values | code large_stringlengths 98 49.4M | filepath large_stringlengths 5 161 ⌀ | message large_stringclasses 234
values | commit large_stringclasses 234
values | subject large_stringclasses 418
values | critique large_stringlengths 101 1.26M ⌀ | metadata dict |
|---|---|---|---|---|---|---|---|---|
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcBlockIoPei.h"
//
// Template for EMMC HC Slot Data.
//
EMMC_PEIM_HC_SLOT gEmmcHcSlotTemplate = {
EMMC_PEIM_SLOT_SIG, // Signature
{ ... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcBlockIoPei.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/SdMmcHostController.h>
#include <Ppi/BlockIo.h>
#include <Ppi/BlockIo2.h>
#include <Ppi/IoMmu.h>
#include <Ppi/EndOfPeiPhase.h>
#inclu... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcBlockIoPei.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcBlockIoPei.h"
/**
Allocate a block of memory to be used by the buffer pool.
@param Pages How many pages to allocate.
@return The allocated memory block o... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHcMem.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#define EMMC_PEIM_MEM_BIT(a) ((UINTN)(1 << (a)))
#define EMMC_PEIM_MEM_BIT_IS_SET(Data, Bit) \
((BOOLEAN)(((Data) & EMMC_PEIM_MEM_BIT(Bit)) == EMMC_PEIM_MEM_B... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHcMem.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcBlockIoPei.h"
/**
Read/Write specified EMMC host controller mmio register.
@param[in] Address The address of the mmio register to be read/written.
@par... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHci.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// EMMC Host Controller MMIO Register Offset
//
#define EMMC_HC_SDMA_ADDR 0x00
#define EMMC_HC_ARG2 0x00
#define EMMC_HC_BLK_SIZE 0x04
#d... | MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHci.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for EmmcDxe driver.
Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcDxe.h"
//
// Driver name table
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mEmmcDxeD... | MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
The helper functions for BlockIo and BlockIo2 protocol.
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcDxe.h"
/**
Nonblocking I/O callback function when the event is signaled.
@param[in] Event The Event ... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcBlockIo.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for EmmcDxe Driver.
This file defines common data structures, macro definitions and some module
internal function header files.
Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Reset the Block ... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcBlockIo.h | null | null | null | null | null |
source | edk2 | /** @file
Implement the EFI_DISK_INFO_PROTOCOL interface on EMMC devices.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcDxe.h"
/**
Provides inquiry information for the controller type.
This function is used by the driver ent... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for EFI_DISK_INFO_PROTOCOL interface on EMMC devices.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Provides inquiry information for the controller type.
This function is used by the driver entity to... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.h | null | null | null | null | null |
source | edk2 | /** @file
The EmmcDxe driver is used to manage the EMMC device.
It produces BlockIo, BlockIo2 and StorageSecurity protocols to allow upper layer
access the EMMC device.
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EmmcDxe... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for EmmcDxe Driver.
This file defines common data structures, macro definitions and some module
internal function header files.
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#inc... | MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.h | null | null | null | null | null |
source | edk2 | /** @file
The DMA memory help function.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdBlockIoPei.h"
EDKII_IOMMU_PPI *mIoMmu;
/**
Provides the controller-specific addresses required to access system memory from a
DMA bus mast... | MdeModulePkg/Bus/Sd/SdBlockIoPei/DmaMem.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdBlockIoPei.h"
//
// Template for SD HC Slot Data.
//
SD_PEIM_HC_SLOT gSdHcSlotTemplate = {
SD_PEIM_SLOT_SIG, // Signature
{ ... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdBlockIoPei.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/SdMmcHostController.h>
#include <Ppi/BlockIo.h>
#include <Ppi/BlockIo2.h>
#include <Ppi/IoMmu.h>
#include <Ppi/EndOfPeiPhase.h>
#inclu... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdBlockIoPei.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdBlockIoPei.h"
/**
Allocate a block of memory to be used by the buffer pool.
@param Pages How many pages to allocate.
@return The allocated memory block or ... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHcMem.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#define SD_PEIM_MEM_BIT(a) ((UINTN)(1 << (a)))
#define SD_PEIM_MEM_BIT_IS_SET(Data, Bit) \
((BOOLEAN)(((Data) & SD_PEIM_MEM_BIT(Bit)) == SD_PEIM_MEM_BIT(Bit))... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHcMem.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdBlockIoPei.h"
/**
Read/Write specified SD host controller mmio register.
@param[in] Address The address of the mmio register to be read/written.
@param[i... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHci.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// SD Host Controller MMIO Register Offset
//
#define SD_HC_SDMA_ADDR 0x00
#define SD_HC_ARG2 0x00
#define SD_HC_BLK_SIZE 0x04
#define SD... | MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHci.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for SdDxe driver.
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdDxe.h"
//
// Driver name table
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mSdDxeDriverNameTabl... | MdeModulePkg/Bus/Sd/SdDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
The helper functions for BlockIo and BlockIo2 protocol.
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdDxe.h"
/**
Nonblocking I/O callback function when the event is signaled.
@param[in] Event The Event th... | MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for SdDxe Driver.
This file defines common data structures, macro definitions and some module
internal function header files.
Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Reset the Block De... | MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.h | null | null | null | null | null |
source | edk2 | /** @file
Implement the EFI_DISK_INFO_PROTOCOL interface on SD memory card devices.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdDxe.h"
/**
Provides inquiry information for the controller type.
This function is used by the dr... | MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for EFI_DISK_INFO_PROTOCOL interface on SD memory card devices.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Provides inquiry information for the controller type.
This function is used by the driver... | MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.h | null | null | null | null | null |
source | edk2 | /** @file
The SdDxe driver is used to manage the SD memory card device.
It produces BlockIo and BlockIo2 protocols to allow upper layer
access the SD memory card device.
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SdDxe.... | MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for SdDxe Driver.
This file defines common data structures, macro definitions and some module
internal function header files.
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#inclu... | MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h | null | null | null | null | null |
source | edk2 | /** @file
SpiBus driver
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Protocol/SpiConfiguration.h>
#include <Protocol/SpiHc.h... | MdeModulePkg/Bus/Spi/SpiBus/SpiBus.c | null | null | null | null | null |
source | edk2 | /** @file
SPI bus driver
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiDxe.h>
#include <Library/BaseLib.h>
#include <Protocol/DevicePath.h>
#include <Library/DevicePathLib.h>
#include <Library/BaseMemoryLib.h... | MdeModulePkg/Bus/Spi/SpiBus/SpiBus.h | null | null | null | null | null |
source | edk2 | /** @file
SPI bus DXE driver
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiBootServicesTableLib... | MdeModulePkg/Bus/Spi/SpiBus/SpiBusDxe.c | null | null | null | null | null |
source | edk2 | /** @file
SPI bus SMM driver
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/MmServicesTableLib.h>
#i... | MdeModulePkg/Bus/Spi/SpiBus/SpiBusSmm.c | null | null | null | null | null |
source | edk2 | /** @file
SPI Host Controller shell implementation, as host controller code is platform
specfic.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SpiHc.h"
/**
Assert or deassert the SPI chip select.
This routine is calle... | MdeModulePkg/Bus/Spi/SpiHc/SpiHc.c | null | null | null | null | null |
source | edk2 | /** @file
SPI Host Controller function declarations
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiDxe.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include ... | MdeModulePkg/Bus/Spi/SpiHc/SpiHc.h | null | null | null | null | null |
source | edk2 | /** @file
SPI Host controller entry point for DXE
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/PcdLib.h>
#include <Library/UefiLib.h>
#incl... | MdeModulePkg/Bus/Spi/SpiHc/SpiHcDxe.c | null | null | null | null | null |
source | edk2 | /** @file
SPI Host controller entry point for SMM
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/PcdLib.h>
#include <Library/UefiLib.h>
#incl... | MdeModulePkg/Bus/Spi/SpiHc/SpiHcSmm.c | null | null | null | null | null |
source | edk2 | /** @file
SPI NOR Flash operation functions.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/TimerLib.h>
#incl... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlash.c | null | null | null | null | null |
source | edk2 | /** @file
Definitions of SPI NOR flash operation functions.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiDxe.h>
#include <Protocol/SpiNorFlash.h>
#include <Protocol/SpiIo.h>
#include "SpiNorFlashJedecSfdpInterna... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlash.h | null | null | null | null | null |
source | edk2 | /** @file
SPI NOR Flash JEDEC Serial Flash Discoverable Parameters (SFDP)
common functions.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Revision Reference:
- JEDEC Standard, JESD216F.02
https://www.jedec.org/document_searc... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdp.c | null | null | null | null | null |
source | edk2 | /** @file
SPI NOR Flash JEDEC Serial Flash Discoverable Parameters (SFDP)
DXE driver.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Revision Reference:
- JEDEC Standard, JESD216F.02
https://www.jedec.org/document_search?sear... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpDxe.c | null | null | null | null | null |
source | edk2 | /** @file
SPI NOR flash driver internal definitions.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiDxe.h>
#include <Protocol/SpiNorFlash.h>
#include <Protocol/SpiIo.h>
#include <IndustryStandard/SpiNorFlashJedecS... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpInternal.h | null | null | null | null | null |
source | edk2 | /** @file
SPI NOR Flash JEDEC Serial Flash Discoverable Parameters (SFDP)
SMM driver.
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Revision Reference:
- JEDEC Standard, JESD216F.02
https://www.jedec.org/document_search?sear... | MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpSmm.c | null | null | null | null | null |
source | edk2 | /** @file
The DMA memory help function.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
Copyright (c) 1985 - 2022, American Megatrends International LLC. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsBlockIoPei.h"
EDKII_IOMMU_PPI *mIoMmu;
/**
Provides the controller-... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/DmaMem.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2024, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsBlockIoPei.h"
//
// Template for UFS HC Peim Private Data.
//
UFS_PEIM_HC_PRIVATE_DATA gUfsHcPeimTemplate = {
UFS_PEIM_HC_SIG, // Signature
NULL, ... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2024, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/UfsHostController.h>
#include <Ppi/UfsHostControllerPlatformPpi.h>
#include <Ppi/BlockIo.h>
#include <Ppi/BlockIo2.h>
#include <Ppi/IoM... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
Copyright (c) 1985 - 2022, American Megatrends International LLC. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsBlockIoPei.h"
/**
Allocate a block of memory to be used by the buffer pool.
@param Pages ... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsHcMem.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#define UFS_PEIM_MEM_BIT(a) ((UINTN)(1 << (a)))
#define UFS_PEIM_MEM_BIT_IS_SET(Data, Bit) \
((BOOLEAN)(((Data) & UFS_PEIM_MEM_BIT(Bit)) == UFS_PEIM_MEM_BIT(B... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsHcMem.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2024, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsBlockIoPei.h"
/**
Wait for the value of the specified system memory set to the test value.
@param Address The system memory address to test.
@param Ma... | MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsHci.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsPassThru.h"
//
// EFI Component Name Protocol
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gUfsPassThruComponentName = {
UfsPassThruComponentNameGetDri... | MdeModulePkg/Bus/Ufs/UfsPassThruDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
The implementation of the EFI UFS Device Config Protocol.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsPassThru.h"
/**
Read or write specified device descriptor of a UFS device.
The function is used to read/write U... | MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsDevConfigProtocol.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
Copyright (c) Microsoft Corporation.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UfsPassThru.h"
//
// Template for Ufs Pass Thru private data.
//
UFS_PASS_THRU_PRIVATE_DATA gUfsPassThruTemplate = {
UFS_PASS_... | MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR>
Copyright (c) Microsoft Corporation.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#include <Protocol/ScsiPassThruExt.h>
#include <Protocol/UfsDeviceConfig.h>
#include <Protocol/UfsHostContr... | MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.h | null | null | null | null | null |
source | edk2 | /** @file
UfsPassThruDxe driver is used to produce EFI_EXT_SCSI_PASS_THRU protocol interface
for upper layer application to execute UFS-supported SCSI cmds.
Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
Copyright (c) Microsoft Corporation.<BR>
SPDX-License-Identifier: BSD-2-Clause-Pa... | MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThruHci.c | null | null | null | null | null |
source | edk2 | /** @file
BOT Transportation implementation.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBotPeim.h"
#include "BotPeim.h"
#include "PeiUsbLib.h"
/**
Reset the given usb device.
@param PeiServices The pointer of... | MdeModulePkg/Bus/Usb/UsbBotPei/BotPeim.c | null | null | null | null | null |
source | edk2 | /** @file
BOT Transportation implementation.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/UsbIo.h>
#include <Ppi/BlockIo.h>
// #include <Library/DebugLib.h>
#include <Library/PeimEntryPoint.h>... | MdeModulePkg/Bus/Usb/UsbBotPei/BotPeim.h | null | null | null | null | null |
source | edk2 | /** @file
Pei USB ATAPI command implementations.
Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved.<BR>
Copyright (C) 2022 Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBotPeim.h"
#include "BotPeim.h"
#define MAXSENSEKEY 5
/**
... | MdeModulePkg/Bus/Usb/UsbBotPei/PeiAtapi.c | null | null | null | null | null |
source | edk2 | /** @file
Common Library for PEI USB.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbPeim.h"
#include "PeiUsbLib.h"
/**
Clear a given usb feature.
@param PeiServices General-purpose services that are available to eve... | MdeModulePkg/Bus/Usb/UsbBotPei/PeiUsbLib.c | null | null | null | null | null |
source | edk2 | /** @file
Common Library for PEI USB.
Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// Standard device request and request type
// By [Spec-USB20/Chapter-9.4]
//
#define USB_DEV_GET_STATUS 0x00
#define USB_DEV_GE... | MdeModulePkg/Bus/Usb/UsbBotPei/PeiUsbLib.h | null | null | null | null | null |
source | edk2 | /** @file
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBotPeim.h"
#include "BotPeim.h"
//
// Global function
//
EFI_PEI_NOTIFY_DESCRIPTOR mNotifyList = {
EFI_PEI_PPI_DESCRIPTOR_NOTIFY_DISPATCH | EFI_PEI_PPI_DESCRIPTOR_TERMIN... | MdeModulePkg/Bus/Usb/UsbBotPei/UsbBotPeim.c | null | null | null | null | null |
source | edk2 | /** @file
Usb BOT Peim definition.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/UsbIo.h>
#include <Ppi/BlockIo.h>
#include <Ppi/BlockIo2.h>
#include <Library/DebugLib.h>
#include <IndustrySta... | MdeModulePkg/Bus/Usb/UsbBotPei/UsbBotPeim.h | null | null | null | null | null |
source | edk2 | /** @file
Usb Peim definition.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/UsbIo.h>
#include <Ppi/BlockIo.h>
#include <Ppi/BlockIo2.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemo... | MdeModulePkg/Bus/Usb/UsbBotPei/UsbPeim.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for Usb Bus driver.
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Uefi.h>
#include <Library/UefiLib.h>
/**
Retrieves a Unicode string that is the user readable name of t... | MdeModulePkg/Bus/Usb/UsbBusDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
Usb Bus Driver Binding and Bus IO Protocol.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBus.h"
EFI_USB_IO_PROTOCOL mUsbIoProtocol = {
UsbIoC... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.c | null | null | null | null | null |
source | edk2 | /** @file
Usb Bus Driver Binding and Bus IO Protocol.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#include <Protocol/Usb2HostController.h>
#include <Protocol/UsbIo.h>
#include <Protocol/DevicePath.h>
#i... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h | null | null | null | null | null |
source | edk2 | /** @file
Manage Usb Descriptor List
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBus.h"
/**
Free the interface setting descriptor.
@param Setting The descriptor to free.
**/
VOID
UsbFreeInterfaceDesc (... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.c | null | null | null | null | null |
source | edk2 | /** @file
Manage Usb Descriptor List
Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#define USB_MAX_INTERFACE_SETTING 256
//
// The RequestType in EFI_USB_DEVICE_REQUEST is composed of
// three fields: One bit direction, 2 ... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbDesc.h | null | null | null | null | null |
source | edk2 | /** @file
Usb bus enumeration support.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBus.h"
/**
Return the endpoint descriptor in this interface.
@param UsbIf The interface to search in.
@param EpAdd... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c | null | null | null | null | null |
source | edk2 | /** @file
USB bus enumeration interface.
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// Advance the byte and bit to the next bit, adjust byte accordingly.
//
#define USB_NEXT_BIT(Byte, Bit) \
do { \
... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.h | null | null | null | null | null |
source | edk2 | /** @file
Unified interface for RootHub and Hub.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBus.h"
//
// Array that maps the change bit to feature value which is
// used to clear these change bit. USB HUB API will clear
/... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbHub.c | null | null | null | null | null |
source | edk2 | /** @file
The definition for USB hub.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <IndustryStandard/Usb.h>
#define USB_ENDPOINT_ADDR(EpAddr) ((EpAddr) & 0x7F)
#define USB_ENDPOINT_TYPE(Desc) ((Desc)->Attribut... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbHub.h | null | null | null | null | null |
source | edk2 | /** @file
Wrapper function for usb host controller interface.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbBus.h"
//
// if RemainingDevicePath== NULL, then all Usb child devices in this bus are wanted.
// Use a shor form Us... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbUtility.c | null | null | null | null | null |
source | edk2 | /** @file
Manage Usb Port/Hc/Etc.
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Get the capability of the host controller.
@param UsbBus The usb driver.
@param MaxSpeed The maximum speed this host con... | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbUtility.h | null | null | null | null | null |
source | edk2 | /** @file
Usb Hub Request Support In PEI Phase
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbPeim.h"
#include "HubPeim.h"
#include "PeiUsbLib.h"
/**
Get a given hub port status.
@param PeiServices General-purpose service... | MdeModulePkg/Bus/Usb/UsbBusPei/HubPeim.c | null | null | null | null | null |
source | edk2 | /** @file
Constants definitions for Usb Hub Peim
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// Hub feature numbers
//
#define C_HUB_LOCAL_POWER 0
#define C_HUB_OVER_CURRENT 1
//
// Hub class code & sub class code
//
#d... | MdeModulePkg/Bus/Usb/UsbBusPei/HubPeim.h | null | null | null | null | null |
source | edk2 | /** @file
Common Library for PEI USB
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbPeim.h"
#include "PeiUsbLib.h"
/**
Get a given usb descriptor.
@param PeiServices General-purpose services that are available to ev... | MdeModulePkg/Bus/Usb/UsbBusPei/PeiUsbLib.c | null | null | null | null | null |
source | edk2 | /** @file
Common Library for PEI USB
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// Standard device request and request type
// By [Spec-USB20/Chapter-9.4]
//
#define USB_DEV_GET_STATUS 0x00
#define USB_DEV_GET... | MdeModulePkg/Bus/Usb/UsbBusPei/PeiUsbLib.h | null | null | null | null | null |
source | edk2 | /** @file
The module is used to implement Usb Io PPI interfaces.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbPeim.h"
#include "PeiUsbLib.h"
/**
Submits control transfer to a target USB device.
@param PeiServices ... | MdeModulePkg/Bus/Usb/UsbBusPei/UsbIoPeim.c | null | null | null | null | null |
source | edk2 | /** @file
The module to produce Usb Bus PPI.
Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved.<BR>
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbPeim.h"
#include "HubPeim.h"
#include "PeiUsbLib.h"
//
// UsbIo ... | MdeModulePkg/Bus/Usb/UsbBusPei/UsbPeim.c | null | null | null | null | null |
source | edk2 | /** @file
Usb Peim definition.
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <PiPei.h>
#include <Ppi/Usb2HostController.h>
#include <Ppi/UsbIo.h>
#include <Library/DebugLib.h>
#include <Library/PeimEntryPoint.h>
#inc... | MdeModulePkg/Bus/Usb/UsbBusPei/UsbPeim.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for USB Keyboard driver.
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "KeyBoard.h"
//
// EFI Component Name Protocol
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROT... | MdeModulePkg/Bus/Usb/UsbKbDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
USB Keyboard Driver that manages USB keyboard and produces Simple Text Input
Protocol and Simple Text Input Ex Protocol.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "EfiKey.h"
#include "KeyBoard.h"
//
// USB Keyboard ... | MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for USB Keyboard Driver's Data Structures.
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#include <Protocol/SimpleTextIn.h>
#include <Protocol/SimpleTextInEx.h>
#include <Protocol/HiiDat... | MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.h | null | null | null | null | null |
source | edk2 | /** @file
Helper functions for USB Keyboard Driver.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "KeyBoard.h"
USB_KEYBOARD_LAYOUT_PACK_BIN mUsbKeyboardLayoutBin = {
sizeof (USB_KEYBOARD_LAYOUT_PACK_BIN), // Binary size
//
... | MdeModulePkg/Bus/Usb/UsbKbDxe/KeyBoard.c | null | null | null | null | null |
source | edk2 | /** @file
Function prototype for USB Keyboard Driver.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include "EfiKey.h"
#define USB_KEYBOARD_KEY_COUNT 105
#define USB_KEYBOARD_LANGUAGE_STR_LEN 5 // RFC4646 Langua... | MdeModulePkg/Bus/Usb/UsbKbDxe/KeyBoard.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for USB Mass Storage Driver.
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMass.h"
//
// EFI Component Name Protocol
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_P... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
Definition of USB Mass Storage Class and its value, USB Mass Transport Protocol,
and other common definitions.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#include <IndustryStandard/Scsi.h>
#incl... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMass.h | null | null | null | null | null |
source | edk2 | /** @file
Implementation of the command set of USB Mass Storage Specification
for Bootability, Revision 1.0.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMass.h"
/**
Execute REQUEST SENSE Command to retrieve sense data fro... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBoot.c | null | null | null | null | null |
source | edk2 | /** @file
Definition of the command set of USB Mass Storage Specification
for Bootability, Revision 1.0.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
//
// The opcodes of various USB boot commands:
// INQUIRY/REQUEST_SENSE a... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBoot.h | null | null | null | null | null |
source | edk2 | /** @file
Implementation of the USB mass storage Bulk-Only Transport protocol,
according to USB Mass Storage Class Bulk-Only Transport, Revision 1.0.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMass.h"
//
// Definition of U... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBot.c | null | null | null | null | null |
source | edk2 | /** @file
Definition for the USB mass storage Bulk-Only Transport protocol,
based on the "Universal Serial Bus Mass Storage Class Bulk-Only
Transport" Revision 1.0, September 31, 1999.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragm... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBot.h | null | null | null | null | null |
source | edk2 | /** @file
Implementation of the USB mass storage Control/Bulk/Interrupt transport,
according to USB Mass Storage Class Control/Bulk/Interrupt (CBI) Transport, Revision 1.1.
Notice: it is being obsoleted by the standard body in favor of the BOT
(Bulk-Only Transport).
Copyright (c) 2007 - 2018, Intel Corporation... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassCbi.c | null | null | null | null | null |
source | edk2 | /** @file
Definition for the USB mass storage Control/Bulk/Interrupt (CBI) transport,
according to USB Mass Storage Class Control/Bulk/Interrupt (CBI) Transport, Revision 1.1.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
ext... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassCbi.h | null | null | null | null | null |
source | edk2 | /** @file
This file is used to implement the EFI_DISK_INFO_PROTOCOL interface.
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMass.h"
EFI_DISK_INFO_PROTOCOL gUsbDiskInfoProtocolTemplate = {
EFI_DISK_INFO_USB_INTERFACE_GUID,
... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassDiskInfo.c | null | null | null | null | null |
source | edk2 | /** @file
Header file for EFI_DISK_INFO_PROTOCOL interface.
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
/**
Initialize the installation of DiskInfo protocol.
This function prepares for the installation of DiskInfo protoc... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassDiskInfo.h | null | null | null | null | null |
source | edk2 | /** @file
USB Mass Storage Driver that manages USB Mass Storage Device and produces Block I/O Protocol.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
Copyright (C) 2024 - 2026, Advanced Micro Devices, Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassImpl.c | null | null | null | null | null |
source | edk2 | /** @file
Definitions of functions for Driver Binding Protocol and Block I/O Protocol,
and other internal definitions.
Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#define USB_MASS_SIGNATURE SIGNATURE_32 ('U', 's', 'b', 'M... | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassImpl.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for USB Mouse Absolute Pointer Driver.
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMouseAbsolutePointer.h"
//
// EFI Component Name Protocol
//
GLOBAL_REMOVE_IF_UNREFER... | MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/ComponentName.c | null | null | null | null | null |
source | edk2 | /** @file
Helper functions to parse HID report descriptor and items.
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMouseAbsolutePointer.h"
/**
Get next HID item from report descriptor.
This function retrieves next HID item... | MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/MouseHid.c | null | null | null | null | null |
source | edk2 | /** @file
USB Mouse Driver that manages USB mouse and produces Absolute Pointer Protocol.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMouseAbsolutePointer.h"
EFI_DRIVER_BINDING_PROTOCOL gUsbMouseAbsolutePointerDriverBinding ... | MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointer.c | null | null | null | null | null |
source | edk2 | /** @file
Helper routine and corresponding data struct used by USB Mouse Absolute Pointer Driver.
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#pragma once
#include <Uefi.h>
#include <Protocol/AbsolutePointer.h>
#include <Protocol/UsbIo.h... | MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointer.h | null | null | null | null | null |
source | edk2 | /** @file
UEFI Component Name(2) protocol implementation for USB Mouse driver.
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UsbMouse.h"
//
// EFI Component Name Protocol
//
GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCO... | MdeModulePkg/Bus/Usb/UsbMouseDxe/ComponentName.c | null | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.