VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h@ 106386

Last change on this file since 106386 was 105670, checked in by vboxsync, 8 months ago

Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643

  • Property svn:eol-style set to native
File size: 18.5 KB
Line 
1/** @file
2
3Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
4Copyright (c) 2018, Linaro Ltd. All rights reserved.<BR>
5
6SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#ifndef _VIRTUAL_KEYBOARD_H_
11#define _VIRTUAL_KEYBOARD_H_
12
13#include <Guid/StatusCodeDataTypeId.h>
14#include <Protocol/DevicePath.h>
15#include <Protocol/PlatformVirtualKeyboard.h>
16#include <Protocol/SimpleTextIn.h>
17#include <Protocol/SimpleTextInEx.h>
18
19#include <Library/BaseLib.h>
20#include <Library/BaseMemoryLib.h>
21#include <Library/DebugLib.h>
22#include <Library/MemoryAllocationLib.h>
23#include <Library/IoLib.h>
24#include <Library/PcdLib.h>
25#include <Library/ReportStatusCodeLib.h>
26#include <Library/UefiBootServicesTableLib.h>
27#include <Library/UefiDriverEntryPoint.h>
28#include <Library/UefiLib.h>
29
30//
31// Driver Binding Externs
32//
33extern EFI_DRIVER_BINDING_PROTOCOL gVirtualKeyboardDriverBinding;
34extern EFI_COMPONENT_NAME_PROTOCOL gVirtualKeyboardComponentName;
35extern EFI_COMPONENT_NAME2_PROTOCOL gVirtualKeyboardComponentName2;
36
37//
38// VIRTUAL Keyboard Defines
39//
40#define CHAR_SCANCODE 0xe0
41#define CHAR_ESC 0x1b
42
43#define KEYBOARD_TIMEOUT 65536 // 0.07s
44#define KEYBOARD_WAITFORVALUE_TIMEOUT 1000000 // 1s
45#define KEYBOARD_BAT_TIMEOUT 4000000 // 4s
46#define KEYBOARD_TIMER_INTERVAL 500000 // 0.5s
47
48#define QUEUE_MAX_COUNT 32
49
50#define KEYBOARD_SCAN_CODE_MAX_COUNT 32
51
52//
53// VIRTUAL Keyboard Device Structure
54//
55#define VIRTUAL_KEYBOARD_DEV_SIGNATURE SIGNATURE_32 ('V', 'K', 'B', 'D')
56#define VIRTUAL_KEYBOARD_CONSOLE_IN_EX_NOTIFY_SIGNATURE SIGNATURE_32 ('v', 'k', 'c', 'n')
57
58typedef struct _VIRTUAL_KEYBOARD_CONSOLE_IN_EX_NOTIFY {
59 UINTN Signature;
60 EFI_KEY_DATA KeyData;
61 EFI_KEY_NOTIFY_FUNCTION KeyNotificationFn;
62 LIST_ENTRY NotifyEntry;
63} VIRTUAL_KEYBOARD_CONSOLE_IN_EX_NOTIFY;
64
65typedef struct {
66 UINTN Front;
67 UINTN Rear;
68 EFI_KEY_DATA Buffer[QUEUE_MAX_COUNT];
69} SIMPLE_QUEUE;
70
71typedef struct {
72 UINT8 Buffer[KEYBOARD_SCAN_CODE_MAX_COUNT];
73 UINTN Head;
74 UINTN Tail;
75} SCAN_CODE_QUEUE;
76
77typedef struct {
78 UINTN Signature;
79 EFI_HANDLE Handle;
80 PLATFORM_VIRTUAL_KBD_PROTOCOL *PlatformVirtual;
81 EFI_SIMPLE_TEXT_INPUT_PROTOCOL SimpleTextIn;
82 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL SimpleTextInputEx;
83
84 //
85 // Buffer storing EFI_KEY_DATA
86 //
87 SIMPLE_QUEUE Queue;
88 SIMPLE_QUEUE QueueForNotify;
89
90 //
91 // Notification Function List
92 //
93 LIST_ENTRY NotifyList;
94 EFI_EVENT KeyNotifyProcessEvent;
95 EFI_EVENT TimerEvent;
96} VIRTUAL_KEYBOARD_DEV;
97
98#define VIRTUAL_KEYBOARD_DEV_FROM_THIS(a) CR (a, VIRTUAL_KEYBOARD_DEV, SimpleTextIn, VIRTUAL_KEYBOARD_DEV_SIGNATURE)
99#define TEXT_INPUT_EX_VIRTUAL_KEYBOARD_DEV_FROM_THIS(a) \
100 CR (a, \
101 VIRTUAL_KEYBOARD_DEV, \
102 SimpleTextInputEx, \
103 VIRTUAL_KEYBOARD_DEV_SIGNATURE \
104 )
105
106//
107// Global Variables
108//
109extern EFI_DRIVER_BINDING_PROTOCOL gVirtualKeyboardDriverBinding;
110
111//
112// Driver Binding Protocol functions
113//
114
115/**
116 Check whether the driver supports this device.
117
118 @param This The Udriver binding protocol.
119 @param Controller The controller handle to check.
120 @param RemainingDevicePath The remaining device path.
121
122 @retval EFI_SUCCESS The driver supports this controller.
123 @retval other This device isn't supported.
124
125**/
126EFI_STATUS
127EFIAPI
128VirtualKeyboardDriverBindingSupported (
129 IN EFI_DRIVER_BINDING_PROTOCOL *This,
130 IN EFI_HANDLE Controller,
131 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
132 );
133
134/**
135 Starts the device with this driver.
136
137 @param This The driver binding instance.
138 @param Controller Handle of device to bind driver to.
139 @param RemainingDevicePath Optional parameter use to pick a specific child
140 device to start.
141
142 @retval EFI_SUCCESS The controller is controlled by the driver.
143 @retval Other This controller cannot be started.
144
145**/
146EFI_STATUS
147EFIAPI
148VirtualKeyboardDriverBindingStart (
149 IN EFI_DRIVER_BINDING_PROTOCOL *This,
150 IN EFI_HANDLE Controller,
151 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
152 );
153
154/**
155 Stop the device handled by this driver.
156
157 @param This The driver binding protocol.
158 @param Controller The controller to release.
159 @param NumberOfChildren The number of handles in ChildHandleBuffer.
160 @param ChildHandleBuffer The array of child handle.
161
162 @retval EFI_SUCCESS The device was stopped.
163 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
164 @retval Others Fail to uninstall protocols attached on the device.
165
166**/
167EFI_STATUS
168EFIAPI
169VirtualKeyboardDriverBindingStop (
170 IN EFI_DRIVER_BINDING_PROTOCOL *This,
171 IN EFI_HANDLE Controller,
172 IN UINTN NumberOfChildren,
173 IN EFI_HANDLE *ChildHandleBuffer
174 );
175
176/**
177 Retrieves a Unicode string that is the user readable name of the driver.
178
179 This function retrieves the user readable name of a driver in the form of a
180 Unicode string. If the driver specified by This has a user readable name in
181 the language specified by Language, then a pointer to the driver name is
182 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified
183 by This does not support the language specified by Language,
184 then EFI_UNSUPPORTED is returned.
185
186 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
187 EFI_COMPONENT_NAME_PROTOCOL instance.
188
189 @param Language[in] A pointer to a Null-terminated ASCII string
190 array indicating the language. This is the
191 language of the driver name that the caller is
192 requesting, and it must match one of the
193 languages specified in SupportedLanguages. The
194 number of languages supported by a driver is up
195 to the driver writer. Language is specified
196 in RFC 4646 or ISO 639-2 language code format.
197
198 @param DriverName[out] A pointer to the Unicode string to return.
199 This Unicode string is the name of the
200 driver specified by This in the language
201 specified by Language.
202
203 @retval EFI_SUCCESS The Unicode string for the Driver specified by
204 This and the language specified by Language was
205 returned in DriverName.
206
207 @retval EFI_INVALID_PARAMETER Language is NULL.
208
209 @retval EFI_INVALID_PARAMETER DriverName is NULL.
210
211 @retval EFI_UNSUPPORTED The driver specified by This does not support
212 the language specified by Language.
213
214**/
215EFI_STATUS
216EFIAPI
217VirtualKeyboardComponentNameGetDriverName (
218 IN EFI_COMPONENT_NAME_PROTOCOL *This,
219 IN CHAR8 *Language,
220 OUT CHAR16 **DriverName
221 );
222
223/**
224 Retrieves a Unicode string that is the user readable name of the controller
225 that is being managed by a driver.
226
227 This function retrieves the user readable name of the controller specified by
228 ControllerHandle and ChildHandle in the form of a Unicode string. If the
229 driver specified by This has a user readable name in the language specified by
230 Language, then a pointer to the controller name is returned in ControllerName,
231 and EFI_SUCCESS is returned. If the driver specified by This is not currently
232 managing the controller specified by ControllerHandle and ChildHandle,
233 then EFI_UNSUPPORTED is returned. If the driver specified by This does not
234 support the language specified by Language, then EFI_UNSUPPORTED is returned.
235
236 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
237 EFI_COMPONENT_NAME_PROTOCOL instance.
238
239 @param ControllerHandle[in] The handle of a controller that the driver
240 specified by This is managing. This handle
241 specifies the controller whose name is to be
242 returned.
243
244 @param ChildHandle[in] The handle of the child controller to retrieve
245 the name of. This is an optional parameter that
246 may be NULL. It will be NULL for device
247 drivers. It will also be NULL for a bus drivers
248 that wish to retrieve the name of the bus
249 controller. It will not be NULL for a bus
250 driver that wishes to retrieve the name of a
251 child controller.
252
253 @param Language[in] A pointer to a Null-terminated ASCII string
254 array indicating the language. This is the
255 language of the driver name that the caller is
256 requesting, and it must match one of the
257 languages specified in SupportedLanguages. The
258 number of languages supported by a driver is up
259 to the driver writer. Language is specified in
260 RFC 4646 or ISO 639-2 language code format.
261
262 @param ControllerName[out] A pointer to the Unicode string to return.
263 This Unicode string is the name of the
264 controller specified by ControllerHandle and
265 ChildHandle in the language specified by
266 Language from the point of view of the driver
267 specified by This.
268
269 @retval EFI_SUCCESS The Unicode string for the user readable name in
270 the language specified by Language for the
271 driver specified by This was returned in
272 DriverName.
273
274 @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.
275
276 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid
277 EFI_HANDLE.
278
279 @retval EFI_INVALID_PARAMETER Language is NULL.
280
281 @retval EFI_INVALID_PARAMETER ControllerName is NULL.
282
283 @retval EFI_UNSUPPORTED The driver specified by This is not currently
284 managing the controller specified by
285 ControllerHandle and ChildHandle.
286
287 @retval EFI_UNSUPPORTED The driver specified by This does not support
288 the language specified by Language.
289
290**/
291EFI_STATUS
292EFIAPI
293VirtualKeyboardComponentNameGetControllerName (
294 IN EFI_COMPONENT_NAME_PROTOCOL *This,
295 IN EFI_HANDLE ControllerHandle,
296 IN EFI_HANDLE ChildHandle OPTIONAL,
297 IN CHAR8 *Language,
298 OUT CHAR16 **ControllerName
299 );
300
301//
302// Simple Text Input Protocol functions
303//
304
305/**
306 Reset the Keyboard and do BAT test for it, if (ExtendedVerification == TRUE) then do some extra keyboard validations.
307
308 @param This Pointer of simple text Protocol.
309 @param ExtendedVerification Whether perform the extra validation of keyboard. True: perform; FALSE: skip.
310
311 @retval EFI_SUCCESS The command byte is written successfully.
312 @retval EFI_DEVICE_ERROR Errors occurred during resetting keyboard.
313
314**/
315EFI_STATUS
316EFIAPI
317VirtualKeyboardReset (
318 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
319 IN BOOLEAN ExtendedVerification
320 );
321
322/**
323 Reset the input device and optionally run diagnostics
324
325 @param This Protocol instance pointer.
326 @param ExtendedVerification Driver may perform diagnostics on reset.
327
328 @retval EFI_SUCCESS The device was reset.
329 @retval EFI_DEVICE_ERROR The device is not functioning properly and could
330 not be reset.
331
332**/
333EFI_STATUS
334EFIAPI
335VirtualKeyboardResetEx (
336 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
337 IN BOOLEAN ExtendedVerification
338 );
339
340/**
341 Set certain state for the input device.
342
343 @param This Protocol instance pointer.
344 @param KeyToggleState A pointer to the EFI_KEY_TOGGLE_STATE to set the
345 state for the input device.
346
347 @retval EFI_SUCCESS The device state was set successfully.
348 @retval EFI_DEVICE_ERROR The device is not functioning correctly and could
349 not have the setting adjusted.
350 @retval EFI_UNSUPPORTED The device does not have the ability to set its state.
351 @retval EFI_INVALID_PARAMETER KeyToggleState is NULL.
352
353**/
354EFI_STATUS
355EFIAPI
356VirtualKeyboardSetState (
357 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
358 IN EFI_KEY_TOGGLE_STATE *KeyToggleState
359 );
360
361/**
362 Register a notification function for a particular keystroke for the input device.
363
364 @param This Protocol instance pointer.
365 @param KeyData A pointer to a buffer that is filled in with the keystroke
366 information data for the key that was pressed.
367 @param KeyNotificationFunction Points to the function to be called when the key
368 sequence is typed specified by KeyData.
369 @param NotifyHandle Points to the unique handle assigned to the registered notification.
370
371
372 @retval EFI_SUCCESS The notification function was registered successfully.
373 @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necessary data structures.
374 @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL.
375
376**/
377EFI_STATUS
378EFIAPI
379VirtualKeyboardRegisterKeyNotify (
380 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
381 IN EFI_KEY_DATA *KeyData,
382 IN EFI_KEY_NOTIFY_FUNCTION KeyNotificationFunction,
383 OUT VOID **NotifyHandle
384 );
385
386/**
387 Remove a registered notification function from a particular keystroke.
388
389 @param This Protocol instance pointer.
390 @param NotificationHandle The handle of the notification function being unregistered.
391
392 @retval EFI_SUCCESS The notification function was unregistered successfully.
393 @retval EFI_INVALID_PARAMETER The NotificationHandle is invalid.
394
395**/
396EFI_STATUS
397EFIAPI
398VirtualKeyboardUnregisterKeyNotify (
399 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
400 IN VOID *NotificationHandle
401 );
402
403//
404// Private worker functions
405//
406
407/**
408 Free keyboard notify list.
409
410 @param ListHead The list head
411
412 @retval EFI_SUCCESS Free the notify list successfully
413 @retval EFI_INVALID_PARAMETER ListHead is invalid.
414
415**/
416EFI_STATUS
417VirtualKeyboardFreeNotifyList (
418 IN OUT LIST_ENTRY *ListHead
419 );
420
421/**
422 Check if key is registered.
423
424 @param RegsiteredData A pointer to a buffer that is filled in with the keystroke
425 state data for the key that was registered.
426 @param InputData A pointer to a buffer that is filled in with the keystroke
427 state data for the key that was pressed.
428
429 @retval TRUE Key be pressed matches a registered key.
430 @retval FALSE Match failed.
431
432**/
433BOOLEAN
434IsKeyRegistered (
435 IN EFI_KEY_DATA *RegsiteredData,
436 IN EFI_KEY_DATA *InputData
437 );
438
439/**
440 Waiting on the keyboard event, if there's any key pressed by the user, signal the event
441
442 @param Event The event that be signalled when any key has been struck.
443 @param Context Pointer of the protocol EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
444
445**/
446VOID
447EFIAPI
448VirtualKeyboardWaitForKey (
449 IN EFI_EVENT Event,
450 IN VOID *Context
451 );
452
453/**
454 Waiting on the keyboard event, if there's any key pressed by the user, signal the event
455
456 @param Event The event that be signalled when any key has been struck.
457 @param Context Pointer of the protocol EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
458
459**/
460VOID
461EFIAPI
462VirtualKeyboardWaitForKeyEx (
463 IN EFI_EVENT Event,
464 IN VOID *Context
465 );
466
467/**
468 Timer event handler: read a series of key stroke from 8042
469 and put them into memory key buffer.
470 It is registered as running under TPL_NOTIFY
471
472 @param Event The timer event
473 @param Context A VIRTUAL_KEYBOARD_DEV pointer
474
475**/
476VOID
477EFIAPI
478VirtualKeyboardTimerHandler (
479 IN EFI_EVENT Event,
480 IN VOID *Context
481 );
482
483/**
484 Process key notify.
485
486 @param Event Indicates the event that invoke this function.
487 @param Context Indicates the calling context.
488**/
489VOID
490EFIAPI
491KeyNotifyProcessHandler (
492 IN EFI_EVENT Event,
493 IN VOID *Context
494 );
495
496/**
497 Read out the scan code of the key that has just been stroked.
498
499 @param This Pointer of simple text Protocol.
500 @param Key Pointer for store the key that read out.
501
502 @retval EFI_SUCCESS The key is read out successfully.
503 @retval other The key reading failed.
504 @retval EFI_UNSUPPORTED The device does not support the ability to read keystroke data.
505
506**/
507EFI_STATUS
508EFIAPI
509VirtualKeyboardReadKeyStroke (
510 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
511 OUT EFI_INPUT_KEY *Key
512 );
513
514/**
515 Reads the next keystroke from the input device. The WaitForKey Event can
516 be used to test for existence of a keystroke via WaitForEvent () call.
517
518 @param This Protocol instance pointer.
519 @param KeyData A pointer to a buffer that is filled in with the keystroke
520 state data for the key that was pressed.
521
522 @retval EFI_SUCCESS The keystroke information was returned.
523 @retval EFI_NOT_READY There was no keystroke data available.
524 @retval EFI_DEVICE_ERROR The keystroke information was not returned due to
525 hardware errors.
526 @retval EFI_INVALID_PARAMETER KeyData is NULL.
527 @retval EFI_UNSUPPORTED The device does not support the ability to read keystroke data.
528
529**/
530EFI_STATUS
531EFIAPI
532VirtualKeyboardReadKeyStrokeEx (
533 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
534 OUT EFI_KEY_DATA *KeyData
535 );
536
537#endif /* _VIRTUAL_KEYBOARD_H_ */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette