From ed838d0c5ec4d4f2f1c1898fff1c6c619ff46352 Mon Sep 17 00:00:00 2001 From: vanjeff Date: Thu, 12 Jul 2007 17:31:28 +0000 Subject: 1. Import UsbKbDxe and UsbMouseDxe into MdeModulePkg 2. Updated UefiUsbLib git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3216 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf | 121 +++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf (limited to 'MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf') diff --git a/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf b/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf new file mode 100644 index 0000000000..dfe7a2cabf --- /dev/null +++ b/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf @@ -0,0 +1,121 @@ +#/** @file +# Component name for module UsbKb +# +# FIX ME! +# Copyright (c) 2006, Intel Corporation. All right reserved. +# +# 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. +# +# +#**/ + +################################################################################ +# +# Defines Section - statements that will be processed to create a Makefile. +# +################################################################################ +[Defines] + INF_VERSION = 0x00010005 + BASE_NAME = UsbKbDxe + FILE_GUID = 2D2E62CF-9ECF-43b7-8219-94E7FC713DFE + MODULE_TYPE = DXE_DRIVER + VERSION_STRING = 1.0 + EDK_RELEASE_VERSION = 0x00020000 + EFI_SPECIFICATION_VERSION = 0x00020000 + + ENTRY_POINT = USBKeyboardDriverBindingEntryPoint + +# +# The following information is for reference only and not required by the build tools. +# +# VALID_ARCHITECTURES = IA32 X64 IPF EBC +# + +################################################################################ +# +# Sources Section - list of files that are required for the build to succeed. +# +################################################################################ + +[Sources.common] + efikey.c + efikey.h + keyboard.c + ComponentName.c + keyboard.h + +################################################################################ +# +# Package Dependency Section - list of Package files that are required for +# this module. +# +################################################################################ + +[Packages] + MdePkg/MdePkg.dec + MdeModulePkg/MdeModulePkg.dec + + +################################################################################ +# +# Library Class Section - list of Library Classes that are required for +# this module. +# +################################################################################ + +[LibraryClasses] + MemoryAllocationLib + UefiLib + UefiBootServicesTableLib + UefiDriverEntryPoint + UefiRuntimeServicesTableLib + BaseMemoryLib + ReportStatusCodeLib + DebugLib + PcdLib + UsbLib + + +################################################################################ +# +# Guid C Name Section - list of Guids that this module uses or produces. +# +################################################################################ + +[Guids] + gEfiHotPlugDeviceGuid # ALWAYS_CONSUMED + + +################################################################################ +# +# Protocol C Name Section - list of Protocol and Protocol Notify C Names +# that this module uses or produces. +# +################################################################################ + +[Protocols] + gEfiUsbIoProtocolGuid # PROTOCOL ALWAYS_CONSUMED + gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED + gEfiSimpleTextInProtocolGuid # PROTOCOL ALWAYS_CONSUMED + +################################################################################ +# +# Pcd FIXED_AT_BUILD - list of PCDs that this module is coded for. +# +################################################################################ + +[PcdsFixedAtBuild] + PcdStatusCodeValueKeyboardEnable|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardPresenceDetect|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardDisable|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardReset|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardClearBuffer|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardSelfTest|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardInterfaceError|gEfiMdePkgTokenSpaceGuid + PcdStatusCodeValueKeyboardInputError|gEfiMdePkgTokenSpaceGuid \ No newline at end of file -- cgit v1.2.3