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