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