blob: 5a2f411600280acd5ba435762083f8394da61377 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
2 * (C) Copyright 2000
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk47d1a6e2002-11-03 00:01:44 +00006 */
7
8#include <common.h>
9#include <stdarg.h>
10#include <malloc.h>
Simon Glass91b136c2013-11-10 10:27:01 -070011#include <os.h>
Joe Hershberger849d5d92012-12-11 22:16:29 -060012#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020013#include <stdio_dev.h>
wdenk27b207f2003-07-24 23:38:38 +000014#include <exports.h>
Joe Hershberger849d5d92012-12-11 22:16:29 -060015#include <environment.h>
wdenk47d1a6e2002-11-03 00:01:44 +000016
Wolfgang Denkd87080b2006-03-31 18:32:53 +020017DECLARE_GLOBAL_DATA_PTR;
18
Joe Hershberger849d5d92012-12-11 22:16:29 -060019static int on_console(const char *name, const char *value, enum env_op op,
20 int flags)
21{
22 int console = -1;
23
24 /* Check for console redirection */
25 if (strcmp(name, "stdin") == 0)
26 console = stdin;
27 else if (strcmp(name, "stdout") == 0)
28 console = stdout;
29 else if (strcmp(name, "stderr") == 0)
30 console = stderr;
31
32 /* if not actually setting a console variable, we don't care */
33 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
34 return 0;
35
36 switch (op) {
37 case env_op_create:
38 case env_op_overwrite:
39
40#ifdef CONFIG_CONSOLE_MUX
41 if (iomux_doenv(console, value))
42 return 1;
43#else
44 /* Try assigning specified device */
45 if (console_assign(console, value) < 0)
46 return 1;
47#endif /* CONFIG_CONSOLE_MUX */
48 return 0;
49
50 case env_op_delete:
51 if ((flags & H_FORCE) == 0)
52 printf("Can't delete \"%s\"\n", name);
53 return 1;
54
55 default:
56 return 0;
57 }
58}
59U_BOOT_ENV_CALLBACK(console, on_console);
60
Joe Hershbergere080d542012-12-11 22:16:30 -060061#ifdef CONFIG_SILENT_CONSOLE
62static int on_silent(const char *name, const char *value, enum env_op op,
63 int flags)
64{
65#ifndef CONFIG_SILENT_CONSOLE_UPDATE_ON_SET
66 if (flags & H_INTERACTIVE)
67 return 0;
68#endif
69#ifndef CONFIG_SILENT_CONSOLE_UPDATE_ON_RELOC
70 if ((flags & H_INTERACTIVE) == 0)
71 return 0;
72#endif
73
74 if (value != NULL)
75 gd->flags |= GD_FLG_SILENT;
76 else
77 gd->flags &= ~GD_FLG_SILENT;
78
79 return 0;
80}
81U_BOOT_ENV_CALLBACK(silent, on_silent);
82#endif
83
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +000085/*
86 * if overwrite_console returns 1, the stdin, stderr and stdout
87 * are switched to the serial port, else the settings in the
88 * environment are used
89 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010091extern int overwrite_console(void);
92#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +000093#else
wdenk83e40ba2005-03-31 18:42:15 +000094#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +000096
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +000098
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020099static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +0000100{
101 int error = 0;
102
103 if (dev == NULL)
104 return -1;
105
106 switch (file) {
107 case stdin:
108 case stdout:
109 case stderr:
110 /* Start new device */
111 if (dev->start) {
Simon Glass709ea542014-07-23 06:54:59 -0600112 error = dev->start(dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000113 /* If it's not started dont use it */
114 if (error < 0)
115 break;
116 }
117
118 /* Assign the new device (leaving the existing one started) */
119 stdio_devices[file] = dev;
120
121 /*
122 * Update monitor functions
123 * (to use the console stuff by other applications)
124 */
125 switch (file) {
126 case stdin:
wdenk27b207f2003-07-24 23:38:38 +0000127 gd->jt[XF_getc] = dev->getc;
128 gd->jt[XF_tstc] = dev->tstc;
wdenk47d1a6e2002-11-03 00:01:44 +0000129 break;
130 case stdout:
wdenk27b207f2003-07-24 23:38:38 +0000131 gd->jt[XF_putc] = dev->putc;
132 gd->jt[XF_puts] = dev->puts;
133 gd->jt[XF_printf] = printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000134 break;
135 }
136 break;
137
138 default: /* Invalid file ID */
139 error = -1;
140 }
141 return error;
142}
143
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100144#if defined(CONFIG_CONSOLE_MUX)
145/** Console I/O multiplexing *******************************************/
146
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200147static struct stdio_dev *tstcdev;
148struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100149int cd_count[MAX_FILES];
150
151/*
152 * This depends on tstc() always being called before getc().
153 * This is guaranteed to be true because this routine is called
154 * only from fgetc() which assures it.
155 * No attempt is made to demultiplex multiple input sources.
156 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100157static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100158{
159 unsigned char ret;
160
161 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600162 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100163 tstcdev = NULL;
164 return ret;
165}
166
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100167static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100168{
169 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200170 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100171
172 disable_ctrlc(1);
173 for (i = 0; i < cd_count[file]; i++) {
174 dev = console_devices[file][i];
175 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600176 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100177 if (ret > 0) {
178 tstcdev = dev;
179 disable_ctrlc(0);
180 return ret;
181 }
182 }
183 }
184 disable_ctrlc(0);
185
186 return 0;
187}
188
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100189static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100190{
191 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200192 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100193
194 for (i = 0; i < cd_count[file]; i++) {
195 dev = console_devices[file][i];
196 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600197 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100198 }
199}
200
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100201static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100202{
203 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200204 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100205
206 for (i = 0; i < cd_count[file]; i++) {
207 dev = console_devices[file][i];
208 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600209 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100210 }
211}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100212
213static inline void console_printdevs(int file)
214{
215 iomux_printdevs(file);
216}
217
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200218static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100219{
220 iomux_doenv(file, dev->name);
221}
222#else
223static inline int console_getc(int file)
224{
Simon Glass709ea542014-07-23 06:54:59 -0600225 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100226}
227
228static inline int console_tstc(int file)
229{
Simon Glass709ea542014-07-23 06:54:59 -0600230 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100231}
232
233static inline void console_putc(int file, const char c)
234{
Simon Glass709ea542014-07-23 06:54:59 -0600235 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100236}
237
238static inline void console_puts(int file, const char *s)
239{
Simon Glass709ea542014-07-23 06:54:59 -0600240 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100241}
242
243static inline void console_printdevs(int file)
244{
245 printf("%s\n", stdio_devices[file]->name);
246}
247
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200248static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100249{
250 console_setfile(file, dev);
251}
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100252#endif /* defined(CONFIG_CONSOLE_MUX) */
253
wdenk47d1a6e2002-11-03 00:01:44 +0000254/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
255
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200256int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000257{
258 va_list args;
259 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200260 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000261
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100262 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000263
264 /* For this to work, printbuffer must be larger than
265 * anything we ever want to print.
266 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000267 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100268 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000269
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100270 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200271 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000272}
273
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100274int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000275{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100276 if (file < MAX_FILES) {
277#if defined(CONFIG_CONSOLE_MUX)
278 /*
279 * Effectively poll for input wherever it may be available.
280 */
281 for (;;) {
282 /*
283 * Upper layer may have already called tstc() so
284 * check for that first.
285 */
286 if (tstcdev != NULL)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100287 return console_getc(file);
288 console_tstc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100289#ifdef CONFIG_WATCHDOG
290 /*
291 * If the watchdog must be rate-limited then it should
292 * already be handled in board-specific code.
293 */
294 udelay(1);
295#endif
296 }
297#else
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100298 return console_getc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100299#endif
300 }
wdenk47d1a6e2002-11-03 00:01:44 +0000301
302 return -1;
303}
304
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100305int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000306{
307 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100308 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000309
310 return -1;
311}
312
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100313void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000314{
315 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100316 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000317}
318
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100319void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000320{
321 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100322 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000323}
324
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200325int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000326{
327 va_list args;
328 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200329 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000330
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100331 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000332
333 /* For this to work, printbuffer must be larger than
334 * anything we ever want to print.
335 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000336 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100337 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000338
339 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100340 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200341 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000342}
343
344/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
345
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100346int getc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000347{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100348#ifdef CONFIG_DISABLE_CONSOLE
349 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
350 return 0;
351#endif
352
Graeme Russe3e454c2011-08-29 02:14:05 +0000353 if (!gd->have_console)
354 return 0;
355
wdenk47d1a6e2002-11-03 00:01:44 +0000356 if (gd->flags & GD_FLG_DEVINIT) {
357 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100358 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000359 }
360
361 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100362 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000363}
364
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100365int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000366{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100367#ifdef CONFIG_DISABLE_CONSOLE
368 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
369 return 0;
370#endif
371
Graeme Russe3e454c2011-08-29 02:14:05 +0000372 if (!gd->have_console)
373 return 0;
374
wdenk47d1a6e2002-11-03 00:01:44 +0000375 if (gd->flags & GD_FLG_DEVINIT) {
376 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100377 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000378 }
379
380 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100381 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000382}
383
Simon Glass3fa49772012-03-19 21:59:14 -0700384#ifdef CONFIG_PRE_CONSOLE_BUFFER
Graeme Russ9558b482011-09-01 00:48:27 +0000385#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
386
387static void pre_console_putc(const char c)
388{
389 char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR;
390
391 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
392}
393
394static void pre_console_puts(const char *s)
395{
396 while (*s)
397 pre_console_putc(*s++);
398}
399
400static void print_pre_console_buffer(void)
401{
402 unsigned long i = 0;
403 char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR;
404
405 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
406 i = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
407
408 while (i < gd->precon_buf_idx)
409 putc(buffer[CIRC_BUF_IDX(i++)]);
410}
411#else
412static inline void pre_console_putc(const char c) {}
413static inline void pre_console_puts(const char *s) {}
414static inline void print_pre_console_buffer(void) {}
415#endif
416
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100417void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000418{
Simon Glass91b136c2013-11-10 10:27:01 -0700419#ifdef CONFIG_SANDBOX
Simon Glass093f79a2014-07-23 06:55:07 -0600420 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass91b136c2013-11-10 10:27:01 -0700421 os_putc(c);
422 return;
423 }
424#endif
wdenka6cccae2004-02-06 21:48:22 +0000425#ifdef CONFIG_SILENT_CONSOLE
426 if (gd->flags & GD_FLG_SILENT)
wdenkf6e20fc2004-02-08 19:38:38 +0000427 return;
wdenka6cccae2004-02-06 21:48:22 +0000428#endif
429
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100430#ifdef CONFIG_DISABLE_CONSOLE
431 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
432 return;
433#endif
434
Graeme Russe3e454c2011-08-29 02:14:05 +0000435 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000436 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000437
wdenk47d1a6e2002-11-03 00:01:44 +0000438 if (gd->flags & GD_FLG_DEVINIT) {
439 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100440 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000441 } else {
442 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100443 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000444 }
445}
446
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100447void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000448{
Simon Glass91b136c2013-11-10 10:27:01 -0700449#ifdef CONFIG_SANDBOX
Simon Glass093f79a2014-07-23 06:55:07 -0600450 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass91b136c2013-11-10 10:27:01 -0700451 os_puts(s);
452 return;
453 }
454#endif
455
wdenka6cccae2004-02-06 21:48:22 +0000456#ifdef CONFIG_SILENT_CONSOLE
457 if (gd->flags & GD_FLG_SILENT)
458 return;
459#endif
460
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100461#ifdef CONFIG_DISABLE_CONSOLE
462 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
463 return;
464#endif
465
Graeme Russe3e454c2011-08-29 02:14:05 +0000466 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000467 return pre_console_puts(s);
Graeme Russe3e454c2011-08-29 02:14:05 +0000468
wdenk47d1a6e2002-11-03 00:01:44 +0000469 if (gd->flags & GD_FLG_DEVINIT) {
470 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100471 fputs(stdout, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000472 } else {
473 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100474 serial_puts(s);
wdenk47d1a6e2002-11-03 00:01:44 +0000475 }
476}
477
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200478int printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000479{
480 va_list args;
481 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200482 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000483
Simon Glass91b136c2013-11-10 10:27:01 -0700484#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_PRE_CONSOLE_BUFFER)
Graeme Russe3e454c2011-08-29 02:14:05 +0000485 if (!gd->have_console)
486 return 0;
Graeme Russ9558b482011-09-01 00:48:27 +0000487#endif
Graeme Russe3e454c2011-08-29 02:14:05 +0000488
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100489 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000490
491 /* For this to work, printbuffer must be larger than
492 * anything we ever want to print.
493 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000494 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100495 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000496
497 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100498 puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200499 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000500}
501
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200502int vprintf(const char *fmt, va_list args)
wdenk6dd652f2003-06-19 23:40:20 +0000503{
504 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200505 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk6dd652f2003-06-19 23:40:20 +0000506
Simon Glass7793ac92014-07-23 06:55:06 -0600507#if defined(CONFIG_PRE_CONSOLE_BUFFER) && !defined(CONFIG_SANDBOX)
Graeme Russe3e454c2011-08-29 02:14:05 +0000508 if (!gd->have_console)
509 return 0;
Graeme Russ9558b482011-09-01 00:48:27 +0000510#endif
Graeme Russe3e454c2011-08-29 02:14:05 +0000511
wdenk6dd652f2003-06-19 23:40:20 +0000512 /* For this to work, printbuffer must be larger than
513 * anything we ever want to print.
514 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000515 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
wdenk6dd652f2003-06-19 23:40:20 +0000516
517 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100518 puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200519 return i;
wdenk6dd652f2003-06-19 23:40:20 +0000520}
521
wdenk47d1a6e2002-11-03 00:01:44 +0000522/* test if ctrl-c was pressed */
523static int ctrlc_disabled = 0; /* see disable_ctrl() */
524static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100525int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000526{
Simon Glass8969ea32014-09-14 12:40:15 -0600527#ifndef CONFIG_SANDBOX
wdenk47d1a6e2002-11-03 00:01:44 +0000528 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100529 if (tstc()) {
530 switch (getc()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000531 case 0x03: /* ^C - Control C */
532 ctrlc_was_pressed = 1;
533 return 1;
534 default:
535 break;
536 }
537 }
538 }
Simon Glass8969ea32014-09-14 12:40:15 -0600539#endif
540
wdenk47d1a6e2002-11-03 00:01:44 +0000541 return 0;
542}
Pierre Auberta5dffa42014-04-24 10:30:07 +0200543/* Reads user's confirmation.
544 Returns 1 if user's input is "y", "Y", "yes" or "YES"
545*/
546int confirm_yesno(void)
547{
548 int i;
549 char str_input[5];
wdenk47d1a6e2002-11-03 00:01:44 +0000550
Pierre Auberta5dffa42014-04-24 10:30:07 +0200551 /* Flush input */
552 while (tstc())
553 getc();
554 i = 0;
555 while (i < sizeof(str_input)) {
556 str_input[i] = getc();
557 putc(str_input[i]);
558 if (str_input[i] == '\r')
559 break;
560 i++;
561 }
562 putc('\n');
563 if (strncmp(str_input, "y\r", 2) == 0 ||
564 strncmp(str_input, "Y\r", 2) == 0 ||
565 strncmp(str_input, "yes\r", 4) == 0 ||
566 strncmp(str_input, "YES\r", 4) == 0)
567 return 1;
568 return 0;
569}
wdenk47d1a6e2002-11-03 00:01:44 +0000570/* pass 1 to disable ctrlc() checking, 0 to enable.
571 * returns previous state
572 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100573int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000574{
575 int prev = ctrlc_disabled; /* save previous state */
576
577 ctrlc_disabled = disable;
578 return prev;
579}
580
581int had_ctrlc (void)
582{
583 return ctrlc_was_pressed;
584}
585
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100586void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000587{
588 ctrlc_was_pressed = 0;
589}
590
591#ifdef CONFIG_MODEM_SUPPORT_DEBUG
592char screen[1024];
593char *cursor = screen;
594int once = 0;
595inline void dbg(const char *fmt, ...)
596{
597 va_list args;
598 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200599 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000600
601 if (!once) {
602 memset(screen, 0, sizeof(screen));
603 once++;
604 }
605
606 va_start(args, fmt);
607
608 /* For this to work, printbuffer must be larger than
609 * anything we ever want to print.
610 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000611 i = vsnprintf(printbuffer, sizeof(printbuffer), fmt, args);
wdenk47d1a6e2002-11-03 00:01:44 +0000612 va_end(args);
613
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100614 if ((screen + sizeof(screen) - 1 - cursor)
615 < strlen(printbuffer) + 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000616 memset(screen, 0, sizeof(screen));
617 cursor = screen;
618 }
619 sprintf(cursor, printbuffer);
620 cursor += strlen(printbuffer);
621
622}
623#else
624inline void dbg(const char *fmt, ...)
625{
626}
627#endif
628
629/** U-Boot INIT FUNCTIONS *************************************************/
630
Mike Frysingerd7be3052010-10-20 07:18:03 -0400631struct stdio_dev *search_device(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200632{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200633 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200634
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200635 dev = stdio_get_by_name(name);
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200636
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100637 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200638 return dev;
639
640 return NULL;
641}
642
Mike Frysingerd7be3052010-10-20 07:18:03 -0400643int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000644{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200645 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200646 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000647
648 /* Check for valid file */
649 switch (file) {
650 case stdin:
651 flag = DEV_FLAGS_INPUT;
652 break;
653 case stdout:
654 case stderr:
655 flag = DEV_FLAGS_OUTPUT;
656 break;
657 default:
658 return -1;
659 }
660
661 /* Check for valid device name */
662
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200663 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000664
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100665 if (dev)
666 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000667
668 return -1;
669}
670
671/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100672int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000673{
wdenk47d1a6e2002-11-03 00:01:44 +0000674 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000675
676#ifdef CONFIG_SILENT_CONSOLE
677 if (getenv("silent") != NULL)
678 gd->flags |= GD_FLG_SILENT;
679#endif
680
Graeme Russ9558b482011-09-01 00:48:27 +0000681 print_pre_console_buffer();
682
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100683 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000684}
685
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200686void stdio_print_current_devices(void)
687{
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200688 /* Print information */
689 puts("In: ");
690 if (stdio_devices[stdin] == NULL) {
691 puts("No input devices available!\n");
692 } else {
693 printf ("%s\n", stdio_devices[stdin]->name);
694 }
695
696 puts("Out: ");
697 if (stdio_devices[stdout] == NULL) {
698 puts("No output devices available!\n");
699 } else {
700 printf ("%s\n", stdio_devices[stdout]->name);
701 }
702
703 puts("Err: ");
704 if (stdio_devices[stderr] == NULL) {
705 puts("No error devices available!\n");
706 } else {
707 printf ("%s\n", stdio_devices[stderr]->name);
708 }
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200709}
710
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200711#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +0000712/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100713int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000714{
715 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200716 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200717#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk6e592382004-04-18 17:39:38 +0000718 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200719#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100720#ifdef CONFIG_CONSOLE_MUX
721 int iomux_err = 0;
722#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000723
724 /* set default handlers at first */
wdenk27b207f2003-07-24 23:38:38 +0000725 gd->jt[XF_getc] = serial_getc;
726 gd->jt[XF_tstc] = serial_tstc;
727 gd->jt[XF_putc] = serial_putc;
728 gd->jt[XF_puts] = serial_puts;
729 gd->jt[XF_printf] = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000730
731 /* stdin stdout and stderr are in environment */
732 /* scan for it */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100733 stdinname = getenv("stdin");
734 stdoutname = getenv("stdout");
735 stderrname = getenv("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000736
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200737 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100738 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
739 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
740 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100741#ifdef CONFIG_CONSOLE_MUX
742 iomux_err = iomux_doenv(stdin, stdinname);
743 iomux_err += iomux_doenv(stdout, stdoutname);
744 iomux_err += iomux_doenv(stderr, stderrname);
745 if (!iomux_err)
746 /* Successful, so skip all the code below. */
747 goto done;
748#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000749 }
750 /* if the devices are overwritten or not found, use default device */
751 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100752 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000753 }
754 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100755 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000756 }
757 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100758 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000759 }
760 /* Initializes output console first */
761 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100762 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100763 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000764 }
765 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100766 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100767 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000768 }
769 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100770 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100771 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000772 }
773
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100774#ifdef CONFIG_CONSOLE_MUX
775done:
776#endif
777
Simon Glass78c112c2012-12-05 14:46:43 +0000778#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200779 stdio_print_current_devices();
Simon Glass78c112c2012-12-05 14:46:43 +0000780#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
wdenk47d1a6e2002-11-03 00:01:44 +0000781
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200782#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk47d1a6e2002-11-03 00:01:44 +0000783 /* set the environment variables (will overwrite previous env settings) */
784 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100785 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000786 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200787#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
wdenk47d1a6e2002-11-03 00:01:44 +0000788
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600789 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
790
wdenk47d1a6e2002-11-03 00:01:44 +0000791#if 0
792 /* If nothing usable installed, use only the initial console */
793 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100794 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000795#endif
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100796 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000797}
798
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200799#else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +0000800
801/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100802int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000803{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200804 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200805 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200806 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200807 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200808 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000809
wdenkd791b1d2003-04-20 14:04:18 +0000810#ifdef CONFIG_SPLASH_SCREEN
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100811 /*
812 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +0100813 * a bmp to display. We redirect the output from frame buffer
814 * console to serial console in this case or suppress it if
815 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100816 */
Anatolij Gustschina7490812010-03-16 15:29:33 +0100817 if (getenv("splashimage") != NULL) {
818 if (!(gd->flags & GD_FLG_SILENT))
819 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
820 }
wdenkf72da342003-10-10 10:05:42 +0000821#endif
822
wdenk47d1a6e2002-11-03 00:01:44 +0000823 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200824 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200825 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000826
827 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
828 inputdev = dev;
829 }
830 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
831 outputdev = dev;
832 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200833 if(inputdev && outputdev)
834 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000835 }
836
837 /* Initializes output console first */
838 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100839 console_setfile(stdout, outputdev);
840 console_setfile(stderr, outputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100841#ifdef CONFIG_CONSOLE_MUX
842 console_devices[stdout][0] = outputdev;
843 console_devices[stderr][0] = outputdev;
844#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000845 }
846
847 /* Initializes input console */
848 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100849 console_setfile(stdin, inputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100850#ifdef CONFIG_CONSOLE_MUX
851 console_devices[stdin][0] = inputdev;
852#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000853 }
854
Simon Glass78c112c2012-12-05 14:46:43 +0000855#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200856 stdio_print_current_devices();
Simon Glass78c112c2012-12-05 14:46:43 +0000857#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
wdenk47d1a6e2002-11-03 00:01:44 +0000858
859 /* Setting environment variables */
860 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100861 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000862 }
863
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600864 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
865
wdenk47d1a6e2002-11-03 00:01:44 +0000866#if 0
867 /* If nothing usable installed, use only the initial console */
868 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100869 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000870#endif
871
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100872 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000873}
874
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200875#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */