]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SimpleTextOut.h
Updated headers to follow coding standard
[mirror_edk2.git] / MdePkg / Include / Protocol / SimpleTextOut.h
CommitLineData
d1f95000 1/** @file\r
2 Simple Text Out protocol from the EFI 1.0 specification.\r
3\r
4 Abstraction of a very simple text based output device like VGA text mode or\r
5 a serial terminal. The Simple Text Out protocol instance can represent\r
6 a single hardware device or a virtual device that is an agregation\r
7 of multiple physical devices.\r
8\r
9 Copyright (c) 2006, Intel Corporation \r
10 All rights reserved. This program and the accompanying materials \r
11 are licensed and made available under the terms and conditions of the BSD License \r
12 which accompanies this distribution. The full text of the license may be found at \r
13 http://opensource.org/licenses/bsd-license.php \r
14\r
15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
17\r
d1f95000 18**/\r
19\r
20#ifndef __SIMPLE_TEXT_OUT_H__\r
21#define __SIMPLE_TEXT_OUT_H__\r
22\r
a6508c05 23#define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \\r
d1f95000 24 { \\r
25 0x387477c2, 0x69c7, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \\r
26 }\r
27\r
a6508c05 28//\r
29// Protocol GUID defined in EFI1.1.\r
30// \r
31#define SIMPLE_TEXT_OUTPUT_PROTOCOL EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID\r
32\r
33typedef struct _EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL;\r
d1f95000 34\r
a6508c05 35//\r
36// Backward-compatible with EFI1.1.\r
37// \r
38typedef EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL SIMPLE_TEXT_OUTPUT_INTERFACE;\r
d1f95000 39\r
40//\r
41// Define's for required EFI Unicode Box Draw characters\r
42//\r
43#define BOXDRAW_HORIZONTAL 0x2500\r
44#define BOXDRAW_VERTICAL 0x2502\r
45#define BOXDRAW_DOWN_RIGHT 0x250c\r
46#define BOXDRAW_DOWN_LEFT 0x2510\r
47#define BOXDRAW_UP_RIGHT 0x2514\r
48#define BOXDRAW_UP_LEFT 0x2518\r
49#define BOXDRAW_VERTICAL_RIGHT 0x251c\r
50#define BOXDRAW_VERTICAL_LEFT 0x2524\r
51#define BOXDRAW_DOWN_HORIZONTAL 0x252c\r
52#define BOXDRAW_UP_HORIZONTAL 0x2534\r
53#define BOXDRAW_VERTICAL_HORIZONTAL 0x253c\r
54#define BOXDRAW_DOUBLE_HORIZONTAL 0x2550\r
55#define BOXDRAW_DOUBLE_VERTICAL 0x2551\r
56#define BOXDRAW_DOWN_RIGHT_DOUBLE 0x2552\r
57#define BOXDRAW_DOWN_DOUBLE_RIGHT 0x2553\r
58#define BOXDRAW_DOUBLE_DOWN_RIGHT 0x2554\r
59#define BOXDRAW_DOWN_LEFT_DOUBLE 0x2555\r
60#define BOXDRAW_DOWN_DOUBLE_LEFT 0x2556\r
61#define BOXDRAW_DOUBLE_DOWN_LEFT 0x2557\r
62#define BOXDRAW_UP_RIGHT_DOUBLE 0x2558\r
63#define BOXDRAW_UP_DOUBLE_RIGHT 0x2559\r
64#define BOXDRAW_DOUBLE_UP_RIGHT 0x255a\r
65#define BOXDRAW_UP_LEFT_DOUBLE 0x255b\r
66#define BOXDRAW_UP_DOUBLE_LEFT 0x255c\r
67#define BOXDRAW_DOUBLE_UP_LEFT 0x255d\r
68#define BOXDRAW_VERTICAL_RIGHT_DOUBLE 0x255e\r
69#define BOXDRAW_VERTICAL_DOUBLE_RIGHT 0x255f\r
70#define BOXDRAW_DOUBLE_VERTICAL_RIGHT 0x2560\r
71#define BOXDRAW_VERTICAL_LEFT_DOUBLE 0x2561\r
72#define BOXDRAW_VERTICAL_DOUBLE_LEFT 0x2562\r
73#define BOXDRAW_DOUBLE_VERTICAL_LEFT 0x2563\r
74#define BOXDRAW_DOWN_HORIZONTAL_DOUBLE 0x2564\r
75#define BOXDRAW_DOWN_DOUBLE_HORIZONTAL 0x2565\r
76#define BOXDRAW_DOUBLE_DOWN_HORIZONTAL 0x2566\r
77#define BOXDRAW_UP_HORIZONTAL_DOUBLE 0x2567\r
78#define BOXDRAW_UP_DOUBLE_HORIZONTAL 0x2568\r
79#define BOXDRAW_DOUBLE_UP_HORIZONTAL 0x2569\r
80#define BOXDRAW_VERTICAL_HORIZONTAL_DOUBLE 0x256a\r
81#define BOXDRAW_VERTICAL_DOUBLE_HORIZONTAL 0x256b\r
82#define BOXDRAW_DOUBLE_VERTICAL_HORIZONTAL 0x256c\r
83\r
84//\r
85// EFI Required Block Elements Code Chart\r
86//\r
87#define BLOCKELEMENT_FULL_BLOCK 0x2588\r
88#define BLOCKELEMENT_LIGHT_SHADE 0x2591\r
89\r
90//\r
91// EFI Required Geometric Shapes Code Chart\r
92//\r
93#define GEOMETRICSHAPE_UP_TRIANGLE 0x25b2\r
94#define GEOMETRICSHAPE_RIGHT_TRIANGLE 0x25ba\r
95#define GEOMETRICSHAPE_DOWN_TRIANGLE 0x25bc\r
96#define GEOMETRICSHAPE_LEFT_TRIANGLE 0x25c4\r
97\r
98//\r
99// EFI Required Arrow shapes\r
100//\r
101#define ARROW_LEFT 0x2190\r
102#define ARROW_UP 0x2191\r
103#define ARROW_RIGHT 0x2192\r
104#define ARROW_DOWN 0x2193\r
105\r
106//\r
107// EFI Console Colours\r
108//\r
109#define EFI_BLACK 0x00\r
110#define EFI_BLUE 0x01\r
111#define EFI_GREEN 0x02\r
112#define EFI_CYAN (EFI_BLUE | EFI_GREEN)\r
113#define EFI_RED 0x04\r
114#define EFI_MAGENTA (EFI_BLUE | EFI_RED)\r
115#define EFI_BROWN (EFI_GREEN | EFI_RED)\r
116#define EFI_LIGHTGRAY (EFI_BLUE | EFI_GREEN | EFI_RED)\r
117#define EFI_BRIGHT 0x08\r
118#define EFI_DARKGRAY (EFI_BRIGHT)\r
119#define EFI_LIGHTBLUE (EFI_BLUE | EFI_BRIGHT)\r
120#define EFI_LIGHTGREEN (EFI_GREEN | EFI_BRIGHT)\r
121#define EFI_LIGHTCYAN (EFI_CYAN | EFI_BRIGHT)\r
122#define EFI_LIGHTRED (EFI_RED | EFI_BRIGHT)\r
123#define EFI_LIGHTMAGENTA (EFI_MAGENTA | EFI_BRIGHT)\r
124#define EFI_YELLOW (EFI_BROWN | EFI_BRIGHT)\r
125#define EFI_WHITE (EFI_BLUE | EFI_GREEN | EFI_RED | EFI_BRIGHT)\r
126\r
127#define EFI_TEXT_ATTR(f, b) ((f) | ((b) << 4))\r
128\r
129#define EFI_BACKGROUND_BLACK 0x00\r
130#define EFI_BACKGROUND_BLUE 0x10\r
131#define EFI_BACKGROUND_GREEN 0x20\r
132#define EFI_BACKGROUND_CYAN (EFI_BACKGROUND_BLUE | EFI_BACKGROUND_GREEN)\r
133#define EFI_BACKGROUND_RED 0x40\r
134#define EFI_BACKGROUND_MAGENTA (EFI_BACKGROUND_BLUE | EFI_BACKGROUND_RED)\r
135#define EFI_BACKGROUND_BROWN (EFI_BACKGROUND_GREEN | EFI_BACKGROUND_RED)\r
136#define EFI_BACKGROUND_LIGHTGRAY (EFI_BACKGROUND_BLUE | EFI_BACKGROUND_GREEN | EFI_BACKGROUND_RED)\r
137\r
138//\r
139// We currently define attributes from 0 - 7F for color manipulations\r
140// To internally handle the local display characteristics for a particular character, we are defining\r
141// Bit 7 to signify the local glyph representation for a character. If turned on, glyphs will be\r
142// pulled from the wide glyph database and will display locally as a wide character (16 X 19 versus 8 X 19)\r
143// If bit 7 is off, the narrow glyph database will be used. This does NOT affect information that is sent to\r
144// non-local displays (e.g. serial or LAN consoles).\r
145//\r
146#define EFI_WIDE_ATTRIBUTE 0x80\r
147\r
148/**\r
149 Reset the text output device hardware and optionaly run diagnostics\r
150\r
151 @param This Protocol instance pointer.\r
152 @param ExtendedVerification Driver may perform more exhaustive verfication\r
153 operation of the device during reset.\r
154\r
155 @retval EFI_SUCCESS The text output device was reset.\r
156 @retval EFI_DEVICE_ERROR The text output device is not functioning correctly and\r
157 could not be reset.\r
158\r
159**/\r
160typedef\r
161EFI_STATUS\r
162(EFIAPI *EFI_TEXT_RESET) (\r
a6508c05 163 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 164 IN BOOLEAN ExtendedVerification\r
165 )\r
166;\r
167\r
168/**\r
169 Write a Unicode string to the output device.\r
170\r
171 @param This Protocol instance pointer.\r
172 @param String The NULL-terminated Unicode string to be displayed on the output\r
173 device(s). All output devices must also support the Unicode\r
174 drawing defined in this file.\r
175\r
176 @retval EFI_SUCCESS The string was output to the device.\r
177 @retval EFI_DEVICE_ERROR The device reported an error while attempting to output\r
178 the text.\r
179 @retval EFI_UNSUPPORTED The output device's mode is not currently in a\r
180 defined text mode.\r
181 @retval EFI_WARN_UNKNOWN_GLYPH This warning code indicates that some of the\r
182 characters in the Unicode string could not be\r
183 rendered and were skipped.\r
184\r
185**/\r
186typedef\r
187EFI_STATUS\r
188(EFIAPI *EFI_TEXT_STRING) (\r
a6508c05 189 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 190 IN CHAR16 *String\r
191 )\r
192;\r
193\r
194/**\r
195 Verifies that all characters in a Unicode string can be output to the \r
196 target device.\r
197\r
198 @param This Protocol instance pointer.\r
199 @param String The NULL-terminated Unicode string to be examined for the output\r
200 device(s).\r
201\r
202 @retval EFI_SUCCESS The device(s) are capable of rendering the output string.\r
203 @retval EFI_UNSUPPORTED Some of the characters in the Unicode string cannot be\r
204 rendered by one or more of the output devices mapped\r
205 by the EFI handle.\r
206\r
207**/\r
208typedef\r
209EFI_STATUS\r
210(EFIAPI *EFI_TEXT_TEST_STRING) (\r
a6508c05 211 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 212 IN CHAR16 *String\r
213 )\r
214;\r
215\r
216/**\r
217 Returns information for an available text mode that the output device(s)\r
218 supports.\r
219\r
220 @param This Protocol instance pointer.\r
221 @param ModeNumber The mode number to return information on.\r
222 @param Columns Returns the geometry of the text output device for the\r
223 requested ModeNumber.\r
224 @param Rows Returns the geometry of the text output device for the\r
225 requested ModeNumber.\r
226 \r
227 @retval EFI_SUCCESS The requested mode information was returned.\r
228 @retval EFI_DEVICE_ERROR The device had an error and could not complete the request.\r
229 @retval EFI_UNSUPPORTED The mode number was not valid.\r
230\r
231**/\r
232typedef\r
233EFI_STATUS\r
234(EFIAPI *EFI_TEXT_QUERY_MODE) (\r
a6508c05 235 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 236 IN UINTN ModeNumber,\r
237 OUT UINTN *Columns,\r
238 OUT UINTN *Rows\r
239 )\r
240;\r
241\r
242/**\r
243 Sets the output device(s) to a specified mode.\r
244\r
245 @param This Protocol instance pointer.\r
246 @param ModeNumber The mode number to set.\r
247\r
248 @retval EFI_SUCCESS The requested text mode was set.\r
249 @retval EFI_DEVICE_ERROR The device had an error and could not complete the request.\r
250 @retval EFI_UNSUPPORTED The mode number was not valid.\r
251\r
252**/\r
253typedef\r
254EFI_STATUS\r
255(EFIAPI *EFI_TEXT_SET_MODE) (\r
a6508c05 256 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 257 IN UINTN ModeNumber\r
258 )\r
259;\r
260\r
261/**\r
262 Sets the background and foreground colors for the OutputString () and\r
263 ClearScreen () functions.\r
264\r
265 @param This Protocol instance pointer.\r
266 @param Attribute The attribute to set. Bits 0..3 are the foreground color, and\r
267 bits 4..6 are the background color. All other bits are undefined\r
268 and must be zero. The valid Attributes are defined in this file.\r
269\r
270 @retval EFI_SUCCESS The attribute was set.\r
271 @retval EFI_DEVICE_ ERROR The device had an error and could not complete the request.\r
272 @retval EFI_UNSUPPORTED The attribute requested is not defined.\r
273\r
274**/\r
275typedef\r
276EFI_STATUS\r
277(EFIAPI *EFI_TEXT_SET_ATTRIBUTE) (\r
a6508c05 278 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 279 IN UINTN Attribute\r
280 )\r
281;\r
282\r
283/**\r
284 Clears the output device(s) display to the currently selected background \r
285 color.\r
286\r
287 @param This Protocol instance pointer.\r
288 \r
289 @retval EFI_SUCCESS The operation completed successfully.\r
290 @retval EFI_DEVICE_ERROR The device had an error and could not complete the request.\r
291 @retval EFI_UNSUPPORTED The output device is not in a valid text mode.\r
292\r
293**/\r
294typedef\r
295EFI_STATUS\r
296(EFIAPI *EFI_TEXT_CLEAR_SCREEN) (\r
a6508c05 297 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This\r
d1f95000 298 )\r
299;\r
300\r
301/**\r
302 Sets the current coordinates of the cursor position\r
303\r
304 @param This Protocol instance pointer.\r
305 @param Column The position to set the cursor to. Must be greater than or\r
306 equal to zero and less than the number of columns and rows\r
307 by QueryMode ().\r
308 @param Row The position to set the cursor to. Must be greater than or\r
309 equal to zero and less than the number of columns and rows\r
310 by QueryMode ().\r
311\r
312 @retval EFI_SUCCESS The operation completed successfully.\r
313 @retval EFI_DEVICE_ERROR The device had an error and could not complete the request.\r
314 @retval EFI_UNSUPPORTED The output device is not in a valid text mode, or the\r
315 cursor position is invalid for the current mode.\r
316\r
317**/\r
318typedef\r
319EFI_STATUS\r
320(EFIAPI *EFI_TEXT_SET_CURSOR_POSITION) (\r
a6508c05 321 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 322 IN UINTN Column,\r
323 IN UINTN Row\r
324 )\r
325;\r
326\r
327/**\r
328 Makes the cursor visible or invisible\r
329\r
330 @param This Protocol instance pointer.\r
331 @param Visible If TRUE, the cursor is set to be visible. If FALSE, the cursor is\r
332 set to be invisible.\r
333\r
334 @retval EFI_SUCCESS The operation completed successfully.\r
335 @retval EFI_DEVICE_ERROR The device had an error and could not complete the\r
336 request, or the device does not support changing\r
337 the cursor mode.\r
338 @retval EFI_UNSUPPORTED The output device is not in a valid text mode.\r
339\r
340**/\r
341typedef\r
342EFI_STATUS\r
343(EFIAPI *EFI_TEXT_ENABLE_CURSOR) (\r
a6508c05 344 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This,\r
d1f95000 345 IN BOOLEAN Visible\r
346 )\r
347;\r
348\r
349/**\r
350 Mode Structure pointed to by Simple Text Out protocol.\r
351\r
352 MaxMode - The number of modes supported by QueryMode () and SetMode ().\r
353 Mode - The text mode of the output device(s).\r
354 Attribute - The current character output attribute\r
355 CursorColumn - The cursor's column.\r
356 CursorRow - The cursor's row.\r
357 CursorVisible - The cursor is currently visbile or not.\r
358\r
359**/\r
360typedef struct {\r
361 INT32 MaxMode;\r
362\r
363 //\r
364 // current settings\r
365 //\r
366 INT32 Mode;\r
367 INT32 Attribute;\r
368 INT32 CursorColumn;\r
369 INT32 CursorRow;\r
370 BOOLEAN CursorVisible;\r
371} EFI_SIMPLE_TEXT_OUTPUT_MODE;\r
372\r
a6508c05 373struct _EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL {\r
d1f95000 374 EFI_TEXT_RESET Reset;\r
375\r
376 EFI_TEXT_STRING OutputString;\r
377 EFI_TEXT_TEST_STRING TestString;\r
378\r
379 EFI_TEXT_QUERY_MODE QueryMode;\r
380 EFI_TEXT_SET_MODE SetMode;\r
381 EFI_TEXT_SET_ATTRIBUTE SetAttribute;\r
382\r
383 EFI_TEXT_CLEAR_SCREEN ClearScreen;\r
384 EFI_TEXT_SET_CURSOR_POSITION SetCursorPosition;\r
385 EFI_TEXT_ENABLE_CURSOR EnableCursor;\r
386\r
387 //\r
388 // Current mode\r
389 //\r
390 EFI_SIMPLE_TEXT_OUTPUT_MODE *Mode;\r
391};\r
392\r
09f0ddd0 393extern EFI_GUID gEfiSimpleTextOutProtocolGuid;\r
d1f95000 394\r
395#endif\r