wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 3 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 9 | #include <console.h> |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 10 | #include <debug_uart.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 11 | #include <stdarg.h> |
Jeroen Hofstee | 482f469 | 2014-10-08 22:57:48 +0200 | [diff] [blame] | 12 | #include <iomux.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 14 | #include <os.h> |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 15 | #include <serial.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 16 | #include <stdio_dev.h> |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 17 | #include <exports.h> |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 18 | #include <environment.h> |
Andreas J. Reichel | 6440746 | 2016-07-13 12:56:51 +0200 | [diff] [blame] | 19 | #include <watchdog.h> |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 20 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 23 | static int on_console(const char *name, const char *value, enum env_op op, |
| 24 | int flags) |
| 25 | { |
| 26 | int console = -1; |
| 27 | |
| 28 | /* Check for console redirection */ |
| 29 | if (strcmp(name, "stdin") == 0) |
| 30 | console = stdin; |
| 31 | else if (strcmp(name, "stdout") == 0) |
| 32 | console = stdout; |
| 33 | else if (strcmp(name, "stderr") == 0) |
| 34 | console = stderr; |
| 35 | |
| 36 | /* if not actually setting a console variable, we don't care */ |
| 37 | if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0) |
| 38 | return 0; |
| 39 | |
| 40 | switch (op) { |
| 41 | case env_op_create: |
| 42 | case env_op_overwrite: |
| 43 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 44 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 45 | if (iomux_doenv(console, value)) |
| 46 | return 1; |
| 47 | #else |
| 48 | /* Try assigning specified device */ |
| 49 | if (console_assign(console, value) < 0) |
| 50 | return 1; |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 51 | #endif |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 52 | return 0; |
| 53 | |
| 54 | case env_op_delete: |
| 55 | if ((flags & H_FORCE) == 0) |
| 56 | printf("Can't delete \"%s\"\n", name); |
| 57 | return 1; |
| 58 | |
| 59 | default: |
| 60 | return 0; |
| 61 | } |
| 62 | } |
| 63 | U_BOOT_ENV_CALLBACK(console, on_console); |
| 64 | |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 65 | #ifdef CONFIG_SILENT_CONSOLE |
| 66 | static int on_silent(const char *name, const char *value, enum env_op op, |
| 67 | int flags) |
| 68 | { |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 69 | #if !CONFIG_IS_ENABLED(CONFIG_SILENT_CONSOLE_UPDATE_ON_SET) |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 70 | if (flags & H_INTERACTIVE) |
| 71 | return 0; |
| 72 | #endif |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 73 | #if !CONFIG_IS_ENABLED(CONFIG_SILENT_CONSOLE_UPDATE_ON_RELOC) |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 74 | if ((flags & H_INTERACTIVE) == 0) |
| 75 | return 0; |
| 76 | #endif |
| 77 | |
| 78 | if (value != NULL) |
| 79 | gd->flags |= GD_FLG_SILENT; |
| 80 | else |
| 81 | gd->flags &= ~GD_FLG_SILENT; |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | U_BOOT_ENV_CALLBACK(silent, on_silent); |
| 86 | #endif |
| 87 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 88 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 89 | /* |
| 90 | * if overwrite_console returns 1, the stdin, stderr and stdout |
| 91 | * are switched to the serial port, else the settings in the |
| 92 | * environment are used |
| 93 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 95 | extern int overwrite_console(void); |
| 96 | #define OVERWRITE_CONSOLE overwrite_console() |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 97 | #else |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 98 | #define OVERWRITE_CONSOLE 0 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 99 | #endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 100 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 101 | #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 102 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 103 | static int console_setfile(int file, struct stdio_dev * dev) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 104 | { |
| 105 | int error = 0; |
| 106 | |
| 107 | if (dev == NULL) |
| 108 | return -1; |
| 109 | |
| 110 | switch (file) { |
| 111 | case stdin: |
| 112 | case stdout: |
| 113 | case stderr: |
| 114 | /* Start new device */ |
| 115 | if (dev->start) { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 116 | error = dev->start(dev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 117 | /* If it's not started dont use it */ |
| 118 | if (error < 0) |
| 119 | break; |
| 120 | } |
| 121 | |
| 122 | /* Assign the new device (leaving the existing one started) */ |
| 123 | stdio_devices[file] = dev; |
| 124 | |
| 125 | /* |
| 126 | * Update monitor functions |
| 127 | * (to use the console stuff by other applications) |
| 128 | */ |
| 129 | switch (file) { |
| 130 | case stdin: |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 131 | gd->jt->getc = getc; |
| 132 | gd->jt->tstc = tstc; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 133 | break; |
| 134 | case stdout: |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 135 | gd->jt->putc = putc; |
| 136 | gd->jt->puts = puts; |
| 137 | gd->jt->printf = printf; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 138 | break; |
| 139 | } |
| 140 | break; |
| 141 | |
| 142 | default: /* Invalid file ID */ |
| 143 | error = -1; |
| 144 | } |
| 145 | return error; |
| 146 | } |
| 147 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 148 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 149 | /** Console I/O multiplexing *******************************************/ |
| 150 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 151 | static struct stdio_dev *tstcdev; |
| 152 | struct stdio_dev **console_devices[MAX_FILES]; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 153 | int cd_count[MAX_FILES]; |
| 154 | |
| 155 | /* |
| 156 | * This depends on tstc() always being called before getc(). |
| 157 | * This is guaranteed to be true because this routine is called |
| 158 | * only from fgetc() which assures it. |
| 159 | * No attempt is made to demultiplex multiple input sources. |
| 160 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 161 | static int console_getc(int file) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 162 | { |
| 163 | unsigned char ret; |
| 164 | |
| 165 | /* This is never called with testcdev == NULL */ |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 166 | ret = tstcdev->getc(tstcdev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 167 | tstcdev = NULL; |
| 168 | return ret; |
| 169 | } |
| 170 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 171 | static int console_tstc(int file) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 172 | { |
| 173 | int i, ret; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 174 | struct stdio_dev *dev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 175 | |
| 176 | disable_ctrlc(1); |
| 177 | for (i = 0; i < cd_count[file]; i++) { |
| 178 | dev = console_devices[file][i]; |
| 179 | if (dev->tstc != NULL) { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 180 | ret = dev->tstc(dev); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 181 | if (ret > 0) { |
| 182 | tstcdev = dev; |
| 183 | disable_ctrlc(0); |
| 184 | return ret; |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | disable_ctrlc(0); |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 193 | static void console_putc(int file, const char c) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 194 | { |
| 195 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 196 | struct stdio_dev *dev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 197 | |
| 198 | for (i = 0; i < cd_count[file]; i++) { |
| 199 | dev = console_devices[file][i]; |
| 200 | if (dev->putc != NULL) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 201 | dev->putc(dev, c); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 205 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 206 | static void console_puts_noserial(int file, const char *s) |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 207 | { |
| 208 | int i; |
| 209 | struct stdio_dev *dev; |
| 210 | |
| 211 | for (i = 0; i < cd_count[file]; i++) { |
| 212 | dev = console_devices[file][i]; |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 213 | if (dev->puts != NULL && strcmp(dev->name, "serial") != 0) |
| 214 | dev->puts(dev, s); |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 215 | } |
| 216 | } |
| 217 | #endif |
| 218 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 219 | static void console_puts(int file, const char *s) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 220 | { |
| 221 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 222 | struct stdio_dev *dev; |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 223 | |
| 224 | for (i = 0; i < cd_count[file]; i++) { |
| 225 | dev = console_devices[file][i]; |
| 226 | if (dev->puts != NULL) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 227 | dev->puts(dev, s); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 228 | } |
| 229 | } |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 230 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 231 | 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] | 232 | { |
| 233 | iomux_doenv(file, dev->name); |
| 234 | } |
| 235 | #else |
| 236 | static inline int console_getc(int file) |
| 237 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 238 | return stdio_devices[file]->getc(stdio_devices[file]); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static inline int console_tstc(int file) |
| 242 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 243 | return stdio_devices[file]->tstc(stdio_devices[file]); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static inline void console_putc(int file, const char c) |
| 247 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 248 | stdio_devices[file]->putc(stdio_devices[file], c); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 251 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 252 | static inline void console_puts_noserial(int file, const char *s) |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 253 | { |
| 254 | if (strcmp(stdio_devices[file]->name, "serial") != 0) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 255 | stdio_devices[file]->puts(stdio_devices[file], s); |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 256 | } |
| 257 | #endif |
| 258 | |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 259 | static inline void console_puts(int file, const char *s) |
| 260 | { |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 261 | stdio_devices[file]->puts(stdio_devices[file], s); |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 262 | } |
| 263 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 264 | 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] | 265 | { |
| 266 | console_setfile(file, dev); |
| 267 | } |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 268 | #endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */ |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 269 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 270 | /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/ |
| 271 | |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 272 | int serial_printf(const char *fmt, ...) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 273 | { |
| 274 | va_list args; |
| 275 | uint i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 276 | char printbuffer[CONFIG_SYS_PBSIZE]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 277 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 278 | va_start(args, fmt); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 279 | |
| 280 | /* For this to work, printbuffer must be larger than |
| 281 | * anything we ever want to print. |
| 282 | */ |
Sonny Rao | 068af6f | 2011-10-10 09:22:31 +0000 | [diff] [blame] | 283 | i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 284 | va_end(args); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 285 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 286 | serial_puts(printbuffer); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 287 | return i; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 290 | int fgetc(int file) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 291 | { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 292 | if (file < MAX_FILES) { |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 293 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 294 | /* |
| 295 | * Effectively poll for input wherever it may be available. |
| 296 | */ |
| 297 | for (;;) { |
Andreas J. Reichel | 6440746 | 2016-07-13 12:56:51 +0200 | [diff] [blame] | 298 | WATCHDOG_RESET(); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 299 | /* |
| 300 | * Upper layer may have already called tstc() so |
| 301 | * check for that first. |
| 302 | */ |
| 303 | if (tstcdev != NULL) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 304 | return console_getc(file); |
| 305 | console_tstc(file); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 306 | #ifdef CONFIG_WATCHDOG |
| 307 | /* |
| 308 | * If the watchdog must be rate-limited then it should |
| 309 | * already be handled in board-specific code. |
| 310 | */ |
| 311 | udelay(1); |
| 312 | #endif |
| 313 | } |
| 314 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 315 | return console_getc(file); |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 316 | #endif |
| 317 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 318 | |
| 319 | return -1; |
| 320 | } |
| 321 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 322 | int ftstc(int file) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 323 | { |
| 324 | if (file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 325 | return console_tstc(file); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 326 | |
| 327 | return -1; |
| 328 | } |
| 329 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 330 | void fputc(int file, const char c) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 331 | { |
| 332 | if (file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 333 | console_putc(file, c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 336 | void fputs(int file, const char *s) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 337 | { |
| 338 | if (file < MAX_FILES) |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 339 | console_puts(file, s); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 342 | int fprintf(int file, const char *fmt, ...) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 343 | { |
| 344 | va_list args; |
| 345 | uint i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 346 | char printbuffer[CONFIG_SYS_PBSIZE]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 347 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 348 | va_start(args, fmt); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 349 | |
| 350 | /* For this to work, printbuffer must be larger than |
| 351 | * anything we ever want to print. |
| 352 | */ |
Sonny Rao | 068af6f | 2011-10-10 09:22:31 +0000 | [diff] [blame] | 353 | i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 354 | va_end(args); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 355 | |
| 356 | /* Send to desired file */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 357 | fputs(file, printbuffer); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 358 | return i; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/ |
| 362 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 363 | int getc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 364 | { |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 365 | #ifdef CONFIG_DISABLE_CONSOLE |
| 366 | if (gd->flags & GD_FLG_DISABLE_CONSOLE) |
| 367 | return 0; |
| 368 | #endif |
| 369 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 370 | if (!gd->have_console) |
| 371 | return 0; |
| 372 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 373 | #ifdef CONFIG_CONSOLE_RECORD |
| 374 | if (gd->console_in.start) { |
| 375 | int ch; |
| 376 | |
| 377 | ch = membuff_getbyte(&gd->console_in); |
| 378 | if (ch != -1) |
| 379 | return 1; |
| 380 | } |
| 381 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 382 | if (gd->flags & GD_FLG_DEVINIT) { |
| 383 | /* Get from the standard input */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 384 | return fgetc(stdin); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | /* Send directly to the handler */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 388 | return serial_getc(); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 391 | int tstc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 392 | { |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 393 | #ifdef CONFIG_DISABLE_CONSOLE |
| 394 | if (gd->flags & GD_FLG_DISABLE_CONSOLE) |
| 395 | return 0; |
| 396 | #endif |
| 397 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 398 | if (!gd->have_console) |
| 399 | return 0; |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 400 | #ifdef CONFIG_CONSOLE_RECORD |
| 401 | if (gd->console_in.start) { |
| 402 | if (membuff_peekbyte(&gd->console_in) != -1) |
| 403 | return 1; |
| 404 | } |
| 405 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 406 | if (gd->flags & GD_FLG_DEVINIT) { |
| 407 | /* Test the standard input */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 408 | return ftstc(stdin); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | /* Send directly to the handler */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 412 | return serial_tstc(); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 415 | #define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0 |
| 416 | #define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1 |
| 417 | |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 418 | #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 419 | #define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ) |
| 420 | |
| 421 | static void pre_console_putc(const char c) |
| 422 | { |
| 423 | char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR; |
| 424 | |
| 425 | buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c; |
| 426 | } |
| 427 | |
| 428 | static void pre_console_puts(const char *s) |
| 429 | { |
| 430 | while (*s) |
| 431 | pre_console_putc(*s++); |
| 432 | } |
| 433 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 434 | static void print_pre_console_buffer(int flushpoint) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 435 | { |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 436 | unsigned long in = 0, out = 0; |
| 437 | char *buf_in = (char *)CONFIG_PRE_CON_BUF_ADDR; |
| 438 | char buf_out[CONFIG_PRE_CON_BUF_SZ + 1]; |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 439 | |
| 440 | if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ) |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 441 | in = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ; |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 442 | |
Hans de Goede | a8552c7 | 2015-05-05 13:13:36 +0200 | [diff] [blame] | 443 | while (in < gd->precon_buf_idx) |
| 444 | buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)]; |
| 445 | |
| 446 | buf_out[out] = 0; |
| 447 | |
| 448 | switch (flushpoint) { |
| 449 | case PRE_CONSOLE_FLUSHPOINT1_SERIAL: |
| 450 | puts(buf_out); |
| 451 | break; |
| 452 | case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL: |
| 453 | console_puts_noserial(stdout, buf_out); |
| 454 | break; |
| 455 | } |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 456 | } |
| 457 | #else |
| 458 | static inline void pre_console_putc(const char c) {} |
| 459 | static inline void pre_console_puts(const char *s) {} |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 460 | static inline void print_pre_console_buffer(int flushpoint) {} |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 461 | #endif |
| 462 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 463 | void putc(const char c) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 464 | { |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 465 | #ifdef CONFIG_SANDBOX |
Simon Glass | da229e4 | 2015-06-23 15:38:34 -0600 | [diff] [blame] | 466 | /* sandbox can send characters to stdout before it has a console */ |
Simon Glass | 093f79a | 2014-07-23 06:55:07 -0600 | [diff] [blame] | 467 | if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) { |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 468 | os_putc(c); |
| 469 | return; |
| 470 | } |
| 471 | #endif |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 472 | #ifdef CONFIG_DEBUG_UART |
| 473 | /* if we don't have a console yet, use the debug UART */ |
| 474 | if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) { |
| 475 | printch(c); |
| 476 | return; |
| 477 | } |
| 478 | #endif |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 479 | #ifdef CONFIG_CONSOLE_RECORD |
| 480 | if (gd && (gd->flags & GD_FLG_RECORD) && gd->console_out.start) |
| 481 | membuff_putbyte(&gd->console_out, c); |
| 482 | #endif |
wdenk | a6cccae | 2004-02-06 21:48:22 +0000 | [diff] [blame] | 483 | #ifdef CONFIG_SILENT_CONSOLE |
| 484 | if (gd->flags & GD_FLG_SILENT) |
wdenk | f6e20fc | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 485 | return; |
wdenk | a6cccae | 2004-02-06 21:48:22 +0000 | [diff] [blame] | 486 | #endif |
| 487 | |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 488 | #ifdef CONFIG_DISABLE_CONSOLE |
| 489 | if (gd->flags & GD_FLG_DISABLE_CONSOLE) |
| 490 | return; |
| 491 | #endif |
| 492 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 493 | if (!gd->have_console) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 494 | return pre_console_putc(c); |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 495 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 496 | if (gd->flags & GD_FLG_DEVINIT) { |
| 497 | /* Send to the standard output */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 498 | fputc(stdout, c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 499 | } else { |
| 500 | /* Send directly to the handler */ |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 501 | pre_console_putc(c); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 502 | serial_putc(c); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 506 | void puts(const char *s) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 507 | { |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 508 | #ifdef CONFIG_SANDBOX |
Simon Glass | 093f79a | 2014-07-23 06:55:07 -0600 | [diff] [blame] | 509 | if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) { |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 510 | os_puts(s); |
| 511 | return; |
| 512 | } |
| 513 | #endif |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 514 | #ifdef CONFIG_DEBUG_UART |
| 515 | if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) { |
| 516 | while (*s) { |
| 517 | int ch = *s++; |
Simon Glass | 91b136c | 2013-11-10 10:27:01 -0700 | [diff] [blame] | 518 | |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 519 | printch(ch); |
Simon Glass | d6ea530 | 2015-06-23 15:38:33 -0600 | [diff] [blame] | 520 | } |
| 521 | return; |
| 522 | } |
| 523 | #endif |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 524 | #ifdef CONFIG_CONSOLE_RECORD |
| 525 | if (gd && (gd->flags & GD_FLG_RECORD) && gd->console_out.start) |
| 526 | membuff_put(&gd->console_out, s, strlen(s)); |
| 527 | #endif |
wdenk | a6cccae | 2004-02-06 21:48:22 +0000 | [diff] [blame] | 528 | #ifdef CONFIG_SILENT_CONSOLE |
| 529 | if (gd->flags & GD_FLG_SILENT) |
| 530 | return; |
| 531 | #endif |
| 532 | |
Mark Jackson | f5c3ba7 | 2008-08-25 19:21:30 +0100 | [diff] [blame] | 533 | #ifdef CONFIG_DISABLE_CONSOLE |
| 534 | if (gd->flags & GD_FLG_DISABLE_CONSOLE) |
| 535 | return; |
| 536 | #endif |
| 537 | |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 538 | if (!gd->have_console) |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 539 | return pre_console_puts(s); |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 540 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 541 | if (gd->flags & GD_FLG_DEVINIT) { |
| 542 | /* Send to the standard output */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 543 | fputs(stdout, s); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 544 | } else { |
| 545 | /* Send directly to the handler */ |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 546 | pre_console_puts(s); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 547 | serial_puts(s); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 548 | } |
| 549 | } |
| 550 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 551 | #ifdef CONFIG_CONSOLE_RECORD |
| 552 | int console_record_init(void) |
| 553 | { |
| 554 | int ret; |
| 555 | |
| 556 | ret = membuff_new(&gd->console_out, CONFIG_CONSOLE_RECORD_OUT_SIZE); |
| 557 | if (ret) |
| 558 | return ret; |
| 559 | ret = membuff_new(&gd->console_in, CONFIG_CONSOLE_RECORD_IN_SIZE); |
| 560 | |
| 561 | return ret; |
| 562 | } |
| 563 | |
| 564 | void console_record_reset(void) |
| 565 | { |
| 566 | membuff_purge(&gd->console_out); |
| 567 | membuff_purge(&gd->console_in); |
| 568 | } |
| 569 | |
| 570 | void console_record_reset_enable(void) |
| 571 | { |
| 572 | console_record_reset(); |
| 573 | gd->flags |= GD_FLG_RECORD; |
| 574 | } |
| 575 | #endif |
| 576 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 577 | /* test if ctrl-c was pressed */ |
| 578 | static int ctrlc_disabled = 0; /* see disable_ctrl() */ |
| 579 | static int ctrlc_was_pressed = 0; |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 580 | int ctrlc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 581 | { |
Simon Glass | 8969ea3 | 2014-09-14 12:40:15 -0600 | [diff] [blame] | 582 | #ifndef CONFIG_SANDBOX |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 583 | if (!ctrlc_disabled && gd->have_console) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 584 | if (tstc()) { |
| 585 | switch (getc()) { |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 586 | case 0x03: /* ^C - Control C */ |
| 587 | ctrlc_was_pressed = 1; |
| 588 | return 1; |
| 589 | default: |
| 590 | break; |
| 591 | } |
| 592 | } |
| 593 | } |
Simon Glass | 8969ea3 | 2014-09-14 12:40:15 -0600 | [diff] [blame] | 594 | #endif |
| 595 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 596 | return 0; |
| 597 | } |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 598 | /* Reads user's confirmation. |
| 599 | Returns 1 if user's input is "y", "Y", "yes" or "YES" |
| 600 | */ |
| 601 | int confirm_yesno(void) |
| 602 | { |
| 603 | int i; |
| 604 | char str_input[5]; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 605 | |
Pierre Aubert | a5dffa4 | 2014-04-24 10:30:07 +0200 | [diff] [blame] | 606 | /* Flush input */ |
| 607 | while (tstc()) |
| 608 | getc(); |
| 609 | i = 0; |
| 610 | while (i < sizeof(str_input)) { |
| 611 | str_input[i] = getc(); |
| 612 | putc(str_input[i]); |
| 613 | if (str_input[i] == '\r') |
| 614 | break; |
| 615 | i++; |
| 616 | } |
| 617 | putc('\n'); |
| 618 | if (strncmp(str_input, "y\r", 2) == 0 || |
| 619 | strncmp(str_input, "Y\r", 2) == 0 || |
| 620 | strncmp(str_input, "yes\r", 4) == 0 || |
| 621 | strncmp(str_input, "YES\r", 4) == 0) |
| 622 | return 1; |
| 623 | return 0; |
| 624 | } |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 625 | /* pass 1 to disable ctrlc() checking, 0 to enable. |
| 626 | * returns previous state |
| 627 | */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 628 | int disable_ctrlc(int disable) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 629 | { |
| 630 | int prev = ctrlc_disabled; /* save previous state */ |
| 631 | |
| 632 | ctrlc_disabled = disable; |
| 633 | return prev; |
| 634 | } |
| 635 | |
| 636 | int had_ctrlc (void) |
| 637 | { |
| 638 | return ctrlc_was_pressed; |
| 639 | } |
| 640 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 641 | void clear_ctrlc(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 642 | { |
| 643 | ctrlc_was_pressed = 0; |
| 644 | } |
| 645 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 646 | /** U-Boot INIT FUNCTIONS *************************************************/ |
| 647 | |
Mike Frysinger | d7be305 | 2010-10-20 07:18:03 -0400 | [diff] [blame] | 648 | struct stdio_dev *search_device(int flags, const char *name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 649 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 650 | struct stdio_dev *dev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 651 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 652 | dev = stdio_get_by_name(name); |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 653 | #ifdef CONFIG_VIDCONSOLE_AS_LCD |
| 654 | if (!dev && !strcmp(name, "lcd")) |
| 655 | dev = stdio_get_by_name("vidconsole"); |
| 656 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 657 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 658 | if (dev && (dev->flags & flags)) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 659 | return dev; |
| 660 | |
| 661 | return NULL; |
| 662 | } |
| 663 | |
Mike Frysinger | d7be305 | 2010-10-20 07:18:03 -0400 | [diff] [blame] | 664 | int console_assign(int file, const char *devname) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 665 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 666 | int flag; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 667 | struct stdio_dev *dev; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 668 | |
| 669 | /* Check for valid file */ |
| 670 | switch (file) { |
| 671 | case stdin: |
| 672 | flag = DEV_FLAGS_INPUT; |
| 673 | break; |
| 674 | case stdout: |
| 675 | case stderr: |
| 676 | flag = DEV_FLAGS_OUTPUT; |
| 677 | break; |
| 678 | default: |
| 679 | return -1; |
| 680 | } |
| 681 | |
| 682 | /* Check for valid device name */ |
| 683 | |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 684 | dev = search_device(flag, devname); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 685 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 686 | if (dev) |
| 687 | return console_setfile(file, dev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 688 | |
| 689 | return -1; |
| 690 | } |
| 691 | |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 692 | static void console_update_silent(void) |
| 693 | { |
| 694 | #ifdef CONFIG_SILENT_CONSOLE |
| 695 | if (getenv("silent") != NULL) |
| 696 | gd->flags |= GD_FLG_SILENT; |
| 697 | else |
| 698 | gd->flags &= ~GD_FLG_SILENT; |
| 699 | #endif |
| 700 | } |
| 701 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 702 | /* Called before relocation - use serial functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 703 | int console_init_f(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 704 | { |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 705 | gd->have_console = 1; |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 706 | |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 707 | console_update_silent(); |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 708 | |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 709 | print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL); |
Graeme Russ | 9558b48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 710 | |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 711 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 714 | void stdio_print_current_devices(void) |
| 715 | { |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 716 | /* Print information */ |
| 717 | puts("In: "); |
| 718 | if (stdio_devices[stdin] == NULL) { |
| 719 | puts("No input devices available!\n"); |
| 720 | } else { |
| 721 | printf ("%s\n", stdio_devices[stdin]->name); |
| 722 | } |
| 723 | |
| 724 | puts("Out: "); |
| 725 | if (stdio_devices[stdout] == NULL) { |
| 726 | puts("No output devices available!\n"); |
| 727 | } else { |
| 728 | printf ("%s\n", stdio_devices[stdout]->name); |
| 729 | } |
| 730 | |
| 731 | puts("Err: "); |
| 732 | if (stdio_devices[stderr] == NULL) { |
| 733 | puts("No error devices available!\n"); |
| 734 | } else { |
| 735 | printf ("%s\n", stdio_devices[stderr]->name); |
| 736 | } |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 737 | } |
| 738 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 739 | #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 740 | /* Called after the relocation - use desired console functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 741 | int console_init_r(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 742 | { |
| 743 | char *stdinname, *stdoutname, *stderrname; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 744 | struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 745 | #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 746 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 747 | #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */ |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 748 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 749 | int iomux_err = 0; |
| 750 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 751 | |
| 752 | /* set default handlers at first */ |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 753 | gd->jt->getc = serial_getc; |
| 754 | gd->jt->tstc = serial_tstc; |
| 755 | gd->jt->putc = serial_putc; |
| 756 | gd->jt->puts = serial_puts; |
| 757 | gd->jt->printf = serial_printf; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 758 | |
| 759 | /* stdin stdout and stderr are in environment */ |
| 760 | /* scan for it */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 761 | stdinname = getenv("stdin"); |
| 762 | stdoutname = getenv("stdout"); |
| 763 | stderrname = getenv("stderr"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 764 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 765 | if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 766 | inputdev = search_device(DEV_FLAGS_INPUT, stdinname); |
| 767 | outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname); |
| 768 | errdev = search_device(DEV_FLAGS_OUTPUT, stderrname); |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 769 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 770 | iomux_err = iomux_doenv(stdin, stdinname); |
| 771 | iomux_err += iomux_doenv(stdout, stdoutname); |
| 772 | iomux_err += iomux_doenv(stderr, stderrname); |
| 773 | if (!iomux_err) |
| 774 | /* Successful, so skip all the code below. */ |
| 775 | goto done; |
| 776 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 777 | } |
| 778 | /* if the devices are overwritten or not found, use default device */ |
| 779 | if (inputdev == NULL) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 780 | inputdev = search_device(DEV_FLAGS_INPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 781 | } |
| 782 | if (outputdev == NULL) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 783 | outputdev = search_device(DEV_FLAGS_OUTPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 784 | } |
| 785 | if (errdev == NULL) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 786 | errdev = search_device(DEV_FLAGS_OUTPUT, "serial"); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 787 | } |
| 788 | /* Initializes output console first */ |
| 789 | if (outputdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 790 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 791 | console_doenv(stdout, outputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 792 | } |
| 793 | if (errdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 794 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 795 | console_doenv(stderr, errdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 796 | } |
| 797 | if (inputdev != NULL) { |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 798 | /* need to set a console if not done above. */ |
Jean-Christophe PLAGNIOL-VILLARD | 5f03201 | 2009-02-01 17:07:52 +0100 | [diff] [blame] | 799 | console_doenv(stdin, inputdev); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 800 | } |
| 801 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 802 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 803 | done: |
| 804 | #endif |
| 805 | |
Simon Glass | 78c112c | 2012-12-05 14:46:43 +0000 | [diff] [blame] | 806 | #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 807 | stdio_print_current_devices(); |
Simon Glass | 78c112c | 2012-12-05 14:46:43 +0000 | [diff] [blame] | 808 | #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */ |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 809 | #ifdef CONFIG_VIDCONSOLE_AS_LCD |
| 810 | if (strstr(stdoutname, "lcd")) |
| 811 | printf("Warning: Please change 'lcd' to 'vidconsole' in stdout/stderr environment vars\n"); |
| 812 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 813 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 814 | #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 815 | /* set the environment variables (will overwrite previous env settings) */ |
| 816 | for (i = 0; i < 3; i++) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 817 | setenv(stdio_names[i], stdio_devices[i]->name); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 818 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 819 | #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 820 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 821 | gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */ |
| 822 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 823 | #if 0 |
| 824 | /* If nothing usable installed, use only the initial console */ |
| 825 | if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL)) |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 826 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 827 | #endif |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 828 | print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 829 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 830 | } |
| 831 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 832 | #else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 833 | |
| 834 | /* Called after the relocation - use desired console functions */ |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 835 | int console_init_r(void) |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 836 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 837 | struct stdio_dev *inputdev = NULL, *outputdev = NULL; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 838 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 839 | struct list_head *list = stdio_get_list(); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 840 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 841 | struct stdio_dev *dev; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 842 | |
Chris Packham | 43e0a3d | 2016-09-23 15:59:43 +1200 | [diff] [blame] | 843 | console_update_silent(); |
| 844 | |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 845 | #ifdef CONFIG_SPLASH_SCREEN |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 846 | /* |
| 847 | * suppress all output if splash screen is enabled and we have |
Anatolij Gustschin | a749081 | 2010-03-16 15:29:33 +0100 | [diff] [blame] | 848 | * a bmp to display. We redirect the output from frame buffer |
| 849 | * console to serial console in this case or suppress it if |
| 850 | * "silent" mode was requested. |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 851 | */ |
Anatolij Gustschin | a749081 | 2010-03-16 15:29:33 +0100 | [diff] [blame] | 852 | if (getenv("splashimage") != NULL) { |
| 853 | if (!(gd->flags & GD_FLG_SILENT)) |
| 854 | outputdev = search_device (DEV_FLAGS_OUTPUT, "serial"); |
| 855 | } |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 856 | #endif |
| 857 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 858 | /* Scan devices looking for input and output devices */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 859 | list_for_each(pos, list) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 860 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 861 | |
| 862 | if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) { |
| 863 | inputdev = dev; |
| 864 | } |
| 865 | if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) { |
| 866 | outputdev = dev; |
| 867 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 868 | if(inputdev && outputdev) |
| 869 | break; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | /* Initializes output console first */ |
| 873 | if (outputdev != NULL) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 874 | console_setfile(stdout, outputdev); |
| 875 | console_setfile(stderr, outputdev); |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 876 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 877 | console_devices[stdout][0] = outputdev; |
| 878 | console_devices[stderr][0] = outputdev; |
| 879 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | /* Initializes input console */ |
| 883 | if (inputdev != NULL) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 884 | console_setfile(stdin, inputdev); |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 885 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
Gary Jennejohn | 16a28ef | 2008-11-06 15:04:23 +0100 | [diff] [blame] | 886 | console_devices[stdin][0] = inputdev; |
| 887 | #endif |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Simon Glass | 78c112c | 2012-12-05 14:46:43 +0000 | [diff] [blame] | 890 | #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET |
Jean-Christophe PLAGNIOL-VILLARD | 7e3be7c | 2009-05-16 12:14:55 +0200 | [diff] [blame] | 891 | stdio_print_current_devices(); |
Simon Glass | 78c112c | 2012-12-05 14:46:43 +0000 | [diff] [blame] | 892 | #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */ |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 893 | |
| 894 | /* Setting environment variables */ |
| 895 | for (i = 0; i < 3; i++) { |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 896 | setenv(stdio_names[i], stdio_devices[i]->name); |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 899 | gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */ |
| 900 | |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 901 | #if 0 |
| 902 | /* If nothing usable installed, use only the initial console */ |
| 903 | if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL)) |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 904 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 905 | #endif |
Siarhei Siamashka | 2766966 | 2015-01-08 09:02:31 +0200 | [diff] [blame] | 906 | print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL); |
Jean-Christophe PLAGNIOL-VILLARD | ec6f149 | 2009-02-01 17:07:51 +0100 | [diff] [blame] | 907 | return 0; |
wdenk | 47d1a6e | 2002-11-03 00:01:44 +0000 | [diff] [blame] | 908 | } |
| 909 | |
Simon Glass | b026542 | 2017-01-16 07:03:26 -0700 | [diff] [blame] | 910 | #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */ |