]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
6c2c7f43150ac36eaeb283b52525e90303c2fcb1
[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
78 [Protocols]
79 gEfiUsbIoProtocolGuid ## TO_START
80 gEfiDevicePathProtocolGuid ## TO_START
81 gEfiSimpleTextInProtocolGuid ## BY_START
82 gEfiSimpleTextInputExProtocolGuid ## BY_START
83 ##
84 # If HII Database Protocol exists, then keyboard layout from HII database is used.
85 # Otherwise, USB keyboard module tries to use its carried default layout.
86 #
87 gEfiHiiDatabaseProtocolGuid ## SOMETIMES_CONSUMES (Default value is used if it's absent.)
88
89 [FeaturePcd]
90 gEfiMdeModulePkgTokenSpaceGuid.PcdDisableDefaultKeyboardLayoutInUsbKbDriver ## SOMETIME_CONSUMES (Checked when no layout is provided by HII.)
91
92 # [Event]
93 # ##
94 # # Periodic timer event for generation of repeat key
95 # #
96 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
97 # ##
98 # # Periodic timer event for delayed recovery, which deals with device error.
99 # #
100 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
101 # ##
102 # # Event for EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey
103 # #
104 # EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
105 # ##
106 # # Event for EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx
107 # #
108 # EVENT_TYPE_NOTIFY_WAIT ## PRODUCES
109 #
110 #