]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointerDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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 - 2018, Intel Corporation. All rights reserved.<BR>
13 #
14 # SPDX-License-Identifier: BSD-2-Clause-Patent
15 #
16 #
17 ##
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = UsbMouseAbsolutePointerDxe
22 MODULE_UNI_FILE = UsbMouseAbsolutePointerDxe.uni
23 FILE_GUID = 4EA43463-747C-46eb-97FB-B0E5C5F05306
24 MODULE_TYPE = UEFI_DRIVER
25 VERSION_STRING = 1.0
26 ENTRY_POINT = USBMouseAbsolutePointerDriverBindingEntryPoint
27
28 #
29 # The following information is for reference only and not required by the build tools.
30 #
31 # VALID_ARCHITECTURES = IA32 X64 EBC
32 #
33 # DRIVER_BINDING = gUsbMouseAbsolutePointerDriverBinding
34 # COMPONENT_NAME = gUsbMouseAbsolutePointerComponentName
35 # COMPONENT_NAME2 = gUsbMouseAbsolutePointerComponentName2
36 #
37
38 [Sources]
39 ComponentName.c
40 MouseHid.c
41 UsbMouseAbsolutePointer.c
42 UsbMouseAbsolutePointer.h
43
44 [Packages]
45 MdePkg/MdePkg.dec
46
47 [LibraryClasses]
48 MemoryAllocationLib
49 UefiLib
50 UefiBootServicesTableLib
51 UefiDriverEntryPoint
52 BaseMemoryLib
53 ReportStatusCodeLib
54 UefiUsbLib
55
56 [Protocols]
57 gEfiUsbIoProtocolGuid ## TO_START
58 gEfiDevicePathProtocolGuid ## TO_START
59 gEfiAbsolutePointerProtocolGuid ## BY_START
60
61 # [Event]
62 # EVENT_TYPE_RELATIVE_TIMER ## CONSUMES
63 #
64
65 [UserExtensions.TianoCore."ExtraFiles"]
66 UsbMouseAbsolutePointerDxeExtra.uni