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