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