1## @file
2# PS2 Mouse driver providing absolute (touch pad) pointer support.
3#
4# This driver simulates a touch pad absolute pointing device using a standard
5# PS2 mouse as the input hardware.
6#
7# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
8#
9# This program and the accompanying materials
10# are licensed and made available under the terms and conditions of the BSD License
11# which accompanies this distribution.  The full text of the license may be found at
12# http://opensource.org/licenses/bsd-license.php
13#
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = Ps2MouseAbsolutePointerDxe
23  MODULE_UNI_FILE                = Ps2MouseAbsolutePointerDxe.uni
24  FILE_GUID                      = 2899C94A-1FB6-4b1a-B96B-8364975303E0
25  MODULE_TYPE                    = UEFI_DRIVER
26  VERSION_STRING                 = 1.0
27  ENTRY_POINT                    = InitializePs2MouseAbsolutePointer
28
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#  DRIVER_BINDING                = gPS2MouseAbsolutePointerDriver;
32#  COMPONENT_NAME                = gPs2MouseAbsolutePointerComponentName;
33#  COMPONENT_NAME2               = gPs2MouseAbsolutePointerComponentName2;
34#
35
36[Sources]
37  ComponentName.c
38  CommPs2.h
39  CommPs2.c
40  Ps2MouseAbsolutePointer.h
41  Ps2MouseAbsolutePointer.c
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46  IntelFrameworkPkg/IntelFrameworkPkg.dec
47  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
48
49[LibraryClasses]
50  ReportStatusCodeLib
51  UefiBootServicesTableLib
52  MemoryAllocationLib
53  BaseMemoryLib
54  UefiLib
55  UefiDriverEntryPoint
56  DebugLib
57  PcdLib
58
59[Protocols]
60  gEfiIsaIoProtocolGuid                         ## TO_START
61  gEfiAbsolutePointerProtocolGuid               ## BY_START
62  gEfiDevicePathProtocolGuid                    ## TO_START
63
64[FeaturePcd]
65  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPs2MouseExtendedVerification   ## CONSUMES
66
67#
68# [Event]
69#
70#   ##
71#   # Timer event used to check the mouse state at a regular interval.
72#   #
73#   EVENT_TYPE_PERIODIC_TIMER   ## CONSUMES
74#
75
76[UserExtensions.TianoCore."ExtraFiles"]
77  Ps2MouseAbsolutePointerDxeExtra.uni
78