]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMouseDxe / UsbMouseDxe.inf
... / ...
CommitLineData
1## @file\r
2# USB Mouse Driver that manages USB mouse and produces Simple Pointer Protocol.\r
3#\r
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
12# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
13#\r
14# SPDX-License-Identifier: BSD-2-Clause-Patent\r
15#\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = UsbMouseDxe\r
22 MODULE_UNI_FILE = UsbMouseDxe.uni\r
23 FILE_GUID = 2D2E62AA-9ECF-43b7-8219-94E7FC713DFE\r
24 MODULE_TYPE = UEFI_DRIVER\r
25 VERSION_STRING = 1.0\r
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
31# VALID_ARCHITECTURES = IA32 X64 EBC\r
32#\r
33# DRIVER_BINDING = gUsbMouseDriverBinding\r
34# COMPONENT_NAME = gUsbMouseComponentName\r
35# COMPONENT_NAME2 = gUsbMouseComponentName2\r
36#\r
37\r
38[Sources]\r
39 ComponentName.c\r
40 MouseHid.c\r
41 UsbMouse.c\r
42 UsbMouse.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
54 UefiUsbLib\r
55\r
56[Protocols]\r
57 gEfiUsbIoProtocolGuid ## TO_START\r
58 gEfiDevicePathProtocolGuid ## TO_START\r
59 gEfiSimplePointerProtocolGuid ## BY_START\r
60\r
61# [Event]\r
62# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
63#\r
64\r
65[UserExtensions.TianoCore."ExtraFiles"]\r
66 UsbMouseDxeExtra.uni\r