1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application console interface
5 * Copyright (c) 2016 Alexander Graf
11 #include <dm/device.h>
12 #include <efi_loader.h>
14 #include <stdio_dev.h>
15 #include <video_console.h>
17 #define EFI_COUT_MODE_2 2
18 #define EFI_MAX_COUT_MODE 3
21 unsigned long columns;
26 static struct cout_mode efi_cout_modes[] = {
27 /* EFI Mode 0 is 80x25 and always present */
33 /* EFI Mode 1 is always 80x50 */
39 /* Value are unknown until we query the console */
47 const efi_guid_t efi_guid_text_input_ex_protocol =
48 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID;
49 const efi_guid_t efi_guid_text_input_protocol =
50 EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID;
51 const efi_guid_t efi_guid_text_output_protocol =
52 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID;
57 /* Default to mode 0 */
58 static struct simple_text_output_mode efi_con_mode = {
67 static int term_get_char(s32 *c)
71 /* Wait up to 100 ms for a character */
72 timeout = timer_get_us() + 100000;
75 if (timer_get_us() > timeout)
83 * Receive and parse a reply from the terminal.
85 * @n: array of return values
86 * @num: number of return values expected
87 * @end_char: character indicating end of terminal message
88 * @return: non-zero indicates error
90 static int term_read_reply(int *n, int num, char end_char)
95 if (term_get_char(&c) || c != cESC)
98 if (term_get_char(&c) || c != '[')
103 if (!term_get_char(&c)) {
110 } else if (c == end_char) {
112 } else if (c > '9' || c < '0') {
116 /* Read one more decimal position */
129 static efi_status_t EFIAPI efi_cout_output_string(
130 struct efi_simple_text_output_protocol *this,
131 const efi_string_t string)
133 struct simple_text_output_mode *con = &efi_con_mode;
134 struct cout_mode *mode = &efi_cout_modes[con->mode];
137 efi_status_t ret = EFI_SUCCESS;
139 EFI_ENTRY("%p, %p", this, string);
141 if (!this || !string) {
142 ret = EFI_INVALID_PARAMETER;
146 buf = malloc(utf16_utf8_strlen(string) + 1);
148 ret = EFI_OUT_OF_RESOURCES;
152 utf16_utf8_strcpy(&pos, string);
157 * Update the cursor position.
159 * The UEFI spec provides advance rules for U+0000, U+0008, U+000A,
160 * and U000D. All other control characters are ignored. Any non-control
161 * character increase the column by one.
163 for (p = string; *p; ++p) {
165 case '\b': /* U+0008, backspace */
166 if (con->cursor_column)
167 con->cursor_column--;
169 case '\n': /* U+000A, newline */
170 con->cursor_column = 0;
173 case '\r': /* U+000D, carriage-return */
174 con->cursor_column = 0;
176 case 0xd800 ... 0xdbff:
178 * Ignore high surrogates, we do not want to count a
179 * Unicode character twice.
183 /* Exclude control codes */
185 con->cursor_column++;
188 if (con->cursor_column >= mode->columns) {
189 con->cursor_column = 0;
193 * When we exceed the row count the terminal will scroll up one
194 * line. We have to adjust the cursor position.
196 if (con->cursor_row >= mode->rows && con->cursor_row)
201 return EFI_EXIT(ret);
204 static efi_status_t EFIAPI efi_cout_test_string(
205 struct efi_simple_text_output_protocol *this,
206 const efi_string_t string)
208 EFI_ENTRY("%p, %p", this, string);
209 return EFI_EXIT(EFI_SUCCESS);
212 static bool cout_mode_matches(struct cout_mode *mode, int rows, int cols)
217 return (mode->rows == rows) && (mode->columns == cols);
221 * query_console_serial() - query console size
223 * @rows: pointer to return number of rows
224 * @cols: pointer to return number of columns
225 * Returns: 0 on success
227 static int query_console_serial(int *rows, int *cols)
232 /* Empty input buffer */
237 * Not all terminals understand CSI [18t for querying the console size.
238 * We should adhere to escape sequences documented in the console_codes
239 * man page and the ECMA-48 standard.
241 * So here we follow a different approach. We position the cursor to the
242 * bottom right and query its position. Before leaving the function we
243 * restore the original cursor position.
245 printf(ESC "7" /* Save cursor position */
246 ESC "[r" /* Set scrolling region to full window */
247 ESC "[999;999H" /* Move to bottom right corner */
248 ESC "[6n"); /* Query cursor position */
250 /* Read {rows,cols} */
251 if (term_read_reply(n, 2, 'R')) {
259 printf(ESC "8"); /* Restore cursor position */
264 * Update the mode table.
266 * By default the only mode available is 80x25. If the console has at least 50
267 * lines, enable mode 80x50. If we can query the console size and it is neither
268 * 80x25 nor 80x50, set it as an additional mode.
270 static void query_console_size(void)
272 const char *stdout_name = env_get("stdout");
273 int rows = 25, cols = 80;
275 if (stdout_name && !strcmp(stdout_name, "vidconsole") &&
276 IS_ENABLED(CONFIG_DM_VIDEO)) {
277 struct stdio_dev *stdout_dev =
278 stdio_get_by_name("vidconsole");
279 struct udevice *dev = stdout_dev->priv;
280 struct vidconsole_priv *priv =
281 dev_get_uclass_priv(dev);
284 } else if (query_console_serial(&rows, &cols)) {
288 /* Test if we can have Mode 1 */
289 if (cols >= 80 && rows >= 50) {
290 efi_cout_modes[1].present = 1;
291 efi_con_mode.max_mode = 2;
295 * Install our mode as mode 2 if it is different
296 * than mode 0 or 1 and set it as the currently selected mode
298 if (!cout_mode_matches(&efi_cout_modes[0], rows, cols) &&
299 !cout_mode_matches(&efi_cout_modes[1], rows, cols)) {
300 efi_cout_modes[EFI_COUT_MODE_2].columns = cols;
301 efi_cout_modes[EFI_COUT_MODE_2].rows = rows;
302 efi_cout_modes[EFI_COUT_MODE_2].present = 1;
303 efi_con_mode.max_mode = EFI_MAX_COUT_MODE;
304 efi_con_mode.mode = EFI_COUT_MODE_2;
308 static efi_status_t EFIAPI efi_cout_query_mode(
309 struct efi_simple_text_output_protocol *this,
310 unsigned long mode_number, unsigned long *columns,
313 EFI_ENTRY("%p, %ld, %p, %p", this, mode_number, columns, rows);
315 if (mode_number >= efi_con_mode.max_mode)
316 return EFI_EXIT(EFI_UNSUPPORTED);
318 if (efi_cout_modes[mode_number].present != 1)
319 return EFI_EXIT(EFI_UNSUPPORTED);
322 *columns = efi_cout_modes[mode_number].columns;
324 *rows = efi_cout_modes[mode_number].rows;
326 return EFI_EXIT(EFI_SUCCESS);
329 static const struct {
333 { 30, 40 }, /* 0: black */
334 { 34, 44 }, /* 1: blue */
335 { 32, 42 }, /* 2: green */
336 { 36, 46 }, /* 3: cyan */
337 { 31, 41 }, /* 4: red */
338 { 35, 45 }, /* 5: magenta */
339 { 33, 43 }, /* 6: brown, map to yellow as EDK2 does*/
340 { 37, 47 }, /* 7: light gray, map to white */
343 /* See EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.SetAttribute(). */
344 static efi_status_t EFIAPI efi_cout_set_attribute(
345 struct efi_simple_text_output_protocol *this,
346 unsigned long attribute)
348 unsigned int bold = EFI_ATTR_BOLD(attribute);
349 unsigned int fg = EFI_ATTR_FG(attribute);
350 unsigned int bg = EFI_ATTR_BG(attribute);
352 EFI_ENTRY("%p, %lx", this, attribute);
354 efi_con_mode.attribute = attribute;
356 printf(ESC"[%u;%u;%um", bold, color[fg].fg, color[bg].bg);
358 printf(ESC"[0;37;40m");
360 return EFI_EXIT(EFI_SUCCESS);
363 static efi_status_t EFIAPI efi_cout_clear_screen(
364 struct efi_simple_text_output_protocol *this)
366 EFI_ENTRY("%p", this);
369 efi_con_mode.cursor_column = 0;
370 efi_con_mode.cursor_row = 0;
372 return EFI_EXIT(EFI_SUCCESS);
375 static efi_status_t EFIAPI efi_cout_set_mode(
376 struct efi_simple_text_output_protocol *this,
377 unsigned long mode_number)
379 EFI_ENTRY("%p, %ld", this, mode_number);
381 if (mode_number >= efi_con_mode.max_mode)
382 return EFI_EXIT(EFI_UNSUPPORTED);
384 if (!efi_cout_modes[mode_number].present)
385 return EFI_EXIT(EFI_UNSUPPORTED);
387 efi_con_mode.mode = mode_number;
388 EFI_CALL(efi_cout_clear_screen(this));
390 return EFI_EXIT(EFI_SUCCESS);
393 static efi_status_t EFIAPI efi_cout_reset(
394 struct efi_simple_text_output_protocol *this,
395 char extended_verification)
397 EFI_ENTRY("%p, %d", this, extended_verification);
400 EFI_CALL(efi_cout_clear_screen(this));
401 /* Set default colors */
402 efi_con_mode.attribute = 0x07;
403 printf(ESC "[0;37;40m");
405 return EFI_EXIT(EFI_SUCCESS);
408 static efi_status_t EFIAPI efi_cout_set_cursor_position(
409 struct efi_simple_text_output_protocol *this,
410 unsigned long column, unsigned long row)
412 efi_status_t ret = EFI_SUCCESS;
413 struct simple_text_output_mode *con = &efi_con_mode;
414 struct cout_mode *mode = &efi_cout_modes[con->mode];
416 EFI_ENTRY("%p, %ld, %ld", this, column, row);
418 /* Check parameters */
420 ret = EFI_INVALID_PARAMETER;
423 if (row >= mode->rows || column >= mode->columns) {
424 ret = EFI_UNSUPPORTED;
429 * Set cursor position by sending CSI H.
430 * EFI origin is [0, 0], terminal origin is [1, 1].
432 printf(ESC "[%d;%dH", (int)row + 1, (int)column + 1);
433 efi_con_mode.cursor_column = column;
434 efi_con_mode.cursor_row = row;
436 return EFI_EXIT(ret);
439 static efi_status_t EFIAPI efi_cout_enable_cursor(
440 struct efi_simple_text_output_protocol *this,
443 EFI_ENTRY("%p, %d", this, enable);
445 printf(ESC"[?25%c", enable ? 'h' : 'l');
446 efi_con_mode.cursor_visible = !!enable;
448 return EFI_EXIT(EFI_SUCCESS);
451 struct efi_simple_text_output_protocol efi_con_out = {
452 .reset = efi_cout_reset,
453 .output_string = efi_cout_output_string,
454 .test_string = efi_cout_test_string,
455 .query_mode = efi_cout_query_mode,
456 .set_mode = efi_cout_set_mode,
457 .set_attribute = efi_cout_set_attribute,
458 .clear_screen = efi_cout_clear_screen,
459 .set_cursor_position = efi_cout_set_cursor_position,
460 .enable_cursor = efi_cout_enable_cursor,
461 .mode = (void*)&efi_con_mode,
465 * struct efi_cin_notify_function - registered console input notify function
467 * @link: link to list
468 * @key: key to notify
469 * @function: function to call
471 struct efi_cin_notify_function {
472 struct list_head link;
473 struct efi_key_data key;
474 efi_status_t (EFIAPI *function)
475 (struct efi_key_data *key_data);
478 static bool key_available;
479 static struct efi_key_data next_key;
480 static LIST_HEAD(cin_notify_functions);
483 * set_shift_mask() - set shift mask
485 * @mod: Xterm shift mask
486 * @key_state: receives the state of the shift, alt, control, and logo keys
488 void set_shift_mask(int mod, struct efi_key_state *key_state)
490 key_state->key_shift_state = EFI_SHIFT_STATE_VALID;
494 key_state->key_shift_state |= EFI_LEFT_SHIFT_PRESSED;
496 key_state->key_shift_state |= EFI_LEFT_ALT_PRESSED;
498 key_state->key_shift_state |= EFI_LEFT_CONTROL_PRESSED;
499 if (!mod || (mod & 8))
500 key_state->key_shift_state |= EFI_LEFT_LOGO_PRESSED;
505 * analyze_modifiers() - analyze modifiers (shift, alt, ctrl) for function keys
507 * This gets called when we have already parsed CSI.
509 * @key_state: receives the state of the shift, alt, control, and logo keys
510 * @return: the unmodified code
512 static int analyze_modifiers(struct efi_key_state *key_state)
514 int c, mod = 0, ret = 0;
538 set_shift_mask(mod, key_state);
545 * efi_cin_read_key() - read a key from the console input
547 * @key: - key received
548 * Return: - status code
550 static efi_status_t efi_cin_read_key(struct efi_key_data *key)
552 struct efi_input_key pressed_key = {
558 if (console_read_unicode(&ch))
559 return EFI_NOT_READY;
561 key->key_state.key_shift_state = EFI_SHIFT_STATE_INVALID;
562 key->key_state.key_toggle_state = EFI_TOGGLE_STATE_INVALID;
564 /* We do not support multi-word codes */
571 * Xterm Control Sequences
572 * https://www.xfree86.org/4.8.0/ctlseqs.html
577 pressed_key.scan_code = 23;
579 case 'O': /* F1 - F4, End */
581 /* consider modifiers */
582 if (ch == 'F') { /* End */
583 pressed_key.scan_code = 6;
585 } else if (ch < 'P') {
586 set_shift_mask(ch - '0', &key->key_state);
589 pressed_key.scan_code = ch - 'P' + 11;
594 case 'A'...'D': /* up, down right, left */
595 pressed_key.scan_code = ch - 'A' + 1;
598 pressed_key.scan_code = 6;
601 pressed_key.scan_code = 5;
604 ch = analyze_modifiers(&key->key_state);
606 case '1'...'5': /* F1 - F5 */
607 pressed_key.scan_code = ch - '1' + 11;
609 case '6'...'9': /* F5 - F8 */
610 pressed_key.scan_code = ch - '6' + 15;
612 case 'A'...'D': /* up, down right, left */
613 pressed_key.scan_code = ch - 'A' + 1;
616 pressed_key.scan_code = 6;
619 pressed_key.scan_code = 5;
622 pressed_key.scan_code = 5;
627 ch = analyze_modifiers(&key->key_state);
629 case '0'...'1': /* F9 - F10 */
630 pressed_key.scan_code = ch - '0' + 19;
632 case '3'...'4': /* F11 - F12 */
633 pressed_key.scan_code = ch - '3' + 21;
636 pressed_key.scan_code = 7;
641 pressed_key.scan_code = 8;
642 analyze_modifiers(&key->key_state);
644 case '5': /* PG UP */
645 pressed_key.scan_code = 9;
646 analyze_modifiers(&key->key_state);
648 case '6': /* PG DOWN */
649 pressed_key.scan_code = 10;
650 analyze_modifiers(&key->key_state);
656 set_shift_mask(3, &key->key_state);
663 if (pressed_key.scan_code) {
664 key->key_state.key_shift_state |= EFI_SHIFT_STATE_VALID;
666 pressed_key.unicode_char = ch;
669 * Assume left control key for control characters typically
670 * entered using the control key.
672 if (ch >= 0x01 && ch <= 0x1f) {
673 key->key_state.key_shift_state |=
674 EFI_SHIFT_STATE_VALID;
679 key->key_state.key_shift_state |=
680 EFI_LEFT_CONTROL_PRESSED;
684 key->key = pressed_key;
690 * efi_cin_notify() - notify registered functions
692 static void efi_cin_notify(void)
694 struct efi_cin_notify_function *item;
696 list_for_each_entry(item, &cin_notify_functions, link) {
699 /* We do not support toggle states */
700 if (item->key.key.unicode_char || item->key.key.scan_code) {
701 if (item->key.key.unicode_char !=
702 next_key.key.unicode_char ||
703 item->key.key.scan_code != next_key.key.scan_code)
706 if (item->key.key_state.key_shift_state &&
707 item->key.key_state.key_shift_state !=
708 next_key.key_state.key_shift_state)
712 /* We don't bother about the return code */
713 EFI_CALL(item->function(&next_key));
718 * efi_cin_check() - check if keyboard input is available
720 static void efi_cin_check(void)
725 efi_signal_event(efi_con_in.wait_for_key);
730 ret = efi_cin_read_key(&next_key);
731 if (ret == EFI_SUCCESS) {
732 key_available = true;
734 /* Notify registered functions */
737 /* Queue the wait for key event */
739 efi_signal_event(efi_con_in.wait_for_key);
745 * efi_cin_empty_buffer() - empty input buffer
747 static void efi_cin_empty_buffer(void)
751 key_available = false;
755 * efi_cin_reset_ex() - reset console input
757 * @this: - the extended simple text input protocol
758 * @extended_verification: - extended verification
760 * This function implements the reset service of the
761 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
763 * See the Unified Extensible Firmware Interface (UEFI) specification for
766 * Return: old value of the task priority level
768 static efi_status_t EFIAPI efi_cin_reset_ex(
769 struct efi_simple_text_input_ex_protocol *this,
770 bool extended_verification)
772 efi_status_t ret = EFI_SUCCESS;
774 EFI_ENTRY("%p, %d", this, extended_verification);
776 /* Check parameters */
778 ret = EFI_INVALID_PARAMETER;
782 efi_cin_empty_buffer();
784 return EFI_EXIT(ret);
788 * efi_cin_read_key_stroke_ex() - read key stroke
790 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
791 * @key_data: key read from console
792 * Return: status code
794 * This function implements the ReadKeyStrokeEx service of the
795 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
797 * See the Unified Extensible Firmware Interface (UEFI) specification for
800 static efi_status_t EFIAPI efi_cin_read_key_stroke_ex(
801 struct efi_simple_text_input_ex_protocol *this,
802 struct efi_key_data *key_data)
804 efi_status_t ret = EFI_SUCCESS;
806 EFI_ENTRY("%p, %p", this, key_data);
808 /* Check parameters */
809 if (!this || !key_data) {
810 ret = EFI_INVALID_PARAMETER;
814 /* We don't do interrupts, so check for timers cooperatively */
817 /* Enable console input after ExitBootServices */
820 if (!key_available) {
825 * CTRL+A - CTRL+Z have to be signaled as a - z.
826 * SHIFT+CTRL+A - SHIFT+CTRL+Z have to be signaled as A - Z.
828 switch (next_key.key.unicode_char) {
832 if (!(next_key.key_state.key_toggle_state &
833 EFI_CAPS_LOCK_ACTIVE) ^
834 !(next_key.key_state.key_shift_state &
835 (EFI_LEFT_SHIFT_PRESSED | EFI_RIGHT_SHIFT_PRESSED)))
836 next_key.key.unicode_char += 0x40;
838 next_key.key.unicode_char += 0x60;
840 *key_data = next_key;
841 key_available = false;
842 efi_con_in.wait_for_key->is_signaled = false;
845 return EFI_EXIT(ret);
849 * efi_cin_set_state() - set toggle key state
851 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
852 * @key_toggle_state: pointer to key toggle state
853 * Return: status code
855 * This function implements the SetState service of the
856 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
858 * See the Unified Extensible Firmware Interface (UEFI) specification for
861 static efi_status_t EFIAPI efi_cin_set_state(
862 struct efi_simple_text_input_ex_protocol *this,
863 u8 *key_toggle_state)
865 EFI_ENTRY("%p, %p", this, key_toggle_state);
867 * U-Boot supports multiple console input sources like serial and
868 * net console for which a key toggle state cannot be set at all.
870 * According to the UEFI specification it is allowable to not implement
873 return EFI_EXIT(EFI_UNSUPPORTED);
877 * efi_cin_register_key_notify() - register key notification function
879 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
880 * @key_data: key to be notified
881 * @key_notify_function: function to be called if the key is pressed
882 * @notify_handle: handle for unregistering the notification
883 * Return: status code
885 * This function implements the SetState service of the
886 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
888 * See the Unified Extensible Firmware Interface (UEFI) specification for
891 static efi_status_t EFIAPI efi_cin_register_key_notify(
892 struct efi_simple_text_input_ex_protocol *this,
893 struct efi_key_data *key_data,
894 efi_status_t (EFIAPI *key_notify_function)(
895 struct efi_key_data *key_data),
896 void **notify_handle)
898 efi_status_t ret = EFI_SUCCESS;
899 struct efi_cin_notify_function *notify_function;
901 EFI_ENTRY("%p, %p, %p, %p",
902 this, key_data, key_notify_function, notify_handle);
904 /* Check parameters */
905 if (!this || !key_data || !key_notify_function || !notify_handle) {
906 ret = EFI_INVALID_PARAMETER;
910 EFI_PRINT("u+%04x, sc %04x, sh %08x, tg %02x\n",
911 key_data->key.unicode_char,
912 key_data->key.scan_code,
913 key_data->key_state.key_shift_state,
914 key_data->key_state.key_toggle_state);
916 notify_function = calloc(1, sizeof(struct efi_cin_notify_function));
917 if (!notify_function) {
918 ret = EFI_OUT_OF_RESOURCES;
921 notify_function->key = *key_data;
922 notify_function->function = key_notify_function;
923 list_add_tail(¬ify_function->link, &cin_notify_functions);
924 *notify_handle = notify_function;
926 return EFI_EXIT(ret);
930 * efi_cin_unregister_key_notify() - unregister key notification function
932 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
933 * @notification_handle: handle received when registering
934 * Return: status code
936 * This function implements the SetState service of the
937 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
939 * See the Unified Extensible Firmware Interface (UEFI) specification for
942 static efi_status_t EFIAPI efi_cin_unregister_key_notify(
943 struct efi_simple_text_input_ex_protocol *this,
944 void *notification_handle)
946 efi_status_t ret = EFI_INVALID_PARAMETER;
947 struct efi_cin_notify_function *item, *notify_function =
950 EFI_ENTRY("%p, %p", this, notification_handle);
952 /* Check parameters */
953 if (!this || !notification_handle)
956 list_for_each_entry(item, &cin_notify_functions, link) {
957 if (item == notify_function) {
962 if (ret != EFI_SUCCESS)
965 /* Remove the notify function */
966 list_del(¬ify_function->link);
967 free(notify_function);
969 return EFI_EXIT(ret);
974 * efi_cin_reset() - drain the input buffer
976 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
977 * @extended_verification: allow for exhaustive verification
978 * Return: status code
980 * This function implements the Reset service of the
981 * EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
983 * See the Unified Extensible Firmware Interface (UEFI) specification for
986 static efi_status_t EFIAPI efi_cin_reset
987 (struct efi_simple_text_input_protocol *this,
988 bool extended_verification)
990 efi_status_t ret = EFI_SUCCESS;
992 EFI_ENTRY("%p, %d", this, extended_verification);
994 /* Check parameters */
996 ret = EFI_INVALID_PARAMETER;
1000 efi_cin_empty_buffer();
1002 return EFI_EXIT(ret);
1006 * efi_cin_read_key_stroke() - read key stroke
1008 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1009 * @key: key read from console
1010 * Return: status code
1012 * This function implements the ReadKeyStroke service of the
1013 * EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
1015 * See the Unified Extensible Firmware Interface (UEFI) specification for
1018 static efi_status_t EFIAPI efi_cin_read_key_stroke
1019 (struct efi_simple_text_input_protocol *this,
1020 struct efi_input_key *key)
1022 efi_status_t ret = EFI_SUCCESS;
1024 EFI_ENTRY("%p, %p", this, key);
1026 /* Check parameters */
1027 if (!this || !key) {
1028 ret = EFI_INVALID_PARAMETER;
1032 /* We don't do interrupts, so check for timers cooperatively */
1035 /* Enable console input after ExitBootServices */
1038 if (!key_available) {
1039 ret = EFI_NOT_READY;
1042 *key = next_key.key;
1043 key_available = false;
1044 efi_con_in.wait_for_key->is_signaled = false;
1046 return EFI_EXIT(ret);
1049 static struct efi_simple_text_input_ex_protocol efi_con_in_ex = {
1050 .reset = efi_cin_reset_ex,
1051 .read_key_stroke_ex = efi_cin_read_key_stroke_ex,
1052 .wait_for_key_ex = NULL,
1053 .set_state = efi_cin_set_state,
1054 .register_key_notify = efi_cin_register_key_notify,
1055 .unregister_key_notify = efi_cin_unregister_key_notify,
1058 struct efi_simple_text_input_protocol efi_con_in = {
1059 .reset = efi_cin_reset,
1060 .read_key_stroke = efi_cin_read_key_stroke,
1061 .wait_for_key = NULL,
1064 static struct efi_event *console_timer_event;
1067 * efi_console_timer_notify() - notify the console timer event
1069 * @event: console timer event
1070 * @context: not used
1072 static void EFIAPI efi_console_timer_notify(struct efi_event *event,
1075 EFI_ENTRY("%p, %p", event, context);
1077 EFI_EXIT(EFI_SUCCESS);
1081 * efi_key_notify() - notify the wait for key event
1083 * @event: wait for key event
1084 * @context: not used
1086 static void EFIAPI efi_key_notify(struct efi_event *event, void *context)
1088 EFI_ENTRY("%p, %p", event, context);
1090 EFI_EXIT(EFI_SUCCESS);
1094 * efi_console_register() - install the console protocols
1096 * This function is called from do_bootefi_exec().
1098 * Return: status code
1100 efi_status_t efi_console_register(void)
1103 efi_handle_t console_output_handle;
1104 efi_handle_t console_input_handle;
1106 /* Set up mode information */
1107 query_console_size();
1109 /* Create handles */
1110 r = efi_create_handle(&console_output_handle);
1111 if (r != EFI_SUCCESS)
1114 r = efi_add_protocol(console_output_handle,
1115 &efi_guid_text_output_protocol, &efi_con_out);
1116 if (r != EFI_SUCCESS)
1118 systab.con_out_handle = console_output_handle;
1119 systab.stderr_handle = console_output_handle;
1121 r = efi_create_handle(&console_input_handle);
1122 if (r != EFI_SUCCESS)
1125 r = efi_add_protocol(console_input_handle,
1126 &efi_guid_text_input_protocol, &efi_con_in);
1127 if (r != EFI_SUCCESS)
1129 systab.con_in_handle = console_input_handle;
1130 r = efi_add_protocol(console_input_handle,
1131 &efi_guid_text_input_ex_protocol, &efi_con_in_ex);
1132 if (r != EFI_SUCCESS)
1135 /* Create console events */
1136 r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK, efi_key_notify,
1137 NULL, NULL, &efi_con_in.wait_for_key);
1138 if (r != EFI_SUCCESS) {
1139 printf("ERROR: Failed to register WaitForKey event\n");
1142 efi_con_in_ex.wait_for_key_ex = efi_con_in.wait_for_key;
1143 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK,
1144 efi_console_timer_notify, NULL, NULL,
1145 &console_timer_event);
1146 if (r != EFI_SUCCESS) {
1147 printf("ERROR: Failed to register console event\n");
1150 /* 5000 ns cycle is sufficient for 2 MBaud */
1151 r = efi_set_timer(console_timer_event, EFI_TIMER_PERIODIC, 50);
1152 if (r != EFI_SUCCESS)
1153 printf("ERROR: Failed to set console timer\n");
1156 printf("ERROR: Out of memory\n");