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