2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-30 06:55:39 +01:00
|
|
|
# USB Mouse Driver that manages USB mouse and produces Simple Pointer Protocol.
|
2007-07-12 19:31:28 +02:00
|
|
|
#
|
2009-01-23 11:01:51 +01:00
|
|
|
# USB Mouse Driver consumes USB I/O Protocol and Device Path Protocol, and produces
|
|
|
|
# Simple Pointer Protocol on USB mouse devices.
|
|
|
|
# It manages the USB mouse device via Asynchronous Interrupt Transfer of USB I/O Protocol,
|
|
|
|
# and parses the data according to USB HID Specification.
|
|
|
|
# This module refers to following specifications:
|
|
|
|
# 1. Universal Serial Bus HID Firmware Specification, ver 1.11
|
|
|
|
# 2. UEFI Specification, v2.1
|
|
|
|
#
|
2010-04-24 11:49:11 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2007-07-12 19:31:28 +02:00
|
|
|
#
|
2010-04-24 11:49:11 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-12 19:31:28 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-12 19:31:28 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = UsbMouseDxe
|
|
|
|
FILE_GUID = 2D2E62AA-9ECF-43b7-8219-94E7FC713DFE
|
2008-08-18 11:18:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-07-12 19:31:28 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = USBMouseDriverBindingEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
2008-12-04 08:12:25 +01:00
|
|
|
# DRIVER_BINDING = gUsbMouseDriverBinding
|
|
|
|
# COMPONENT_NAME = gUsbMouseComponentName
|
|
|
|
# COMPONENT_NAME2 = gUsbMouseComponentName2
|
|
|
|
#
|
2007-07-12 19:31:28 +02:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-12 19:31:28 +02:00
|
|
|
ComponentName.c
|
2008-03-11 00:21:50 +01:00
|
|
|
MouseHid.c
|
|
|
|
UsbMouse.c
|
|
|
|
UsbMouse.h
|
2007-07-12 19:31:28 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
BaseMemoryLib
|
|
|
|
ReportStatusCodeLib
|
2008-11-13 10:19:18 +01:00
|
|
|
UefiUsbLib
|
2007-07-12 19:31:28 +02:00
|
|
|
|
|
|
|
[Protocols]
|
2009-01-23 11:01:51 +01:00
|
|
|
gEfiUsbIoProtocolGuid ## TO_START
|
|
|
|
gEfiDevicePathProtocolGuid ## TO_START
|
|
|
|
gEfiSimplePointerProtocolGuid ## BY_START
|
2007-07-12 19:31:28 +02:00
|
|
|
|
2009-01-23 11:01:51 +01:00
|
|
|
# [Event]
|
|
|
|
# ##
|
|
|
|
# # Periodic timer event for delayed recovery, which deals with device error.
|
|
|
|
# #
|
|
|
|
# EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
|
|
|
|
# ##
|
|
|
|
# # Event for EFI_SIMPLE_POINTER_PROTOCOL.WaitForInput
|
|
|
|
# #
|
|
|
|
# EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
|
|
|
|
#
|
|
|
|
#
|
2007-07-12 19:31:28 +02:00
|
|
|
|