Home | History | Annotate | Download | only in KeyboardDxe
      1 ## @file

      2 # Ps2 Keyboard driver.

      3 #

      4 # Ps2 Keyboard driver by using Legacy Bios protocol service and IsaIo protocol 

      5 # service. This dirver uses legacy INT16 to get the key stroke status.

      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

     11 # of the BSD License which accompanies this distribution.  The

     12 # full text of the license may be found at

     13 # http://opensource.org/licenses/bsd-license.php

     14 #

     15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     17 #

     18 ##

     19 
     20 [Defines]
     21   INF_VERSION                    = 0x00010005
     22   BASE_NAME                      = KeyboardDxe
     23   MODULE_UNI_FILE                = KeyboardDxe.uni
     24   FILE_GUID                      = 5479662B-6AE4-49e8-A6BD-6DE4B625811F
     25   MODULE_TYPE                    = UEFI_DRIVER
     26   VERSION_STRING                 = 1.0
     27 
     28   ENTRY_POINT                    = InitializeBiosKeyboard
     29 
     30 #

     31 # The following information is for reference only and not required by the build tools.

     32 #

     33 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     34 #

     35 #  DRIVER_BINDING                =  gBiosKeyboardDriverBinding

     36 #  COMPONENT_NAME                =  gBiosKeyboardComponentName

     37 #

     38 
     39 [Sources]
     40   ComponentName.c
     41   ComponentName.h
     42   BiosKeyboard.c
     43   BiosKeyboard.h
     44 
     45 
     46 [Packages]
     47   MdePkg/MdePkg.dec
     48   IntelFrameworkPkg/IntelFrameworkPkg.dec
     49   IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
     50 
     51 
     52 [LibraryClasses]
     53   MemoryAllocationLib
     54   UefiBootServicesTableLib
     55   UefiDriverEntryPoint
     56   ReportStatusCodeLib
     57   BaseMemoryLib
     58   UefiLib
     59   DebugLib
     60   BaseLib
     61   PcdLib
     62 
     63 [Protocols]
     64   gEfiIsaIoProtocolGuid                         ## TO_START

     65   gEfiSimpleTextInProtocolGuid                  ## BY_START

     66   gEfiSimpleTextInputExProtocolGuid             ## BY_START

     67   gEfiLegacyBiosProtocolGuid                    ## CONSUMES

     68   gEfiPs2PolicyProtocolGuid                     ## SOMETIMES_CONSUMES

     69 
     70 [FeaturePcd]
     71   gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPs2KbdExtendedVerification|FALSE  ## CONSUMES

     72 
     73 [Pcd]
     74   gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdFastPS2Detection                  ## SOMETIMES_CONSUMES

     75 
     76 [UserExtensions.TianoCore."ExtraFiles"]
     77   KeyboardDxeExtra.uni
     78