]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
IntelFrameworkModulePkg: Clean up source files
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / Ps2KeyboardDxe / Ps2keyboardDxe.inf
... / ...
CommitLineData
1## @file\r
2# Ps2 Keyboard Driver.\r
3#\r
4# Ps2 Keyboard Driver for UEFI. The keyboard type implemented follows IBM\r
5# compatible PS2 protocol using Scan Code Set 1.\r
6#\r
7# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
8#\r
9# This program and the accompanying materials\r
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13#\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18##\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = Ps2KeyboardDxe\r
23 MODULE_UNI_FILE = Ps2KeyboardDxe.uni\r
24 FILE_GUID = 3DC82376-637B-40a6-A8FC-A565417F2C38\r
25 MODULE_TYPE = UEFI_DRIVER\r
26 VERSION_STRING = 1.0\r
27 ENTRY_POINT = InitializePs2Keyboard\r
28\r
29#\r
30# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
31# DRIVER_BINDING = gKeyboardControllerDriver;\r
32# COMPONENT_NAME = gPs2KeyboardComponentName;\r
33# COMPONENT_NAME2 = gPs2KeyboardComponentName2;\r
34#\r
35\r
36[Sources]\r
37 ComponentName.c\r
38 Ps2Keyboard.h\r
39 Ps2KbdCtrller.c\r
40 Ps2KbdTextIn.c\r
41 Ps2Keyboard.c\r
42\r
43\r
44[Packages]\r
45 MdePkg/MdePkg.dec\r
46 MdeModulePkg/MdeModulePkg.dec\r
47 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r
48\r
49[LibraryClasses]\r
50 MemoryAllocationLib\r
51 UefiRuntimeServicesTableLib\r
52 DebugLib\r
53 ReportStatusCodeLib\r
54 UefiBootServicesTableLib\r
55 UefiLib\r
56 UefiDriverEntryPoint\r
57 BaseLib\r
58 BaseMemoryLib\r
59 TimerLib\r
60 PcdLib\r
61\r
62[Protocols]\r
63 gEfiSimpleTextInProtocolGuid ## BY_START\r
64 gEfiSimpleTextInputExProtocolGuid ## BY_START\r
65 gEfiPs2PolicyProtocolGuid ## SOMETIMES_CONSUMES\r
66 gEfiIsaIoProtocolGuid ## TO_START\r
67 gEfiDevicePathProtocolGuid ## TO_START\r
68\r
69[FeaturePcd]\r
70 gEfiMdeModulePkgTokenSpaceGuid.PcdPs2KbdExtendedVerification ## CONSUMES\r
71\r
72[Pcd]\r
73 gEfiMdeModulePkgTokenSpaceGuid.PcdFastPS2Detection ## SOMETIMES_CONSUMES\r
74\r
75#\r
76# [Event]\r
77#\r
78# ##\r
79# # Timer event used to read key strokes at a regular interval.\r
80# #\r
81# EVENT_TYPE_PERIODIC_TIMER ## CONSUMES\r
82#\r
83\r
84[UserExtensions.TianoCore."ExtraFiles"]\r
85 Ps2KeyboardDxeExtra.uni\r