]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointerDxe.inf
Code Scrub for USB Mouse Absolute Pointer Driver.
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMouseAbsolutePointerDxe / UsbMouseAbsolutePointerDxe.inf
1 #/** @file
2 # USB Mouse Driver that manages USB mouse and produces Absolute Pointer Protocol.
3 #
4 # Copyright (c) 2006 - 2008, Intel Corporation.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 #
15 #**/
16
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = UsbMouseAbsolutePointerDxe
20 FILE_GUID = 4EA43463-747C-46eb-97FB-B0E5C5F05306
21 MODULE_TYPE = UEFI_DRIVER
22 VERSION_STRING = 1.0
23
24 ENTRY_POINT = USBMouseAbsolutePointerDriverBindingEntryPoint
25
26 #
27 # The following information is for reference only and not required by the build tools.
28 #
29 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
30 #
31 # DRIVER_BINDING = gUsbMouseAbsolutePointerDriverBinding
32 # COMPONENT_NAME = gUsbMouseAbsolutePointerComponentName
33 # COMPONENT_NAME2 = gUsbMouseAbsolutePointerComponentName2
34 #
35
36 [Sources.common]
37 ComponentName.c
38 MouseHid.c
39 UsbMouseAbsolutePointer.c
40 UsbMouseAbsolutePointer.h
41
42 [Packages]
43 MdePkg/MdePkg.dec
44
45 [LibraryClasses]
46 MemoryAllocationLib
47 UefiLib
48 UefiBootServicesTableLib
49 UefiDriverEntryPoint
50 BaseMemoryLib
51 ReportStatusCodeLib
52 PcdLib
53 UefiUsbLib
54
55 [Protocols]
56 gEfiUsbIoProtocolGuid # PROTOCOL TO_START
57 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
58 gEfiAbsolutePointerProtocolGuid # PROTOCOL BY_START
59
60 [FixedPcd]
61 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseInterfaceError
62 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseEnable
63 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseDisable
64 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseInputError
65 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseReset
66
67