]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMouseDxe / UsbMouseDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
29129ce4 2# USB Mouse Driver that manages USB mouse and produces Simple Pointer Protocol.\r
ed838d0c 3#\r
7772b176 4# USB Mouse Driver consumes USB I/O Protocol and Device Path Protocol, and produces\r
5# Simple 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
ed838d0c 13#\r
9d510e61 14# SPDX-License-Identifier: BSD-2-Clause-Patent\r
ed838d0c 15#\r
16#\r
6bfbb5f0 17##\r
ed838d0c 18\r
ed838d0c 19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = UsbMouseDxe\r
6036e94d 22 MODULE_UNI_FILE = UsbMouseDxe.uni\r
ed838d0c 23 FILE_GUID = 2D2E62AA-9ECF-43b7-8219-94E7FC713DFE\r
d3f16117 24 MODULE_TYPE = UEFI_DRIVER\r
ed838d0c 25 VERSION_STRING = 1.0\r
ed838d0c 26 ENTRY_POINT = USBMouseDriverBindingEntryPoint\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
ed838d0c 32#\r
d1102dba 33# DRIVER_BINDING = gUsbMouseDriverBinding\r
d354ab7f 34# COMPONENT_NAME = gUsbMouseComponentName\r
35# COMPONENT_NAME2 = gUsbMouseComponentName2\r
36#\r
ed838d0c 37\r
6bfbb5f0 38[Sources]\r
ed838d0c 39 ComponentName.c\r
0c36e4c1 40 MouseHid.c\r
0c36e4c1 41 UsbMouse.c\r
42 UsbMouse.h\r
ed838d0c 43\r
ed838d0c 44[Packages]\r
45 MdePkg/MdePkg.dec\r
ed838d0c 46\r
ed838d0c 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
ed838d0c 55\r
ed838d0c 56[Protocols]\r
7772b176 57 gEfiUsbIoProtocolGuid ## TO_START\r
58 gEfiDevicePathProtocolGuid ## TO_START\r
59 gEfiSimplePointerProtocolGuid ## BY_START\r
ed838d0c 60\r
7772b176 61# [Event]\r
6036e94d 62# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
7772b176 63#\r
ed838d0c 64\r
6036e94d
SZ
65[UserExtensions.TianoCore."ExtraFiles"]\r
66 UsbMouseDxeExtra.uni\r