blob: d225fdd920a58500c39152f4df985f48140d9772 [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 Glassc05ed002020-05-10 11:40:11 -060022#include <linux/delay.h>
wdenk47d1a6e2002-11-03 00:01:44 +000023
Wolfgang Denkd87080b2006-03-31 18:32:53 +020024DECLARE_GLOBAL_DATA_PTR;
25
Joe Hershberger849d5d92012-12-11 22:16:29 -060026static int on_console(const char *name, const char *value, enum env_op op,
27 int flags)
28{
29 int console = -1;
30
31 /* Check for console redirection */
32 if (strcmp(name, "stdin") == 0)
33 console = stdin;
34 else if (strcmp(name, "stdout") == 0)
35 console = stdout;
36 else if (strcmp(name, "stderr") == 0)
37 console = stderr;
38
39 /* if not actually setting a console variable, we don't care */
40 if (console == -1 || (gd->flags & GD_FLG_DEVINIT) == 0)
41 return 0;
42
43 switch (op) {
44 case env_op_create:
45 case env_op_overwrite:
46
Patrick Delaunayc04f8562020-12-18 12:46:43 +010047 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
48 if (iomux_doenv(console, value))
49 return 1;
50 } else {
51 /* Try assigning specified device */
52 if (console_assign(console, value) < 0)
53 return 1;
54 }
55
Joe Hershberger849d5d92012-12-11 22:16:29 -060056 return 0;
57
58 case env_op_delete:
59 if ((flags & H_FORCE) == 0)
60 printf("Can't delete \"%s\"\n", name);
61 return 1;
62
63 default:
64 return 0;
65 }
66}
67U_BOOT_ENV_CALLBACK(console, on_console);
68
Joe Hershbergere080d542012-12-11 22:16:30 -060069#ifdef CONFIG_SILENT_CONSOLE
70static int on_silent(const char *name, const char *value, enum env_op op,
71 int flags)
72{
Patrick Delaunayc04f8562020-12-18 12:46:43 +010073 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET))
74 if (flags & H_INTERACTIVE)
75 return 0;
76
77 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC))
78 if ((flags & H_INTERACTIVE) == 0)
79 return 0;
Joe Hershbergere080d542012-12-11 22:16:30 -060080
81 if (value != NULL)
82 gd->flags |= GD_FLG_SILENT;
83 else
84 gd->flags &= ~GD_FLG_SILENT;
85
86 return 0;
87}
88U_BOOT_ENV_CALLBACK(silent, on_silent);
89#endif
90
Simon Glassb0265422017-01-16 07:03:26 -070091#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +000092/*
93 * if overwrite_console returns 1, the stdin, stderr and stdout
94 * are switched to the serial port, else the settings in the
95 * environment are used
96 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010098extern int overwrite_console(void);
99#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +0000100#else
wdenk83e40ba2005-03-31 18:42:15 +0000101#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +0000103
Simon Glassb0265422017-01-16 07:03:26 -0700104#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000105
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200106static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +0000107{
108 int error = 0;
109
110 if (dev == NULL)
111 return -1;
112
113 switch (file) {
114 case stdin:
115 case stdout:
116 case stderr:
117 /* Start new device */
118 if (dev->start) {
Simon Glass709ea542014-07-23 06:54:59 -0600119 error = dev->start(dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000120 /* If it's not started dont use it */
121 if (error < 0)
122 break;
123 }
124
125 /* Assign the new device (leaving the existing one started) */
126 stdio_devices[file] = dev;
127
128 /*
129 * Update monitor functions
130 * (to use the console stuff by other applications)
131 */
132 switch (file) {
133 case stdin:
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200134 gd->jt->getc = getchar;
Martin Dorwig49cad542015-01-26 15:22:54 -0700135 gd->jt->tstc = tstc;
wdenk47d1a6e2002-11-03 00:01:44 +0000136 break;
137 case stdout:
Martin Dorwig49cad542015-01-26 15:22:54 -0700138 gd->jt->putc = putc;
139 gd->jt->puts = puts;
140 gd->jt->printf = printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000141 break;
142 }
143 break;
144
145 default: /* Invalid file ID */
146 error = -1;
147 }
148 return error;
149}
150
Simon Glass42f9f912017-07-27 09:31:03 -0600151/**
152 * console_dev_is_serial() - Check if a stdio device is a serial device
153 *
154 * @sdev: Device to check
Simon Glass7b3c4c32017-07-27 09:31:04 -0600155 * @return true if this device is in the serial uclass (or for pre-driver-model,
156 * whether it is called "serial".
Simon Glass42f9f912017-07-27 09:31:03 -0600157 */
158static bool console_dev_is_serial(struct stdio_dev *sdev)
159{
160 bool is_serial;
161
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100162 if (IS_ENABLED(CONFIG_DM_SERIAL) && (sdev->flags & DEV_FLAGS_DM)) {
Simon Glass7b3c4c32017-07-27 09:31:04 -0600163 struct udevice *dev = sdev->priv;
164
165 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100166 } else {
167 is_serial = !strcmp(sdev->name, "serial");
168 }
Simon Glass42f9f912017-07-27 09:31:03 -0600169
170 return is_serial;
171}
172
Simon Glassb0265422017-01-16 07:03:26 -0700173#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100174/** Console I/O multiplexing *******************************************/
175
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200176static struct stdio_dev *tstcdev;
177struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100178int cd_count[MAX_FILES];
179
180/*
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200181 * This depends on tstc() always being called before getchar().
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100182 * This is guaranteed to be true because this routine is called
183 * only from fgetc() which assures it.
184 * No attempt is made to demultiplex multiple input sources.
185 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100186static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100187{
188 unsigned char ret;
189
190 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600191 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100192 tstcdev = NULL;
193 return ret;
194}
195
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100196static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100197{
198 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200199 struct stdio_dev *dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500200 int prev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100201
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500202 prev = disable_ctrlc(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100203 for (i = 0; i < cd_count[file]; i++) {
204 dev = console_devices[file][i];
205 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600206 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100207 if (ret > 0) {
208 tstcdev = dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500209 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100210 return ret;
211 }
212 }
213 }
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500214 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100215
216 return 0;
217}
218
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100219static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100220{
221 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200222 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100223
224 for (i = 0; i < cd_count[file]; i++) {
225 dev = console_devices[file][i];
226 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600227 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100228 }
229}
230
Simon Glass493a4c82020-07-02 21:12:13 -0600231/**
232 * console_puts_select() - Output a string to all console devices
233 *
234 * @file: File number to output to (e,g, stdout, see stdio.h)
235 * @serial_only: true to output only to serial, false to output to everything
236 * else
237 * @s: String to output
238 */
239static void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200240{
241 int i;
242 struct stdio_dev *dev;
243
244 for (i = 0; i < cd_count[file]; i++) {
Simon Glass493a4c82020-07-02 21:12:13 -0600245 bool is_serial;
246
Siarhei Siamashka27669662015-01-08 09:02:31 +0200247 dev = console_devices[file][i];
Simon Glass493a4c82020-07-02 21:12:13 -0600248 is_serial = console_dev_is_serial(dev);
249 if (dev->puts && serial_only == is_serial)
Hans de Goedea8552c72015-05-05 13:13:36 +0200250 dev->puts(dev, s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200251 }
252}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200253
Simon Glass493a4c82020-07-02 21:12:13 -0600254void console_puts_select_stderr(bool serial_only, const char *s)
255{
256 console_puts_select(stderr, serial_only, s);
257}
258
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100259static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100260{
261 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200262 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100263
264 for (i = 0; i < cd_count[file]; i++) {
265 dev = console_devices[file][i];
266 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600267 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100268 }
269}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100270
Tom Rini5e63c962019-10-30 09:18:43 -0400271#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200272static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100273{
274 iomux_doenv(file, dev->name);
275}
Tom Rini5e63c962019-10-30 09:18:43 -0400276#endif
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100277#else
278static inline int console_getc(int file)
279{
Simon Glass709ea542014-07-23 06:54:59 -0600280 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100281}
282
283static inline int console_tstc(int file)
284{
Simon Glass709ea542014-07-23 06:54:59 -0600285 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100286}
287
288static inline void console_putc(int file, const char c)
289{
Simon Glass709ea542014-07-23 06:54:59 -0600290 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100291}
292
Simon Glass493a4c82020-07-02 21:12:13 -0600293void console_puts_select(int file, bool serial_only, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200294{
Simon Glass493a4c82020-07-02 21:12:13 -0600295 if (serial_only == console_dev_is_serial(stdio_devices[file]))
Hans de Goedea8552c72015-05-05 13:13:36 +0200296 stdio_devices[file]->puts(stdio_devices[file], s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200297}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200298
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100299static inline void console_puts(int file, const char *s)
300{
Simon Glass709ea542014-07-23 06:54:59 -0600301 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100302}
303
Tom Rini5e63c962019-10-30 09:18:43 -0400304#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200305static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100306{
307 console_setfile(file, dev);
308}
Tom Rini5e63c962019-10-30 09:18:43 -0400309#endif
Simon Glassb0265422017-01-16 07:03:26 -0700310#endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100311
wdenk47d1a6e2002-11-03 00:01:44 +0000312/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
313
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200314int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000315{
316 va_list args;
317 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200318 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000319
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100320 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000321
322 /* For this to work, printbuffer must be larger than
323 * anything we ever want to print.
324 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000325 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100326 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000327
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100328 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200329 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000330}
331
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100332int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000333{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100334 if (file < MAX_FILES) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100335 /*
336 * Effectively poll for input wherever it may be available.
337 */
338 for (;;) {
Andreas J. Reichel64407462016-07-13 12:56:51 +0200339 WATCHDOG_RESET();
Patrick Delaunay273a1252018-08-03 13:38:44 +0200340#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100341 /*
342 * Upper layer may have already called tstc() so
343 * check for that first.
344 */
345 if (tstcdev != NULL)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100346 return console_getc(file);
347 console_tstc(file);
Patrick Delaunay273a1252018-08-03 13:38:44 +0200348#else
349 if (console_tstc(file))
350 return console_getc(file);
351#endif
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100352 /*
353 * If the watchdog must be rate-limited then it should
354 * already be handled in board-specific code.
355 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100356 if (IS_ENABLED(CONFIG_WATCHDOG))
357 udelay(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100358 }
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100359 }
wdenk47d1a6e2002-11-03 00:01:44 +0000360
361 return -1;
362}
363
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100364int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000365{
366 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100367 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000368
369 return -1;
370}
371
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100372void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000373{
374 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100375 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000376}
377
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100378void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000379{
380 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100381 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000382}
383
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200384int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000385{
386 va_list args;
387 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200388 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000389
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100390 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000391
392 /* For this to work, printbuffer must be larger than
393 * anything we ever want to print.
394 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000395 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100396 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000397
398 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100399 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200400 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000401}
402
403/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
404
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200405int getchar(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000406{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100407 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100408 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100409
Graeme Russe3e454c2011-08-29 02:14:05 +0000410 if (!gd->have_console)
411 return 0;
412
Simon Glass9854a872015-11-08 23:47:48 -0700413#ifdef CONFIG_CONSOLE_RECORD
414 if (gd->console_in.start) {
415 int ch;
416
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100417 ch = membuff_getbyte((struct membuff *)&gd->console_in);
Simon Glass9854a872015-11-08 23:47:48 -0700418 if (ch != -1)
419 return 1;
420 }
421#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000422 if (gd->flags & GD_FLG_DEVINIT) {
423 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100424 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000425 }
426
427 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100428 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000429}
430
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100431int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000432{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100433 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100434 return 0;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100435
Graeme Russe3e454c2011-08-29 02:14:05 +0000436 if (!gd->have_console)
437 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700438#ifdef CONFIG_CONSOLE_RECORD
439 if (gd->console_in.start) {
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100440 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
Simon Glass9854a872015-11-08 23:47:48 -0700441 return 1;
442 }
443#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000444 if (gd->flags & GD_FLG_DEVINIT) {
445 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100446 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000447 }
448
449 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100450 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000451}
452
Siarhei Siamashka27669662015-01-08 09:02:31 +0200453#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
454#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
455
Simon Glass8f925582016-10-17 20:12:36 -0600456#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Graeme Russ9558b482011-09-01 00:48:27 +0000457#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
458
459static void pre_console_putc(const char c)
460{
Simon Glass4e6bafa2017-06-15 21:37:52 -0600461 char *buffer;
462
463 buffer = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000464
465 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass4e6bafa2017-06-15 21:37:52 -0600466
467 unmap_sysmem(buffer);
Graeme Russ9558b482011-09-01 00:48:27 +0000468}
469
Soeren Mochbe135cc2017-11-04 16:14:09 +0100470static void pre_console_puts(const char *s)
471{
472 while (*s)
473 pre_console_putc(*s++);
474}
475
Siarhei Siamashka27669662015-01-08 09:02:31 +0200476static void print_pre_console_buffer(int flushpoint)
Graeme Russ9558b482011-09-01 00:48:27 +0000477{
Hans de Goedea8552c72015-05-05 13:13:36 +0200478 unsigned long in = 0, out = 0;
Hans de Goedea8552c72015-05-05 13:13:36 +0200479 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600480 char *buf_in;
Graeme Russ9558b482011-09-01 00:48:27 +0000481
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100482 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT))
Patrick Delaunay13551b92019-08-02 14:58:10 +0200483 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200484
Simon Glass4e6bafa2017-06-15 21:37:52 -0600485 buf_in = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000486 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
Hans de Goedea8552c72015-05-05 13:13:36 +0200487 in = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
Graeme Russ9558b482011-09-01 00:48:27 +0000488
Hans de Goedea8552c72015-05-05 13:13:36 +0200489 while (in < gd->precon_buf_idx)
490 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600491 unmap_sysmem(buf_in);
Hans de Goedea8552c72015-05-05 13:13:36 +0200492
493 buf_out[out] = 0;
494
495 switch (flushpoint) {
496 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
497 puts(buf_out);
498 break;
499 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
Simon Glass493a4c82020-07-02 21:12:13 -0600500 console_puts_select(stdout, false, buf_out);
Hans de Goedea8552c72015-05-05 13:13:36 +0200501 break;
502 }
Graeme Russ9558b482011-09-01 00:48:27 +0000503}
504#else
505static inline void pre_console_putc(const char c) {}
Soeren Mochbe135cc2017-11-04 16:14:09 +0100506static inline void pre_console_puts(const char *s) {}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200507static inline void print_pre_console_buffer(int flushpoint) {}
Graeme Russ9558b482011-09-01 00:48:27 +0000508#endif
509
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100510void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000511{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100512 if (!gd)
513 return;
Patrick Delaunaybf80edb2020-11-27 11:20:57 +0100514#ifdef CONFIG_CONSOLE_RECORD
515 if ((gd->flags & GD_FLG_RECORD) && gd->console_out.start)
516 membuff_putbyte((struct membuff *)&gd->console_out, c);
517#endif
Simon Glass64e9b4f2017-12-04 13:48:19 -0700518 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100519 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass64e9b4f2017-12-04 13:48:19 -0700520 os_putc(c);
521 return;
522 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100523
Simon Glassd6ea5302015-06-23 15:38:33 -0600524 /* if we don't have a console yet, use the debug UART */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100525 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glassd6ea5302015-06-23 15:38:33 -0600526 printch(c);
527 return;
528 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100529
530 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200531 if (!(gd->flags & GD_FLG_DEVINIT))
532 pre_console_putc(c);
wdenkf6e20fc2004-02-08 19:38:38 +0000533 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200534 }
wdenka6cccae2004-02-06 21:48:22 +0000535
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100536 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100537 return;
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100538
Graeme Russe3e454c2011-08-29 02:14:05 +0000539 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000540 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000541
wdenk47d1a6e2002-11-03 00:01:44 +0000542 if (gd->flags & GD_FLG_DEVINIT) {
543 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100544 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000545 } else {
546 /* Send directly to the handler */
Siarhei Siamashka27669662015-01-08 09:02:31 +0200547 pre_console_putc(c);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100548 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000549 }
550}
551
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100552void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000553{
Patrick Delaunay93cdb522020-11-27 11:20:56 +0100554 if (!gd)
555 return;
Patrick Delaunaybf80edb2020-11-27 11:20:57 +0100556#ifdef CONFIG_CONSOLE_RECORD
557 if ((gd->flags & GD_FLG_RECORD) && gd->console_out.start)
558 membuff_put((struct membuff *)&gd->console_out, s, strlen(s));
559#endif
Simon Glass36bcea62018-11-15 18:44:04 -0700560 /* sandbox can send characters to stdout before it has a console */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100561 if (IS_ENABLED(CONFIG_SANDBOX) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Simon Glass36bcea62018-11-15 18:44:04 -0700562 os_puts(s);
563 return;
564 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100565
566 if (IS_ENABLED(CONFIG_DEBUG_UART) && !(gd->flags & GD_FLG_SERIAL_READY)) {
Soeren Mochbe135cc2017-11-04 16:14:09 +0100567 while (*s) {
568 int ch = *s++;
569
570 printch(ch);
571 }
572 return;
573 }
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100574
575 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && (gd->flags & GD_FLG_SILENT)) {
Patrick Delaunay13551b92019-08-02 14:58:10 +0200576 if (!(gd->flags & GD_FLG_DEVINIT))
577 pre_console_puts(s);
Soeren Mochbe135cc2017-11-04 16:14:09 +0100578 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200579 }
Soeren Mochbe135cc2017-11-04 16:14:09 +0100580
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100581 if (IS_ENABLED(CONFIG_DISABLE_CONSOLE) && (gd->flags & GD_FLG_DISABLE_CONSOLE))
Soeren Mochbe135cc2017-11-04 16:14:09 +0100582 return;
Soeren Mochbe135cc2017-11-04 16:14:09 +0100583
584 if (!gd->have_console)
585 return pre_console_puts(s);
586
587 if (gd->flags & GD_FLG_DEVINIT) {
588 /* Send to the standard output */
589 fputs(stdout, s);
590 } else {
591 /* Send directly to the handler */
592 pre_console_puts(s);
593 serial_puts(s);
594 }
wdenk47d1a6e2002-11-03 00:01:44 +0000595}
596
Simon Glass9854a872015-11-08 23:47:48 -0700597#ifdef CONFIG_CONSOLE_RECORD
598int console_record_init(void)
599{
600 int ret;
601
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100602 ret = membuff_new((struct membuff *)&gd->console_out,
603 CONFIG_CONSOLE_RECORD_OUT_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700604 if (ret)
605 return ret;
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100606 ret = membuff_new((struct membuff *)&gd->console_in,
607 CONFIG_CONSOLE_RECORD_IN_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700608
609 return ret;
610}
611
612void console_record_reset(void)
613{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100614 membuff_purge((struct membuff *)&gd->console_out);
615 membuff_purge((struct membuff *)&gd->console_in);
Simon Glass9854a872015-11-08 23:47:48 -0700616}
617
Simon Glassbd347152020-07-28 19:41:11 -0600618int console_record_reset_enable(void)
Simon Glass9854a872015-11-08 23:47:48 -0700619{
620 console_record_reset();
621 gd->flags |= GD_FLG_RECORD;
Simon Glassbd347152020-07-28 19:41:11 -0600622
623 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700624}
Simon Glassb6123122020-01-27 08:49:54 -0700625
626int console_record_readline(char *str, int maxlen)
627{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100628 return membuff_readline((struct membuff *)&gd->console_out, str,
629 maxlen, ' ');
Simon Glassb6123122020-01-27 08:49:54 -0700630}
631
632int console_record_avail(void)
633{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100634 return membuff_avail((struct membuff *)&gd->console_out);
Simon Glassb6123122020-01-27 08:49:54 -0700635}
636
Simon Glass9854a872015-11-08 23:47:48 -0700637#endif
638
wdenk47d1a6e2002-11-03 00:01:44 +0000639/* test if ctrl-c was pressed */
640static int ctrlc_disabled = 0; /* see disable_ctrl() */
641static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100642int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000643{
wdenk47d1a6e2002-11-03 00:01:44 +0000644 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100645 if (tstc()) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200646 switch (getchar()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000647 case 0x03: /* ^C - Control C */
648 ctrlc_was_pressed = 1;
649 return 1;
650 default:
651 break;
652 }
653 }
654 }
Simon Glass8969ea32014-09-14 12:40:15 -0600655
wdenk47d1a6e2002-11-03 00:01:44 +0000656 return 0;
657}
Pierre Auberta5dffa42014-04-24 10:30:07 +0200658/* Reads user's confirmation.
659 Returns 1 if user's input is "y", "Y", "yes" or "YES"
660*/
661int confirm_yesno(void)
662{
663 int i;
664 char str_input[5];
wdenk47d1a6e2002-11-03 00:01:44 +0000665
Pierre Auberta5dffa42014-04-24 10:30:07 +0200666 /* Flush input */
667 while (tstc())
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200668 getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200669 i = 0;
670 while (i < sizeof(str_input)) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200671 str_input[i] = getchar();
Pierre Auberta5dffa42014-04-24 10:30:07 +0200672 putc(str_input[i]);
673 if (str_input[i] == '\r')
674 break;
675 i++;
676 }
677 putc('\n');
678 if (strncmp(str_input, "y\r", 2) == 0 ||
679 strncmp(str_input, "Y\r", 2) == 0 ||
680 strncmp(str_input, "yes\r", 4) == 0 ||
681 strncmp(str_input, "YES\r", 4) == 0)
682 return 1;
683 return 0;
684}
wdenk47d1a6e2002-11-03 00:01:44 +0000685/* pass 1 to disable ctrlc() checking, 0 to enable.
686 * returns previous state
687 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100688int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000689{
690 int prev = ctrlc_disabled; /* save previous state */
691
692 ctrlc_disabled = disable;
693 return prev;
694}
695
696int had_ctrlc (void)
697{
698 return ctrlc_was_pressed;
699}
700
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100701void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000702{
703 ctrlc_was_pressed = 0;
704}
705
wdenk47d1a6e2002-11-03 00:01:44 +0000706/** U-Boot INIT FUNCTIONS *************************************************/
707
Mike Frysingerd7be3052010-10-20 07:18:03 -0400708struct stdio_dev *search_device(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200709{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200710 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200711
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200712 dev = stdio_get_by_name(name);
Simon Glassa2931b32016-02-06 14:31:37 -0700713#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200714 if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME))
Simon Glassa2931b32016-02-06 14:31:37 -0700715 dev = stdio_get_by_name("vidconsole");
716#endif
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200717
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100718 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200719 return dev;
720
721 return NULL;
722}
723
Mike Frysingerd7be3052010-10-20 07:18:03 -0400724int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000725{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200726 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200727 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000728
729 /* Check for valid file */
730 switch (file) {
731 case stdin:
732 flag = DEV_FLAGS_INPUT;
733 break;
734 case stdout:
735 case stderr:
736 flag = DEV_FLAGS_OUTPUT;
737 break;
738 default:
739 return -1;
740 }
741
742 /* Check for valid device name */
743
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200744 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000745
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100746 if (dev)
747 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000748
749 return -1;
750}
751
Patrick Delaunay13551b92019-08-02 14:58:10 +0200752/* return true if the 'silent' flag is removed */
753static bool console_update_silent(void)
Chris Packham43e0a3d2016-09-23 15:59:43 +1200754{
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100755 unsigned long flags = gd->flags;
756
757 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE))
758 return false;
759
Patrick Delaunay13551b92019-08-02 14:58:10 +0200760 if (env_get("silent")) {
Chris Packham43e0a3d2016-09-23 15:59:43 +1200761 gd->flags |= GD_FLG_SILENT;
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100762 return false;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200763 }
Patrick Delaunay13551b92019-08-02 14:58:10 +0200764
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100765 gd->flags &= ~GD_FLG_SILENT;
766
767 return !!(flags & GD_FLG_SILENT);
Chris Packham43e0a3d2016-09-23 15:59:43 +1200768}
769
Simon Glassb0895382017-06-15 21:37:50 -0600770int console_announce_r(void)
771{
772#if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
773 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
774
775 display_options_get_banner(false, buf, sizeof(buf));
776
Simon Glass493a4c82020-07-02 21:12:13 -0600777 console_puts_select(stdout, false, buf);
Simon Glassb0895382017-06-15 21:37:50 -0600778#endif
779
780 return 0;
781}
782
wdenk47d1a6e2002-11-03 00:01:44 +0000783/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100784int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000785{
wdenk47d1a6e2002-11-03 00:01:44 +0000786 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000787
Chris Packham43e0a3d2016-09-23 15:59:43 +1200788 console_update_silent();
wdenkf72da342003-10-10 10:05:42 +0000789
Siarhei Siamashka27669662015-01-08 09:02:31 +0200790 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
Graeme Russ9558b482011-09-01 00:48:27 +0000791
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100792 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000793}
794
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200795void stdio_print_current_devices(void)
796{
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200797 /* Print information */
798 puts("In: ");
799 if (stdio_devices[stdin] == NULL) {
800 puts("No input devices available!\n");
801 } else {
802 printf ("%s\n", stdio_devices[stdin]->name);
803 }
804
805 puts("Out: ");
806 if (stdio_devices[stdout] == NULL) {
807 puts("No output devices available!\n");
808 } else {
809 printf ("%s\n", stdio_devices[stdout]->name);
810 }
811
812 puts("Err: ");
813 if (stdio_devices[stderr] == NULL) {
814 puts("No error devices available!\n");
815 } else {
816 printf ("%s\n", stdio_devices[stderr]->name);
817 }
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200818}
819
Simon Glassb0265422017-01-16 07:03:26 -0700820#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000821/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100822int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000823{
824 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200825 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
wdenk6e592382004-04-18 17:39:38 +0000826 int i;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100827 int iomux_err = 0;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200828 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +0000829
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200830 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +0200831 if (console_update_silent())
832 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
833 else
834 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200835
wdenk47d1a6e2002-11-03 00:01:44 +0000836 /* set default handlers at first */
Martin Dorwig49cad542015-01-26 15:22:54 -0700837 gd->jt->getc = serial_getc;
838 gd->jt->tstc = serial_tstc;
839 gd->jt->putc = serial_putc;
840 gd->jt->puts = serial_puts;
841 gd->jt->printf = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000842
843 /* stdin stdout and stderr are in environment */
844 /* scan for it */
Simon Glass00caae62017-08-03 12:22:12 -0600845 stdinname = env_get("stdin");
846 stdoutname = env_get("stdout");
847 stderrname = env_get("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000848
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200849 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100850 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
851 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
852 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100853 if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
854 iomux_err = iomux_doenv(stdin, stdinname);
855 iomux_err += iomux_doenv(stdout, stdoutname);
856 iomux_err += iomux_doenv(stderr, stderrname);
857 if (!iomux_err)
858 /* Successful, so skip all the code below. */
859 goto done;
860 }
wdenk47d1a6e2002-11-03 00:01:44 +0000861 }
862 /* if the devices are overwritten or not found, use default device */
863 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100864 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000865 }
866 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100867 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000868 }
869 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100870 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000871 }
872 /* Initializes output console first */
873 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100874 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100875 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000876 }
877 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100878 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100879 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000880 }
881 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100882 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100883 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000884 }
885
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100886done:
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100887
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100888 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
889 stdio_print_current_devices();
890
Simon Glassa2931b32016-02-06 14:31:37 -0700891#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200892 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200893 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200894 CONFIG_VIDCONSOLE_AS_NAME);
Simon Glassa2931b32016-02-06 14:31:37 -0700895#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000896
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100897 if (IS_ENABLED(CONFIG_SYS_CONSOLE_ENV_OVERWRITE)) {
898 /* set the environment variables (will overwrite previous env settings) */
899 for (i = 0; i < MAX_FILES; i++)
900 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000901 }
wdenk47d1a6e2002-11-03 00:01:44 +0000902
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600903 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
904
wdenk47d1a6e2002-11-03 00:01:44 +0000905#if 0
906 /* If nothing usable installed, use only the initial console */
907 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100908 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000909#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +0200910 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100911 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000912}
913
Simon Glassb0265422017-01-16 07:03:26 -0700914#else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000915
916/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100917int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000918{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200919 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200920 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200921 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200922 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200923 struct stdio_dev *dev;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200924 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +0000925
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200926 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +0200927 if (console_update_silent())
928 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
929 else
930 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Chris Packham43e0a3d2016-09-23 15:59:43 +1200931
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100932 /*
933 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +0100934 * a bmp to display. We redirect the output from frame buffer
935 * console to serial console in this case or suppress it if
936 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100937 */
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100938 if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && env_get("splashimage")) {
Anatolij Gustschina7490812010-03-16 15:29:33 +0100939 if (!(gd->flags & GD_FLG_SILENT))
940 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
941 }
wdenkf72da342003-10-10 10:05:42 +0000942
wdenk47d1a6e2002-11-03 00:01:44 +0000943 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200944 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200945 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000946
947 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
948 inputdev = dev;
949 }
950 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
951 outputdev = dev;
952 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200953 if(inputdev && outputdev)
954 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000955 }
956
957 /* Initializes output console first */
958 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100959 console_setfile(stdout, outputdev);
960 console_setfile(stderr, outputdev);
Simon Glassb0265422017-01-16 07:03:26 -0700961#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100962 console_devices[stdout][0] = outputdev;
963 console_devices[stderr][0] = outputdev;
964#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000965 }
966
967 /* Initializes input console */
968 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100969 console_setfile(stdin, inputdev);
Simon Glassb0265422017-01-16 07:03:26 -0700970#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100971 console_devices[stdin][0] = inputdev;
972#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000973 }
974
Patrick Delaunayc04f8562020-12-18 12:46:43 +0100975 if (!IS_ENABLED(CONFIG_SYS_CONSOLE_INFO_QUIET))
976 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +0000977
978 /* Setting environment variables */
Tom Rini27b42252018-05-03 09:12:26 -0400979 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -0600980 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000981 }
982
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600983 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
984
wdenk47d1a6e2002-11-03 00:01:44 +0000985#if 0
986 /* If nothing usable installed, use only the initial console */
987 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100988 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000989#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +0200990 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100991 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000992}
993
Simon Glassb0265422017-01-16 07:03:26 -0700994#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */