]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Console/TerminalDxe/Terminal.h
Fix the terminal driver to call hotkey callback even no one is calling ReadKeyStroke
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / Terminal.h
CommitLineData
fb0b259e 1/** @file\r
2 Header file for Terminal driver.\r
95276127 3\r
f0368006 4Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 5This program and the accompanying materials\r
fb0b259e 6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
95276127 9\r
fb0b259e 10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
95276127 12\r
fb0b259e 13**/\r
95276127 14\r
e49ef433 15#ifndef _TERMINAL_H_\r
16#define _TERMINAL_H_\r
95276127 17\r
97a079ed 18\r
60c93673 19#include <Uefi.h>\r
8d4cd915 20\r
21#include <Guid/GlobalVariable.h>\r
22#include <Guid/PcAnsi.h>\r
23\r
97a079ed
A
24#include <Protocol/SimpleTextOut.h>\r
25#include <Protocol/SerialIo.h>\r
97a079ed
A
26#include <Protocol/DevicePath.h>\r
27#include <Protocol/SimpleTextIn.h>\r
66aa04e4 28#include <Protocol/SimpleTextInEx.h>\r
8d4cd915 29\r
97a079ed
A
30#include <Library/DebugLib.h>\r
31#include <Library/UefiDriverEntryPoint.h>\r
32#include <Library/UefiLib.h>\r
33#include <Library/ReportStatusCodeLib.h>\r
34#include <Library/BaseMemoryLib.h>\r
35#include <Library/MemoryAllocationLib.h>\r
36#include <Library/UefiBootServicesTableLib.h>\r
37#include <Library/UefiRuntimeServicesTableLib.h>\r
38#include <Library/DevicePathLib.h>\r
39#include <Library/PcdLib.h>\r
66aa04e4 40#include <Library/BaseLib.h>\r
97a079ed 41\r
95276127 42\r
43#define RAW_FIFO_MAX_NUMBER 256\r
44#define FIFO_MAX_NUMBER 128\r
45\r
46typedef struct {\r
47 UINT8 Head;\r
48 UINT8 Tail;\r
49 UINT8 Data[RAW_FIFO_MAX_NUMBER + 1];\r
50} RAW_DATA_FIFO;\r
51\r
52typedef struct {\r
53 UINT8 Head;\r
54 UINT8 Tail;\r
55 UINT16 Data[FIFO_MAX_NUMBER + 1];\r
56} UNICODE_FIFO;\r
57\r
58typedef struct {\r
59 UINT8 Head;\r
60 UINT8 Tail;\r
61 EFI_INPUT_KEY Data[FIFO_MAX_NUMBER + 1];\r
62} EFI_KEY_FIFO;\r
63\r
f0368006
RN
64#define KEYBOARD_TIMER_INTERVAL 200000 // 0.02s\r
65\r
f3f2e05d 66#define TERMINAL_DEV_SIGNATURE SIGNATURE_32 ('t', 'm', 'n', 'l')\r
95276127 67\r
f3f2e05d 68#define TERMINAL_CONSOLE_IN_EX_NOTIFY_SIGNATURE SIGNATURE_32 ('t', 'm', 'e', 'n')\r
66aa04e4 69\r
70typedef struct _TERMINAL_CONSOLE_IN_EX_NOTIFY {\r
71 UINTN Signature;\r
72 EFI_HANDLE NotifyHandle;\r
73 EFI_KEY_DATA KeyData;\r
74 EFI_KEY_NOTIFY_FUNCTION KeyNotificationFn;\r
75 LIST_ENTRY NotifyEntry;\r
76} TERMINAL_CONSOLE_IN_EX_NOTIFY;\r
95276127 77typedef struct {\r
78 UINTN Signature;\r
79 EFI_HANDLE Handle;\r
80 UINT8 TerminalType;\r
81 EFI_SERIAL_IO_PROTOCOL *SerialIo;\r
82 EFI_DEVICE_PATH_PROTOCOL *DevicePath;\r
95276127 83 EFI_SIMPLE_TEXT_INPUT_PROTOCOL SimpleInput;\r
84 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL SimpleTextOutput;\r
85 EFI_SIMPLE_TEXT_OUTPUT_MODE SimpleTextOutputMode;\r
86 UINTN SerialInTimeOut;\r
5c998646 87 RAW_DATA_FIFO *RawFiFo;\r
88 UNICODE_FIFO *UnicodeFiFo;\r
89 EFI_KEY_FIFO *EfiKeyFiFo;\r
95276127 90 EFI_UNICODE_STRING_TABLE *ControllerNameTable;\r
f0368006 91 EFI_EVENT TimerEvent;\r
95276127 92 EFI_EVENT TwoSecondTimeOut;\r
93 UINT32 InputState;\r
6b88ceec 94 UINT32 ResetState;\r
95276127 95\r
96 //\r
97 // Esc could not be output to the screen by user,\r
98 // but the terminal driver need to output it to\r
99 // the terminal emulation software to send control sequence.\r
100 // This boolean is used by the terminal driver only\r
101 // to indicate whether the Esc could be sent or not.\r
102 //\r
6b88ceec 103 BOOLEAN OutputEscChar;\r
66aa04e4 104 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL SimpleInputEx;\r
105 LIST_ENTRY NotifyList;\r
95276127 106} TERMINAL_DEV;\r
107\r
108#define INPUT_STATE_DEFAULT 0x00\r
109#define INPUT_STATE_ESC 0x01\r
110#define INPUT_STATE_CSI 0x02\r
111#define INPUT_STATE_LEFTOPENBRACKET 0x04\r
112#define INPUT_STATE_O 0x08\r
113#define INPUT_STATE_2 0x10\r
114\r
115#define RESET_STATE_DEFAULT 0x00\r
116#define RESET_STATE_ESC_R 0x01\r
aa75dfec 117#define RESET_STATE_ESC_R_ESC_R 0x02\r
95276127 118\r
119#define TERMINAL_CON_IN_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleInput, TERMINAL_DEV_SIGNATURE)\r
120#define TERMINAL_CON_OUT_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleTextOutput, TERMINAL_DEV_SIGNATURE)\r
66aa04e4 121#define TERMINAL_CON_IN_EX_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleInputEx, TERMINAL_DEV_SIGNATURE)\r
95276127 122\r
123typedef union {\r
124 UINT8 Utf8_1;\r
125 UINT8 Utf8_2[2];\r
126 UINT8 Utf8_3[3];\r
127} UTF8_CHAR;\r
128\r
e49ef433 129#define PCANSITYPE 0\r
130#define VT100TYPE 1\r
131#define VT100PLUSTYPE 2\r
132#define VTUTF8TYPE 3\r
95276127 133\r
134#define LEFTOPENBRACKET 0x5b // '['\r
135#define ACAP 0x41\r
136#define BCAP 0x42\r
137#define CCAP 0x43\r
138#define DCAP 0x44\r
139\r
140#define MODE0_COLUMN_COUNT 80\r
141#define MODE0_ROW_COUNT 25\r
142\r
7347d5d6 143#define MODE1_COLUMN_COUNT 80\r
144#define MODE1_ROW_COUNT 50\r
145\r
146#define MODE2_COLUMN_COUNT 100\r
147#define MODE2_ROW_COUNT 31\r
148\r
9875a3e3 149//\r
150// MODE3 is defined by PcdConOutColumn & PcdConOutRow\r
151//\r
152\r
153#define TERMINAL_MAX_MODE 4\r
154\r
95276127 155#define BACKSPACE 8\r
156#define ESC 27\r
157#define CSI 0x9B\r
158#define DEL 127\r
159#define BRIGHT_CONTROL_OFFSET 2\r
160#define FOREGROUND_CONTROL_OFFSET 6\r
161#define BACKGROUND_CONTROL_OFFSET 11\r
162#define ROW_OFFSET 2\r
163#define COLUMN_OFFSET 5\r
164\r
165typedef struct {\r
166 UINT16 Unicode;\r
167 CHAR8 PcAnsi;\r
168 CHAR8 Ascii;\r
169} UNICODE_TO_CHAR;\r
170\r
95276127 171//\r
172// Global Variables\r
173//\r
5bca971e 174extern EFI_DRIVER_BINDING_PROTOCOL gTerminalDriverBinding;\r
175extern EFI_COMPONENT_NAME_PROTOCOL gTerminalComponentName;\r
176extern EFI_COMPONENT_NAME2_PROTOCOL gTerminalComponentName2;\r
95276127 177\r
e49ef433 178/**\r
179 The user Entry Point for module Terminal. The user code starts with this function.\r
180\r
181 @param[in] ImageHandle The firmware allocated handle for the EFI image.\r
182 @param[in] SystemTable A pointer to the EFI System Table.\r
183\r
184 @retval EFI_SUCCESS The entry point is executed successfully.\r
185 @retval other Some error occurs when executing this entry point.\r
186\r
187**/\r
95276127 188EFI_STATUS\r
189EFIAPI\r
190InitializeTerminal (\r
191 IN EFI_HANDLE ImageHandle,\r
192 IN EFI_SYSTEM_TABLE *SystemTable\r
ed66e1bc 193 );\r
95276127 194\r
e49ef433 195/**\r
196 Implements EFI_SIMPLE_TEXT_INPUT_PROTOCOL.Reset().\r
197 This driver only perform dependent serial device reset regardless of\r
198 the value of ExtendeVerification\r
199\r
200 @param This Indicates the calling context.\r
201 @param ExtendedVerification Skip by this driver.\r
202\r
00bfdbe1 203 @retval EFI_SUCCESS The reset operation succeeds.\r
204 @retval EFI_DEVICE_ERROR The dependent serial port reset fails.\r
e49ef433 205\r
206**/\r
95276127 207EFI_STATUS\r
208EFIAPI\r
209TerminalConInReset (\r
210 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
211 IN BOOLEAN ExtendedVerification\r
ed66e1bc 212 );\r
95276127 213\r
e49ef433 214\r
215/**\r
216 Implements EFI_SIMPLE_TEXT_INPUT_PROTOCOL.ReadKeyStroke().\r
217\r
8fd98315 218 @param This Indicates the calling context.\r
219 @param Key A pointer to a buffer that is filled in with the\r
220 keystroke information for the key that was sent\r
221 from terminal.\r
222\r
00bfdbe1 223 @retval EFI_SUCCESS The keystroke information is returned successfully.\r
224 @retval EFI_NOT_READY There is no keystroke data available.\r
225 @retval EFI_DEVICE_ERROR The dependent serial device encounters error.\r
e49ef433 226\r
227**/\r
95276127 228EFI_STATUS\r
229EFIAPI\r
230TerminalConInReadKeyStroke (\r
231 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
232 OUT EFI_INPUT_KEY *Key\r
ed66e1bc 233 );\r
95276127 234\r
e49ef433 235/**\r
8fd98315 236 Check if the key already has been registered.\r
e49ef433 237\r
238 @param RegsiteredData A pointer to a buffer that is filled in with the\r
239 keystroke state data for the key that was\r
240 registered.\r
241 @param InputData A pointer to a buffer that is filled in with the\r
242 keystroke state data for the key that was\r
243 pressed.\r
244\r
245 @retval TRUE Key be pressed matches a registered key.\r
246 @retval FLASE Match failed.\r
247\r
248**/\r
66aa04e4 249BOOLEAN\r
250IsKeyRegistered (\r
251 IN EFI_KEY_DATA *RegsiteredData,\r
252 IN EFI_KEY_DATA *InputData\r
ed66e1bc 253 );\r
66aa04e4 254\r
e49ef433 255/**\r
256 Event notification function for EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.WaitForKeyEx event\r
257 Signal the event if there is key available\r
66aa04e4 258\r
e49ef433 259 @param Event Indicates the event that invoke this function.\r
260 @param Context Indicates the calling context.\r
fb0b259e 261\r
e49ef433 262**/\r
66aa04e4 263VOID\r
264EFIAPI\r
265TerminalConInWaitForKeyEx (\r
266 IN EFI_EVENT Event,\r
267 IN VOID *Context\r
ed66e1bc 268 );\r
e49ef433 269\r
66aa04e4 270//\r
271// Simple Text Input Ex protocol prototypes\r
272//\r
273\r
e49ef433 274/**\r
11baadb6 275 Reset the input device and optionally run diagnostics\r
e49ef433 276\r
277 @param This Protocol instance pointer.\r
278 @param ExtendedVerification Driver may perform diagnostics on reset.\r
279\r
280 @retval EFI_SUCCESS The device was reset.\r
281 @retval EFI_DEVICE_ERROR The device is not functioning properly and could\r
282 not be reset.\r
283\r
284**/\r
66aa04e4 285EFI_STATUS\r
286EFIAPI\r
287TerminalConInResetEx (\r
288 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
289 IN BOOLEAN ExtendedVerification\r
ed66e1bc 290 );\r
66aa04e4 291\r
e49ef433 292/**\r
293 Reads the next keystroke from the input device. The WaitForKey Event can\r
11baadb6 294 be used to test for existence of a keystroke via WaitForEvent () call.\r
66aa04e4 295\r
e49ef433 296 @param This Protocol instance pointer.\r
297 @param KeyData A pointer to a buffer that is filled in with the\r
298 keystroke state data for the key that was\r
299 pressed.\r
66aa04e4 300\r
e49ef433 301 @retval EFI_SUCCESS The keystroke information was returned.\r
11baadb6 302 @retval EFI_NOT_READY There was no keystroke data available.\r
e49ef433 303 @retval EFI_DEVICE_ERROR The keystroke information was not returned due\r
304 to hardware errors.\r
305 @retval EFI_INVALID_PARAMETER KeyData is NULL.\r
66aa04e4 306\r
e49ef433 307**/\r
66aa04e4 308EFI_STATUS\r
309EFIAPI\r
310TerminalConInReadKeyStrokeEx (\r
311 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
312 OUT EFI_KEY_DATA *KeyData\r
ed66e1bc 313 );\r
66aa04e4 314\r
e49ef433 315/**\r
316 Set certain state for the input device.\r
66aa04e4 317\r
e49ef433 318 @param This Protocol instance pointer.\r
319 @param KeyToggleState A pointer to the EFI_KEY_TOGGLE_STATE to set the\r
320 state for the input device.\r
66aa04e4 321\r
e49ef433 322 @retval EFI_SUCCESS The device state was set successfully.\r
323 @retval EFI_DEVICE_ERROR The device is not functioning correctly and\r
324 could not have the setting adjusted.\r
325 @retval EFI_UNSUPPORTED The device does not have the ability to set its\r
326 state.\r
327 @retval EFI_INVALID_PARAMETER KeyToggleState is NULL.\r
66aa04e4 328\r
e49ef433 329**/\r
66aa04e4 330EFI_STATUS\r
331EFIAPI\r
332TerminalConInSetState (\r
333 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
334 IN EFI_KEY_TOGGLE_STATE *KeyToggleState\r
ed66e1bc 335 );\r
66aa04e4 336\r
e49ef433 337/**\r
338 Register a notification function for a particular keystroke for the input device.\r
339\r
340 @param This Protocol instance pointer.\r
341 @param KeyData A pointer to a buffer that is filled in with the\r
342 keystroke information data for the key that was\r
343 pressed.\r
344 @param KeyNotificationFunction Points to the function to be called when the key\r
345 sequence is typed specified by KeyData.\r
346 @param NotifyHandle Points to the unique handle assigned to the\r
347 registered notification.\r
348\r
349 @retval EFI_SUCCESS The notification function was registered\r
350 successfully.\r
351 @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necesssary data\r
352 structures.\r
353 @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL.\r
354\r
355**/\r
66aa04e4 356EFI_STATUS\r
357EFIAPI\r
358TerminalConInRegisterKeyNotify (\r
359 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
360 IN EFI_KEY_DATA *KeyData,\r
361 IN EFI_KEY_NOTIFY_FUNCTION KeyNotificationFunction,\r
362 OUT EFI_HANDLE *NotifyHandle\r
ed66e1bc 363 );\r
66aa04e4 364\r
e49ef433 365/**\r
366 Remove a registered notification function from a particular keystroke.\r
66aa04e4 367\r
e49ef433 368 @param This Protocol instance pointer.\r
369 @param NotificationHandle The handle of the notification function being\r
370 unregistered.\r
fb0b259e 371\r
e49ef433 372 @retval EFI_SUCCESS The notification function was unregistered\r
373 successfully.\r
374 @retval EFI_INVALID_PARAMETER The NotificationHandle is invalid.\r
375 @retval EFI_NOT_FOUND Can not find the matching entry in database.\r
66aa04e4 376\r
e49ef433 377**/\r
66aa04e4 378EFI_STATUS\r
379EFIAPI\r
380TerminalConInUnregisterKeyNotify (\r
381 IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *This,\r
382 IN EFI_HANDLE NotificationHandle\r
ed66e1bc 383 );\r
66aa04e4 384\r
e49ef433 385/**\r
386 Event notification function for EFI_SIMPLE_TEXT_INPUT_PROTOCOL.WaitForKey event\r
387 Signal the event if there is key available\r
66aa04e4 388\r
e49ef433 389 @param Event Indicates the event that invoke this function.\r
390 @param Context Indicates the calling context.\r
fb0b259e 391\r
e49ef433 392**/\r
95276127 393VOID\r
394EFIAPI\r
395TerminalConInWaitForKey (\r
396 IN EFI_EVENT Event,\r
397 IN VOID *Context\r
ed66e1bc 398 );\r
95276127 399\r
e49ef433 400/**\r
401 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset().\r
402 If ExtendeVerification is TRUE, then perform dependent serial device reset,\r
403 and set display mode to mode 0.\r
404 If ExtendedVerification is FALSE, only set display mode to mode 0.\r
405\r
406 @param This Indicates the calling context.\r
407 @param ExtendedVerification Indicates that the driver may perform a more\r
408 exhaustive verification operation of the device\r
409 during reset.\r
410\r
00bfdbe1 411 @retval EFI_SUCCESS The reset operation succeeds.\r
412 @retval EFI_DEVICE_ERROR The terminal is not functioning correctly or the serial port reset fails.\r
e49ef433 413\r
414**/\r
95276127 415EFI_STATUS\r
416EFIAPI\r
417TerminalConOutReset (\r
418 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
419 IN BOOLEAN ExtendedVerification\r
ed66e1bc 420 );\r
95276127 421\r
e49ef433 422/**\r
423 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.OutputString().\r
424 The Unicode string will be converted to terminal expressible data stream\r
425 and send to terminal via serial port.\r
426\r
427 @param This Indicates the calling context.\r
428 @param WString The Null-terminated Unicode string to be displayed\r
429 on the terminal screen.\r
430\r
8fd98315 431 @retval EFI_SUCCESS The string is output successfully.\r
432 @retval EFI_DEVICE_ERROR The serial port fails to send the string out.\r
433 @retval EFI_WARN_UNKNOWN_GLYPH Indicates that some of the characters in the Unicode string could not\r
e49ef433 434 be rendered and are skipped.\r
8fd98315 435 @retval EFI_UNSUPPORTED If current display mode is out of range.\r
e49ef433 436\r
437**/\r
95276127 438EFI_STATUS\r
439EFIAPI\r
440TerminalConOutOutputString (\r
441 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
442 IN CHAR16 *WString\r
ed66e1bc 443 );\r
95276127 444\r
e49ef433 445/**\r
446 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.TestString().\r
447 If one of the characters in the *Wstring is\r
448 neither valid Unicode drawing characters,\r
449 not ASCII code, then this function will return\r
450 EFI_UNSUPPORTED.\r
451\r
452 @param This Indicates the calling context.\r
453 @param WString The Null-terminated Unicode string to be tested.\r
454\r
00bfdbe1 455 @retval EFI_SUCCESS The terminal is capable of rendering the output string.\r
456 @retval EFI_UNSUPPORTED Some of the characters in the Unicode string cannot be rendered.\r
e49ef433 457\r
458**/\r
95276127 459EFI_STATUS\r
460EFIAPI\r
461TerminalConOutTestString (\r
462 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
463 IN CHAR16 *WString\r
ed66e1bc 464 );\r
95276127 465\r
e49ef433 466/**\r
467 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.QueryMode().\r
468 It returns information for an available text mode\r
469 that the terminal supports.\r
470 In this driver, we support text mode 80x25 (mode 0),\r
471 80x50 (mode 1), 100x31 (mode 2).\r
472\r
473 @param This Indicates the calling context.\r
474 @param ModeNumber The mode number to return information on.\r
475 @param Columns The returned columns of the requested mode.\r
476 @param Rows The returned rows of the requested mode.\r
477\r
00bfdbe1 478 @retval EFI_SUCCESS The requested mode information is returned.\r
479 @retval EFI_UNSUPPORTED The mode number is not valid.\r
480 @retval EFI_DEVICE_ERROR\r
e49ef433 481\r
482**/\r
95276127 483EFI_STATUS\r
484EFIAPI\r
485TerminalConOutQueryMode (\r
486 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
487 IN UINTN ModeNumber,\r
488 OUT UINTN *Columns,\r
489 OUT UINTN *Rows\r
ed66e1bc 490 );\r
95276127 491\r
e49ef433 492/**\r
493 Implements EFI_SIMPLE_TEXT_OUT.SetMode().\r
494 Set the terminal to a specified display mode.\r
495 In this driver, we only support mode 0.\r
496\r
497 @param This Indicates the calling context.\r
498 @param ModeNumber The text mode to set.\r
499\r
00bfdbe1 500 @retval EFI_SUCCESS The requested text mode is set.\r
5c998646 501 @retval EFI_DEVICE_ERROR The requested text mode cannot be set\r
e49ef433 502 because of serial device error.\r
00bfdbe1 503 @retval EFI_UNSUPPORTED The text mode number is not valid.\r
e49ef433 504\r
505**/\r
95276127 506EFI_STATUS\r
507EFIAPI\r
508TerminalConOutSetMode (\r
509 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
510 IN UINTN ModeNumber\r
ed66e1bc 511 );\r
95276127 512\r
e49ef433 513/**\r
514 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.SetAttribute().\r
515\r
516 @param This Indicates the calling context.\r
517 @param Attribute The attribute to set. Only bit0..6 are valid, all other bits\r
518 are undefined and must be zero.\r
519\r
00bfdbe1 520 @retval EFI_SUCCESS The requested attribute is set.\r
521 @retval EFI_DEVICE_ERROR The requested attribute cannot be set due to serial port error.\r
522 @retval EFI_UNSUPPORTED The attribute requested is not defined by EFI spec.\r
e49ef433 523\r
524**/\r
95276127 525EFI_STATUS\r
526EFIAPI\r
527TerminalConOutSetAttribute (\r
528 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
529 IN UINTN Attribute\r
ed66e1bc 530 );\r
95276127 531\r
e49ef433 532/**\r
533 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.ClearScreen().\r
534 It clears the ANSI terminal's display to the\r
535 currently selected background color.\r
536\r
537 @param This Indicates the calling context.\r
538\r
00bfdbe1 539 @retval EFI_SUCCESS The operation completed successfully.\r
540 @retval EFI_DEVICE_ERROR The terminal screen cannot be cleared due to serial port error.\r
541 @retval EFI_UNSUPPORTED The terminal is not in a valid display mode.\r
e49ef433 542\r
543**/\r
95276127 544EFI_STATUS\r
545EFIAPI\r
546TerminalConOutClearScreen (\r
547 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This\r
ed66e1bc 548 );\r
95276127 549\r
e49ef433 550/**\r
551 Implements EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.SetCursorPosition().\r
552\r
553 @param This Indicates the calling context.\r
554 @param Column The row to set cursor to.\r
555 @param Row The column to set cursor to.\r
556\r
00bfdbe1 557 @retval EFI_SUCCESS The operation completed successfully.\r
558 @retval EFI_DEVICE_ERROR The request fails due to serial port error.\r
559 @retval EFI_UNSUPPORTED The terminal is not in a valid text mode, or the cursor position\r
e49ef433 560 is invalid for current mode.\r
561\r
562**/\r
95276127 563EFI_STATUS\r
564EFIAPI\r
565TerminalConOutSetCursorPosition (\r
566 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
567 IN UINTN Column,\r
568 IN UINTN Row\r
ed66e1bc 569 );\r
95276127 570\r
e49ef433 571/**\r
572 Implements SIMPLE_TEXT_OUTPUT.EnableCursor().\r
573 In this driver, the cursor cannot be hidden.\r
574\r
575 @param This Indicates the calling context.\r
576 @param Visible If TRUE, the cursor is set to be visible,\r
577 If FALSE, the cursor is set to be invisible.\r
578\r
00bfdbe1 579 @retval EFI_SUCCESS The request is valid.\r
580 @retval EFI_UNSUPPORTED The terminal does not support cursor hidden.\r
e49ef433 581\r
582**/\r
95276127 583EFI_STATUS\r
584EFIAPI\r
585TerminalConOutEnableCursor (\r
586 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
587 IN BOOLEAN Visible\r
ed66e1bc 588 );\r
95276127 589\r
8fd98315 590/**\r
5c998646 591 Test to see if this driver supports Controller.\r
8fd98315 592\r
593 @param This Protocol instance pointer.\r
9e604fe4 594 @param ControllerHandle Handle of device to test\r
8fd98315 595 @param RemainingDevicePath Optional parameter use to pick a specific child\r
596 device to start.\r
597\r
ab76200c 598 @retval EFI_SUCCESS This driver supports this device.\r
599 @retval EFI_ALREADY_STARTED This driver is already running on this device.\r
600 @retval other This driver does not support this device.\r
8fd98315 601\r
602**/\r
95276127 603EFI_STATUS\r
604EFIAPI\r
605TerminalDriverBindingSupported (\r
606 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
ab76200c 607 IN EFI_HANDLE ControllerHandle,\r
95276127 608 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
609 );\r
610\r
8fd98315 611/**\r
ab76200c 612 Start this driver on Controller by opening a Serial IO protocol,\r
8fd98315 613 reading Device Path, and creating a child handle with a Simple Text In,\r
614 Simple Text In Ex and Simple Text Out protocol, and device path protocol.\r
615 And store Console Device Environment Variables.\r
616\r
617 @param This Protocol instance pointer.\r
ab76200c 618 @param Controller Handle of device to bind driver to\r
8fd98315 619 @param RemainingDevicePath Optional parameter use to pick a specific child\r
620 device to start.\r
621\r
ab76200c 622 @retval EFI_SUCCESS This driver is added to Controller.\r
623 @retval EFI_ALREADY_STARTED This driver is already running on Controller.\r
624 @retval other This driver does not support this device.\r
8fd98315 625\r
626**/\r
95276127 627EFI_STATUS\r
628EFIAPI\r
629TerminalDriverBindingStart (\r
630 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
631 IN EFI_HANDLE Controller,\r
632 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
633 );\r
634\r
ab76200c 635\r
8fd98315 636/**\r
ab76200c 637 Stop this driver on Controller by closing Simple Text In, Simple Text\r
8fd98315 638 In Ex, Simple Text Out protocol, and removing parent device path from\r
5c998646 639 Console Device Environment Variables.\r
8fd98315 640\r
641 @param This Protocol instance pointer.\r
ab76200c 642 @param Controller Handle of device to stop driver on\r
8fd98315 643 @param NumberOfChildren Number of Handles in ChildHandleBuffer. If number of\r
644 children is zero stop the entire bus driver.\r
645 @param ChildHandleBuffer List of Child Handles to Stop.\r
646\r
ab76200c 647 @retval EFI_SUCCESS This driver is removed Controller.\r
8fd98315 648 @retval other This driver could not be removed from this device.\r
649\r
650**/\r
95276127 651EFI_STATUS\r
652EFIAPI\r
653TerminalDriverBindingStop (\r
654 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
655 IN EFI_HANDLE Controller,\r
656 IN UINTN NumberOfChildren,\r
657 IN EFI_HANDLE *ChildHandleBuffer\r
658 );\r
659\r
11baadb6 660/**\r
661 Free notify functions list.\r
662\r
663 @param ListHead The list head\r
664\r
665 @retval EFI_SUCCESS Free the notify list successfully.\r
666 @retval EFI_INVALID_PARAMETER ListHead is NULL.\r
667\r
668**/\r
669EFI_STATUS\r
670TerminalFreeNotifyList (\r
9006e2bb 671 IN OUT LIST_ENTRY *ListHead\r
672 );\r
11baadb6 673\r
5bca971e 674/**\r
675 Retrieves a Unicode string that is the user readable name of the driver.\r
676\r
677 This function retrieves the user readable name of a driver in the form of a\r
678 Unicode string. If the driver specified by This has a user readable name in\r
679 the language specified by Language, then a pointer to the driver name is\r
680 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified\r
681 by This does not support the language specified by Language,\r
682 then EFI_UNSUPPORTED is returned.\r
683\r
684 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
685 EFI_COMPONENT_NAME_PROTOCOL instance.\r
686\r
687 @param Language[in] A pointer to a Null-terminated ASCII string\r
688 array indicating the language. This is the\r
689 language of the driver name that the caller is\r
690 requesting, and it must match one of the\r
691 languages specified in SupportedLanguages. The\r
692 number of languages supported by a driver is up\r
693 to the driver writer. Language is specified\r
0254efc0 694 in RFC 4646 or ISO 639-2 language code format.\r
5bca971e 695\r
696 @param DriverName[out] A pointer to the Unicode string to return.\r
697 This Unicode string is the name of the\r
698 driver specified by This in the language\r
699 specified by Language.\r
700\r
701 @retval EFI_SUCCESS The Unicode string for the Driver specified by\r
702 This and the language specified by Language was\r
703 returned in DriverName.\r
704\r
705 @retval EFI_INVALID_PARAMETER Language is NULL.\r
706\r
707 @retval EFI_INVALID_PARAMETER DriverName is NULL.\r
708\r
709 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
710 the language specified by Language.\r
711\r
712**/\r
95276127 713EFI_STATUS\r
714EFIAPI\r
715TerminalComponentNameGetDriverName (\r
716 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
717 IN CHAR8 *Language,\r
718 OUT CHAR16 **DriverName\r
719 );\r
720\r
5bca971e 721\r
722/**\r
723 Retrieves a Unicode string that is the user readable name of the controller\r
724 that is being managed by a driver.\r
725\r
726 This function retrieves the user readable name of the controller specified by\r
727 ControllerHandle and ChildHandle in the form of a Unicode string. If the\r
728 driver specified by This has a user readable name in the language specified by\r
729 Language, then a pointer to the controller name is returned in ControllerName,\r
730 and EFI_SUCCESS is returned. If the driver specified by This is not currently\r
731 managing the controller specified by ControllerHandle and ChildHandle,\r
732 then EFI_UNSUPPORTED is returned. If the driver specified by This does not\r
733 support the language specified by Language, then EFI_UNSUPPORTED is returned.\r
734\r
735 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
736 EFI_COMPONENT_NAME_PROTOCOL instance.\r
737\r
738 @param ControllerHandle[in] The handle of a controller that the driver\r
739 specified by This is managing. This handle\r
740 specifies the controller whose name is to be\r
741 returned.\r
742\r
743 @param ChildHandle[in] The handle of the child controller to retrieve\r
744 the name of. This is an optional parameter that\r
745 may be NULL. It will be NULL for device\r
746 drivers. It will also be NULL for a bus drivers\r
747 that wish to retrieve the name of the bus\r
748 controller. It will not be NULL for a bus\r
749 driver that wishes to retrieve the name of a\r
750 child controller.\r
751\r
752 @param Language[in] A pointer to a Null-terminated ASCII string\r
753 array indicating the language. This is the\r
754 language of the driver name that the caller is\r
755 requesting, and it must match one of the\r
756 languages specified in SupportedLanguages. The\r
757 number of languages supported by a driver is up\r
758 to the driver writer. Language is specified in\r
0254efc0 759 RFC 4646 or ISO 639-2 language code format.\r
5bca971e 760\r
761 @param ControllerName[out] A pointer to the Unicode string to return.\r
762 This Unicode string is the name of the\r
763 controller specified by ControllerHandle and\r
764 ChildHandle in the language specified by\r
765 Language from the point of view of the driver\r
766 specified by This.\r
767\r
768 @retval EFI_SUCCESS The Unicode string for the user readable name in\r
769 the language specified by Language for the\r
770 driver specified by This was returned in\r
771 DriverName.\r
772\r
773 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.\r
774\r
775 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid\r
776 EFI_HANDLE.\r
777\r
778 @retval EFI_INVALID_PARAMETER Language is NULL.\r
779\r
780 @retval EFI_INVALID_PARAMETER ControllerName is NULL.\r
781\r
782 @retval EFI_UNSUPPORTED The driver specified by This is not currently\r
783 managing the controller specified by\r
784 ControllerHandle and ChildHandle.\r
785\r
786 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
787 the language specified by Language.\r
788\r
789**/\r
95276127 790EFI_STATUS\r
791EFIAPI\r
792TerminalComponentNameGetControllerName (\r
793 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
794 IN EFI_HANDLE ControllerHandle,\r
795 IN EFI_HANDLE ChildHandle OPTIONAL,\r
796 IN CHAR8 *Language,\r
797 OUT CHAR16 **ControllerName\r
798 );\r
799\r
5bca971e 800\r
95276127 801//\r
802// internal functions\r
803//\r
e49ef433 804\r
805/**\r
806 Check for a pending key in the Efi Key FIFO or Serial device buffer.\r
807\r
808 @param This Indicates the calling context.\r
809\r
8fd98315 810 @retval EFI_SUCCESS There is key pending.\r
811 @retval EFI_NOT_READY There is no key pending.\r
11baadb6 812 @retval EFI_DEVICE_ERROR If Serial IO is not attached to serial device.\r
e49ef433 813\r
814**/\r
95276127 815EFI_STATUS\r
816TerminalConInCheckForKey (\r
817 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This\r
ed66e1bc 818 );\r
95276127 819\r
8fd98315 820/**\r
821 Update terminal device path in Console Device Environment Variables.\r
822\r
823 @param VariableName The Console Device Environment Variable.\r
11baadb6 824 @param ParentDevicePath The terminal device path to be updated.\r
8fd98315 825\r
826 @return None.\r
827\r
828**/\r
95276127 829VOID\r
830TerminalUpdateConsoleDevVariable (\r
831 IN CHAR16 *VariableName,\r
832 IN EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath\r
ed66e1bc 833 );\r
95276127 834\r
e49ef433 835/**\r
836 Remove console device variable.\r
837\r
838 @param VariableName A pointer to the variable name.\r
839 @param ParentDevicePath A pointer to the parent device path.\r
840\r
e49ef433 841**/\r
95276127 842VOID\r
843TerminalRemoveConsoleDevVariable (\r
844 IN CHAR16 *VariableName,\r
845 IN EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath\r
ed66e1bc 846 );\r
95276127 847\r
8fd98315 848/**\r
849 Build termial device path according to terminal type.\r
850\r
851 @param TerminalType The terminal type is PC ANSI, VT100, VT100+ or VT-UTF8.\r
11baadb6 852 @param ParentDevicePath Parent device path.\r
8fd98315 853 @param TerminalDevicePath Returned terminal device path, if building successfully.\r
854\r
855 @retval EFI_UNSUPPORTED Terminal does not belong to the supported type.\r
856 @retval EFI_OUT_OF_RESOURCES Generate terminal device path failed.\r
857 @retval EFI_SUCCESS Build terminal device path successfully.\r
858\r
859**/\r
95276127 860EFI_STATUS\r
861SetTerminalDevicePath (\r
862 IN UINT8 TerminalType,\r
863 IN EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath,\r
864 OUT EFI_DEVICE_PATH_PROTOCOL **TerminalDevicePath\r
ed66e1bc 865 );\r
95276127 866\r
e49ef433 867/**\r
868 Get one key out of serial buffer.\r
869\r
870 @param SerialIo Serial I/O protocl attached to the serial device.\r
871 @param Input The fetched key.\r
872\r
00bfdbe1 873 @retval EFI_NOT_READY If serial buffer is empty.\r
874 @retval EFI_DEVICE_ERROR If reading serial buffer encounter error.\r
875 @retval EFI_SUCCESS If reading serial buffer successfully, put\r
e49ef433 876 the fetched key to the parameter output.\r
877\r
878**/\r
95276127 879EFI_STATUS\r
880GetOneKeyFromSerial (\r
881 EFI_SERIAL_IO_PROTOCOL *SerialIo,\r
882 UINT8 *Input\r
ed66e1bc 883 );\r
95276127 884\r
e49ef433 885/**\r
886 Insert one byte raw data into the Raw Data FIFO.\r
887\r
888 @param TerminalDevice Terminal driver private structure.\r
889 @param Input The key will be input.\r
890\r
00bfdbe1 891 @retval TRUE If insert successfully.\r
892 @retval FLASE If Raw Data buffer is full before key insertion,\r
e49ef433 893 and the key is lost.\r
894\r
895**/\r
95276127 896BOOLEAN\r
897RawFiFoInsertOneKey (\r
898 TERMINAL_DEV *TerminalDevice,\r
899 UINT8 Input\r
ed66e1bc 900 );\r
95276127 901\r
e49ef433 902/**\r
903 Remove one pre-fetched key out of the Raw Data FIFO.\r
904\r
905 @param TerminalDevice Terminal driver private structure.\r
906 @param Output The key will be removed.\r
907\r
00bfdbe1 908 @retval TRUE If insert successfully.\r
909 @retval FLASE If Raw Data FIFO buffer is empty before remove operation.\r
e49ef433 910\r
911**/\r
95276127 912BOOLEAN\r
913RawFiFoRemoveOneKey (\r
914 TERMINAL_DEV *TerminalDevice,\r
915 UINT8 *Output\r
ed66e1bc 916 );\r
95276127 917\r
e49ef433 918/**\r
919 Clarify whether Raw Data FIFO buffer is empty.\r
920\r
921 @param TerminalDevice Terminal driver private structure\r
922\r
00bfdbe1 923 @retval TRUE If Raw Data FIFO buffer is empty.\r
924 @retval FLASE If Raw Data FIFO buffer is not empty.\r
e49ef433 925\r
926**/\r
95276127 927BOOLEAN\r
928IsRawFiFoEmpty (\r
929 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 930 );\r
95276127 931\r
e49ef433 932/**\r
933 Clarify whether Raw Data FIFO buffer is full.\r
934\r
935 @param TerminalDevice Terminal driver private structure\r
936\r
00bfdbe1 937 @retval TRUE If Raw Data FIFO buffer is full.\r
938 @retval FLASE If Raw Data FIFO buffer is not full.\r
e49ef433 939\r
940**/\r
95276127 941BOOLEAN\r
942IsRawFiFoFull (\r
943 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 944 );\r
95276127 945\r
e49ef433 946/**\r
947 Insert one pre-fetched key into the FIFO buffer.\r
948\r
949 @param TerminalDevice Terminal driver private structure.\r
950 @param Key The key will be input.\r
951\r
00bfdbe1 952 @retval TRUE If insert successfully.\r
953 @retval FLASE If FIFO buffer is full before key insertion,\r
e49ef433 954 and the key is lost.\r
955\r
956**/\r
95276127 957BOOLEAN\r
958EfiKeyFiFoInsertOneKey (\r
959 TERMINAL_DEV *TerminalDevice,\r
f0368006 960 EFI_INPUT_KEY *Key\r
ed66e1bc 961 );\r
95276127 962\r
e49ef433 963/**\r
964 Remove one pre-fetched key out of the FIFO buffer.\r
965\r
966 @param TerminalDevice Terminal driver private structure.\r
967 @param Output The key will be removed.\r
968\r
00bfdbe1 969 @retval TRUE If insert successfully.\r
970 @retval FLASE If FIFO buffer is empty before remove operation.\r
e49ef433 971\r
972**/\r
95276127 973BOOLEAN\r
974EfiKeyFiFoRemoveOneKey (\r
975 TERMINAL_DEV *TerminalDevice,\r
976 EFI_INPUT_KEY *Output\r
ed66e1bc 977 );\r
95276127 978\r
e49ef433 979/**\r
980 Clarify whether FIFO buffer is empty.\r
981\r
982 @param TerminalDevice Terminal driver private structure\r
983\r
00bfdbe1 984 @retval TRUE If FIFO buffer is empty.\r
985 @retval FLASE If FIFO buffer is not empty.\r
e49ef433 986\r
987**/\r
95276127 988BOOLEAN\r
989IsEfiKeyFiFoEmpty (\r
990 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 991 );\r
95276127 992\r
e49ef433 993/**\r
994 Clarify whether FIFO buffer is full.\r
995\r
996 @param TerminalDevice Terminal driver private structure\r
997\r
00bfdbe1 998 @retval TRUE If FIFO buffer is full.\r
999 @retval FLASE If FIFO buffer is not full.\r
e49ef433 1000\r
1001**/\r
95276127 1002BOOLEAN\r
1003IsEfiKeyFiFoFull (\r
1004 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1005 );\r
95276127 1006\r
e49ef433 1007/**\r
1008 Insert one pre-fetched key into the Unicode FIFO buffer.\r
1009\r
1010 @param TerminalDevice Terminal driver private structure.\r
1011 @param Input The key will be input.\r
1012\r
00bfdbe1 1013 @retval TRUE If insert successfully.\r
1014 @retval FLASE If Unicode FIFO buffer is full before key insertion,\r
e49ef433 1015 and the key is lost.\r
1016\r
1017**/\r
95276127 1018BOOLEAN\r
1019UnicodeFiFoInsertOneKey (\r
1020 TERMINAL_DEV *TerminalDevice,\r
1021 UINT16 Input\r
ed66e1bc 1022 );\r
95276127 1023\r
e49ef433 1024/**\r
1025 Remove one pre-fetched key out of the Unicode FIFO buffer.\r
1026\r
1027 @param TerminalDevice Terminal driver private structure.\r
1028 @param Output The key will be removed.\r
1029\r
00bfdbe1 1030 @retval TRUE If insert successfully.\r
1031 @retval FLASE If Unicode FIFO buffer is empty before remove operation.\r
e49ef433 1032\r
1033**/\r
95276127 1034BOOLEAN\r
1035UnicodeFiFoRemoveOneKey (\r
1036 TERMINAL_DEV *TerminalDevice,\r
1037 UINT16 *Output\r
ed66e1bc 1038 );\r
95276127 1039\r
e49ef433 1040/**\r
1041 Clarify whether Unicode FIFO buffer is empty.\r
1042\r
1043 @param TerminalDevice Terminal driver private structure\r
1044\r
00bfdbe1 1045 @retval TRUE If Unicode FIFO buffer is empty.\r
1046 @retval FLASE If Unicode FIFO buffer is not empty.\r
e49ef433 1047\r
1048**/\r
95276127 1049BOOLEAN\r
1050IsUnicodeFiFoEmpty (\r
1051 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1052 );\r
95276127 1053\r
e49ef433 1054/**\r
1055 Clarify whether Unicode FIFO buffer is full.\r
1056\r
1057 @param TerminalDevice Terminal driver private structure\r
1058\r
00bfdbe1 1059 @retval TRUE If Unicode FIFO buffer is full.\r
1060 @retval FLASE If Unicode FIFO buffer is not full.\r
e49ef433 1061\r
1062**/\r
95276127 1063BOOLEAN\r
1064IsUnicodeFiFoFull (\r
1065 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1066 );\r
95276127 1067\r
8fd98315 1068/**\r
1069 Count Unicode FIFO buffer.\r
1070\r
1071 @param TerminalDevice Terminal driver private structure\r
1072\r
1073 @return The count in bytes of Unicode FIFO.\r
1074\r
1075**/\r
95276127 1076UINT8\r
1077UnicodeFiFoGetKeyCount (\r
1078 TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1079 );\r
95276127 1080\r
8fd98315 1081/**\r
5c998646 1082 Translate raw data into Unicode (according to different encode), and\r
1083 translate Unicode into key information. (according to different standard).\r
8fd98315 1084\r
1085 @param TerminalDevice Terminal driver private structure.\r
1086\r
8fd98315 1087**/\r
95276127 1088VOID\r
1089TranslateRawDataToEfiKey (\r
1090 IN TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1091 );\r
95276127 1092\r
1093//\r
1094// internal functions for PC ANSI\r
1095//\r
8fd98315 1096\r
1097/**\r
1098 Translate all raw data in the Raw FIFI into unicode, and insert\r
1099 them into Unicode FIFO.\r
1100\r
1101 @param TerminalDevice The terminal device.\r
1102\r
8fd98315 1103**/\r
95276127 1104VOID\r
1105AnsiRawDataToUnicode (\r
8fd98315 1106 IN TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1107 );\r
95276127 1108\r
8fd98315 1109/**\r
1110 Converts a stream of Unicode characters from a terminal input device into EFI Keys that\r
5c998646 1111 can be read through the Simple Input Protocol.\r
1112\r
8fd98315 1113 The table below shows the keyboard input mappings that this function supports.\r
1114 If the ESC sequence listed in one of the columns is presented, then it is translated\r
1115 into the coorespoding EFI Scan Code. If a matching sequence is not found, then the raw\r
1116 key strokes are converted into EFI Keys.\r
1117\r
1118 2 seconds are allowed for an ESC sequence to be completed. If the ESC sequence is not\r
1119 completed in 2 seconds, then the raw key strokes of the partial ESC sequence are\r
1120 converted into EFI Keys.\r
1121 There is one special input sequence that will force the system to reset.\r
1122 This is ESC R ESC r ESC R.\r
1123\r
1124 Symbols used in table below\r
1125 ===========================\r
1126 ESC = 0x1B\r
1127 CSI = 0x9B\r
1128 DEL = 0x7f\r
1129 ^ = CTRL\r
1130 +=========+======+===========+==========+==========+\r
1131 | | EFI | UEFI 2.0 | | |\r
1132 | | Scan | | VT100+ | |\r
1133 | KEY | Code | PC ANSI | VTUTF8 | VT100 |\r
1134 +=========+======+===========+==========+==========+\r
1135 | NULL | 0x00 | | | |\r
1136 | UP | 0x01 | ESC [ A | ESC [ A | ESC [ A |\r
1137 | DOWN | 0x02 | ESC [ B | ESC [ B | ESC [ B |\r
1138 | RIGHT | 0x03 | ESC [ C | ESC [ C | ESC [ C |\r
1139 | LEFT | 0x04 | ESC [ D | ESC [ D | ESC [ D |\r
1140 | HOME | 0x05 | ESC [ H | ESC h | ESC [ H |\r
1141 | END | 0x06 | ESC [ F | ESC k | ESC [ K |\r
1142 | INSERT | 0x07 | ESC [ @ | ESC + | ESC [ @ |\r
1143 | | | ESC [ L | | ESC [ L |\r
1144 | DELETE | 0x08 | ESC [ X | ESC - | ESC [ P |\r
1145 | PG UP | 0x09 | ESC [ I | ESC ? | ESC [ V |\r
1146 | | | | | ESC [ ? |\r
1147 | PG DOWN | 0x0A | ESC [ G | ESC / | ESC [ U |\r
1148 | | | | | ESC [ / |\r
1149 | F1 | 0x0B | ESC [ M | ESC 1 | ESC O P |\r
1150 | F2 | 0x0C | ESC [ N | ESC 2 | ESC O Q |\r
1151 | F3 | 0x0D | ESC [ O | ESC 3 | ESC O w |\r
1152 | F4 | 0x0E | ESC [ P | ESC 4 | ESC O x |\r
1153 | F5 | 0x0F | ESC [ Q | ESC 5 | ESC O t |\r
1154 | F6 | 0x10 | ESC [ R | ESC 6 | ESC O u |\r
1155 | F7 | 0x11 | ESC [ S | ESC 7 | ESC O q |\r
1156 | F8 | 0x12 | ESC [ T | ESC 8 | ESC O r |\r
1157 | F9 | 0x13 | ESC [ U | ESC 9 | ESC O p |\r
1158 | F10 | 0x14 | ESC [ V | ESC 0 | ESC O M |\r
1159 | Escape | 0x17 | ESC | ESC | ESC |\r
1160 | F11 | 0x15 | | ESC ! | |\r
1161 | F12 | 0x16 | | ESC @ | |\r
1162 +=========+======+===========+==========+==========+\r
5c998646 1163\r
8fd98315 1164 Special Mappings\r
1165 ================\r
1166 ESC R ESC r ESC R = Reset System\r
1167\r
1168\r
1169 @param TerminalDevice The terminal device to use to translate raw input into EFI Keys\r
1170\r
8fd98315 1171**/\r
95276127 1172VOID\r
1173UnicodeToEfiKey (\r
ab76200c 1174 IN TERMINAL_DEV *TerminalDevice\r
ed66e1bc 1175 );\r
95276127 1176\r
8fd98315 1177/**\r
1178 Check if input string is valid Ascii string, valid EFI control characters\r
1179 or valid text graphics.\r
1180\r
1181 @param TerminalDevice The terminal device.\r
5c998646 1182 @param WString The input string.\r
1183\r
8fd98315 1184 @retval EFI_UNSUPPORTED If not all input characters are valid.\r
1185 @retval EFI_SUCCESS If all input characters are valid.\r
1186\r
1187**/\r
95276127 1188EFI_STATUS\r
1189AnsiTestString (\r
1190 IN TERMINAL_DEV *TerminalDevice,\r
95276127 1191 IN CHAR16 *WString\r
ed66e1bc 1192 );\r
95276127 1193\r
1194//\r
1195// internal functions for VTUTF8\r
1196//\r
8fd98315 1197\r
1198/**\r
5c998646 1199 Translate all VT-UTF8 characters in the Raw FIFI into unicode characters,\r
8fd98315 1200 and insert them into Unicode FIFO.\r
1201\r
1202 @param VtUtf8Device The terminal device.\r
1203\r
8fd98315 1204**/\r
95276127 1205VOID\r
1206VTUTF8RawDataToUnicode (\r
1207 IN TERMINAL_DEV *VtUtf8Device\r
ed66e1bc 1208 );\r
95276127 1209\r
8fd98315 1210/**\r
1211 Check if input string is valid VT-UTF8 string.\r
1212\r
1213 @param TerminalDevice The terminal device.\r
5c998646 1214 @param WString The input string.\r
1215\r
8fd98315 1216 @retval EFI_SUCCESS If all input characters are valid.\r
1217\r
1218**/\r
95276127 1219EFI_STATUS\r
1220VTUTF8TestString (\r
1221 IN TERMINAL_DEV *TerminalDevice,\r
1222 IN CHAR16 *WString\r
ed66e1bc 1223 );\r
95276127 1224\r
5c998646 1225/**\r
8fd98315 1226 Translate one Unicode character into VT-UTF8 characters.\r
1227\r
1228 UTF8 Encoding Table\r
1229 Bits per Character | Unicode Character Range | Unicode Binary Encoding | UTF8 Binary Encoding\r
11baadb6 1230 0-7 | 0x0000 - 0x007F | 00000000 0xxxxxxx | 0xxxxxxx\r
1231 8-11 | 0x0080 - 0x07FF | 00000xxx xxxxxxxx | 110xxxxx 10xxxxxx\r
1232 12-16 | 0x0800 - 0xFFFF | xxxxxxxx xxxxxxxx | 1110xxxx 10xxxxxx 10xxxxxx\r
8fd98315 1233\r
1234\r
1235 @param Unicode Unicode character need translating.\r
1236 @param Utf8Char Return VT-UTF8 character set.\r
1237 @param ValidBytes The count of valid VT-UTF8 characters. If\r
1238 ValidBytes is zero, no valid VT-UTF8 returned.\r
8fd98315 1239\r
1240**/\r
95276127 1241VOID\r
1242UnicodeToUtf8 (\r
1243 IN CHAR16 Unicode,\r
1244 OUT UTF8_CHAR *Utf8Char,\r
1245 OUT UINT8 *ValidBytes\r
ed66e1bc 1246 );\r
95276127 1247\r
8fd98315 1248/**\r
1249 Get one valid VT-UTF8 characters set from Raw Data FIFO.\r
1250\r
1251 @param Utf8Device The terminal device.\r
1252 @param Utf8Char Returned valid VT-UTF8 characters set.\r
5c998646 1253 @param ValidBytes The count of returned VT-VTF8 characters.\r
8fd98315 1254 If ValidBytes is zero, no valid VT-UTF8 returned.\r
1255\r
8fd98315 1256**/\r
95276127 1257VOID\r
1258GetOneValidUtf8Char (\r
1259 IN TERMINAL_DEV *Utf8Device,\r
1260 OUT UTF8_CHAR *Utf8Char,\r
1261 OUT UINT8 *ValidBytes\r
ed66e1bc 1262 );\r
95276127 1263\r
5c998646 1264/**\r
8fd98315 1265 Translate VT-UTF8 characters into one Unicode character.\r
1266\r
1267 UTF8 Encoding Table\r
1268 Bits per Character | Unicode Character Range | Unicode Binary Encoding | UTF8 Binary Encoding\r
11baadb6 1269 0-7 | 0x0000 - 0x007F | 00000000 0xxxxxxx | 0xxxxxxx\r
1270 8-11 | 0x0080 - 0x07FF | 00000xxx xxxxxxxx | 110xxxxx 10xxxxxx\r
1271 12-16 | 0x0800 - 0xFFFF | xxxxxxxx xxxxxxxx | 1110xxxx 10xxxxxx 10xxxxxx\r
8fd98315 1272\r
1273\r
1274 @param Utf8Char VT-UTF8 character set needs translating.\r
1275 @param ValidBytes The count of valid VT-UTF8 characters.\r
5c998646 1276 @param UnicodeChar Returned unicode character.\r
8fd98315 1277\r
1278**/\r
95276127 1279VOID\r
1280Utf8ToUnicode (\r
1281 IN UTF8_CHAR Utf8Char,\r
1282 IN UINT8 ValidBytes,\r
1283 OUT CHAR16 *UnicodeChar\r
ed66e1bc 1284 );\r
95276127 1285\r
1286//\r
1287// functions for boxdraw unicode\r
1288//\r
8fd98315 1289\r
1290/**\r
1291 Detects if a Unicode char is for Box Drawing text graphics.\r
1292\r
1293 @param Graphic Unicode char to test.\r
1294 @param PcAnsi Optional pointer to return PCANSI equivalent of\r
1295 Graphic.\r
1296 @param Ascii Optional pointer to return ASCII equivalent of\r
1297 Graphic.\r
1298\r
00bfdbe1 1299 @retval TRUE If Graphic is a supported Unicode Box Drawing character.\r
8fd98315 1300\r
1301**/\r
95276127 1302BOOLEAN\r
1303TerminalIsValidTextGraphics (\r
1304 IN CHAR16 Graphic,\r
1305 OUT CHAR8 *PcAnsi, OPTIONAL\r
1306 OUT CHAR8 *Ascii OPTIONAL\r
ed66e1bc 1307 );\r
95276127 1308\r
8fd98315 1309/**\r
1310 Detects if a valid ASCII char.\r
1311\r
1312 @param Ascii An ASCII character.\r
5c998646 1313\r
8fd98315 1314 @retval TRUE If it is a valid ASCII character.\r
1315 @retval FALSE If it is not a valid ASCII character.\r
1316\r
1317**/\r
95276127 1318BOOLEAN\r
1319TerminalIsValidAscii (\r
1320 IN CHAR16 Ascii\r
ed66e1bc 1321 );\r
95276127 1322\r
8fd98315 1323/**\r
1324 Detects if a valid EFI control character.\r
1325\r
1326 @param CharC An input EFI Control character.\r
5c998646 1327\r
8fd98315 1328 @retval TRUE If it is a valid EFI control character.\r
1329 @retval FALSE If it is not a valid EFI control character.\r
1330\r
1331**/\r
95276127 1332BOOLEAN\r
1333TerminalIsValidEfiCntlChar (\r
1334 IN CHAR16 CharC\r
ed66e1bc 1335 );\r
95276127 1336\r
f1aec6cc 1337/**\r
1338 Check if the device supports hot-plug through its device path.\r
1339\r
1340 This function could be updated to check more types of Hot Plug devices.\r
1341 Currently, it checks USB and PCCard device.\r
1342\r
1343 @param DevicePath Pointer to device's device path.\r
1344\r
1345 @retval TRUE The devcie is a hot-plug device\r
1346 @retval FALSE The devcie is not a hot-plug device.\r
1347\r
1348**/\r
1349BOOLEAN\r
1350IsHotPlugDevice (\r
1351 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
1352 );\r
1353\r
f0368006
RN
1354/**\r
1355 Timer handler to poll the key from serial.\r
1356\r
1357 @param Event Indicates the event that invoke this function.\r
1358 @param Context Indicates the calling context.\r
1359**/\r
1360VOID\r
1361EFIAPI\r
1362TerminalConInTimerHandler (\r
1363 IN EFI_EVENT Event,\r
1364 IN VOID *Context\r
1365 );\r
95276127 1366#endif\r