Home | History | Annotate | Download | only in Ps2MouseAbsolutePointerDxe
      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 - 2016, 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   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   gEfiAbsolutePointerProtocolGuid               ## BY_START

     61   gEfiDevicePathProtocolGuid                    ## TO_START

     62 
     63 [FeaturePcd]
     64   gEfiMdeModulePkgTokenSpaceGuid.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   Ps2MouseAbsolutePointerDxeExtra.uni
     77