Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000 |
| 4 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 8 | #include <console.h> |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 9 | #include <debug_uart.h> |
Simon Glass | 4e4bf94 | 2022-07-31 12:28:48 -0600 | [diff] [blame] | 10 | #include <display_options.h> |
Simon Glass | 7b3c4c3 | 2017-07-27 09:31:04 -0600 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 12 | #include <env.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 13 | #include <stdarg.h> |
Jeroen Hofstee | 482f469 | 2014-10-08 22:57:48 +0200 | [diff] [blame] | 14 | #include <iomux.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 15 | #include <malloc.h> |
Simon Glass | 4e6bafa | 2017-06-15 21:37:52 -0600 | [diff] [blame] | 16 | #include <mapmem.h> |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 17 | #include <os.h> |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 18 | #include <serial.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 19 | #include <stdio_dev.h> |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 20 | #include <exports.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 21 | #include <env_internal.h> |
Simon Glass | cde03fa | 2023-10-01 19:15:23 -0600 | [diff] [blame] | 22 | #include <video_console.h> |
Andreas J. Reichel | 6440746 | 2016-07-13 12:56:51 +0200 | [diff] [blame] | 23 | #include <watchdog.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 24 | #include <asm/global_data.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 25 | #include <linux/delay.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 26 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Simon Glass | cde03fa | 2023-10-01 19:15:23 -0600 | [diff] [blame] | 29 | #define CSI "\x1b[" |
| 30 | |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 31 | static int on_console(const char *name, const char *value, enum env_op op, |
| 32 | int flags) |
| 33 | { |
| 34 | int console = -1; |
| 35 | |
| 36 | /* Check for console redirection */ |
| 37 | if (strcmp(name, "stdin") == 0) |
| 38 | console = stdin; |
| 39 | else if (strcmp(name, "stdout") == 0) |
| 40 | console = stdout; |
| 41 | else if (strcmp(name, "stderr") == 0) |
| 42 | console = stderr; |
| 43 | |
| 44 | /* if not actually setting a console variable, we don't care */ |
| 45 | if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0) |
| 46 | return 0; |
| 47 | |
| 48 | switch (op) { |
| 49 | case env_op_create: |
| 50 | case env_op_overwrite: |
| 51 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 52 | if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { |
| 53 | if (iomux_doenv(console, value)) |
| 54 | return 1; |
| 55 | } else { |
| 56 | /* Try assigning specified device */ |
| 57 | if (console_assign(console, value) < 0) |
| 58 | return 1; |
| 59 | } |
| 60 | |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 61 | return 0; |
| 62 | |
| 63 | case env_op_delete: |
| 64 | if ((flags & H_FORCE) == 0) |
| 65 | printf("Can't delete \"%s\"\n", name); |
| 66 | return 1; |
| 67 | |
| 68 | default: |
| 69 | return 0; |
| 70 | } |
| 71 | } |
| 72 | U_BOOT_ENV_CALLBACK(console, on_console); |
| 73 | |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 74 | #ifdef CONFIG_SILENT_CONSOLE |
| 75 | static int on_silent(const char *name, const char *value, enum env_op op, |
| 76 | int flags) |
| 77 | { |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 78 | if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET)) |
| 79 | if (flags & H_INTERACTIVE) |
| 80 | return 0; |
| 81 | |
| 82 | if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC)) |
| 83 | if ((flags & H_INTERACTIVE) == 0) |
| 84 | return 0; |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 85 | |
| 86 | if (value != NULL) |
| 87 | gd->flags |= GD_FLG_SILENT; |
| 88 | else |
| 89 | gd->flags &= ~GD_FLG_SILENT; |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | U_BOOT_ENV_CALLBACK(silent, on_silent); |
| 94 | #endif |
| 95 | |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 96 | #ifdef CONFIG_CONSOLE_RECORD |
| 97 | /* helper function: access to gd->console_out and gd->console_in */ |
| 98 | static void console_record_putc(const char c) |
| 99 | { |
| 100 | if (!(gd->flags & GD_FLG_RECORD)) |
| 101 | return; |
Simon Glass | c1a2bb4 | 2021-05-08 06:59:56 -0600 | [diff] [blame] | 102 | if (gd->console_out.start && |
| 103 | !membuff_putbyte((struct membuff *)&gd->console_out, c)) |
| 104 | gd->flags |= GD_FLG_RECORD_OVF; |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static void console_record_puts(const char *s) |
| 108 | { |
| 109 | if (!(gd->flags & GD_FLG_RECORD)) |
| 110 | return; |
Simon Glass | c1a2bb4 | 2021-05-08 06:59:56 -0600 | [diff] [blame] | 111 | if (gd->console_out.start) { |
| 112 | int len = strlen(s); |
| 113 | |
| 114 | if (membuff_put((struct membuff *)&gd->console_out, s, len) != |
| 115 | len) |
| 116 | gd->flags |= GD_FLG_RECORD_OVF; |
| 117 | } |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | static int console_record_getc(void) |
| 121 | { |
| 122 | if (!(gd->flags & GD_FLG_RECORD)) |
| 123 | return -1; |
| 124 | if (!gd->console_in.start) |
| 125 | return -1; |
| 126 | |
| 127 | return membuff_getbyte((struct membuff *)&gd->console_in); |
| 128 | } |
| 129 | |
| 130 | static int console_record_tstc(void) |
| 131 | { |
| 132 | if (!(gd->flags & GD_FLG_RECORD)) |
| 133 | return 0; |
| 134 | if (gd->console_in.start) { |
| 135 | if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1) |
| 136 | return 1; |
| 137 | } |
| 138 | return 0; |
| 139 | } |
| 140 | #else |
| 141 | static void console_record_putc(char c) |
| 142 | { |
| 143 | } |
| 144 | |
| 145 | static void console_record_puts(const char *s) |
| 146 | { |
| 147 | } |
| 148 | |
| 149 | static int console_record_getc(void) |
| 150 | { |
| 151 | return -1; |
| 152 | } |
| 153 | |
| 154 | static int console_record_tstc(void) |
| 155 | { |
| 156 | return 0; |
| 157 | } |
| 158 | #endif |
| 159 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 160 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 161 | /* |
| 162 | * if overwrite_console returns 1, the stdin, stderr and stdout |
| 163 | * are switched to the serial port, else the settings in the |
| 164 | * environment are used |
| 165 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 166 | #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 167 | extern int overwrite_console(void); |
| 168 | #define OVERWRITE_CONSOLE overwrite_console() |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 169 | #else |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 170 | #define OVERWRITE_CONSOLE 0 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 171 | #endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 172 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 173 | #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 174 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 175 | static int console_setfile(int file, struct stdio_dev * dev) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 176 | { |
| 177 | int error = 0; |
| 178 | |
| 179 | if (dev == NULL) |
| 180 | return -1; |
| 181 | |
| 182 | switch (file) { |
| 183 | case stdin: |
| 184 | case stdout: |
| 185 | case stderr: |
Andy Shevchenko | 41f668b | 2020-12-21 14:30:00 +0200 | [diff] [blame] | 186 | error = console_start(file, dev); |
| 187 | if (error) |
| 188 | break; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 189 | |
| 190 | /* Assign the new device (leaving the existing one started) */ |
| 191 | stdio_devices[file] = dev; |
| 192 | |
| 193 | /* |
| 194 | * Update monitor functions |
| 195 | * (to use the console stuff by other applications) |
| 196 | */ |
| 197 | switch (file) { |
| 198 | case stdin: |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 199 | gd->jt->getc = getchar; |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 200 | gd->jt->tstc = tstc; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 201 | break; |
| 202 | case stdout: |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 203 | gd->jt->putc = putc; |
| 204 | gd->jt->puts = puts; |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 205 | STDIO_DEV_ASSIGN_FLUSH(gd->jt, flush); |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 206 | gd->jt->printf = printf; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 207 | break; |
| 208 | } |
| 209 | break; |
| 210 | |
| 211 | default: /* Invalid file ID */ |
| 212 | error = -1; |
| 213 | } |
| 214 | return error; |
| 215 | } |
| 216 | |
Simon Glass | 42f9f91 | 2017-07-27 09:31:03 -0600 | [diff] [blame] | 217 | /** |
| 218 | * console_dev_is_serial() - Check if a stdio device is a serial device |
| 219 | * |
| 220 | * @sdev: Device to check |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 221 | * Return: true if this device is in the serial uclass (or for pre-driver-model, |
Simon Glass | 7b3c4c3 | 2017-07-27 09:31:04 -0600 | [diff] [blame] | 222 | * whether it is called "serial". |
Simon Glass | 42f9f91 | 2017-07-27 09:31:03 -0600 | [diff] [blame] | 223 | */ |
| 224 | static bool console_dev_is_serial(struct stdio_dev *sdev) |
| 225 | { |
| 226 | bool is_serial; |
| 227 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 228 | if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) { |
Simon Glass | 7b3c4c3 | 2017-07-27 09:31:04 -0600 | [diff] [blame] | 229 | struct udevice *dev = sdev->priv; |
| 230 | |
| 231 | is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL; |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 232 | } else { |
| 233 | is_serial = !strcmp(sdev->name, "serial"); |
| 234 | } |
Simon Glass | 42f9f91 | 2017-07-27 09:31:03 -0600 | [diff] [blame] | 235 | |
| 236 | return is_serial; |
| 237 | } |
| 238 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 239 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 240 | /** Console I/O multiplexing *******************************************/ |
| 241 | |
Patrick Delaunay | a17b38c | 2020-12-18 12:46:46 +0100 | [diff] [blame] | 242 | /* tstcdev: save the last stdio device with pending characters, with tstc != 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 243 | static struct stdio_dev *tstcdev; |
| 244 | struct stdio_dev **console_devices[MAX_FILES]; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 245 | int cd_count[MAX_FILES]; |
| 246 | |
Andy Shevchenko | 09d8f07 | 2021-02-11 17:09:39 +0200 | [diff] [blame] | 247 | static void console_devices_set(int file, struct stdio_dev *dev) |
Patrick Delaunay | 45375ad | 2020-12-18 12:46:44 +0100 | [diff] [blame] | 248 | { |
| 249 | console_devices[file][0] = dev; |
Andy Shevchenko | 20a7d35 | 2021-02-11 17:09:38 +0200 | [diff] [blame] | 250 | cd_count[file] = 1; |
Patrick Delaunay | 45375ad | 2020-12-18 12:46:44 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 253 | /** |
| 254 | * console_needs_start_stop() - check if we need to start or stop the STDIO device |
| 255 | * @file: STDIO file |
| 256 | * @sdev: STDIO device in question |
| 257 | * |
| 258 | * This function checks if we need to start or stop the stdio device used for |
| 259 | * a console. For IOMUX case it simply enforces one time start and one time |
| 260 | * stop of the device independently of how many STDIO files are using it. In |
| 261 | * other words, we start console once before first STDIO device wants it and |
| 262 | * stop after the last is gone. |
| 263 | */ |
| 264 | static bool console_needs_start_stop(int file, struct stdio_dev *sdev) |
| 265 | { |
Andy Shevchenko | b672c16 | 2021-02-11 17:09:41 +0200 | [diff] [blame] | 266 | int i; |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 267 | |
| 268 | for (i = 0; i < ARRAY_SIZE(cd_count); i++) { |
| 269 | if (i == file) |
| 270 | continue; |
| 271 | |
Andy Shevchenko | b672c16 | 2021-02-11 17:09:41 +0200 | [diff] [blame] | 272 | if (iomux_match_device(console_devices[i], cd_count[i], sdev) >= 0) |
| 273 | return false; |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 274 | } |
| 275 | return true; |
| 276 | } |
| 277 | |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 278 | /* |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 279 | * This depends on tstc() always being called before getchar(). |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 280 | * This is guaranteed to be true because this routine is called |
| 281 | * only from fgetc() which assures it. |
| 282 | * No attempt is made to demultiplex multiple input sources. |
| 283 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 284 | static int console_getc(int file) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 285 | { |
| 286 | unsigned char ret; |
| 287 | |
| 288 | /* This is never called with testcdev == NULL */ |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 289 | ret = tstcdev->getc(tstcdev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 290 | tstcdev = NULL; |
| 291 | return ret; |
| 292 | } |
| 293 | |
Patrick Delaunay | a17b38c | 2020-12-18 12:46:46 +0100 | [diff] [blame] | 294 | /* Upper layer may have already called tstc(): check the saved result */ |
| 295 | static bool console_has_tstc(void) |
| 296 | { |
| 297 | return !!tstcdev; |
| 298 | } |
| 299 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 300 | static int console_tstc(int file) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 301 | { |
| 302 | int i, ret; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 303 | struct stdio_dev *dev; |
Joe Hershberger | b2f58d8 | 2018-07-02 20:06:48 -0500 | [diff] [blame] | 304 | int prev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 305 | |
Joe Hershberger | b2f58d8 | 2018-07-02 20:06:48 -0500 | [diff] [blame] | 306 | prev = disable_ctrlc(1); |
Andy Shevchenko | 400797c | 2021-02-11 17:09:42 +0200 | [diff] [blame] | 307 | for_each_console_dev(i, file, dev) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 308 | if (dev->tstc != NULL) { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 309 | ret = dev->tstc(dev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 310 | if (ret > 0) { |
| 311 | tstcdev = dev; |
Joe Hershberger | b2f58d8 | 2018-07-02 20:06:48 -0500 | [diff] [blame] | 312 | disable_ctrlc(prev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 313 | return ret; |
| 314 | } |
| 315 | } |
| 316 | } |
Joe Hershberger | b2f58d8 | 2018-07-02 20:06:48 -0500 | [diff] [blame] | 317 | disable_ctrlc(prev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 318 | |
| 319 | return 0; |
| 320 | } |
| 321 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 322 | static void console_putc(int file, const char c) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 323 | { |
| 324 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 325 | struct stdio_dev *dev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 326 | |
Andy Shevchenko | 400797c | 2021-02-11 17:09:42 +0200 | [diff] [blame] | 327 | for_each_console_dev(i, file, dev) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 328 | if (dev->putc != NULL) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 329 | dev->putc(dev, c); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 333 | /** |
| 334 | * console_puts_select() - Output a string to all console devices |
| 335 | * |
| 336 | * @file: File number to output to (e,g, stdout, see stdio.h) |
| 337 | * @serial_only: true to output only to serial, false to output to everything |
| 338 | * else |
| 339 | * @s: String to output |
| 340 | */ |
| 341 | static void console_puts_select(int file, bool serial_only, const char *s) |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 342 | { |
| 343 | int i; |
| 344 | struct stdio_dev *dev; |
| 345 | |
Andy Shevchenko | 400797c | 2021-02-11 17:09:42 +0200 | [diff] [blame] | 346 | for_each_console_dev(i, file, dev) { |
| 347 | bool is_serial = console_dev_is_serial(dev); |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 348 | |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 349 | if (dev->puts && serial_only == is_serial) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 350 | dev->puts(dev, s); |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 351 | } |
| 352 | } |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 353 | |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 354 | void console_puts_select_stderr(bool serial_only, const char *s) |
| 355 | { |
Simon Glass | 4057e27 | 2021-11-19 13:23:47 -0700 | [diff] [blame] | 356 | if (gd->flags & GD_FLG_DEVINIT) |
| 357 | console_puts_select(stderr, serial_only, s); |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 358 | } |
| 359 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 360 | static void console_puts(int file, const char *s) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 361 | { |
| 362 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 363 | struct stdio_dev *dev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 364 | |
Andy Shevchenko | 400797c | 2021-02-11 17:09:42 +0200 | [diff] [blame] | 365 | for_each_console_dev(i, file, dev) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 366 | if (dev->puts != NULL) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 367 | dev->puts(dev, s); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 368 | } |
| 369 | } |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 370 | |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 371 | #ifdef CONFIG_CONSOLE_FLUSH_SUPPORT |
| 372 | static void console_flush(int file) |
| 373 | { |
| 374 | int i; |
| 375 | struct stdio_dev *dev; |
| 376 | |
| 377 | for_each_console_dev(i, file, dev) { |
| 378 | if (dev->flush != NULL) |
| 379 | dev->flush(dev); |
| 380 | } |
| 381 | } |
| 382 | #endif |
| 383 | |
Tom Rini | 5e63c96 | 2019-10-30 09:18:43 -0400 | [diff] [blame] | 384 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 385 | static inline void console_doenv(int file, struct stdio_dev *dev) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 386 | { |
| 387 | iomux_doenv(file, dev->name); |
| 388 | } |
Tom Rini | 5e63c96 | 2019-10-30 09:18:43 -0400 | [diff] [blame] | 389 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 390 | #else |
Patrick Delaunay | 45375ad | 2020-12-18 12:46:44 +0100 | [diff] [blame] | 391 | |
Andy Shevchenko | 09d8f07 | 2021-02-11 17:09:39 +0200 | [diff] [blame] | 392 | static void console_devices_set(int file, struct stdio_dev *dev) |
Patrick Delaunay | 45375ad | 2020-12-18 12:46:44 +0100 | [diff] [blame] | 393 | { |
| 394 | } |
| 395 | |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 396 | static inline bool console_needs_start_stop(int file, struct stdio_dev *sdev) |
| 397 | { |
| 398 | return true; |
| 399 | } |
| 400 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 401 | static inline int console_getc(int file) |
| 402 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 403 | return stdio_devices[file]->getc(stdio_devices[file]); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 404 | } |
| 405 | |
Patrick Delaunay | a17b38c | 2020-12-18 12:46:46 +0100 | [diff] [blame] | 406 | static bool console_has_tstc(void) |
| 407 | { |
| 408 | return false; |
| 409 | } |
| 410 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 411 | static inline int console_tstc(int file) |
| 412 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 413 | return stdio_devices[file]->tstc(stdio_devices[file]); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static inline void console_putc(int file, const char c) |
| 417 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 418 | stdio_devices[file]->putc(stdio_devices[file], c); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 419 | } |
| 420 | |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 421 | void console_puts_select(int file, bool serial_only, const char *s) |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 422 | { |
Simon Glass | 4057e27 | 2021-11-19 13:23:47 -0700 | [diff] [blame] | 423 | if ((gd->flags & GD_FLG_DEVINIT) && |
| 424 | serial_only == console_dev_is_serial(stdio_devices[file])) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 425 | stdio_devices[file]->puts(stdio_devices[file], s); |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 426 | } |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 427 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 428 | static inline void console_puts(int file, const char *s) |
| 429 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 430 | stdio_devices[file]->puts(stdio_devices[file], s); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 431 | } |
| 432 | |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 433 | #ifdef CONFIG_CONSOLE_FLUSH_SUPPORT |
| 434 | static inline void console_flush(int file) |
| 435 | { |
| 436 | if (stdio_devices[file]->flush) |
| 437 | stdio_devices[file]->flush(stdio_devices[file]); |
| 438 | } |
| 439 | #endif |
| 440 | |
Tom Rini | 5e63c96 | 2019-10-30 09:18:43 -0400 | [diff] [blame] | 441 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 442 | static inline void console_doenv(int file, struct stdio_dev *dev) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 443 | { |
| 444 | console_setfile(file, dev); |
| 445 | } |
Tom Rini | 5e63c96 | 2019-10-30 09:18:43 -0400 | [diff] [blame] | 446 | #endif |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 447 | #endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */ |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 448 | |
Andy Shevchenko | 09d8f07 | 2021-02-11 17:09:39 +0200 | [diff] [blame] | 449 | static void __maybe_unused console_setfile_and_devices(int file, struct stdio_dev *dev) |
| 450 | { |
| 451 | console_setfile(file, dev); |
| 452 | console_devices_set(file, dev); |
| 453 | } |
| 454 | |
Andy Shevchenko | 41f668b | 2020-12-21 14:30:00 +0200 | [diff] [blame] | 455 | int console_start(int file, struct stdio_dev *sdev) |
| 456 | { |
| 457 | int error; |
| 458 | |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 459 | if (!console_needs_start_stop(file, sdev)) |
| 460 | return 0; |
| 461 | |
Andy Shevchenko | 41f668b | 2020-12-21 14:30:00 +0200 | [diff] [blame] | 462 | /* Start new device */ |
| 463 | if (sdev->start) { |
| 464 | error = sdev->start(sdev); |
| 465 | /* If it's not started don't use it */ |
| 466 | if (error < 0) |
| 467 | return error; |
| 468 | } |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | void console_stop(int file, struct stdio_dev *sdev) |
| 473 | { |
Andy Shevchenko | 95aaf40 | 2020-12-21 14:30:01 +0200 | [diff] [blame] | 474 | if (!console_needs_start_stop(file, sdev)) |
| 475 | return; |
| 476 | |
Andy Shevchenko | 41f668b | 2020-12-21 14:30:00 +0200 | [diff] [blame] | 477 | if (sdev->stop) |
| 478 | sdev->stop(sdev); |
| 479 | } |
| 480 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 481 | /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/ |
| 482 | |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 483 | int serial_printf(const char *fmt, ...) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 484 | { |
| 485 | va_list args; |
| 486 | uint i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 487 | char printbuffer[CONFIG_SYS_PBSIZE]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 488 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 489 | va_start(args, fmt); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 490 | |
| 491 | /* For this to work, printbuffer must be larger than |
| 492 | * anything we ever want to print. |
| 493 | */ |
Sonny Rao | 068af6f | 2011-10-10 09:22:31 +0000 | [diff] [blame] | 494 | i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 495 | va_end(args); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 496 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 497 | serial_puts(printbuffer); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 498 | return i; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 501 | int fgetc(int file) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 502 | { |
Heinrich Schuchardt | 27380d8 | 2022-10-22 11:32:34 +0200 | [diff] [blame] | 503 | if ((unsigned int)file < MAX_FILES) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 504 | /* |
| 505 | * Effectively poll for input wherever it may be available. |
| 506 | */ |
| 507 | for (;;) { |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 508 | schedule(); |
Patrick Delaunay | a17b38c | 2020-12-18 12:46:46 +0100 | [diff] [blame] | 509 | if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { |
| 510 | /* |
| 511 | * Upper layer may have already called tstc() so |
| 512 | * check for that first. |
| 513 | */ |
| 514 | if (console_has_tstc()) |
| 515 | return console_getc(file); |
| 516 | console_tstc(file); |
| 517 | } else { |
| 518 | if (console_tstc(file)) |
| 519 | return console_getc(file); |
| 520 | } |
| 521 | |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 522 | /* |
| 523 | * If the watchdog must be rate-limited then it should |
| 524 | * already be handled in board-specific code. |
| 525 | */ |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 526 | if (IS_ENABLED(CONFIG_WATCHDOG)) |
| 527 | udelay(1); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 528 | } |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 529 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 530 | |
| 531 | return -1; |
| 532 | } |
| 533 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 534 | int ftstc(int file) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 535 | { |
Heinrich Schuchardt | 27380d8 | 2022-10-22 11:32:34 +0200 | [diff] [blame] | 536 | if ((unsigned int)file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 537 | return console_tstc(file); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 538 | |
| 539 | return -1; |
| 540 | } |
| 541 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 542 | void fputc(int file, const char c) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 543 | { |
Heinrich Schuchardt | 27380d8 | 2022-10-22 11:32:34 +0200 | [diff] [blame] | 544 | if ((unsigned int)file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 545 | console_putc(file, c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 548 | void fputs(int file, const char *s) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 549 | { |
Heinrich Schuchardt | 27380d8 | 2022-10-22 11:32:34 +0200 | [diff] [blame] | 550 | if ((unsigned int)file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 551 | console_puts(file, s); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 554 | #ifdef CONFIG_CONSOLE_FLUSH_SUPPORT |
| 555 | void fflush(int file) |
| 556 | { |
Heinrich Schuchardt | 27380d8 | 2022-10-22 11:32:34 +0200 | [diff] [blame] | 557 | if ((unsigned int)file < MAX_FILES) |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 558 | console_flush(file); |
| 559 | } |
| 560 | #endif |
| 561 | |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 562 | int fprintf(int file, const char *fmt, ...) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 563 | { |
| 564 | va_list args; |
| 565 | uint i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 566 | char printbuffer[CONFIG_SYS_PBSIZE]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 567 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 568 | va_start(args, fmt); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 569 | |
| 570 | /* For this to work, printbuffer must be larger than |
| 571 | * anything we ever want to print. |
| 572 | */ |
Sonny Rao | 068af6f | 2011-10-10 09:22:31 +0000 | [diff] [blame] | 573 | i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 574 | va_end(args); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 575 | |
| 576 | /* Send to desired file */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 577 | fputs(file, printbuffer); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 578 | return i; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/ |
| 582 | |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 583 | int getchar(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 584 | { |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 585 | int ch; |
| 586 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 587 | if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE)) |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 588 | return 0; |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 589 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 590 | if (!gd->have_console) |
| 591 | return 0; |
| 592 | |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 593 | ch = console_record_getc(); |
| 594 | if (ch != -1) |
| 595 | return ch; |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 596 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 597 | if (gd->flags & GD_FLG_DEVINIT) { |
| 598 | /* Get from the standard input */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 599 | return fgetc(stdin); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | /* Send directly to the handler */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 603 | return serial_getc(); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 606 | int tstc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 607 | { |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 608 | if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE)) |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 609 | return 0; |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 610 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 611 | if (!gd->have_console) |
| 612 | return 0; |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 613 | |
| 614 | if (console_record_tstc()) |
| 615 | return 1; |
| 616 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 617 | if (gd->flags & GD_FLG_DEVINIT) { |
| 618 | /* Test the standard input */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 619 | return ftstc(stdin); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | /* Send directly to the handler */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 623 | return serial_tstc(); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 624 | } |
| 625 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 626 | #define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0 |
| 627 | #define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1 |
| 628 | |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 629 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Rasmus Villemoes | cff2963 | 2022-05-03 14:37:39 +0200 | [diff] [blame] | 630 | #define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_VAL(PRE_CON_BUF_SZ)) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 631 | |
| 632 | static void pre_console_putc(const char c) |
| 633 | { |
Simon Glass | 4e6bafa | 2017-06-15 21:37:52 -0600 | [diff] [blame] | 634 | char *buffer; |
| 635 | |
Rasmus Villemoes | 04a20ca | 2022-05-03 15:13:27 +0200 | [diff] [blame] | 636 | if (gd->precon_buf_idx < 0) |
| 637 | return; |
| 638 | |
Rasmus Villemoes | cff2963 | 2022-05-03 14:37:39 +0200 | [diff] [blame] | 639 | buffer = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ)); |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 640 | |
| 641 | buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c; |
Simon Glass | 4e6bafa | 2017-06-15 21:37:52 -0600 | [diff] [blame] | 642 | |
| 643 | unmap_sysmem(buffer); |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 644 | } |
| 645 | |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 646 | static void pre_console_puts(const char *s) |
| 647 | { |
Rasmus Villemoes | 04a20ca | 2022-05-03 15:13:27 +0200 | [diff] [blame] | 648 | if (gd->precon_buf_idx < 0) |
| 649 | return; |
| 650 | |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 651 | while (*s) |
| 652 | pre_console_putc(*s++); |
| 653 | } |
| 654 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 655 | static void print_pre_console_buffer(int flushpoint) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 656 | { |
Rasmus Villemoes | 04a20ca | 2022-05-03 15:13:27 +0200 | [diff] [blame] | 657 | long in = 0, out = 0; |
Rasmus Villemoes | cff2963 | 2022-05-03 14:37:39 +0200 | [diff] [blame] | 658 | char buf_out[CONFIG_VAL(PRE_CON_BUF_SZ) + 1]; |
Simon Glass | 4e6bafa | 2017-06-15 21:37:52 -0600 | [diff] [blame] | 659 | char *buf_in; |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 660 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 661 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 662 | return; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 663 | |
Rasmus Villemoes | cff2963 | 2022-05-03 14:37:39 +0200 | [diff] [blame] | 664 | buf_in = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ)); |
| 665 | if (gd->precon_buf_idx > CONFIG_VAL(PRE_CON_BUF_SZ)) |
| 666 | in = gd->precon_buf_idx - CONFIG_VAL(PRE_CON_BUF_SZ); |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 667 | |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 668 | while (in < gd->precon_buf_idx) |
| 669 | buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)]; |
Simon Glass | 4e6bafa | 2017-06-15 21:37:52 -0600 | [diff] [blame] | 670 | unmap_sysmem(buf_in); |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 671 | |
| 672 | buf_out[out] = 0; |
| 673 | |
Rasmus Villemoes | 04a20ca | 2022-05-03 15:13:27 +0200 | [diff] [blame] | 674 | gd->precon_buf_idx = -1; |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 675 | switch (flushpoint) { |
| 676 | case PRE_CONSOLE_FLUSHPOINT1_SERIAL: |
| 677 | puts(buf_out); |
| 678 | break; |
| 679 | case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL: |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 680 | console_puts_select(stdout, false, buf_out); |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 681 | break; |
| 682 | } |
Rasmus Villemoes | 04a20ca | 2022-05-03 15:13:27 +0200 | [diff] [blame] | 683 | gd->precon_buf_idx = in; |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 684 | } |
| 685 | #else |
| 686 | static inline void pre_console_putc(const char c) {} |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 687 | static inline void pre_console_puts(const char *s) {} |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 688 | static inline void print_pre_console_buffer(int flushpoint) {} |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 689 | #endif |
| 690 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 691 | void putc(const char c) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 692 | { |
Patrick Delaunay | 93cdb52 | 2020-11-27 11:20:56 +0100 | [diff] [blame] | 693 | if (!gd) |
| 694 | return; |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 695 | |
| 696 | console_record_putc(c); |
| 697 | |
Simon Glass | 64e9b4f | 2017-12-04 13:48:19 -0700 | [diff] [blame] | 698 | /* sandbox can send characters to stdout before it has a console */ |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 699 | if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) { |
Simon Glass | 64e9b4f | 2017-12-04 13:48:19 -0700 | [diff] [blame] | 700 | os_putc(c); |
| 701 | return; |
| 702 | } |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 703 | |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 704 | /* if we don't have a console yet, use the debug UART */ |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 705 | if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) { |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 706 | printch(c); |
| 707 | return; |
| 708 | } |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 709 | |
| 710 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) { |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 711 | if (!(gd->flags & GD_FLG_DEVINIT)) |
| 712 | pre_console_putc(c); |
wdenk | f6e20fc | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 713 | return; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 714 | } |
wdenk | a6cccae | 2004-02-06 21:48:22 +0000 | [diff] [blame] | 715 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 716 | if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE)) |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 717 | return; |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 718 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 719 | if (!gd->have_console) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 720 | return pre_console_putc(c); |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 721 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 722 | if (gd->flags & GD_FLG_DEVINIT) { |
| 723 | /* Send to the standard output */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 724 | fputc(stdout, c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 725 | } else { |
| 726 | /* Send directly to the handler */ |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 727 | pre_console_putc(c); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 728 | serial_putc(c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 729 | } |
| 730 | } |
| 731 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 732 | void puts(const char *s) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 733 | { |
Patrick Delaunay | 93cdb52 | 2020-11-27 11:20:56 +0100 | [diff] [blame] | 734 | if (!gd) |
| 735 | return; |
Patrick Delaunay | 1e99371 | 2020-12-18 12:46:45 +0100 | [diff] [blame] | 736 | |
| 737 | console_record_puts(s); |
| 738 | |
Simon Glass | 36bcea6 | 2018-11-15 18:44:04 -0700 | [diff] [blame] | 739 | /* sandbox can send characters to stdout before it has a console */ |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 740 | if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) { |
Simon Glass | 36bcea6 | 2018-11-15 18:44:04 -0700 | [diff] [blame] | 741 | os_puts(s); |
| 742 | return; |
| 743 | } |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 744 | |
| 745 | if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) { |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 746 | while (*s) { |
| 747 | int ch = *s++; |
| 748 | |
| 749 | printch(ch); |
| 750 | } |
| 751 | return; |
| 752 | } |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 753 | |
| 754 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) { |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 755 | if (!(gd->flags & GD_FLG_DEVINIT)) |
| 756 | pre_console_puts(s); |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 757 | return; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 758 | } |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 759 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 760 | if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE)) |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 761 | return; |
Soeren Moch | be135cc | 2017-11-04 16:14:09 +0100 | [diff] [blame] | 762 | |
| 763 | if (!gd->have_console) |
| 764 | return pre_console_puts(s); |
| 765 | |
| 766 | if (gd->flags & GD_FLG_DEVINIT) { |
| 767 | /* Send to the standard output */ |
| 768 | fputs(stdout, s); |
| 769 | } else { |
| 770 | /* Send directly to the handler */ |
| 771 | pre_console_puts(s); |
| 772 | serial_puts(s); |
| 773 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 774 | } |
| 775 | |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 776 | #ifdef CONFIG_CONSOLE_FLUSH_SUPPORT |
| 777 | void flush(void) |
| 778 | { |
| 779 | if (!gd) |
| 780 | return; |
| 781 | |
| 782 | /* sandbox can send characters to stdout before it has a console */ |
| 783 | if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) { |
| 784 | os_flush(); |
| 785 | return; |
| 786 | } |
| 787 | |
| 788 | if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) |
| 789 | return; |
| 790 | |
| 791 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) |
| 792 | return; |
| 793 | |
| 794 | if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE)) |
| 795 | return; |
| 796 | |
| 797 | if (!gd->have_console) |
| 798 | return; |
| 799 | |
| 800 | if (gd->flags & GD_FLG_DEVINIT) { |
| 801 | /* Send to the standard output */ |
| 802 | fflush(stdout); |
Pali Rohár | 78b5243 | 2022-09-05 11:31:19 +0200 | [diff] [blame] | 803 | } else { |
| 804 | /* Send directly to the handler */ |
| 805 | serial_flush(); |
Pali Rohár | 974f483 | 2022-09-05 11:31:17 +0200 | [diff] [blame] | 806 | } |
| 807 | } |
| 808 | #endif |
| 809 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 810 | #ifdef CONFIG_CONSOLE_RECORD |
| 811 | int console_record_init(void) |
| 812 | { |
| 813 | int ret; |
| 814 | |
Heinrich Schuchardt | a3a9e04 | 2020-02-12 18:23:49 +0100 | [diff] [blame] | 815 | ret = membuff_new((struct membuff *)&gd->console_out, |
Simon Glass | 8ce465e | 2021-10-23 17:26:03 -0600 | [diff] [blame] | 816 | gd->flags & GD_FLG_RELOC ? |
| 817 | CONFIG_CONSOLE_RECORD_OUT_SIZE : |
| 818 | CONFIG_CONSOLE_RECORD_OUT_SIZE_F); |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 819 | if (ret) |
| 820 | return ret; |
Heinrich Schuchardt | a3a9e04 | 2020-02-12 18:23:49 +0100 | [diff] [blame] | 821 | ret = membuff_new((struct membuff *)&gd->console_in, |
| 822 | CONFIG_CONSOLE_RECORD_IN_SIZE); |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 823 | |
Ion Agorria | 90087dd | 2024-01-05 09:22:09 +0200 | [diff] [blame] | 824 | /* Start recording from the beginning */ |
| 825 | gd->flags |= GD_FLG_RECORD; |
| 826 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 827 | return ret; |
| 828 | } |
| 829 | |
| 830 | void console_record_reset(void) |
| 831 | { |
Heinrich Schuchardt | a3a9e04 | 2020-02-12 18:23:49 +0100 | [diff] [blame] | 832 | membuff_purge((struct membuff *)&gd->console_out); |
| 833 | membuff_purge((struct membuff *)&gd->console_in); |
Simon Glass | c1a2bb4 | 2021-05-08 06:59:56 -0600 | [diff] [blame] | 834 | gd->flags &= ~GD_FLG_RECORD_OVF; |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 835 | } |
| 836 | |
Simon Glass | bd34715 | 2020-07-28 19:41:11 -0600 | [diff] [blame] | 837 | int console_record_reset_enable(void) |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 838 | { |
| 839 | console_record_reset(); |
| 840 | gd->flags |= GD_FLG_RECORD; |
Simon Glass | bd34715 | 2020-07-28 19:41:11 -0600 | [diff] [blame] | 841 | |
| 842 | return 0; |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 843 | } |
Simon Glass | b612312 | 2020-01-27 08:49:54 -0700 | [diff] [blame] | 844 | |
| 845 | int console_record_readline(char *str, int maxlen) |
| 846 | { |
Simon Glass | c1a2bb4 | 2021-05-08 06:59:56 -0600 | [diff] [blame] | 847 | if (gd->flags & GD_FLG_RECORD_OVF) |
| 848 | return -ENOSPC; |
| 849 | |
Heinrich Schuchardt | a3a9e04 | 2020-02-12 18:23:49 +0100 | [diff] [blame] | 850 | return membuff_readline((struct membuff *)&gd->console_out, str, |
Ion Agorria | e58bafc | 2024-01-05 09:22:10 +0200 | [diff] [blame] | 851 | maxlen, '\0', false); |
Simon Glass | b612312 | 2020-01-27 08:49:54 -0700 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | int console_record_avail(void) |
| 855 | { |
Heinrich Schuchardt | a3a9e04 | 2020-02-12 18:23:49 +0100 | [diff] [blame] | 856 | return membuff_avail((struct membuff *)&gd->console_out); |
Simon Glass | b612312 | 2020-01-27 08:49:54 -0700 | [diff] [blame] | 857 | } |
| 858 | |
Ion Agorria | 9ce75f4 | 2024-01-05 09:22:08 +0200 | [diff] [blame] | 859 | bool console_record_isempty(void) |
| 860 | { |
| 861 | return membuff_isempty((struct membuff *)&gd->console_out); |
| 862 | } |
| 863 | |
Steffen Jaeckel | 25c8b9f | 2021-07-08 15:57:40 +0200 | [diff] [blame] | 864 | int console_in_puts(const char *str) |
| 865 | { |
| 866 | return membuff_put((struct membuff *)&gd->console_in, str, strlen(str)); |
| 867 | } |
| 868 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 869 | #endif |
| 870 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 871 | /* test if ctrl-c was pressed */ |
| 872 | static int ctrlc_disabled = 0; /* see disable_ctrl() */ |
| 873 | static int ctrlc_was_pressed = 0; |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 874 | int ctrlc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 875 | { |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 876 | if (!ctrlc_disabled && gd->have_console) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 877 | if (tstc()) { |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 878 | switch (getchar()) { |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 879 | case 0x03: /* ^C - Control C */ |
| 880 | ctrlc_was_pressed = 1; |
| 881 | return 1; |
| 882 | default: |
| 883 | break; |
| 884 | } |
| 885 | } |
| 886 | } |
Simon Glass | 8969ea3 | 2014-09-14 12:40:15 -0600 | [diff] [blame] | 887 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 888 | return 0; |
| 889 | } |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 890 | /* Reads user's confirmation. |
| 891 | Returns 1 if user's input is "y", "Y", "yes" or "YES" |
| 892 | */ |
| 893 | int confirm_yesno(void) |
| 894 | { |
| 895 | int i; |
| 896 | char str_input[5]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 897 | |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 898 | /* Flush input */ |
| 899 | while (tstc()) |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 900 | getchar(); |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 901 | i = 0; |
| 902 | while (i < sizeof(str_input)) { |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 903 | str_input[i] = getchar(); |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 904 | putc(str_input[i]); |
| 905 | if (str_input[i] == '\r') |
| 906 | break; |
| 907 | i++; |
| 908 | } |
| 909 | putc('\n'); |
| 910 | if (strncmp(str_input, "y\r", 2) == 0 || |
| 911 | strncmp(str_input, "Y\r", 2) == 0 || |
| 912 | strncmp(str_input, "yes\r", 4) == 0 || |
| 913 | strncmp(str_input, "YES\r", 4) == 0) |
| 914 | return 1; |
| 915 | return 0; |
| 916 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 917 | /* pass 1 to disable ctrlc() checking, 0 to enable. |
| 918 | * returns previous state |
| 919 | */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 920 | int disable_ctrlc(int disable) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 921 | { |
| 922 | int prev = ctrlc_disabled; /* save previous state */ |
| 923 | |
| 924 | ctrlc_disabled = disable; |
| 925 | return prev; |
| 926 | } |
| 927 | |
| 928 | int had_ctrlc (void) |
| 929 | { |
| 930 | return ctrlc_was_pressed; |
| 931 | } |
| 932 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 933 | void clear_ctrlc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 934 | { |
| 935 | ctrlc_was_pressed = 0; |
| 936 | } |
| 937 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 938 | /** U-Boot INIT FUNCTIONS *************************************************/ |
| 939 | |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 940 | struct stdio_dev *console_search_dev(int flags, const char *name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 941 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 942 | struct stdio_dev *dev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 943 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 944 | dev = stdio_get_by_name(name); |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 945 | #ifdef CONFIG_VIDCONSOLE_AS_LCD |
Patrick Delaunay | 27b5b9e | 2020-07-01 14:56:10 +0200 | [diff] [blame] | 946 | if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME)) |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 947 | dev = stdio_get_by_name("vidconsole"); |
| 948 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 949 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 950 | if (dev && (dev->flags & flags)) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 951 | return dev; |
| 952 | |
| 953 | return NULL; |
| 954 | } |
| 955 | |
Mike Frysinger | d7be305 | 2010-10-20 07:18:03 -0400 | [diff] [blame] | 956 | int console_assign(int file, const char *devname) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 957 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 958 | int flag; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 959 | struct stdio_dev *dev; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 960 | |
| 961 | /* Check for valid file */ |
Andy Shevchenko | 7b9ca3f | 2021-02-11 17:09:37 +0200 | [diff] [blame] | 962 | flag = stdio_file_to_flags(file); |
| 963 | if (flag < 0) |
| 964 | return flag; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 965 | |
| 966 | /* Check for valid device name */ |
| 967 | |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 968 | dev = console_search_dev(flag, devname); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 969 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 970 | if (dev) |
| 971 | return console_setfile(file, dev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 972 | |
| 973 | return -1; |
| 974 | } |
| 975 | |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 976 | /* return true if the 'silent' flag is removed */ |
| 977 | static bool console_update_silent(void) |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 978 | { |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 979 | unsigned long flags = gd->flags; |
| 980 | |
| 981 | if (!IS_ENABLED(CONFIG_SILENT_CONSOLE)) |
| 982 | return false; |
| 983 | |
Harald Seiler | 33965c7 | 2022-07-06 13:19:10 +0200 | [diff] [blame] | 984 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE_UNTIL_ENV) && !(gd->flags & GD_FLG_ENV_READY)) { |
| 985 | gd->flags |= GD_FLG_SILENT; |
| 986 | return false; |
| 987 | } |
| 988 | |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 989 | if (env_get("silent")) { |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 990 | gd->flags |= GD_FLG_SILENT; |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 991 | return false; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 992 | } |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 993 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 994 | gd->flags &= ~GD_FLG_SILENT; |
| 995 | |
| 996 | return !!(flags & GD_FLG_SILENT); |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 997 | } |
| 998 | |
Simon Glass | b089538 | 2017-06-15 21:37:50 -0600 | [diff] [blame] | 999 | int console_announce_r(void) |
| 1000 | { |
| 1001 | #if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
| 1002 | char buf[DISPLAY_OPTIONS_BANNER_LENGTH]; |
| 1003 | |
| 1004 | display_options_get_banner(false, buf, sizeof(buf)); |
| 1005 | |
Simon Glass | 493a4c8 | 2020-07-02 21:12:13 -0600 | [diff] [blame] | 1006 | console_puts_select(stdout, false, buf); |
Simon Glass | b089538 | 2017-06-15 21:37:50 -0600 | [diff] [blame] | 1007 | #endif |
| 1008 | |
| 1009 | return 0; |
| 1010 | } |
| 1011 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1012 | /* Called before relocation - use serial functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1013 | int console_init_f(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1014 | { |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1015 | gd->have_console = 1; |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 1016 | |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 1017 | console_update_silent(); |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 1018 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 1019 | print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL); |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 1020 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1021 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1022 | } |
| 1023 | |
Simon Glass | cde03fa | 2023-10-01 19:15:23 -0600 | [diff] [blame] | 1024 | int console_clear(void) |
| 1025 | { |
| 1026 | /* |
| 1027 | * Send clear screen and home |
| 1028 | * |
| 1029 | * FIXME(Heinrich Schuchardt <xypron.glpk@gmx.de>): This should go |
| 1030 | * through an API and only be written to serial terminals, not video |
| 1031 | * displays |
| 1032 | */ |
| 1033 | printf(CSI "2J" CSI "1;1H"); |
| 1034 | if (IS_ENABLED(CONFIG_VIDEO_ANSI)) |
| 1035 | return 0; |
| 1036 | |
| 1037 | if (IS_ENABLED(CONFIG_VIDEO)) { |
| 1038 | struct udevice *dev; |
| 1039 | int ret; |
| 1040 | |
| 1041 | ret = uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev); |
| 1042 | if (ret) |
| 1043 | return ret; |
| 1044 | ret = vidconsole_clear_and_reset(dev); |
| 1045 | if (ret) |
| 1046 | return ret; |
| 1047 | } |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
Patrice Chotard | 9152a51 | 2024-01-17 13:37:13 +0100 | [diff] [blame] | 1052 | static char *get_stdio(const u8 std) |
| 1053 | { |
| 1054 | return stdio_devices[std] ? stdio_devices[std]->name : "No devices available!"; |
| 1055 | } |
| 1056 | |
Bin Meng | 75bfc6f | 2023-07-23 12:40:35 +0800 | [diff] [blame] | 1057 | static void stdio_print_current_devices(void) |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 1058 | { |
Patrice Chotard | 9152a51 | 2024-01-17 13:37:13 +0100 | [diff] [blame] | 1059 | char *stdinname = NULL; |
| 1060 | char *stdoutname = NULL; |
| 1061 | char *stderrname = NULL; |
Bin Meng | f30fd55 | 2023-07-23 12:40:36 +0800 | [diff] [blame] | 1062 | |
Bin Meng | 6b343ab | 2023-07-23 12:40:37 +0800 | [diff] [blame] | 1063 | if (CONFIG_IS_ENABLED(CONSOLE_MUX) && |
| 1064 | CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)) { |
| 1065 | /* stdin stdout and stderr are in environment */ |
| 1066 | stdinname = env_get("stdin"); |
| 1067 | stdoutname = env_get("stdout"); |
| 1068 | stderrname = env_get("stderr"); |
Bin Meng | 6b343ab | 2023-07-23 12:40:37 +0800 | [diff] [blame] | 1069 | } |
Bin Meng | f30fd55 | 2023-07-23 12:40:36 +0800 | [diff] [blame] | 1070 | |
Patrice Chotard | 9152a51 | 2024-01-17 13:37:13 +0100 | [diff] [blame] | 1071 | stdinname = stdinname ? : get_stdio(stdin); |
| 1072 | stdoutname = stdoutname ? : get_stdio(stdout); |
| 1073 | stderrname = stderrname ? : get_stdio(stderr); |
| 1074 | |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 1075 | /* Print information */ |
| 1076 | puts("In: "); |
Bin Meng | f30fd55 | 2023-07-23 12:40:36 +0800 | [diff] [blame] | 1077 | printf("%s\n", stdinname); |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 1078 | |
| 1079 | puts("Out: "); |
Bin Meng | f30fd55 | 2023-07-23 12:40:36 +0800 | [diff] [blame] | 1080 | printf("%s\n", stdoutname); |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 1081 | |
| 1082 | puts("Err: "); |
Bin Meng | f30fd55 | 2023-07-23 12:40:36 +0800 | [diff] [blame] | 1083 | printf("%s\n", stderrname); |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 1084 | } |
| 1085 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 1086 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1087 | /* Called after the relocation - use desired console functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1088 | int console_init_r(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1089 | { |
| 1090 | char *stdinname, *stdoutname, *stderrname; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 1091 | struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL; |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 1092 | int i; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1093 | int iomux_err = 0; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1094 | int flushpoint; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1095 | |
Patrick Delaunay | bf46be7 | 2019-08-02 14:58:09 +0200 | [diff] [blame] | 1096 | /* update silent for env loaded from flash (initr_env) */ |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1097 | if (console_update_silent()) |
| 1098 | flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL; |
| 1099 | else |
| 1100 | flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL; |
Patrick Delaunay | bf46be7 | 2019-08-02 14:58:09 +0200 | [diff] [blame] | 1101 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1102 | /* set default handlers at first */ |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 1103 | gd->jt->getc = serial_getc; |
| 1104 | gd->jt->tstc = serial_tstc; |
| 1105 | gd->jt->putc = serial_putc; |
| 1106 | gd->jt->puts = serial_puts; |
| 1107 | gd->jt->printf = serial_printf; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1108 | |
| 1109 | /* stdin stdout and stderr are in environment */ |
| 1110 | /* scan for it */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 1111 | stdinname = env_get("stdin"); |
| 1112 | stdoutname = env_get("stdout"); |
| 1113 | stderrname = env_get("stderr"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1114 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1115 | if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */ |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 1116 | inputdev = console_search_dev(DEV_FLAGS_INPUT, stdinname); |
| 1117 | outputdev = console_search_dev(DEV_FLAGS_OUTPUT, stdoutname); |
| 1118 | errdev = console_search_dev(DEV_FLAGS_OUTPUT, stderrname); |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 1119 | if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { |
| 1120 | iomux_err = iomux_doenv(stdin, stdinname); |
| 1121 | iomux_err += iomux_doenv(stdout, stdoutname); |
| 1122 | iomux_err += iomux_doenv(stderr, stderrname); |
| 1123 | if (!iomux_err) |
| 1124 | /* Successful, so skip all the code below. */ |
| 1125 | goto done; |
| 1126 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1127 | } |
| 1128 | /* if the devices are overwritten or not found, use default device */ |
| 1129 | if (inputdev == NULL) { |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 1130 | inputdev = console_search_dev(DEV_FLAGS_INPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1131 | } |
| 1132 | if (outputdev == NULL) { |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 1133 | outputdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1134 | } |
| 1135 | if (errdev == NULL) { |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 1136 | errdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1137 | } |
| 1138 | /* Initializes output console first */ |
| 1139 | if (outputdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1140 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 1141 | console_doenv(stdout, outputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1142 | } |
| 1143 | if (errdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1144 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 1145 | console_doenv(stderr, errdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1146 | } |
| 1147 | if (inputdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1148 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 1149 | console_doenv(stdin, inputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1152 | done: |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 1153 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 1154 | if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET)) |
| 1155 | stdio_print_current_devices(); |
| 1156 | |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 1157 | #ifdef CONFIG_VIDCONSOLE_AS_LCD |
Patrick Delaunay | 27b5b9e | 2020-07-01 14:56:10 +0200 | [diff] [blame] | 1158 | if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME)) |
Anatolij Gustschin | 22b897a | 2020-05-23 17:11:20 +0200 | [diff] [blame] | 1159 | printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n", |
Patrick Delaunay | 27b5b9e | 2020-07-01 14:56:10 +0200 | [diff] [blame] | 1160 | CONFIG_VIDCONSOLE_AS_NAME); |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 1161 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1162 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 1163 | if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) { |
| 1164 | /* set the environment variables (will overwrite previous env settings) */ |
| 1165 | for (i = 0; i < MAX_FILES; i++) |
| 1166 | env_set(stdio_names[i], stdio_devices[i]->name); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1167 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1168 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 1169 | gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */ |
| 1170 | |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1171 | print_pre_console_buffer(flushpoint); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1172 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 1175 | #else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1176 | |
| 1177 | /* Called after the relocation - use desired console functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1178 | int console_init_r(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1179 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 1180 | struct stdio_dev *inputdev = NULL, *outputdev = NULL; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 1181 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 1182 | struct list_head *list = stdio_get_list(); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 1183 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 1184 | struct stdio_dev *dev; |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1185 | int flushpoint; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1186 | |
Patrick Delaunay | bf46be7 | 2019-08-02 14:58:09 +0200 | [diff] [blame] | 1187 | /* update silent for env loaded from flash (initr_env) */ |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1188 | if (console_update_silent()) |
| 1189 | flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL; |
| 1190 | else |
| 1191 | flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL; |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 1192 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1193 | /* |
| 1194 | * suppress all output if splash screen is enabled and we have |
Anatolij Gustschin | a749081 | 2010-03-16 15:29:33 +0100 | [diff] [blame] | 1195 | * a bmp to display. We redirect the output from frame buffer |
| 1196 | * console to serial console in this case or suppress it if |
| 1197 | * "silent" mode was requested. |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1198 | */ |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 1199 | if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) { |
Anatolij Gustschin | a749081 | 2010-03-16 15:29:33 +0100 | [diff] [blame] | 1200 | if (!(gd->flags & GD_FLG_SILENT)) |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 1201 | outputdev = console_search_dev (DEV_FLAGS_OUTPUT, "serial"); |
Anatolij Gustschin | a749081 | 2010-03-16 15:29:33 +0100 | [diff] [blame] | 1202 | } |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 1203 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1204 | /* Scan devices looking for input and output devices */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 1205 | list_for_each(pos, list) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 1206 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1207 | |
| 1208 | if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) { |
| 1209 | inputdev = dev; |
| 1210 | } |
| 1211 | if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) { |
| 1212 | outputdev = dev; |
| 1213 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 1214 | if(inputdev && outputdev) |
| 1215 | break; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1216 | } |
| 1217 | |
| 1218 | /* Initializes output console first */ |
| 1219 | if (outputdev != NULL) { |
Andy Shevchenko | 09d8f07 | 2021-02-11 17:09:39 +0200 | [diff] [blame] | 1220 | console_setfile_and_devices(stdout, outputdev); |
| 1221 | console_setfile_and_devices(stderr, outputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
| 1224 | /* Initializes input console */ |
Andy Shevchenko | 09d8f07 | 2021-02-11 17:09:39 +0200 | [diff] [blame] | 1225 | if (inputdev != NULL) |
| 1226 | console_setfile_and_devices(stdin, inputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1227 | |
Patrick Delaunay | c04f856 | 2020-12-18 12:46:43 +0100 | [diff] [blame] | 1228 | if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET)) |
| 1229 | stdio_print_current_devices(); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1230 | |
| 1231 | /* Setting environment variables */ |
Tom Rini | 27b4225 | 2018-05-03 09:12:26 -0400 | [diff] [blame] | 1232 | for (i = 0; i < MAX_FILES; i++) { |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 1233 | env_set(stdio_names[i], stdio_devices[i]->name); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1234 | } |
| 1235 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 1236 | gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */ |
| 1237 | |
Patrick Delaunay | 13551b9 | 2019-08-02 14:58:10 +0200 | [diff] [blame] | 1238 | print_pre_console_buffer(flushpoint); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 1239 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1240 | } |
| 1241 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 1242 | #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |