blob: 63f78004fdbc95f9453f42ca1cf063747e0c1ab8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk47d1a6e2002-11-03 00:01:44 +00002/*
3 * (C) Copyright 2000
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
wdenk47d1a6e2002-11-03 00:01:44 +00005 */
6
Simon Glass24b852a2015-11-08 23:47:45 -07007#include <console.h>
Simon Glassd6ea5302015-06-23 15:38:33 -06008#include <debug_uart.h>
Simon Glass4e4bf942022-07-31 12:28:48 -06009#include <display_options.h>
Simon Glass7b3c4c32017-07-27 09:31:04 -060010#include <dm.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060011#include <env.h>
wdenk47d1a6e2002-11-03 00:01:44 +000012#include <stdarg.h>
Jeroen Hofstee482f4692014-10-08 22:57:48 +020013#include <iomux.h>
wdenk47d1a6e2002-11-03 00:01:44 +000014#include <malloc.h>
Simon Glass4e6bafa2017-06-15 21:37:52 -060015#include <mapmem.h>
Simon Glass91b136c2013-11-10 10:27:01 -070016#include <os.h>
Joe Hershberger849d5d92012-12-11 22:16:29 -060017#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020018#include <stdio_dev.h>
wdenk27b207f2003-07-24 23:38:38 +000019#include <exports.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060020#include <env_internal.h>
Simon Glasscde03fa2023-10-01 19:15:23 -060021#include <video_console.h>
Andreas J. Reichel64407462016-07-13 12:56:51 +020022#include <watchdog.h>
Simon Glass401d1c42020-10-30 21:38:53 -060023#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060024#include <linux/delay.h>
wdenk47d1a6e2002-11-03 00:01:44 +000025
Wolfgang Denkd87080b2006-03-31 18:32:53 +020026DECLARE_GLOBAL_DATA_PTR;
27
Simon Glasscde03fa2023-10-01 19:15:23 -060028#define CSI "\x1b["
29
Joe Hershberger849d5d92012-12-11 22:16:29 -060030static int on_console(const char *name, const char *value, enum env_op op,
31 int flags)
32{
33 int console = -1;
34
35 /* Check for console redirection */
36 if (strcmp(name, "stdin") == 0)
37 console = stdin;
38 else if (strcmp(name, "stdout") == 0)
39 console = stdout;
40 else if (strcmp(name, "stderr") == 0)
41 console = stderr;
42
43 /* if not actually setting a console variable, we don't care */
44 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
45 return 0;
46
47 switch (op) {
48 case env_op_create:
49 case env_op_overwrite:
50
Patrick Delaunayc04f8562020-12-18 12:46:43 +010051 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
52 if (iomux_doenv(console, value))
53 return 1;
54 } else {
55 /* Try assigning specified device */
56 if (console_assign(console, value) < 0)
57 return 1;
58 }
59
Joe Hershberger849d5d92012-12-11 22:16:29 -060060 return 0;
61
62 case env_op_delete:
63 if ((flags & H_FORCE) == 0)
64 printf("Can't delete \"%s\"\n", name);
65 return 1;
66
67 default:
68 return 0;
69 }
70}
71U_BOOT_ENV_CALLBACK(console, on_console);
72
Joe Hershbergere080d542012-12-11 22:16:30 -060073#ifdef CONFIG_SILENT_CONSOLE
74static int on_silent(const char *name, const char *value, enum env_op op,
75 int flags)
76{
Patrick Delaunayc04f8562020-12-18 12:46:43 +010077 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET))
78 if (flags & H_INTERACTIVE)
79 return 0;
80
81 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC))
82 if ((flags & H_INTERACTIVE) == 0)
83 return 0;
Joe Hershbergere080d542012-12-11 22:16:30 -060084
85 if (value != NULL)
86 gd->flags |= GD_FLG_SILENT;
87 else
88 gd->flags &= ~GD_FLG_SILENT;
89
90 return 0;
91}
92U_BOOT_ENV_CALLBACK(silent, on_silent);
93#endif
94
Patrick Delaunay1e993712020-12-18 12:46:45 +010095#ifdef CONFIG_CONSOLE_RECORD
96/* helper function: access to gd->console_out and gd->console_in */
97static void console_record_putc(const char c)
98{
99 if (!(gd->flags & GD_FLG_RECORD))
100 return;
Simon Glassc1a2bb42021-05-08 06:59:56 -0600101 if (gd->console_out.start &&
102 !membuff_putbyte((struct membuff *)&gd->console_out, c))
103 gd->flags |= GD_FLG_RECORD_OVF;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100104}
105
106static void console_record_puts(const char *s)
107{
108 if (!(gd->flags & GD_FLG_RECORD))
109 return;
Simon Glassc1a2bb42021-05-08 06:59:56 -0600110 if (gd->console_out.start) {
111 int len = strlen(s);
112
113 if (membuff_put((struct membuff *)&gd->console_out, s, len) !=
114 len)
115 gd->flags |= GD_FLG_RECORD_OVF;
116 }
Patrick Delaunay1e993712020-12-18 12:46:45 +0100117}
118
119static int console_record_getc(void)
120{
121 if (!(gd->flags & GD_FLG_RECORD))
122 return -1;
123 if (!gd->console_in.start)
124 return -1;
125
126 return membuff_getbyte((struct membuff *)&gd->console_in);
127}
128
129static int console_record_tstc(void)
130{
131 if (!(gd->flags & GD_FLG_RECORD))
132 return 0;
133 if (gd->console_in.start) {
134 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
135 return 1;
136 }
137 return 0;
138}
139#else
140static void console_record_putc(char c)
141{
142}
143
144static void console_record_puts(const char *s)
145{
146}
147
148static int console_record_getc(void)
149{
150 return -1;
151}
152
153static int console_record_tstc(void)
154{
155 return 0;
156}
157#endif
158
Simon Glassb0265422017-01-16 07:03:26 -0700159#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000160/*
161 * if overwrite_console returns 1, the stdin, stderr and stdout
162 * are switched to the serial port, else the settings in the
163 * environment are used
164 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100166extern int overwrite_console(void);
167#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +0000168#else
wdenk83e40ba2005-03-31 18:42:15 +0000169#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +0000171
Simon Glassb0265422017-01-16 07:03:26 -0700172#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000173
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200174static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +0000175{
176 int error = 0;
177
178 if (dev == NULL)
179 return -1;
180
181 switch (file) {
182 case stdin:
183 case stdout:
184 case stderr:
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200185 error = console_start(file, dev);
186 if (error)
187 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000188
189 /* Assign the new device (leaving the existing one started) */
190 stdio_devices[file] = dev;
191
192 /*
193 * Update monitor functions
194 * (to use the console stuff by other applications)
195 */
196 switch (file) {
197 case stdin:
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200198 gd->jt->getc = getchar;
Martin Dorwig49cad542015-01-26 15:22:54 -0700199 gd->jt->tstc = tstc;
wdenk47d1a6e2002-11-03 00:01:44 +0000200 break;
201 case stdout:
Martin Dorwig49cad542015-01-26 15:22:54 -0700202 gd->jt->putc = putc;
203 gd->jt->puts = puts;
Pali Rohár974f4832022-09-05 11:31:17 +0200204 STDIO_DEV_ASSIGN_FLUSH(gd->jt, flush);
Martin Dorwig49cad542015-01-26 15:22:54 -0700205 gd->jt->printf = printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000206 break;
207 }
208 break;
209
210 default: /* Invalid file ID */
211 error = -1;
212 }
213 return error;
214}
215
Simon Glass42f9f912017-07-27 09:31:03 -0600216/**
217 * console_dev_is_serial() - Check if a stdio device is a serial device
218 *
219 * @sdev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100220 * Return: true if this device is in the serial uclass (or for pre-driver-model,
Simon Glass7b3c4c32017-07-27 09:31:04 -0600221 * whether it is called "serial".
Simon Glass42f9f912017-07-27 09:31:03 -0600222 */
223static bool console_dev_is_serial(struct stdio_dev *sdev)
224{
225 bool is_serial;
226
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100227 if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) {
Simon Glass7b3c4c32017-07-27 09:31:04 -0600228 struct udevice *dev = sdev->priv;
229
230 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100231 } else {
232 is_serial = !strcmp(sdev->name, "serial");
233 }
Simon Glass42f9f912017-07-27 09:31:03 -0600234
235 return is_serial;
236}
237
Simon Glassb0265422017-01-16 07:03:26 -0700238#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100239/** Console I/O multiplexing *******************************************/
240
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100241/* tstcdev: save the last stdio device with pending characters, with tstc != 0 */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200242static struct stdio_dev *tstcdev;
243struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100244int cd_count[MAX_FILES];
245
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200246static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100247{
248 console_devices[file][0] = dev;
Andy Shevchenko20a7d352021-02-11 17:09:38 +0200249 cd_count[file] = 1;
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100250}
251
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200252/**
253 * console_needs_start_stop() - check if we need to start or stop the STDIO device
254 * @file: STDIO file
255 * @sdev: STDIO device in question
256 *
257 * This function checks if we need to start or stop the stdio device used for
258 * a console. For IOMUX case it simply enforces one time start and one time
259 * stop of the device independently of how many STDIO files are using it. In
260 * other words, we start console once before first STDIO device wants it and
261 * stop after the last is gone.
262 */
263static bool console_needs_start_stop(int file, struct stdio_dev *sdev)
264{
Andy Shevchenkob672c162021-02-11 17:09:41 +0200265 int i;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200266
267 for (i = 0; i < ARRAY_SIZE(cd_count); i++) {
268 if (i == file)
269 continue;
270
Andy Shevchenkob672c162021-02-11 17:09:41 +0200271 if (iomux_match_device(console_devices[i], cd_count[i], sdev) >= 0)
272 return false;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200273 }
274 return true;
275}
276
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100277/*
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200278 * This depends on tstc() always being called before getchar().
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100279 * This is guaranteed to be true because this routine is called
280 * only from fgetc() which assures it.
281 * No attempt is made to demultiplex multiple input sources.
282 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100283static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100284{
285 unsigned char ret;
286
287 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600288 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100289 tstcdev = NULL;
290 return ret;
291}
292
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100293/* Upper layer may have already called tstc(): check the saved result */
294static bool console_has_tstc(void)
295{
296 return !!tstcdev;
297}
298
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100299static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100300{
301 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200302 struct stdio_dev *dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500303 int prev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100304
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500305 prev = disable_ctrlc(1);
Andy Shevchenko400797c2021-02-11 17:09:42 +0200306 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100307 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600308 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100309 if (ret > 0) {
310 tstcdev = dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500311 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100312 return ret;
313 }
314 }
315 }
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500316 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100317
318 return 0;
319}
320
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100321static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100322{
323 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200324 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100325
Andy Shevchenko400797c2021-02-11 17:09:42 +0200326 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100327 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600328 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100329 }
330}
331
Simon Glass493a4c82020-07-02 21:12:13 -0600332/**
333 * console_puts_select() - Output a string to all console devices
334 *
335 * @file: File number to output to (e,g, stdout, see stdio.h)
336 * @serial_only: true to output only to serial, false to output to everything
337 * else
338 * @s: String to output
339 */
340static void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200341{
342 int i;
343 struct stdio_dev *dev;
344
Andy Shevchenko400797c2021-02-11 17:09:42 +0200345 for_each_console_dev(i, file, dev) {
346 bool is_serial = console_dev_is_serial(dev);
Simon Glass493a4c82020-07-02 21:12:13 -0600347
Simon Glass493a4c82020-07-02 21:12:13 -0600348 if (dev->puts && serial_only == is_serial)
Hans de Goedea8552c72015-05-05 13:13:36 +0200349 dev->puts(dev, s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200350 }
351}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200352
Simon Glass493a4c82020-07-02 21:12:13 -0600353void console_puts_select_stderr(bool serial_only, const char *s)
354{
Simon Glass4057e272021-11-19 13:23:47 -0700355 if (gd->flags & GD_FLG_DEVINIT)
356 console_puts_select(stderr, serial_only, s);
Simon Glass493a4c82020-07-02 21:12:13 -0600357}
358
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100359static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100360{
361 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200362 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100363
Andy Shevchenko400797c2021-02-11 17:09:42 +0200364 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100365 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600366 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100367 }
368}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100369
Pali Rohár974f4832022-09-05 11:31:17 +0200370#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
371static void console_flush(int file)
372{
373 int i;
374 struct stdio_dev *dev;
375
376 for_each_console_dev(i, file, dev) {
377 if (dev->flush != NULL)
378 dev->flush(dev);
379 }
380}
381#endif
382
Tom Rini5e63c962019-10-30 09:18:43 -0400383#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200384static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100385{
386 iomux_doenv(file, dev->name);
387}
Tom Rini5e63c962019-10-30 09:18:43 -0400388#endif
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100389#else
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100390
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200391static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100392{
393}
394
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200395static inline bool console_needs_start_stop(int file, struct stdio_dev *sdev)
396{
397 return true;
398}
399
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100400static inline int console_getc(int file)
401{
Simon Glass709ea542014-07-23 06:54:59 -0600402 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100403}
404
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100405static bool console_has_tstc(void)
406{
407 return false;
408}
409
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100410static inline int console_tstc(int file)
411{
Simon Glass709ea542014-07-23 06:54:59 -0600412 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100413}
414
415static inline void console_putc(int file, const char c)
416{
Simon Glass709ea542014-07-23 06:54:59 -0600417 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100418}
419
Simon Glass493a4c82020-07-02 21:12:13 -0600420void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200421{
Simon Glass4057e272021-11-19 13:23:47 -0700422 if ((gd->flags & GD_FLG_DEVINIT) &&
423 serial_only == console_dev_is_serial(stdio_devices[file]))
Hans de Goedea8552c72015-05-05 13:13:36 +0200424 stdio_devices[file]->puts(stdio_devices[file], s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200425}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200426
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100427static inline void console_puts(int file, const char *s)
428{
Simon Glass709ea542014-07-23 06:54:59 -0600429 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100430}
431
Pali Rohár974f4832022-09-05 11:31:17 +0200432#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
433static inline void console_flush(int file)
434{
435 if (stdio_devices[file]->flush)
436 stdio_devices[file]->flush(stdio_devices[file]);
437}
438#endif
439
Tom Rini5e63c962019-10-30 09:18:43 -0400440#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200441static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100442{
443 console_setfile(file, dev);
444}
Tom Rini5e63c962019-10-30 09:18:43 -0400445#endif
Simon Glassb0265422017-01-16 07:03:26 -0700446#endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100447
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200448static void __maybe_unused console_setfile_and_devices(int file, struct stdio_dev *dev)
449{
450 console_setfile(file, dev);
451 console_devices_set(file, dev);
452}
453
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200454int console_start(int file, struct stdio_dev *sdev)
455{
456 int error;
457
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200458 if (!console_needs_start_stop(file, sdev))
459 return 0;
460
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200461 /* Start new device */
462 if (sdev->start) {
463 error = sdev->start(sdev);
464 /* If it's not started don't use it */
465 if (error < 0)
466 return error;
467 }
468 return 0;
469}
470
471void console_stop(int file, struct stdio_dev *sdev)
472{
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200473 if (!console_needs_start_stop(file, sdev))
474 return;
475
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200476 if (sdev->stop)
477 sdev->stop(sdev);
478}
479
wdenk47d1a6e2002-11-03 00:01:44 +0000480/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
481
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200482int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000483{
484 va_list args;
485 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200486 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000487
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100488 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000489
490 /* For this to work, printbuffer must be larger than
491 * anything we ever want to print.
492 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000493 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100494 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000495
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100496 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200497 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000498}
499
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100500int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000501{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200502 if ((unsigned int)file < MAX_FILES) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100503 /*
504 * Effectively poll for input wherever it may be available.
505 */
506 for (;;) {
Stefan Roese29caf932022-09-02 14:10:46 +0200507 schedule();
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100508 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
509 /*
510 * Upper layer may have already called tstc() so
511 * check for that first.
512 */
513 if (console_has_tstc())
514 return console_getc(file);
515 console_tstc(file);
516 } else {
517 if (console_tstc(file))
518 return console_getc(file);
519 }
520
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100521 /*
522 * If the watchdog must be rate-limited then it should
523 * already be handled in board-specific code.
524 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100525 if (IS_ENABLED(CONFIG_WATCHDOG))
526 udelay(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100527 }
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100528 }
wdenk47d1a6e2002-11-03 00:01:44 +0000529
530 return -1;
531}
532
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100533int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000534{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200535 if ((unsigned int)file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100536 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000537
538 return -1;
539}
540
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100541void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000542{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200543 if ((unsigned int)file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100544 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000545}
546
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100547void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000548{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200549 if ((unsigned int)file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100550 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000551}
552
Pali Rohár974f4832022-09-05 11:31:17 +0200553#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
554void fflush(int file)
555{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200556 if ((unsigned int)file < MAX_FILES)
Pali Rohár974f4832022-09-05 11:31:17 +0200557 console_flush(file);
558}
559#endif
560
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200561int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000562{
563 va_list args;
564 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200565 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000566
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100567 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000568
569 /* For this to work, printbuffer must be larger than
570 * anything we ever want to print.
571 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000572 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100573 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000574
575 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100576 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200577 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000578}
579
580/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
581
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200582int getchar(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000583{
Patrick Delaunay1e993712020-12-18 12:46:45 +0100584 int ch;
585
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100586 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100587 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100588
Graeme Russe3e454c2011-08-29 02:14:05 +0000589 if (!gd->have_console)
590 return 0;
591
Patrick Delaunay1e993712020-12-18 12:46:45 +0100592 ch = console_record_getc();
593 if (ch != -1)
594 return ch;
Simon Glass9854a872015-11-08 23:47:48 -0700595
wdenk47d1a6e2002-11-03 00:01:44 +0000596 if (gd->flags & GD_FLG_DEVINIT) {
597 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100598 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000599 }
600
601 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100602 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000603}
604
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100605int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000606{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100607 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100608 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100609
Graeme Russe3e454c2011-08-29 02:14:05 +0000610 if (!gd->have_console)
611 return 0;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100612
613 if (console_record_tstc())
614 return 1;
615
wdenk47d1a6e2002-11-03 00:01:44 +0000616 if (gd->flags & GD_FLG_DEVINIT) {
617 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100618 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000619 }
620
621 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100622 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000623}
624
Siarhei Siamashka27669662015-01-08 09:02:31 +0200625#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
626#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
627
Simon Glass8f925582016-10-17 20:12:36 -0600628#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Rasmus Villemoescff29632022-05-03 14:37:39 +0200629#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_VAL(PRE_CON_BUF_SZ))
Graeme Russ9558b482011-09-01 00:48:27 +0000630
631static void pre_console_putc(const char c)
632{
Simon Glass4e6bafa2017-06-15 21:37:52 -0600633 char *buffer;
634
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200635 if (gd->precon_buf_idx < 0)
636 return;
637
Rasmus Villemoescff29632022-05-03 14:37:39 +0200638 buffer = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ));
Graeme Russ9558b482011-09-01 00:48:27 +0000639
640 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass4e6bafa2017-06-15 21:37:52 -0600641
642 unmap_sysmem(buffer);
Graeme Russ9558b482011-09-01 00:48:27 +0000643}
644
Soeren Mochbe135cc2017-11-04 16:14:09 +0100645static void pre_console_puts(const char *s)
646{
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200647 if (gd->precon_buf_idx < 0)
648 return;
649
Soeren Mochbe135cc2017-11-04 16:14:09 +0100650 while (*s)
651 pre_console_putc(*s++);
652}
653
Siarhei Siamashka27669662015-01-08 09:02:31 +0200654static void print_pre_console_buffer(int flushpoint)
Graeme Russ9558b482011-09-01 00:48:27 +0000655{
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200656 long in = 0, out = 0;
Rasmus Villemoescff29632022-05-03 14:37:39 +0200657 char buf_out[CONFIG_VAL(PRE_CON_BUF_SZ) + 1];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600658 char *buf_in;
Graeme Russ9558b482011-09-01 00:48:27 +0000659
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100660 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
Patrick Delaunay13551b92019-08-02 14:58:10 +0200661 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200662
Rasmus Villemoescff29632022-05-03 14:37:39 +0200663 buf_in = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ));
664 if (gd->precon_buf_idx > CONFIG_VAL(PRE_CON_BUF_SZ))
665 in = gd->precon_buf_idx - CONFIG_VAL(PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000666
Hans de Goedea8552c72015-05-05 13:13:36 +0200667 while (in < gd->precon_buf_idx)
668 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600669 unmap_sysmem(buf_in);
Hans de Goedea8552c72015-05-05 13:13:36 +0200670
671 buf_out[out] = 0;
672
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200673 gd->precon_buf_idx = -1;
Hans de Goedea8552c72015-05-05 13:13:36 +0200674 switch (flushpoint) {
675 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
676 puts(buf_out);
677 break;
678 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
Simon Glass493a4c82020-07-02 21:12:13 -0600679 console_puts_select(stdout, false, buf_out);
Hans de Goedea8552c72015-05-05 13:13:36 +0200680 break;
681 }
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200682 gd->precon_buf_idx = in;
Graeme Russ9558b482011-09-01 00:48:27 +0000683}
684#else
685static inline void pre_console_putc(const char c) {}
Soeren Mochbe135cc2017-11-04 16:14:09 +0100686static inline void pre_console_puts(const char *s) {}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200687static inline void print_pre_console_buffer(int flushpoint) {}
Graeme Russ9558b482011-09-01 00:48:27 +0000688#endif
689
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100690void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000691{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100692 if (!gd)
693 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100694
695 console_record_putc(c);
696
Simon Glass64e9b4f2017-12-04 13:48:19 -0700697 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100698 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass64e9b4f2017-12-04 13:48:19 -0700699 os_putc(c);
700 return;
701 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100702
Simon Glassd6ea5302015-06-23 15:38:33 -0600703 /* if we don't have a console yet, use the debug UART */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100704 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glassd6ea5302015-06-23 15:38:33 -0600705 printch(c);
706 return;
707 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100708
709 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200710 if (!(gd->flags & GD_FLG_DEVINIT))
711 pre_console_putc(c);
wdenkf6e20fc2004-02-08 19:38:38 +0000712 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200713 }
wdenka6cccae2004-02-06 21:48:22 +0000714
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100715 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100716 return;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100717
Graeme Russe3e454c2011-08-29 02:14:05 +0000718 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000719 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000720
wdenk47d1a6e2002-11-03 00:01:44 +0000721 if (gd->flags & GD_FLG_DEVINIT) {
722 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100723 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000724 } else {
725 /* Send directly to the handler */
Siarhei Siamashka27669662015-01-08 09:02:31 +0200726 pre_console_putc(c);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100727 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000728 }
729}
730
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100731void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000732{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100733 if (!gd)
734 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100735
736 console_record_puts(s);
737
Simon Glass36bcea62018-11-15 18:44:04 -0700738 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100739 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass36bcea62018-11-15 18:44:04 -0700740 os_puts(s);
741 return;
742 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100743
744 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Soeren Mochbe135cc2017-11-04 16:14:09 +0100745 while (*s) {
746 int ch = *s++;
747
748 printch(ch);
749 }
750 return;
751 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100752
753 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200754 if (!(gd->flags & GD_FLG_DEVINIT))
755 pre_console_puts(s);
Soeren Mochbe135cc2017-11-04 16:14:09 +0100756 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200757 }
Soeren Mochbe135cc2017-11-04 16:14:09 +0100758
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100759 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Soeren Mochbe135cc2017-11-04 16:14:09 +0100760 return;
Soeren Mochbe135cc2017-11-04 16:14:09 +0100761
762 if (!gd->have_console)
763 return pre_console_puts(s);
764
765 if (gd->flags & GD_FLG_DEVINIT) {
766 /* Send to the standard output */
767 fputs(stdout, s);
768 } else {
769 /* Send directly to the handler */
770 pre_console_puts(s);
771 serial_puts(s);
772 }
wdenk47d1a6e2002-11-03 00:01:44 +0000773}
774
Pali Rohár974f4832022-09-05 11:31:17 +0200775#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
776void flush(void)
777{
778 if (!gd)
779 return;
780
781 /* sandbox can send characters to stdout before it has a console */
782 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
783 os_flush();
784 return;
785 }
786
787 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY))
788 return;
789
790 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
791 return;
792
793 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
794 return;
795
796 if (!gd->have_console)
797 return;
798
799 if (gd->flags & GD_FLG_DEVINIT) {
800 /* Send to the standard output */
801 fflush(stdout);
Pali Rohár78b52432022-09-05 11:31:19 +0200802 } else {
803 /* Send directly to the handler */
804 serial_flush();
Pali Rohár974f4832022-09-05 11:31:17 +0200805 }
806}
807#endif
808
Simon Glass9854a872015-11-08 23:47:48 -0700809#ifdef CONFIG_CONSOLE_RECORD
810int console_record_init(void)
811{
812 int ret;
813
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100814 ret = membuff_new((struct membuff *)&gd->console_out,
Simon Glass8ce465e2021-10-23 17:26:03 -0600815 gd->flags & GD_FLG_RELOC ?
816 CONFIG_CONSOLE_RECORD_OUT_SIZE :
817 CONFIG_CONSOLE_RECORD_OUT_SIZE_F);
Simon Glass9854a872015-11-08 23:47:48 -0700818 if (ret)
819 return ret;
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100820 ret = membuff_new((struct membuff *)&gd->console_in,
821 CONFIG_CONSOLE_RECORD_IN_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700822
Ion Agorria90087dd2024-01-05 09:22:09 +0200823 /* Start recording from the beginning */
824 gd->flags |= GD_FLG_RECORD;
825
Simon Glass9854a872015-11-08 23:47:48 -0700826 return ret;
827}
828
829void console_record_reset(void)
830{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100831 membuff_purge((struct membuff *)&gd->console_out);
832 membuff_purge((struct membuff *)&gd->console_in);
Simon Glassc1a2bb42021-05-08 06:59:56 -0600833 gd->flags &= ~GD_FLG_RECORD_OVF;
Simon Glass9854a872015-11-08 23:47:48 -0700834}
835
Simon Glassbd347152020-07-28 19:41:11 -0600836int console_record_reset_enable(void)
Simon Glass9854a872015-11-08 23:47:48 -0700837{
838 console_record_reset();
839 gd->flags |= GD_FLG_RECORD;
Simon Glassbd347152020-07-28 19:41:11 -0600840
841 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700842}
Simon Glassb6123122020-01-27 08:49:54 -0700843
844int console_record_readline(char *str, int maxlen)
845{
Simon Glassc1a2bb42021-05-08 06:59:56 -0600846 if (gd->flags & GD_FLG_RECORD_OVF)
847 return -ENOSPC;
848
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100849 return membuff_readline((struct membuff *)&gd->console_out, str,
Ion Agorriae58bafc2024-01-05 09:22:10 +0200850 maxlen, '\0', false);
Simon Glassb6123122020-01-27 08:49:54 -0700851}
852
853int console_record_avail(void)
854{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100855 return membuff_avail((struct membuff *)&gd->console_out);
Simon Glassb6123122020-01-27 08:49:54 -0700856}
857
Ion Agorria9ce75f42024-01-05 09:22:08 +0200858bool console_record_isempty(void)
859{
860 return membuff_isempty((struct membuff *)&gd->console_out);
861}
862
Steffen Jaeckel25c8b9f2021-07-08 15:57:40 +0200863int console_in_puts(const char *str)
864{
865 return membuff_put((struct membuff *)&gd->console_in, str, strlen(str));
866}
867
Simon Glass9854a872015-11-08 23:47:48 -0700868#endif
869
wdenk47d1a6e2002-11-03 00:01:44 +0000870/* test if ctrl-c was pressed */
871static int ctrlc_disabled = 0; /* see disable_ctrl() */
872static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100873int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000874{
wdenk47d1a6e2002-11-03 00:01:44 +0000875 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100876 if (tstc()) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200877 switch (getchar()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000878 case 0x03: /* ^C - Control C */
879 ctrlc_was_pressed = 1;
880 return 1;
881 default:
882 break;
883 }
884 }
885 }
Simon Glass8969ea32014-09-14 12:40:15 -0600886
wdenk47d1a6e2002-11-03 00:01:44 +0000887 return 0;
888}
Pierre Auberta5dffa42014-04-24 10:30:07 +0200889/* Reads user's confirmation.
890 Returns 1 if user's input is "y", "Y", "yes" or "YES"
891*/
892int confirm_yesno(void)
893{
894 int i;
895 char str_input[5];
wdenk47d1a6e2002-11-03 00:01:44 +0000896
Pierre Auberta5dffa42014-04-24 10:30:07 +0200897 /* Flush input */
898 while (tstc())
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200899 getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200900 i = 0;
901 while (i < sizeof(str_input)) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200902 str_input[i] = getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200903 putc(str_input[i]);
904 if (str_input[i] == '\r')
905 break;
906 i++;
907 }
908 putc('\n');
909 if (strncmp(str_input, "y\r", 2) == 0 ||
910 strncmp(str_input, "Y\r", 2) == 0 ||
911 strncmp(str_input, "yes\r", 4) == 0 ||
912 strncmp(str_input, "YES\r", 4) == 0)
913 return 1;
914 return 0;
915}
wdenk47d1a6e2002-11-03 00:01:44 +0000916/* pass 1 to disable ctrlc() checking, 0 to enable.
917 * returns previous state
918 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100919int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000920{
921 int prev = ctrlc_disabled; /* save previous state */
922
923 ctrlc_disabled = disable;
924 return prev;
925}
926
927int had_ctrlc (void)
928{
929 return ctrlc_was_pressed;
930}
931
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100932void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000933{
934 ctrlc_was_pressed = 0;
935}
936
wdenk47d1a6e2002-11-03 00:01:44 +0000937/** U-Boot INIT FUNCTIONS *************************************************/
938
Andy Shevchenko32324872020-12-21 14:30:03 +0200939struct stdio_dev *console_search_dev(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200940{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200941 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200942
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200943 dev = stdio_get_by_name(name);
Simon Glassa2931b32016-02-06 14:31:37 -0700944#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200945 if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME))
Simon Glassa2931b32016-02-06 14:31:37 -0700946 dev = stdio_get_by_name("vidconsole");
947#endif
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200948
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100949 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200950 return dev;
951
952 return NULL;
953}
954
Mike Frysingerd7be3052010-10-20 07:18:03 -0400955int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000956{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200957 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200958 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000959
960 /* Check for valid file */
Andy Shevchenko7b9ca3f2021-02-11 17:09:37 +0200961 flag = stdio_file_to_flags(file);
962 if (flag < 0)
963 return flag;
wdenk47d1a6e2002-11-03 00:01:44 +0000964
965 /* Check for valid device name */
966
Andy Shevchenko32324872020-12-21 14:30:03 +0200967 dev = console_search_dev(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000968
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100969 if (dev)
970 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000971
972 return -1;
973}
974
Patrick Delaunay13551b92019-08-02 14:58:10 +0200975/* return true if the 'silent' flag is removed */
976static bool console_update_silent(void)
Chris Packham43e0a3d2016-09-23 15:59:43 +1200977{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100978 unsigned long flags = gd->flags;
979
980 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE))
981 return false;
982
Harald Seiler33965c72022-07-06 13:19:10 +0200983 if (IS_ENABLED(CONFIG_SILENT_CONSOLE_UNTIL_ENV) && !(gd->flags & GD_FLG_ENV_READY)) {
984 gd->flags |= GD_FLG_SILENT;
985 return false;
986 }
987
Patrick Delaunay13551b92019-08-02 14:58:10 +0200988 if (env_get("silent")) {
Chris Packham43e0a3d2016-09-23 15:59:43 +1200989 gd->flags |= GD_FLG_SILENT;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100990 return false;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200991 }
Patrick Delaunay13551b92019-08-02 14:58:10 +0200992
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100993 gd->flags &= ~GD_FLG_SILENT;
994
995 return !!(flags & GD_FLG_SILENT);
Chris Packham43e0a3d2016-09-23 15:59:43 +1200996}
997
Simon Glassb0895382017-06-15 21:37:50 -0600998int console_announce_r(void)
999{
1000#if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
1001 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
1002
1003 display_options_get_banner(false, buf, sizeof(buf));
1004
Simon Glass493a4c82020-07-02 21:12:13 -06001005 console_puts_select(stdout, false, buf);
Simon Glassb0895382017-06-15 21:37:50 -06001006#endif
1007
1008 return 0;
1009}
1010
wdenk47d1a6e2002-11-03 00:01:44 +00001011/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001012int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001013{
wdenk47d1a6e2002-11-03 00:01:44 +00001014 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +00001015
Chris Packham43e0a3d2016-09-23 15:59:43 +12001016 console_update_silent();
wdenkf72da342003-10-10 10:05:42 +00001017
Siarhei Siamashka27669662015-01-08 09:02:31 +02001018 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
Graeme Russ9558b482011-09-01 00:48:27 +00001019
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001020 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001021}
1022
Simon Glasscde03fa2023-10-01 19:15:23 -06001023int console_clear(void)
1024{
1025 /*
1026 * Send clear screen and home
1027 *
1028 * FIXME(Heinrich Schuchardt <xypron.glpk@gmx.de>): This should go
1029 * through an API and only be written to serial terminals, not video
1030 * displays
1031 */
1032 printf(CSI "2J" CSI "1;1H");
1033 if (IS_ENABLED(CONFIG_VIDEO_ANSI))
1034 return 0;
1035
1036 if (IS_ENABLED(CONFIG_VIDEO)) {
1037 struct udevice *dev;
1038 int ret;
1039
1040 ret = uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev);
1041 if (ret)
1042 return ret;
1043 ret = vidconsole_clear_and_reset(dev);
1044 if (ret)
1045 return ret;
1046 }
1047
1048 return 0;
1049}
1050
Patrice Chotard9152a512024-01-17 13:37:13 +01001051static char *get_stdio(const u8 std)
1052{
1053 return stdio_devices[std] ? stdio_devices[std]->name : "No devices available!";
1054}
1055
Bin Meng75bfc6f2023-07-23 12:40:35 +08001056static void stdio_print_current_devices(void)
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001057{
Patrice Chotard9152a512024-01-17 13:37:13 +01001058 char *stdinname = NULL;
1059 char *stdoutname = NULL;
1060 char *stderrname = NULL;
Bin Mengf30fd552023-07-23 12:40:36 +08001061
Bin Meng6b343ab2023-07-23 12:40:37 +08001062 if (CONFIG_IS_ENABLED(CONSOLE_MUX) &&
1063 CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)) {
1064 /* stdin stdout and stderr are in environment */
1065 stdinname = env_get("stdin");
1066 stdoutname = env_get("stdout");
1067 stderrname = env_get("stderr");
Bin Meng6b343ab2023-07-23 12:40:37 +08001068 }
Bin Mengf30fd552023-07-23 12:40:36 +08001069
Patrice Chotard9152a512024-01-17 13:37:13 +01001070 stdinname = stdinname ? : get_stdio(stdin);
1071 stdoutname = stdoutname ? : get_stdio(stdout);
1072 stderrname = stderrname ? : get_stdio(stderr);
1073
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001074 /* Print information */
1075 puts("In: ");
Bin Mengf30fd552023-07-23 12:40:36 +08001076 printf("%s\n", stdinname);
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001077
1078 puts("Out: ");
Bin Mengf30fd552023-07-23 12:40:36 +08001079 printf("%s\n", stdoutname);
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001080
1081 puts("Err: ");
Bin Mengf30fd552023-07-23 12:40:36 +08001082 printf("%s\n", stderrname);
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001083}
1084
Simon Glassb0265422017-01-16 07:03:26 -07001085#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +00001086/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001087int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001088{
1089 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001090 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
wdenk6e592382004-04-18 17:39:38 +00001091 int i;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001092 int iomux_err = 0;
Patrick Delaunay13551b92019-08-02 14:58:10 +02001093 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +00001094
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001095 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +02001096 if (console_update_silent())
1097 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1098 else
1099 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001100
wdenk47d1a6e2002-11-03 00:01:44 +00001101 /* set default handlers at first */
Martin Dorwig49cad542015-01-26 15:22:54 -07001102 gd->jt->getc = serial_getc;
1103 gd->jt->tstc = serial_tstc;
1104 gd->jt->putc = serial_putc;
1105 gd->jt->puts = serial_puts;
1106 gd->jt->printf = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +00001107
1108 /* stdin stdout and stderr are in environment */
1109 /* scan for it */
Simon Glass00caae62017-08-03 12:22:12 -06001110 stdinname = env_get("stdin");
1111 stdoutname = env_get("stdout");
1112 stderrname = env_get("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +00001113
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001114 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Andy Shevchenko32324872020-12-21 14:30:03 +02001115 inputdev = console_search_dev(DEV_FLAGS_INPUT, stdinname);
1116 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, stdoutname);
1117 errdev = console_search_dev(DEV_FLAGS_OUTPUT, stderrname);
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001118 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
1119 iomux_err = iomux_doenv(stdin, stdinname);
1120 iomux_err += iomux_doenv(stdout, stdoutname);
1121 iomux_err += iomux_doenv(stderr, stderrname);
1122 if (!iomux_err)
1123 /* Successful, so skip all the code below. */
1124 goto done;
1125 }
wdenk47d1a6e2002-11-03 00:01:44 +00001126 }
1127 /* if the devices are overwritten or not found, use default device */
1128 if (inputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001129 inputdev = console_search_dev(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001130 }
1131 if (outputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001132 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001133 }
1134 if (errdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001135 errdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001136 }
1137 /* Initializes output console first */
1138 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001139 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001140 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001141 }
1142 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001143 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001144 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001145 }
1146 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001147 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001148 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001149 }
1150
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001151done:
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001152
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001153 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1154 stdio_print_current_devices();
1155
Simon Glassa2931b32016-02-06 14:31:37 -07001156#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001157 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
Anatolij Gustschin22b897a2020-05-23 17:11:20 +02001158 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001159 CONFIG_VIDCONSOLE_AS_NAME);
Simon Glassa2931b32016-02-06 14:31:37 -07001160#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001161
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001162 if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) {
1163 /* set the environment variables (will overwrite previous env settings) */
1164 for (i = 0; i < MAX_FILES; i++)
1165 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001166 }
wdenk47d1a6e2002-11-03 00:01:44 +00001167
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001168 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1169
Patrick Delaunay13551b92019-08-02 14:58:10 +02001170 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001171 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001172}
1173
Simon Glassb0265422017-01-16 07:03:26 -07001174#else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +00001175
1176/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001177int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001178{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001179 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001180 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001181 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001182 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001183 struct stdio_dev *dev;
Patrick Delaunay13551b92019-08-02 14:58:10 +02001184 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +00001185
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001186 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +02001187 if (console_update_silent())
1188 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1189 else
1190 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Chris Packham43e0a3d2016-09-23 15:59:43 +12001191
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001192 /*
1193 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +01001194 * a bmp to display. We redirect the output from frame buffer
1195 * console to serial console in this case or suppress it if
1196 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001197 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001198 if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) {
Anatolij Gustschina7490812010-03-16 15:29:33 +01001199 if (!(gd->flags & GD_FLG_SILENT))
Andy Shevchenko32324872020-12-21 14:30:03 +02001200 outputdev = console_search_dev (DEV_FLAGS_OUTPUT, "serial");
Anatolij Gustschina7490812010-03-16 15:29:33 +01001201 }
wdenkf72da342003-10-10 10:05:42 +00001202
wdenk47d1a6e2002-11-03 00:01:44 +00001203 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001204 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001205 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +00001206
1207 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
1208 inputdev = dev;
1209 }
1210 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
1211 outputdev = dev;
1212 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001213 if(inputdev && outputdev)
1214 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001215 }
1216
1217 /* Initializes output console first */
1218 if (outputdev != NULL) {
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001219 console_setfile_and_devices(stdout, outputdev);
1220 console_setfile_and_devices(stderr, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001221 }
1222
1223 /* Initializes input console */
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001224 if (inputdev != NULL)
1225 console_setfile_and_devices(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001226
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001227 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1228 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +00001229
1230 /* Setting environment variables */
Tom Rini27b42252018-05-03 09:12:26 -04001231 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -06001232 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001233 }
1234
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001235 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1236
Patrick Delaunay13551b92019-08-02 14:58:10 +02001237 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001238 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001239}
1240
Simon Glassb0265422017-01-16 07:03:26 -07001241#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */