]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointerDxe.inf
Roll back changes to apply GetBestLanguage() in HiiDataBase. Exact language match...
[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 # USB Mouse Driver consumes USB I/O Protocol and Device Path Protocol, and produces
5 # Absolute Pointer Protocol on USB mouse devices.
6 # It manages the USB mouse device via Asynchronous Interrupt Transfer of USB I/O Protocol,
7 # and parses the data according to USB HID Specification.
8 # This module refers to following specifications:
9 # 1. Universal Serial Bus HID Firmware Specification, ver 1.11
10 # 2. UEFI Specification, v2.1
11 #
12 # Copyright (c) 2006 - 2008, Intel Corporation.
13 #
14 # All rights reserved. This program and the accompanying materials
15 # are licensed and made available under the terms and conditions of the BSD License
16 # which accompanies this distribution. The full text of the license may be found at
17 # http://opensource.org/licenses/bsd-license.php
18 #
19 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
21 #
22 #
23 #**/
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = UsbMouseAbsolutePointerDxe
28 FILE_GUID = 4EA43463-747C-46eb-97FB-B0E5C5F05306
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 ENTRY_POINT = USBMouseAbsolutePointerDriverBindingEntryPoint
32
33 #
34 # The following information is for reference only and not required by the build tools.
35 #
36 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
37 #
38 # DRIVER_BINDING = gUsbMouseAbsolutePointerDriverBinding
39 # COMPONENT_NAME = gUsbMouseAbsolutePointerComponentName
40 # COMPONENT_NAME2 = gUsbMouseAbsolutePointerComponentName2
41 #
42
43 [Sources.common]
44 ComponentName.c
45 MouseHid.c
46 UsbMouseAbsolutePointer.c
47 UsbMouseAbsolutePointer.h
48
49 [Packages]
50 MdePkg/MdePkg.dec
51
52 [LibraryClasses]
53 MemoryAllocationLib
54 UefiLib
55 UefiBootServicesTableLib
56 UefiDriverEntryPoint
57 BaseMemoryLib
58 ReportStatusCodeLib
59 PcdLib
60 UefiUsbLib
61
62 [Protocols]
63 gEfiUsbIoProtocolGuid ## TO_START
64 gEfiDevicePathProtocolGuid ## TO_START
65 gEfiAbsolutePointerProtocolGuid ## BY_START
66
67 [FixedPcd]
68 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseInterfaceError
69 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseEnable
70 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseDisable
71 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseInputError
72 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMouseReset
73
74 # [Event]
75 # ##
76 # # Periodic timer event for delayed recovery, which deals with device error.
77 # #
78 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
79 # ##
80 # # Event for EFI_ABSOLUTE_POINTER_PROTOCOL.WaitForInput
81 # #
82 # EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
83 #
84 #
85