]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c
MdeModulePkg/ConSplitter: ReadKeyStrokeEx always return key state
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbKbDxe / EfiKey.c
CommitLineData
ed838d0c 1/** @file\r
b4e73a63 2 USB Keyboard Driver that manages USB keyboard and produces Simple Text Input\r
3 Protocol and Simple Text Input Ex Protocol.\r
a7022cec 4\r
3652f990 5Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>\r
d4a622c4 6This program and the accompanying materials\r
ed838d0c 7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
a7022cec 14**/\r
ed838d0c 15\r
a7022cec 16#include "EfiKey.h"\r
17#include "KeyBoard.h"\r
ed838d0c 18\r
ed838d0c 19//\r
20// USB Keyboard Driver Global Variables\r
21//\r
22EFI_DRIVER_BINDING_PROTOCOL gUsbKeyboardDriverBinding = {\r
23 USBKeyboardDriverBindingSupported,\r
24 USBKeyboardDriverBindingStart,\r
25 USBKeyboardDriverBindingStop,\r
26 0xa,\r
27 NULL,\r
28 NULL\r
29};\r
30\r
a7022cec 31/**\r
5899f27e 32 Entrypoint of USB Keyboard Driver.\r
33\r
34 This function is the entrypoint of USB Keyboard Driver. It installs Driver Binding\r
35 Protocols together with Component Name Protocols.\r
a7022cec 36\r
5899f27e 37 @param ImageHandle The firmware allocated handle for the EFI image.\r
38 @param SystemTable A pointer to the EFI System Table.\r
a7022cec 39\r
5899f27e 40 @retval EFI_SUCCESS The entry point is executed successfully.\r
a7022cec 41\r
42**/\r
ed838d0c 43EFI_STATUS\r
44EFIAPI\r
45USBKeyboardDriverBindingEntryPoint (\r
46 IN EFI_HANDLE ImageHandle,\r
47 IN EFI_SYSTEM_TABLE *SystemTable\r
48 )\r
ed838d0c 49{\r
5899f27e 50 EFI_STATUS Status;\r
51\r
52 Status = EfiLibInstallDriverBindingComponentName2 (\r
53 ImageHandle,\r
54 SystemTable,\r
55 &gUsbKeyboardDriverBinding,\r
56 ImageHandle,\r
57 &gUsbKeyboardComponentName,\r
58 &gUsbKeyboardComponentName2\r
59 );\r
60 ASSERT_EFI_ERROR (Status);\r
61\r
62 return EFI_SUCCESS;\r
ed838d0c 63}\r
64\r
ed838d0c 65/**\r
5899f27e 66 Check whether USB keyboard driver supports this device.\r
ed838d0c 67\r
a7022cec 68 @param This The USB keyboard driver binding protocol.\r
69 @param Controller The controller handle to check.\r
70 @param RemainingDevicePath The remaining device path.\r
ed838d0c 71\r
a7022cec 72 @retval EFI_SUCCESS The driver supports this controller.\r
5899f27e 73 @retval other This device isn't supported.\r
74\r
ed838d0c 75**/\r
76EFI_STATUS\r
77EFIAPI\r
78USBKeyboardDriverBindingSupported (\r
79 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
80 IN EFI_HANDLE Controller,\r
81 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
82 )\r
83{\r
ed838d0c 84 EFI_STATUS Status;\r
5899f27e 85 EFI_USB_IO_PROTOCOL *UsbIo;\r
ed838d0c 86\r
87 //\r
5899f27e 88 // Check if USB I/O Protocol is attached on the controller handle.\r
ed838d0c 89 //\r
5899f27e 90 Status = gBS->OpenProtocol (\r
91 Controller,\r
92 &gEfiUsbIoProtocolGuid,\r
93 (VOID **) &UsbIo,\r
94 This->DriverBindingHandle,\r
95 Controller,\r
96 EFI_OPEN_PROTOCOL_BY_DRIVER\r
97 );\r
98 if (EFI_ERROR (Status)) {\r
99 return Status;\r
ed838d0c 100 }\r
101\r
102 //\r
b4e73a63 103 // Use the USB I/O Protocol interface to check whether Controller is\r
104 // a keyboard device that can be managed by this driver.\r
ed838d0c 105 //\r
106 Status = EFI_SUCCESS;\r
107\r
108 if (!IsUSBKeyboard (UsbIo)) {\r
109 Status = EFI_UNSUPPORTED;\r
110 }\r
111\r
112 gBS->CloseProtocol (\r
5899f27e 113 Controller,\r
114 &gEfiUsbIoProtocolGuid,\r
115 This->DriverBindingHandle,\r
116 Controller\r
117 );\r
ed838d0c 118\r
119 return Status;\r
120}\r
121\r
ed838d0c 122/**\r
c92e277d 123 Starts the keyboard device with this driver.\r
b4e73a63 124\r
125 This function produces Simple Text Input Protocol and Simple Text Input Ex Protocol,\r
126 initializes the keyboard device, and submit Asynchronous Interrupt Transfer to manage\r
127 this keyboard device.\r
ed838d0c 128\r
a7022cec 129 @param This The USB keyboard driver binding instance.\r
5899f27e 130 @param Controller Handle of device to bind driver to.\r
131 @param RemainingDevicePath Optional parameter use to pick a specific child\r
132 device to start.\r
ed838d0c 133\r
a7022cec 134 @retval EFI_SUCCESS The controller is controlled by the usb keyboard driver.\r
5899f27e 135 @retval EFI_UNSUPPORTED No interrupt endpoint can be found.\r
b4e73a63 136 @retval Other This controller cannot be started.\r
ed838d0c 137\r
138**/\r
139EFI_STATUS\r
140EFIAPI\r
141USBKeyboardDriverBindingStart (\r
142 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
143 IN EFI_HANDLE Controller,\r
144 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
145 )\r
146{\r
147 EFI_STATUS Status;\r
148 EFI_USB_IO_PROTOCOL *UsbIo;\r
149 USB_KB_DEV *UsbKeyboardDevice;\r
150 UINT8 EndpointNumber;\r
151 EFI_USB_ENDPOINT_DESCRIPTOR EndpointDescriptor;\r
152 UINT8 Index;\r
153 UINT8 EndpointAddr;\r
154 UINT8 PollingInterval;\r
155 UINT8 PacketSize;\r
156 BOOLEAN Found;\r
15cc67e6 157 EFI_TPL OldTpl;\r
ed838d0c 158\r
15cc67e6 159 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
ed838d0c 160 //\r
5899f27e 161 // Open USB I/O Protocol\r
ed838d0c 162 //\r
163 Status = gBS->OpenProtocol (\r
164 Controller,\r
165 &gEfiUsbIoProtocolGuid,\r
c52fa98c 166 (VOID **) &UsbIo,\r
ed838d0c 167 This->DriverBindingHandle,\r
168 Controller,\r
169 EFI_OPEN_PROTOCOL_BY_DRIVER\r
170 );\r
171 if (EFI_ERROR (Status)) {\r
15cc67e6 172 goto ErrorExit1;\r
ed838d0c 173 }\r
174\r
175 UsbKeyboardDevice = AllocateZeroPool (sizeof (USB_KB_DEV));\r
5899f27e 176 ASSERT (UsbKeyboardDevice != NULL);\r
177\r
ed838d0c 178 //\r
179 // Get the Device Path Protocol on Controller's handle\r
180 //\r
181 Status = gBS->OpenProtocol (\r
182 Controller,\r
183 &gEfiDevicePathProtocolGuid,\r
184 (VOID **) &UsbKeyboardDevice->DevicePath,\r
185 This->DriverBindingHandle,\r
186 Controller,\r
187 EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
188 );\r
189\r
190 if (EFI_ERROR (Status)) {\r
5899f27e 191 goto ErrorExit;\r
ed838d0c 192 }\r
193 //\r
5899f27e 194 // Report that the USB keyboard is being enabled\r
ed838d0c 195 //\r
5899f27e 196 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
ed838d0c 197 EFI_PROGRESS_CODE,\r
f9876ecf 198 (EFI_PERIPHERAL_KEYBOARD | EFI_P_PC_ENABLE),\r
5899f27e 199 UsbKeyboardDevice->DevicePath\r
ed838d0c 200 );\r
201\r
202 //\r
203 // This is pretty close to keyboard detection, so log progress\r
204 //\r
5899f27e 205 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
ed838d0c 206 EFI_PROGRESS_CODE,\r
f9876ecf 207 (EFI_PERIPHERAL_KEYBOARD | EFI_P_PC_PRESENCE_DETECT),\r
5899f27e 208 UsbKeyboardDevice->DevicePath\r
ed838d0c 209 );\r
210\r
ed838d0c 211 UsbKeyboardDevice->UsbIo = UsbIo;\r
212\r
213 //\r
214 // Get interface & endpoint descriptor\r
215 //\r
216 UsbIo->UsbGetInterfaceDescriptor (\r
5899f27e 217 UsbIo,\r
218 &UsbKeyboardDevice->InterfaceDescriptor\r
219 );\r
ed838d0c 220\r
221 EndpointNumber = UsbKeyboardDevice->InterfaceDescriptor.NumEndpoints;\r
222\r
5899f27e 223 //\r
c92e277d 224 // Traverse endpoints to find interrupt endpoint\r
5899f27e 225 //\r
226 Found = FALSE;\r
ed838d0c 227 for (Index = 0; Index < EndpointNumber; Index++) {\r
228\r
229 UsbIo->UsbGetEndpointDescriptor (\r
5899f27e 230 UsbIo,\r
231 Index,\r
232 &EndpointDescriptor\r
233 );\r
ed838d0c 234\r
c92e277d 235 if ((EndpointDescriptor.Attributes & (BIT0 | BIT1)) == USB_ENDPOINT_INTERRUPT) {\r
ed838d0c 236 //\r
237 // We only care interrupt endpoint here\r
238 //\r
84b5c78e 239 CopyMem(&UsbKeyboardDevice->IntEndpointDescriptor, &EndpointDescriptor, sizeof(EndpointDescriptor));\r
ed838d0c 240 Found = TRUE;\r
5899f27e 241 break;\r
ed838d0c 242 }\r
243 }\r
244\r
245 if (!Found) {\r
246 //\r
37623a5c 247 // Report Status Code to indicate that there is no USB keyboard\r
248 //\r
249 REPORT_STATUS_CODE (\r
250 EFI_ERROR_CODE | EFI_ERROR_MINOR,\r
251 (EFI_PERIPHERAL_KEYBOARD | EFI_P_EC_NOT_DETECTED)\r
252 );\r
253 //\r
ed838d0c 254 // No interrupt endpoint found, then return unsupported.\r
255 //\r
5899f27e 256 Status = EFI_UNSUPPORTED;\r
257 goto ErrorExit;\r
ed838d0c 258 }\r
259\r
37623a5c 260 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
261 EFI_PROGRESS_CODE,\r
262 (EFI_PERIPHERAL_KEYBOARD | EFI_P_PC_DETECTED),\r
263 UsbKeyboardDevice->DevicePath\r
264 );\r
265\r
ed838d0c 266 UsbKeyboardDevice->Signature = USB_KB_DEV_SIGNATURE;\r
267 UsbKeyboardDevice->SimpleInput.Reset = USBKeyboardReset;\r
268 UsbKeyboardDevice->SimpleInput.ReadKeyStroke = USBKeyboardReadKeyStroke;\r
66aa04e4 269\r
270 UsbKeyboardDevice->SimpleInputEx.Reset = USBKeyboardResetEx;\r
271 UsbKeyboardDevice->SimpleInputEx.ReadKeyStrokeEx = USBKeyboardReadKeyStrokeEx;\r
272 UsbKeyboardDevice->SimpleInputEx.SetState = USBKeyboardSetState;\r
273 UsbKeyboardDevice->SimpleInputEx.RegisterKeyNotify = USBKeyboardRegisterKeyNotify;\r
c41c3e55 274 UsbKeyboardDevice->SimpleInputEx.UnregisterKeyNotify = USBKeyboardUnregisterKeyNotify;\r
3765794c 275\r
66aa04e4 276 InitializeListHead (&UsbKeyboardDevice->NotifyList);\r
3765794c 277\r
c1fd2767
RN
278 Status = gBS->CreateEvent (\r
279 EVT_TIMER | EVT_NOTIFY_SIGNAL,\r
280 TPL_NOTIFY,\r
281 USBKeyboardTimerHandler,\r
282 UsbKeyboardDevice,\r
283 &UsbKeyboardDevice->TimerEvent\r
284 );\r
285 if (!EFI_ERROR (Status)) {\r
286 Status = gBS->SetTimer (UsbKeyboardDevice->TimerEvent, TimerPeriodic, KEYBOARD_TIMER_INTERVAL);\r
287 }\r
288 if (EFI_ERROR (Status)) {\r
289 goto ErrorExit;\r
290 }\r
291\r
66aa04e4 292 Status = gBS->CreateEvent (\r
293 EVT_NOTIFY_WAIT,\r
294 TPL_NOTIFY,\r
295 USBKeyboardWaitForKey,\r
296 UsbKeyboardDevice,\r
297 &(UsbKeyboardDevice->SimpleInputEx.WaitForKeyEx)\r
298 );\r
299\r
300 if (EFI_ERROR (Status)) {\r
301 goto ErrorExit;\r
302 }\r
303\r
ed838d0c 304 Status = gBS->CreateEvent (\r
305 EVT_NOTIFY_WAIT,\r
306 TPL_NOTIFY,\r
307 USBKeyboardWaitForKey,\r
308 UsbKeyboardDevice,\r
309 &(UsbKeyboardDevice->SimpleInput.WaitForKey)\r
310 );\r
5899f27e 311 if (EFI_ERROR (Status)) {\r
312 goto ErrorExit;\r
ed838d0c 313 }\r
314\r
4ae46dba
SZ
315 Status = gBS->CreateEvent (\r
316 EVT_NOTIFY_SIGNAL,\r
317 TPL_CALLBACK,\r
318 KeyNotifyProcessHandler,\r
319 UsbKeyboardDevice,\r
320 &UsbKeyboardDevice->KeyNotifyProcessEvent\r
321 );\r
322 if (EFI_ERROR (Status)) {\r
323 goto ErrorExit;\r
324 }\r
325\r
ed838d0c 326 //\r
5899f27e 327 // Install Simple Text Input Protocol and Simple Text Input Ex Protocol\r
328 // for the USB keyboard device.\r
329 // USB keyboard is a hot plug device, and expected to work immediately\r
aa8f4f55 330 // when plugging into system, other conventional console devices could\r
331 // distinguish it by its device path.\r
ed838d0c 332 //\r
333 Status = gBS->InstallMultipleProtocolInterfaces (\r
334 &Controller,\r
335 &gEfiSimpleTextInProtocolGuid,\r
336 &UsbKeyboardDevice->SimpleInput,\r
66aa04e4 337 &gEfiSimpleTextInputExProtocolGuid,\r
338 &UsbKeyboardDevice->SimpleInputEx,\r
ed838d0c 339 NULL\r
340 );\r
341 if (EFI_ERROR (Status)) {\r
5899f27e 342 goto ErrorExit;\r
ed838d0c 343 }\r
344\r
c41c3e55 345 UsbKeyboardDevice->ControllerHandle = Controller;\r
346 Status = InitKeyboardLayout (UsbKeyboardDevice);\r
347 if (EFI_ERROR (Status)) {\r
348 gBS->UninstallMultipleProtocolInterfaces (\r
349 Controller,\r
350 &gEfiSimpleTextInProtocolGuid,\r
351 &UsbKeyboardDevice->SimpleInput,\r
352 &gEfiSimpleTextInputExProtocolGuid,\r
353 &UsbKeyboardDevice->SimpleInputEx,\r
354 NULL\r
355 );\r
356 goto ErrorExit;\r
357 }\r
358\r
359\r
ed838d0c 360 //\r
5899f27e 361 // Reset USB Keyboard Device exhaustively.\r
ed838d0c 362 //\r
d4a622c4 363 Status = UsbKeyboardDevice->SimpleInputEx.Reset (\r
364 &UsbKeyboardDevice->SimpleInputEx,\r
ed838d0c 365 TRUE\r
366 );\r
367 if (EFI_ERROR (Status)) {\r
368 gBS->UninstallMultipleProtocolInterfaces (\r
66aa04e4 369 Controller,\r
370 &gEfiSimpleTextInProtocolGuid,\r
371 &UsbKeyboardDevice->SimpleInput,\r
372 &gEfiSimpleTextInputExProtocolGuid,\r
373 &UsbKeyboardDevice->SimpleInputEx,\r
66aa04e4 374 NULL\r
375 );\r
5899f27e 376 goto ErrorExit;\r
ed838d0c 377 }\r
5899f27e 378\r
ed838d0c 379 //\r
5899f27e 380 // Submit Asynchronous Interrupt Transfer to manage this device.\r
ed838d0c 381 //\r
382 EndpointAddr = UsbKeyboardDevice->IntEndpointDescriptor.EndpointAddress;\r
383 PollingInterval = UsbKeyboardDevice->IntEndpointDescriptor.Interval;\r
384 PacketSize = (UINT8) (UsbKeyboardDevice->IntEndpointDescriptor.MaxPacketSize);\r
385\r
386 Status = UsbIo->UsbAsyncInterruptTransfer (\r
387 UsbIo,\r
388 EndpointAddr,\r
389 TRUE,\r
390 PollingInterval,\r
391 PacketSize,\r
392 KeyboardHandler,\r
393 UsbKeyboardDevice\r
394 );\r
395\r
396 if (EFI_ERROR (Status)) {\r
ed838d0c 397 gBS->UninstallMultipleProtocolInterfaces (\r
66aa04e4 398 Controller,\r
399 &gEfiSimpleTextInProtocolGuid,\r
400 &UsbKeyboardDevice->SimpleInput,\r
401 &gEfiSimpleTextInputExProtocolGuid,\r
402 &UsbKeyboardDevice->SimpleInputEx,\r
66aa04e4 403 NULL\r
404 );\r
5899f27e 405 goto ErrorExit;\r
ed838d0c 406 }\r
407\r
408 UsbKeyboardDevice->ControllerNameTable = NULL;\r
62b9bb55 409 AddUnicodeString2 (\r
ed838d0c 410 "eng",\r
411 gUsbKeyboardComponentName.SupportedLanguages,\r
412 &UsbKeyboardDevice->ControllerNameTable,\r
62b9bb55 413 L"Generic Usb Keyboard",\r
414 TRUE\r
ed838d0c 415 );\r
62b9bb55 416 AddUnicodeString2 (\r
417 "en",\r
418 gUsbKeyboardComponentName2.SupportedLanguages,\r
419 &UsbKeyboardDevice->ControllerNameTable,\r
420 L"Generic Usb Keyboard",\r
421 FALSE\r
422 );\r
423\r
15cc67e6 424 gBS->RestoreTPL (OldTpl);\r
ed838d0c 425 return EFI_SUCCESS;\r
66aa04e4 426\r
5899f27e 427//\r
428// Error handler\r
429//\r
66aa04e4 430ErrorExit:\r
431 if (UsbKeyboardDevice != NULL) {\r
c1fd2767
RN
432 if (UsbKeyboardDevice->TimerEvent != NULL) {\r
433 gBS->CloseEvent (UsbKeyboardDevice->TimerEvent);\r
434 }\r
66aa04e4 435 if (UsbKeyboardDevice->SimpleInput.WaitForKey != NULL) {\r
436 gBS->CloseEvent (UsbKeyboardDevice->SimpleInput.WaitForKey);\r
437 }\r
438 if (UsbKeyboardDevice->SimpleInputEx.WaitForKeyEx != NULL) {\r
439 gBS->CloseEvent (UsbKeyboardDevice->SimpleInputEx.WaitForKeyEx);\r
440 }\r
4ae46dba
SZ
441 if (UsbKeyboardDevice->KeyNotifyProcessEvent != NULL) {\r
442 gBS->CloseEvent (UsbKeyboardDevice->KeyNotifyProcessEvent);\r
443 }\r
16a97771 444 if (UsbKeyboardDevice->KeyboardLayoutEvent != NULL) {\r
ea021002 445 ReleaseKeyboardLayoutResources (UsbKeyboardDevice);\r
16a97771 446 gBS->CloseEvent (UsbKeyboardDevice->KeyboardLayoutEvent);\r
447 }\r
c92e277d 448 FreePool (UsbKeyboardDevice);\r
66aa04e4 449 UsbKeyboardDevice = NULL;\r
450 }\r
451 gBS->CloseProtocol (\r
452 Controller,\r
453 &gEfiUsbIoProtocolGuid,\r
454 This->DriverBindingHandle,\r
455 Controller\r
456 );\r
15cc67e6 457\r
458ErrorExit1:\r
459 gBS->RestoreTPL (OldTpl);\r
460\r
66aa04e4 461 return Status;\r
462\r
ed838d0c 463}\r
464\r
465\r
ed838d0c 466/**\r
b4e73a63 467 Stop the USB keyboard device handled by this driver.\r
ed838d0c 468\r
a7022cec 469 @param This The USB keyboard driver binding protocol.\r
470 @param Controller The controller to release.\r
471 @param NumberOfChildren The number of handles in ChildHandleBuffer.\r
472 @param ChildHandleBuffer The array of child handle.\r
ed838d0c 473\r
b4e73a63 474 @retval EFI_SUCCESS The device was stopped.\r
5899f27e 475 @retval EFI_UNSUPPORTED Simple Text In Protocol or Simple Text In Ex Protocol\r
476 is not installed on Controller.\r
b4e73a63 477 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.\r
478 @retval Others Fail to uninstall protocols attached on the device.\r
ed838d0c 479\r
480**/\r
481EFI_STATUS\r
482EFIAPI\r
483USBKeyboardDriverBindingStop (\r
484 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
485 IN EFI_HANDLE Controller,\r
486 IN UINTN NumberOfChildren,\r
487 IN EFI_HANDLE *ChildHandleBuffer\r
488 )\r
489{\r
5899f27e 490 EFI_STATUS Status;\r
ed838d0c 491 EFI_SIMPLE_TEXT_INPUT_PROTOCOL *SimpleInput;\r
5899f27e 492 USB_KB_DEV *UsbKeyboardDevice;\r
ed838d0c 493\r
494 Status = gBS->OpenProtocol (\r
495 Controller,\r
496 &gEfiSimpleTextInProtocolGuid,\r
c52fa98c 497 (VOID **) &SimpleInput,\r
ed838d0c 498 This->DriverBindingHandle,\r
499 Controller,\r
bcb9d421 500 EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
ed838d0c 501 );\r
502 if (EFI_ERROR (Status)) {\r
503 return EFI_UNSUPPORTED;\r
504 }\r
5899f27e 505\r
66aa04e4 506 Status = gBS->OpenProtocol (\r
507 Controller,\r
508 &gEfiSimpleTextInputExProtocolGuid,\r
509 NULL,\r
510 This->DriverBindingHandle,\r
511 Controller,\r
512 EFI_OPEN_PROTOCOL_TEST_PROTOCOL\r
513 );\r
514 if (EFI_ERROR (Status)) {\r
515 return EFI_UNSUPPORTED;\r
516 }\r
b4e73a63 517\r
ed838d0c 518 UsbKeyboardDevice = USB_KB_DEV_FROM_THIS (SimpleInput);\r
519\r
ed838d0c 520 //\r
5899f27e 521 // The key data input from this device will be disabled.\r
ed838d0c 522 //\r
5899f27e 523 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
ed838d0c 524 EFI_PROGRESS_CODE,\r
f9876ecf 525 (EFI_PERIPHERAL_KEYBOARD | EFI_P_PC_DISABLE),\r
5899f27e 526 UsbKeyboardDevice->DevicePath\r
ed838d0c 527 );\r
528\r
529 //\r
5899f27e 530 // Delete the Asynchronous Interrupt Transfer from this device\r
ed838d0c 531 //\r
532 UsbKeyboardDevice->UsbIo->UsbAsyncInterruptTransfer (\r
533 UsbKeyboardDevice->UsbIo,\r
534 UsbKeyboardDevice->IntEndpointDescriptor.EndpointAddress,\r
535 FALSE,\r
536 UsbKeyboardDevice->IntEndpointDescriptor.Interval,\r
537 0,\r
538 NULL,\r
539 NULL\r
540 );\r
541\r
542 gBS->CloseProtocol (\r
5899f27e 543 Controller,\r
544 &gEfiUsbIoProtocolGuid,\r
545 This->DriverBindingHandle,\r
546 Controller\r
547 );\r
ed838d0c 548\r
549 Status = gBS->UninstallMultipleProtocolInterfaces (\r
550 Controller,\r
551 &gEfiSimpleTextInProtocolGuid,\r
552 &UsbKeyboardDevice->SimpleInput,\r
66aa04e4 553 &gEfiSimpleTextInputExProtocolGuid,\r
554 &UsbKeyboardDevice->SimpleInputEx,\r
ed838d0c 555 NULL\r
556 );\r
557 //\r
5899f27e 558 // Free all resources.\r
ed838d0c 559 //\r
c1fd2767 560 gBS->CloseEvent (UsbKeyboardDevice->TimerEvent);\r
ed838d0c 561 gBS->CloseEvent (UsbKeyboardDevice->RepeatTimer);\r
562 gBS->CloseEvent (UsbKeyboardDevice->DelayedRecoveryEvent);\r
c1fd2767
RN
563 gBS->CloseEvent (UsbKeyboardDevice->SimpleInput.WaitForKey);\r
564 gBS->CloseEvent (UsbKeyboardDevice->SimpleInputEx.WaitForKeyEx);\r
4ae46dba 565 gBS->CloseEvent (UsbKeyboardDevice->KeyNotifyProcessEvent);\r
c1fd2767 566 KbdFreeNotifyList (&UsbKeyboardDevice->NotifyList);\r
ed838d0c 567\r
813acf3a 568 ReleaseKeyboardLayoutResources (UsbKeyboardDevice);\r
569 gBS->CloseEvent (UsbKeyboardDevice->KeyboardLayoutEvent);\r
570\r
ed838d0c 571 if (UsbKeyboardDevice->ControllerNameTable != NULL) {\r
572 FreeUnicodeStringTable (UsbKeyboardDevice->ControllerNameTable);\r
573 }\r
574\r
c1fd2767
RN
575 DestroyQueue (&UsbKeyboardDevice->UsbKeyQueue);\r
576 DestroyQueue (&UsbKeyboardDevice->EfiKeyQueue);\r
4ae46dba 577 DestroyQueue (&UsbKeyboardDevice->EfiKeyQueueForNotify);\r
3765794c 578\r
c92e277d 579 FreePool (UsbKeyboardDevice);\r
ed838d0c 580\r
581 return Status;\r
ed838d0c 582}\r
583\r
a7022cec 584/**\r
b4e73a63 585 Internal function to read the next keystroke from the keyboard buffer.\r
a7022cec 586\r
b4e73a63 587 @param UsbKeyboardDevice USB keyboard's private structure.\r
588 @param KeyData A pointer to buffer to hold the keystroke\r
589 data for the key that was pressed.\r
a7022cec 590\r
b4e73a63 591 @retval EFI_SUCCESS The keystroke information was returned.\r
592 @retval EFI_NOT_READY There was no keystroke data availiable.\r
593 @retval EFI_DEVICE_ERROR The keystroke information was not returned due to\r
a7022cec 594 hardware errors.\r
b4e73a63 595 @retval EFI_INVALID_PARAMETER KeyData is NULL.\r
596 @retval Others Fail to translate keycode into EFI_INPUT_KEY\r
a7022cec 597\r
598**/\r
66aa04e4 599EFI_STATUS\r
600USBKeyboardReadKeyStrokeWorker (\r
b4e73a63 601 IN OUT USB_KB_DEV *UsbKeyboardDevice,\r
602 OUT EFI_KEY_DATA *KeyData\r
66aa04e4 603 )\r
66aa04e4 604{\r
66aa04e4 605 if (KeyData == NULL) {\r
606 return EFI_INVALID_PARAMETER;\r
607 }\r
608\r
c1fd2767
RN
609 if (IsQueueEmpty (&UsbKeyboardDevice->EfiKeyQueue)) {\r
610 return EFI_NOT_READY;\r
66aa04e4 611 }\r
612\r
c1fd2767 613 Dequeue (&UsbKeyboardDevice->EfiKeyQueue, KeyData, sizeof (*KeyData));\r
66aa04e4 614\r
615 return EFI_SUCCESS;\r
66aa04e4 616}\r
a7022cec 617\r
618/**\r
e15c65a3 619 Reset the input device and optionally run diagnostics\r
5899f27e 620\r
621 There are 2 types of reset for USB keyboard.\r
622 For non-exhaustive reset, only keyboard buffer is cleared.\r
623 For exhaustive reset, in addition to clearance of keyboard buffer, the hardware status\r
624 is also re-initialized.\r
a7022cec 625\r
b4e73a63 626 @param This Protocol instance pointer.\r
627 @param ExtendedVerification Driver may perform diagnostics on reset.\r
a7022cec 628\r
b4e73a63 629 @retval EFI_SUCCESS The device was reset.\r
630 @retval EFI_DEVICE_ERROR The device is not functioning properly and could not be reset.\r
a7022cec 631\r
632**/\r
ed838d0c 633EFI_STATUS\r
634EFIAPI\r
635USBKeyboardReset (\r
636 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
5899f27e 637 IN BOOLEAN ExtendedVerification\r
ed838d0c 638 )\r
639{\r
640 EFI_STATUS Status;\r
641 USB_KB_DEV *UsbKeyboardDevice;\r
ed838d0c 642\r
643 UsbKeyboardDevice = USB_KB_DEV_FROM_THIS (This);\r
644\r
5899f27e 645 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
ed838d0c 646 EFI_PROGRESS_CODE,\r
f9876ecf 647 (EFI_PERIPHERAL_KEYBOARD | EFI_P_PC_RESET),\r
5899f27e 648 UsbKeyboardDevice->DevicePath\r
ed838d0c 649 );\r
650\r
651 //\r
5899f27e 652 // Non-exhaustive reset:\r
ed838d0c 653 // only reset private data structures.\r
654 //\r
655 if (!ExtendedVerification) {\r
5899f27e 656 REPORT_STATUS_CODE_WITH_DEVICE_PATH (\r
ed838d0c 657 EFI_PROGRESS_CODE,\r
f9876ecf 658 (EFI_PERIPHERAL_KEYBOARD | EFI_P_KEYBOARD_PC_CLEAR_BUFFER),\r
5899f27e 659 UsbKeyboardDevice->DevicePath\r
ed838d0c 660 );\r
5899f27e 661 //\r
662 // Clear the key buffer of this USB keyboard\r
663 //\r
c1fd2767
RN
664 InitQueue (&UsbKeyboardDevice->UsbKeyQueue, sizeof (USB_KEY));\r
665 InitQueue (&UsbKeyboardDevice->EfiKeyQueue, sizeof (EFI_KEY_DATA));\r
4ae46dba 666 InitQueue (&UsbKeyboardDevice->EfiKeyQueueForNotify, sizeof (EFI_KEY_DATA));\r
5899f27e 667\r
ed838d0c 668 return EFI_SUCCESS;\r
669 }\r
670\r
671 //\r
672 // Exhaustive reset\r
673 //\r
5899f27e 674 Status = InitUSBKeyboard (UsbKeyboardDevice);\r
ed838d0c 675 if (EFI_ERROR (Status)) {\r
676 return EFI_DEVICE_ERROR;\r
677 }\r
678\r
679 return EFI_SUCCESS;\r
680}\r
681\r
682\r
683/**\r
b4e73a63 684 Reads the next keystroke from the input device.\r
ed838d0c 685\r
a7022cec 686 @param This The EFI_SIMPLE_TEXT_INPUT_PROTOCOL instance.\r
687 @param Key A pointer to a buffer that is filled in with the keystroke\r
688 information for the key that was pressed.\r
ed838d0c 689\r
b4e73a63 690 @retval EFI_SUCCESS The keystroke information was returned.\r
691 @retval EFI_NOT_READY There was no keystroke data availiable.\r
e15c65a3 692 @retval EFI_DEVICE_ERROR The keystroke information was not returned due to\r
b4e73a63 693 hardware errors.\r
ed838d0c 694\r
695**/\r
ed838d0c 696EFI_STATUS\r
697EFIAPI\r
698USBKeyboardReadKeyStroke (\r
699 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
5899f27e 700 OUT EFI_INPUT_KEY *Key\r
ed838d0c 701 )\r
702{\r
66aa04e4 703 USB_KB_DEV *UsbKeyboardDevice;\r
704 EFI_STATUS Status;\r
705 EFI_KEY_DATA KeyData;\r
ed838d0c 706\r
707 UsbKeyboardDevice = USB_KB_DEV_FROM_THIS (This);\r
708\r
3765794c 709 //\r
710 // Considering if the partial keystroke is enabled, there maybe a partial\r
711 // keystroke in the queue, so here skip the partial keystroke and get the\r
712 // next key from the queue\r
713 //\r
714 while (1) {\r
715 Status = USBKeyboardReadKeyStrokeWorker (UsbKeyboardDevice, &KeyData);\r
716 if (EFI_ERROR (Status)) {\r
717 return Status;\r
718 }\r
719 //\r
720 // SimpleTextIn Protocol doesn't support partial keystroke;\r
721 //\r
722 if (KeyData.Key.ScanCode == CHAR_NULL && KeyData.Key.UnicodeChar == SCAN_NULL) {\r
723 continue;\r
724 }\r
608817ad
RN
725 //\r
726 // Translate the CTRL-Alpha characters to their corresponding control value\r
727 // (ctrl-a = 0x0001 through ctrl-Z = 0x001A)\r
728 //\r
729 if ((KeyData.KeyState.KeyShiftState & (EFI_LEFT_CONTROL_PRESSED | EFI_RIGHT_CONTROL_PRESSED)) != 0) {\r
730 if (KeyData.Key.UnicodeChar >= L'a' && KeyData.Key.UnicodeChar <= L'z') {\r
731 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'a' + 1);\r
732 } else if (KeyData.Key.UnicodeChar >= L'A' && KeyData.Key.UnicodeChar <= L'Z') {\r
733 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'A' + 1);\r
734 }\r
735 }\r
736\r
3765794c 737 CopyMem (Key, &KeyData.Key, sizeof (EFI_INPUT_KEY));\r
738 return EFI_SUCCESS;\r
ed838d0c 739 }\r
ed838d0c 740}\r
741\r
742\r
743/**\r
b4e73a63 744 Event notification function registered for EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx\r
745 and EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey.\r
ed838d0c 746\r
a7022cec 747 @param Event Event to be signaled when a key is pressed.\r
748 @param Context Points to USB_KB_DEV instance.\r
ed838d0c 749\r
750**/\r
ed838d0c 751VOID\r
752EFIAPI\r
753USBKeyboardWaitForKey (\r
754 IN EFI_EVENT Event,\r
755 IN VOID *Context\r
756 )\r
757{\r
758 USB_KB_DEV *UsbKeyboardDevice;\r
3765794c 759 EFI_KEY_DATA KeyData;\r
760 EFI_TPL OldTpl;\r
ed838d0c 761\r
762 UsbKeyboardDevice = (USB_KB_DEV *) Context;\r
763\r
3765794c 764 //\r
765 // Enter critical section\r
766 // \r
767 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);\r
768 \r
769 //\r
770 // WaitforKey doesn't suppor the partial key.\r
771 // Considering if the partial keystroke is enabled, there maybe a partial\r
772 // keystroke in the queue, so here skip the partial keystroke and get the\r
773 // next key from the queue\r
774 //\r
775 while (!IsQueueEmpty (&UsbKeyboardDevice->EfiKeyQueue)) {\r
c1fd2767
RN
776 //\r
777 // If there is pending key, signal the event.\r
778 //\r
3765794c 779 CopyMem (\r
780 &KeyData,\r
781 UsbKeyboardDevice->EfiKeyQueue.Buffer[UsbKeyboardDevice->EfiKeyQueue.Head],\r
782 sizeof (EFI_KEY_DATA)\r
783 );\r
784 if (KeyData.Key.ScanCode == SCAN_NULL && KeyData.Key.UnicodeChar == CHAR_NULL) {\r
785 Dequeue (&UsbKeyboardDevice->EfiKeyQueue, &KeyData, sizeof (EFI_KEY_DATA));\r
786 continue;\r
787 }\r
c1fd2767 788 gBS->SignalEvent (Event);\r
3765794c 789 break;\r
ed838d0c 790 }\r
3765794c 791 //\r
792 // Leave critical section and return\r
793 //\r
794 gBS->RestoreTPL (OldTpl);\r
ed838d0c 795}\r
796\r
ed838d0c 797/**\r
c1fd2767 798 Timer handler to convert the key from USB.\r
ed838d0c 799\r
c1fd2767
RN
800 @param Event Indicates the event that invoke this function.\r
801 @param Context Indicates the calling context.\r
ed838d0c 802**/\r
c1fd2767 803VOID\r
a7022cec 804EFIAPI\r
c1fd2767
RN
805USBKeyboardTimerHandler (\r
806 IN EFI_EVENT Event,\r
807 IN VOID *Context\r
ed838d0c 808 )\r
809{\r
c1fd2767
RN
810 EFI_STATUS Status;\r
811 USB_KB_DEV *UsbKeyboardDevice;\r
812 UINT8 KeyCode;\r
813 EFI_KEY_DATA KeyData;\r
ed838d0c 814\r
c1fd2767 815 UsbKeyboardDevice = (USB_KB_DEV *) Context;\r
3765794c 816\r
ed838d0c 817 //\r
b4e73a63 818 // Fetch raw data from the USB keyboard buffer,\r
819 // and translate it into USB keycode.\r
ed838d0c 820 //\r
b4e73a63 821 Status = USBParseKey (UsbKeyboardDevice, &KeyCode);\r
ed838d0c 822 if (EFI_ERROR (Status)) {\r
c1fd2767 823 return ;\r
ed838d0c 824 }\r
825\r
c1fd2767
RN
826 //\r
827 // Translate saved USB keycode into EFI_INPUT_KEY\r
828 //\r
829 Status = UsbKeyCodeToEfiInputKey (UsbKeyboardDevice, KeyCode, &KeyData);\r
830 if (EFI_ERROR (Status)) {\r
831 return ;\r
832 }\r
833\r
834 //\r
835 // Insert to the EFI Key queue\r
836 //\r
837 Enqueue (&UsbKeyboardDevice->EfiKeyQueue, &KeyData, sizeof (KeyData));\r
ed838d0c 838}\r
839\r
a7022cec 840/**\r
841 Free keyboard notify list.\r
66aa04e4 842\r
b4e73a63 843 @param NotifyList The keyboard notify list to free.\r
66aa04e4 844\r
a7022cec 845 @retval EFI_SUCCESS Free the notify list successfully.\r
b4e73a63 846 @retval EFI_INVALID_PARAMETER NotifyList is NULL.\r
66aa04e4 847\r
a7022cec 848**/\r
849EFI_STATUS\r
a7022cec 850KbdFreeNotifyList (\r
b4e73a63 851 IN OUT LIST_ENTRY *NotifyList\r
a7022cec 852 )\r
66aa04e4 853{\r
854 KEYBOARD_CONSOLE_IN_EX_NOTIFY *NotifyNode;\r
b4e73a63 855 LIST_ENTRY *Link;\r
66aa04e4 856\r
b4e73a63 857 if (NotifyList == NULL) {\r
66aa04e4 858 return EFI_INVALID_PARAMETER;\r
859 }\r
b4e73a63 860 while (!IsListEmpty (NotifyList)) {\r
861 Link = GetFirstNode (NotifyList);\r
862 NotifyNode = CR (Link, KEYBOARD_CONSOLE_IN_EX_NOTIFY, NotifyEntry, USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE);\r
863 RemoveEntryList (Link);\r
c92e277d 864 FreePool (NotifyNode);\r
66aa04e4 865 }\r
3765794c 866\r
66aa04e4 867 return EFI_SUCCESS;\r
868}\r
869\r
a7022cec 870/**\r
b4e73a63 871 Check whether the pressed key matches a registered key or not.\r
a7022cec 872\r
b4e73a63 873 @param RegsiteredData A pointer to keystroke data for the key that was registered.\r
874 @param InputData A pointer to keystroke data for the key that was pressed.\r
a7022cec 875\r
876 @retval TRUE Key pressed matches a registered key.\r
e15c65a3 877 @retval FLASE Key pressed does not matches a registered key.\r
a7022cec 878\r
879**/\r
66aa04e4 880BOOLEAN\r
881IsKeyRegistered (\r
882 IN EFI_KEY_DATA *RegsiteredData,\r
883 IN EFI_KEY_DATA *InputData\r
884 )\r
66aa04e4 885{\r
886 ASSERT (RegsiteredData != NULL && InputData != NULL);\r
3765794c 887\r
66aa04e4 888 if ((RegsiteredData->Key.ScanCode != InputData->Key.ScanCode) ||\r
889 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {\r
3765794c 890 return FALSE;\r
891 }\r
892\r
66aa04e4 893 //\r
894 // Assume KeyShiftState/KeyToggleState = 0 in Registered key data means these state could be ignored.\r
895 //\r
896 if (RegsiteredData->KeyState.KeyShiftState != 0 &&\r
897 RegsiteredData->KeyState.KeyShiftState != InputData->KeyState.KeyShiftState) {\r
3765794c 898 return FALSE;\r
899 }\r
66aa04e4 900 if (RegsiteredData->KeyState.KeyToggleState != 0 &&\r
901 RegsiteredData->KeyState.KeyToggleState != InputData->KeyState.KeyToggleState) {\r
3765794c 902 return FALSE;\r
903 }\r
904\r
66aa04e4 905 return TRUE;\r
66aa04e4 906}\r
907\r
908//\r
3765794c 909// Simple Text Input Ex protocol functions\r
66aa04e4 910//\r
a7022cec 911/**\r
b4e73a63 912 Resets the input device hardware.\r
913\r
914 The Reset() function resets the input device hardware. As part\r
915 of initialization process, the firmware/device will make a quick\r
916 but reasonable attempt to verify that the device is functioning.\r
917 If the ExtendedVerification flag is TRUE the firmware may take\r
918 an extended amount of time to verify the device is operating on\r
919 reset. Otherwise the reset operation is to occur as quickly as\r
920 possible. The hardware verification process is not defined by\r
921 this specification and is left up to the platform firmware or\r
922 driver to implement.\r
a7022cec 923\r
b4e73a63 924 @param This A pointer to the EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL instance.\r
a7022cec 925\r
b4e73a63 926 @param ExtendedVerification Indicates that the driver may perform a more exhaustive\r
927 verification operation of the device during reset.\r
928\r
929 @retval EFI_SUCCESS The device was reset.\r
930 @retval EFI_DEVICE_ERROR The device is not functioning correctly and could not be reset.\r
a7022cec 931\r
932**/\r
66aa04e4 933EFI_STATUS\r
934EFIAPI\r
935USBKeyboardResetEx (\r
936 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
937 IN BOOLEAN ExtendedVerification\r
938 )\r
66aa04e4 939{\r
940 EFI_STATUS Status;\r
941 USB_KB_DEV *UsbKeyboardDevice;\r
66aa04e4 942\r
943 UsbKeyboardDevice = TEXT_INPUT_EX_USB_KB_DEV_FROM_THIS (This);\r
944\r
945 Status = UsbKeyboardDevice->SimpleInput.Reset (&UsbKeyboardDevice->SimpleInput, ExtendedVerification);\r
946 if (EFI_ERROR (Status)) {\r
947 return EFI_DEVICE_ERROR;\r
948 }\r
949\r
3765794c 950 UsbKeyboardDevice->KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID;\r
951 UsbKeyboardDevice->KeyState.KeyToggleState = EFI_TOGGLE_STATE_VALID;\r
952\r
66aa04e4 953 return EFI_SUCCESS;\r
954\r
955}\r
956\r
a7022cec 957/**\r
b4e73a63 958 Reads the next keystroke from the input device.\r
a7022cec 959\r
b4e73a63 960 @param This Protocol instance pointer.\r
961 @param KeyData A pointer to a buffer that is filled in with the keystroke\r
962 state data for the key that was pressed.\r
a7022cec 963\r
b4e73a63 964 @retval EFI_SUCCESS The keystroke information was returned.\r
965 @retval EFI_NOT_READY There was no keystroke data available.\r
966 @retval EFI_DEVICE_ERROR The keystroke information was not returned due to\r
967 hardware errors.\r
968 @retval EFI_INVALID_PARAMETER KeyData is NULL.\r
a7022cec 969\r
970**/\r
66aa04e4 971EFI_STATUS\r
972EFIAPI\r
973USBKeyboardReadKeyStrokeEx (\r
974 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
975 OUT EFI_KEY_DATA *KeyData\r
976 )\r
66aa04e4 977{\r
978 USB_KB_DEV *UsbKeyboardDevice;\r
979\r
980 if (KeyData == NULL) {\r
981 return EFI_INVALID_PARAMETER;\r
982 }\r
983\r
984 UsbKeyboardDevice = TEXT_INPUT_EX_USB_KB_DEV_FROM_THIS (This);\r
985\r
986 return USBKeyboardReadKeyStrokeWorker (UsbKeyboardDevice, KeyData);\r
3765794c 987\r
66aa04e4 988}\r
989\r
a7022cec 990/**\r
991 Set certain state for the input device.\r
992\r
993 @param This Protocol instance pointer.\r
994 @param KeyToggleState A pointer to the EFI_KEY_TOGGLE_STATE to set the\r
995 state for the input device.\r
996\r
b4e73a63 997 @retval EFI_SUCCESS The device state was set appropriately.\r
998 @retval EFI_DEVICE_ERROR The device is not functioning correctly and could\r
999 not have the setting adjusted.\r
1000 @retval EFI_UNSUPPORTED The device does not support the ability to have its state set.\r
a7022cec 1001 @retval EFI_INVALID_PARAMETER KeyToggleState is NULL.\r
1002\r
1003**/\r
66aa04e4 1004EFI_STATUS\r
1005EFIAPI\r
1006USBKeyboardSetState (\r
1007 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
1008 IN EFI_KEY_TOGGLE_STATE *KeyToggleState\r
1009 )\r
66aa04e4 1010{\r
1011 USB_KB_DEV *UsbKeyboardDevice;\r
1012\r
1013 if (KeyToggleState == NULL) {\r
1014 return EFI_INVALID_PARAMETER;\r
1015 }\r
1016\r
1017 UsbKeyboardDevice = TEXT_INPUT_EX_USB_KB_DEV_FROM_THIS (This);\r
1018\r
3765794c 1019 if (((UsbKeyboardDevice->KeyState.KeyToggleState & EFI_TOGGLE_STATE_VALID) != EFI_TOGGLE_STATE_VALID) ||\r
1020 ((*KeyToggleState & EFI_TOGGLE_STATE_VALID) != EFI_TOGGLE_STATE_VALID)) {\r
66aa04e4 1021 return EFI_UNSUPPORTED;\r
1022 }\r
1023\r
1024 //\r
1025 // Update the status light\r
1026 //\r
1027\r
b4e73a63 1028 UsbKeyboardDevice->ScrollOn = FALSE;\r
1029 UsbKeyboardDevice->NumLockOn = FALSE;\r
1030 UsbKeyboardDevice->CapsOn = FALSE;\r
3765794c 1031 UsbKeyboardDevice->IsSupportPartialKey = FALSE;\r
1032\r
66aa04e4 1033 if ((*KeyToggleState & EFI_SCROLL_LOCK_ACTIVE) == EFI_SCROLL_LOCK_ACTIVE) {\r
b4e73a63 1034 UsbKeyboardDevice->ScrollOn = TRUE;\r
66aa04e4 1035 }\r
1036 if ((*KeyToggleState & EFI_NUM_LOCK_ACTIVE) == EFI_NUM_LOCK_ACTIVE) {\r
b4e73a63 1037 UsbKeyboardDevice->NumLockOn = TRUE;\r
66aa04e4 1038 }\r
1039 if ((*KeyToggleState & EFI_CAPS_LOCK_ACTIVE) == EFI_CAPS_LOCK_ACTIVE) {\r
b4e73a63 1040 UsbKeyboardDevice->CapsOn = TRUE;\r
66aa04e4 1041 }\r
3765794c 1042 if ((*KeyToggleState & EFI_KEY_STATE_EXPOSED) == EFI_KEY_STATE_EXPOSED) {\r
1043 UsbKeyboardDevice->IsSupportPartialKey = TRUE;\r
1044 }\r
66aa04e4 1045\r
1046 SetKeyLED (UsbKeyboardDevice);\r
1047\r
3765794c 1048 UsbKeyboardDevice->KeyState.KeyToggleState = *KeyToggleState;\r
1049\r
66aa04e4 1050 return EFI_SUCCESS;\r
3765794c 1051\r
66aa04e4 1052}\r
1053\r
a7022cec 1054/**\r
1055 Register a notification function for a particular keystroke for the input device.\r
1056\r
1057 @param This Protocol instance pointer.\r
3652f990
DB
1058 @param KeyData A pointer to a buffer that is filled in with\r
1059 the keystroke information for the key that was\r
1060 pressed. If KeyData.Key, KeyData.KeyState.KeyToggleState\r
1061 and KeyData.KeyState.KeyShiftState are 0, then any incomplete\r
1062 keystroke will trigger a notification of the KeyNotificationFunction.\r
a7022cec 1063 @param KeyNotificationFunction Points to the function to be called when the key\r
3652f990
DB
1064 sequence is typed specified by KeyData. This notification function\r
1065 should be called at <=TPL_CALLBACK.\r
a7022cec 1066 @param NotifyHandle Points to the unique handle assigned to the registered notification.\r
1067\r
1068 @retval EFI_SUCCESS The notification function was registered successfully.\r
e15c65a3 1069 @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necessary data structures.\r
b4e73a63 1070 @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle or KeyNotificationFunction is NULL.\r
a7022cec 1071\r
1072**/\r
66aa04e4 1073EFI_STATUS\r
1074EFIAPI\r
1075USBKeyboardRegisterKeyNotify (\r
1076 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
1077 IN EFI_KEY_DATA *KeyData,\r
1078 IN EFI_KEY_NOTIFY_FUNCTION KeyNotificationFunction,\r
402e4a9d 1079 OUT VOID **NotifyHandle\r
66aa04e4 1080 )\r
66aa04e4 1081{\r
1082 USB_KB_DEV *UsbKeyboardDevice;\r
66aa04e4 1083 KEYBOARD_CONSOLE_IN_EX_NOTIFY *NewNotify;\r
1084 LIST_ENTRY *Link;\r
e15c65a3 1085 LIST_ENTRY *NotifyList;\r
3765794c 1086 KEYBOARD_CONSOLE_IN_EX_NOTIFY *CurrentNotify;\r
66aa04e4 1087\r
1088 if (KeyData == NULL || NotifyHandle == NULL || KeyNotificationFunction == NULL) {\r
1089 return EFI_INVALID_PARAMETER;\r
1090 }\r
1091\r
1092 UsbKeyboardDevice = TEXT_INPUT_EX_USB_KB_DEV_FROM_THIS (This);\r
1093\r
1094 //\r
1095 // Return EFI_SUCCESS if the (KeyData, NotificationFunction) is already registered.\r
1096 //\r
e15c65a3 1097 NotifyList = &UsbKeyboardDevice->NotifyList;\r
3765794c 1098\r
e15c65a3 1099 for (Link = GetFirstNode (NotifyList);\r
1100 !IsNull (NotifyList, Link);\r
1101 Link = GetNextNode (NotifyList, Link)) {\r
66aa04e4 1102 CurrentNotify = CR (\r
3765794c 1103 Link,\r
1104 KEYBOARD_CONSOLE_IN_EX_NOTIFY,\r
1105 NotifyEntry,\r
66aa04e4 1106 USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE\r
1107 );\r
3765794c 1108 if (IsKeyRegistered (&CurrentNotify->KeyData, KeyData)) {\r
66aa04e4 1109 if (CurrentNotify->KeyNotificationFn == KeyNotificationFunction) {\r
402e4a9d 1110 *NotifyHandle = CurrentNotify;\r
66aa04e4 1111 return EFI_SUCCESS;\r
1112 }\r
1113 }\r
1114 }\r
3765794c 1115\r
66aa04e4 1116 //\r
1117 // Allocate resource to save the notification function\r
3765794c 1118 //\r
66aa04e4 1119 NewNotify = (KEYBOARD_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (KEYBOARD_CONSOLE_IN_EX_NOTIFY));\r
1120 if (NewNotify == NULL) {\r
1121 return EFI_OUT_OF_RESOURCES;\r
1122 }\r
1123\r
3765794c 1124 NewNotify->Signature = USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE;\r
66aa04e4 1125 NewNotify->KeyNotificationFn = KeyNotificationFunction;\r
1126 CopyMem (&NewNotify->KeyData, KeyData, sizeof (EFI_KEY_DATA));\r
1127 InsertTailList (&UsbKeyboardDevice->NotifyList, &NewNotify->NotifyEntry);\r
1128\r
7fc80d44 1129\r
402e4a9d 1130 *NotifyHandle = NewNotify;\r
3765794c 1131\r
66aa04e4 1132 return EFI_SUCCESS;\r
3765794c 1133\r
66aa04e4 1134}\r
1135\r
a7022cec 1136/**\r
1137 Remove a registered notification function from a particular keystroke.\r
1138\r
1139 @param This Protocol instance pointer.\r
1140 @param NotificationHandle The handle of the notification function being unregistered.\r
1141\r
1142 @retval EFI_SUCCESS The notification function was unregistered successfully.\r
b4e73a63 1143 @retval EFI_INVALID_PARAMETER The NotificationHandle is invalid\r
a7022cec 1144\r
1145**/\r
66aa04e4 1146EFI_STATUS\r
1147EFIAPI\r
1148USBKeyboardUnregisterKeyNotify (\r
1149 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
402e4a9d 1150 IN VOID *NotificationHandle\r
66aa04e4 1151 )\r
66aa04e4 1152{\r
1153 USB_KB_DEV *UsbKeyboardDevice;\r
66aa04e4 1154 KEYBOARD_CONSOLE_IN_EX_NOTIFY *CurrentNotify;\r
1155 LIST_ENTRY *Link;\r
e15c65a3 1156 LIST_ENTRY *NotifyList;\r
66aa04e4 1157\r
1158 if (NotificationHandle == NULL) {\r
1159 return EFI_INVALID_PARAMETER;\r
3765794c 1160 }\r
0dc99784 1161\r
66aa04e4 1162 UsbKeyboardDevice = TEXT_INPUT_EX_USB_KB_DEV_FROM_THIS (This);\r
3765794c 1163\r
5899f27e 1164 //\r
1165 // Traverse notify list of USB keyboard and remove the entry of NotificationHandle.\r
1166 //\r
e15c65a3 1167 NotifyList = &UsbKeyboardDevice->NotifyList;\r
1168 for (Link = GetFirstNode (NotifyList);\r
1169 !IsNull (NotifyList, Link);\r
1170 Link = GetNextNode (NotifyList, Link)) {\r
66aa04e4 1171 CurrentNotify = CR (\r
3765794c 1172 Link,\r
1173 KEYBOARD_CONSOLE_IN_EX_NOTIFY,\r
1174 NotifyEntry,\r
66aa04e4 1175 USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE\r
3765794c 1176 );\r
402e4a9d 1177 if (CurrentNotify == NotificationHandle) {\r
66aa04e4 1178 //\r
1179 // Remove the notification function from NotifyList and free resources\r
1180 //\r
3765794c 1181 RemoveEntryList (&CurrentNotify->NotifyEntry);\r
7fc80d44 1182\r
3765794c 1183 FreePool (CurrentNotify);\r
66aa04e4 1184 return EFI_SUCCESS;\r
1185 }\r
1186 }\r
1187\r
8a67d804 1188 //\r
1189 // Cannot find the matching entry in database.\r
1190 //\r
3765794c 1191 return EFI_INVALID_PARAMETER;\r
66aa04e4 1192}\r
1193\r
4ae46dba
SZ
1194/**\r
1195 Process key notify.\r
1196\r
1197 @param Event Indicates the event that invoke this function.\r
1198 @param Context Indicates the calling context.\r
1199**/\r
1200VOID\r
1201EFIAPI\r
1202KeyNotifyProcessHandler (\r
1203 IN EFI_EVENT Event,\r
1204 IN VOID *Context\r
1205 )\r
1206{\r
1207 EFI_STATUS Status;\r
1208 USB_KB_DEV *UsbKeyboardDevice;\r
1209 EFI_KEY_DATA KeyData;\r
1210 LIST_ENTRY *Link;\r
1211 LIST_ENTRY *NotifyList;\r
1212 KEYBOARD_CONSOLE_IN_EX_NOTIFY *CurrentNotify;\r
1213 EFI_TPL OldTpl;\r
1214\r
1215 UsbKeyboardDevice = (USB_KB_DEV *) Context;\r
1216\r
1217 //\r
1218 // Invoke notification functions.\r
1219 //\r
1220 NotifyList = &UsbKeyboardDevice->NotifyList;\r
1221 while (TRUE) {\r
1222 //\r
1223 // Enter critical section\r
1224 // \r
1225 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);\r
1226 Status = Dequeue (&UsbKeyboardDevice->EfiKeyQueueForNotify, &KeyData, sizeof (KeyData));\r
1227 //\r
1228 // Leave critical section\r
1229 //\r
1230 gBS->RestoreTPL (OldTpl);\r
1231 if (EFI_ERROR (Status)) {\r
1232 break;\r
1233 }\r
1234 for (Link = GetFirstNode (NotifyList); !IsNull (NotifyList, Link); Link = GetNextNode (NotifyList, Link)) {\r
1235 CurrentNotify = CR (Link, KEYBOARD_CONSOLE_IN_EX_NOTIFY, NotifyEntry, USB_KB_CONSOLE_IN_EX_NOTIFY_SIGNATURE);\r
1236 if (IsKeyRegistered (&CurrentNotify->KeyData, &KeyData)) {\r
1237 CurrentNotify->KeyNotificationFn (&KeyData);\r
1238 }\r
1239 }\r
1240 }\r
1241}\r
1242\r