blob: 523fb45a99e73bf634e55a1b7b70fd37cc26d2f9 [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 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>
Andreas J. Reichel64407462016-07-13 12:56:51 +020021#include <watchdog.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
wdenk47d1a6e2002-11-03 00:01:44 +000024
Wolfgang Denkd87080b2006-03-31 18:32:53 +020025DECLARE_GLOBAL_DATA_PTR;
26
Joe Hershberger849d5d92012-12-11 22:16:29 -060027static int on_console(const char *name, const char *value, enum env_op op,
28 int flags)
29{
30 int console = -1;
31
32 /* Check for console redirection */
33 if (strcmp(name, "stdin") == 0)
34 console = stdin;
35 else if (strcmp(name, "stdout") == 0)
36 console = stdout;
37 else if (strcmp(name, "stderr") == 0)
38 console = stderr;
39
40 /* if not actually setting a console variable, we don't care */
41 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
42 return 0;
43
44 switch (op) {
45 case env_op_create:
46 case env_op_overwrite:
47
Patrick Delaunayc04f8562020-12-18 12:46:43 +010048 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
49 if (iomux_doenv(console, value))
50 return 1;
51 } else {
52 /* Try assigning specified device */
53 if (console_assign(console, value) < 0)
54 return 1;
55 }
56
Joe Hershberger849d5d92012-12-11 22:16:29 -060057 return 0;
58
59 case env_op_delete:
60 if ((flags & H_FORCE) == 0)
61 printf("Can't delete \"%s\"\n", name);
62 return 1;
63
64 default:
65 return 0;
66 }
67}
68U_BOOT_ENV_CALLBACK(console, on_console);
69
Joe Hershbergere080d542012-12-11 22:16:30 -060070#ifdef CONFIG_SILENT_CONSOLE
71static int on_silent(const char *name, const char *value, enum env_op op,
72 int flags)
73{
Patrick Delaunayc04f8562020-12-18 12:46:43 +010074 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET))
75 if (flags & H_INTERACTIVE)
76 return 0;
77
78 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC))
79 if ((flags & H_INTERACTIVE) == 0)
80 return 0;
Joe Hershbergere080d542012-12-11 22:16:30 -060081
82 if (value != NULL)
83 gd->flags |= GD_FLG_SILENT;
84 else
85 gd->flags &= ~GD_FLG_SILENT;
86
87 return 0;
88}
89U_BOOT_ENV_CALLBACK(silent, on_silent);
90#endif
91
Patrick Delaunay1e993712020-12-18 12:46:45 +010092#ifdef CONFIG_CONSOLE_RECORD
93/* helper function: access to gd->console_out and gd->console_in */
94static void console_record_putc(const char c)
95{
96 if (!(gd->flags & GD_FLG_RECORD))
97 return;
98 if (gd->console_out.start)
99 membuff_putbyte((struct membuff *)&gd->console_out, c);
100}
101
102static void console_record_puts(const char *s)
103{
104 if (!(gd->flags & GD_FLG_RECORD))
105 return;
106 if (gd->console_out.start)
107 membuff_put((struct membuff *)&gd->console_out, s, strlen(s));
108}
109
110static int console_record_getc(void)
111{
112 if (!(gd->flags & GD_FLG_RECORD))
113 return -1;
114 if (!gd->console_in.start)
115 return -1;
116
117 return membuff_getbyte((struct membuff *)&gd->console_in);
118}
119
120static int console_record_tstc(void)
121{
122 if (!(gd->flags & GD_FLG_RECORD))
123 return 0;
124 if (gd->console_in.start) {
125 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
126 return 1;
127 }
128 return 0;
129}
130#else
131static void console_record_putc(char c)
132{
133}
134
135static void console_record_puts(const char *s)
136{
137}
138
139static int console_record_getc(void)
140{
141 return -1;
142}
143
144static int console_record_tstc(void)
145{
146 return 0;
147}
148#endif
149
Simon Glassb0265422017-01-16 07:03:26 -0700150#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000151/*
152 * if overwrite_console returns 1, the stdin, stderr and stdout
153 * are switched to the serial port, else the settings in the
154 * environment are used
155 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100157extern int overwrite_console(void);
158#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +0000159#else
wdenk83e40ba2005-03-31 18:42:15 +0000160#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +0000162
Simon Glassb0265422017-01-16 07:03:26 -0700163#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000164
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200165static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +0000166{
167 int error = 0;
168
169 if (dev == NULL)
170 return -1;
171
172 switch (file) {
173 case stdin:
174 case stdout:
175 case stderr:
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200176 error = console_start(file, dev);
177 if (error)
178 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000179
180 /* Assign the new device (leaving the existing one started) */
181 stdio_devices[file] = dev;
182
183 /*
184 * Update monitor functions
185 * (to use the console stuff by other applications)
186 */
187 switch (file) {
188 case stdin:
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200189 gd->jt->getc = getchar;
Martin Dorwig49cad542015-01-26 15:22:54 -0700190 gd->jt->tstc = tstc;
wdenk47d1a6e2002-11-03 00:01:44 +0000191 break;
192 case stdout:
Martin Dorwig49cad542015-01-26 15:22:54 -0700193 gd->jt->putc = putc;
194 gd->jt->puts = puts;
195 gd->jt->printf = printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000196 break;
197 }
198 break;
199
200 default: /* Invalid file ID */
201 error = -1;
202 }
203 return error;
204}
205
Simon Glass42f9f912017-07-27 09:31:03 -0600206/**
207 * console_dev_is_serial() - Check if a stdio device is a serial device
208 *
209 * @sdev: Device to check
Simon Glass7b3c4c32017-07-27 09:31:04 -0600210 * @return true if this device is in the serial uclass (or for pre-driver-model,
211 * whether it is called "serial".
Simon Glass42f9f912017-07-27 09:31:03 -0600212 */
213static bool console_dev_is_serial(struct stdio_dev *sdev)
214{
215 bool is_serial;
216
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100217 if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) {
Simon Glass7b3c4c32017-07-27 09:31:04 -0600218 struct udevice *dev = sdev->priv;
219
220 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100221 } else {
222 is_serial = !strcmp(sdev->name, "serial");
223 }
Simon Glass42f9f912017-07-27 09:31:03 -0600224
225 return is_serial;
226}
227
Simon Glassb0265422017-01-16 07:03:26 -0700228#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100229/** Console I/O multiplexing *******************************************/
230
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100231/* tstcdev: save the last stdio device with pending characters, with tstc != 0 */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200232static struct stdio_dev *tstcdev;
233struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100234int cd_count[MAX_FILES];
235
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200236static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100237{
238 console_devices[file][0] = dev;
Andy Shevchenko20a7d352021-02-11 17:09:38 +0200239 cd_count[file] = 1;
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100240}
241
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200242/**
243 * console_needs_start_stop() - check if we need to start or stop the STDIO device
244 * @file: STDIO file
245 * @sdev: STDIO device in question
246 *
247 * This function checks if we need to start or stop the stdio device used for
248 * a console. For IOMUX case it simply enforces one time start and one time
249 * stop of the device independently of how many STDIO files are using it. In
250 * other words, we start console once before first STDIO device wants it and
251 * stop after the last is gone.
252 */
253static bool console_needs_start_stop(int file, struct stdio_dev *sdev)
254{
Andy Shevchenkob672c162021-02-11 17:09:41 +0200255 int i;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200256
257 for (i = 0; i < ARRAY_SIZE(cd_count); i++) {
258 if (i == file)
259 continue;
260
Andy Shevchenkob672c162021-02-11 17:09:41 +0200261 if (iomux_match_device(console_devices[i], cd_count[i], sdev) >= 0)
262 return false;
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200263 }
264 return true;
265}
266
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100267/*
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200268 * This depends on tstc() always being called before getchar().
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100269 * This is guaranteed to be true because this routine is called
270 * only from fgetc() which assures it.
271 * No attempt is made to demultiplex multiple input sources.
272 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100273static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100274{
275 unsigned char ret;
276
277 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600278 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100279 tstcdev = NULL;
280 return ret;
281}
282
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100283/* Upper layer may have already called tstc(): check the saved result */
284static bool console_has_tstc(void)
285{
286 return !!tstcdev;
287}
288
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100289static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100290{
291 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200292 struct stdio_dev *dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500293 int prev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100294
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500295 prev = disable_ctrlc(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100296 for (i = 0; i < cd_count[file]; i++) {
297 dev = console_devices[file][i];
298 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600299 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100300 if (ret > 0) {
301 tstcdev = dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500302 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100303 return ret;
304 }
305 }
306 }
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500307 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100308
309 return 0;
310}
311
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100312static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100313{
314 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200315 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100316
317 for (i = 0; i < cd_count[file]; i++) {
318 dev = console_devices[file][i];
319 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600320 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100321 }
322}
323
Simon Glass493a4c82020-07-02 21:12:13 -0600324/**
325 * console_puts_select() - Output a string to all console devices
326 *
327 * @file: File number to output to (e,g, stdout, see stdio.h)
328 * @serial_only: true to output only to serial, false to output to everything
329 * else
330 * @s: String to output
331 */
332static void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200333{
334 int i;
335 struct stdio_dev *dev;
336
337 for (i = 0; i < cd_count[file]; i++) {
Simon Glass493a4c82020-07-02 21:12:13 -0600338 bool is_serial;
339
Siarhei Siamashka27669662015-01-08 09:02:31 +0200340 dev = console_devices[file][i];
Simon Glass493a4c82020-07-02 21:12:13 -0600341 is_serial = console_dev_is_serial(dev);
342 if (dev->puts && serial_only == is_serial)
Hans de Goedea8552c72015-05-05 13:13:36 +0200343 dev->puts(dev, s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200344 }
345}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200346
Simon Glass493a4c82020-07-02 21:12:13 -0600347void console_puts_select_stderr(bool serial_only, const char *s)
348{
349 console_puts_select(stderr, serial_only, s);
350}
351
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100352static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100353{
354 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200355 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100356
357 for (i = 0; i < cd_count[file]; i++) {
358 dev = console_devices[file][i];
359 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600360 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100361 }
362}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100363
Tom Rini5e63c962019-10-30 09:18:43 -0400364#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200365static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100366{
367 iomux_doenv(file, dev->name);
368}
Tom Rini5e63c962019-10-30 09:18:43 -0400369#endif
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100370#else
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100371
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200372static void console_devices_set(int file, struct stdio_dev *dev)
Patrick Delaunay45375ad2020-12-18 12:46:44 +0100373{
374}
375
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200376static inline bool console_needs_start_stop(int file, struct stdio_dev *sdev)
377{
378 return true;
379}
380
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100381static inline int console_getc(int file)
382{
Simon Glass709ea542014-07-23 06:54:59 -0600383 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100384}
385
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100386static bool console_has_tstc(void)
387{
388 return false;
389}
390
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100391static inline int console_tstc(int file)
392{
Simon Glass709ea542014-07-23 06:54:59 -0600393 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100394}
395
396static inline void console_putc(int file, const char c)
397{
Simon Glass709ea542014-07-23 06:54:59 -0600398 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100399}
400
Simon Glass493a4c82020-07-02 21:12:13 -0600401void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200402{
Simon Glass493a4c82020-07-02 21:12:13 -0600403 if (serial_only == console_dev_is_serial(stdio_devices[file]))
Hans de Goedea8552c72015-05-05 13:13:36 +0200404 stdio_devices[file]->puts(stdio_devices[file], s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200405}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200406
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100407static inline void console_puts(int file, const char *s)
408{
Simon Glass709ea542014-07-23 06:54:59 -0600409 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100410}
411
Tom Rini5e63c962019-10-30 09:18:43 -0400412#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200413static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100414{
415 console_setfile(file, dev);
416}
Tom Rini5e63c962019-10-30 09:18:43 -0400417#endif
Simon Glassb0265422017-01-16 07:03:26 -0700418#endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100419
Andy Shevchenko09d8f072021-02-11 17:09:39 +0200420static void __maybe_unused console_setfile_and_devices(int file, struct stdio_dev *dev)
421{
422 console_setfile(file, dev);
423 console_devices_set(file, dev);
424}
425
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200426int console_start(int file, struct stdio_dev *sdev)
427{
428 int error;
429
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200430 if (!console_needs_start_stop(file, sdev))
431 return 0;
432
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200433 /* Start new device */
434 if (sdev->start) {
435 error = sdev->start(sdev);
436 /* If it's not started don't use it */
437 if (error < 0)
438 return error;
439 }
440 return 0;
441}
442
443void console_stop(int file, struct stdio_dev *sdev)
444{
Andy Shevchenko95aaf402020-12-21 14:30:01 +0200445 if (!console_needs_start_stop(file, sdev))
446 return;
447
Andy Shevchenko41f668b2020-12-21 14:30:00 +0200448 if (sdev->stop)
449 sdev->stop(sdev);
450}
451
wdenk47d1a6e2002-11-03 00:01:44 +0000452/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
453
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200454int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000455{
456 va_list args;
457 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200458 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000459
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100460 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000461
462 /* For this to work, printbuffer must be larger than
463 * anything we ever want to print.
464 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000465 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100466 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000467
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100468 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200469 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000470}
471
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100472int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000473{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100474 if (file < MAX_FILES) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100475 /*
476 * Effectively poll for input wherever it may be available.
477 */
478 for (;;) {
Andreas J. Reichel64407462016-07-13 12:56:51 +0200479 WATCHDOG_RESET();
Patrick Delaunaya17b38c2020-12-18 12:46:46 +0100480 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
481 /*
482 * Upper layer may have already called tstc() so
483 * check for that first.
484 */
485 if (console_has_tstc())
486 return console_getc(file);
487 console_tstc(file);
488 } else {
489 if (console_tstc(file))
490 return console_getc(file);
491 }
492
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100493 /*
494 * If the watchdog must be rate-limited then it should
495 * already be handled in board-specific code.
496 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100497 if (IS_ENABLED(CONFIG_WATCHDOG))
498 udelay(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100499 }
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100500 }
wdenk47d1a6e2002-11-03 00:01:44 +0000501
502 return -1;
503}
504
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100505int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000506{
507 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100508 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000509
510 return -1;
511}
512
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100513void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000514{
515 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100516 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000517}
518
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100519void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000520{
521 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100522 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000523}
524
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200525int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000526{
527 va_list args;
528 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200529 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000530
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100531 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000532
533 /* For this to work, printbuffer must be larger than
534 * anything we ever want to print.
535 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000536 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100537 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000538
539 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100540 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200541 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000542}
543
544/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
545
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200546int getchar(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000547{
Patrick Delaunay1e993712020-12-18 12:46:45 +0100548 int ch;
549
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100550 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100551 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100552
Graeme Russe3e454c2011-08-29 02:14:05 +0000553 if (!gd->have_console)
554 return 0;
555
Patrick Delaunay1e993712020-12-18 12:46:45 +0100556 ch = console_record_getc();
557 if (ch != -1)
558 return ch;
Simon Glass9854a872015-11-08 23:47:48 -0700559
wdenk47d1a6e2002-11-03 00:01:44 +0000560 if (gd->flags & GD_FLG_DEVINIT) {
561 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100562 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000563 }
564
565 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100566 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000567}
568
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100569int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000570{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100571 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100572 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100573
Graeme Russe3e454c2011-08-29 02:14:05 +0000574 if (!gd->have_console)
575 return 0;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100576
577 if (console_record_tstc())
578 return 1;
579
wdenk47d1a6e2002-11-03 00:01:44 +0000580 if (gd->flags & GD_FLG_DEVINIT) {
581 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100582 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000583 }
584
585 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100586 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000587}
588
Siarhei Siamashka27669662015-01-08 09:02:31 +0200589#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
590#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
591
Simon Glass8f925582016-10-17 20:12:36 -0600592#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Graeme Russ9558b482011-09-01 00:48:27 +0000593#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
594
595static void pre_console_putc(const char c)
596{
Simon Glass4e6bafa2017-06-15 21:37:52 -0600597 char *buffer;
598
599 buffer = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000600
601 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass4e6bafa2017-06-15 21:37:52 -0600602
603 unmap_sysmem(buffer);
Graeme Russ9558b482011-09-01 00:48:27 +0000604}
605
Soeren Mochbe135cc2017-11-04 16:14:09 +0100606static void pre_console_puts(const char *s)
607{
608 while (*s)
609 pre_console_putc(*s++);
610}
611
Siarhei Siamashka27669662015-01-08 09:02:31 +0200612static void print_pre_console_buffer(int flushpoint)
Graeme Russ9558b482011-09-01 00:48:27 +0000613{
Hans de Goedea8552c72015-05-05 13:13:36 +0200614 unsigned long in = 0, out = 0;
Hans de Goedea8552c72015-05-05 13:13:36 +0200615 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600616 char *buf_in;
Graeme Russ9558b482011-09-01 00:48:27 +0000617
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100618 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
Patrick Delaunay13551b92019-08-02 14:58:10 +0200619 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200620
Simon Glass4e6bafa2017-06-15 21:37:52 -0600621 buf_in = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000622 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
Hans de Goedea8552c72015-05-05 13:13:36 +0200623 in = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
Graeme Russ9558b482011-09-01 00:48:27 +0000624
Hans de Goedea8552c72015-05-05 13:13:36 +0200625 while (in < gd->precon_buf_idx)
626 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600627 unmap_sysmem(buf_in);
Hans de Goedea8552c72015-05-05 13:13:36 +0200628
629 buf_out[out] = 0;
630
631 switch (flushpoint) {
632 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
633 puts(buf_out);
634 break;
635 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
Simon Glass493a4c82020-07-02 21:12:13 -0600636 console_puts_select(stdout, false, buf_out);
Hans de Goedea8552c72015-05-05 13:13:36 +0200637 break;
638 }
Graeme Russ9558b482011-09-01 00:48:27 +0000639}
640#else
641static inline void pre_console_putc(const char c) {}
Soeren Mochbe135cc2017-11-04 16:14:09 +0100642static inline void pre_console_puts(const char *s) {}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200643static inline void print_pre_console_buffer(int flushpoint) {}
Graeme Russ9558b482011-09-01 00:48:27 +0000644#endif
645
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100646void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000647{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100648 if (!gd)
649 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100650
651 console_record_putc(c);
652
Simon Glass64e9b4f2017-12-04 13:48:19 -0700653 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100654 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass64e9b4f2017-12-04 13:48:19 -0700655 os_putc(c);
656 return;
657 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100658
Simon Glassd6ea5302015-06-23 15:38:33 -0600659 /* if we don't have a console yet, use the debug UART */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100660 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glassd6ea5302015-06-23 15:38:33 -0600661 printch(c);
662 return;
663 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100664
665 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200666 if (!(gd->flags & GD_FLG_DEVINIT))
667 pre_console_putc(c);
wdenkf6e20fc2004-02-08 19:38:38 +0000668 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200669 }
wdenka6cccae2004-02-06 21:48:22 +0000670
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100671 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100672 return;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100673
Graeme Russe3e454c2011-08-29 02:14:05 +0000674 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000675 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000676
wdenk47d1a6e2002-11-03 00:01:44 +0000677 if (gd->flags & GD_FLG_DEVINIT) {
678 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100679 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000680 } else {
681 /* Send directly to the handler */
Siarhei Siamashka27669662015-01-08 09:02:31 +0200682 pre_console_putc(c);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100683 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000684 }
685}
686
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100687void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000688{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100689 if (!gd)
690 return;
Patrick Delaunay1e993712020-12-18 12:46:45 +0100691
692 console_record_puts(s);
693
Simon Glass36bcea62018-11-15 18:44:04 -0700694 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100695 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass36bcea62018-11-15 18:44:04 -0700696 os_puts(s);
697 return;
698 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100699
700 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Soeren Mochbe135cc2017-11-04 16:14:09 +0100701 while (*s) {
702 int ch = *s++;
703
704 printch(ch);
705 }
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_puts(s);
Soeren Mochbe135cc2017-11-04 16:14:09 +0100712 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200713 }
Soeren Mochbe135cc2017-11-04 16:14:09 +0100714
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100715 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Soeren Mochbe135cc2017-11-04 16:14:09 +0100716 return;
Soeren Mochbe135cc2017-11-04 16:14:09 +0100717
718 if (!gd->have_console)
719 return pre_console_puts(s);
720
721 if (gd->flags & GD_FLG_DEVINIT) {
722 /* Send to the standard output */
723 fputs(stdout, s);
724 } else {
725 /* Send directly to the handler */
726 pre_console_puts(s);
727 serial_puts(s);
728 }
wdenk47d1a6e2002-11-03 00:01:44 +0000729}
730
Simon Glass9854a872015-11-08 23:47:48 -0700731#ifdef CONFIG_CONSOLE_RECORD
732int console_record_init(void)
733{
734 int ret;
735
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100736 ret = membuff_new((struct membuff *)&gd->console_out,
737 CONFIG_CONSOLE_RECORD_OUT_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700738 if (ret)
739 return ret;
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100740 ret = membuff_new((struct membuff *)&gd->console_in,
741 CONFIG_CONSOLE_RECORD_IN_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700742
743 return ret;
744}
745
746void console_record_reset(void)
747{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100748 membuff_purge((struct membuff *)&gd->console_out);
749 membuff_purge((struct membuff *)&gd->console_in);
Simon Glass9854a872015-11-08 23:47:48 -0700750}
751
Simon Glassbd347152020-07-28 19:41:11 -0600752int console_record_reset_enable(void)
Simon Glass9854a872015-11-08 23:47:48 -0700753{
754 console_record_reset();
755 gd->flags |= GD_FLG_RECORD;
Simon Glassbd347152020-07-28 19:41:11 -0600756
757 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700758}
Simon Glassb6123122020-01-27 08:49:54 -0700759
760int console_record_readline(char *str, int maxlen)
761{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100762 return membuff_readline((struct membuff *)&gd->console_out, str,
763 maxlen, ' ');
Simon Glassb6123122020-01-27 08:49:54 -0700764}
765
766int console_record_avail(void)
767{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100768 return membuff_avail((struct membuff *)&gd->console_out);
Simon Glassb6123122020-01-27 08:49:54 -0700769}
770
Simon Glass9854a872015-11-08 23:47:48 -0700771#endif
772
wdenk47d1a6e2002-11-03 00:01:44 +0000773/* test if ctrl-c was pressed */
774static int ctrlc_disabled = 0; /* see disable_ctrl() */
775static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100776int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000777{
wdenk47d1a6e2002-11-03 00:01:44 +0000778 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100779 if (tstc()) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200780 switch (getchar()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000781 case 0x03: /* ^C - Control C */
782 ctrlc_was_pressed = 1;
783 return 1;
784 default:
785 break;
786 }
787 }
788 }
Simon Glass8969ea32014-09-14 12:40:15 -0600789
wdenk47d1a6e2002-11-03 00:01:44 +0000790 return 0;
791}
Pierre Auberta5dffa42014-04-24 10:30:07 +0200792/* Reads user's confirmation.
793 Returns 1 if user's input is "y", "Y", "yes" or "YES"
794*/
795int confirm_yesno(void)
796{
797 int i;
798 char str_input[5];
wdenk47d1a6e2002-11-03 00:01:44 +0000799
Pierre Auberta5dffa42014-04-24 10:30:07 +0200800 /* Flush input */
801 while (tstc())
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200802 getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200803 i = 0;
804 while (i < sizeof(str_input)) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200805 str_input[i] = getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200806 putc(str_input[i]);
807 if (str_input[i] == '\r')
808 break;
809 i++;
810 }
811 putc('\n');
812 if (strncmp(str_input, "y\r", 2) == 0 ||
813 strncmp(str_input, "Y\r", 2) == 0 ||
814 strncmp(str_input, "yes\r", 4) == 0 ||
815 strncmp(str_input, "YES\r", 4) == 0)
816 return 1;
817 return 0;
818}
wdenk47d1a6e2002-11-03 00:01:44 +0000819/* pass 1 to disable ctrlc() checking, 0 to enable.
820 * returns previous state
821 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100822int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000823{
824 int prev = ctrlc_disabled; /* save previous state */
825
826 ctrlc_disabled = disable;
827 return prev;
828}
829
830int had_ctrlc (void)
831{
832 return ctrlc_was_pressed;
833}
834
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100835void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000836{
837 ctrlc_was_pressed = 0;
838}
839
wdenk47d1a6e2002-11-03 00:01:44 +0000840/** U-Boot INIT FUNCTIONS *************************************************/
841
Andy Shevchenko32324872020-12-21 14:30:03 +0200842struct stdio_dev *console_search_dev(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200843{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200844 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200845
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200846 dev = stdio_get_by_name(name);
Simon Glassa2931b32016-02-06 14:31:37 -0700847#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200848 if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME))
Simon Glassa2931b32016-02-06 14:31:37 -0700849 dev = stdio_get_by_name("vidconsole");
850#endif
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200851
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100852 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200853 return dev;
854
855 return NULL;
856}
857
Mike Frysingerd7be3052010-10-20 07:18:03 -0400858int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000859{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200860 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200861 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000862
863 /* Check for valid file */
Andy Shevchenko7b9ca3f2021-02-11 17:09:37 +0200864 flag = stdio_file_to_flags(file);
865 if (flag < 0)
866 return flag;
wdenk47d1a6e2002-11-03 00:01:44 +0000867
868 /* Check for valid device name */
869
Andy Shevchenko32324872020-12-21 14:30:03 +0200870 dev = console_search_dev(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000871
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100872 if (dev)
873 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000874
875 return -1;
876}
877
Patrick Delaunay13551b92019-08-02 14:58:10 +0200878/* return true if the 'silent' flag is removed */
879static bool console_update_silent(void)
Chris Packham43e0a3d2016-09-23 15:59:43 +1200880{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100881 unsigned long flags = gd->flags;
882
883 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE))
884 return false;
885
Patrick Delaunay13551b92019-08-02 14:58:10 +0200886 if (env_get("silent")) {
Chris Packham43e0a3d2016-09-23 15:59:43 +1200887 gd->flags |= GD_FLG_SILENT;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100888 return false;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200889 }
Patrick Delaunay13551b92019-08-02 14:58:10 +0200890
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100891 gd->flags &= ~GD_FLG_SILENT;
892
893 return !!(flags & GD_FLG_SILENT);
Chris Packham43e0a3d2016-09-23 15:59:43 +1200894}
895
Simon Glassb0895382017-06-15 21:37:50 -0600896int console_announce_r(void)
897{
898#if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
899 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
900
901 display_options_get_banner(false, buf, sizeof(buf));
902
Simon Glass493a4c82020-07-02 21:12:13 -0600903 console_puts_select(stdout, false, buf);
Simon Glassb0895382017-06-15 21:37:50 -0600904#endif
905
906 return 0;
907}
908
wdenk47d1a6e2002-11-03 00:01:44 +0000909/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100910int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000911{
wdenk47d1a6e2002-11-03 00:01:44 +0000912 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000913
Chris Packham43e0a3d2016-09-23 15:59:43 +1200914 console_update_silent();
wdenkf72da342003-10-10 10:05:42 +0000915
Siarhei Siamashka27669662015-01-08 09:02:31 +0200916 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
Graeme Russ9558b482011-09-01 00:48:27 +0000917
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100918 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000919}
920
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200921void stdio_print_current_devices(void)
922{
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200923 /* Print information */
924 puts("In: ");
925 if (stdio_devices[stdin] == NULL) {
926 puts("No input devices available!\n");
927 } else {
928 printf ("%s\n", stdio_devices[stdin]->name);
929 }
930
931 puts("Out: ");
932 if (stdio_devices[stdout] == NULL) {
933 puts("No output devices available!\n");
934 } else {
935 printf ("%s\n", stdio_devices[stdout]->name);
936 }
937
938 puts("Err: ");
939 if (stdio_devices[stderr] == NULL) {
940 puts("No error devices available!\n");
941 } else {
942 printf ("%s\n", stdio_devices[stderr]->name);
943 }
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200944}
945
Simon Glassb0265422017-01-16 07:03:26 -0700946#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000947/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100948int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000949{
950 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200951 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
wdenk6e592382004-04-18 17:39:38 +0000952 int i;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100953 int iomux_err = 0;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200954 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +0000955
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200956 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +0200957 if (console_update_silent())
958 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
959 else
960 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200961
wdenk47d1a6e2002-11-03 00:01:44 +0000962 /* set default handlers at first */
Martin Dorwig49cad542015-01-26 15:22:54 -0700963 gd->jt->getc = serial_getc;
964 gd->jt->tstc = serial_tstc;
965 gd->jt->putc = serial_putc;
966 gd->jt->puts = serial_puts;
967 gd->jt->printf = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000968
969 /* stdin stdout and stderr are in environment */
970 /* scan for it */
Simon Glass00caae62017-08-03 12:22:12 -0600971 stdinname = env_get("stdin");
972 stdoutname = env_get("stdout");
973 stderrname = env_get("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000974
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200975 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Andy Shevchenko32324872020-12-21 14:30:03 +0200976 inputdev = console_search_dev(DEV_FLAGS_INPUT, stdinname);
977 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, stdoutname);
978 errdev = console_search_dev(DEV_FLAGS_OUTPUT, stderrname);
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100979 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
980 iomux_err = iomux_doenv(stdin, stdinname);
981 iomux_err += iomux_doenv(stdout, stdoutname);
982 iomux_err += iomux_doenv(stderr, stderrname);
983 if (!iomux_err)
984 /* Successful, so skip all the code below. */
985 goto done;
986 }
wdenk47d1a6e2002-11-03 00:01:44 +0000987 }
988 /* if the devices are overwritten or not found, use default device */
989 if (inputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +0200990 inputdev = console_search_dev(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000991 }
992 if (outputdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +0200993 outputdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000994 }
995 if (errdev == NULL) {
Andy Shevchenko32324872020-12-21 14:30:03 +0200996 errdev = console_search_dev(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000997 }
998 /* Initializes output console first */
999 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001000 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001001 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001002 }
1003 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001004 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001005 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001006 }
1007 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001008 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +01001009 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001010 }
1011
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001012done:
Gary Jennejohn16a28ef2008-11-06 15:04:23 +01001013
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001014 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1015 stdio_print_current_devices();
1016
Simon Glassa2931b32016-02-06 14:31:37 -07001017#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001018 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
Anatolij Gustschin22b897a2020-05-23 17:11:20 +02001019 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +02001020 CONFIG_VIDCONSOLE_AS_NAME);
Simon Glassa2931b32016-02-06 14:31:37 -07001021#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001022
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001023 if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) {
1024 /* set the environment variables (will overwrite previous env settings) */
1025 for (i = 0; i < MAX_FILES; i++)
1026 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001027 }
wdenk47d1a6e2002-11-03 00:01:44 +00001028
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001029 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1030
Patrick Delaunay13551b92019-08-02 14:58:10 +02001031 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001032 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001033}
1034
Simon Glassb0265422017-01-16 07:03:26 -07001035#else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +00001036
1037/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001038int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001039{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001040 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001041 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001042 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001043 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001044 struct stdio_dev *dev;
Patrick Delaunay13551b92019-08-02 14:58:10 +02001045 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +00001046
Patrick Delaunaybf46be72019-08-02 14:58:09 +02001047 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +02001048 if (console_update_silent())
1049 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
1050 else
1051 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Chris Packham43e0a3d2016-09-23 15:59:43 +12001052
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001053 /*
1054 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +01001055 * a bmp to display. We redirect the output from frame buffer
1056 * console to serial console in this case or suppress it if
1057 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001058 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001059 if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) {
Anatolij Gustschina7490812010-03-16 15:29:33 +01001060 if (!(gd->flags & GD_FLG_SILENT))
Andy Shevchenko32324872020-12-21 14:30:03 +02001061 outputdev = console_search_dev (DEV_FLAGS_OUTPUT, "serial");
Anatolij Gustschina7490812010-03-16 15:29:33 +01001062 }
wdenkf72da342003-10-10 10:05:42 +00001063
wdenk47d1a6e2002-11-03 00:01:44 +00001064 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001065 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001066 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +00001067
1068 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
1069 inputdev = dev;
1070 }
1071 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
1072 outputdev = dev;
1073 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +02001074 if(inputdev && outputdev)
1075 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001076 }
1077
1078 /* Initializes output console first */
1079 if (outputdev != NULL) {
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001080 console_setfile_and_devices(stdout, outputdev);
1081 console_setfile_and_devices(stderr, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001082 }
1083
1084 /* Initializes input console */
Andy Shevchenko09d8f072021-02-11 17:09:39 +02001085 if (inputdev != NULL)
1086 console_setfile_and_devices(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +00001087
Patrick Delaunayc04f8562020-12-18 12:46:43 +01001088 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
1089 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +00001090
1091 /* Setting environment variables */
Tom Rini27b42252018-05-03 09:12:26 -04001092 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -06001093 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +00001094 }
1095
Joe Hershbergerc4e00572012-12-11 22:16:19 -06001096 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
1097
Patrick Delaunay13551b92019-08-02 14:58:10 +02001098 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001099 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001100}
1101
Simon Glassb0265422017-01-16 07:03:26 -07001102#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */