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