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