]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/console.c
Remove AmigaOneG3SE board
[people/ms/u-boot.git] / common / console.c
CommitLineData
47d1a6e1
WD
1/*
2 * (C) Copyright 2000
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <stdarg.h>
26#include <malloc.h>
52cb4d4f 27#include <stdio_dev.h>
27b207fd 28#include <exports.h>
47d1a6e1 29
d87080b7
WD
30DECLARE_GLOBAL_DATA_PTR;
31
6d0f6bcf 32#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
47d1a6e1
WD
33/*
34 * if overwrite_console returns 1, the stdin, stderr and stdout
35 * are switched to the serial port, else the settings in the
36 * environment are used
37 */
6d0f6bcf 38#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
ec6f1499
JCPV
39extern int overwrite_console(void);
40#define OVERWRITE_CONSOLE overwrite_console()
47d1a6e1 41#else
83e40ba7 42#define OVERWRITE_CONSOLE 0
6d0f6bcf 43#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
47d1a6e1 44
6d0f6bcf 45#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
47d1a6e1 46
52cb4d4f 47static int console_setfile(int file, struct stdio_dev * dev)
47d1a6e1
WD
48{
49 int error = 0;
50
51 if (dev == NULL)
52 return -1;
53
54 switch (file) {
55 case stdin:
56 case stdout:
57 case stderr:
58 /* Start new device */
59 if (dev->start) {
ec6f1499 60 error = dev->start();
47d1a6e1
WD
61 /* If it's not started dont use it */
62 if (error < 0)
63 break;
64 }
65
66 /* Assign the new device (leaving the existing one started) */
67 stdio_devices[file] = dev;
68
69 /*
70 * Update monitor functions
71 * (to use the console stuff by other applications)
72 */
73 switch (file) {
74 case stdin:
27b207fd
WD
75 gd->jt[XF_getc] = dev->getc;
76 gd->jt[XF_tstc] = dev->tstc;
47d1a6e1
WD
77 break;
78 case stdout:
27b207fd
WD
79 gd->jt[XF_putc] = dev->putc;
80 gd->jt[XF_puts] = dev->puts;
81 gd->jt[XF_printf] = printf;
47d1a6e1
WD
82 break;
83 }
84 break;
85
86 default: /* Invalid file ID */
87 error = -1;
88 }
89 return error;
90}
91
16a28ef2
GJ
92#if defined(CONFIG_CONSOLE_MUX)
93/** Console I/O multiplexing *******************************************/
94
52cb4d4f
JCPV
95static struct stdio_dev *tstcdev;
96struct stdio_dev **console_devices[MAX_FILES];
16a28ef2
GJ
97int cd_count[MAX_FILES];
98
99/*
100 * This depends on tstc() always being called before getc().
101 * This is guaranteed to be true because this routine is called
102 * only from fgetc() which assures it.
103 * No attempt is made to demultiplex multiple input sources.
104 */
5f032010 105static int console_getc(int file)
16a28ef2
GJ
106{
107 unsigned char ret;
108
109 /* This is never called with testcdev == NULL */
110 ret = tstcdev->getc();
111 tstcdev = NULL;
112 return ret;
113}
114
5f032010 115static int console_tstc(int file)
16a28ef2
GJ
116{
117 int i, ret;
52cb4d4f 118 struct stdio_dev *dev;
16a28ef2
GJ
119
120 disable_ctrlc(1);
121 for (i = 0; i < cd_count[file]; i++) {
122 dev = console_devices[file][i];
123 if (dev->tstc != NULL) {
124 ret = dev->tstc();
125 if (ret > 0) {
126 tstcdev = dev;
127 disable_ctrlc(0);
128 return ret;
129 }
130 }
131 }
132 disable_ctrlc(0);
133
134 return 0;
135}
136
5f032010 137static void console_putc(int file, const char c)
16a28ef2
GJ
138{
139 int i;
52cb4d4f 140 struct stdio_dev *dev;
16a28ef2
GJ
141
142 for (i = 0; i < cd_count[file]; i++) {
143 dev = console_devices[file][i];
144 if (dev->putc != NULL)
145 dev->putc(c);
146 }
147}
148
5f032010 149static void console_puts(int file, const char *s)
16a28ef2
GJ
150{
151 int i;
52cb4d4f 152 struct stdio_dev *dev;
16a28ef2
GJ
153
154 for (i = 0; i < cd_count[file]; i++) {
155 dev = console_devices[file][i];
156 if (dev->puts != NULL)
157 dev->puts(s);
158 }
159}
5f032010
JCPV
160
161static inline void console_printdevs(int file)
162{
163 iomux_printdevs(file);
164}
165
52cb4d4f 166static inline void console_doenv(int file, struct stdio_dev *dev)
5f032010
JCPV
167{
168 iomux_doenv(file, dev->name);
169}
170#else
171static inline int console_getc(int file)
172{
173 return stdio_devices[file]->getc();
174}
175
176static inline int console_tstc(int file)
177{
178 return stdio_devices[file]->tstc();
179}
180
181static inline void console_putc(int file, const char c)
182{
183 stdio_devices[file]->putc(c);
184}
185
186static inline void console_puts(int file, const char *s)
187{
188 stdio_devices[file]->puts(s);
189}
190
191static inline void console_printdevs(int file)
192{
193 printf("%s\n", stdio_devices[file]->name);
194}
195
52cb4d4f 196static inline void console_doenv(int file, struct stdio_dev *dev)
5f032010
JCPV
197{
198 console_setfile(file, dev);
199}
16a28ef2
GJ
200#endif /* defined(CONFIG_CONSOLE_MUX) */
201
47d1a6e1
WD
202/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
203
ec6f1499 204void serial_printf(const char *fmt, ...)
47d1a6e1
WD
205{
206 va_list args;
207 uint i;
6d0f6bcf 208 char printbuffer[CONFIG_SYS_PBSIZE];
47d1a6e1 209
ec6f1499 210 va_start(args, fmt);
47d1a6e1
WD
211
212 /* For this to work, printbuffer must be larger than
213 * anything we ever want to print.
214 */
ec6f1499
JCPV
215 i = vsprintf(printbuffer, fmt, args);
216 va_end(args);
47d1a6e1 217
ec6f1499 218 serial_puts(printbuffer);
47d1a6e1
WD
219}
220
ec6f1499 221int fgetc(int file)
47d1a6e1 222{
16a28ef2
GJ
223 if (file < MAX_FILES) {
224#if defined(CONFIG_CONSOLE_MUX)
225 /*
226 * Effectively poll for input wherever it may be available.
227 */
228 for (;;) {
229 /*
230 * Upper layer may have already called tstc() so
231 * check for that first.
232 */
233 if (tstcdev != NULL)
5f032010
JCPV
234 return console_getc(file);
235 console_tstc(file);
16a28ef2
GJ
236#ifdef CONFIG_WATCHDOG
237 /*
238 * If the watchdog must be rate-limited then it should
239 * already be handled in board-specific code.
240 */
241 udelay(1);
242#endif
243 }
244#else
5f032010 245 return console_getc(file);
16a28ef2
GJ
246#endif
247 }
47d1a6e1
WD
248
249 return -1;
250}
251
ec6f1499 252int ftstc(int file)
47d1a6e1
WD
253{
254 if (file < MAX_FILES)
5f032010 255 return console_tstc(file);
47d1a6e1
WD
256
257 return -1;
258}
259
ec6f1499 260void fputc(int file, const char c)
47d1a6e1
WD
261{
262 if (file < MAX_FILES)
5f032010 263 console_putc(file, c);
47d1a6e1
WD
264}
265
ec6f1499 266void fputs(int file, const char *s)
47d1a6e1
WD
267{
268 if (file < MAX_FILES)
5f032010 269 console_puts(file, s);
47d1a6e1
WD
270}
271
ec6f1499 272void fprintf(int file, const char *fmt, ...)
47d1a6e1
WD
273{
274 va_list args;
275 uint i;
6d0f6bcf 276 char printbuffer[CONFIG_SYS_PBSIZE];
47d1a6e1 277
ec6f1499 278 va_start(args, fmt);
47d1a6e1
WD
279
280 /* For this to work, printbuffer must be larger than
281 * anything we ever want to print.
282 */
ec6f1499
JCPV
283 i = vsprintf(printbuffer, fmt, args);
284 va_end(args);
47d1a6e1
WD
285
286 /* Send to desired file */
ec6f1499 287 fputs(file, printbuffer);
47d1a6e1
WD
288}
289
290/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
291
ec6f1499 292int getc(void)
47d1a6e1 293{
f5c3ba79
MJ
294#ifdef CONFIG_DISABLE_CONSOLE
295 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
296 return 0;
297#endif
298
47d1a6e1
WD
299 if (gd->flags & GD_FLG_DEVINIT) {
300 /* Get from the standard input */
ec6f1499 301 return fgetc(stdin);
47d1a6e1
WD
302 }
303
304 /* Send directly to the handler */
ec6f1499 305 return serial_getc();
47d1a6e1
WD
306}
307
ec6f1499 308int tstc(void)
47d1a6e1 309{
f5c3ba79
MJ
310#ifdef CONFIG_DISABLE_CONSOLE
311 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
312 return 0;
313#endif
314
47d1a6e1
WD
315 if (gd->flags & GD_FLG_DEVINIT) {
316 /* Test the standard input */
ec6f1499 317 return ftstc(stdin);
47d1a6e1
WD
318 }
319
320 /* Send directly to the handler */
ec6f1499 321 return serial_tstc();
47d1a6e1
WD
322}
323
ec6f1499 324void putc(const char c)
47d1a6e1 325{
a6cccaea
WD
326#ifdef CONFIG_SILENT_CONSOLE
327 if (gd->flags & GD_FLG_SILENT)
f6e20fc6 328 return;
a6cccaea
WD
329#endif
330
f5c3ba79
MJ
331#ifdef CONFIG_DISABLE_CONSOLE
332 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
333 return;
334#endif
335
47d1a6e1
WD
336 if (gd->flags & GD_FLG_DEVINIT) {
337 /* Send to the standard output */
ec6f1499 338 fputc(stdout, c);
47d1a6e1
WD
339 } else {
340 /* Send directly to the handler */
ec6f1499 341 serial_putc(c);
47d1a6e1
WD
342 }
343}
344
ec6f1499 345void puts(const char *s)
47d1a6e1 346{
a6cccaea
WD
347#ifdef CONFIG_SILENT_CONSOLE
348 if (gd->flags & GD_FLG_SILENT)
349 return;
350#endif
351
f5c3ba79
MJ
352#ifdef CONFIG_DISABLE_CONSOLE
353 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
354 return;
355#endif
356
47d1a6e1
WD
357 if (gd->flags & GD_FLG_DEVINIT) {
358 /* Send to the standard output */
ec6f1499 359 fputs(stdout, s);
47d1a6e1
WD
360 } else {
361 /* Send directly to the handler */
ec6f1499 362 serial_puts(s);
47d1a6e1
WD
363 }
364}
365
ec6f1499 366void printf(const char *fmt, ...)
47d1a6e1
WD
367{
368 va_list args;
369 uint i;
6d0f6bcf 370 char printbuffer[CONFIG_SYS_PBSIZE];
47d1a6e1 371
ec6f1499 372 va_start(args, fmt);
47d1a6e1
WD
373
374 /* For this to work, printbuffer must be larger than
375 * anything we ever want to print.
376 */
ec6f1499
JCPV
377 i = vsprintf(printbuffer, fmt, args);
378 va_end(args);
47d1a6e1
WD
379
380 /* Print the string */
ec6f1499 381 puts(printbuffer);
47d1a6e1
WD
382}
383
ec6f1499 384void vprintf(const char *fmt, va_list args)
6dd652fa
WD
385{
386 uint i;
6d0f6bcf 387 char printbuffer[CONFIG_SYS_PBSIZE];
6dd652fa
WD
388
389 /* For this to work, printbuffer must be larger than
390 * anything we ever want to print.
391 */
ec6f1499 392 i = vsprintf(printbuffer, fmt, args);
6dd652fa
WD
393
394 /* Print the string */
ec6f1499 395 puts(printbuffer);
6dd652fa
WD
396}
397
47d1a6e1
WD
398/* test if ctrl-c was pressed */
399static int ctrlc_disabled = 0; /* see disable_ctrl() */
400static int ctrlc_was_pressed = 0;
ec6f1499 401int ctrlc(void)
47d1a6e1 402{
47d1a6e1 403 if (!ctrlc_disabled && gd->have_console) {
ec6f1499
JCPV
404 if (tstc()) {
405 switch (getc()) {
47d1a6e1
WD
406 case 0x03: /* ^C - Control C */
407 ctrlc_was_pressed = 1;
408 return 1;
409 default:
410 break;
411 }
412 }
413 }
414 return 0;
415}
416
417/* pass 1 to disable ctrlc() checking, 0 to enable.
418 * returns previous state
419 */
ec6f1499 420int disable_ctrlc(int disable)
47d1a6e1
WD
421{
422 int prev = ctrlc_disabled; /* save previous state */
423
424 ctrlc_disabled = disable;
425 return prev;
426}
427
428int had_ctrlc (void)
429{
430 return ctrlc_was_pressed;
431}
432
ec6f1499 433void clear_ctrlc(void)
47d1a6e1
WD
434{
435 ctrlc_was_pressed = 0;
436}
437
438#ifdef CONFIG_MODEM_SUPPORT_DEBUG
439char screen[1024];
440char *cursor = screen;
441int once = 0;
442inline void dbg(const char *fmt, ...)
443{
444 va_list args;
445 uint i;
6d0f6bcf 446 char printbuffer[CONFIG_SYS_PBSIZE];
47d1a6e1
WD
447
448 if (!once) {
449 memset(screen, 0, sizeof(screen));
450 once++;
451 }
452
453 va_start(args, fmt);
454
455 /* For this to work, printbuffer must be larger than
456 * anything we ever want to print.
457 */
458 i = vsprintf(printbuffer, fmt, args);
459 va_end(args);
460
ec6f1499
JCPV
461 if ((screen + sizeof(screen) - 1 - cursor)
462 < strlen(printbuffer) + 1) {
47d1a6e1
WD
463 memset(screen, 0, sizeof(screen));
464 cursor = screen;
465 }
466 sprintf(cursor, printbuffer);
467 cursor += strlen(printbuffer);
468
469}
470#else
471inline void dbg(const char *fmt, ...)
472{
473}
474#endif
475
476/** U-Boot INIT FUNCTIONS *************************************************/
477
52cb4d4f 478struct stdio_dev *search_device(int flags, char *name)
c1de7a6d 479{
52cb4d4f 480 struct stdio_dev *dev;
c1de7a6d 481
52cb4d4f 482 dev = stdio_get_by_name(name);
c1de7a6d 483
ec6f1499 484 if (dev && (dev->flags & flags))
c1de7a6d
JCPV
485 return dev;
486
487 return NULL;
488}
489
ec6f1499 490int console_assign(int file, char *devname)
47d1a6e1 491{
c1de7a6d 492 int flag;
52cb4d4f 493 struct stdio_dev *dev;
47d1a6e1
WD
494
495 /* Check for valid file */
496 switch (file) {
497 case stdin:
498 flag = DEV_FLAGS_INPUT;
499 break;
500 case stdout:
501 case stderr:
502 flag = DEV_FLAGS_OUTPUT;
503 break;
504 default:
505 return -1;
506 }
507
508 /* Check for valid device name */
509
c1de7a6d 510 dev = search_device(flag, devname);
47d1a6e1 511
ec6f1499
JCPV
512 if (dev)
513 return console_setfile(file, dev);
47d1a6e1
WD
514
515 return -1;
516}
517
518/* Called before relocation - use serial functions */
ec6f1499 519int console_init_f(void)
47d1a6e1 520{
47d1a6e1 521 gd->have_console = 1;
f72da340
WD
522
523#ifdef CONFIG_SILENT_CONSOLE
524 if (getenv("silent") != NULL)
525 gd->flags |= GD_FLG_SILENT;
526#endif
527
ec6f1499 528 return 0;
47d1a6e1
WD
529}
530
7e3be7cf
JCPV
531void stdio_print_current_devices(void)
532{
52f6c34c 533#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
7e3be7cf
JCPV
534 /* Print information */
535 puts("In: ");
536 if (stdio_devices[stdin] == NULL) {
537 puts("No input devices available!\n");
538 } else {
539 printf ("%s\n", stdio_devices[stdin]->name);
540 }
541
542 puts("Out: ");
543 if (stdio_devices[stdout] == NULL) {
544 puts("No output devices available!\n");
545 } else {
546 printf ("%s\n", stdio_devices[stdout]->name);
547 }
548
549 puts("Err: ");
550 if (stdio_devices[stderr] == NULL) {
551 puts("No error devices available!\n");
552 } else {
553 printf ("%s\n", stdio_devices[stderr]->name);
554 }
555#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
556}
557
6d0f6bcf 558#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
47d1a6e1 559/* Called after the relocation - use desired console functions */
ec6f1499 560int console_init_r(void)
47d1a6e1
WD
561{
562 char *stdinname, *stdoutname, *stderrname;
52cb4d4f 563 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
6d0f6bcf 564#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
6e592385 565 int i;
6d0f6bcf 566#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
16a28ef2
GJ
567#ifdef CONFIG_CONSOLE_MUX
568 int iomux_err = 0;
569#endif
47d1a6e1
WD
570
571 /* set default handlers at first */
27b207fd
WD
572 gd->jt[XF_getc] = serial_getc;
573 gd->jt[XF_tstc] = serial_tstc;
574 gd->jt[XF_putc] = serial_putc;
575 gd->jt[XF_puts] = serial_puts;
576 gd->jt[XF_printf] = serial_printf;
47d1a6e1
WD
577
578 /* stdin stdout and stderr are in environment */
579 /* scan for it */
ec6f1499
JCPV
580 stdinname = getenv("stdin");
581 stdoutname = getenv("stdout");
582 stderrname = getenv("stderr");
47d1a6e1 583
53677ef1 584 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
ec6f1499
JCPV
585 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
586 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
587 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
16a28ef2
GJ
588#ifdef CONFIG_CONSOLE_MUX
589 iomux_err = iomux_doenv(stdin, stdinname);
590 iomux_err += iomux_doenv(stdout, stdoutname);
591 iomux_err += iomux_doenv(stderr, stderrname);
592 if (!iomux_err)
593 /* Successful, so skip all the code below. */
594 goto done;
595#endif
47d1a6e1
WD
596 }
597 /* if the devices are overwritten or not found, use default device */
598 if (inputdev == NULL) {
ec6f1499 599 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
47d1a6e1
WD
600 }
601 if (outputdev == NULL) {
ec6f1499 602 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
47d1a6e1
WD
603 }
604 if (errdev == NULL) {
ec6f1499 605 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
47d1a6e1
WD
606 }
607 /* Initializes output console first */
608 if (outputdev != NULL) {
16a28ef2 609 /* need to set a console if not done above. */
5f032010 610 console_doenv(stdout, outputdev);
47d1a6e1
WD
611 }
612 if (errdev != NULL) {
16a28ef2 613 /* need to set a console if not done above. */
5f032010 614 console_doenv(stderr, errdev);
47d1a6e1
WD
615 }
616 if (inputdev != NULL) {
16a28ef2 617 /* need to set a console if not done above. */
5f032010 618 console_doenv(stdin, inputdev);
47d1a6e1
WD
619 }
620
16a28ef2
GJ
621#ifdef CONFIG_CONSOLE_MUX
622done:
623#endif
624
5f535fe1
WD
625 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
626
7e3be7cf 627 stdio_print_current_devices();
47d1a6e1 628
6d0f6bcf 629#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
47d1a6e1
WD
630 /* set the environment variables (will overwrite previous env settings) */
631 for (i = 0; i < 3; i++) {
ec6f1499 632 setenv(stdio_names[i], stdio_devices[i]->name);
47d1a6e1 633 }
6d0f6bcf 634#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
47d1a6e1
WD
635
636#if 0
637 /* If nothing usable installed, use only the initial console */
638 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
ec6f1499 639 return 0;
47d1a6e1 640#endif
ec6f1499 641 return 0;
47d1a6e1
WD
642}
643
6d0f6bcf 644#else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
47d1a6e1
WD
645
646/* Called after the relocation - use desired console functions */
ec6f1499 647int console_init_r(void)
47d1a6e1 648{
52cb4d4f 649 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
c1de7a6d 650 int i;
52cb4d4f 651 struct list_head *list = stdio_get_list();
c1de7a6d 652 struct list_head *pos;
52cb4d4f 653 struct stdio_dev *dev;
47d1a6e1 654
d791b1dc 655#ifdef CONFIG_SPLASH_SCREEN
ec6f1499
JCPV
656 /*
657 * suppress all output if splash screen is enabled and we have
a7490816
AG
658 * a bmp to display. We redirect the output from frame buffer
659 * console to serial console in this case or suppress it if
660 * "silent" mode was requested.
ec6f1499 661 */
a7490816
AG
662 if (getenv("splashimage") != NULL) {
663 if (!(gd->flags & GD_FLG_SILENT))
664 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
665 }
f72da340
WD
666#endif
667
47d1a6e1 668 /* Scan devices looking for input and output devices */
c1de7a6d 669 list_for_each(pos, list) {
52cb4d4f 670 dev = list_entry(pos, struct stdio_dev, list);
47d1a6e1
WD
671
672 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
673 inputdev = dev;
674 }
675 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
676 outputdev = dev;
677 }
c1de7a6d
JCPV
678 if(inputdev && outputdev)
679 break;
47d1a6e1
WD
680 }
681
682 /* Initializes output console first */
683 if (outputdev != NULL) {
ec6f1499
JCPV
684 console_setfile(stdout, outputdev);
685 console_setfile(stderr, outputdev);
16a28ef2
GJ
686#ifdef CONFIG_CONSOLE_MUX
687 console_devices[stdout][0] = outputdev;
688 console_devices[stderr][0] = outputdev;
689#endif
47d1a6e1
WD
690 }
691
692 /* Initializes input console */
693 if (inputdev != NULL) {
ec6f1499 694 console_setfile(stdin, inputdev);
16a28ef2
GJ
695#ifdef CONFIG_CONSOLE_MUX
696 console_devices[stdin][0] = inputdev;
697#endif
47d1a6e1
WD
698 }
699
5f535fe1
WD
700 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
701
7e3be7cf 702 stdio_print_current_devices();
47d1a6e1
WD
703
704 /* Setting environment variables */
705 for (i = 0; i < 3; i++) {
ec6f1499 706 setenv(stdio_names[i], stdio_devices[i]->name);
47d1a6e1
WD
707 }
708
709#if 0
710 /* If nothing usable installed, use only the initial console */
711 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
ec6f1499 712 return 0;
47d1a6e1
WD
713#endif
714
ec6f1499 715 return 0;
47d1a6e1
WD
716}
717
6d0f6bcf 718#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */