]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/TerminalDxe/TerminalConIn.c
Remove redundant IsUnicodeFiFoEmpty ()in UnicodeFiFoRemoveOneKey().
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / TerminalConIn.c
1 /** @file
2 Implementation for EFI_SIMPLE_TEXT_INPUT_PROTOCOL protocol.
3
4 Copyright (c) 2006 - 2014, 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 #include "Terminal.h"
16
17
18 /**
19 Reads the next keystroke from the input device. The WaitForKey Event can
20 be used to test for existence of a keystroke via WaitForEvent () call.
21
22 @param TerminalDevice Terminal driver private structure
23 @param KeyData A pointer to a buffer that is filled in with the
24 keystroke state data for the key that was
25 pressed.
26
27 @retval EFI_SUCCESS The keystroke information was returned.
28 @retval EFI_NOT_READY There was no keystroke data available.
29 @retval EFI_INVALID_PARAMETER KeyData is NULL.
30
31 **/
32 EFI_STATUS
33 ReadKeyStrokeWorker (
34 IN TERMINAL_DEV *TerminalDevice,
35 OUT EFI_KEY_DATA *KeyData
36 )
37 {
38 if (KeyData == NULL) {
39 return EFI_INVALID_PARAMETER;
40 }
41
42 if (!EfiKeyFiFoRemoveOneKey (TerminalDevice, &KeyData->Key)) {
43 return EFI_NOT_READY;
44 }
45
46 KeyData->KeyState.KeyShiftState = 0;
47 KeyData->KeyState.KeyToggleState = 0;
48
49
50 return EFI_SUCCESS;
51
52 }
53
54 /**
55 Implements EFI_SIMPLE_TEXT_INPUT_PROTOCOL.Reset().
56 This driver only perform dependent serial device reset regardless of
57 the value of ExtendeVerification
58
59 @param This Indicates the calling context.
60 @param ExtendedVerification Skip by this driver.
61
62 @retval EFI_SUCCESS The reset operation succeeds.
63 @retval EFI_DEVICE_ERROR The dependent serial port reset fails.
64
65 **/
66 EFI_STATUS
67 EFIAPI
68 TerminalConInReset (
69 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
70 IN BOOLEAN ExtendedVerification
71 )
72 {
73 EFI_STATUS Status;
74 TERMINAL_DEV *TerminalDevice;
75
76 TerminalDevice = TERMINAL_CON_IN_DEV_FROM_THIS (This);
77
78 //
79 // Report progress code here
80 //
81 REPORT_STATUS_CODE_WITH_DEVICE_PATH (
82 EFI_PROGRESS_CODE,
83 (EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_PC_RESET),
84 TerminalDevice->DevicePath
85 );
86
87 Status = TerminalDevice->SerialIo->Reset (TerminalDevice->SerialIo);
88
89 //
90 // Make all the internal buffer empty for keys
91 //
92 TerminalDevice->RawFiFo->Head = TerminalDevice->RawFiFo->Tail;
93 TerminalDevice->UnicodeFiFo->Head = TerminalDevice->UnicodeFiFo->Tail;
94 TerminalDevice->EfiKeyFiFo->Head = TerminalDevice->EfiKeyFiFo->Tail;
95
96 if (EFI_ERROR (Status)) {
97 REPORT_STATUS_CODE_WITH_DEVICE_PATH (
98 EFI_ERROR_CODE | EFI_ERROR_MINOR,
99 (EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_CONTROLLER_ERROR),
100 TerminalDevice->DevicePath
101 );
102 }
103
104 return Status;
105 }
106
107 /**
108 Implements EFI_SIMPLE_TEXT_INPUT_PROTOCOL.ReadKeyStroke().
109
110 @param This Indicates the calling context.
111 @param Key A pointer to a buffer that is filled in with the
112 keystroke information for the key that was sent
113 from terminal.
114
115 @retval EFI_SUCCESS The keystroke information is returned successfully.
116 @retval EFI_NOT_READY There is no keystroke data available.
117 @retval EFI_DEVICE_ERROR The dependent serial device encounters error.
118
119 **/
120 EFI_STATUS
121 EFIAPI
122 TerminalConInReadKeyStroke (
123 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,
124 OUT EFI_INPUT_KEY *Key
125 )
126 {
127 TERMINAL_DEV *TerminalDevice;
128 EFI_STATUS Status;
129 EFI_KEY_DATA KeyData;
130
131 //
132 // get TERMINAL_DEV from "This" parameter.
133 //
134 TerminalDevice = TERMINAL_CON_IN_DEV_FROM_THIS (This);
135
136 Status = ReadKeyStrokeWorker (TerminalDevice, &KeyData);
137 if (EFI_ERROR (Status)) {
138 return Status;
139 }
140
141 CopyMem (Key, &KeyData.Key, sizeof (EFI_INPUT_KEY));
142
143 return EFI_SUCCESS;
144
145 }
146
147 /**
148 Check if the key already has been registered.
149
150 If both RegsiteredData and InputData is NULL, then ASSERT().
151
152 @param RegsiteredData A pointer to a buffer that is filled in with the
153 keystroke state data for the key that was
154 registered.
155 @param InputData A pointer to a buffer that is filled in with the
156 keystroke state data for the key that was
157 pressed.
158
159 @retval TRUE Key be pressed matches a registered key.
160 @retval FLASE Match failed.
161
162 **/
163 BOOLEAN
164 IsKeyRegistered (
165 IN EFI_KEY_DATA *RegsiteredData,
166 IN EFI_KEY_DATA *InputData
167 )
168 {
169 ASSERT (RegsiteredData != NULL && InputData != NULL);
170
171 if ((RegsiteredData->Key.ScanCode != InputData->Key.ScanCode) ||
172 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
173 return FALSE;
174 }
175
176 return TRUE;
177 }
178
179
180
181 /**
182 Event notification function for EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx event
183 Signal the event if there is key available
184
185 @param Event Indicates the event that invoke this function.
186 @param Context Indicates the calling context.
187
188 **/
189 VOID
190 EFIAPI
191 TerminalConInWaitForKeyEx (
192 IN EFI_EVENT Event,
193 IN VOID *Context
194 )
195 {
196 TerminalConInWaitForKey (Event, Context);
197 }
198
199 //
200 // Simple Text Input Ex protocol functions
201 //
202
203 /**
204 Reset the input device and optionally run diagnostics
205
206 @param This Protocol instance pointer.
207 @param ExtendedVerification Driver may perform diagnostics on reset.
208
209 @retval EFI_SUCCESS The device was reset.
210 @retval EFI_DEVICE_ERROR The device is not functioning properly and could
211 not be reset.
212
213 **/
214 EFI_STATUS
215 EFIAPI
216 TerminalConInResetEx (
217 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
218 IN BOOLEAN ExtendedVerification
219 )
220 {
221 EFI_STATUS Status;
222 TERMINAL_DEV *TerminalDevice;
223
224 TerminalDevice = TERMINAL_CON_IN_EX_DEV_FROM_THIS (This);
225
226 Status = TerminalDevice->SimpleInput.Reset (&TerminalDevice->SimpleInput, ExtendedVerification);
227 if (EFI_ERROR (Status)) {
228 return EFI_DEVICE_ERROR;
229 }
230
231 return EFI_SUCCESS;
232
233 }
234
235
236 /**
237 Reads the next keystroke from the input device. The WaitForKey Event can
238 be used to test for existence of a keystroke via WaitForEvent () call.
239
240 @param This Protocol instance pointer.
241 @param KeyData A pointer to a buffer that is filled in with the
242 keystroke state data for the key that was
243 pressed.
244
245 @retval EFI_SUCCESS The keystroke information was returned.
246 @retval EFI_NOT_READY There was no keystroke data available.
247 @retval EFI_DEVICE_ERROR The keystroke information was not returned due
248 to hardware errors.
249 @retval EFI_INVALID_PARAMETER KeyData is NULL.
250
251 **/
252 EFI_STATUS
253 EFIAPI
254 TerminalConInReadKeyStrokeEx (
255 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
256 OUT EFI_KEY_DATA *KeyData
257 )
258 {
259 TERMINAL_DEV *TerminalDevice;
260
261 if (KeyData == NULL) {
262 return EFI_INVALID_PARAMETER;
263 }
264
265 TerminalDevice = TERMINAL_CON_IN_EX_DEV_FROM_THIS (This);
266
267 return ReadKeyStrokeWorker (TerminalDevice, KeyData);
268
269 }
270
271
272 /**
273 Set certain state for the input device.
274
275 @param This Protocol instance pointer.
276 @param KeyToggleState A pointer to the EFI_KEY_TOGGLE_STATE to set the
277 state for the input device.
278
279 @retval EFI_SUCCESS The device state was set successfully.
280 @retval EFI_DEVICE_ERROR The device is not functioning correctly and
281 could not have the setting adjusted.
282 @retval EFI_UNSUPPORTED The device does not have the ability to set its
283 state.
284 @retval EFI_INVALID_PARAMETER KeyToggleState is NULL.
285
286 **/
287 EFI_STATUS
288 EFIAPI
289 TerminalConInSetState (
290 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
291 IN EFI_KEY_TOGGLE_STATE *KeyToggleState
292 )
293 {
294 if (KeyToggleState == NULL) {
295 return EFI_INVALID_PARAMETER;
296 }
297
298 if ((*KeyToggleState & EFI_TOGGLE_STATE_VALID) != EFI_TOGGLE_STATE_VALID) {
299 return EFI_UNSUPPORTED;
300 }
301
302 return EFI_SUCCESS;
303 }
304
305
306 /**
307 Register a notification function for a particular keystroke for the input device.
308
309 @param This Protocol instance pointer.
310 @param KeyData A pointer to a buffer that is filled in with the
311 keystroke information data for the key that was
312 pressed.
313 @param KeyNotificationFunction Points to the function to be called when the key
314 sequence is typed specified by KeyData.
315 @param NotifyHandle Points to the unique handle assigned to the
316 registered notification.
317
318 @retval EFI_SUCCESS The notification function was registered
319 successfully.
320 @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necessary data
321 structures.
322 @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL.
323
324 **/
325 EFI_STATUS
326 EFIAPI
327 TerminalConInRegisterKeyNotify (
328 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
329 IN EFI_KEY_DATA *KeyData,
330 IN EFI_KEY_NOTIFY_FUNCTION KeyNotificationFunction,
331 OUT VOID **NotifyHandle
332 )
333 {
334 TERMINAL_DEV *TerminalDevice;
335 TERMINAL_CONSOLE_IN_EX_NOTIFY *NewNotify;
336 LIST_ENTRY *Link;
337 LIST_ENTRY *NotifyList;
338 TERMINAL_CONSOLE_IN_EX_NOTIFY *CurrentNotify;
339
340 if (KeyData == NULL || NotifyHandle == NULL || KeyNotificationFunction == NULL) {
341 return EFI_INVALID_PARAMETER;
342 }
343
344 TerminalDevice = TERMINAL_CON_IN_EX_DEV_FROM_THIS (This);
345
346 //
347 // Return EFI_SUCCESS if the (KeyData, NotificationFunction) is already registered.
348 //
349 NotifyList = &TerminalDevice->NotifyList;
350 for (Link = GetFirstNode (NotifyList); !IsNull (NotifyList,Link); Link = GetNextNode (NotifyList,Link)) {
351 CurrentNotify = CR (
352 Link,
353 TERMINAL_CONSOLE_IN_EX_NOTIFY,
354 NotifyEntry,
355 TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE
356 );
357 if (IsKeyRegistered (&CurrentNotify->KeyData, KeyData)) {
358 if (CurrentNotify->KeyNotificationFn == KeyNotificationFunction) {
359 *NotifyHandle = CurrentNotify;
360 return EFI_SUCCESS;
361 }
362 }
363 }
364
365 //
366 // Allocate resource to save the notification function
367 //
368 NewNotify = (TERMINAL_CONSOLE_IN_EX_NOTIFY *) AllocateZeroPool (sizeof (TERMINAL_CONSOLE_IN_EX_NOTIFY));
369 if (NewNotify == NULL) {
370 return EFI_OUT_OF_RESOURCES;
371 }
372
373 NewNotify->Signature = TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE;
374 NewNotify->KeyNotificationFn = KeyNotificationFunction;
375 CopyMem (&NewNotify->KeyData, KeyData, sizeof (EFI_KEY_DATA));
376 InsertTailList (&TerminalDevice->NotifyList, &NewNotify->NotifyEntry);
377
378 *NotifyHandle = NewNotify;
379
380 return EFI_SUCCESS;
381 }
382
383
384 /**
385 Remove a registered notification function from a particular keystroke.
386
387 @param This Protocol instance pointer.
388 @param NotificationHandle The handle of the notification function being
389 unregistered.
390
391 @retval EFI_SUCCESS The notification function was unregistered
392 successfully.
393 @retval EFI_INVALID_PARAMETER The NotificationHandle is invalid.
394
395 **/
396 EFI_STATUS
397 EFIAPI
398 TerminalConInUnregisterKeyNotify (
399 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,
400 IN VOID *NotificationHandle
401 )
402 {
403 TERMINAL_DEV *TerminalDevice;
404 LIST_ENTRY *Link;
405 TERMINAL_CONSOLE_IN_EX_NOTIFY *CurrentNotify;
406 LIST_ENTRY *NotifyList;
407
408 if (NotificationHandle == NULL) {
409 return EFI_INVALID_PARAMETER;
410 }
411
412 TerminalDevice = TERMINAL_CON_IN_EX_DEV_FROM_THIS (This);
413
414 NotifyList = &TerminalDevice->NotifyList;
415 for (Link = GetFirstNode (NotifyList); !IsNull (NotifyList,Link); Link = GetNextNode (NotifyList,Link)) {
416 CurrentNotify = CR (
417 Link,
418 TERMINAL_CONSOLE_IN_EX_NOTIFY,
419 NotifyEntry,
420 TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE
421 );
422 if (CurrentNotify == NotificationHandle) {
423 //
424 // Remove the notification function from NotifyList and free resources
425 //
426 RemoveEntryList (&CurrentNotify->NotifyEntry);
427
428 gBS->FreePool (CurrentNotify);
429 return EFI_SUCCESS;
430 }
431 }
432
433 //
434 // Can not find the matching entry in database.
435 //
436 return EFI_INVALID_PARAMETER;
437 }
438
439 /**
440 Translate raw data into Unicode (according to different encode), and
441 translate Unicode into key information. (according to different standard).
442
443 @param TerminalDevice Terminal driver private structure.
444
445 **/
446 VOID
447 TranslateRawDataToEfiKey (
448 IN TERMINAL_DEV *TerminalDevice
449 )
450 {
451 switch (TerminalDevice->TerminalType) {
452
453 case PCANSITYPE:
454 case VT100TYPE:
455 case VT100PLUSTYPE:
456 AnsiRawDataToUnicode (TerminalDevice);
457 UnicodeToEfiKey (TerminalDevice);
458 break;
459
460 case VTUTF8TYPE:
461 //
462 // Process all the raw data in the RawFIFO,
463 // put the processed key into UnicodeFIFO.
464 //
465 VTUTF8RawDataToUnicode (TerminalDevice);
466
467 //
468 // Translate all the Unicode data in the UnicodeFIFO to Efi key,
469 // then put into EfiKeyFIFO.
470 //
471 UnicodeToEfiKey (TerminalDevice);
472
473 break;
474 }
475 }
476
477 /**
478 Event notification function for EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey event
479 Signal the event if there is key available
480
481 @param Event Indicates the event that invoke this function.
482 @param Context Indicates the calling context.
483
484 **/
485 VOID
486 EFIAPI
487 TerminalConInWaitForKey (
488 IN EFI_EVENT Event,
489 IN VOID *Context
490 )
491 {
492 //
493 // Someone is waiting on the keystroke event, if there's
494 // a key pending, signal the event
495 //
496 if (!IsEfiKeyFiFoEmpty ((TERMINAL_DEV *) Context)) {
497
498 gBS->SignalEvent (Event);
499 }
500 }
501
502 /**
503 Timer handler to poll the key from serial.
504
505 @param Event Indicates the event that invoke this function.
506 @param Context Indicates the calling context.
507 **/
508 VOID
509 EFIAPI
510 TerminalConInTimerHandler (
511 IN EFI_EVENT Event,
512 IN VOID *Context
513 )
514 {
515 EFI_STATUS Status;
516 TERMINAL_DEV *TerminalDevice;
517 UINT32 Control;
518 UINT8 Input;
519 EFI_SERIAL_IO_MODE *Mode;
520 EFI_SERIAL_IO_PROTOCOL *SerialIo;
521 UINTN SerialInTimeOut;
522
523 TerminalDevice = (TERMINAL_DEV *) Context;
524
525 SerialIo = TerminalDevice->SerialIo;
526 if (SerialIo == NULL) {
527 return ;
528 }
529 //
530 // if current timeout value for serial device is not identical with
531 // the value saved in TERMINAL_DEV structure, then recalculate the
532 // timeout value again and set serial attribute according to this value.
533 //
534 Mode = SerialIo->Mode;
535 if (Mode->Timeout != TerminalDevice->SerialInTimeOut) {
536
537 SerialInTimeOut = 0;
538 if (Mode->BaudRate != 0) {
539 //
540 // According to BAUD rate to calculate the timeout value.
541 //
542 SerialInTimeOut = (1 + Mode->DataBits + Mode->StopBits) * 2 * 1000000 / (UINTN) Mode->BaudRate;
543 }
544
545 Status = SerialIo->SetAttributes (
546 SerialIo,
547 Mode->BaudRate,
548 Mode->ReceiveFifoDepth,
549 (UINT32) SerialInTimeOut,
550 (EFI_PARITY_TYPE) (Mode->Parity),
551 (UINT8) Mode->DataBits,
552 (EFI_STOP_BITS_TYPE) (Mode->StopBits)
553 );
554
555 if (EFI_ERROR (Status)) {
556 TerminalDevice->SerialInTimeOut = 0;
557 } else {
558 TerminalDevice->SerialInTimeOut = SerialInTimeOut;
559 }
560 }
561 //
562 // Check whether serial buffer is empty.
563 //
564 Status = SerialIo->GetControl (SerialIo, &Control);
565
566 if ((Control & EFI_SERIAL_INPUT_BUFFER_EMPTY) == 0) {
567 //
568 // Fetch all the keys in the serial buffer,
569 // and insert the byte stream into RawFIFO.
570 //
571 while (!IsRawFiFoFull (TerminalDevice)) {
572
573 Status = GetOneKeyFromSerial (TerminalDevice->SerialIo, &Input);
574
575 if (EFI_ERROR (Status)) {
576 if (Status == EFI_DEVICE_ERROR) {
577 REPORT_STATUS_CODE_WITH_DEVICE_PATH (
578 EFI_ERROR_CODE | EFI_ERROR_MINOR,
579 (EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_INPUT_ERROR),
580 TerminalDevice->DevicePath
581 );
582 }
583 break;
584 }
585
586 RawFiFoInsertOneKey (TerminalDevice, Input);
587 }
588 }
589
590 //
591 // Translate all the raw data in RawFIFO into EFI Key,
592 // according to different terminal type supported.
593 //
594 TranslateRawDataToEfiKey (TerminalDevice);
595 }
596
597 /**
598 Get one key out of serial buffer.
599
600 @param SerialIo Serial I/O protocol attached to the serial device.
601 @param Output The fetched key.
602
603 @retval EFI_NOT_READY If serial buffer is empty.
604 @retval EFI_DEVICE_ERROR If reading serial buffer encounter error.
605 @retval EFI_SUCCESS If reading serial buffer successfully, put
606 the fetched key to the parameter output.
607
608 **/
609 EFI_STATUS
610 GetOneKeyFromSerial (
611 EFI_SERIAL_IO_PROTOCOL *SerialIo,
612 UINT8 *Output
613 )
614 {
615 EFI_STATUS Status;
616 UINTN Size;
617
618 Size = 1;
619 *Output = 0;
620
621 //
622 // Read one key from serial I/O device.
623 //
624 Status = SerialIo->Read (SerialIo, &Size, Output);
625
626 if (EFI_ERROR (Status)) {
627
628 if (Status == EFI_TIMEOUT) {
629 return EFI_NOT_READY;
630 }
631
632 return EFI_DEVICE_ERROR;
633
634 }
635
636 if (*Output == 0) {
637 return EFI_NOT_READY;
638 }
639
640 return EFI_SUCCESS;
641 }
642
643 /**
644 Insert one byte raw data into the Raw Data FIFO.
645
646 @param TerminalDevice Terminal driver private structure.
647 @param Input The key will be input.
648
649 @retval TRUE If insert successfully.
650 @retval FLASE If Raw Data buffer is full before key insertion,
651 and the key is lost.
652
653 **/
654 BOOLEAN
655 RawFiFoInsertOneKey (
656 TERMINAL_DEV *TerminalDevice,
657 UINT8 Input
658 )
659 {
660 UINT8 Tail;
661
662 Tail = TerminalDevice->RawFiFo->Tail;
663
664 if (IsRawFiFoFull (TerminalDevice)) {
665 //
666 // Raw FIFO is full
667 //
668 return FALSE;
669 }
670
671 TerminalDevice->RawFiFo->Data[Tail] = Input;
672
673 TerminalDevice->RawFiFo->Tail = (UINT8) ((Tail + 1) % (RAW_FIFO_MAX_NUMBER + 1));
674
675 return TRUE;
676 }
677
678 /**
679 Remove one pre-fetched key out of the Raw Data FIFO.
680
681 @param TerminalDevice Terminal driver private structure.
682 @param Output The key will be removed.
683
684 @retval TRUE If insert successfully.
685 @retval FLASE If Raw Data FIFO buffer is empty before remove operation.
686
687 **/
688 BOOLEAN
689 RawFiFoRemoveOneKey (
690 TERMINAL_DEV *TerminalDevice,
691 UINT8 *Output
692 )
693 {
694 UINT8 Head;
695
696 Head = TerminalDevice->RawFiFo->Head;
697
698 if (IsRawFiFoEmpty (TerminalDevice)) {
699 //
700 // FIFO is empty
701 //
702 *Output = 0;
703 return FALSE;
704 }
705
706 *Output = TerminalDevice->RawFiFo->Data[Head];
707
708 TerminalDevice->RawFiFo->Head = (UINT8) ((Head + 1) % (RAW_FIFO_MAX_NUMBER + 1));
709
710 return TRUE;
711 }
712
713 /**
714 Clarify whether Raw Data FIFO buffer is empty.
715
716 @param TerminalDevice Terminal driver private structure
717
718 @retval TRUE If Raw Data FIFO buffer is empty.
719 @retval FLASE If Raw Data FIFO buffer is not empty.
720
721 **/
722 BOOLEAN
723 IsRawFiFoEmpty (
724 TERMINAL_DEV *TerminalDevice
725 )
726 {
727 if (TerminalDevice->RawFiFo->Head == TerminalDevice->RawFiFo->Tail) {
728 return TRUE;
729 } else {
730 return FALSE;
731 }
732 }
733
734 /**
735 Clarify whether Raw Data FIFO buffer is full.
736
737 @param TerminalDevice Terminal driver private structure
738
739 @retval TRUE If Raw Data FIFO buffer is full.
740 @retval FLASE If Raw Data FIFO buffer is not full.
741
742 **/
743 BOOLEAN
744 IsRawFiFoFull (
745 TERMINAL_DEV *TerminalDevice
746 )
747 {
748 UINT8 Tail;
749 UINT8 Head;
750
751 Tail = TerminalDevice->RawFiFo->Tail;
752 Head = TerminalDevice->RawFiFo->Head;
753
754 if (((Tail + 1) % (RAW_FIFO_MAX_NUMBER + 1)) == Head) {
755
756 return TRUE;
757 }
758
759 return FALSE;
760 }
761
762 /**
763 Insert one pre-fetched key into the FIFO buffer.
764
765 @param TerminalDevice Terminal driver private structure.
766 @param Key The key will be input.
767
768 @retval TRUE If insert successfully.
769 @retval FLASE If FIFO buffer is full before key insertion,
770 and the key is lost.
771
772 **/
773 BOOLEAN
774 EfiKeyFiFoInsertOneKey (
775 TERMINAL_DEV *TerminalDevice,
776 EFI_INPUT_KEY *Key
777 )
778 {
779 UINT8 Tail;
780 LIST_ENTRY *Link;
781 LIST_ENTRY *NotifyList;
782 TERMINAL_CONSOLE_IN_EX_NOTIFY *CurrentNotify;
783 EFI_KEY_DATA KeyData;
784
785 Tail = TerminalDevice->EfiKeyFiFo->Tail;
786
787 CopyMem (&KeyData.Key, Key, sizeof (EFI_INPUT_KEY));
788 KeyData.KeyState.KeyShiftState = 0;
789 KeyData.KeyState.KeyToggleState = 0;
790
791 //
792 // Invoke notification functions if exist
793 //
794 NotifyList = &TerminalDevice->NotifyList;
795 for (Link = GetFirstNode (NotifyList); !IsNull (NotifyList,Link); Link = GetNextNode (NotifyList,Link)) {
796 CurrentNotify = CR (
797 Link,
798 TERMINAL_CONSOLE_IN_EX_NOTIFY,
799 NotifyEntry,
800 TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE
801 );
802 if (IsKeyRegistered (&CurrentNotify->KeyData, &KeyData)) {
803 CurrentNotify->KeyNotificationFn (&KeyData);
804 }
805 }
806 if (IsEfiKeyFiFoFull (TerminalDevice)) {
807 //
808 // Efi Key FIFO is full
809 //
810 return FALSE;
811 }
812
813 CopyMem (&TerminalDevice->EfiKeyFiFo->Data[Tail], Key, sizeof (EFI_INPUT_KEY));
814
815 TerminalDevice->EfiKeyFiFo->Tail = (UINT8) ((Tail + 1) % (FIFO_MAX_NUMBER + 1));
816
817 return TRUE;
818 }
819
820 /**
821 Remove one pre-fetched key out of the FIFO buffer.
822
823 @param TerminalDevice Terminal driver private structure.
824 @param Output The key will be removed.
825
826 @retval TRUE If insert successfully.
827 @retval FLASE If FIFO buffer is empty before remove operation.
828
829 **/
830 BOOLEAN
831 EfiKeyFiFoRemoveOneKey (
832 TERMINAL_DEV *TerminalDevice,
833 EFI_INPUT_KEY *Output
834 )
835 {
836 UINT8 Head;
837
838 Head = TerminalDevice->EfiKeyFiFo->Head;
839 ASSERT (Head < FIFO_MAX_NUMBER + 1);
840
841 if (IsEfiKeyFiFoEmpty (TerminalDevice)) {
842 //
843 // FIFO is empty
844 //
845 Output->ScanCode = SCAN_NULL;
846 Output->UnicodeChar = 0;
847 return FALSE;
848 }
849
850 *Output = TerminalDevice->EfiKeyFiFo->Data[Head];
851
852 TerminalDevice->EfiKeyFiFo->Head = (UINT8) ((Head + 1) % (FIFO_MAX_NUMBER + 1));
853
854 return TRUE;
855 }
856
857 /**
858 Clarify whether FIFO buffer is empty.
859
860 @param TerminalDevice Terminal driver private structure
861
862 @retval TRUE If FIFO buffer is empty.
863 @retval FLASE If FIFO buffer is not empty.
864
865 **/
866 BOOLEAN
867 IsEfiKeyFiFoEmpty (
868 TERMINAL_DEV *TerminalDevice
869 )
870 {
871 if (TerminalDevice->EfiKeyFiFo->Head == TerminalDevice->EfiKeyFiFo->Tail) {
872 return TRUE;
873 } else {
874 return FALSE;
875 }
876 }
877
878 /**
879 Clarify whether FIFO buffer is full.
880
881 @param TerminalDevice Terminal driver private structure
882
883 @retval TRUE If FIFO buffer is full.
884 @retval FLASE If FIFO buffer is not full.
885
886 **/
887 BOOLEAN
888 IsEfiKeyFiFoFull (
889 TERMINAL_DEV *TerminalDevice
890 )
891 {
892 UINT8 Tail;
893 UINT8 Head;
894
895 Tail = TerminalDevice->EfiKeyFiFo->Tail;
896 Head = TerminalDevice->EfiKeyFiFo->Head;
897
898 if (((Tail + 1) % (FIFO_MAX_NUMBER + 1)) == Head) {
899
900 return TRUE;
901 }
902
903 return FALSE;
904 }
905
906 /**
907 Insert one pre-fetched key into the Unicode FIFO buffer.
908
909 @param TerminalDevice Terminal driver private structure.
910 @param Input The key will be input.
911
912 @retval TRUE If insert successfully.
913 @retval FLASE If Unicode FIFO buffer is full before key insertion,
914 and the key is lost.
915
916 **/
917 BOOLEAN
918 UnicodeFiFoInsertOneKey (
919 TERMINAL_DEV *TerminalDevice,
920 UINT16 Input
921 )
922 {
923 UINT8 Tail;
924
925 Tail = TerminalDevice->UnicodeFiFo->Tail;
926 ASSERT (Tail < FIFO_MAX_NUMBER + 1);
927
928
929 if (IsUnicodeFiFoFull (TerminalDevice)) {
930 //
931 // Unicode FIFO is full
932 //
933 return FALSE;
934 }
935
936 TerminalDevice->UnicodeFiFo->Data[Tail] = Input;
937
938 TerminalDevice->UnicodeFiFo->Tail = (UINT8) ((Tail + 1) % (FIFO_MAX_NUMBER + 1));
939
940 return TRUE;
941 }
942
943 /**
944 Remove one pre-fetched key out of the Unicode FIFO buffer.
945 The caller should guarantee that Unicode FIFO buffer is not empty
946 by IsUnicodeFiFoEmpty ().
947
948 @param TerminalDevice Terminal driver private structure.
949 @param Output The key will be removed.
950
951 **/
952 VOID
953 UnicodeFiFoRemoveOneKey (
954 TERMINAL_DEV *TerminalDevice,
955 UINT16 *Output
956 )
957 {
958 UINT8 Head;
959
960 Head = TerminalDevice->UnicodeFiFo->Head;
961 ASSERT (Head < FIFO_MAX_NUMBER + 1);
962
963 *Output = TerminalDevice->UnicodeFiFo->Data[Head];
964
965 TerminalDevice->UnicodeFiFo->Head = (UINT8) ((Head + 1) % (FIFO_MAX_NUMBER + 1));
966 }
967
968 /**
969 Clarify whether Unicode FIFO buffer is empty.
970
971 @param TerminalDevice Terminal driver private structure
972
973 @retval TRUE If Unicode FIFO buffer is empty.
974 @retval FLASE If Unicode FIFO buffer is not empty.
975
976 **/
977 BOOLEAN
978 IsUnicodeFiFoEmpty (
979 TERMINAL_DEV *TerminalDevice
980 )
981 {
982 if (TerminalDevice->UnicodeFiFo->Head == TerminalDevice->UnicodeFiFo->Tail) {
983 return TRUE;
984 } else {
985 return FALSE;
986 }
987 }
988
989 /**
990 Clarify whether Unicode FIFO buffer is full.
991
992 @param TerminalDevice Terminal driver private structure
993
994 @retval TRUE If Unicode FIFO buffer is full.
995 @retval FLASE If Unicode FIFO buffer is not full.
996
997 **/
998 BOOLEAN
999 IsUnicodeFiFoFull (
1000 TERMINAL_DEV *TerminalDevice
1001 )
1002 {
1003 UINT8 Tail;
1004 UINT8 Head;
1005
1006 Tail = TerminalDevice->UnicodeFiFo->Tail;
1007 Head = TerminalDevice->UnicodeFiFo->Head;
1008
1009 if (((Tail + 1) % (FIFO_MAX_NUMBER + 1)) == Head) {
1010
1011 return TRUE;
1012 }
1013
1014 return FALSE;
1015 }
1016
1017 /**
1018 Count Unicode FIFO buffer.
1019
1020 @param TerminalDevice Terminal driver private structure
1021
1022 @return The count in bytes of Unicode FIFO.
1023
1024 **/
1025 UINT8
1026 UnicodeFiFoGetKeyCount (
1027 TERMINAL_DEV *TerminalDevice
1028 )
1029 {
1030 UINT8 Tail;
1031 UINT8 Head;
1032
1033 Tail = TerminalDevice->UnicodeFiFo->Tail;
1034 Head = TerminalDevice->UnicodeFiFo->Head;
1035
1036 if (Tail >= Head) {
1037 return (UINT8) (Tail - Head);
1038 } else {
1039 return (UINT8) (Tail + FIFO_MAX_NUMBER + 1 - Head);
1040 }
1041 }
1042
1043 /**
1044 Update the Unicode characters from a terminal input device into EFI Keys FIFO.
1045
1046 @param TerminalDevice The terminal device to use to translate raw input into EFI Keys
1047
1048 **/
1049 VOID
1050 UnicodeToEfiKeyFlushState (
1051 IN TERMINAL_DEV *TerminalDevice
1052 )
1053 {
1054 EFI_INPUT_KEY Key;
1055 UINT32 InputState;
1056
1057 InputState = TerminalDevice->InputState;
1058
1059 if (IsEfiKeyFiFoFull (TerminalDevice)) {
1060 return;
1061 }
1062
1063 if ((InputState & INPUT_STATE_ESC) != 0) {
1064 Key.ScanCode = SCAN_ESC;
1065 Key.UnicodeChar = 0;
1066 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1067 }
1068
1069 if ((InputState & INPUT_STATE_CSI) != 0) {
1070 Key.ScanCode = SCAN_NULL;
1071 Key.UnicodeChar = CSI;
1072 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1073 }
1074
1075 if ((InputState & INPUT_STATE_LEFTOPENBRACKET) != 0) {
1076 Key.ScanCode = SCAN_NULL;
1077 Key.UnicodeChar = LEFTOPENBRACKET;
1078 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1079 }
1080
1081 if ((InputState & INPUT_STATE_O) != 0) {
1082 Key.ScanCode = SCAN_NULL;
1083 Key.UnicodeChar = 'O';
1084 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1085 }
1086
1087 if ((InputState & INPUT_STATE_2) != 0) {
1088 Key.ScanCode = SCAN_NULL;
1089 Key.UnicodeChar = '2';
1090 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1091 }
1092
1093 //
1094 // Cancel the timer.
1095 //
1096 gBS->SetTimer (
1097 TerminalDevice->TwoSecondTimeOut,
1098 TimerCancel,
1099 0
1100 );
1101
1102 TerminalDevice->InputState = INPUT_STATE_DEFAULT;
1103 }
1104
1105
1106 /**
1107 Converts a stream of Unicode characters from a terminal input device into EFI Keys that
1108 can be read through the Simple Input Protocol.
1109
1110 The table below shows the keyboard input mappings that this function supports.
1111 If the ESC sequence listed in one of the columns is presented, then it is translated
1112 into the corresponding EFI Scan Code. If a matching sequence is not found, then the raw
1113 key strokes are converted into EFI Keys.
1114
1115 2 seconds are allowed for an ESC sequence to be completed. If the ESC sequence is not
1116 completed in 2 seconds, then the raw key strokes of the partial ESC sequence are
1117 converted into EFI Keys.
1118 There is one special input sequence that will force the system to reset.
1119 This is ESC R ESC r ESC R.
1120
1121 Note: current implementation support terminal types include: PC ANSI, VT100+/VTUTF8, VT100.
1122 The table below is not same with UEFI Spec 2.3 Appendix B Table 201(not support ANSI X3.64 /
1123 DEC VT200-500 and extra support PC ANSI, VT100)since UEFI Table 201 is just an example.
1124
1125 Symbols used in table below
1126 ===========================
1127 ESC = 0x1B
1128 CSI = 0x9B
1129 DEL = 0x7f
1130 ^ = CTRL
1131
1132 +=========+======+===========+==========+==========+
1133 | | EFI | UEFI 2.0 | | |
1134 | | Scan | | VT100+ | |
1135 | KEY | Code | PC ANSI | VTUTF8 | VT100 |
1136 +=========+======+===========+==========+==========+
1137 | NULL | 0x00 | | | |
1138 | UP | 0x01 | ESC [ A | ESC [ A | ESC [ A |
1139 | DOWN | 0x02 | ESC [ B | ESC [ B | ESC [ B |
1140 | RIGHT | 0x03 | ESC [ C | ESC [ C | ESC [ C |
1141 | LEFT | 0x04 | ESC [ D | ESC [ D | ESC [ D |
1142 | HOME | 0x05 | ESC [ H | ESC h | ESC [ H |
1143 | END | 0x06 | ESC [ F | ESC k | ESC [ K |
1144 | INSERT | 0x07 | ESC [ @ | ESC + | ESC [ @ |
1145 | | | ESC [ L | | ESC [ L |
1146 | DELETE | 0x08 | ESC [ X | ESC - | ESC [ P |
1147 | PG UP | 0x09 | ESC [ I | ESC ? | ESC [ V |
1148 | | | | | ESC [ ? |
1149 | PG DOWN | 0x0A | ESC [ G | ESC / | ESC [ U |
1150 | | | | | ESC [ / |
1151 | F1 | 0x0B | ESC [ M | ESC 1 | ESC O P |
1152 | F2 | 0x0C | ESC [ N | ESC 2 | ESC O Q |
1153 | F3 | 0x0D | ESC [ O | ESC 3 | ESC O w |
1154 | F4 | 0x0E | ESC [ P | ESC 4 | ESC O x |
1155 | F5 | 0x0F | ESC [ Q | ESC 5 | ESC O t |
1156 | F6 | 0x10 | ESC [ R | ESC 6 | ESC O u |
1157 | F7 | 0x11 | ESC [ S | ESC 7 | ESC O q |
1158 | F8 | 0x12 | ESC [ T | ESC 8 | ESC O r |
1159 | F9 | 0x13 | ESC [ U | ESC 9 | ESC O p |
1160 | F10 | 0x14 | ESC [ V | ESC 0 | ESC O M |
1161 | Escape | 0x17 | ESC | ESC | ESC |
1162 | F11 | 0x15 | | ESC ! | |
1163 | F12 | 0x16 | | ESC @ | |
1164 +=========+======+===========+==========+==========+
1165
1166 Special Mappings
1167 ================
1168 ESC R ESC r ESC R = Reset System
1169
1170 @param TerminalDevice The terminal device to use to translate raw input into EFI Keys
1171
1172 **/
1173 VOID
1174 UnicodeToEfiKey (
1175 IN TERMINAL_DEV *TerminalDevice
1176 )
1177 {
1178 EFI_STATUS Status;
1179 EFI_STATUS TimerStatus;
1180 UINT16 UnicodeChar;
1181 EFI_INPUT_KEY Key;
1182 BOOLEAN SetDefaultResetState;
1183
1184 TimerStatus = gBS->CheckEvent (TerminalDevice->TwoSecondTimeOut);
1185
1186 if (!EFI_ERROR (TimerStatus)) {
1187 UnicodeToEfiKeyFlushState (TerminalDevice);
1188 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1189 }
1190
1191 while (!IsUnicodeFiFoEmpty (TerminalDevice) && !IsEfiKeyFiFoFull (TerminalDevice)) {
1192
1193 if (TerminalDevice->InputState != INPUT_STATE_DEFAULT) {
1194 //
1195 // Check to see if the 2 seconds timer has expired
1196 //
1197 TimerStatus = gBS->CheckEvent (TerminalDevice->TwoSecondTimeOut);
1198 if (!EFI_ERROR (TimerStatus)) {
1199 UnicodeToEfiKeyFlushState (TerminalDevice);
1200 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1201 }
1202 }
1203
1204 //
1205 // Fetch one Unicode character from the Unicode FIFO
1206 //
1207 UnicodeFiFoRemoveOneKey (TerminalDevice, &UnicodeChar);
1208
1209 SetDefaultResetState = TRUE;
1210
1211 switch (TerminalDevice->InputState) {
1212 case INPUT_STATE_DEFAULT:
1213
1214 break;
1215
1216 case INPUT_STATE_ESC:
1217
1218 if (UnicodeChar == LEFTOPENBRACKET) {
1219 TerminalDevice->InputState |= INPUT_STATE_LEFTOPENBRACKET;
1220 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1221 continue;
1222 }
1223
1224 if (UnicodeChar == 'O' && TerminalDevice->TerminalType == VT100TYPE) {
1225 TerminalDevice->InputState |= INPUT_STATE_O;
1226 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1227 continue;
1228 }
1229
1230 Key.ScanCode = SCAN_NULL;
1231
1232 if (TerminalDevice->TerminalType == VT100PLUSTYPE ||
1233 TerminalDevice->TerminalType == VTUTF8TYPE) {
1234 switch (UnicodeChar) {
1235 case '1':
1236 Key.ScanCode = SCAN_F1;
1237 break;
1238 case '2':
1239 Key.ScanCode = SCAN_F2;
1240 break;
1241 case '3':
1242 Key.ScanCode = SCAN_F3;
1243 break;
1244 case '4':
1245 Key.ScanCode = SCAN_F4;
1246 break;
1247 case '5':
1248 Key.ScanCode = SCAN_F5;
1249 break;
1250 case '6':
1251 Key.ScanCode = SCAN_F6;
1252 break;
1253 case '7':
1254 Key.ScanCode = SCAN_F7;
1255 break;
1256 case '8':
1257 Key.ScanCode = SCAN_F8;
1258 break;
1259 case '9':
1260 Key.ScanCode = SCAN_F9;
1261 break;
1262 case '0':
1263 Key.ScanCode = SCAN_F10;
1264 break;
1265 case '!':
1266 Key.ScanCode = SCAN_F11;
1267 break;
1268 case '@':
1269 Key.ScanCode = SCAN_F12;
1270 break;
1271 case 'h':
1272 Key.ScanCode = SCAN_HOME;
1273 break;
1274 case 'k':
1275 Key.ScanCode = SCAN_END;
1276 break;
1277 case '+':
1278 Key.ScanCode = SCAN_INSERT;
1279 break;
1280 case '-':
1281 Key.ScanCode = SCAN_DELETE;
1282 break;
1283 case '/':
1284 Key.ScanCode = SCAN_PAGE_DOWN;
1285 break;
1286 case '?':
1287 Key.ScanCode = SCAN_PAGE_UP;
1288 break;
1289 default :
1290 break;
1291 }
1292 }
1293
1294 switch (UnicodeChar) {
1295 case 'R':
1296 if (TerminalDevice->ResetState == RESET_STATE_DEFAULT) {
1297 TerminalDevice->ResetState = RESET_STATE_ESC_R;
1298 SetDefaultResetState = FALSE;
1299 } else if (TerminalDevice->ResetState == RESET_STATE_ESC_R_ESC_R) {
1300 gRT->ResetSystem (EfiResetWarm, EFI_SUCCESS, 0, NULL);
1301 }
1302 Key.ScanCode = SCAN_NULL;
1303 break;
1304 case 'r':
1305 if (TerminalDevice->ResetState == RESET_STATE_ESC_R) {
1306 TerminalDevice->ResetState = RESET_STATE_ESC_R_ESC_R;
1307 SetDefaultResetState = FALSE;
1308 }
1309 Key.ScanCode = SCAN_NULL;
1310 break;
1311 default :
1312 break;
1313 }
1314
1315 if (SetDefaultResetState) {
1316 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1317 }
1318
1319 if (Key.ScanCode != SCAN_NULL) {
1320 Key.UnicodeChar = 0;
1321 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1322 TerminalDevice->InputState = INPUT_STATE_DEFAULT;
1323 UnicodeToEfiKeyFlushState (TerminalDevice);
1324 continue;
1325 }
1326
1327 UnicodeToEfiKeyFlushState (TerminalDevice);
1328
1329 break;
1330
1331 case INPUT_STATE_ESC | INPUT_STATE_O:
1332
1333 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1334
1335 Key.ScanCode = SCAN_NULL;
1336
1337 if (TerminalDevice->TerminalType == VT100TYPE) {
1338 switch (UnicodeChar) {
1339 case 'P':
1340 Key.ScanCode = SCAN_F1;
1341 break;
1342 case 'Q':
1343 Key.ScanCode = SCAN_F2;
1344 break;
1345 case 'w':
1346 Key.ScanCode = SCAN_F3;
1347 break;
1348 case 'x':
1349 Key.ScanCode = SCAN_F4;
1350 break;
1351 case 't':
1352 Key.ScanCode = SCAN_F5;
1353 break;
1354 case 'u':
1355 Key.ScanCode = SCAN_F6;
1356 break;
1357 case 'q':
1358 Key.ScanCode = SCAN_F7;
1359 break;
1360 case 'r':
1361 Key.ScanCode = SCAN_F8;
1362 break;
1363 case 'p':
1364 Key.ScanCode = SCAN_F9;
1365 break;
1366 case 'M':
1367 Key.ScanCode = SCAN_F10;
1368 break;
1369 default :
1370 break;
1371 }
1372 }
1373
1374 if (Key.ScanCode != SCAN_NULL) {
1375 Key.UnicodeChar = 0;
1376 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1377 TerminalDevice->InputState = INPUT_STATE_DEFAULT;
1378 UnicodeToEfiKeyFlushState (TerminalDevice);
1379 continue;
1380 }
1381
1382 UnicodeToEfiKeyFlushState (TerminalDevice);
1383
1384 break;
1385
1386 case INPUT_STATE_ESC | INPUT_STATE_LEFTOPENBRACKET:
1387
1388 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1389
1390 Key.ScanCode = SCAN_NULL;
1391
1392 if (TerminalDevice->TerminalType == PCANSITYPE ||
1393 TerminalDevice->TerminalType == VT100TYPE ||
1394 TerminalDevice->TerminalType == VT100PLUSTYPE ||
1395 TerminalDevice->TerminalType == VTUTF8TYPE) {
1396 switch (UnicodeChar) {
1397 case 'A':
1398 Key.ScanCode = SCAN_UP;
1399 break;
1400 case 'B':
1401 Key.ScanCode = SCAN_DOWN;
1402 break;
1403 case 'C':
1404 Key.ScanCode = SCAN_RIGHT;
1405 break;
1406 case 'D':
1407 Key.ScanCode = SCAN_LEFT;
1408 break;
1409 case 'H':
1410 if (TerminalDevice->TerminalType == PCANSITYPE ||
1411 TerminalDevice->TerminalType == VT100TYPE) {
1412 Key.ScanCode = SCAN_HOME;
1413 }
1414 break;
1415 case 'F':
1416 if (TerminalDevice->TerminalType == PCANSITYPE) {
1417 Key.ScanCode = SCAN_END;
1418 }
1419 break;
1420 case 'K':
1421 if (TerminalDevice->TerminalType == VT100TYPE) {
1422 Key.ScanCode = SCAN_END;
1423 }
1424 break;
1425 case 'L':
1426 case '@':
1427 if (TerminalDevice->TerminalType == PCANSITYPE ||
1428 TerminalDevice->TerminalType == VT100TYPE) {
1429 Key.ScanCode = SCAN_INSERT;
1430 }
1431 break;
1432 case 'X':
1433 if (TerminalDevice->TerminalType == PCANSITYPE) {
1434 Key.ScanCode = SCAN_DELETE;
1435 }
1436 break;
1437 case 'P':
1438 if (TerminalDevice->TerminalType == VT100TYPE) {
1439 Key.ScanCode = SCAN_DELETE;
1440 } else if (TerminalDevice->TerminalType == PCANSITYPE) {
1441 Key.ScanCode = SCAN_F4;
1442 }
1443 break;
1444 case 'I':
1445 if (TerminalDevice->TerminalType == PCANSITYPE) {
1446 Key.ScanCode = SCAN_PAGE_UP;
1447 }
1448 break;
1449 case 'V':
1450 if (TerminalDevice->TerminalType == PCANSITYPE) {
1451 Key.ScanCode = SCAN_F10;
1452 }
1453 break;
1454 case '?':
1455 if (TerminalDevice->TerminalType == VT100TYPE) {
1456 Key.ScanCode = SCAN_PAGE_UP;
1457 }
1458 break;
1459 case 'G':
1460 if (TerminalDevice->TerminalType == PCANSITYPE) {
1461 Key.ScanCode = SCAN_PAGE_DOWN;
1462 }
1463 break;
1464 case 'U':
1465 if (TerminalDevice->TerminalType == PCANSITYPE) {
1466 Key.ScanCode = SCAN_F9;
1467 }
1468 break;
1469 case '/':
1470 if (TerminalDevice->TerminalType == VT100TYPE) {
1471 Key.ScanCode = SCAN_PAGE_DOWN;
1472 }
1473 break;
1474 case 'M':
1475 if (TerminalDevice->TerminalType == PCANSITYPE) {
1476 Key.ScanCode = SCAN_F1;
1477 }
1478 break;
1479 case 'N':
1480 if (TerminalDevice->TerminalType == PCANSITYPE) {
1481 Key.ScanCode = SCAN_F2;
1482 }
1483 break;
1484 case 'O':
1485 if (TerminalDevice->TerminalType == PCANSITYPE) {
1486 Key.ScanCode = SCAN_F3;
1487 }
1488 break;
1489 case 'Q':
1490 if (TerminalDevice->TerminalType == PCANSITYPE) {
1491 Key.ScanCode = SCAN_F5;
1492 }
1493 break;
1494 case 'R':
1495 if (TerminalDevice->TerminalType == PCANSITYPE) {
1496 Key.ScanCode = SCAN_F6;
1497 }
1498 break;
1499 case 'S':
1500 if (TerminalDevice->TerminalType == PCANSITYPE) {
1501 Key.ScanCode = SCAN_F7;
1502 }
1503 break;
1504 case 'T':
1505 if (TerminalDevice->TerminalType == PCANSITYPE) {
1506 Key.ScanCode = SCAN_F8;
1507 }
1508 break;
1509 default :
1510 break;
1511 }
1512 }
1513
1514 if (Key.ScanCode != SCAN_NULL) {
1515 Key.UnicodeChar = 0;
1516 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1517 TerminalDevice->InputState = INPUT_STATE_DEFAULT;
1518 UnicodeToEfiKeyFlushState (TerminalDevice);
1519 continue;
1520 }
1521
1522 UnicodeToEfiKeyFlushState (TerminalDevice);
1523
1524 break;
1525
1526
1527 default:
1528 //
1529 // Invalid state. This should never happen.
1530 //
1531 ASSERT (FALSE);
1532
1533 UnicodeToEfiKeyFlushState (TerminalDevice);
1534
1535 break;
1536 }
1537
1538 if (UnicodeChar == ESC) {
1539 TerminalDevice->InputState = INPUT_STATE_ESC;
1540 }
1541
1542 if (UnicodeChar == CSI) {
1543 TerminalDevice->InputState = INPUT_STATE_CSI;
1544 }
1545
1546 if (TerminalDevice->InputState != INPUT_STATE_DEFAULT) {
1547 Status = gBS->SetTimer(
1548 TerminalDevice->TwoSecondTimeOut,
1549 TimerRelative,
1550 (UINT64)20000000
1551 );
1552 ASSERT_EFI_ERROR (Status);
1553 continue;
1554 }
1555
1556 if (SetDefaultResetState) {
1557 TerminalDevice->ResetState = RESET_STATE_DEFAULT;
1558 }
1559
1560 if (UnicodeChar == DEL) {
1561 Key.ScanCode = SCAN_DELETE;
1562 Key.UnicodeChar = 0;
1563 } else {
1564 Key.ScanCode = SCAN_NULL;
1565 Key.UnicodeChar = UnicodeChar;
1566 }
1567
1568 EfiKeyFiFoInsertOneKey (TerminalDevice, &Key);
1569 }
1570 }