blob: 9c67c4810f08021fb88648f6e098dcc8d4ee0ed6 [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
7#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -07008#include <console.h>
Simon Glassd6ea5302015-06-23 15:38:33 -06009#include <debug_uart.h>
Simon Glass4e4bf942022-07-31 12:28:48 -060010#include <display_options.h>
Simon Glass7b3c4c32017-07-27 09:31:04 -060011#include <dm.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060012#include <env.h>
wdenk47d1a6e2002-11-03 00:01:44 +000013#include <stdarg.h>
Jeroen Hofstee482f4692014-10-08 22:57:48 +020014#include <iomux.h>
wdenk47d1a6e2002-11-03 00:01:44 +000015#include <malloc.h>
Simon Glass4e6bafa2017-06-15 21:37:52 -060016#include <mapmem.h>
Simon Glass91b136c2013-11-10 10:27:01 -070017#include <os.h>
Joe Hershberger849d5d92012-12-11 22:16:29 -060018#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020019#include <stdio_dev.h>
wdenk27b207f2003-07-24 23:38:38 +000020#include <exports.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060021#include <env_internal.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
Joe Hershberger849d5d92012-12-11 22:16:29 -060028static int on_console(const char *name, const char *value, enum env_op op,
29 int flags)
30{
31 int console = -1;
32
33 /* Check for console redirection */
34 if (strcmp(name, "stdin") == 0)
35 console = stdin;
36 else if (strcmp(name, "stdout") == 0)
37 console = stdout;
38 else if (strcmp(name, "stderr") == 0)
39 console = stderr;
40
41 /* if not actually setting a console variable, we don't care */
42 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
43 return 0;
44
45 switch (op) {
46 case env_op_create:
47 case env_op_overwrite:
48
Patrick Delaunayc04f8562020-12-18 12:46:43 +010049 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
50 if (iomux_doenv(console, value))
51 return 1;
52 } else {
53 /* Try assigning specified device */
54 if (console_assign(console, value) < 0)
55 return 1;
56 }
57
Joe Hershberger849d5d92012-12-11 22:16:29 -060058 return 0;
59
60 case env_op_delete:
61 if ((flags & H_FORCE) == 0)
62 printf("Can't delete \"%s\"\n", name);
63 return 1;
64
65 default:
66 return 0;
67 }
68}
69U_BOOT_ENV_CALLBACK(console, on_console);
70
Joe Hershbergere080d542012-12-11 22:16:30 -060071#ifdef CONFIG_SILENT_CONSOLE
72static int on_silent(const char *name, const char *value, enum env_op op,
73 int flags)
74{
Patrick Delaunayc04f8562020-12-18 12:46:43 +010075 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET))
76 if (flags & H_INTERACTIVE)
77 return 0;
78
79 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC))
80 if ((flags & H_INTERACTIVE) == 0)
81 return 0;
Joe Hershbergere080d542012-12-11 22:16:30 -060082
benlong.zhou4f40af82023-10-26 11:26:42 +080083#ifdef CONFIG_AMLOGIC_MODIFY
84 if (value != NULL)
85 if (value[0] == '1')
86 gd->flags |= GD_FLG_SILENT;
87 else
88 gd->flags &= ~GD_FLG_SILENT;
89 else
90 gd->flags &= ~GD_FLG_SILENT;
91#else
Joe Hershbergere080d542012-12-11 22:16:30 -060092 if (value != NULL)
93 gd->flags |= GD_FLG_SILENT;
94 else
95 gd->flags &= ~GD_FLG_SILENT;
benlong.zhou4f40af82023-10-26 11:26:42 +080096#endif
Joe Hershbergere080d542012-12-11 22:16:30 -060097
98 return 0;
99}
100U_BOOT_ENV_CALLBACK(silent, on_silent);
101#endif
102
Patrick Delaunay1e993712020-12-18 12:46:45 +0100103#ifdef CONFIG_CONSOLE_RECORD
104/* helper function: access to gd->console_out and gd->console_in */
105static void console_record_putc(const char c)
106{
107 if (!(gd->flags & GD_FLG_RECORD))
108 return;
Simon Glassc1a2bb42021-05-08 06:59:56 -0600109 if (gd->console_out.start &&
110 !membuff_putbyte((struct membuff *)&gd->console_out, c))
111 gd->flags |= GD_FLG_RECORD_OVF;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100112}
113
114static void console_record_puts(const char *s)
115{
116 if (!(gd->flags & GD_FLG_RECORD))
117 return;
Simon Glassc1a2bb42021-05-08 06:59:56 -0600118 if (gd->console_out.start) {
119 int len = strlen(s);
120
121 if (membuff_put((struct membuff *)&gd->console_out, s, len) !=
122 len)
123 gd->flags |= GD_FLG_RECORD_OVF;
124 }
Patrick Delaunay1e993712020-12-18 12:46:45 +0100125}
126
127static int console_record_getc(void)
128{
129 if (!(gd->flags & GD_FLG_RECORD))
130 return -1;
131 if (!gd->console_in.start)
132 return -1;
133
134 return membuff_getbyte((struct membuff *)&gd->console_in);
135}
136
137static int console_record_tstc(void)
138{
139 if (!(gd->flags & GD_FLG_RECORD))
140 return 0;
141 if (gd->console_in.start) {
142 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
143 return 1;
144 }
145 return 0;
146}
147#else
148static void console_record_putc(char c)
149{
150}
151
152static void console_record_puts(const char *s)
153{
154}
155
156static int console_record_getc(void)
157{
158 return -1;
159}
160
161static int console_record_tstc(void)
162{
163 return 0;
164}
165#endif
166
Simon Glassb0265422017-01-16 07:03:26 -0700167#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000168/*
169 * if overwrite_console returns 1, the stdin, stderr and stdout
170 * are switched to the serial port, else the settings in the
171 * environment are used
172 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100174extern int overwrite_console(void);
175#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +0000176#else
wdenk83e40ba2005-03-31 18:42:15 +0000177#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +0000179
Simon Glassb0265422017-01-16 07:03:26 -0700180#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000181
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200182static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +0000183{
184 int error = 0;
185
186 if (dev == NULL)
187 return -1;
188
189 switch (file) {
190 case stdin:
191 case stdout:
192 case stderr:
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200193 error = console_start(file, dev);
194 if (error)
195 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000196
197 /* Assign the new device (leaving the existing one started) */
198 stdio_devices[file] = dev;
199
200 /*
201 * Update monitor functions
202 * (to use the console stuff by other applications)
203 */
204 switch (file) {
205 case stdin:
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200206 gd->jt->getc = getchar;
Martin Dorwig49cad542015-01-26 15:22:54 -0700207 gd->jt->tstc = tstc;
wdenk47d1a6e2002-11-03 00:01:44 +0000208 break;
209 case stdout:
Martin Dorwig49cad542015-01-26 15:22:54 -0700210 gd->jt->putc = putc;
211 gd->jt->puts = puts;
Pali Rohár974f4832022-09-05 11:31:17 +0200212 STDIO_DEV_ASSIGN_FLUSH(gd->jt, flush);
Martin Dorwig49cad542015-01-26 15:22:54 -0700213 gd->jt->printf = printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000214 break;
215 }
216 break;
217
218 default: /* Invalid file ID */
219 error = -1;
220 }
221 return error;
222}
223
Simon Glass42f9f912017-07-27 09:31:03 -0600224/**
225 * console_dev_is_serial() - Check if a stdio device is a serial device
226 *
227 * @sdev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100228 * Return: true if this device is in the serial uclass (or for pre-driver-model,
Simon Glass7b3c4c32017-07-27 09:31:04 -0600229 * whether it is called "serial".
Simon Glass42f9f912017-07-27 09:31:03 -0600230 */
231static bool console_dev_is_serial(struct stdio_dev *sdev)
232{
233 bool is_serial;
234
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100235 if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) {
Simon Glass7b3c4c32017-07-27 09:31:04 -0600236 struct udevice *dev = sdev->priv;
237
238 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100239 } else {
240 is_serial = !strcmp(sdev->name, "serial");
241 }
Simon Glass42f9f912017-07-27 09:31:03 -0600242
243 return is_serial;
244}
245
Simon Glassb0265422017-01-16 07:03:26 -0700246#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100247/** Console I/O multiplexing *******************************************/
248
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100249/* tstcdev: save the last stdio device with pending characters, with tstc != 0 */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200250static struct stdio_dev *tstcdev;
251struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100252int cd_count[MAX_FILES];
253
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200254static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100255{
256 console_devices[file][0] = dev;
Andy Shevchenko20a7d352021-02-11 17:09:38 +0200257 cd_count[file] = 1;
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100258}
259
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200260/**
261 * console_needs_start_stop() - check if we need to start or stop the STDIO device
262 * @file: STDIO file
263 * @sdev: STDIO device in question
264 *
265 * This function checks if we need to start or stop the stdio device used for
266 * a console. For IOMUX case it simply enforces one time start and one time
267 * stop of the device independently of how many STDIO files are using it. In
268 * other words, we start console once before first STDIO device wants it and
269 * stop after the last is gone.
270 */
271static bool console_needs_start_stop(int file, struct stdio_dev *sdev)
272{
Andy Shevchenkob672c162021-02-11 17:09:41 +0200273 int i;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200274
275 for (i = 0; i < ARRAY_SIZE(cd_count); i++) {
276 if (i == file)
277 continue;
278
Andy Shevchenkob672c162021-02-11 17:09:41 +0200279 if (iomux_match_device(console_devices[i], cd_count[i], sdev) >= 0)
280 return false;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200281 }
282 return true;
283}
284
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100285/*
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200286 * This depends on tstc() always being called before getchar().
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100287 * This is guaranteed to be true because this routine is called
288 * only from fgetc() which assures it.
289 * No attempt is made to demultiplex multiple input sources.
290 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100291static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100292{
293 unsigned char ret;
294
295 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600296 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100297 tstcdev = NULL;
298 return ret;
299}
300
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100301/* Upper layer may have already called tstc(): check the saved result */
302static bool console_has_tstc(void)
303{
304 return !!tstcdev;
305}
306
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100307static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100308{
309 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200310 struct stdio_dev *dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500311 int prev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100312
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500313 prev = disable_ctrlc(1);
Andy Shevchenko400797c2021-02-11 17:09:42 +0200314 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100315 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600316 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100317 if (ret > 0) {
318 tstcdev = dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500319 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100320 return ret;
321 }
322 }
323 }
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500324 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100325
326 return 0;
327}
328
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100329static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100330{
331 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200332 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100333
Andy Shevchenko400797c2021-02-11 17:09:42 +0200334 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100335 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600336 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100337 }
338}
339
Simon Glass493a4c82020-07-02 21:12:13 -0600340/**
341 * console_puts_select() - Output a string to all console devices
342 *
343 * @file: File number to output to (e,g, stdout, see stdio.h)
344 * @serial_only: true to output only to serial, false to output to everything
345 * else
346 * @s: String to output
347 */
348static void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200349{
350 int i;
351 struct stdio_dev *dev;
352
Andy Shevchenko400797c2021-02-11 17:09:42 +0200353 for_each_console_dev(i, file, dev) {
354 bool is_serial = console_dev_is_serial(dev);
Simon Glass493a4c82020-07-02 21:12:13 -0600355
Simon Glass493a4c82020-07-02 21:12:13 -0600356 if (dev->puts && serial_only == is_serial)
Hans de Goedea8552c72015-05-05 13:13:36 +0200357 dev->puts(dev, s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200358 }
359}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200360
Simon Glass493a4c82020-07-02 21:12:13 -0600361void console_puts_select_stderr(bool serial_only, const char *s)
362{
Simon Glass4057e272021-11-19 13:23:47 -0700363 if (gd->flags & GD_FLG_DEVINIT)
364 console_puts_select(stderr, serial_only, s);
Simon Glass493a4c82020-07-02 21:12:13 -0600365}
366
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100367static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100368{
369 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200370 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100371
Andy Shevchenko400797c2021-02-11 17:09:42 +0200372 for_each_console_dev(i, file, dev) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100373 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600374 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100375 }
376}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100377
Pali Rohár974f4832022-09-05 11:31:17 +0200378#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
379static void console_flush(int file)
380{
381 int i;
382 struct stdio_dev *dev;
383
384 for_each_console_dev(i, file, dev) {
385 if (dev->flush != NULL)
386 dev->flush(dev);
387 }
388}
389#endif
390
Tom Rini5e63c962019-10-30 09:18:43 -0400391#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200392static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100393{
394 iomux_doenv(file, dev->name);
395}
Tom Rini5e63c962019-10-30 09:18:43 -0400396#endif
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100397#else
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100398
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200399static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100400{
401}
402
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200403static inline bool console_needs_start_stop(int file, struct stdio_dev *sdev)
404{
405 return true;
406}
407
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100408static inline int console_getc(int file)
409{
Simon Glass709ea542014-07-23 06:54:59 -0600410 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100411}
412
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100413static bool console_has_tstc(void)
414{
415 return false;
416}
417
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100418static inline int console_tstc(int file)
419{
Simon Glass709ea542014-07-23 06:54:59 -0600420 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100421}
422
423static inline void console_putc(int file, const char c)
424{
Simon Glass709ea542014-07-23 06:54:59 -0600425 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100426}
427
Simon Glass493a4c82020-07-02 21:12:13 -0600428void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200429{
Simon Glass4057e272021-11-19 13:23:47 -0700430 if ((gd->flags & GD_FLG_DEVINIT) &&
431 serial_only == console_dev_is_serial(stdio_devices[file]))
Hans de Goedea8552c72015-05-05 13:13:36 +0200432 stdio_devices[file]->puts(stdio_devices[file], s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200433}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200434
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100435static inline void console_puts(int file, const char *s)
436{
Simon Glass709ea542014-07-23 06:54:59 -0600437 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100438}
439
Pali Rohár974f4832022-09-05 11:31:17 +0200440#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
441static inline void console_flush(int file)
442{
443 if (stdio_devices[file]->flush)
444 stdio_devices[file]->flush(stdio_devices[file]);
445}
446#endif
447
Tom Rini5e63c962019-10-30 09:18:43 -0400448#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200449static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100450{
451 console_setfile(file, dev);
452}
Tom Rini5e63c962019-10-30 09:18:43 -0400453#endif
Simon Glassb0265422017-01-16 07:03:26 -0700454#endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100455
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200456static void __maybe_unused console_setfile_and_devices(int file, struct stdio_dev *dev)
457{
458 console_setfile(file, dev);
459 console_devices_set(file, dev);
460}
461
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200462int console_start(int file, struct stdio_dev *sdev)
463{
464 int error;
465
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200466 if (!console_needs_start_stop(file, sdev))
467 return 0;
468
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200469 /* Start new device */
470 if (sdev->start) {
471 error = sdev->start(sdev);
472 /* If it's not started don't use it */
473 if (error < 0)
474 return error;
475 }
476 return 0;
477}
478
479void console_stop(int file, struct stdio_dev *sdev)
480{
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200481 if (!console_needs_start_stop(file, sdev))
482 return;
483
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200484 if (sdev->stop)
485 sdev->stop(sdev);
486}
487
wdenk47d1a6e2002-11-03 00:01:44 +0000488/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
489
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200490int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000491{
492 va_list args;
493 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200494 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000495
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100496 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000497
498 /* For this to work, printbuffer must be larger than
499 * anything we ever want to print.
500 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000501 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100502 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000503
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100504 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200505 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000506}
507
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100508int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000509{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200510 if ((unsigned int)file < MAX_FILES) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100511 /*
512 * Effectively poll for input wherever it may be available.
513 */
514 for (;;) {
Stefan Roese29caf932022-09-02 14:10:46 +0200515 schedule();
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100516 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
517 /*
518 * Upper layer may have already called tstc() so
519 * check for that first.
520 */
521 if (console_has_tstc())
522 return console_getc(file);
523 console_tstc(file);
524 } else {
525 if (console_tstc(file))
526 return console_getc(file);
527 }
528
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100529 /*
530 * If the watchdog must be rate-limited then it should
531 * already be handled in board-specific code.
532 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100533 if (IS_ENABLED(CONFIG_WATCHDOG))
534 udelay(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100535 }
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100536 }
wdenk47d1a6e2002-11-03 00:01:44 +0000537
538 return -1;
539}
540
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100541int ftstc(int file)
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 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000545
546 return -1;
547}
548
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100549void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000550{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200551 if ((unsigned int)file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100552 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000553}
554
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100555void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000556{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200557 if ((unsigned int)file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100558 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000559}
560
Pali Rohár974f4832022-09-05 11:31:17 +0200561#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
562void fflush(int file)
563{
Heinrich Schuchardt27380d82022-10-22 11:32:34 +0200564 if ((unsigned int)file < MAX_FILES)
Pali Rohár974f4832022-09-05 11:31:17 +0200565 console_flush(file);
566}
567#endif
568
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200569int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000570{
571 va_list args;
572 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200573 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000574
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100575 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000576
577 /* For this to work, printbuffer must be larger than
578 * anything we ever want to print.
579 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000580 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100581 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000582
583 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100584 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200585 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000586}
587
588/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
589
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200590int getchar(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000591{
Patrick Delaunay1e993712020-12-18 12:46:45 +0100592 int ch;
593
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100594 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100595 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100596
Graeme Russe3e454c2011-08-29 02:14:05 +0000597 if (!gd->have_console)
598 return 0;
599
Patrick Delaunay1e993712020-12-18 12:46:45 +0100600 ch = console_record_getc();
601 if (ch != -1)
602 return ch;
Simon Glass9854a872015-11-08 23:47:48 -0700603
wdenk47d1a6e2002-11-03 00:01:44 +0000604 if (gd->flags & GD_FLG_DEVINIT) {
605 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100606 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000607 }
608
609 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100610 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000611}
612
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100613int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000614{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100615 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100616 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100617
Graeme Russe3e454c2011-08-29 02:14:05 +0000618 if (!gd->have_console)
619 return 0;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100620
621 if (console_record_tstc())
622 return 1;
623
wdenk47d1a6e2002-11-03 00:01:44 +0000624 if (gd->flags & GD_FLG_DEVINIT) {
625 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100626 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000627 }
628
629 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100630 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000631}
632
Siarhei Siamashka27669662015-01-08 09:02:31 +0200633#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
634#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
635
Simon Glass8f925582016-10-17 20:12:36 -0600636#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Rasmus Villemoescff29632022-05-03 14:37:39 +0200637#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_VAL(PRE_CON_BUF_SZ))
Graeme Russ9558b482011-09-01 00:48:27 +0000638
639static void pre_console_putc(const char c)
640{
Simon Glass4e6bafa2017-06-15 21:37:52 -0600641 char *buffer;
642
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200643 if (gd->precon_buf_idx < 0)
644 return;
645
Rasmus Villemoescff29632022-05-03 14:37:39 +0200646 buffer = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ));
Graeme Russ9558b482011-09-01 00:48:27 +0000647
648 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass4e6bafa2017-06-15 21:37:52 -0600649
650 unmap_sysmem(buffer);
Graeme Russ9558b482011-09-01 00:48:27 +0000651}
652
Soeren Mochbe135cc2017-11-04 16:14:09 +0100653static void pre_console_puts(const char *s)
654{
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200655 if (gd->precon_buf_idx < 0)
656 return;
657
Soeren Mochbe135cc2017-11-04 16:14:09 +0100658 while (*s)
659 pre_console_putc(*s++);
660}
661
Siarhei Siamashka27669662015-01-08 09:02:31 +0200662static void print_pre_console_buffer(int flushpoint)
Graeme Russ9558b482011-09-01 00:48:27 +0000663{
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200664 long in = 0, out = 0;
Rasmus Villemoescff29632022-05-03 14:37:39 +0200665 char buf_out[CONFIG_VAL(PRE_CON_BUF_SZ) + 1];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600666 char *buf_in;
Graeme Russ9558b482011-09-01 00:48:27 +0000667
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100668 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
Patrick Delaunay13551b92019-08-02 14:58:10 +0200669 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200670
Rasmus Villemoescff29632022-05-03 14:37:39 +0200671 buf_in = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ));
672 if (gd->precon_buf_idx > CONFIG_VAL(PRE_CON_BUF_SZ))
673 in = gd->precon_buf_idx - CONFIG_VAL(PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000674
Hans de Goedea8552c72015-05-05 13:13:36 +0200675 while (in < gd->precon_buf_idx)
676 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600677 unmap_sysmem(buf_in);
Hans de Goedea8552c72015-05-05 13:13:36 +0200678
679 buf_out[out] = 0;
680
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200681 gd->precon_buf_idx = -1;
Hans de Goedea8552c72015-05-05 13:13:36 +0200682 switch (flushpoint) {
683 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
684 puts(buf_out);
685 break;
686 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
Simon Glass493a4c82020-07-02 21:12:13 -0600687 console_puts_select(stdout, false, buf_out);
Hans de Goedea8552c72015-05-05 13:13:36 +0200688 break;
689 }
Rasmus Villemoes04a20ca2022-05-03 15:13:27 +0200690 gd->precon_buf_idx = in;
Graeme Russ9558b482011-09-01 00:48:27 +0000691}
692#else
693static inline void pre_console_putc(const char c) {}
Soeren Mochbe135cc2017-11-04 16:14:09 +0100694static inline void pre_console_puts(const char *s) {}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200695static inline void print_pre_console_buffer(int flushpoint) {}
Graeme Russ9558b482011-09-01 00:48:27 +0000696#endif
697
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100698void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000699{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100700 if (!gd)
701 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100702
703 console_record_putc(c);
704
Simon Glass64e9b4f2017-12-04 13:48:19 -0700705 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100706 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass64e9b4f2017-12-04 13:48:19 -0700707 os_putc(c);
708 return;
709 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100710
Simon Glassd6ea5302015-06-23 15:38:33 -0600711 /* if we don't have a console yet, use the debug UART */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100712 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glassd6ea5302015-06-23 15:38:33 -0600713 printch(c);
714 return;
715 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100716
717 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200718 if (!(gd->flags & GD_FLG_DEVINIT))
719 pre_console_putc(c);
wdenkf6e20fc2004-02-08 19:38:38 +0000720 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200721 }
wdenka6cccae2004-02-06 21:48:22 +0000722
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100723 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100724 return;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100725
Graeme Russe3e454c2011-08-29 02:14:05 +0000726 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000727 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000728
wdenk47d1a6e2002-11-03 00:01:44 +0000729 if (gd->flags & GD_FLG_DEVINIT) {
730 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100731 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000732 } else {
733 /* Send directly to the handler */
Siarhei Siamashka27669662015-01-08 09:02:31 +0200734 pre_console_putc(c);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100735 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000736 }
737}
738
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100739void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000740{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100741 if (!gd)
742 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100743
744 console_record_puts(s);
745
Simon Glass36bcea62018-11-15 18:44:04 -0700746 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100747 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass36bcea62018-11-15 18:44:04 -0700748 os_puts(s);
749 return;
750 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100751
752 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Soeren Mochbe135cc2017-11-04 16:14:09 +0100753 while (*s) {
754 int ch = *s++;
755
756 printch(ch);
757 }
758 return;
759 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100760
761 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200762 if (!(gd->flags & GD_FLG_DEVINIT))
763 pre_console_puts(s);
Soeren Mochbe135cc2017-11-04 16:14:09 +0100764 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200765 }
Soeren Mochbe135cc2017-11-04 16:14:09 +0100766
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100767 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Soeren Mochbe135cc2017-11-04 16:14:09 +0100768 return;
Soeren Mochbe135cc2017-11-04 16:14:09 +0100769
770 if (!gd->have_console)
771 return pre_console_puts(s);
772
773 if (gd->flags & GD_FLG_DEVINIT) {
774 /* Send to the standard output */
775 fputs(stdout, s);
776 } else {
777 /* Send directly to the handler */
778 pre_console_puts(s);
779 serial_puts(s);
780 }
wdenk47d1a6e2002-11-03 00:01:44 +0000781}
782
Pali Rohár974f4832022-09-05 11:31:17 +0200783#ifdef CONFIG_CONSOLE_FLUSH_SUPPORT
784void flush(void)
785{
786 if (!gd)
787 return;
788
789 /* sandbox can send characters to stdout before it has a console */
790 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
791 os_flush();
792 return;
793 }
794
795 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY))
796 return;
797
798 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
799 return;
800
801 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
802 return;
803
804 if (!gd->have_console)
805 return;
806
807 if (gd->flags & GD_FLG_DEVINIT) {
808 /* Send to the standard output */
809 fflush(stdout);
Pali Rohár78b52432022-09-05 11:31:19 +0200810 } else {
811 /* Send directly to the handler */
812 serial_flush();
Pali Rohár974f4832022-09-05 11:31:17 +0200813 }
814}
815#endif
816
Simon Glass9854a872015-11-08 23:47:48 -0700817#ifdef CONFIG_CONSOLE_RECORD
818int console_record_init(void)
819{
820 int ret;
821
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100822 ret = membuff_new((struct membuff *)&gd->console_out,
Simon Glass8ce465e2021-10-23 17:26:03 -0600823 gd->flags & GD_FLG_RELOC ?
824 CONFIG_CONSOLE_RECORD_OUT_SIZE :
825 CONFIG_CONSOLE_RECORD_OUT_SIZE_F);
Simon Glass9854a872015-11-08 23:47:48 -0700826 if (ret)
827 return ret;
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100828 ret = membuff_new((struct membuff *)&gd->console_in,
829 CONFIG_CONSOLE_RECORD_IN_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700830
831 return ret;
832}
833
834void console_record_reset(void)
835{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100836 membuff_purge((struct membuff *)&gd->console_out);
837 membuff_purge((struct membuff *)&gd->console_in);
Simon Glassc1a2bb42021-05-08 06:59:56 -0600838 gd->flags &= ~GD_FLG_RECORD_OVF;
Simon Glass9854a872015-11-08 23:47:48 -0700839}
840
Simon Glassbd347152020-07-28 19:41:11 -0600841int console_record_reset_enable(void)
Simon Glass9854a872015-11-08 23:47:48 -0700842{
843 console_record_reset();
844 gd->flags |= GD_FLG_RECORD;
Simon Glassbd347152020-07-28 19:41:11 -0600845
846 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700847}
Simon Glassb6123122020-01-27 08:49:54 -0700848
849int console_record_readline(char *str, int maxlen)
850{
Simon Glassc1a2bb42021-05-08 06:59:56 -0600851 if (gd->flags & GD_FLG_RECORD_OVF)
852 return -ENOSPC;
853
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100854 return membuff_readline((struct membuff *)&gd->console_out, str,
855 maxlen, ' ');
Simon Glassb6123122020-01-27 08:49:54 -0700856}
857
858int console_record_avail(void)
859{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100860 return membuff_avail((struct membuff *)&gd->console_out);
Simon Glassb6123122020-01-27 08:49:54 -0700861}
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;
benlong.zhou4f40af82023-10-26 11:26:42 +0800979#ifdef CONFIG_AMLOGIC_MODIFY
980 char *p;
981#endif
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100982
983 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE))
984 return false;
985
benlong.zhou4f40af82023-10-26 11:26:42 +0800986#ifdef CONFIG_AMLOGIC_MODIFY
987 p = env_get("silent");
988 if ((p != NULL) && (p[0] == '1')) {
989 gd->flags |= GD_FLG_SILENT;
990 return false;
991 }
992 gd->flags &= ~GD_FLG_SILENT;
993#else
Patrick Delaunay13551b92019-08-02 14:58:10 +0200994 if (env_get("silent")) {
Chris Packham43e0a3d2016-09-23 15:59:43 +1200995 gd->flags |= GD_FLG_SILENT;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100996 return false;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200997 }
Patrick Delaunay13551b92019-08-02 14:58:10 +0200998
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100999 gd->flags &= ~GD_FLG_SILENT;
benlong.zhou4f40af82023-10-26 11:26:42 +08001000#endif
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001001
1002 return !!(flags & GD_FLG_SILENT);
Chris Packham43e0a3d2016-09-23 15:59:43 +12001003}
1004
Simon Glassb0895382017-06-15 21:37:50 -06001005int console_announce_r(void)
1006{
1007#if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
1008 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
1009
1010 display_options_get_banner(false, buf, sizeof(buf));
1011
Simon Glass493a4c82020-07-02 21:12:13 -06001012 console_puts_select(stdout, false, buf);
Simon Glassb0895382017-06-15 21:37:50 -06001013#endif
1014
1015 return 0;
1016}
1017
wdenk47d1a6e2002-11-03 00:01:44 +00001018/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001019int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001020{
wdenk47d1a6e2002-11-03 00:01:44 +00001021 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +00001022
Chris Packham43e0a3d2016-09-23 15:59:43 +12001023 console_update_silent();
wdenkf72da342003-10-10 10:05:42 +00001024
Siarhei Siamashka27669662015-01-08 09:02:31 +02001025 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
Graeme Russ9558b482011-09-01 00:48:27 +00001026
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001027 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001028}
1029
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001030void stdio_print_current_devices(void)
1031{
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001032 /* Print information */
1033 puts("In: ");
1034 if (stdio_devices[stdin] == NULL) {
1035 puts("No input devices available!\n");
1036 } else {
1037 printf ("%s\n", stdio_devices[stdin]->name);
1038 }
1039
1040 puts("Out: ");
1041 if (stdio_devices[stdout] == NULL) {
1042 puts("No output devices available!\n");
1043 } else {
1044 printf ("%s\n", stdio_devices[stdout]->name);
1045 }
1046
1047 puts("Err: ");
1048 if (stdio_devices[stderr] == NULL) {
1049 puts("No error devices available!\n");
1050 } else {
1051 printf ("%s\n", stdio_devices[stderr]->name);
1052 }
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +02001053}
1054
Simon Glassb0265422017-01-16 07:03:26 -07001055#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +00001056/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001057int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001058{
1059 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001060 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
wdenk6e592382004-04-18 17:39:38 +00001061 int i;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001062 int iomux_err = 0;
Patrick Delaunay13551b92019-08-02 14:58:10 +02001063 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +00001064
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001065 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +02001066 if (console_update_silent())
1067 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1068 else
1069 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001070
wdenk47d1a6e2002-11-03 00:01:44 +00001071 /* set default handlers at first */
Martin Dorwig49cad542015-01-26 15:22:54 -07001072 gd->jt->getc = serial_getc;
1073 gd->jt->tstc = serial_tstc;
1074 gd->jt->putc = serial_putc;
1075 gd->jt->puts = serial_puts;
1076 gd->jt->printf = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +00001077
1078 /* stdin stdout and stderr are in environment */
1079 /* scan for it */
Simon Glass00caae62017-08-03 12:22:12 -06001080 stdinname = env_get("stdin");
1081 stdoutname = env_get("stdout");
1082 stderrname = env_get("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +00001083
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001084 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Andy Shevchenko32324872020-12-21 14:30:03 +02001085 inputdev = console_search_dev(DEV_FLAGS_INPUT, stdinname);
1086 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, stdoutname);
1087 errdev = console_search_dev(DEV_FLAGS_OUTPUT, stderrname);
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001088 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
1089 iomux_err = iomux_doenv(stdin, stdinname);
1090 iomux_err += iomux_doenv(stdout, stdoutname);
1091 iomux_err += iomux_doenv(stderr, stderrname);
1092 if (!iomux_err)
1093 /* Successful, so skip all the code below. */
1094 goto done;
1095 }
wdenk47d1a6e2002-11-03 00:01:44 +00001096 }
1097 /* if the devices are overwritten or not found, use default device */
1098 if (inputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001099 inputdev = console_search_dev(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001100 }
1101 if (outputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001102 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001103 }
1104 if (errdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +02001105 errdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +00001106 }
1107 /* Initializes output console first */
1108 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001109 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001110 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001111 }
1112 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001113 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001114 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001115 }
1116 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001117 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001118 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001119 }
1120
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001121done:
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001122
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001123 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1124 stdio_print_current_devices();
1125
Simon Glassa2931b32016-02-06 14:31:37 -07001126#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001127 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
Anatolij Gustschin22b897a2020-05-23 17:11:20 +02001128 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001129 CONFIG_VIDCONSOLE_AS_NAME);
Simon Glassa2931b32016-02-06 14:31:37 -07001130#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001131
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001132 if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) {
1133 /* set the environment variables (will overwrite previous env settings) */
1134 for (i = 0; i < MAX_FILES; i++)
1135 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001136 }
wdenk47d1a6e2002-11-03 00:01:44 +00001137
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001138 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1139
Patrick Delaunay13551b92019-08-02 14:58:10 +02001140 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001141 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001142}
1143
Simon Glassb0265422017-01-16 07:03:26 -07001144#else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +00001145
1146/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001147int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001148{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001149 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001150 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001151 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001152 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001153 struct stdio_dev *dev;
Patrick Delaunay13551b92019-08-02 14:58:10 +02001154 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +00001155
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001156 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +02001157 if (console_update_silent())
1158 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1159 else
1160 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Chris Packham43e0a3d2016-09-23 15:59:43 +12001161
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001162 /*
1163 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +01001164 * a bmp to display. We redirect the output from frame buffer
1165 * console to serial console in this case or suppress it if
1166 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001167 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001168 if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) {
Anatolij Gustschina7490812010-03-16 15:29:33 +01001169 if (!(gd->flags & GD_FLG_SILENT))
Andy Shevchenko32324872020-12-21 14:30:03 +02001170 outputdev = console_search_dev (DEV_FLAGS_OUTPUT, "serial");
Anatolij Gustschina7490812010-03-16 15:29:33 +01001171 }
wdenkf72da342003-10-10 10:05:42 +00001172
wdenk47d1a6e2002-11-03 00:01:44 +00001173 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001174 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001175 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +00001176
1177 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
1178 inputdev = dev;
1179 }
1180 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
1181 outputdev = dev;
1182 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001183 if(inputdev && outputdev)
1184 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001185 }
1186
1187 /* Initializes output console first */
1188 if (outputdev != NULL) {
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001189 console_setfile_and_devices(stdout, outputdev);
1190 console_setfile_and_devices(stderr, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001191 }
1192
1193 /* Initializes input console */
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001194 if (inputdev != NULL)
1195 console_setfile_and_devices(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001196
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001197 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1198 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +00001199
1200 /* Setting environment variables */
Tom Rini27b42252018-05-03 09:12:26 -04001201 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -06001202 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001203 }
1204
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001205 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1206
Patrick Delaunay13551b92019-08-02 14:58:10 +02001207 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001208 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001209}
1210
Simon Glassb0265422017-01-16 07:03:26 -07001211#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */