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