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