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