3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <debug_uart.h>
16 #include <stdio_dev.h>
18 #include <environment.h>
20 DECLARE_GLOBAL_DATA_PTR;
22 static int on_console(const char *name, const char *value, enum env_op op,
27 /* Check for console redirection */
28 if (strcmp(name, "stdin") == 0)
30 else if (strcmp(name, "stdout") == 0)
32 else if (strcmp(name, "stderr") == 0)
35 /* if not actually setting a console variable, we don't care */
36 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
41 case env_op_overwrite:
43 #ifdef CONFIG_CONSOLE_MUX
44 if (iomux_doenv(console, value))
47 /* Try assigning specified device */
48 if (console_assign(console, value) < 0)
50 #endif /* CONFIG_CONSOLE_MUX */
54 if ((flags & H_FORCE) == 0)
55 printf("Can't delete \"%s\"\n", name);
62 U_BOOT_ENV_CALLBACK(console, on_console);
64 #ifdef CONFIG_SILENT_CONSOLE
65 static int on_silent(const char *name, const char *value, enum env_op op,
68 #ifndef CONFIG_SILENT_CONSOLE_UPDATE_ON_SET
69 if (flags & H_INTERACTIVE)
72 #ifndef CONFIG_SILENT_CONSOLE_UPDATE_ON_RELOC
73 if ((flags & H_INTERACTIVE) == 0)
78 gd->flags |= GD_FLG_SILENT;
80 gd->flags &= ~GD_FLG_SILENT;
84 U_BOOT_ENV_CALLBACK(silent, on_silent);
87 #ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
89 * if overwrite_console returns 1, the stdin, stderr and stdout
90 * are switched to the serial port, else the settings in the
91 * environment are used
93 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
94 extern int overwrite_console(void);
95 #define OVERWRITE_CONSOLE overwrite_console()
97 #define OVERWRITE_CONSOLE 0
98 #endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
100 #endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
102 static int console_setfile(int file, struct stdio_dev * dev)
113 /* Start new device */
115 error = dev->start(dev);
116 /* If it's not started dont use it */
121 /* Assign the new device (leaving the existing one started) */
122 stdio_devices[file] = dev;
125 * Update monitor functions
126 * (to use the console stuff by other applications)
136 gd->jt->printf = printf;
141 default: /* Invalid file ID */
147 #if defined(CONFIG_CONSOLE_MUX)
148 /** Console I/O multiplexing *******************************************/
150 static struct stdio_dev *tstcdev;
151 struct stdio_dev **console_devices[MAX_FILES];
152 int cd_count[MAX_FILES];
155 * This depends on tstc() always being called before getc().
156 * This is guaranteed to be true because this routine is called
157 * only from fgetc() which assures it.
158 * No attempt is made to demultiplex multiple input sources.
160 static int console_getc(int file)
164 /* This is never called with testcdev == NULL */
165 ret = tstcdev->getc(tstcdev);
170 static int console_tstc(int file)
173 struct stdio_dev *dev;
176 for (i = 0; i < cd_count[file]; i++) {
177 dev = console_devices[file][i];
178 if (dev->tstc != NULL) {
179 ret = dev->tstc(dev);
192 static void console_putc(int file, const char c)
195 struct stdio_dev *dev;
197 for (i = 0; i < cd_count[file]; i++) {
198 dev = console_devices[file][i];
199 if (dev->putc != NULL)
204 #ifdef CONFIG_PRE_CONSOLE_BUFFER
205 static void console_puts_noserial(int file, const char *s)
208 struct stdio_dev *dev;
210 for (i = 0; i < cd_count[file]; i++) {
211 dev = console_devices[file][i];
212 if (dev->puts != NULL && strcmp(dev->name, "serial") != 0)
218 static void console_puts(int file, const char *s)
221 struct stdio_dev *dev;
223 for (i = 0; i < cd_count[file]; i++) {
224 dev = console_devices[file][i];
225 if (dev->puts != NULL)
230 static inline void console_printdevs(int file)
232 iomux_printdevs(file);
235 static inline void console_doenv(int file, struct stdio_dev *dev)
237 iomux_doenv(file, dev->name);
240 static inline int console_getc(int file)
242 return stdio_devices[file]->getc(stdio_devices[file]);
245 static inline int console_tstc(int file)
247 return stdio_devices[file]->tstc(stdio_devices[file]);
250 static inline void console_putc(int file, const char c)
252 stdio_devices[file]->putc(stdio_devices[file], c);
255 #ifdef CONFIG_PRE_CONSOLE_BUFFER
256 static inline void console_puts_noserial(int file, const char *s)
258 if (strcmp(stdio_devices[file]->name, "serial") != 0)
259 stdio_devices[file]->puts(stdio_devices[file], s);
263 static inline void console_puts(int file, const char *s)
265 stdio_devices[file]->puts(stdio_devices[file], s);
268 static inline void console_printdevs(int file)
270 printf("%s\n", stdio_devices[file]->name);
273 static inline void console_doenv(int file, struct stdio_dev *dev)
275 console_setfile(file, dev);
277 #endif /* defined(CONFIG_CONSOLE_MUX) */
279 /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
281 int serial_printf(const char *fmt, ...)
285 char printbuffer[CONFIG_SYS_PBSIZE];
289 /* For this to work, printbuffer must be larger than
290 * anything we ever want to print.
292 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
295 serial_puts(printbuffer);
301 if (file < MAX_FILES) {
302 #if defined(CONFIG_CONSOLE_MUX)
304 * Effectively poll for input wherever it may be available.
308 * Upper layer may have already called tstc() so
309 * check for that first.
312 return console_getc(file);
314 #ifdef CONFIG_WATCHDOG
316 * If the watchdog must be rate-limited then it should
317 * already be handled in board-specific code.
323 return console_getc(file);
332 if (file < MAX_FILES)
333 return console_tstc(file);
338 void fputc(int file, const char c)
340 if (file < MAX_FILES)
341 console_putc(file, c);
344 void fputs(int file, const char *s)
346 if (file < MAX_FILES)
347 console_puts(file, s);
350 int fprintf(int file, const char *fmt, ...)
354 char printbuffer[CONFIG_SYS_PBSIZE];
358 /* For this to work, printbuffer must be larger than
359 * anything we ever want to print.
361 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
364 /* Send to desired file */
365 fputs(file, printbuffer);
369 /** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
373 #ifdef CONFIG_DISABLE_CONSOLE
374 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
378 if (!gd->have_console)
381 #ifdef CONFIG_CONSOLE_RECORD
382 if (gd->console_in.start) {
385 ch = membuff_getbyte(&gd->console_in);
390 if (gd->flags & GD_FLG_DEVINIT) {
391 /* Get from the standard input */
395 /* Send directly to the handler */
396 return serial_getc();
401 #ifdef CONFIG_DISABLE_CONSOLE
402 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
406 if (!gd->have_console)
408 #ifdef CONFIG_CONSOLE_RECORD
409 if (gd->console_in.start) {
410 if (membuff_peekbyte(&gd->console_in) != -1)
414 if (gd->flags & GD_FLG_DEVINIT) {
415 /* Test the standard input */
419 /* Send directly to the handler */
420 return serial_tstc();
423 #define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
424 #define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
426 #ifdef CONFIG_PRE_CONSOLE_BUFFER
427 #define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
429 static void pre_console_putc(const char c)
431 char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR;
433 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
436 static void pre_console_puts(const char *s)
439 pre_console_putc(*s++);
442 static void print_pre_console_buffer(int flushpoint)
444 unsigned long in = 0, out = 0;
445 char *buf_in = (char *)CONFIG_PRE_CON_BUF_ADDR;
446 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1];
448 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
449 in = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
451 while (in < gd->precon_buf_idx)
452 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
456 switch (flushpoint) {
457 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
460 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
461 console_puts_noserial(stdout, buf_out);
466 static inline void pre_console_putc(const char c) {}
467 static inline void pre_console_puts(const char *s) {}
468 static inline void print_pre_console_buffer(int flushpoint) {}
471 void putc(const char c)
473 #ifdef CONFIG_SANDBOX
474 /* sandbox can send characters to stdout before it has a console */
475 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
480 #ifdef CONFIG_DEBUG_UART
481 /* if we don't have a console yet, use the debug UART */
482 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
487 #ifdef CONFIG_CONSOLE_RECORD
488 if (gd && (gd->flags & GD_FLG_RECORD) && gd->console_out.start)
489 membuff_putbyte(&gd->console_out, c);
491 #ifdef CONFIG_SILENT_CONSOLE
492 if (gd->flags & GD_FLG_SILENT)
496 #ifdef CONFIG_DISABLE_CONSOLE
497 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
501 if (!gd->have_console)
502 return pre_console_putc(c);
504 if (gd->flags & GD_FLG_DEVINIT) {
505 /* Send to the standard output */
508 /* Send directly to the handler */
514 void puts(const char *s)
516 #ifdef CONFIG_SANDBOX
517 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
522 #ifdef CONFIG_DEBUG_UART
523 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
534 #ifdef CONFIG_CONSOLE_RECORD
535 if (gd && (gd->flags & GD_FLG_RECORD) && gd->console_out.start)
536 membuff_put(&gd->console_out, s, strlen(s));
538 #ifdef CONFIG_SILENT_CONSOLE
539 if (gd->flags & GD_FLG_SILENT)
543 #ifdef CONFIG_DISABLE_CONSOLE
544 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
548 if (!gd->have_console)
549 return pre_console_puts(s);
551 if (gd->flags & GD_FLG_DEVINIT) {
552 /* Send to the standard output */
555 /* Send directly to the handler */
561 int printf(const char *fmt, ...)
565 char printbuffer[CONFIG_SYS_PBSIZE];
570 * For this to work, printbuffer must be larger than
571 * anything we ever want to print.
573 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
576 /* Print the string */
581 int vprintf(const char *fmt, va_list args)
584 char printbuffer[CONFIG_SYS_PBSIZE];
587 * For this to work, printbuffer must be larger than
588 * anything we ever want to print.
590 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
592 /* Print the string */
597 #ifdef CONFIG_CONSOLE_RECORD
598 int console_record_init(void)
602 ret = membuff_new(&gd->console_out, CONFIG_CONSOLE_RECORD_OUT_SIZE);
605 ret = membuff_new(&gd->console_in, CONFIG_CONSOLE_RECORD_IN_SIZE);
610 void console_record_reset(void)
612 membuff_purge(&gd->console_out);
613 membuff_purge(&gd->console_in);
616 void console_record_reset_enable(void)
618 console_record_reset();
619 gd->flags |= GD_FLG_RECORD;
623 /* test if ctrl-c was pressed */
624 static int ctrlc_disabled = 0; /* see disable_ctrl() */
625 static int ctrlc_was_pressed = 0;
628 #ifndef CONFIG_SANDBOX
629 if (!ctrlc_disabled && gd->have_console) {
632 case 0x03: /* ^C - Control C */
633 ctrlc_was_pressed = 1;
644 /* Reads user's confirmation.
645 Returns 1 if user's input is "y", "Y", "yes" or "YES"
647 int confirm_yesno(void)
656 while (i < sizeof(str_input)) {
657 str_input[i] = getc();
659 if (str_input[i] == '\r')
664 if (strncmp(str_input, "y\r", 2) == 0 ||
665 strncmp(str_input, "Y\r", 2) == 0 ||
666 strncmp(str_input, "yes\r", 4) == 0 ||
667 strncmp(str_input, "YES\r", 4) == 0)
671 /* pass 1 to disable ctrlc() checking, 0 to enable.
672 * returns previous state
674 int disable_ctrlc(int disable)
676 int prev = ctrlc_disabled; /* save previous state */
678 ctrlc_disabled = disable;
684 return ctrlc_was_pressed;
687 void clear_ctrlc(void)
689 ctrlc_was_pressed = 0;
692 #ifdef CONFIG_MODEM_SUPPORT_DEBUG
694 char *cursor = screen;
696 inline void dbg(const char *fmt, ...)
700 char printbuffer[CONFIG_SYS_PBSIZE];
703 memset(screen, 0, sizeof(screen));
709 /* For this to work, printbuffer must be larger than
710 * anything we ever want to print.
712 i = vsnprintf(printbuffer, sizeof(printbuffer), fmt, args);
715 if ((screen + sizeof(screen) - 1 - cursor)
716 < strlen(printbuffer) + 1) {
717 memset(screen, 0, sizeof(screen));
720 sprintf(cursor, printbuffer);
721 cursor += strlen(printbuffer);
725 static inline void dbg(const char *fmt, ...)
730 /** U-Boot INIT FUNCTIONS *************************************************/
732 struct stdio_dev *search_device(int flags, const char *name)
734 struct stdio_dev *dev;
736 dev = stdio_get_by_name(name);
738 if (dev && (dev->flags & flags))
744 int console_assign(int file, const char *devname)
747 struct stdio_dev *dev;
749 /* Check for valid file */
752 flag = DEV_FLAGS_INPUT;
756 flag = DEV_FLAGS_OUTPUT;
762 /* Check for valid device name */
764 dev = search_device(flag, devname);
767 return console_setfile(file, dev);
772 /* Called before relocation - use serial functions */
773 int console_init_f(void)
775 gd->have_console = 1;
777 #ifdef CONFIG_SILENT_CONSOLE
778 if (getenv("silent") != NULL)
779 gd->flags |= GD_FLG_SILENT;
782 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
787 void stdio_print_current_devices(void)
789 /* Print information */
791 if (stdio_devices[stdin] == NULL) {
792 puts("No input devices available!\n");
794 printf ("%s\n", stdio_devices[stdin]->name);
798 if (stdio_devices[stdout] == NULL) {
799 puts("No output devices available!\n");
801 printf ("%s\n", stdio_devices[stdout]->name);
805 if (stdio_devices[stderr] == NULL) {
806 puts("No error devices available!\n");
808 printf ("%s\n", stdio_devices[stderr]->name);
812 #ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
813 /* Called after the relocation - use desired console functions */
814 int console_init_r(void)
816 char *stdinname, *stdoutname, *stderrname;
817 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
818 #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
820 #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
821 #ifdef CONFIG_CONSOLE_MUX
825 /* set default handlers at first */
826 gd->jt->getc = serial_getc;
827 gd->jt->tstc = serial_tstc;
828 gd->jt->putc = serial_putc;
829 gd->jt->puts = serial_puts;
830 gd->jt->printf = serial_printf;
832 /* stdin stdout and stderr are in environment */
834 stdinname = getenv("stdin");
835 stdoutname = getenv("stdout");
836 stderrname = getenv("stderr");
838 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
839 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
840 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
841 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
842 #ifdef CONFIG_CONSOLE_MUX
843 iomux_err = iomux_doenv(stdin, stdinname);
844 iomux_err += iomux_doenv(stdout, stdoutname);
845 iomux_err += iomux_doenv(stderr, stderrname);
847 /* Successful, so skip all the code below. */
851 /* if the devices are overwritten or not found, use default device */
852 if (inputdev == NULL) {
853 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
855 if (outputdev == NULL) {
856 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
858 if (errdev == NULL) {
859 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
861 /* Initializes output console first */
862 if (outputdev != NULL) {
863 /* need to set a console if not done above. */
864 console_doenv(stdout, outputdev);
866 if (errdev != NULL) {
867 /* need to set a console if not done above. */
868 console_doenv(stderr, errdev);
870 if (inputdev != NULL) {
871 /* need to set a console if not done above. */
872 console_doenv(stdin, inputdev);
875 #ifdef CONFIG_CONSOLE_MUX
879 #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
880 stdio_print_current_devices();
881 #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
883 #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
884 /* set the environment variables (will overwrite previous env settings) */
885 for (i = 0; i < 3; i++) {
886 setenv(stdio_names[i], stdio_devices[i]->name);
888 #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
890 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
893 /* If nothing usable installed, use only the initial console */
894 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
897 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL);
901 #else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
903 /* Called after the relocation - use desired console functions */
904 int console_init_r(void)
906 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
908 struct list_head *list = stdio_get_list();
909 struct list_head *pos;
910 struct stdio_dev *dev;
912 #ifdef CONFIG_SPLASH_SCREEN
914 * suppress all output if splash screen is enabled and we have
915 * a bmp to display. We redirect the output from frame buffer
916 * console to serial console in this case or suppress it if
917 * "silent" mode was requested.
919 if (getenv("splashimage") != NULL) {
920 if (!(gd->flags & GD_FLG_SILENT))
921 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
925 /* Scan devices looking for input and output devices */
926 list_for_each(pos, list) {
927 dev = list_entry(pos, struct stdio_dev, list);
929 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
932 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
935 if(inputdev && outputdev)
939 /* Initializes output console first */
940 if (outputdev != NULL) {
941 console_setfile(stdout, outputdev);
942 console_setfile(stderr, outputdev);
943 #ifdef CONFIG_CONSOLE_MUX
944 console_devices[stdout][0] = outputdev;
945 console_devices[stderr][0] = outputdev;
949 /* Initializes input console */
950 if (inputdev != NULL) {
951 console_setfile(stdin, inputdev);
952 #ifdef CONFIG_CONSOLE_MUX
953 console_devices[stdin][0] = inputdev;
957 #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
958 stdio_print_current_devices();
959 #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
961 /* Setting environment variables */
962 for (i = 0; i < 3; i++) {
963 setenv(stdio_names[i], stdio_devices[i]->name);
966 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
969 /* If nothing usable installed, use only the initial console */
970 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
973 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL);
977 #endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */