]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2Keyboard.h
e0950ce113663bc346ea2259ffd55eca587b8758
[mirror_edk2.git] / MdeModulePkg / Bus / Isa / Ps2KeyboardDxe / Ps2Keyboard.h
1 /** @file
2 PS/2 keyboard driver header file
3
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _PS2KEYBOARD_H_
16 #define _PS2KEYBOARD_H_
17
18 #include <Uefi.h>
19
20 #include <Protocol/SuperIo.h>
21 #include <Protocol/SimpleTextIn.h>
22 #include <Protocol/SimpleTextInEx.h>
23 #include <Protocol/DevicePath.h>
24 #include <Protocol/Ps2Policy.h>
25
26 #include <Library/IoLib.h>
27 #include <Library/DevicePathLib.h>
28 #include <Library/UefiDriverEntryPoint.h>
29 #include <Library/UefiLib.h>
30 #include <Library/UefiBootServicesTableLib.h>
31 #include <Library/ReportStatusCodeLib.h>
32 #include <Library/DebugLib.h>
33 #include <Library/UefiRuntimeServicesTableLib.h>
34 #include <Library/MemoryAllocationLib.h>
35 #include <Library/BaseLib.h>
36 #include <Library/BaseMemoryLib.h>
37 #include <Library/TimerLib.h>
38 #include <Library/PcdLib.h>
39
40 //
41 // Global Variables
42 //
43 extern EFI_DRIVER_BINDING_PROTOCOL gKeyboardControllerDriver;
44 extern EFI_COMPONENT_NAME_PROTOCOL gPs2KeyboardComponentName;
45 extern EFI_COMPONENT_NAME2_PROTOCOL gPs2KeyboardComponentName2;
46
47 //
48 // Driver Private Data
49 //
50 #define KEYBOARD_CONSOLE_IN_DEV_SIGNATURE SIGNATURE_32 ('k', 'k', 'e', 'y')
51 #define KEYBOARD_CONSOLE_IN_EX_NOTIFY_SIGNATURE SIGNATURE_32 ('k', 'c', 'e', 'n')
52
53 typedef struct _KEYBOARD_CONSOLE_IN_EX_NOTIFY {
54 UINTN Signature;
55 EFI_KEY_DATA KeyData;
56 EFI_KEY_NOTIFY_FUNCTION KeyNotificationFn;
57 LIST_ENTRY NotifyEntry;
58 } KEYBOARD_CONSOLE_IN_EX_NOTIFY;
59
60 #define KEYBOARD_SCAN_CODE_MAX_COUNT 32
61 typedef struct {
62 UINT8 Buffer[KEYBOARD_SCAN_CODE_MAX_COUNT];
63 UINTN Head;
64 UINTN Tail;
65 } SCAN_CODE_QUEUE;
66
67 #define KEYBOARD_EFI_KEY_MAX_COUNT 256
68 typedef struct {
69 EFI_KEY_DATA Buffer[KEYBOARD_EFI_KEY_MAX_COUNT];
70 UINTN Head;
71 UINTN Tail;
72 } EFI_KEY_QUEUE;
73
74 typedef struct {
75 UINTN Signature;
76
77 EFI_HANDLE Handle;
78 EFI_SIMPLE_TEXT_INPUT_PROTOCOL ConIn;
79 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL ConInEx;
80
81 EFI_EVENT TimerEvent;
82
83 UINT32 DataRegisterAddress;
84 UINT32 StatusRegisterAddress;
85 UINT32 CommandRegisterAddress;
86
87 BOOLEAN LeftCtrl;
88 BOOLEAN RightCtrl;
89 BOOLEAN LeftAlt;
90 BOOLEAN RightAlt;
91 BOOLEAN LeftShift;
92 BOOLEAN RightShift;
93 BOOLEAN LeftLogo;
94 BOOLEAN RightLogo;
95 BOOLEAN Menu;
96 BOOLEAN SysReq;
97
98 BOOLEAN CapsLock;
99 BOOLEAN NumLock;
100 BOOLEAN ScrollLock;
101
102 BOOLEAN IsSupportPartialKey;
103 //
104 // Queue storing key scancodes
105 //
106 SCAN_CODE_QUEUE ScancodeQueue;
107 EFI_KEY_QUEUE EfiKeyQueue;
108 EFI_KEY_QUEUE EfiKeyQueueForNotify;
109
110 //
111 // Error state
112 //
113 BOOLEAN KeyboardErr;
114
115 EFI_UNICODE_STRING_TABLE *ControllerNameTable;
116
117 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
118 //
119 // Notification Function List
120 //
121 LIST_ENTRY NotifyList;
122 EFI_EVENT KeyNotifyProcessEvent;
123 } KEYBOARD_CONSOLE_IN_DEV;
124
125 #define KEYBOARD_CONSOLE_IN_DEV_FROM_THIS(a) CR (a, KEYBOARD_CONSOLE_IN_DEV, ConIn, KEYBOARD_CONSOLE_IN_DEV_SIGNATURE)
126 #define TEXT_INPUT_EX_KEYBOARD_CONSOLE_IN_DEV_FROM_THIS(a) \
127 CR (a, \
128 KEYBOARD_CONSOLE_IN_DEV, \
129 ConInEx, \
130 KEYBOARD_CONSOLE_IN_DEV_SIGNATURE \
131 )
132
133 #define TABLE_END 0x0
134
135 //
136 // Driver entry point
137 //
138 /**
139 The user Entry Point for module Ps2Keyboard. The user code starts with this function.
140
141 @param[in] ImageHandle The firmware allocated handle for the EFI image.
142 @param[in] SystemTable A pointer to the EFI System Table.
143
144 @retval EFI_SUCCESS The entry point is executed successfully.
145 @retval other Some error occurs when executing this entry point.
146
147 **/
148 EFI_STATUS
149 EFIAPI
150 InstallPs2KeyboardDriver (
151 IN EFI_HANDLE ImageHandle,
152 IN EFI_SYSTEM_TABLE *SystemTable
153 );
154
155 #define KEYBOARD_8042_DATA_REGISTER 0x60
156 #define KEYBOARD_8042_STATUS_REGISTER 0x64
157 #define KEYBOARD_8042_COMMAND_REGISTER 0x64
158
159 #define KEYBOARD_KBEN 0xF4
160 #define KEYBOARD_CMDECHO_ACK 0xFA
161
162 #define KEYBOARD_MAX_TRY 256 // 256
163 #define KEYBOARD_TIMEOUT 65536 // 0.07s
164 #define KEYBOARD_WAITFORVALUE_TIMEOUT 1000000 // 1s
165 #define KEYBOARD_BAT_TIMEOUT 4000000 // 4s
166 #define KEYBOARD_TIMER_INTERVAL 200000 // 0.02s
167 #define SCANCODE_EXTENDED0 0xE0
168 #define SCANCODE_EXTENDED1 0xE1
169 #define SCANCODE_CTRL_MAKE 0x1D
170 #define SCANCODE_CTRL_BREAK 0x9D
171 #define SCANCODE_ALT_MAKE 0x38
172 #define SCANCODE_ALT_BREAK 0xB8
173 #define SCANCODE_LEFT_SHIFT_MAKE 0x2A
174 #define SCANCODE_LEFT_SHIFT_BREAK 0xAA
175 #define SCANCODE_RIGHT_SHIFT_MAKE 0x36
176 #define SCANCODE_RIGHT_SHIFT_BREAK 0xB6
177 #define SCANCODE_CAPS_LOCK_MAKE 0x3A
178 #define SCANCODE_NUM_LOCK_MAKE 0x45
179 #define SCANCODE_SCROLL_LOCK_MAKE 0x46
180 #define SCANCODE_DELETE_MAKE 0x53
181 #define SCANCODE_LEFT_LOGO_MAKE 0x5B //GUI key defined in Keyboard scan code
182 #define SCANCODE_LEFT_LOGO_BREAK 0xDB
183 #define SCANCODE_RIGHT_LOGO_MAKE 0x5C
184 #define SCANCODE_RIGHT_LOGO_BREAK 0xDC
185 #define SCANCODE_MENU_MAKE 0x5D //APPS key defined in Keyboard scan code
186 #define SCANCODE_MENU_BREAK 0xDD
187 #define SCANCODE_SYS_REQ_MAKE 0x37
188 #define SCANCODE_SYS_REQ_BREAK 0xB7
189 #define SCANCODE_SYS_REQ_MAKE_WITH_ALT 0x54
190 #define SCANCODE_SYS_REQ_BREAK_WITH_ALT 0xD4
191
192 #define SCANCODE_MAX_MAKE 0x60
193
194
195 #define KEYBOARD_STATUS_REGISTER_HAS_OUTPUT_DATA BIT0 ///< 0 - Output register has no data; 1 - Output register has data
196 #define KEYBOARD_STATUS_REGISTER_HAS_INPUT_DATA BIT1 ///< 0 - Input register has no data; 1 - Input register has data
197 #define KEYBOARD_STATUS_REGISTER_SYSTEM_FLAG BIT2 ///< Set to 0 after power on reset
198 #define KEYBOARD_STATUS_REGISTER_INPUT_DATA_TYPE BIT3 ///< 0 - Data in input register is data; 1 - Data in input register is command
199 #define KEYBOARD_STATUS_REGISTER_ENABLE_FLAG BIT4 ///< 0 - Keyboard is disable; 1 - Keyboard is enable
200 #define KEYBOARD_STATUS_REGISTER_TRANSMIT_TIMEOUT BIT5 ///< 0 - Transmit is complete without timeout; 1 - Transmit is timeout without complete
201 #define KEYBOARD_STATUS_REGISTER_RECEIVE_TIMEOUT BIT6 ///< 0 - Receive is complete without timeout; 1 - Receive is timeout without complete
202 #define KEYBOARD_STATUS_REGISTER_PARITY BIT7 ///< 0 - Odd parity; 1 - Even parity
203
204 #define KEYBOARD_8042_COMMAND_READ 0x20
205 #define KEYBOARD_8042_COMMAND_WRITE 0x60
206 #define KEYBOARD_8042_COMMAND_DISABLE_MOUSE_INTERFACE 0xA7
207 #define KEYBOARD_8042_COMMAND_ENABLE_MOUSE_INTERFACE 0xA8
208 #define KEYBOARD_8042_COMMAND_CONTROLLER_SELF_TEST 0xAA
209 #define KEYBOARD_8042_COMMAND_KEYBOARD_INTERFACE_SELF_TEST 0xAB
210 #define KEYBOARD_8042_COMMAND_DISABLE_KEYBOARD_INTERFACE 0xAD
211
212 #define KEYBOARD_8048_COMMAND_CLEAR_OUTPUT_DATA 0xF4
213 #define KEYBOARD_8048_COMMAND_RESET 0xFF
214 #define KEYBOARD_8048_COMMAND_SELECT_SCAN_CODE_SET 0xF0
215
216 #define KEYBOARD_8048_RETURN_8042_BAT_SUCCESS 0xAA
217 #define KEYBOARD_8048_RETURN_8042_BAT_ERROR 0xFC
218 #define KEYBOARD_8048_RETURN_8042_ACK 0xFA
219
220
221 //
222 // Keyboard Controller Status
223 //
224 #define KBC_PARE 0x80 // Parity Error
225 #define KBC_TIM 0x40 // General Time Out
226
227 //
228 // Other functions that are used among .c files
229 //
230 /**
231 Show keyboard status lights according to
232 indicators in ConsoleIn.
233
234 @param ConsoleIn Pointer to instance of KEYBOARD_CONSOLE_IN_DEV
235
236 @return status
237
238 **/
239 EFI_STATUS
240 UpdateStatusLights (
241 IN KEYBOARD_CONSOLE_IN_DEV *ConsoleIn
242 );
243
244 /**
245 write key to keyboard.
246
247 @param ConsoleIn Pointer to instance of KEYBOARD_CONSOLE_IN_DEV
248 @param Data value wanted to be written
249
250 @retval EFI_TIMEOUT - GC_TODO: Add description for return value
251 @retval EFI_SUCCESS - GC_TODO: Add description for return value
252
253 **/
254 EFI_STATUS
255 KeyboardRead (
256 IN KEYBOARD_CONSOLE_IN_DEV *ConsoleIn,
257 OUT UINT8 *Data
258 );
259
260 /**
261 Get scancode from scancode buffer and translate into EFI-scancode and unicode defined by EFI spec.
262
263 The function is always called in TPL_NOTIFY.
264
265 @param ConsoleIn KEYBOARD_CONSOLE_IN_DEV instance pointer
266
267 **/
268 VOID
269 KeyGetchar (
270 IN OUT KEYBOARD_CONSOLE_IN_DEV *ConsoleIn
271 );
272
273 /**
274 Process key notify.
275
276 @param Event Indicates the event that invoke this function.
277 @param Context Indicates the calling context.
278 **/
279 VOID
280 EFIAPI
281 KeyNotifyProcessHandler (
282 IN EFI_EVENT Event,
283 IN VOID *Context
284 );
285
286 /**
287 Perform 8042 controller and keyboard Initialization.
288 If ExtendedVerification is TRUE, do additional test for
289 the keyboard interface
290
291 @param ConsoleIn - KEYBOARD_CONSOLE_IN_DEV instance pointer
292 @param ExtendedVerification - indicates a thorough initialization
293
294 @retval EFI_DEVICE_ERROR Fail to init keyboard
295 @retval EFI_SUCCESS Success to init keyboard
296 **/
297 EFI_STATUS
298 InitKeyboard (
299 IN OUT KEYBOARD_CONSOLE_IN_DEV *ConsoleIn,
300 IN BOOLEAN ExtendedVerification
301 );
302
303
304 /**
305 Timer event handler: read a series of scancodes from 8042
306 and put them into memory scancode buffer.
307 it read as much scancodes to either fill
308 the memory buffer or empty the keyboard buffer.
309 It is registered as running under TPL_NOTIFY
310
311 @param Event - The timer event
312 @param Context - A KEYBOARD_CONSOLE_IN_DEV pointer
313
314 **/
315 VOID
316 EFIAPI
317 KeyboardTimerHandler (
318 IN EFI_EVENT Event,
319 IN VOID *Context
320 );
321
322 /**
323 logic reset keyboard
324 Implement SIMPLE_TEXT_IN.Reset()
325 Perform 8042 controller and keyboard initialization
326
327 @param This Pointer to instance of EFI_SIMPLE_TEXT_INPUT_PROTOCOL
328 @param ExtendedVerification Indicate that the driver may perform a more
329 exhaustive verification operation of the device during
330 reset, now this par is ignored in this driver
331
332 **/
333 EFI_STATUS
334 EFIAPI
335 KeyboardEfiReset (
336 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
337 IN BOOLEAN ExtendedVerification
338 );
339
340 /**
341 Implement SIMPLE_TEXT_IN.ReadKeyStroke().
342 Retrieve key values for driver user.
343
344 @param This Pointer to instance of EFI_SIMPLE_TEXT_INPUT_PROTOCOL
345 @param Key The output buffer for key value
346
347 @retval EFI_SUCCESS success to read key stroke
348 **/
349 EFI_STATUS
350 EFIAPI
351 KeyboardReadKeyStroke (
352 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
353 OUT EFI_INPUT_KEY *Key
354 );
355
356 /**
357 Event notification function for SIMPLE_TEXT_IN.WaitForKey event
358 Signal the event if there is key available
359
360 @param Event the event object
361 @param Context waitting context
362
363 **/
364 VOID
365 EFIAPI
366 KeyboardWaitForKey (
367 IN EFI_EVENT Event,
368 IN VOID *Context
369 );
370
371 /**
372 Read status register.
373
374 @param ConsoleIn Pointer to instance of KEYBOARD_CONSOLE_IN_DEV
375
376 @return value in status register
377
378 **/
379 UINT8
380 KeyReadStatusRegister (
381 IN KEYBOARD_CONSOLE_IN_DEV *ConsoleIn
382 );
383
384 /**
385 Check whether there is Ps/2 Keyboard device in system by 0xF4 Keyboard Command
386 If Keyboard receives 0xF4, it will respond with 'ACK'. If it doesn't respond, the device
387 should not be in system.
388
389 @param[in] ConsoleIn Pointer to instance of KEYBOARD_CONSOLE_IN_DEV
390
391 @retval TRUE Keyboard in System.
392 @retval FALSE Keyboard not in System.
393 **/
394 BOOLEAN
395 EFIAPI
396 CheckKeyboardConnect (
397 IN KEYBOARD_CONSOLE_IN_DEV *ConsoleIn
398 );
399
400 /**
401 Event notification function for SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx event
402 Signal the event if there is key available
403
404 @param Event event object
405 @param Context waiting context
406
407 **/
408 VOID
409 EFIAPI
410 KeyboardWaitForKeyEx (
411 IN EFI_EVENT Event,
412 IN VOID *Context
413 );
414
415 //
416 // Simple Text Input Ex protocol function prototypes
417 //
418
419 /**
420 Reset the input device and optionaly run diagnostics
421
422 @param This - Protocol instance pointer.
423 @param ExtendedVerification - Driver may perform diagnostics on reset.
424
425 @retval EFI_SUCCESS - The device was reset.
426 @retval EFI_DEVICE_ERROR - The device is not functioning properly and could
427 not be reset.
428
429 **/
430 EFI_STATUS
431 EFIAPI
432 KeyboardEfiResetEx (
433 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
434 IN BOOLEAN ExtendedVerification
435 );
436
437 /**
438 Reads the next keystroke from the input device. The WaitForKey Event can
439 be used to test for existance of a keystroke via WaitForEvent () call.
440
441
442 @param This - Protocol instance pointer.
443 @param KeyData - A pointer to a buffer that is filled in with the keystroke
444 state data for the key that was pressed.
445
446 @retval EFI_SUCCESS - The keystroke information was returned.
447 @retval EFI_NOT_READY - There was no keystroke data availiable.
448 @retval EFI_DEVICE_ERROR - The keystroke information was not returned due to
449 hardware errors.
450 @retval EFI_INVALID_PARAMETER - KeyData is NULL.
451
452 **/
453 EFI_STATUS
454 EFIAPI
455 KeyboardReadKeyStrokeEx (
456 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
457 OUT EFI_KEY_DATA *KeyData
458 );
459
460 /**
461 Set certain state for the input device.
462
463 @param This - Protocol instance pointer.
464 @param KeyToggleState - A pointer to the EFI_KEY_TOGGLE_STATE to set the
465 state for the input device.
466
467 @retval EFI_SUCCESS - The device state was set successfully.
468 @retval EFI_DEVICE_ERROR - The device is not functioning correctly and could
469 not have the setting adjusted.
470 @retval EFI_UNSUPPORTED - The device does not have the ability to set its state.
471 @retval EFI_INVALID_PARAMETER - KeyToggleState is NULL.
472
473 **/
474 EFI_STATUS
475 EFIAPI
476 KeyboardSetState (
477 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
478 IN EFI_KEY_TOGGLE_STATE *KeyToggleState
479 );
480
481 /**
482 Register a notification function for a particular keystroke for the input device.
483
484 @param This - Protocol instance pointer.
485 @param KeyData - A pointer to a buffer that is filled in with the keystroke
486 information data for the key that was pressed. If KeyData.Key,
487 KeyData.KeyState.KeyToggleState and KeyData.KeyState.KeyShiftState are 0,
488 then any incomplete keystroke will trigger a notification of the KeyNotificationFunction.
489 @param KeyNotificationFunction - Points to the function to be called when the key
490 sequence is typed specified by KeyData. This notification function
491 should be called at <=TPL_CALLBACK.
492 @param NotifyHandle - Points to the unique handle assigned to the registered notification.
493
494 @retval EFI_SUCCESS - The notification function was registered successfully.
495 @retval EFI_OUT_OF_RESOURCES - Unable to allocate resources for necesssary data structures.
496 @retval EFI_INVALID_PARAMETER - KeyData or NotifyHandle is NULL.
497
498 **/
499 EFI_STATUS
500 EFIAPI
501 KeyboardRegisterKeyNotify (
502 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
503 IN EFI_KEY_DATA *KeyData,
504 IN EFI_KEY_NOTIFY_FUNCTION KeyNotificationFunction,
505 OUT VOID **NotifyHandle
506 );
507
508 /**
509 Remove a registered notification function from a particular keystroke.
510
511 @param This - Protocol instance pointer.
512 @param NotificationHandle - The handle of the notification function being unregistered.
513
514
515 @retval EFI_SUCCESS - The notification function was unregistered successfully.
516 @retval EFI_INVALID_PARAMETER - The NotificationHandle is invalid.
517 @retval EFI_NOT_FOUND - Can not find the matching entry in database.
518
519 **/
520 EFI_STATUS
521 EFIAPI
522 KeyboardUnregisterKeyNotify (
523 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
524 IN VOID *NotificationHandle
525 );
526
527 /**
528 Push one key data to the EFI key buffer.
529
530 @param Queue Pointer to instance of EFI_KEY_QUEUE.
531 @param KeyData The key data to push.
532 **/
533 VOID
534 PushEfikeyBufTail (
535 IN EFI_KEY_QUEUE *Queue,
536 IN EFI_KEY_DATA *KeyData
537 );
538
539 /**
540 Judge whether is a registed key
541
542 @param RegsiteredData A pointer to a buffer that is filled in with the keystroke
543 state data for the key that was registered.
544 @param InputData A pointer to a buffer that is filled in with the keystroke
545 state data for the key that was pressed.
546
547 @retval TRUE Key be pressed matches a registered key.
548 @retval FLASE Match failed.
549
550 **/
551 BOOLEAN
552 IsKeyRegistered (
553 IN EFI_KEY_DATA *RegsiteredData,
554 IN EFI_KEY_DATA *InputData
555 );
556
557 /**
558 Initialize the key state.
559
560 @param ConsoleIn The KEYBOARD_CONSOLE_IN_DEV instance.
561 @param KeyState A pointer to receive the key state information.
562 **/
563 VOID
564 InitializeKeyState (
565 IN KEYBOARD_CONSOLE_IN_DEV *ConsoleIn,
566 OUT EFI_KEY_STATE *KeyState
567 );
568
569 #endif