]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
b1da4b7786d95ef4b01b46921bb00dde54808f76
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbKbDxe / UsbKbDxe.inf
1 ## @file
2 # USB Keyboard Driver that manages USB keyboard and produces Simple Text Input
3 # Protocol and Simple Text Input Ex Protocol.
4 #
5 # USB Keyboard Driver consumes USB I/O Protocol and Device Path Protocol, and produces
6 # Simple Text Input Protocol and Simple Text Input Ex Protocol on USB keyboard devices.
7 # It initializes the keyboard layout according to info retrieved from HII database.
8 # If HII cannot provide the info, this module uses its carried default one if PCD allows.
9 # It manages the USB keyboard device via Asynchronous Interrupt Transfer of USB I/O Protocol,
10 # and parses the data according to USB HID documents.
11 # This module refers to following specifications:
12 # 1. Universal Serial Bus HID Firmware Specification, ver 1.11
13 # 2. Universal Serial Bus HID Usage Tables, ver 1.12
14 # 3. UEFI Specification, v2.1
15 #
16 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
17 #
18 # This program and the accompanying materials
19 # are licensed and made available under the terms and conditions of the BSD License
20 # which accompanies this distribution. The full text of the license may be found at
21 # http://opensource.org/licenses/bsd-license.php
22 #
23 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
24 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25 #
26 #
27 ##
28
29 [Defines]
30 INF_VERSION = 0x00010005
31 BASE_NAME = UsbKbDxe
32 FILE_GUID = 2D2E62CF-9ECF-43b7-8219-94E7FC713DFE
33 MODULE_TYPE = UEFI_DRIVER
34 VERSION_STRING = 1.0
35 ENTRY_POINT = USBKeyboardDriverBindingEntryPoint
36
37 #
38 # The following information is for reference only and not required by the build tools.
39 #
40 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
41 #
42 # DRIVER_BINDING = gUsbKeyboardDriverBinding
43 # COMPONENT_NAME = gUsbKeyboardComponentName
44 # COMPONENT_NAME2 = gUsbKeyboardComponentName2
45 #
46
47 [Sources]
48 EfiKey.c
49 EfiKey.h
50 KeyBoard.c
51 ComponentName.c
52 KeyBoard.h
53
54 [Packages]
55 MdePkg/MdePkg.dec
56 MdeModulePkg/MdeModulePkg.dec
57
58 [LibraryClasses]
59 MemoryAllocationLib
60 UefiLib
61 UefiBootServicesTableLib
62 UefiDriverEntryPoint
63 UefiRuntimeServicesTableLib
64 BaseMemoryLib
65 ReportStatusCodeLib
66 DebugLib
67 PcdLib
68 UefiUsbLib
69 HiiLib
70
71 [Guids]
72 ##
73 # Event registered to EFI_HII_SET_KEYBOARD_LAYOUT_EVENT_GUID group,
74 # which will be triggered by EFI_HII_DATABASE_PROTOCOL.SetKeyboardLayout().
75 #
76 gEfiHiiKeyBoardLayoutGuid ## SOMETIME_CONSUMES ## Event
77 gUsbKeyboardLayoutPackageGuid
78 gUsbKeyboardLayoutKeyGuid
79
80 [Protocols]
81 gEfiUsbIoProtocolGuid ## TO_START
82 gEfiDevicePathProtocolGuid ## TO_START
83 gEfiSimpleTextInProtocolGuid ## BY_START
84 gEfiSimpleTextInputExProtocolGuid ## BY_START
85 ##
86 # If HII Database Protocol exists, then keyboard layout from HII database is used.
87 # Otherwise, USB keyboard module tries to use its carried default layout.
88 #
89 gEfiHiiDatabaseProtocolGuid ## SOMETIMES_CONSUMES (Default value is used if it's absent.)
90
91 [FeaturePcd]
92 gEfiMdeModulePkgTokenSpaceGuid.PcdDisableDefaultKeyboardLayoutInUsbKbDriver ## SOMETIME_CONSUMES (Checked when no layout is provided by HII.)
93
94 # [Event]
95 # ##
96 # # Periodic timer event for generation of repeat key
97 # #
98 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
99 # ##
100 # # Periodic timer event for delayed recovery, which deals with device error.
101 # #
102 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
103 # ##
104 # # Event for EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey
105 # #
106 # EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
107 # ##
108 # # Event for EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx
109 # #
110 # EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
111 #
112 #