Ps2KeyboardDxe.inf 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ## @file
  2. # Ps2 Keyboard Driver.
  3. #
  4. # Ps2 Keyboard Driver for UEFI. The keyboard type implemented follows IBM
  5. # compatible PS2 protocol using Scan Code Set 1.
  6. #
  7. # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
  8. #
  9. # SPDX-License-Identifier: BSD-2-Clause-Patent
  10. #
  11. #
  12. ##
  13. [Defines]
  14. INF_VERSION = 0x00010005
  15. BASE_NAME = Ps2KeyboardDxe
  16. MODULE_UNI_FILE = Ps2KeyboardDxe.uni
  17. FILE_GUID = C4D1F932-821F-4744-BF06-6D30F7730F8D
  18. MODULE_TYPE = UEFI_DRIVER
  19. VERSION_STRING = 1.0
  20. ENTRY_POINT = InitializePs2Keyboard
  21. #
  22. # VALID_ARCHITECTURES = IA32 X64 EBC
  23. # DRIVER_BINDING = gKeyboardControllerDriver;
  24. # COMPONENT_NAME = gPs2KeyboardComponentName;
  25. # COMPONENT_NAME2 = gPs2KeyboardComponentName2;
  26. #
  27. [Sources]
  28. ComponentName.c
  29. Ps2Keyboard.h
  30. Ps2KbdCtrller.c
  31. Ps2KbdTextIn.c
  32. Ps2Keyboard.c
  33. [Packages]
  34. MdePkg/MdePkg.dec
  35. MdeModulePkg/MdeModulePkg.dec
  36. [LibraryClasses]
  37. MemoryAllocationLib
  38. UefiRuntimeServicesTableLib
  39. DebugLib
  40. ReportStatusCodeLib
  41. UefiBootServicesTableLib
  42. UefiLib
  43. UefiDriverEntryPoint
  44. BaseLib
  45. BaseMemoryLib
  46. TimerLib
  47. PcdLib
  48. IoLib
  49. [Protocols]
  50. gEfiSimpleTextInProtocolGuid ## BY_START
  51. gEfiSimpleTextInputExProtocolGuid ## BY_START
  52. gEfiPs2PolicyProtocolGuid ## SOMETIMES_CONSUMES
  53. gEfiSioProtocolGuid ## TO_START
  54. gEfiDevicePathProtocolGuid ## TO_START
  55. [FeaturePcd]
  56. gEfiMdeModulePkgTokenSpaceGuid.PcdPs2KbdExtendedVerification ## CONSUMES
  57. [Pcd]
  58. gEfiMdeModulePkgTokenSpaceGuid.PcdFastPS2Detection ## SOMETIMES_CONSUMES
  59. #
  60. # [Event]
  61. #
  62. # ##
  63. # # Timer event used to read key strokes at a regular interval.
  64. # #
  65. # EVENT_TYPE_PERIODIC_TIMER ## CONSUMES
  66. #
  67. [UserExtensions.TianoCore."ExtraFiles"]
  68. Ps2KeyboardDxeExtra.uni