blob: 4d08dd3763a62fbdee3f9cc34d4abed4659d437c [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafc1311ad2016-03-04 01:10:00 +01002/*
3 * EFI application console interface
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafc1311ad2016-03-04 01:10:00 +01006 */
7
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +02008#define LOG_CATEGORY LOGC_EFI
9
Masahisa Kojima87d79142022-09-12 17:33:50 +090010#include <ansi.h>
Alexander Grafc1311ad2016-03-04 01:10:00 +010011#include <common.h>
Rob Clark78178bb2017-09-09 06:47:40 -040012#include <charset.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Simon Glass10453152019-11-14 12:57:30 -070014#include <time.h>
Rob Clarka18c5a82017-09-13 18:05:43 -040015#include <dm/device.h>
Alexander Grafc1311ad2016-03-04 01:10:00 +010016#include <efi_loader.h>
Simon Glass7b51b572019-08-01 09:46:52 -060017#include <env.h>
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +020018#include <log.h>
Rob Clarka18c5a82017-09-13 18:05:43 -040019#include <stdio_dev.h>
20#include <video_console.h>
Heinrich Schuchardt9abb01a2020-12-27 14:47:50 +010021#include <linux/delay.h>
Alexander Grafc1311ad2016-03-04 01:10:00 +010022
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +010023#define EFI_COUT_MODE_2 2
24#define EFI_MAX_COUT_MODE 3
25
26struct cout_mode {
27 unsigned long columns;
28 unsigned long rows;
29 int present;
30};
31
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +010032__maybe_unused static struct efi_object uart_obj;
33
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +010034static struct cout_mode efi_cout_modes[] = {
35 /* EFI Mode 0 is 80x25 and always present */
36 {
37 .columns = 80,
38 .rows = 25,
39 .present = 1,
40 },
41 /* EFI Mode 1 is always 80x50 */
42 {
43 .columns = 80,
44 .rows = 50,
45 .present = 0,
46 },
47 /* Value are unknown until we query the console */
48 {
49 .columns = 0,
50 .rows = 0,
51 .present = 0,
52 },
53};
54
Heinrich Schuchardt110c6282018-09-11 22:38:08 +020055const efi_guid_t efi_guid_text_input_ex_protocol =
56 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID;
Heinrich Schuchardtebb4dd52017-10-26 19:25:59 +020057const efi_guid_t efi_guid_text_input_protocol =
58 EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +020059const efi_guid_t efi_guid_text_output_protocol =
60 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID;
Alexander Grafc1311ad2016-03-04 01:10:00 +010061
62#define cESC '\x1b'
63#define ESC "\x1b"
64
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +020065/*
66 * efi_con_mode - mode information of the Simple Text Output Protocol
67 *
68 * Use safe settings before efi_setup_console_size() is called.
69 * By default enable only the 80x25 mode which must always exist.
70 */
Alexander Grafc1311ad2016-03-04 01:10:00 +010071static struct simple_text_output_mode efi_con_mode = {
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +010072 .max_mode = 1,
Alexander Grafc1311ad2016-03-04 01:10:00 +010073 .mode = 0,
74 .attribute = 0,
75 .cursor_column = 0,
76 .cursor_row = 0,
77 .cursor_visible = 1,
78};
79
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +010080static int term_get_char(s32 *c)
81{
82 u64 timeout;
83
84 /* Wait up to 100 ms for a character */
85 timeout = timer_get_us() + 100000;
86
87 while (!tstc())
88 if (timer_get_us() > timeout)
89 return 1;
90
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +020091 *c = getchar();
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +010092 return 0;
93}
94
Heinrich Schuchardt325567d2020-06-04 18:40:44 +020095/**
Heinrich Schuchardt62217292018-05-16 18:17:38 +020096 * Receive and parse a reply from the terminal.
97 *
98 * @n: array of return values
99 * @num: number of return values expected
100 * @end_char: character indicating end of terminal message
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200101 * Return: non-zero indicates error
Heinrich Schuchardt62217292018-05-16 18:17:38 +0200102 */
103static int term_read_reply(int *n, int num, char end_char)
Alexander Grafc1311ad2016-03-04 01:10:00 +0100104{
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +0100105 s32 c;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100106 int i = 0;
107
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +0100108 if (term_get_char(&c) || c != cESC)
Alexander Grafc1311ad2016-03-04 01:10:00 +0100109 return -1;
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +0100110
111 if (term_get_char(&c) || c != '[')
Alexander Grafc1311ad2016-03-04 01:10:00 +0100112 return -1;
113
114 n[0] = 0;
115 while (1) {
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +0100116 if (!term_get_char(&c)) {
117 if (c == ';') {
118 i++;
119 if (i >= num)
120 return -1;
121 n[i] = 0;
122 continue;
123 } else if (c == end_char) {
124 break;
125 } else if (c > '9' || c < '0') {
Alexander Grafc1311ad2016-03-04 01:10:00 +0100126 return -1;
Matthias Bruggerdd1a1ec2019-03-05 12:50:18 +0100127 }
128
129 /* Read one more decimal position */
130 n[i] *= 10;
131 n[i] += c - '0';
132 } else {
Alexander Grafc1311ad2016-03-04 01:10:00 +0100133 return -1;
134 }
Alexander Grafc1311ad2016-03-04 01:10:00 +0100135 }
Heinrich Schuchardt62217292018-05-16 18:17:38 +0200136 if (i != num - 1)
137 return -1;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100138
139 return 0;
140}
141
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200142/**
143 * efi_cout_output_string() - write Unicode string to console
144 *
145 * This function implements the OutputString service of the simple text output
146 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
147 * for details.
148 *
149 * @this: simple text output protocol
150 * @string: u16 string
151 * Return: status code
152 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100153static efi_status_t EFIAPI efi_cout_output_string(
154 struct efi_simple_text_output_protocol *this,
Heinrich Schuchardt7913c7d2021-01-05 07:50:09 +0100155 const u16 *string)
Alexander Grafc1311ad2016-03-04 01:10:00 +0100156{
Rob Clark3a45bc72017-09-13 18:05:44 -0400157 struct simple_text_output_mode *con = &efi_con_mode;
158 struct cout_mode *mode = &efi_cout_modes[con->mode];
Heinrich Schuchardtba7bd5c2018-08-31 21:31:32 +0200159 char *buf, *pos;
Heinrich Schuchardt7913c7d2021-01-05 07:50:09 +0100160 const u16 *p;
Heinrich Schuchardtba7bd5c2018-08-31 21:31:32 +0200161 efi_status_t ret = EFI_SUCCESS;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100162
163 EFI_ENTRY("%p, %p", this, string);
Rob Clark3a45bc72017-09-13 18:05:44 -0400164
Heinrich Schuchardtb31ca6b2019-05-18 18:11:54 +0200165 if (!this || !string) {
166 ret = EFI_INVALID_PARAMETER;
167 goto out;
168 }
169
Heinrich Schuchardtba7bd5c2018-08-31 21:31:32 +0200170 buf = malloc(utf16_utf8_strlen(string) + 1);
171 if (!buf) {
172 ret = EFI_OUT_OF_RESOURCES;
173 goto out;
174 }
175 pos = buf;
176 utf16_utf8_strcpy(&pos, string);
Rob Clark3a45bc72017-09-13 18:05:44 -0400177 fputs(stdout, buf);
Heinrich Schuchardtba7bd5c2018-08-31 21:31:32 +0200178 free(buf);
Rob Clark3a45bc72017-09-13 18:05:44 -0400179
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200180 /*
181 * Update the cursor position.
182 *
183 * The UEFI spec provides advance rules for U+0000, U+0008, U+000A,
Heinrich Schuchardt97ea0692019-09-04 21:13:45 +0200184 * and U000D. All other control characters are ignored. Any non-control
185 * character increase the column by one.
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200186 */
187 for (p = string; *p; ++p) {
Rob Clark3a45bc72017-09-13 18:05:44 -0400188 switch (*p) {
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200189 case '\b': /* U+0008, backspace */
Heinrich Schuchardt97ea0692019-09-04 21:13:45 +0200190 if (con->cursor_column)
191 con->cursor_column--;
Rob Clark3a45bc72017-09-13 18:05:44 -0400192 break;
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200193 case '\n': /* U+000A, newline */
Rob Clark3a45bc72017-09-13 18:05:44 -0400194 con->cursor_column = 0;
195 con->cursor_row++;
196 break;
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200197 case '\r': /* U+000D, carriage-return */
198 con->cursor_column = 0;
Rob Clark3a45bc72017-09-13 18:05:44 -0400199 break;
Heinrich Schuchardt7ca7c3c2018-04-29 16:24:25 +0200200 case 0xd800 ... 0xdbff:
201 /*
202 * Ignore high surrogates, we do not want to count a
203 * Unicode character twice.
204 */
Rob Clark3a45bc72017-09-13 18:05:44 -0400205 break;
206 default:
Heinrich Schuchardt97ea0692019-09-04 21:13:45 +0200207 /* Exclude control codes */
208 if (*p > 0x1f)
209 con->cursor_column++;
Rob Clark3a45bc72017-09-13 18:05:44 -0400210 break;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100211 }
Rob Clark3a45bc72017-09-13 18:05:44 -0400212 if (con->cursor_column >= mode->columns) {
213 con->cursor_column = 0;
214 con->cursor_row++;
215 }
Heinrich Schuchardt97ea0692019-09-04 21:13:45 +0200216 /*
217 * When we exceed the row count the terminal will scroll up one
218 * line. We have to adjust the cursor position.
219 */
220 if (con->cursor_row >= mode->rows && con->cursor_row)
221 con->cursor_row--;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100222 }
223
Heinrich Schuchardtba7bd5c2018-08-31 21:31:32 +0200224out:
225 return EFI_EXIT(ret);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100226}
227
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200228/**
229 * efi_cout_test_string() - test writing Unicode string to console
230 *
231 * This function implements the TestString service of the simple text output
232 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
233 * for details.
234 *
235 * As in OutputString we simply convert UTF-16 to UTF-8 there are no unsupported
236 * code points and we can always return EFI_SUCCESS.
237 *
238 * @this: simple text output protocol
239 * @string: u16 string
240 * Return: status code
241 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100242static efi_status_t EFIAPI efi_cout_test_string(
243 struct efi_simple_text_output_protocol *this,
Heinrich Schuchardt7913c7d2021-01-05 07:50:09 +0100244 const u16 *string)
Alexander Grafc1311ad2016-03-04 01:10:00 +0100245{
246 EFI_ENTRY("%p, %p", this, string);
247 return EFI_EXIT(EFI_SUCCESS);
248}
249
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200250/**
251 * cout_mode_matches() - check if mode has given terminal size
252 *
253 * @mode: text mode
254 * @rows: number of rows
255 * @cols: number of columns
256 * Return: true if number of rows and columns matches the mode and
257 * the mode is present
258 */
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +0100259static bool cout_mode_matches(struct cout_mode *mode, int rows, int cols)
260{
261 if (!mode->present)
262 return false;
263
264 return (mode->rows == rows) && (mode->columns == cols);
265}
266
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200267/**
Heinrich Schuchardta95f4c82021-03-16 12:56:57 +0100268 * query_console_serial() - query serial console size
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200269 *
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200270 * When using a serial console or the net console we can only devise the
271 * terminal size by querying the terminal using ECMA-48 control sequences.
272 *
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200273 * @rows: pointer to return number of rows
274 * @cols: pointer to return number of columns
275 * Returns: 0 on success
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200276 */
Rob Clark71cc25c2017-09-13 18:05:42 -0400277static int query_console_serial(int *rows, int *cols)
278{
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200279 int ret = 0;
280 int n[2];
Rob Clark71cc25c2017-09-13 18:05:42 -0400281
282 /* Empty input buffer */
283 while (tstc())
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200284 getchar();
Rob Clark71cc25c2017-09-13 18:05:42 -0400285
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200286 /*
287 * Not all terminals understand CSI [18t for querying the console size.
288 * We should adhere to escape sequences documented in the console_codes
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200289 * man page and the ECMA-48 standard.
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200290 *
291 * So here we follow a different approach. We position the cursor to the
292 * bottom right and query its position. Before leaving the function we
293 * restore the original cursor position.
294 */
295 printf(ESC "7" /* Save cursor position */
296 ESC "[r" /* Set scrolling region to full window */
297 ESC "[999;999H" /* Move to bottom right corner */
298 ESC "[6n"); /* Query cursor position */
Rob Clark71cc25c2017-09-13 18:05:42 -0400299
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200300 /* Read {rows,cols} */
301 if (term_read_reply(n, 2, 'R')) {
302 ret = 1;
303 goto out;
304 }
Rob Clark71cc25c2017-09-13 18:05:42 -0400305
Heinrich Schuchardt6bb591f2018-09-15 23:52:07 +0200306 *cols = n[1];
307 *rows = n[0];
308out:
309 printf(ESC "8"); /* Restore cursor position */
310 return ret;
Rob Clark71cc25c2017-09-13 18:05:42 -0400311}
312
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200313/**
Heinrich Schuchardta95f4c82021-03-16 12:56:57 +0100314 * query_vidconsole() - query video console size
315 *
316 *
317 * @rows: pointer to return number of rows
318 * @cols: pointer to return number of columns
319 * Returns: 0 on success
320 */
321static int __maybe_unused query_vidconsole(int *rows, int *cols)
322{
323 const char *stdout_name = env_get("stdout");
324 struct stdio_dev *stdout_dev;
325 struct udevice *dev;
326 struct vidconsole_priv *priv;
327
328 if (!stdout_name || strncmp(stdout_name, "vidconsole", 10))
329 return -ENODEV;
330 stdout_dev = stdio_get_by_name("vidconsole");
331 if (!stdout_dev)
332 return -ENODEV;
333 dev = stdout_dev->priv;
334 if (!dev)
335 return -ENODEV;
336 priv = dev_get_uclass_priv(dev);
337 if (!priv)
338 return -ENODEV;
339 *rows = priv->rows;
340 *cols = priv->cols;
341 return 0;
342}
343
344/**
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +0200345 * efi_setup_console_size() - update the mode table.
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200346 *
347 * By default the only mode available is 80x25. If the console has at least 50
348 * lines, enable mode 80x50. If we can query the console size and it is neither
349 * 80x25 nor 80x50, set it as an additional mode.
350 */
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +0200351void efi_setup_console_size(void)
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200352{
Alexander Graf80483b22018-06-03 15:51:17 +0200353 int rows = 25, cols = 80;
Heinrich Schuchardta95f4c82021-03-16 12:56:57 +0100354 int ret = -ENODEV;
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200355
Simon Glassb86986c2022-10-18 07:46:31 -0600356 if (IS_ENABLED(CONFIG_VIDEO))
Heinrich Schuchardta95f4c82021-03-16 12:56:57 +0100357 ret = query_vidconsole(&rows, &cols);
358 if (ret)
359 ret = query_console_serial(&rows, &cols);
360 if (ret)
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200361 return;
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200362
Heinrich Schuchardt68edbed2022-06-14 08:02:03 +0200363 log_debug("Console size %dx%d\n", rows, cols);
364
Heinrich Schuchardta4aa7be2018-04-29 20:02:46 +0200365 /* Test if we can have Mode 1 */
366 if (cols >= 80 && rows >= 50) {
367 efi_cout_modes[1].present = 1;
368 efi_con_mode.max_mode = 2;
369 }
370
371 /*
372 * Install our mode as mode 2 if it is different
373 * than mode 0 or 1 and set it as the currently selected mode
374 */
375 if (!cout_mode_matches(&efi_cout_modes[0], rows, cols) &&
376 !cout_mode_matches(&efi_cout_modes[1], rows, cols)) {
377 efi_cout_modes[EFI_COUT_MODE_2].columns = cols;
378 efi_cout_modes[EFI_COUT_MODE_2].rows = rows;
379 efi_cout_modes[EFI_COUT_MODE_2].present = 1;
380 efi_con_mode.max_mode = EFI_MAX_COUT_MODE;
381 efi_con_mode.mode = EFI_COUT_MODE_2;
382 }
383}
384
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200385/**
386 * efi_cout_query_mode() - get terminal size for a text mode
387 *
388 * This function implements the QueryMode service of the simple text output
389 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
390 * for details.
391 *
392 * @this: simple text output protocol
393 * @mode_number: mode number to retrieve information on
394 * @columns: number of columns
395 * @rows: number of rows
396 * Return: status code
397 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100398static efi_status_t EFIAPI efi_cout_query_mode(
399 struct efi_simple_text_output_protocol *this,
400 unsigned long mode_number, unsigned long *columns,
401 unsigned long *rows)
402{
403 EFI_ENTRY("%p, %ld, %p, %p", this, mode_number, columns, rows);
404
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +0100405 if (mode_number >= efi_con_mode.max_mode)
406 return EFI_EXIT(EFI_UNSUPPORTED);
407
408 if (efi_cout_modes[mode_number].present != 1)
409 return EFI_EXIT(EFI_UNSUPPORTED);
410
Alexander Grafc1311ad2016-03-04 01:10:00 +0100411 if (columns)
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +0100412 *columns = efi_cout_modes[mode_number].columns;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100413 if (rows)
Emmanuel Vadot5be8b0a2016-11-08 06:03:29 +0100414 *rows = efi_cout_modes[mode_number].rows;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100415
416 return EFI_EXIT(EFI_SUCCESS);
417}
418
Rob Clark2d5dc2a2017-10-10 08:23:01 -0400419static const struct {
420 unsigned int fg;
421 unsigned int bg;
422} color[] = {
423 { 30, 40 }, /* 0: black */
424 { 34, 44 }, /* 1: blue */
425 { 32, 42 }, /* 2: green */
426 { 36, 46 }, /* 3: cyan */
427 { 31, 41 }, /* 4: red */
428 { 35, 45 }, /* 5: magenta */
Heinrich Schuchardt14d103b2018-09-08 19:57:24 +0200429 { 33, 43 }, /* 6: brown, map to yellow as EDK2 does*/
430 { 37, 47 }, /* 7: light gray, map to white */
Rob Clark2d5dc2a2017-10-10 08:23:01 -0400431};
432
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200433/**
434 * efi_cout_set_attribute() - set fore- and background color
435 *
436 * This function implements the SetAttribute service of the simple text output
437 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
438 * for details.
439 *
440 * @this: simple text output protocol
441 * @attribute: foreground color - bits 0-3, background color - bits 4-6
442 * Return: status code
443 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100444static efi_status_t EFIAPI efi_cout_set_attribute(
445 struct efi_simple_text_output_protocol *this,
446 unsigned long attribute)
447{
Rob Clark2d5dc2a2017-10-10 08:23:01 -0400448 unsigned int bold = EFI_ATTR_BOLD(attribute);
449 unsigned int fg = EFI_ATTR_FG(attribute);
450 unsigned int bg = EFI_ATTR_BG(attribute);
451
Alexander Grafc1311ad2016-03-04 01:10:00 +0100452 EFI_ENTRY("%p, %lx", this, attribute);
453
Heinrich Schuchardt3950f0f2019-06-14 07:16:57 +0200454 efi_con_mode.attribute = attribute;
Rob Clark2d5dc2a2017-10-10 08:23:01 -0400455 if (attribute)
456 printf(ESC"[%u;%u;%um", bold, color[fg].fg, color[bg].bg);
457 else
458 printf(ESC"[0;37;40m");
459
460 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100461}
462
Heinrich Schuchardtb0ad9b52019-12-22 07:15:55 +0000463/**
464 * efi_cout_clear_screen() - clear screen
Heinrich Schuchardtf3272362022-10-15 11:13:59 +0200465 */
466static void efi_clear_screen(void)
467{
468 /*
469 * The Linux console wants both a clear and a home command. The video
470 * uclass does not support <ESC>[H without coordinates, yet.
471 */
472 printf(ESC "[2J" ESC "[1;1H");
473 efi_con_mode.cursor_column = 0;
474 efi_con_mode.cursor_row = 0;
475}
476
477/**
478 * efi_cout_clear_screen() - clear screen
Heinrich Schuchardtb0ad9b52019-12-22 07:15:55 +0000479 *
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200480 * This function implements the ClearScreen service of the simple text output
481 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
482 * for details.
Heinrich Schuchardtb0ad9b52019-12-22 07:15:55 +0000483 *
484 * @this: pointer to the protocol instance
485 * Return: status code
486 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100487static efi_status_t EFIAPI efi_cout_clear_screen(
488 struct efi_simple_text_output_protocol *this)
489{
490 EFI_ENTRY("%p", this);
491
Heinrich Schuchardtf3272362022-10-15 11:13:59 +0200492 efi_clear_screen();
Alexander Grafc1311ad2016-03-04 01:10:00 +0100493
494 return EFI_EXIT(EFI_SUCCESS);
495}
496
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200497/**
498 * efi_cout_clear_set_mode() - set text model
499 *
500 * This function implements the SetMode service of the simple text output
501 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
502 * for details.
503 *
504 * @this: pointer to the protocol instance
505 * @mode_number: number of the text mode to set
506 * Return: status code
507 */
Heinrich Schuchardt2ad238f2019-06-14 07:20:51 +0200508static efi_status_t EFIAPI efi_cout_set_mode(
509 struct efi_simple_text_output_protocol *this,
510 unsigned long mode_number)
511{
512 EFI_ENTRY("%p, %ld", this, mode_number);
513
514 if (mode_number >= efi_con_mode.max_mode)
515 return EFI_EXIT(EFI_UNSUPPORTED);
Heinrich Schuchardt03446982019-09-04 22:46:13 +0200516
517 if (!efi_cout_modes[mode_number].present)
518 return EFI_EXIT(EFI_UNSUPPORTED);
519
Heinrich Schuchardt2ad238f2019-06-14 07:20:51 +0200520 efi_con_mode.mode = mode_number;
Heinrich Schuchardtf3272362022-10-15 11:13:59 +0200521 efi_clear_screen();
Heinrich Schuchardt2ad238f2019-06-14 07:20:51 +0200522
523 return EFI_EXIT(EFI_SUCCESS);
524}
525
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200526/**
527 * efi_cout_reset() - reset the terminal
528 *
529 * This function implements the Reset service of the simple text output
530 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
531 * for details.
532 *
533 * @this: pointer to the protocol instance
534 * @extended_verification: if set an extended verification may be executed
535 * Return: status code
536 */
Heinrich Schuchardt9d12daf2018-07-05 19:58:07 +0200537static efi_status_t EFIAPI efi_cout_reset(
538 struct efi_simple_text_output_protocol *this,
539 char extended_verification)
540{
541 EFI_ENTRY("%p, %d", this, extended_verification);
542
Heinrich Schuchardt9d12daf2018-07-05 19:58:07 +0200543 /* Set default colors */
Heinrich Schuchardt3950f0f2019-06-14 07:16:57 +0200544 efi_con_mode.attribute = 0x07;
Heinrich Schuchardt9d12daf2018-07-05 19:58:07 +0200545 printf(ESC "[0;37;40m");
Heinrich Schuchardt5c1037d2022-04-30 09:05:04 +0200546 /* Clear screen */
Heinrich Schuchardtf3272362022-10-15 11:13:59 +0200547 efi_clear_screen();
Heinrich Schuchardt9d12daf2018-07-05 19:58:07 +0200548
549 return EFI_EXIT(EFI_SUCCESS);
550}
551
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200552/**
553 * efi_cout_set_cursor_position() - reset the terminal
554 *
555 * This function implements the SetCursorPosition service of the simple text
556 * output protocol. See the Unified Extensible Firmware Interface (UEFI)
557 * specification for details.
558 *
559 * @this: pointer to the protocol instance
560 * @column: column to move to
561 * @row: row to move to
562 * Return: status code
563 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100564static efi_status_t EFIAPI efi_cout_set_cursor_position(
565 struct efi_simple_text_output_protocol *this,
566 unsigned long column, unsigned long row)
567{
Heinrich Schuchardtaaace4b2018-09-14 18:49:26 +0200568 efi_status_t ret = EFI_SUCCESS;
569 struct simple_text_output_mode *con = &efi_con_mode;
570 struct cout_mode *mode = &efi_cout_modes[con->mode];
571
Alexander Grafc1311ad2016-03-04 01:10:00 +0100572 EFI_ENTRY("%p, %ld, %ld", this, column, row);
573
Heinrich Schuchardtaaace4b2018-09-14 18:49:26 +0200574 /* Check parameters */
575 if (!this) {
576 ret = EFI_INVALID_PARAMETER;
577 goto out;
578 }
579 if (row >= mode->rows || column >= mode->columns) {
580 ret = EFI_UNSUPPORTED;
581 goto out;
582 }
583
584 /*
585 * Set cursor position by sending CSI H.
586 * EFI origin is [0, 0], terminal origin is [1, 1].
587 */
588 printf(ESC "[%d;%dH", (int)row + 1, (int)column + 1);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100589 efi_con_mode.cursor_column = column;
590 efi_con_mode.cursor_row = row;
Heinrich Schuchardtaaace4b2018-09-14 18:49:26 +0200591out:
592 return EFI_EXIT(ret);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100593}
594
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200595/**
596 * efi_cout_enable_cursor() - enable the cursor
597 *
598 * This function implements the EnableCursor service of the simple text output
599 * protocol. See the Unified Extensible Firmware Interface (UEFI) specification
600 * for details.
601 *
602 * @this: pointer to the protocol instance
603 * @enable: if true enable, if false disable the cursor
604 * Return: status code
605 */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100606static efi_status_t EFIAPI efi_cout_enable_cursor(
607 struct efi_simple_text_output_protocol *this,
608 bool enable)
609{
610 EFI_ENTRY("%p, %d", this, enable);
611
612 printf(ESC"[?25%c", enable ? 'h' : 'l');
Heinrich Schuchardt25e6fb52019-06-02 22:54:28 +0200613 efi_con_mode.cursor_visible = !!enable;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100614
615 return EFI_EXIT(EFI_SUCCESS);
616}
617
Heinrich Schuchardtebb4dd52017-10-26 19:25:59 +0200618struct efi_simple_text_output_protocol efi_con_out = {
Alexander Grafc1311ad2016-03-04 01:10:00 +0100619 .reset = efi_cout_reset,
620 .output_string = efi_cout_output_string,
621 .test_string = efi_cout_test_string,
622 .query_mode = efi_cout_query_mode,
623 .set_mode = efi_cout_set_mode,
624 .set_attribute = efi_cout_set_attribute,
625 .clear_screen = efi_cout_clear_screen,
626 .set_cursor_position = efi_cout_set_cursor_position,
627 .enable_cursor = efi_cout_enable_cursor,
628 .mode = (void*)&efi_con_mode,
629};
630
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200631/**
632 * struct efi_cin_notify_function - registered console input notify function
633 *
634 * @link: link to list
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200635 * @key: key to notify
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200636 * @function: function to call
637 */
638struct efi_cin_notify_function {
639 struct list_head link;
640 struct efi_key_data key;
641 efi_status_t (EFIAPI *function)
642 (struct efi_key_data *key_data);
643};
644
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200645static bool key_available;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200646static struct efi_key_data next_key;
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200647static LIST_HEAD(cin_notify_functions);
Heinrich Schuchardt4f187892018-07-05 08:17:59 +0200648
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200649/**
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200650 * set_shift_mask() - set shift mask
651 *
652 * @mod: Xterm shift mask
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200653 * @key_state: receives the state of the shift, alt, control, and logo keys
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200654 */
655void set_shift_mask(int mod, struct efi_key_state *key_state)
656{
657 key_state->key_shift_state = EFI_SHIFT_STATE_VALID;
658 if (mod) {
659 --mod;
660 if (mod & 1)
661 key_state->key_shift_state |= EFI_LEFT_SHIFT_PRESSED;
662 if (mod & 2)
663 key_state->key_shift_state |= EFI_LEFT_ALT_PRESSED;
664 if (mod & 4)
665 key_state->key_shift_state |= EFI_LEFT_CONTROL_PRESSED;
Heinrich Schuchardt3b435c12019-06-16 22:33:20 +0200666 if (!mod || (mod & 8))
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200667 key_state->key_shift_state |= EFI_LEFT_LOGO_PRESSED;
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200668 }
669}
670
671/**
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200672 * analyze_modifiers() - analyze modifiers (shift, alt, ctrl) for function keys
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200673 *
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100674 * This gets called when we have already parsed CSI.
675 *
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200676 * @key_state: receives the state of the shift, alt, control, and logo keys
Heinrich Schuchardt325567d2020-06-04 18:40:44 +0200677 * Return: the unmodified code
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100678 */
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200679static int analyze_modifiers(struct efi_key_state *key_state)
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100680{
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200681 int c, mod = 0, ret = 0;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100682
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200683 c = getchar();
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100684
685 if (c != ';') {
686 ret = c;
687 if (c == '~')
688 goto out;
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200689 c = getchar();
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100690 }
691 for (;;) {
692 switch (c) {
693 case '0'...'9':
694 mod *= 10;
695 mod += c - '0';
696 /* fall through */
697 case ';':
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200698 c = getchar();
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100699 break;
700 default:
701 goto out;
702 }
703 }
704out:
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200705 set_shift_mask(mod, key_state);
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100706 if (!ret)
707 ret = c;
708 return ret;
709}
710
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200711/**
712 * efi_cin_read_key() - read a key from the console input
713 *
714 * @key: - key received
715 * Return: - status code
716 */
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200717static efi_status_t efi_cin_read_key(struct efi_key_data *key)
Alexander Grafc1311ad2016-03-04 01:10:00 +0100718{
719 struct efi_input_key pressed_key = {
720 .scan_code = 0,
721 .unicode_char = 0,
722 };
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +0200723 s32 ch;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100724
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200725 if (console_read_unicode(&ch))
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200726 return EFI_NOT_READY;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200727
728 key->key_state.key_shift_state = EFI_SHIFT_STATE_INVALID;
729 key->key_state.key_toggle_state = EFI_TOGGLE_STATE_INVALID;
730
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +0200731 /* We do not support multi-word codes */
732 if (ch >= 0x10000)
733 ch = '?';
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200734
735 switch (ch) {
736 case 0x1b:
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100737 /*
Heinrich Schuchardt9abb01a2020-12-27 14:47:50 +0100738 * If a second key is received within 10 ms, assume that we are
739 * dealing with an escape sequence. Otherwise consider this the
740 * escape key being hit. 10 ms is long enough to work fine at
741 * 1200 baud and above.
742 */
743 udelay(10000);
744 if (!tstc()) {
745 pressed_key.scan_code = 23;
746 break;
747 }
748 /*
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100749 * Xterm Control Sequences
750 * https://www.xfree86.org/4.8.0/ctlseqs.html
751 */
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200752 ch = getchar();
Alexander Grafc1311ad2016-03-04 01:10:00 +0100753 switch (ch) {
754 case cESC: /* ESC */
755 pressed_key.scan_code = 23;
756 break;
Heinrich Schuchardt3b2b2de2019-06-16 21:41:13 +0200757 case 'O': /* F1 - F4, End */
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200758 ch = getchar();
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200759 /* consider modifiers */
Heinrich Schuchardt3b2b2de2019-06-16 21:41:13 +0200760 if (ch == 'F') { /* End */
761 pressed_key.scan_code = 6;
762 break;
763 } else if (ch < 'P') {
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200764 set_shift_mask(ch - '0', &key->key_state);
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200765 ch = getchar();
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200766 }
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100767 pressed_key.scan_code = ch - 'P' + 11;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100768 break;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100769 case '[':
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200770 ch = getchar();
Alexander Grafc1311ad2016-03-04 01:10:00 +0100771 switch (ch) {
772 case 'A'...'D': /* up, down right, left */
773 pressed_key.scan_code = ch - 'A' + 1;
774 break;
775 case 'F': /* End */
776 pressed_key.scan_code = 6;
777 break;
778 case 'H': /* Home */
779 pressed_key.scan_code = 5;
780 break;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100781 case '1':
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200782 ch = analyze_modifiers(&key->key_state);
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100783 switch (ch) {
784 case '1'...'5': /* F1 - F5 */
785 pressed_key.scan_code = ch - '1' + 11;
786 break;
Heinrich Schuchardt3b2b2de2019-06-16 21:41:13 +0200787 case '6'...'9': /* F5 - F8 */
788 pressed_key.scan_code = ch - '6' + 15;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100789 break;
790 case 'A'...'D': /* up, down right, left */
791 pressed_key.scan_code = ch - 'A' + 1;
792 break;
Heinrich Schuchardt3b2b2de2019-06-16 21:41:13 +0200793 case 'F': /* End */
794 pressed_key.scan_code = 6;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100795 break;
Heinrich Schuchardt3b2b2de2019-06-16 21:41:13 +0200796 case 'H': /* Home */
797 pressed_key.scan_code = 5;
798 break;
799 case '~': /* Home */
800 pressed_key.scan_code = 5;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100801 break;
802 }
Alexander Grafc1311ad2016-03-04 01:10:00 +0100803 break;
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100804 case '2':
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200805 ch = analyze_modifiers(&key->key_state);
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100806 switch (ch) {
807 case '0'...'1': /* F9 - F10 */
808 pressed_key.scan_code = ch - '0' + 19;
809 break;
810 case '3'...'4': /* F11 - F12 */
811 pressed_key.scan_code = ch - '3' + 21;
812 break;
813 case '~': /* INS */
814 pressed_key.scan_code = 7;
815 break;
816 }
Alexander Grafc1311ad2016-03-04 01:10:00 +0100817 break;
818 case '3': /* DEL */
819 pressed_key.scan_code = 8;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200820 analyze_modifiers(&key->key_state);
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100821 break;
822 case '5': /* PG UP */
823 pressed_key.scan_code = 9;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200824 analyze_modifiers(&key->key_state);
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100825 break;
826 case '6': /* PG DOWN */
827 pressed_key.scan_code = 10;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200828 analyze_modifiers(&key->key_state);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100829 break;
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200830 } /* [ */
Alexander Grafc1311ad2016-03-04 01:10:00 +0100831 break;
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200832 default:
833 /* ALT key */
834 set_shift_mask(3, &key->key_state);
Alexander Grafc1311ad2016-03-04 01:10:00 +0100835 }
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200836 break;
837 case 0x7f:
Alexander Grafc1311ad2016-03-04 01:10:00 +0100838 /* Backspace */
839 ch = 0x08;
840 }
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200841 if (pressed_key.scan_code) {
842 key->key_state.key_shift_state |= EFI_SHIFT_STATE_VALID;
843 } else {
Heinrich Schuchardt0fb41692018-02-19 18:53:29 +0100844 pressed_key.unicode_char = ch;
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200845
846 /*
847 * Assume left control key for control characters typically
848 * entered using the control key.
849 */
850 if (ch >= 0x01 && ch <= 0x1f) {
Heinrich Schuchardt55fbdf92018-09-11 22:38:09 +0200851 key->key_state.key_shift_state |=
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200852 EFI_SHIFT_STATE_VALID;
853 switch (ch) {
854 case 0x01 ... 0x07:
855 case 0x0b ... 0x0c:
856 case 0x0e ... 0x1f:
857 key->key_state.key_shift_state |=
858 EFI_LEFT_CONTROL_PRESSED;
859 }
860 }
861 }
862 key->key = pressed_key;
Alexander Grafc1311ad2016-03-04 01:10:00 +0100863
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200864 return EFI_SUCCESS;
865}
866
867/**
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200868 * efi_cin_notify() - notify registered functions
869 */
870static void efi_cin_notify(void)
871{
872 struct efi_cin_notify_function *item;
873
874 list_for_each_entry(item, &cin_notify_functions, link) {
875 bool match = true;
876
877 /* We do not support toggle states */
878 if (item->key.key.unicode_char || item->key.key.scan_code) {
879 if (item->key.key.unicode_char !=
880 next_key.key.unicode_char ||
881 item->key.key.scan_code != next_key.key.scan_code)
882 match = false;
883 }
884 if (item->key.key_state.key_shift_state &&
885 item->key.key_state.key_shift_state !=
886 next_key.key_state.key_shift_state)
887 match = false;
888
889 if (match)
890 /* We don't bother about the return code */
891 EFI_CALL(item->function(&next_key));
892 }
893}
894
895/**
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200896 * efi_cin_check() - check if keyboard input is available
897 */
898static void efi_cin_check(void)
899{
900 efi_status_t ret;
901
902 if (key_available) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200903 efi_signal_event(efi_con_in.wait_for_key);
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200904 return;
905 }
906
907 if (tstc()) {
908 ret = efi_cin_read_key(&next_key);
909 if (ret == EFI_SUCCESS) {
910 key_available = true;
911
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200912 /* Notify registered functions */
913 efi_cin_notify();
914
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200915 /* Queue the wait for key event */
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +0200916 if (key_available)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200917 efi_signal_event(efi_con_in.wait_for_key);
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +0200918 }
919 }
920}
921
922/**
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200923 * efi_cin_empty_buffer() - empty input buffer
924 */
925static void efi_cin_empty_buffer(void)
926{
927 while (tstc())
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200928 getchar();
Heinrich Schuchardt110c6282018-09-11 22:38:08 +0200929 key_available = false;
930}
931
932/**
933 * efi_cin_reset_ex() - reset console input
934 *
935 * @this: - the extended simple text input protocol
936 * @extended_verification: - extended verification
937 *
938 * This function implements the reset service of the
939 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
940 *
941 * See the Unified Extensible Firmware Interface (UEFI) specification for
942 * details.
943 *
944 * Return: old value of the task priority level
945 */
946static efi_status_t EFIAPI efi_cin_reset_ex(
947 struct efi_simple_text_input_ex_protocol *this,
948 bool extended_verification)
949{
950 efi_status_t ret = EFI_SUCCESS;
951
952 EFI_ENTRY("%p, %d", this, extended_verification);
953
954 /* Check parameters */
955 if (!this) {
956 ret = EFI_INVALID_PARAMETER;
957 goto out;
958 }
959
960 efi_cin_empty_buffer();
961out:
962 return EFI_EXIT(ret);
963}
964
965/**
966 * efi_cin_read_key_stroke_ex() - read key stroke
967 *
968 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
969 * @key_data: key read from console
970 * Return: status code
971 *
972 * This function implements the ReadKeyStrokeEx service of the
973 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
974 *
975 * See the Unified Extensible Firmware Interface (UEFI) specification for
976 * details.
977 */
978static efi_status_t EFIAPI efi_cin_read_key_stroke_ex(
979 struct efi_simple_text_input_ex_protocol *this,
980 struct efi_key_data *key_data)
981{
982 efi_status_t ret = EFI_SUCCESS;
983
984 EFI_ENTRY("%p, %p", this, key_data);
985
986 /* Check parameters */
987 if (!this || !key_data) {
988 ret = EFI_INVALID_PARAMETER;
989 goto out;
990 }
991
992 /* We don't do interrupts, so check for timers cooperatively */
993 efi_timer_check();
994
995 /* Enable console input after ExitBootServices */
996 efi_cin_check();
997
998 if (!key_available) {
Heinrich Schuchardt0b7b56d2022-09-01 23:30:09 +0200999 memset(key_data, 0, sizeof(struct efi_key_data));
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001000 ret = EFI_NOT_READY;
1001 goto out;
1002 }
Heinrich Schuchardtbfc2dd52019-04-06 20:59:24 +02001003 /*
1004 * CTRL+A - CTRL+Z have to be signaled as a - z.
1005 * SHIFT+CTRL+A - SHIFT+CTRL+Z have to be signaled as A - Z.
Heinrich Schuchardte053a142022-09-02 00:49:12 +02001006 * CTRL+\ - CTRL+_ have to be signaled as \ - _.
Heinrich Schuchardtbfc2dd52019-04-06 20:59:24 +02001007 */
1008 switch (next_key.key.unicode_char) {
1009 case 0x01 ... 0x07:
1010 case 0x0b ... 0x0c:
1011 case 0x0e ... 0x1a:
1012 if (!(next_key.key_state.key_toggle_state &
1013 EFI_CAPS_LOCK_ACTIVE) ^
1014 !(next_key.key_state.key_shift_state &
1015 (EFI_LEFT_SHIFT_PRESSED | EFI_RIGHT_SHIFT_PRESSED)))
1016 next_key.key.unicode_char += 0x40;
1017 else
1018 next_key.key.unicode_char += 0x60;
Heinrich Schuchardte053a142022-09-02 00:49:12 +02001019 break;
1020 case 0x1c ... 0x1f:
1021 next_key.key.unicode_char += 0x40;
Heinrich Schuchardtbfc2dd52019-04-06 20:59:24 +02001022 }
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001023 *key_data = next_key;
1024 key_available = false;
1025 efi_con_in.wait_for_key->is_signaled = false;
Heinrich Schuchardtbfc2dd52019-04-06 20:59:24 +02001026
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001027out:
1028 return EFI_EXIT(ret);
1029}
1030
1031/**
1032 * efi_cin_set_state() - set toggle key state
1033 *
1034 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
Heinrich Schuchardtacee9652019-05-18 17:07:52 +02001035 * @key_toggle_state: pointer to key toggle state
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001036 * Return: status code
1037 *
1038 * This function implements the SetState service of the
1039 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
1040 *
1041 * See the Unified Extensible Firmware Interface (UEFI) specification for
1042 * details.
1043 */
1044static efi_status_t EFIAPI efi_cin_set_state(
1045 struct efi_simple_text_input_ex_protocol *this,
Heinrich Schuchardtacee9652019-05-18 17:07:52 +02001046 u8 *key_toggle_state)
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001047{
Heinrich Schuchardtacee9652019-05-18 17:07:52 +02001048 EFI_ENTRY("%p, %p", this, key_toggle_state);
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001049 /*
1050 * U-Boot supports multiple console input sources like serial and
1051 * net console for which a key toggle state cannot be set at all.
1052 *
1053 * According to the UEFI specification it is allowable to not implement
1054 * this service.
1055 */
1056 return EFI_EXIT(EFI_UNSUPPORTED);
1057}
1058
1059/**
1060 * efi_cin_register_key_notify() - register key notification function
1061 *
1062 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1063 * @key_data: key to be notified
1064 * @key_notify_function: function to be called if the key is pressed
1065 * @notify_handle: handle for unregistering the notification
1066 * Return: status code
1067 *
1068 * This function implements the SetState service of the
1069 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
1070 *
1071 * See the Unified Extensible Firmware Interface (UEFI) specification for
1072 * details.
1073 */
1074static efi_status_t EFIAPI efi_cin_register_key_notify(
1075 struct efi_simple_text_input_ex_protocol *this,
1076 struct efi_key_data *key_data,
1077 efi_status_t (EFIAPI *key_notify_function)(
1078 struct efi_key_data *key_data),
1079 void **notify_handle)
1080{
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +02001081 efi_status_t ret = EFI_SUCCESS;
1082 struct efi_cin_notify_function *notify_function;
1083
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001084 EFI_ENTRY("%p, %p, %p, %p",
1085 this, key_data, key_notify_function, notify_handle);
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +02001086
1087 /* Check parameters */
1088 if (!this || !key_data || !key_notify_function || !notify_handle) {
1089 ret = EFI_INVALID_PARAMETER;
1090 goto out;
1091 }
1092
1093 EFI_PRINT("u+%04x, sc %04x, sh %08x, tg %02x\n",
1094 key_data->key.unicode_char,
1095 key_data->key.scan_code,
1096 key_data->key_state.key_shift_state,
1097 key_data->key_state.key_toggle_state);
1098
1099 notify_function = calloc(1, sizeof(struct efi_cin_notify_function));
1100 if (!notify_function) {
1101 ret = EFI_OUT_OF_RESOURCES;
1102 goto out;
1103 }
1104 notify_function->key = *key_data;
1105 notify_function->function = key_notify_function;
1106 list_add_tail(&notify_function->link, &cin_notify_functions);
1107 *notify_handle = notify_function;
1108out:
1109 return EFI_EXIT(ret);
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001110}
1111
1112/**
1113 * efi_cin_unregister_key_notify() - unregister key notification function
1114 *
1115 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1116 * @notification_handle: handle received when registering
1117 * Return: status code
1118 *
1119 * This function implements the SetState service of the
1120 * EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
1121 *
1122 * See the Unified Extensible Firmware Interface (UEFI) specification for
1123 * details.
1124 */
1125static efi_status_t EFIAPI efi_cin_unregister_key_notify(
1126 struct efi_simple_text_input_ex_protocol *this,
1127 void *notification_handle)
1128{
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +02001129 efi_status_t ret = EFI_INVALID_PARAMETER;
1130 struct efi_cin_notify_function *item, *notify_function =
1131 notification_handle;
1132
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001133 EFI_ENTRY("%p, %p", this, notification_handle);
Heinrich Schuchardt4fdcf062018-09-11 22:38:12 +02001134
1135 /* Check parameters */
1136 if (!this || !notification_handle)
1137 goto out;
1138
1139 list_for_each_entry(item, &cin_notify_functions, link) {
1140 if (item == notify_function) {
1141 ret = EFI_SUCCESS;
1142 break;
1143 }
1144 }
1145 if (ret != EFI_SUCCESS)
1146 goto out;
1147
1148 /* Remove the notify function */
1149 list_del(&notify_function->link);
1150 free(notify_function);
1151out:
1152 return EFI_EXIT(ret);
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001153}
1154
1155
1156/**
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001157 * efi_cin_reset() - drain the input buffer
1158 *
1159 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1160 * @extended_verification: allow for exhaustive verification
1161 * Return: status code
1162 *
1163 * This function implements the Reset service of the
1164 * EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
1165 *
1166 * See the Unified Extensible Firmware Interface (UEFI) specification for
1167 * details.
1168 */
1169static efi_status_t EFIAPI efi_cin_reset
1170 (struct efi_simple_text_input_protocol *this,
1171 bool extended_verification)
1172{
1173 efi_status_t ret = EFI_SUCCESS;
1174
1175 EFI_ENTRY("%p, %d", this, extended_verification);
1176
1177 /* Check parameters */
1178 if (!this) {
1179 ret = EFI_INVALID_PARAMETER;
1180 goto out;
1181 }
1182
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001183 efi_cin_empty_buffer();
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001184out:
1185 return EFI_EXIT(ret);
1186}
1187
1188/**
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001189 * efi_cin_read_key_stroke() - read key stroke
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001190 *
1191 * @this: instance of the EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1192 * @key: key read from console
1193 * Return: status code
1194 *
1195 * This function implements the ReadKeyStroke service of the
1196 * EFI_SIMPLE_TEXT_INPUT_PROTOCOL.
1197 *
1198 * See the Unified Extensible Firmware Interface (UEFI) specification for
1199 * details.
1200 */
1201static efi_status_t EFIAPI efi_cin_read_key_stroke
1202 (struct efi_simple_text_input_protocol *this,
1203 struct efi_input_key *key)
1204{
1205 efi_status_t ret = EFI_SUCCESS;
1206
1207 EFI_ENTRY("%p, %p", this, key);
1208
1209 /* Check parameters */
1210 if (!this || !key) {
1211 ret = EFI_INVALID_PARAMETER;
1212 goto out;
1213 }
1214
1215 /* We don't do interrupts, so check for timers cooperatively */
1216 efi_timer_check();
1217
1218 /* Enable console input after ExitBootServices */
1219 efi_cin_check();
1220
1221 if (!key_available) {
1222 ret = EFI_NOT_READY;
1223 goto out;
1224 }
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001225 *key = next_key.key;
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001226 key_available = false;
1227 efi_con_in.wait_for_key->is_signaled = false;
1228out:
1229 return EFI_EXIT(ret);
Alexander Grafc1311ad2016-03-04 01:10:00 +01001230}
1231
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001232static struct efi_simple_text_input_ex_protocol efi_con_in_ex = {
1233 .reset = efi_cin_reset_ex,
1234 .read_key_stroke_ex = efi_cin_read_key_stroke_ex,
1235 .wait_for_key_ex = NULL,
1236 .set_state = efi_cin_set_state,
1237 .register_key_notify = efi_cin_register_key_notify,
1238 .unregister_key_notify = efi_cin_unregister_key_notify,
1239};
1240
Heinrich Schuchardt3e603ec2018-09-08 10:20:10 +02001241struct efi_simple_text_input_protocol efi_con_in = {
Alexander Grafc1311ad2016-03-04 01:10:00 +01001242 .reset = efi_cin_reset,
1243 .read_key_stroke = efi_cin_read_key_stroke,
1244 .wait_for_key = NULL,
1245};
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001246
1247static struct efi_event *console_timer_event;
1248
Heinrich Schuchardt9bc96642018-01-19 20:24:51 +01001249/*
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001250 * efi_console_timer_notify() - notify the console timer event
Heinrich Schuchardt9bc96642018-01-19 20:24:51 +01001251 *
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001252 * @event: console timer event
1253 * @context: not used
Heinrich Schuchardt9bc96642018-01-19 20:24:51 +01001254 */
xypron.glpk@gmx.deff925932017-07-20 05:26:07 +02001255static void EFIAPI efi_console_timer_notify(struct efi_event *event,
1256 void *context)
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001257{
1258 EFI_ENTRY("%p, %p", event, context);
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001259 efi_cin_check();
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001260 EFI_EXIT(EFI_SUCCESS);
1261}
1262
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001263/**
1264 * efi_key_notify() - notify the wait for key event
1265 *
1266 * @event: wait for key event
1267 * @context: not used
1268 */
1269static void EFIAPI efi_key_notify(struct efi_event *event, void *context)
1270{
1271 EFI_ENTRY("%p, %p", event, context);
1272 efi_cin_check();
1273 EFI_EXIT(EFI_SUCCESS);
1274}
1275
1276/**
1277 * efi_console_register() - install the console protocols
1278 *
1279 * This function is called from do_bootefi_exec().
Heinrich Schuchardt6f566c22018-10-02 06:08:26 +02001280 *
1281 * Return: status code
Heinrich Schuchardt0dfd13a2018-09-11 22:38:05 +02001282 */
Heinrich Schuchardt6f566c22018-10-02 06:08:26 +02001283efi_status_t efi_console_register(void)
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001284{
1285 efi_status_t r;
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +01001286 struct efi_device_path *dp;
Rob Clarka17e62c2017-07-24 10:39:01 -04001287
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +01001288 /* Install protocols on root node */
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03001289 r = efi_install_multiple_protocol_interfaces(&efi_root,
1290 &efi_guid_text_output_protocol,
1291 &efi_con_out,
1292 &efi_guid_text_input_protocol,
1293 &efi_con_in,
1294 &efi_guid_text_input_ex_protocol,
1295 &efi_con_in_ex,
1296 NULL);
Alexander Graf40e3e752018-09-04 14:59:11 +02001297
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +01001298 /* Create console node and install device path protocols */
1299 if (CONFIG_IS_ENABLED(DM_SERIAL)) {
1300 dp = efi_dp_from_uart();
1301 if (!dp)
1302 goto out_of_memory;
Alexander Graf40e3e752018-09-04 14:59:11 +02001303
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +01001304 /* Hook UART up to the device list */
1305 efi_add_handle(&uart_obj);
Alexander Graf40e3e752018-09-04 14:59:11 +02001306
Heinrich Schuchardt3c95b322022-02-04 20:47:09 +01001307 /* Install device path */
1308 r = efi_add_protocol(&uart_obj, &efi_guid_device_path, dp);
1309 if (r != EFI_SUCCESS)
1310 goto out_of_memory;
1311 }
Rob Clarka17e62c2017-07-24 10:39:01 -04001312
Heinrich Schuchardtebb4dd52017-10-26 19:25:59 +02001313 /* Create console events */
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001314 r = efi_create_event(EVT_NOTIFY_WAIT, TPL_CALLBACK, efi_key_notify,
1315 NULL, NULL, &efi_con_in.wait_for_key);
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001316 if (r != EFI_SUCCESS) {
1317 printf("ERROR: Failed to register WaitForKey event\n");
1318 return r;
1319 }
Heinrich Schuchardt110c6282018-09-11 22:38:08 +02001320 efi_con_in_ex.wait_for_key_ex = efi_con_in.wait_for_key;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001321 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001322 efi_console_timer_notify, NULL, NULL,
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001323 &console_timer_event);
1324 if (r != EFI_SUCCESS) {
1325 printf("ERROR: Failed to register console event\n");
1326 return r;
1327 }
1328 /* 5000 ns cycle is sufficient for 2 MBaud */
1329 r = efi_set_timer(console_timer_event, EFI_TIMER_PERIODIC, 50);
1330 if (r != EFI_SUCCESS)
1331 printf("ERROR: Failed to set console timer\n");
1332 return r;
Heinrich Schuchardtebb4dd52017-10-26 19:25:59 +02001333out_of_memory:
Heinrich Schuchardt14d103b2018-09-08 19:57:24 +02001334 printf("ERROR: Out of memory\n");
Heinrich Schuchardtebb4dd52017-10-26 19:25:59 +02001335 return r;
xypron.glpk@gmx.de91be9a72017-07-18 20:17:22 +02001336}
Masahisa Kojima87d79142022-09-12 17:33:50 +09001337
1338/**
1339 * efi_console_get_u16_string() - get user input string
1340 *
1341 * @cin: protocol interface to EFI_SIMPLE_TEXT_INPUT_PROTOCOL
1342 * @buf: buffer to store user input string in UTF16
1343 * @count: number of u16 string including NULL terminator that buf has
1344 * @filter_func: callback to filter user input
1345 * @row: row number to locate user input form
1346 * @col: column number to locate user input form
1347 * Return: status code
1348 */
1349efi_status_t efi_console_get_u16_string(struct efi_simple_text_input_protocol *cin,
1350 u16 *buf, efi_uintn_t count,
1351 efi_console_filter_func filter_func,
1352 int row, int col)
1353{
1354 efi_status_t ret;
1355 efi_uintn_t len = 0;
1356 struct efi_input_key key;
1357
1358 printf(ANSI_CURSOR_POSITION
1359 ANSI_CLEAR_LINE_TO_END
1360 ANSI_CURSOR_SHOW, row, col);
1361
Heinrich Schuchardt7831d362022-10-15 12:22:37 +02001362 efi_cin_empty_buffer();
Masahisa Kojima87d79142022-09-12 17:33:50 +09001363
1364 for (;;) {
1365 do {
1366 ret = EFI_CALL(cin->read_key_stroke(cin, &key));
1367 mdelay(10);
1368 } while (ret == EFI_NOT_READY);
1369
1370 if (key.unicode_char == u'\b') {
1371 if (len > 0)
1372 buf[--len] = u'\0';
1373
1374 printf(ANSI_CURSOR_POSITION
1375 "%ls"
1376 ANSI_CLEAR_LINE_TO_END, row, col, buf);
1377 continue;
1378 } else if (key.unicode_char == u'\r') {
1379 buf[len] = u'\0';
1380 return EFI_SUCCESS;
1381 } else if (key.unicode_char == 0x3 || key.scan_code == 23) {
1382 return EFI_ABORTED;
1383 } else if (key.unicode_char < 0x20) {
1384 /* ignore control codes other than Ctrl+C, '\r' and '\b' */
1385 continue;
1386 } else if (key.scan_code != 0) {
1387 /* only accept single ESC press for cancel */
1388 continue;
1389 }
1390
1391 if (filter_func) {
1392 if (filter_func(&key) != EFI_SUCCESS)
1393 continue;
1394 }
1395
1396 if (len >= (count - 1))
1397 continue;
1398
1399 buf[len] = key.unicode_char;
1400 len++;
1401 printf(ANSI_CURSOR_POSITION "%ls", row, col, buf);
1402 }
1403}