]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SimpleTextIn.h
MdePkg FirmwareManagement.h: Fix typo EFI_SECURITY_VIOLATIO
[mirror_edk2.git] / MdePkg / Include / Protocol / SimpleTextIn.h
CommitLineData
d1f95000 1/** @file\r
c8c44377 2 Simple Text Input protocol from the UEFI 2.0 specification.\r
d1f95000 3\r
4 Abstraction of a very simple input device like a keyboard or serial\r
5 terminal.\r
6\r
2be21afb 7 Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
850f13eb 8 This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
d1f95000 12\r
850f13eb 13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
d1f95000 15\r
d1f95000 16**/\r
17\r
18#ifndef __SIMPLE_TEXT_IN_PROTOCOL_H__\r
19#define __SIMPLE_TEXT_IN_PROTOCOL_H__\r
20\r
a6508c05 21#define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \\r
d1f95000 22 { \\r
23 0x387477c1, 0x69c7, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \\r
24 }\r
25\r
992f22b9
LG
26typedef struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL EFI_SIMPLE_TEXT_INPUT_PROTOCOL;\r
27\r
99e8ed21 28///\r
992f22b9 29/// Protocol GUID name defined in EFI1.1.\r
850f13eb 30///\r
a6508c05 31#define SIMPLE_INPUT_PROTOCOL EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID\r
d1f95000 32\r
99e8ed21 33///\r
992f22b9 34/// Protocol name in EFI1.1 for backward-compatible.\r
850f13eb 35///\r
a6508c05 36typedef struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL SIMPLE_INPUT_INTERFACE;\r
992f22b9
LG
37\r
38///\r
39/// The keystroke information for the key that was pressed.\r
40///\r
d1f95000 41typedef struct {\r
42 UINT16 ScanCode;\r
43 CHAR16 UnicodeChar;\r
44} EFI_INPUT_KEY;\r
45\r
46//\r
47// Required unicode control chars\r
48//\r
d1f95000 49#define CHAR_BACKSPACE 0x0008\r
50#define CHAR_TAB 0x0009\r
51#define CHAR_LINEFEED 0x000A\r
52#define CHAR_CARRIAGE_RETURN 0x000D\r
53\r
54//\r
55// EFI Scan codes\r
56//\r
57#define SCAN_NULL 0x0000\r
58#define SCAN_UP 0x0001\r
59#define SCAN_DOWN 0x0002\r
60#define SCAN_RIGHT 0x0003\r
61#define SCAN_LEFT 0x0004\r
62#define SCAN_HOME 0x0005\r
63#define SCAN_END 0x0006\r
64#define SCAN_INSERT 0x0007\r
65#define SCAN_DELETE 0x0008\r
66#define SCAN_PAGE_UP 0x0009\r
67#define SCAN_PAGE_DOWN 0x000A\r
68#define SCAN_F1 0x000B\r
69#define SCAN_F2 0x000C\r
70#define SCAN_F3 0x000D\r
71#define SCAN_F4 0x000E\r
72#define SCAN_F5 0x000F\r
73#define SCAN_F6 0x0010\r
74#define SCAN_F7 0x0011\r
75#define SCAN_F8 0x0012\r
76#define SCAN_F9 0x0013\r
77#define SCAN_F10 0x0014\r
d1f95000 78#define SCAN_ESC 0x0017\r
79\r
80/**\r
6e55477d 81 Reset the input device and optionally run diagnostics\r
d1f95000 82\r
83 @param This Protocol instance pointer.\r
84 @param ExtendedVerification Driver may perform diagnostics on reset.\r
85\r
86 @retval EFI_SUCCESS The device was reset.\r
87 @retval EFI_DEVICE_ERROR The device is not functioning properly and could not be reset.\r
88\r
89**/\r
90typedef\r
91EFI_STATUS\r
8b13229b 92(EFIAPI *EFI_INPUT_RESET)(\r
a6508c05 93 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
d1f95000 94 IN BOOLEAN ExtendedVerification\r
ed66e1bc 95 );\r
d1f95000 96\r
97/**\r
850f13eb 98 Reads the next keystroke from the input device. The WaitForKey Event can\r
6e55477d 99 be used to test for existence of a keystroke via WaitForEvent () call.\r
d1f95000 100\r
850f13eb 101 @param This Protocol instance pointer.\r
102 @param Key A pointer to a buffer that is filled in with the keystroke\r
103 information for the key that was pressed.\r
d1f95000 104\r
105 @retval EFI_SUCCESS The keystroke information was returned.\r
6e55477d 106 @retval EFI_NOT_READY There was no keystroke data available.\r
107 @retval EFI_DEVICE_ERROR The keystroke information was not returned due to\r
d1f95000 108 hardware errors.\r
109\r
110**/\r
111typedef\r
112EFI_STATUS\r
8b13229b 113(EFIAPI *EFI_INPUT_READ_KEY)(\r
a6508c05 114 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
d1f95000 115 OUT EFI_INPUT_KEY *Key\r
ed66e1bc 116 );\r
d1f95000 117\r
44717a39 118///\r
850f13eb 119/// The EFI_SIMPLE_TEXT_INPUT_PROTOCOL is used on the ConsoleIn device.\r
44717a39 120/// It is the minimum required protocol for ConsoleIn.\r
121///\r
a6508c05 122struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL {\r
d1f95000 123 EFI_INPUT_RESET Reset;\r
124 EFI_INPUT_READ_KEY ReadKeyStroke;\r
1f08a159 125 ///\r
126 /// Event to use with WaitForEvent() to wait for a key to be available\r
127 ///\r
d1f95000 128 EFI_EVENT WaitForKey;\r
129};\r
130\r
131extern EFI_GUID gEfiSimpleTextInProtocolGuid;\r
132\r
133#endif\r