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