blob: b09b7d15dbc83ceda10fdf2ce5489591d56094c8 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
2 * (C) Copyright 2000
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <stdarg.h>
26#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020027#include <stdio_dev.h>
wdenk27b207f2003-07-24 23:38:38 +000028#include <exports.h>
wdenk47d1a6e2002-11-03 00:01:44 +000029
Wolfgang Denkd87080b2006-03-31 18:32:53 +020030DECLARE_GLOBAL_DATA_PTR;
31
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +000033/*
34 * if overwrite_console returns 1, the stdin, stderr and stdout
35 * are switched to the serial port, else the settings in the
36 * environment are used
37 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010039extern int overwrite_console(void);
40#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +000041#else
wdenk83e40ba2005-03-31 18:42:15 +000042#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020043#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +000044
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +000046
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020047static int console_setfile(int file, struct stdio_dev * dev)
wdenk47d1a6e2002-11-03 00:01:44 +000048{
49 int error = 0;
50
51 if (dev == NULL)
52 return -1;
53
54 switch (file) {
55 case stdin:
56 case stdout:
57 case stderr:
58 /* Start new device */
59 if (dev->start) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010060 error = dev->start();
wdenk47d1a6e2002-11-03 00:01:44 +000061 /* If it's not started dont use it */
62 if (error < 0)
63 break;
64 }
65
66 /* Assign the new device (leaving the existing one started) */
67 stdio_devices[file] = dev;
68
69 /*
70 * Update monitor functions
71 * (to use the console stuff by other applications)
72 */
73 switch (file) {
74 case stdin:
wdenk27b207f2003-07-24 23:38:38 +000075 gd->jt[XF_getc] = dev->getc;
76 gd->jt[XF_tstc] = dev->tstc;
wdenk47d1a6e2002-11-03 00:01:44 +000077 break;
78 case stdout:
wdenk27b207f2003-07-24 23:38:38 +000079 gd->jt[XF_putc] = dev->putc;
80 gd->jt[XF_puts] = dev->puts;
81 gd->jt[XF_printf] = printf;
wdenk47d1a6e2002-11-03 00:01:44 +000082 break;
83 }
84 break;
85
86 default: /* Invalid file ID */
87 error = -1;
88 }
89 return error;
90}
91
Gary Jennejohn16a28ef2008-11-06 15:04:23 +010092#if defined(CONFIG_CONSOLE_MUX)
93/** Console I/O multiplexing *******************************************/
94
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020095static struct stdio_dev *tstcdev;
96struct stdio_dev **console_devices[MAX_FILES];
Gary Jennejohn16a28ef2008-11-06 15:04:23 +010097int cd_count[MAX_FILES];
98
99/*
100 * This depends on tstc() always being called before getc().
101 * This is guaranteed to be true because this routine is called
102 * only from fgetc() which assures it.
103 * No attempt is made to demultiplex multiple input sources.
104 */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100105static int console_getc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100106{
107 unsigned char ret;
108
109 /* This is never called with testcdev == NULL */
110 ret = tstcdev->getc();
111 tstcdev = NULL;
112 return ret;
113}
114
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100115static int console_tstc(int file)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100116{
117 int i, ret;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200118 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100119
120 disable_ctrlc(1);
121 for (i = 0; i < cd_count[file]; i++) {
122 dev = console_devices[file][i];
123 if (dev->tstc != NULL) {
124 ret = dev->tstc();
125 if (ret > 0) {
126 tstcdev = dev;
127 disable_ctrlc(0);
128 return ret;
129 }
130 }
131 }
132 disable_ctrlc(0);
133
134 return 0;
135}
136
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100137static void console_putc(int file, const char c)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100138{
139 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200140 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100141
142 for (i = 0; i < cd_count[file]; i++) {
143 dev = console_devices[file][i];
144 if (dev->putc != NULL)
145 dev->putc(c);
146 }
147}
148
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100149static void console_puts(int file, const char *s)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100150{
151 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200152 struct stdio_dev *dev;
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100153
154 for (i = 0; i < cd_count[file]; i++) {
155 dev = console_devices[file][i];
156 if (dev->puts != NULL)
157 dev->puts(s);
158 }
159}
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100160
161static inline void console_printdevs(int file)
162{
163 iomux_printdevs(file);
164}
165
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200166static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100167{
168 iomux_doenv(file, dev->name);
169}
170#else
171static inline int console_getc(int file)
172{
173 return stdio_devices[file]->getc();
174}
175
176static inline int console_tstc(int file)
177{
178 return stdio_devices[file]->tstc();
179}
180
181static inline void console_putc(int file, const char c)
182{
183 stdio_devices[file]->putc(c);
184}
185
186static inline void console_puts(int file, const char *s)
187{
188 stdio_devices[file]->puts(s);
189}
190
191static inline void console_printdevs(int file)
192{
193 printf("%s\n", stdio_devices[file]->name);
194}
195
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200196static inline void console_doenv(int file, struct stdio_dev *dev)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100197{
198 console_setfile(file, dev);
199}
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100200#endif /* defined(CONFIG_CONSOLE_MUX) */
201
wdenk47d1a6e2002-11-03 00:01:44 +0000202/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
203
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100204void serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000205{
206 va_list args;
207 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200208 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000209
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100210 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000211
212 /* For this to work, printbuffer must be larger than
213 * anything we ever want to print.
214 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100215 i = vsprintf(printbuffer, fmt, args);
216 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000217
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100218 serial_puts(printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000219}
220
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100221int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000222{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100223 if (file < MAX_FILES) {
224#if defined(CONFIG_CONSOLE_MUX)
225 /*
226 * Effectively poll for input wherever it may be available.
227 */
228 for (;;) {
229 /*
230 * Upper layer may have already called tstc() so
231 * check for that first.
232 */
233 if (tstcdev != NULL)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100234 return console_getc(file);
235 console_tstc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100236#ifdef CONFIG_WATCHDOG
237 /*
238 * If the watchdog must be rate-limited then it should
239 * already be handled in board-specific code.
240 */
241 udelay(1);
242#endif
243 }
244#else
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100245 return console_getc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100246#endif
247 }
wdenk47d1a6e2002-11-03 00:01:44 +0000248
249 return -1;
250}
251
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100252int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000253{
254 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100255 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000256
257 return -1;
258}
259
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100260void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000261{
262 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100263 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000264}
265
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100266void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000267{
268 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100269 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000270}
271
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100272void fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000273{
274 va_list args;
275 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200276 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000277
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100278 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000279
280 /* For this to work, printbuffer must be larger than
281 * anything we ever want to print.
282 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100283 i = vsprintf(printbuffer, fmt, args);
284 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000285
286 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100287 fputs(file, printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000288}
289
290/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
291
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100292int getc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000293{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100294#ifdef CONFIG_DISABLE_CONSOLE
295 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
296 return 0;
297#endif
298
wdenk47d1a6e2002-11-03 00:01:44 +0000299 if (gd->flags & GD_FLG_DEVINIT) {
300 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100301 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000302 }
303
304 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100305 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000306}
307
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100308int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000309{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100310#ifdef CONFIG_DISABLE_CONSOLE
311 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
312 return 0;
313#endif
314
wdenk47d1a6e2002-11-03 00:01:44 +0000315 if (gd->flags & GD_FLG_DEVINIT) {
316 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100317 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000318 }
319
320 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100321 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000322}
323
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100324void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000325{
wdenka6cccae2004-02-06 21:48:22 +0000326#ifdef CONFIG_SILENT_CONSOLE
327 if (gd->flags & GD_FLG_SILENT)
wdenkf6e20fc2004-02-08 19:38:38 +0000328 return;
wdenka6cccae2004-02-06 21:48:22 +0000329#endif
330
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100331#ifdef CONFIG_DISABLE_CONSOLE
332 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
333 return;
334#endif
335
wdenk47d1a6e2002-11-03 00:01:44 +0000336 if (gd->flags & GD_FLG_DEVINIT) {
337 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100338 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000339 } else {
340 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100341 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000342 }
343}
344
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100345void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000346{
wdenka6cccae2004-02-06 21:48:22 +0000347#ifdef CONFIG_SILENT_CONSOLE
348 if (gd->flags & GD_FLG_SILENT)
349 return;
350#endif
351
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100352#ifdef CONFIG_DISABLE_CONSOLE
353 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
354 return;
355#endif
356
wdenk47d1a6e2002-11-03 00:01:44 +0000357 if (gd->flags & GD_FLG_DEVINIT) {
358 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100359 fputs(stdout, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000360 } else {
361 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100362 serial_puts(s);
wdenk47d1a6e2002-11-03 00:01:44 +0000363 }
364}
365
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100366void printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000367{
368 va_list args;
369 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000371
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100372 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000373
374 /* For this to work, printbuffer must be larger than
375 * anything we ever want to print.
376 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100377 i = vsprintf(printbuffer, fmt, args);
378 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000379
380 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100381 puts(printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000382}
383
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100384void vprintf(const char *fmt, va_list args)
wdenk6dd652f2003-06-19 23:40:20 +0000385{
386 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200387 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk6dd652f2003-06-19 23:40:20 +0000388
389 /* For this to work, printbuffer must be larger than
390 * anything we ever want to print.
391 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100392 i = vsprintf(printbuffer, fmt, args);
wdenk6dd652f2003-06-19 23:40:20 +0000393
394 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100395 puts(printbuffer);
wdenk6dd652f2003-06-19 23:40:20 +0000396}
397
wdenk47d1a6e2002-11-03 00:01:44 +0000398/* test if ctrl-c was pressed */
399static int ctrlc_disabled = 0; /* see disable_ctrl() */
400static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100401int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000402{
wdenk47d1a6e2002-11-03 00:01:44 +0000403 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100404 if (tstc()) {
405 switch (getc()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000406 case 0x03: /* ^C - Control C */
407 ctrlc_was_pressed = 1;
408 return 1;
409 default:
410 break;
411 }
412 }
413 }
414 return 0;
415}
416
417/* pass 1 to disable ctrlc() checking, 0 to enable.
418 * returns previous state
419 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100420int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000421{
422 int prev = ctrlc_disabled; /* save previous state */
423
424 ctrlc_disabled = disable;
425 return prev;
426}
427
428int had_ctrlc (void)
429{
430 return ctrlc_was_pressed;
431}
432
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100433void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000434{
435 ctrlc_was_pressed = 0;
436}
437
438#ifdef CONFIG_MODEM_SUPPORT_DEBUG
439char screen[1024];
440char *cursor = screen;
441int once = 0;
442inline void dbg(const char *fmt, ...)
443{
444 va_list args;
445 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200446 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000447
448 if (!once) {
449 memset(screen, 0, sizeof(screen));
450 once++;
451 }
452
453 va_start(args, fmt);
454
455 /* For this to work, printbuffer must be larger than
456 * anything we ever want to print.
457 */
458 i = vsprintf(printbuffer, fmt, args);
459 va_end(args);
460
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100461 if ((screen + sizeof(screen) - 1 - cursor)
462 < strlen(printbuffer) + 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000463 memset(screen, 0, sizeof(screen));
464 cursor = screen;
465 }
466 sprintf(cursor, printbuffer);
467 cursor += strlen(printbuffer);
468
469}
470#else
471inline void dbg(const char *fmt, ...)
472{
473}
474#endif
475
476/** U-Boot INIT FUNCTIONS *************************************************/
477
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200478struct stdio_dev *search_device(int flags, char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200479{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200480 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200481
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200482 dev = stdio_get_by_name(name);
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200483
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100484 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200485 return dev;
486
487 return NULL;
488}
489
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100490int console_assign(int file, char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000491{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200492 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200493 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000494
495 /* Check for valid file */
496 switch (file) {
497 case stdin:
498 flag = DEV_FLAGS_INPUT;
499 break;
500 case stdout:
501 case stderr:
502 flag = DEV_FLAGS_OUTPUT;
503 break;
504 default:
505 return -1;
506 }
507
508 /* Check for valid device name */
509
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200510 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000511
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100512 if (dev)
513 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000514
515 return -1;
516}
517
518/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100519int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000520{
wdenk47d1a6e2002-11-03 00:01:44 +0000521 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000522
523#ifdef CONFIG_SILENT_CONSOLE
524 if (getenv("silent") != NULL)
525 gd->flags |= GD_FLG_SILENT;
526#endif
527
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100528 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000529}
530
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200531void stdio_print_current_devices(void)
532{
David Brownell52f6c342009-08-30 11:05:29 -0700533#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200534 /* Print information */
535 puts("In: ");
536 if (stdio_devices[stdin] == NULL) {
537 puts("No input devices available!\n");
538 } else {
539 printf ("%s\n", stdio_devices[stdin]->name);
540 }
541
542 puts("Out: ");
543 if (stdio_devices[stdout] == NULL) {
544 puts("No output devices available!\n");
545 } else {
546 printf ("%s\n", stdio_devices[stdout]->name);
547 }
548
549 puts("Err: ");
550 if (stdio_devices[stderr] == NULL) {
551 puts("No error devices available!\n");
552 } else {
553 printf ("%s\n", stdio_devices[stderr]->name);
554 }
555#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
556}
557
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200558#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +0000559/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100560int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000561{
562 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200563 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200564#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk6e592382004-04-18 17:39:38 +0000565 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200566#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100567#ifdef CONFIG_CONSOLE_MUX
568 int iomux_err = 0;
569#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000570
571 /* set default handlers at first */
wdenk27b207f2003-07-24 23:38:38 +0000572 gd->jt[XF_getc] = serial_getc;
573 gd->jt[XF_tstc] = serial_tstc;
574 gd->jt[XF_putc] = serial_putc;
575 gd->jt[XF_puts] = serial_puts;
576 gd->jt[XF_printf] = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000577
578 /* stdin stdout and stderr are in environment */
579 /* scan for it */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100580 stdinname = getenv("stdin");
581 stdoutname = getenv("stdout");
582 stderrname = getenv("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000583
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200584 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100585 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
586 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
587 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100588#ifdef CONFIG_CONSOLE_MUX
589 iomux_err = iomux_doenv(stdin, stdinname);
590 iomux_err += iomux_doenv(stdout, stdoutname);
591 iomux_err += iomux_doenv(stderr, stderrname);
592 if (!iomux_err)
593 /* Successful, so skip all the code below. */
594 goto done;
595#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000596 }
597 /* if the devices are overwritten or not found, use default device */
598 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100599 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000600 }
601 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100602 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000603 }
604 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100605 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000606 }
607 /* Initializes output console first */
608 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100609 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100610 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000611 }
612 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100613 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100614 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000615 }
616 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100617 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100618 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000619 }
620
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100621#ifdef CONFIG_CONSOLE_MUX
622done:
623#endif
624
wdenk5f535fe2003-09-18 09:21:33 +0000625 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
626
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200627 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +0000628
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200629#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk47d1a6e2002-11-03 00:01:44 +0000630 /* set the environment variables (will overwrite previous env settings) */
631 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100632 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000633 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200634#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
wdenk47d1a6e2002-11-03 00:01:44 +0000635
636#if 0
637 /* If nothing usable installed, use only the initial console */
638 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100639 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000640#endif
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100641 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000642}
643
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200644#else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +0000645
646/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100647int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000648{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200649 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200650 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200651 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200652 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200653 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000654
wdenkd791b1d2003-04-20 14:04:18 +0000655#ifdef CONFIG_SPLASH_SCREEN
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100656 /*
657 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +0100658 * a bmp to display. We redirect the output from frame buffer
659 * console to serial console in this case or suppress it if
660 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100661 */
Anatolij Gustschina7490812010-03-16 15:29:33 +0100662 if (getenv("splashimage") != NULL) {
663 if (!(gd->flags & GD_FLG_SILENT))
664 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
665 }
wdenkf72da342003-10-10 10:05:42 +0000666#endif
667
wdenk47d1a6e2002-11-03 00:01:44 +0000668 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200669 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200670 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000671
672 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
673 inputdev = dev;
674 }
675 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
676 outputdev = dev;
677 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200678 if(inputdev && outputdev)
679 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000680 }
681
682 /* Initializes output console first */
683 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100684 console_setfile(stdout, outputdev);
685 console_setfile(stderr, outputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100686#ifdef CONFIG_CONSOLE_MUX
687 console_devices[stdout][0] = outputdev;
688 console_devices[stderr][0] = outputdev;
689#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000690 }
691
692 /* Initializes input console */
693 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100694 console_setfile(stdin, inputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100695#ifdef CONFIG_CONSOLE_MUX
696 console_devices[stdin][0] = inputdev;
697#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000698 }
699
wdenk5f535fe2003-09-18 09:21:33 +0000700 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
701
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200702 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +0000703
704 /* Setting environment variables */
705 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100706 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000707 }
708
709#if 0
710 /* If nothing usable installed, use only the initial console */
711 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100712 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000713#endif
714
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100715 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000716}
717
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200718#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */