1 // SPDX-License-Identifier: GPL-2.0+
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
9 #include <debug_uart.h>
18 #include <stdio_dev.h>
20 #include <env_internal.h>
22 #include <asm/global_data.h>
23 #include <linux/delay.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 static int on_console(const char *name, const char *value, enum env_op op,
32 /* Check for console redirection */
33 if (strcmp(name, "stdin") == 0)
35 else if (strcmp(name, "stdout") == 0)
37 else if (strcmp(name, "stderr") == 0)
40 /* if not actually setting a console variable, we don't care */
41 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
46 case env_op_overwrite:
48 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
49 if (iomux_doenv(console, value))
52 /* Try assigning specified device */
53 if (console_assign(console, value) < 0)
60 if ((flags & H_FORCE) == 0)
61 printf("Can't delete \"%s\"\n", name);
68 U_BOOT_ENV_CALLBACK(console, on_console);
70 #ifdef CONFIG_SILENT_CONSOLE
71 static int on_silent(const char *name, const char *value, enum env_op op,
74 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET))
75 if (flags & H_INTERACTIVE)
78 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC))
79 if ((flags & H_INTERACTIVE) == 0)
83 gd->flags |= GD_FLG_SILENT;
85 gd->flags &= ~GD_FLG_SILENT;
89 U_BOOT_ENV_CALLBACK(silent, on_silent);
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)
96 if (!(gd->flags & GD_FLG_RECORD))
98 if (gd->console_out.start &&
99 !membuff_putbyte((struct membuff *)&gd->console_out, c))
100 gd->flags |= GD_FLG_RECORD_OVF;
103 static void console_record_puts(const char *s)
105 if (!(gd->flags & GD_FLG_RECORD))
107 if (gd->console_out.start) {
110 if (membuff_put((struct membuff *)&gd->console_out, s, len) !=
112 gd->flags |= GD_FLG_RECORD_OVF;
116 static int console_record_getc(void)
118 if (!(gd->flags & GD_FLG_RECORD))
120 if (!gd->console_in.start)
123 return membuff_getbyte((struct membuff *)&gd->console_in);
126 static int console_record_tstc(void)
128 if (!(gd->flags & GD_FLG_RECORD))
130 if (gd->console_in.start) {
131 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
137 static void console_record_putc(char c)
141 static void console_record_puts(const char *s)
145 static int console_record_getc(void)
150 static int console_record_tstc(void)
156 #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
158 * if overwrite_console returns 1, the stdin, stderr and stdout
159 * are switched to the serial port, else the settings in the
160 * environment are used
162 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
163 extern int overwrite_console(void);
164 #define OVERWRITE_CONSOLE overwrite_console()
166 #define OVERWRITE_CONSOLE 0
167 #endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
169 #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
171 static int console_setfile(int file, struct stdio_dev * dev)
182 error = console_start(file, dev);
186 /* Assign the new device (leaving the existing one started) */
187 stdio_devices[file] = dev;
190 * Update monitor functions
191 * (to use the console stuff by other applications)
195 gd->jt->getc = getchar;
201 gd->jt->printf = printf;
206 default: /* Invalid file ID */
213 * console_dev_is_serial() - Check if a stdio device is a serial device
215 * @sdev: Device to check
216 * @return true if this device is in the serial uclass (or for pre-driver-model,
217 * whether it is called "serial".
219 static bool console_dev_is_serial(struct stdio_dev *sdev)
223 if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) {
224 struct udevice *dev = sdev->priv;
226 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
228 is_serial = !strcmp(sdev->name, "serial");
234 #if CONFIG_IS_ENABLED(CONSOLE_MUX)
235 /** Console I/O multiplexing *******************************************/
237 /* tstcdev: save the last stdio device with pending characters, with tstc != 0 */
238 static struct stdio_dev *tstcdev;
239 struct stdio_dev **console_devices[MAX_FILES];
240 int cd_count[MAX_FILES];
242 static void console_devices_set(int file, struct stdio_dev *dev)
244 console_devices[file][0] = dev;
249 * console_needs_start_stop() - check if we need to start or stop the STDIO device
251 * @sdev: STDIO device in question
253 * This function checks if we need to start or stop the stdio device used for
254 * a console. For IOMUX case it simply enforces one time start and one time
255 * stop of the device independently of how many STDIO files are using it. In
256 * other words, we start console once before first STDIO device wants it and
257 * stop after the last is gone.
259 static bool console_needs_start_stop(int file, struct stdio_dev *sdev)
263 for (i = 0; i < ARRAY_SIZE(cd_count); i++) {
267 if (iomux_match_device(console_devices[i], cd_count[i], sdev) >= 0)
274 * This depends on tstc() always being called before getchar().
275 * This is guaranteed to be true because this routine is called
276 * only from fgetc() which assures it.
277 * No attempt is made to demultiplex multiple input sources.
279 static int console_getc(int file)
283 /* This is never called with testcdev == NULL */
284 ret = tstcdev->getc(tstcdev);
289 /* Upper layer may have already called tstc(): check the saved result */
290 static bool console_has_tstc(void)
295 static int console_tstc(int file)
298 struct stdio_dev *dev;
301 prev = disable_ctrlc(1);
302 for_each_console_dev(i, file, dev) {
303 if (dev->tstc != NULL) {
304 ret = dev->tstc(dev);
317 static void console_putc(int file, const char c)
320 struct stdio_dev *dev;
322 for_each_console_dev(i, file, dev) {
323 if (dev->putc != NULL)
329 * console_puts_select() - Output a string to all console devices
331 * @file: File number to output to (e,g, stdout, see stdio.h)
332 * @serial_only: true to output only to serial, false to output to everything
334 * @s: String to output
336 static void console_puts_select(int file, bool serial_only, const char *s)
339 struct stdio_dev *dev;
341 for_each_console_dev(i, file, dev) {
342 bool is_serial = console_dev_is_serial(dev);
344 if (dev->puts && serial_only == is_serial)
349 void console_puts_select_stderr(bool serial_only, const char *s)
351 console_puts_select(stderr, serial_only, s);
354 static void console_puts(int file, const char *s)
357 struct stdio_dev *dev;
359 for_each_console_dev(i, file, dev) {
360 if (dev->puts != NULL)
365 #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
366 static inline void console_doenv(int file, struct stdio_dev *dev)
368 iomux_doenv(file, dev->name);
373 static void console_devices_set(int file, struct stdio_dev *dev)
377 static inline bool console_needs_start_stop(int file, struct stdio_dev *sdev)
382 static inline int console_getc(int file)
384 return stdio_devices[file]->getc(stdio_devices[file]);
387 static bool console_has_tstc(void)
392 static inline int console_tstc(int file)
394 return stdio_devices[file]->tstc(stdio_devices[file]);
397 static inline void console_putc(int file, const char c)
399 stdio_devices[file]->putc(stdio_devices[file], c);
402 void console_puts_select(int file, bool serial_only, const char *s)
404 if (serial_only == console_dev_is_serial(stdio_devices[file]))
405 stdio_devices[file]->puts(stdio_devices[file], s);
408 static inline void console_puts(int file, const char *s)
410 stdio_devices[file]->puts(stdio_devices[file], s);
413 #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
414 static inline void console_doenv(int file, struct stdio_dev *dev)
416 console_setfile(file, dev);
419 #endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
421 static void __maybe_unused console_setfile_and_devices(int file, struct stdio_dev *dev)
423 console_setfile(file, dev);
424 console_devices_set(file, dev);
427 int console_start(int file, struct stdio_dev *sdev)
431 if (!console_needs_start_stop(file, sdev))
434 /* Start new device */
436 error = sdev->start(sdev);
437 /* If it's not started don't use it */
444 void console_stop(int file, struct stdio_dev *sdev)
446 if (!console_needs_start_stop(file, sdev))
453 /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
455 int serial_printf(const char *fmt, ...)
459 char printbuffer[CONFIG_SYS_PBSIZE];
463 /* For this to work, printbuffer must be larger than
464 * anything we ever want to print.
466 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
469 serial_puts(printbuffer);
475 if (file < MAX_FILES) {
477 * Effectively poll for input wherever it may be available.
481 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
483 * Upper layer may have already called tstc() so
484 * check for that first.
486 if (console_has_tstc())
487 return console_getc(file);
490 if (console_tstc(file))
491 return console_getc(file);
495 * If the watchdog must be rate-limited then it should
496 * already be handled in board-specific code.
498 if (IS_ENABLED(CONFIG_WATCHDOG))
508 if (file < MAX_FILES)
509 return console_tstc(file);
514 void fputc(int file, const char c)
516 if (file < MAX_FILES)
517 console_putc(file, c);
520 void fputs(int file, const char *s)
522 if (file < MAX_FILES)
523 console_puts(file, s);
526 int fprintf(int file, const char *fmt, ...)
530 char printbuffer[CONFIG_SYS_PBSIZE];
534 /* For this to work, printbuffer must be larger than
535 * anything we ever want to print.
537 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
540 /* Send to desired file */
541 fputs(file, printbuffer);
545 /** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
551 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
554 if (!gd->have_console)
557 ch = console_record_getc();
561 if (gd->flags & GD_FLG_DEVINIT) {
562 /* Get from the standard input */
566 /* Send directly to the handler */
567 return serial_getc();
572 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
575 if (!gd->have_console)
578 if (console_record_tstc())
581 if (gd->flags & GD_FLG_DEVINIT) {
582 /* Test the standard input */
586 /* Send directly to the handler */
587 return serial_tstc();
590 #define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
591 #define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
593 #if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
594 #define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
596 static void pre_console_putc(const char c)
600 buffer = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
602 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
604 unmap_sysmem(buffer);
607 static void pre_console_puts(const char *s)
610 pre_console_putc(*s++);
613 static void print_pre_console_buffer(int flushpoint)
615 unsigned long in = 0, out = 0;
616 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1];
619 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
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;
626 while (in < gd->precon_buf_idx)
627 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
628 unmap_sysmem(buf_in);
632 switch (flushpoint) {
633 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
636 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
637 console_puts_select(stdout, false, buf_out);
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) {}
647 void putc(const char c)
652 console_record_putc(c);
654 /* sandbox can send characters to stdout before it has a console */
655 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
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)) {
666 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
667 if (!(gd->flags & GD_FLG_DEVINIT))
672 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
675 if (!gd->have_console)
676 return pre_console_putc(c);
678 if (gd->flags & GD_FLG_DEVINIT) {
679 /* Send to the standard output */
682 /* Send directly to the handler */
688 void puts(const char *s)
693 console_record_puts(s);
695 /* sandbox can send characters to stdout before it has a console */
696 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
701 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
710 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
711 if (!(gd->flags & GD_FLG_DEVINIT))
716 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
719 if (!gd->have_console)
720 return pre_console_puts(s);
722 if (gd->flags & GD_FLG_DEVINIT) {
723 /* Send to the standard output */
726 /* Send directly to the handler */
732 #ifdef CONFIG_CONSOLE_RECORD
733 int console_record_init(void)
737 ret = membuff_new((struct membuff *)&gd->console_out,
738 CONFIG_CONSOLE_RECORD_OUT_SIZE);
741 ret = membuff_new((struct membuff *)&gd->console_in,
742 CONFIG_CONSOLE_RECORD_IN_SIZE);
747 void console_record_reset(void)
749 membuff_purge((struct membuff *)&gd->console_out);
750 membuff_purge((struct membuff *)&gd->console_in);
751 gd->flags &= ~GD_FLG_RECORD_OVF;
754 int console_record_reset_enable(void)
756 console_record_reset();
757 gd->flags |= GD_FLG_RECORD;
762 int console_record_readline(char *str, int maxlen)
764 if (gd->flags & GD_FLG_RECORD_OVF)
767 return membuff_readline((struct membuff *)&gd->console_out, str,
771 int console_record_avail(void)
773 return membuff_avail((struct membuff *)&gd->console_out);
778 /* test if ctrl-c was pressed */
779 static int ctrlc_disabled = 0; /* see disable_ctrl() */
780 static int ctrlc_was_pressed = 0;
783 if (!ctrlc_disabled && gd->have_console) {
786 case 0x03: /* ^C - Control C */
787 ctrlc_was_pressed = 1;
797 /* Reads user's confirmation.
798 Returns 1 if user's input is "y", "Y", "yes" or "YES"
800 int confirm_yesno(void)
809 while (i < sizeof(str_input)) {
810 str_input[i] = getchar();
812 if (str_input[i] == '\r')
817 if (strncmp(str_input, "y\r", 2) == 0 ||
818 strncmp(str_input, "Y\r", 2) == 0 ||
819 strncmp(str_input, "yes\r", 4) == 0 ||
820 strncmp(str_input, "YES\r", 4) == 0)
824 /* pass 1 to disable ctrlc() checking, 0 to enable.
825 * returns previous state
827 int disable_ctrlc(int disable)
829 int prev = ctrlc_disabled; /* save previous state */
831 ctrlc_disabled = disable;
837 return ctrlc_was_pressed;
840 void clear_ctrlc(void)
842 ctrlc_was_pressed = 0;
845 /** U-Boot INIT FUNCTIONS *************************************************/
847 struct stdio_dev *console_search_dev(int flags, const char *name)
849 struct stdio_dev *dev;
851 dev = stdio_get_by_name(name);
852 #ifdef CONFIG_VIDCONSOLE_AS_LCD
853 if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME))
854 dev = stdio_get_by_name("vidconsole");
857 if (dev && (dev->flags & flags))
863 int console_assign(int file, const char *devname)
866 struct stdio_dev *dev;
868 /* Check for valid file */
869 flag = stdio_file_to_flags(file);
873 /* Check for valid device name */
875 dev = console_search_dev(flag, devname);
878 return console_setfile(file, dev);
883 /* return true if the 'silent' flag is removed */
884 static bool console_update_silent(void)
886 unsigned long flags = gd->flags;
888 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE))
891 if (env_get("silent")) {
892 gd->flags |= GD_FLG_SILENT;
896 gd->flags &= ~GD_FLG_SILENT;
898 return !!(flags & GD_FLG_SILENT);
901 int console_announce_r(void)
903 #if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
904 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
906 display_options_get_banner(false, buf, sizeof(buf));
908 console_puts_select(stdout, false, buf);
914 /* Called before relocation - use serial functions */
915 int console_init_f(void)
917 gd->have_console = 1;
919 console_update_silent();
921 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
926 void stdio_print_current_devices(void)
928 /* Print information */
930 if (stdio_devices[stdin] == NULL) {
931 puts("No input devices available!\n");
933 printf ("%s\n", stdio_devices[stdin]->name);
937 if (stdio_devices[stdout] == NULL) {
938 puts("No output devices available!\n");
940 printf ("%s\n", stdio_devices[stdout]->name);
944 if (stdio_devices[stderr] == NULL) {
945 puts("No error devices available!\n");
947 printf ("%s\n", stdio_devices[stderr]->name);
951 #if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
952 /* Called after the relocation - use desired console functions */
953 int console_init_r(void)
955 char *stdinname, *stdoutname, *stderrname;
956 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
961 /* update silent for env loaded from flash (initr_env) */
962 if (console_update_silent())
963 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
965 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
967 /* set default handlers at first */
968 gd->jt->getc = serial_getc;
969 gd->jt->tstc = serial_tstc;
970 gd->jt->putc = serial_putc;
971 gd->jt->puts = serial_puts;
972 gd->jt->printf = serial_printf;
974 /* stdin stdout and stderr are in environment */
976 stdinname = env_get("stdin");
977 stdoutname = env_get("stdout");
978 stderrname = env_get("stderr");
980 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
981 inputdev = console_search_dev(DEV_FLAGS_INPUT, stdinname);
982 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, stdoutname);
983 errdev = console_search_dev(DEV_FLAGS_OUTPUT, stderrname);
984 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
985 iomux_err = iomux_doenv(stdin, stdinname);
986 iomux_err += iomux_doenv(stdout, stdoutname);
987 iomux_err += iomux_doenv(stderr, stderrname);
989 /* Successful, so skip all the code below. */
993 /* if the devices are overwritten or not found, use default device */
994 if (inputdev == NULL) {
995 inputdev = console_search_dev(DEV_FLAGS_INPUT, "serial");
997 if (outputdev == NULL) {
998 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
1000 if (errdev == NULL) {
1001 errdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
1003 /* Initializes output console first */
1004 if (outputdev != NULL) {
1005 /* need to set a console if not done above. */
1006 console_doenv(stdout, outputdev);
1008 if (errdev != NULL) {
1009 /* need to set a console if not done above. */
1010 console_doenv(stderr, errdev);
1012 if (inputdev != NULL) {
1013 /* need to set a console if not done above. */
1014 console_doenv(stdin, inputdev);
1019 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1020 stdio_print_current_devices();
1022 #ifdef CONFIG_VIDCONSOLE_AS_LCD
1023 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
1024 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
1025 CONFIG_VIDCONSOLE_AS_NAME);
1028 if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) {
1029 /* set the environment variables (will overwrite previous env settings) */
1030 for (i = 0; i < MAX_FILES; i++)
1031 env_set(stdio_names[i], stdio_devices[i]->name);
1034 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1036 print_pre_console_buffer(flushpoint);
1040 #else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
1042 /* Called after the relocation - use desired console functions */
1043 int console_init_r(void)
1045 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
1047 struct list_head *list = stdio_get_list();
1048 struct list_head *pos;
1049 struct stdio_dev *dev;
1052 /* update silent for env loaded from flash (initr_env) */
1053 if (console_update_silent())
1054 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1056 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
1059 * suppress all output if splash screen is enabled and we have
1060 * a bmp to display. We redirect the output from frame buffer
1061 * console to serial console in this case or suppress it if
1062 * "silent" mode was requested.
1064 if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) {
1065 if (!(gd->flags & GD_FLG_SILENT))
1066 outputdev = console_search_dev (DEV_FLAGS_OUTPUT, "serial");
1069 /* Scan devices looking for input and output devices */
1070 list_for_each(pos, list) {
1071 dev = list_entry(pos, struct stdio_dev, list);
1073 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
1076 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
1079 if(inputdev && outputdev)
1083 /* Initializes output console first */
1084 if (outputdev != NULL) {
1085 console_setfile_and_devices(stdout, outputdev);
1086 console_setfile_and_devices(stderr, outputdev);
1089 /* Initializes input console */
1090 if (inputdev != NULL)
1091 console_setfile_and_devices(stdin, inputdev);
1093 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1094 stdio_print_current_devices();
1096 /* Setting environment variables */
1097 for (i = 0; i < MAX_FILES; i++) {
1098 env_set(stdio_names[i], stdio_devices[i]->name);
1101 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1103 print_pre_console_buffer(flushpoint);
1107 #endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */