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