blob: 7b9816979af7623a2194c5fd6b7b2c99b4c2093b [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
Simon Glassb0265422017-01-16 07:03:26 -070047#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Joe Hershberger849d5d92012-12-11 22:16:29 -060048 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;
Simon Glassb0265422017-01-16 07:03:26 -070054#endif
Joe Hershberger849d5d92012-12-11 22:16:29 -060055 return 0;
56
57 case env_op_delete:
58 if ((flags & H_FORCE) == 0)
59 printf("Can't delete \"%s\"\n", name);
60 return 1;
61
62 default:
63 return 0;
64 }
65}
66U_BOOT_ENV_CALLBACK(console, on_console);
67
Joe Hershbergere080d542012-12-11 22:16:30 -060068#ifdef CONFIG_SILENT_CONSOLE
69static int on_silent(const char *name, const char *value, enum env_op op,
70 int flags)
71{
Wilson Lee5daf6e52017-08-25 00:06:29 -070072#if !CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_SET)
Joe Hershbergere080d542012-12-11 22:16:30 -060073 if (flags & H_INTERACTIVE)
74 return 0;
75#endif
Wilson Lee5daf6e52017-08-25 00:06:29 -070076#if !CONFIG_IS_ENABLED(SILENT_CONSOLE_UPDATE_ON_RELOC)
Joe Hershbergere080d542012-12-11 22:16:30 -060077 if ((flags & H_INTERACTIVE) == 0)
78 return 0;
79#endif
80
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:
Martin Dorwig49cad542015-01-26 15:22:54 -0700134 gd->jt->getc = getc;
135 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
Simon Glass7b3c4c32017-07-27 09:31:04 -0600162#ifdef CONFIG_DM_SERIAL
163 if (sdev->flags & DEV_FLAGS_DM) {
164 struct udevice *dev = sdev->priv;
165
166 is_serial = device_get_uclass_id(dev) == UCLASS_SERIAL;
167 } else
168#endif
Simon Glass42f9f912017-07-27 09:31:03 -0600169 is_serial = !strcmp(sdev->name, "serial");
170
171 return is_serial;
172}
173
Simon Glassb0265422017-01-16 07:03:26 -0700174#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100175/** Console I/O multiplexing *******************************************/
176
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200177static struct stdio_dev *tstcdev;
178struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100179int cd_count[MAX_FILES];
180
181/*
182 * This depends on tstc() always being called before getc().
183 * This is guaranteed to be true because this routine is called
184 * only from fgetc() which assures it.
185 * No attempt is made to demultiplex multiple input sources.
186 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100187static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100188{
189 unsigned char ret;
190
191 /* This is never called with testcdev == NULL */
Simon Glass709ea542014-07-23 06:54:59 -0600192 ret = tstcdev->getc(tstcdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100193 tstcdev = NULL;
194 return ret;
195}
196
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100197static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100198{
199 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200200 struct stdio_dev *dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500201 int prev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100202
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500203 prev = disable_ctrlc(1);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100204 for (i = 0; i < cd_count[file]; i++) {
205 dev = console_devices[file][i];
206 if (dev->tstc != NULL) {
Simon Glass709ea542014-07-23 06:54:59 -0600207 ret = dev->tstc(dev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100208 if (ret > 0) {
209 tstcdev = dev;
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500210 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100211 return ret;
212 }
213 }
214 }
Joe Hershbergerb2f58d82018-07-02 20:06:48 -0500215 disable_ctrlc(prev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100216
217 return 0;
218}
219
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100220static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100221{
222 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200223 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100224
225 for (i = 0; i < cd_count[file]; i++) {
226 dev = console_devices[file][i];
227 if (dev->putc != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600228 dev->putc(dev, c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100229 }
230}
231
Hans de Goedea8552c72015-05-05 13:13:36 +0200232static void console_puts_noserial(int file, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200233{
234 int i;
235 struct stdio_dev *dev;
236
237 for (i = 0; i < cd_count[file]; i++) {
238 dev = console_devices[file][i];
Simon Glass42f9f912017-07-27 09:31:03 -0600239 if (dev->puts != NULL && !console_dev_is_serial(dev))
Hans de Goedea8552c72015-05-05 13:13:36 +0200240 dev->puts(dev, s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200241 }
242}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200243
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100244static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100245{
246 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200247 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100248
249 for (i = 0; i < cd_count[file]; i++) {
250 dev = console_devices[file][i];
251 if (dev->puts != NULL)
Simon Glass709ea542014-07-23 06:54:59 -0600252 dev->puts(dev, s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100253 }
254}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100255
Tom Rini5e63c962019-10-30 09:18:43 -0400256#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200257static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100258{
259 iomux_doenv(file, dev->name);
260}
Tom Rini5e63c962019-10-30 09:18:43 -0400261#endif
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100262#else
263static inline int console_getc(int file)
264{
Simon Glass709ea542014-07-23 06:54:59 -0600265 return stdio_devices[file]->getc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100266}
267
268static inline int console_tstc(int file)
269{
Simon Glass709ea542014-07-23 06:54:59 -0600270 return stdio_devices[file]->tstc(stdio_devices[file]);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100271}
272
273static inline void console_putc(int file, const char c)
274{
Simon Glass709ea542014-07-23 06:54:59 -0600275 stdio_devices[file]->putc(stdio_devices[file], c);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100276}
277
Hans de Goedea8552c72015-05-05 13:13:36 +0200278static inline void console_puts_noserial(int file, const char *s)
Siarhei Siamashka27669662015-01-08 09:02:31 +0200279{
Simon Glass42f9f912017-07-27 09:31:03 -0600280 if (!console_dev_is_serial(stdio_devices[file]))
Hans de Goedea8552c72015-05-05 13:13:36 +0200281 stdio_devices[file]->puts(stdio_devices[file], s);
Siarhei Siamashka27669662015-01-08 09:02:31 +0200282}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200283
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100284static inline void console_puts(int file, const char *s)
285{
Simon Glass709ea542014-07-23 06:54:59 -0600286 stdio_devices[file]->puts(stdio_devices[file], s);
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100287}
288
Tom Rini5e63c962019-10-30 09:18:43 -0400289#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200290static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100291{
292 console_setfile(file, dev);
293}
Tom Rini5e63c962019-10-30 09:18:43 -0400294#endif
Simon Glassb0265422017-01-16 07:03:26 -0700295#endif /* CONIFIG_IS_ENABLED(CONSOLE_MUX) */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100296
wdenk47d1a6e2002-11-03 00:01:44 +0000297/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
298
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200299int serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000300{
301 va_list args;
302 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200303 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000304
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100305 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000306
307 /* For this to work, printbuffer must be larger than
308 * anything we ever want to print.
309 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000310 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100311 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000312
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100313 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200314 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000315}
316
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100317int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000318{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100319 if (file < MAX_FILES) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100320 /*
321 * Effectively poll for input wherever it may be available.
322 */
323 for (;;) {
Andreas J. Reichel64407462016-07-13 12:56:51 +0200324 WATCHDOG_RESET();
Patrick Delaunay273a1252018-08-03 13:38:44 +0200325#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100326 /*
327 * Upper layer may have already called tstc() so
328 * check for that first.
329 */
330 if (tstcdev != NULL)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100331 return console_getc(file);
332 console_tstc(file);
Patrick Delaunay273a1252018-08-03 13:38:44 +0200333#else
334 if (console_tstc(file))
335 return console_getc(file);
336#endif
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100337#ifdef CONFIG_WATCHDOG
338 /*
339 * If the watchdog must be rate-limited then it should
340 * already be handled in board-specific code.
341 */
342 udelay(1);
343#endif
344 }
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100345 }
wdenk47d1a6e2002-11-03 00:01:44 +0000346
347 return -1;
348}
349
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100350int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000351{
352 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100353 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000354
355 return -1;
356}
357
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100358void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000359{
360 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100361 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000362}
363
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100364void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000365{
366 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100367 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000368}
369
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200370int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000371{
372 va_list args;
373 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200374 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000375
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100376 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000377
378 /* For this to work, printbuffer must be larger than
379 * anything we ever want to print.
380 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000381 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100382 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000383
384 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100385 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200386 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000387}
388
389/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
390
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100391int getc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000392{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100393#ifdef CONFIG_DISABLE_CONSOLE
394 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
395 return 0;
396#endif
397
Graeme Russe3e454c2011-08-29 02:14:05 +0000398 if (!gd->have_console)
399 return 0;
400
Simon Glass9854a872015-11-08 23:47:48 -0700401#ifdef CONFIG_CONSOLE_RECORD
402 if (gd->console_in.start) {
403 int ch;
404
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100405 ch = membuff_getbyte((struct membuff *)&gd->console_in);
Simon Glass9854a872015-11-08 23:47:48 -0700406 if (ch != -1)
407 return 1;
408 }
409#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000410 if (gd->flags & GD_FLG_DEVINIT) {
411 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100412 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000413 }
414
415 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100416 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000417}
418
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100419int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000420{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100421#ifdef CONFIG_DISABLE_CONSOLE
422 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
423 return 0;
424#endif
425
Graeme Russe3e454c2011-08-29 02:14:05 +0000426 if (!gd->have_console)
427 return 0;
Simon Glass9854a872015-11-08 23:47:48 -0700428#ifdef CONFIG_CONSOLE_RECORD
429 if (gd->console_in.start) {
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100430 if (membuff_peekbyte((struct membuff *)&gd->console_in) != -1)
Simon Glass9854a872015-11-08 23:47:48 -0700431 return 1;
432 }
433#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000434 if (gd->flags & GD_FLG_DEVINIT) {
435 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100436 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000437 }
438
439 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100440 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000441}
442
Siarhei Siamashka27669662015-01-08 09:02:31 +0200443#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
444#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
445
Simon Glass8f925582016-10-17 20:12:36 -0600446#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
Graeme Russ9558b482011-09-01 00:48:27 +0000447#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
448
449static void pre_console_putc(const char c)
450{
Simon Glass4e6bafa2017-06-15 21:37:52 -0600451 char *buffer;
452
453 buffer = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000454
455 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass4e6bafa2017-06-15 21:37:52 -0600456
457 unmap_sysmem(buffer);
Graeme Russ9558b482011-09-01 00:48:27 +0000458}
459
Soeren Mochbe135cc2017-11-04 16:14:09 +0100460static void pre_console_puts(const char *s)
461{
462 while (*s)
463 pre_console_putc(*s++);
464}
465
Siarhei Siamashka27669662015-01-08 09:02:31 +0200466static void print_pre_console_buffer(int flushpoint)
Graeme Russ9558b482011-09-01 00:48:27 +0000467{
Hans de Goedea8552c72015-05-05 13:13:36 +0200468 unsigned long in = 0, out = 0;
Hans de Goedea8552c72015-05-05 13:13:36 +0200469 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600470 char *buf_in;
Graeme Russ9558b482011-09-01 00:48:27 +0000471
Patrick Delaunay13551b92019-08-02 14:58:10 +0200472#ifdef CONFIG_SILENT_CONSOLE
473 if (gd->flags & GD_FLG_SILENT)
474 return;
475#endif
476
Simon Glass4e6bafa2017-06-15 21:37:52 -0600477 buf_in = map_sysmem(CONFIG_PRE_CON_BUF_ADDR, CONFIG_PRE_CON_BUF_SZ);
Graeme Russ9558b482011-09-01 00:48:27 +0000478 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
Hans de Goedea8552c72015-05-05 13:13:36 +0200479 in = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
Graeme Russ9558b482011-09-01 00:48:27 +0000480
Hans de Goedea8552c72015-05-05 13:13:36 +0200481 while (in < gd->precon_buf_idx)
482 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
Simon Glass4e6bafa2017-06-15 21:37:52 -0600483 unmap_sysmem(buf_in);
Hans de Goedea8552c72015-05-05 13:13:36 +0200484
485 buf_out[out] = 0;
486
487 switch (flushpoint) {
488 case PRE_CONSOLE_FLUSHPOINT1_SERIAL:
489 puts(buf_out);
490 break;
491 case PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL:
492 console_puts_noserial(stdout, buf_out);
493 break;
494 }
Graeme Russ9558b482011-09-01 00:48:27 +0000495}
496#else
497static inline void pre_console_putc(const char c) {}
Soeren Mochbe135cc2017-11-04 16:14:09 +0100498static inline void pre_console_puts(const char *s) {}
Siarhei Siamashka27669662015-01-08 09:02:31 +0200499static inline void print_pre_console_buffer(int flushpoint) {}
Graeme Russ9558b482011-09-01 00:48:27 +0000500#endif
501
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100502void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000503{
Simon Glass64e9b4f2017-12-04 13:48:19 -0700504#ifdef CONFIG_SANDBOX
505 /* sandbox can send characters to stdout before it has a console */
506 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
507 os_putc(c);
508 return;
509 }
510#endif
Simon Glassd6ea5302015-06-23 15:38:33 -0600511#ifdef CONFIG_DEBUG_UART
512 /* if we don't have a console yet, use the debug UART */
513 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
514 printch(c);
515 return;
516 }
517#endif
Simon Glassaf880e22018-06-12 00:04:56 -0600518 if (!gd)
519 return;
Simon Glass9854a872015-11-08 23:47:48 -0700520#ifdef CONFIG_CONSOLE_RECORD
Simon Glassaf880e22018-06-12 00:04:56 -0600521 if ((gd->flags & GD_FLG_RECORD) && gd->console_out.start)
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100522 membuff_putbyte((struct membuff *)&gd->console_out, c);
Simon Glass9854a872015-11-08 23:47:48 -0700523#endif
wdenka6cccae2004-02-06 21:48:22 +0000524#ifdef CONFIG_SILENT_CONSOLE
Patrick Delaunay13551b92019-08-02 14:58:10 +0200525 if (gd->flags & GD_FLG_SILENT) {
526 if (!(gd->flags & GD_FLG_DEVINIT))
527 pre_console_putc(c);
wdenkf6e20fc2004-02-08 19:38:38 +0000528 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200529 }
wdenka6cccae2004-02-06 21:48:22 +0000530#endif
531
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100532#ifdef CONFIG_DISABLE_CONSOLE
533 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
534 return;
535#endif
536
Graeme Russe3e454c2011-08-29 02:14:05 +0000537 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000538 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000539
wdenk47d1a6e2002-11-03 00:01:44 +0000540 if (gd->flags & GD_FLG_DEVINIT) {
541 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100542 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000543 } else {
544 /* Send directly to the handler */
Siarhei Siamashka27669662015-01-08 09:02:31 +0200545 pre_console_putc(c);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100546 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000547 }
548}
549
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100550void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000551{
Simon Glass36bcea62018-11-15 18:44:04 -0700552#ifdef CONFIG_SANDBOX
553 /* sandbox can send characters to stdout before it has a console */
554 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
555 os_puts(s);
556 return;
557 }
558#endif
Soeren Mochbe135cc2017-11-04 16:14:09 +0100559#ifdef CONFIG_DEBUG_UART
560 if (!gd || !(gd->flags & GD_FLG_SERIAL_READY)) {
561 while (*s) {
562 int ch = *s++;
563
564 printch(ch);
565 }
566 return;
567 }
568#endif
Simon Glassaf880e22018-06-12 00:04:56 -0600569 if (!gd)
570 return;
Soeren Mochbe135cc2017-11-04 16:14:09 +0100571#ifdef CONFIG_CONSOLE_RECORD
Simon Glassaf880e22018-06-12 00:04:56 -0600572 if ((gd->flags & GD_FLG_RECORD) && gd->console_out.start)
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100573 membuff_put((struct membuff *)&gd->console_out, s, strlen(s));
Soeren Mochbe135cc2017-11-04 16:14:09 +0100574#endif
575#ifdef CONFIG_SILENT_CONSOLE
Patrick Delaunay13551b92019-08-02 14:58:10 +0200576 if (gd->flags & GD_FLG_SILENT) {
577 if (!(gd->flags & GD_FLG_DEVINIT))
578 pre_console_puts(s);
Soeren Mochbe135cc2017-11-04 16:14:09 +0100579 return;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200580 }
Soeren Mochbe135cc2017-11-04 16:14:09 +0100581#endif
582
583#ifdef CONFIG_DISABLE_CONSOLE
584 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
585 return;
586#endif
587
588 if (!gd->have_console)
589 return pre_console_puts(s);
590
591 if (gd->flags & GD_FLG_DEVINIT) {
592 /* Send to the standard output */
593 fputs(stdout, s);
594 } else {
595 /* Send directly to the handler */
596 pre_console_puts(s);
597 serial_puts(s);
598 }
wdenk47d1a6e2002-11-03 00:01:44 +0000599}
600
Simon Glass9854a872015-11-08 23:47:48 -0700601#ifdef CONFIG_CONSOLE_RECORD
602int console_record_init(void)
603{
604 int ret;
605
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100606 ret = membuff_new((struct membuff *)&gd->console_out,
607 CONFIG_CONSOLE_RECORD_OUT_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700608 if (ret)
609 return ret;
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100610 ret = membuff_new((struct membuff *)&gd->console_in,
611 CONFIG_CONSOLE_RECORD_IN_SIZE);
Simon Glass9854a872015-11-08 23:47:48 -0700612
613 return ret;
614}
615
616void console_record_reset(void)
617{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100618 membuff_purge((struct membuff *)&gd->console_out);
619 membuff_purge((struct membuff *)&gd->console_in);
Simon Glass9854a872015-11-08 23:47:48 -0700620}
621
622void console_record_reset_enable(void)
623{
624 console_record_reset();
625 gd->flags |= GD_FLG_RECORD;
626}
Simon Glassb6123122020-01-27 08:49:54 -0700627
628int console_record_readline(char *str, int maxlen)
629{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100630 return membuff_readline((struct membuff *)&gd->console_out, str,
631 maxlen, ' ');
Simon Glassb6123122020-01-27 08:49:54 -0700632}
633
634int console_record_avail(void)
635{
Heinrich Schuchardta3a9e042020-02-12 18:23:49 +0100636 return membuff_avail((struct membuff *)&gd->console_out);
Simon Glassb6123122020-01-27 08:49:54 -0700637}
638
Simon Glass9854a872015-11-08 23:47:48 -0700639#endif
640
wdenk47d1a6e2002-11-03 00:01:44 +0000641/* test if ctrl-c was pressed */
642static int ctrlc_disabled = 0; /* see disable_ctrl() */
643static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100644int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000645{
wdenk47d1a6e2002-11-03 00:01:44 +0000646 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100647 if (tstc()) {
648 switch (getc()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000649 case 0x03: /* ^C - Control C */
650 ctrlc_was_pressed = 1;
651 return 1;
652 default:
653 break;
654 }
655 }
656 }
Simon Glass8969ea32014-09-14 12:40:15 -0600657
wdenk47d1a6e2002-11-03 00:01:44 +0000658 return 0;
659}
Pierre Auberta5dffa42014-04-24 10:30:07 +0200660/* Reads user's confirmation.
661 Returns 1 if user's input is "y", "Y", "yes" or "YES"
662*/
663int confirm_yesno(void)
664{
665 int i;
666 char str_input[5];
wdenk47d1a6e2002-11-03 00:01:44 +0000667
Pierre Auberta5dffa42014-04-24 10:30:07 +0200668 /* Flush input */
669 while (tstc())
670 getc();
671 i = 0;
672 while (i < sizeof(str_input)) {
673 str_input[i] = getc();
674 putc(str_input[i]);
675 if (str_input[i] == '\r')
676 break;
677 i++;
678 }
679 putc('\n');
680 if (strncmp(str_input, "y\r", 2) == 0 ||
681 strncmp(str_input, "Y\r", 2) == 0 ||
682 strncmp(str_input, "yes\r", 4) == 0 ||
683 strncmp(str_input, "YES\r", 4) == 0)
684 return 1;
685 return 0;
686}
wdenk47d1a6e2002-11-03 00:01:44 +0000687/* pass 1 to disable ctrlc() checking, 0 to enable.
688 * returns previous state
689 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100690int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000691{
692 int prev = ctrlc_disabled; /* save previous state */
693
694 ctrlc_disabled = disable;
695 return prev;
696}
697
698int had_ctrlc (void)
699{
700 return ctrlc_was_pressed;
701}
702
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100703void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000704{
705 ctrlc_was_pressed = 0;
706}
707
wdenk47d1a6e2002-11-03 00:01:44 +0000708/** U-Boot INIT FUNCTIONS *************************************************/
709
Mike Frysingerd7be3052010-10-20 07:18:03 -0400710struct stdio_dev *search_device(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200711{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200712 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200713
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200714 dev = stdio_get_by_name(name);
Simon Glassa2931b32016-02-06 14:31:37 -0700715#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200716 if (!dev && !strcmp(name, CONFIG_VIDCONSOLE_AS_NAME))
Simon Glassa2931b32016-02-06 14:31:37 -0700717 dev = stdio_get_by_name("vidconsole");
718#endif
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200719
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100720 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200721 return dev;
722
723 return NULL;
724}
725
Mike Frysingerd7be3052010-10-20 07:18:03 -0400726int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000727{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200728 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200729 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000730
731 /* Check for valid file */
732 switch (file) {
733 case stdin:
734 flag = DEV_FLAGS_INPUT;
735 break;
736 case stdout:
737 case stderr:
738 flag = DEV_FLAGS_OUTPUT;
739 break;
740 default:
741 return -1;
742 }
743
744 /* Check for valid device name */
745
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200746 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000747
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100748 if (dev)
749 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000750
751 return -1;
752}
753
Patrick Delaunay13551b92019-08-02 14:58:10 +0200754/* return true if the 'silent' flag is removed */
755static bool console_update_silent(void)
Chris Packham43e0a3d2016-09-23 15:59:43 +1200756{
757#ifdef CONFIG_SILENT_CONSOLE
Patrick Delaunay13551b92019-08-02 14:58:10 +0200758 if (env_get("silent")) {
Chris Packham43e0a3d2016-09-23 15:59:43 +1200759 gd->flags |= GD_FLG_SILENT;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200760 } else {
761 unsigned long flags = gd->flags;
762
Chris Packham43e0a3d2016-09-23 15:59:43 +1200763 gd->flags &= ~GD_FLG_SILENT;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200764
765 return !!(flags & GD_FLG_SILENT);
766 }
Chris Packham43e0a3d2016-09-23 15:59:43 +1200767#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +0200768
769 return false;
Chris Packham43e0a3d2016-09-23 15:59:43 +1200770}
771
Simon Glassb0895382017-06-15 21:37:50 -0600772int console_announce_r(void)
773{
774#if !CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
775 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
776
777 display_options_get_banner(false, buf, sizeof(buf));
778
779 console_puts_noserial(stdout, buf);
780#endif
781
782 return 0;
783}
784
wdenk47d1a6e2002-11-03 00:01:44 +0000785/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100786int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000787{
wdenk47d1a6e2002-11-03 00:01:44 +0000788 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000789
Chris Packham43e0a3d2016-09-23 15:59:43 +1200790 console_update_silent();
wdenkf72da342003-10-10 10:05:42 +0000791
Siarhei Siamashka27669662015-01-08 09:02:31 +0200792 print_pre_console_buffer(PRE_CONSOLE_FLUSHPOINT1_SERIAL);
Graeme Russ9558b482011-09-01 00:48:27 +0000793
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100794 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000795}
796
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200797void stdio_print_current_devices(void)
798{
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200799 /* Print information */
800 puts("In: ");
801 if (stdio_devices[stdin] == NULL) {
802 puts("No input devices available!\n");
803 } else {
804 printf ("%s\n", stdio_devices[stdin]->name);
805 }
806
807 puts("Out: ");
808 if (stdio_devices[stdout] == NULL) {
809 puts("No output devices available!\n");
810 } else {
811 printf ("%s\n", stdio_devices[stdout]->name);
812 }
813
814 puts("Err: ");
815 if (stdio_devices[stderr] == NULL) {
816 puts("No error devices available!\n");
817 } else {
818 printf ("%s\n", stdio_devices[stderr]->name);
819 }
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200820}
821
Simon Glassb0265422017-01-16 07:03:26 -0700822#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)
wdenk47d1a6e2002-11-03 00:01:44 +0000823/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100824int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000825{
826 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200827 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200828#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk6e592382004-04-18 17:39:38 +0000829 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200830#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
Simon Glassb0265422017-01-16 07:03:26 -0700831#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100832 int iomux_err = 0;
833#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +0200834 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +0000835
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200836 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +0200837 if (console_update_silent())
838 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
839 else
840 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200841
wdenk47d1a6e2002-11-03 00:01:44 +0000842 /* set default handlers at first */
Martin Dorwig49cad542015-01-26 15:22:54 -0700843 gd->jt->getc = serial_getc;
844 gd->jt->tstc = serial_tstc;
845 gd->jt->putc = serial_putc;
846 gd->jt->puts = serial_puts;
847 gd->jt->printf = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000848
849 /* stdin stdout and stderr are in environment */
850 /* scan for it */
Simon Glass00caae62017-08-03 12:22:12 -0600851 stdinname = env_get("stdin");
852 stdoutname = env_get("stdout");
853 stderrname = env_get("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000854
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200855 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100856 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
857 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
858 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Simon Glassb0265422017-01-16 07:03:26 -0700859#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100860 iomux_err = iomux_doenv(stdin, stdinname);
861 iomux_err += iomux_doenv(stdout, stdoutname);
862 iomux_err += iomux_doenv(stderr, stderrname);
863 if (!iomux_err)
864 /* Successful, so skip all the code below. */
865 goto done;
866#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000867 }
868 /* if the devices are overwritten or not found, use default device */
869 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100870 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000871 }
872 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100873 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000874 }
875 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100876 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000877 }
878 /* Initializes output console first */
879 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100880 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100881 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000882 }
883 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100884 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100885 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000886 }
887 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100888 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100889 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000890 }
891
Simon Glassb0265422017-01-16 07:03:26 -0700892#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100893done:
894#endif
895
Simon Glass78c112c2012-12-05 14:46:43 +0000896#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200897 stdio_print_current_devices();
Simon Glass78c112c2012-12-05 14:46:43 +0000898#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
Simon Glassa2931b32016-02-06 14:31:37 -0700899#ifdef CONFIG_VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200900 if (strstr(stdoutname, CONFIG_VIDCONSOLE_AS_NAME))
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200901 printf("Warning: Please change '%s' to 'vidconsole' in stdout/stderr environment vars\n",
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200902 CONFIG_VIDCONSOLE_AS_NAME);
Simon Glassa2931b32016-02-06 14:31:37 -0700903#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000904
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200905#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk47d1a6e2002-11-03 00:01:44 +0000906 /* set the environment variables (will overwrite previous env settings) */
Tom Rini27b42252018-05-03 09:12:26 -0400907 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -0600908 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000909 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200910#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
wdenk47d1a6e2002-11-03 00:01:44 +0000911
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600912 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
913
wdenk47d1a6e2002-11-03 00:01:44 +0000914#if 0
915 /* If nothing usable installed, use only the initial console */
916 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100917 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000918#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +0200919 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100920 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000921}
922
Simon Glassb0265422017-01-16 07:03:26 -0700923#else /* !CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */
wdenk47d1a6e2002-11-03 00:01:44 +0000924
925/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100926int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000927{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200928 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200929 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200930 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200931 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200932 struct stdio_dev *dev;
Patrick Delaunay13551b92019-08-02 14:58:10 +0200933 int flushpoint;
wdenk47d1a6e2002-11-03 00:01:44 +0000934
Patrick Delaunaybf46be72019-08-02 14:58:09 +0200935 /* update silent for env loaded from flash (initr_env) */
Patrick Delaunay13551b92019-08-02 14:58:10 +0200936 if (console_update_silent())
937 flushpoint = PRE_CONSOLE_FLUSHPOINT1_SERIAL;
938 else
939 flushpoint = PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL;
Chris Packham43e0a3d2016-09-23 15:59:43 +1200940
wdenkd791b1d2003-04-20 14:04:18 +0000941#ifdef CONFIG_SPLASH_SCREEN
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100942 /*
943 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +0100944 * a bmp to display. We redirect the output from frame buffer
945 * console to serial console in this case or suppress it if
946 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100947 */
Simon Glass00caae62017-08-03 12:22:12 -0600948 if (env_get("splashimage") != NULL) {
Anatolij Gustschina7490812010-03-16 15:29:33 +0100949 if (!(gd->flags & GD_FLG_SILENT))
950 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
951 }
wdenkf72da342003-10-10 10:05:42 +0000952#endif
953
wdenk47d1a6e2002-11-03 00:01:44 +0000954 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200955 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200956 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000957
958 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
959 inputdev = dev;
960 }
961 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
962 outputdev = dev;
963 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200964 if(inputdev && outputdev)
965 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000966 }
967
968 /* Initializes output console first */
969 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100970 console_setfile(stdout, outputdev);
971 console_setfile(stderr, outputdev);
Simon Glassb0265422017-01-16 07:03:26 -0700972#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100973 console_devices[stdout][0] = outputdev;
974 console_devices[stderr][0] = outputdev;
975#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000976 }
977
978 /* Initializes input console */
979 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100980 console_setfile(stdin, inputdev);
Simon Glassb0265422017-01-16 07:03:26 -0700981#if CONFIG_IS_ENABLED(CONSOLE_MUX)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100982 console_devices[stdin][0] = inputdev;
983#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000984 }
985
Simon Glass78c112c2012-12-05 14:46:43 +0000986#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200987 stdio_print_current_devices();
Simon Glass78c112c2012-12-05 14:46:43 +0000988#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
wdenk47d1a6e2002-11-03 00:01:44 +0000989
990 /* Setting environment variables */
Tom Rini27b42252018-05-03 09:12:26 -0400991 for (i = 0; i < MAX_FILES; i++) {
Simon Glass382bee52017-08-03 12:22:09 -0600992 env_set(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000993 }
994
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600995 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
996
wdenk47d1a6e2002-11-03 00:01:44 +0000997#if 0
998 /* If nothing usable installed, use only the initial console */
999 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001000 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001001#endif
Patrick Delaunay13551b92019-08-02 14:58:10 +02001002 print_pre_console_buffer(flushpoint);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +01001003 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001004}
1005
Simon Glassb0265422017-01-16 07:03:26 -07001006#endif /* CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV) */