blob: 0521c627741f1830de63ad8dee5949c23321b095 [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>
27#include <console.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
wdenkc7de8292002-11-19 11:04:11 +000032#ifdef CONFIG_AMIGAONEG3SE
33int console_changed = 0;
34#endif
35
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +000037/*
38 * if overwrite_console returns 1, the stdin, stderr and stdout
39 * are switched to the serial port, else the settings in the
40 * environment are used
41 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010043extern int overwrite_console(void);
44#define OVERWRITE_CONSOLE overwrite_console()
wdenk47d1a6e2002-11-03 00:01:44 +000045#else
wdenk83e40ba2005-03-31 18:42:15 +000046#define OVERWRITE_CONSOLE 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
wdenk47d1a6e2002-11-03 00:01:44 +000048
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +000050
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010051static int console_setfile(int file, device_t * dev)
wdenk47d1a6e2002-11-03 00:01:44 +000052{
53 int error = 0;
54
55 if (dev == NULL)
56 return -1;
57
58 switch (file) {
59 case stdin:
60 case stdout:
61 case stderr:
62 /* Start new device */
63 if (dev->start) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +010064 error = dev->start();
wdenk47d1a6e2002-11-03 00:01:44 +000065 /* If it's not started dont use it */
66 if (error < 0)
67 break;
68 }
69
70 /* Assign the new device (leaving the existing one started) */
71 stdio_devices[file] = dev;
72
73 /*
74 * Update monitor functions
75 * (to use the console stuff by other applications)
76 */
77 switch (file) {
78 case stdin:
wdenk27b207f2003-07-24 23:38:38 +000079 gd->jt[XF_getc] = dev->getc;
80 gd->jt[XF_tstc] = dev->tstc;
wdenk47d1a6e2002-11-03 00:01:44 +000081 break;
82 case stdout:
wdenk27b207f2003-07-24 23:38:38 +000083 gd->jt[XF_putc] = dev->putc;
84 gd->jt[XF_puts] = dev->puts;
85 gd->jt[XF_printf] = printf;
wdenk47d1a6e2002-11-03 00:01:44 +000086 break;
87 }
88 break;
89
90 default: /* Invalid file ID */
91 error = -1;
92 }
93 return error;
94}
95
Gary Jennejohn16a28ef2008-11-06 15:04:23 +010096#if defined(CONFIG_CONSOLE_MUX)
97/** Console I/O multiplexing *******************************************/
98
99static device_t *tstcdev;
100device_t **console_devices[MAX_FILES];
101int cd_count[MAX_FILES];
102
103/*
104 * This depends on tstc() always being called before getc().
105 * This is guaranteed to be true because this routine is called
106 * only from fgetc() which assures it.
107 * No attempt is made to demultiplex multiple input sources.
108 */
109static int iomux_getc(void)
110{
111 unsigned char ret;
112
113 /* This is never called with testcdev == NULL */
114 ret = tstcdev->getc();
115 tstcdev = NULL;
116 return ret;
117}
118
119static int iomux_tstc(int file)
120{
121 int i, ret;
122 device_t *dev;
123
124 disable_ctrlc(1);
125 for (i = 0; i < cd_count[file]; i++) {
126 dev = console_devices[file][i];
127 if (dev->tstc != NULL) {
128 ret = dev->tstc();
129 if (ret > 0) {
130 tstcdev = dev;
131 disable_ctrlc(0);
132 return ret;
133 }
134 }
135 }
136 disable_ctrlc(0);
137
138 return 0;
139}
140
141static void iomux_putc(int file, const char c)
142{
143 int i;
144 device_t *dev;
145
146 for (i = 0; i < cd_count[file]; i++) {
147 dev = console_devices[file][i];
148 if (dev->putc != NULL)
149 dev->putc(c);
150 }
151}
152
153static void iomux_puts(int file, const char *s)
154{
155 int i;
156 device_t *dev;
157
158 for (i = 0; i < cd_count[file]; i++) {
159 dev = console_devices[file][i];
160 if (dev->puts != NULL)
161 dev->puts(s);
162 }
163}
164#endif /* defined(CONFIG_CONSOLE_MUX) */
165
wdenk47d1a6e2002-11-03 00:01:44 +0000166/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
167
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100168void serial_printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000169{
170 va_list args;
171 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000173
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100174 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000175
176 /* For this to work, printbuffer must be larger than
177 * anything we ever want to print.
178 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100179 i = vsprintf(printbuffer, fmt, args);
180 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000181
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100182 serial_puts(printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000183}
184
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100185int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000186{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100187 if (file < MAX_FILES) {
188#if defined(CONFIG_CONSOLE_MUX)
189 /*
190 * Effectively poll for input wherever it may be available.
191 */
192 for (;;) {
193 /*
194 * Upper layer may have already called tstc() so
195 * check for that first.
196 */
197 if (tstcdev != NULL)
198 return iomux_getc();
199 iomux_tstc(file);
200#ifdef CONFIG_WATCHDOG
201 /*
202 * If the watchdog must be rate-limited then it should
203 * already be handled in board-specific code.
204 */
205 udelay(1);
206#endif
207 }
208#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100209 return stdio_devices[file]->getc();
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100210#endif
211 }
wdenk47d1a6e2002-11-03 00:01:44 +0000212
213 return -1;
214}
215
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100216int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000217{
218 if (file < MAX_FILES)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100219#if defined(CONFIG_CONSOLE_MUX)
220 return iomux_tstc(file);
221#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100222 return stdio_devices[file]->tstc();
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100223#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000224
225 return -1;
226}
227
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100228void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000229{
230 if (file < MAX_FILES)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100231#if defined(CONFIG_CONSOLE_MUX)
232 iomux_putc(file, c);
233#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100234 stdio_devices[file]->putc(c);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100235#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000236}
237
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100238void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000239{
240 if (file < MAX_FILES)
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100241#if defined(CONFIG_CONSOLE_MUX)
242 iomux_puts(file, s);
243#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100244 stdio_devices[file]->puts(s);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100245#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000246}
247
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100248void fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000249{
250 va_list args;
251 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200252 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000253
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100254 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000255
256 /* For this to work, printbuffer must be larger than
257 * anything we ever want to print.
258 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100259 i = vsprintf(printbuffer, fmt, args);
260 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000261
262 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100263 fputs(file, printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000264}
265
266/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
267
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100268int getc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000269{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100270#ifdef CONFIG_DISABLE_CONSOLE
271 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
272 return 0;
273#endif
274
wdenk47d1a6e2002-11-03 00:01:44 +0000275 if (gd->flags & GD_FLG_DEVINIT) {
276 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100277 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000278 }
279
280 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100281 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000282}
283
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100284int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000285{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100286#ifdef CONFIG_DISABLE_CONSOLE
287 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
288 return 0;
289#endif
290
wdenk47d1a6e2002-11-03 00:01:44 +0000291 if (gd->flags & GD_FLG_DEVINIT) {
292 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100293 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000294 }
295
296 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100297 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000298}
299
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100300void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000301{
wdenka6cccae2004-02-06 21:48:22 +0000302#ifdef CONFIG_SILENT_CONSOLE
303 if (gd->flags & GD_FLG_SILENT)
wdenkf6e20fc2004-02-08 19:38:38 +0000304 return;
wdenka6cccae2004-02-06 21:48:22 +0000305#endif
306
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100307#ifdef CONFIG_DISABLE_CONSOLE
308 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
309 return;
310#endif
311
wdenk47d1a6e2002-11-03 00:01:44 +0000312 if (gd->flags & GD_FLG_DEVINIT) {
313 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100314 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000315 } else {
316 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100317 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000318 }
319}
320
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100321void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000322{
wdenka6cccae2004-02-06 21:48:22 +0000323#ifdef CONFIG_SILENT_CONSOLE
324 if (gd->flags & GD_FLG_SILENT)
325 return;
326#endif
327
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100328#ifdef CONFIG_DISABLE_CONSOLE
329 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
330 return;
331#endif
332
wdenk47d1a6e2002-11-03 00:01:44 +0000333 if (gd->flags & GD_FLG_DEVINIT) {
334 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100335 fputs(stdout, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000336 } else {
337 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100338 serial_puts(s);
wdenk47d1a6e2002-11-03 00:01:44 +0000339 }
340}
341
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100342void printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000343{
344 va_list args;
345 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200346 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000347
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100348 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000349
350 /* For this to work, printbuffer must be larger than
351 * anything we ever want to print.
352 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100353 i = vsprintf(printbuffer, fmt, args);
354 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000355
356 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100357 puts(printbuffer);
wdenk47d1a6e2002-11-03 00:01:44 +0000358}
359
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100360void vprintf(const char *fmt, va_list args)
wdenk6dd652f2003-06-19 23:40:20 +0000361{
362 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200363 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk6dd652f2003-06-19 23:40:20 +0000364
365 /* For this to work, printbuffer must be larger than
366 * anything we ever want to print.
367 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100368 i = vsprintf(printbuffer, fmt, args);
wdenk6dd652f2003-06-19 23:40:20 +0000369
370 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100371 puts(printbuffer);
wdenk6dd652f2003-06-19 23:40:20 +0000372}
373
wdenk47d1a6e2002-11-03 00:01:44 +0000374/* test if ctrl-c was pressed */
375static int ctrlc_disabled = 0; /* see disable_ctrl() */
376static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100377int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000378{
wdenk47d1a6e2002-11-03 00:01:44 +0000379 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100380 if (tstc()) {
381 switch (getc()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000382 case 0x03: /* ^C - Control C */
383 ctrlc_was_pressed = 1;
384 return 1;
385 default:
386 break;
387 }
388 }
389 }
390 return 0;
391}
392
393/* pass 1 to disable ctrlc() checking, 0 to enable.
394 * returns previous state
395 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100396int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000397{
398 int prev = ctrlc_disabled; /* save previous state */
399
400 ctrlc_disabled = disable;
401 return prev;
402}
403
404int had_ctrlc (void)
405{
406 return ctrlc_was_pressed;
407}
408
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100409void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000410{
411 ctrlc_was_pressed = 0;
412}
413
414#ifdef CONFIG_MODEM_SUPPORT_DEBUG
415char screen[1024];
416char *cursor = screen;
417int once = 0;
418inline void dbg(const char *fmt, ...)
419{
420 va_list args;
421 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200422 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000423
424 if (!once) {
425 memset(screen, 0, sizeof(screen));
426 once++;
427 }
428
429 va_start(args, fmt);
430
431 /* For this to work, printbuffer must be larger than
432 * anything we ever want to print.
433 */
434 i = vsprintf(printbuffer, fmt, args);
435 va_end(args);
436
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100437 if ((screen + sizeof(screen) - 1 - cursor)
438 < strlen(printbuffer) + 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000439 memset(screen, 0, sizeof(screen));
440 cursor = screen;
441 }
442 sprintf(cursor, printbuffer);
443 cursor += strlen(printbuffer);
444
445}
446#else
447inline void dbg(const char *fmt, ...)
448{
449}
450#endif
451
452/** U-Boot INIT FUNCTIONS *************************************************/
453
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100454device_t *search_device(int flags, char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200455{
456 device_t *dev;
457
458 dev = device_get_by_name(name);
459
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100460 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200461 return dev;
462
463 return NULL;
464}
465
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100466int console_assign(int file, char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000467{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200468 int flag;
469 device_t *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000470
471 /* Check for valid file */
472 switch (file) {
473 case stdin:
474 flag = DEV_FLAGS_INPUT;
475 break;
476 case stdout:
477 case stderr:
478 flag = DEV_FLAGS_OUTPUT;
479 break;
480 default:
481 return -1;
482 }
483
484 /* Check for valid device name */
485
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200486 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000487
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100488 if (dev)
489 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000490
491 return -1;
492}
493
494/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100495int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000496{
wdenk47d1a6e2002-11-03 00:01:44 +0000497 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000498
499#ifdef CONFIG_SILENT_CONSOLE
500 if (getenv("silent") != NULL)
501 gd->flags |= GD_FLG_SILENT;
502#endif
503
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100504 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000505}
506
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200507#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +0000508/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100509int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000510{
511 char *stdinname, *stdoutname, *stderrname;
512 device_t *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200513#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk6e592382004-04-18 17:39:38 +0000514 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200515#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100516#ifdef CONFIG_CONSOLE_MUX
517 int iomux_err = 0;
518#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000519
520 /* set default handlers at first */
wdenk27b207f2003-07-24 23:38:38 +0000521 gd->jt[XF_getc] = serial_getc;
522 gd->jt[XF_tstc] = serial_tstc;
523 gd->jt[XF_putc] = serial_putc;
524 gd->jt[XF_puts] = serial_puts;
525 gd->jt[XF_printf] = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000526
527 /* stdin stdout and stderr are in environment */
528 /* scan for it */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100529 stdinname = getenv("stdin");
530 stdoutname = getenv("stdout");
531 stderrname = getenv("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000532
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200533 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100534 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
535 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
536 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100537#ifdef CONFIG_CONSOLE_MUX
538 iomux_err = iomux_doenv(stdin, stdinname);
539 iomux_err += iomux_doenv(stdout, stdoutname);
540 iomux_err += iomux_doenv(stderr, stderrname);
541 if (!iomux_err)
542 /* Successful, so skip all the code below. */
543 goto done;
544#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000545 }
546 /* if the devices are overwritten or not found, use default device */
547 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100548 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000549 }
550 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100551 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000552 }
553 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100554 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000555 }
556 /* Initializes output console first */
557 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100558#ifdef CONFIG_CONSOLE_MUX
559 /* need to set a console if not done above. */
560 iomux_doenv(stdout, outputdev->name);
561#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100562 console_setfile(stdout, outputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100563#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000564 }
565 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100566#ifdef CONFIG_CONSOLE_MUX
567 /* need to set a console if not done above. */
568 iomux_doenv(stderr, errdev->name);
569#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100570 console_setfile(stderr, errdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100571#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000572 }
573 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100574#ifdef CONFIG_CONSOLE_MUX
575 /* need to set a console if not done above. */
576 iomux_doenv(stdin, inputdev->name);
577#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100578 console_setfile(stdin, inputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100579#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000580 }
581
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100582#ifdef CONFIG_CONSOLE_MUX
583done:
584#endif
585
wdenk5f535fe2003-09-18 09:21:33 +0000586 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
587
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200588#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
wdenk47d1a6e2002-11-03 00:01:44 +0000589 /* Print information */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100590 puts("In: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000591 if (stdio_devices[stdin] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100592 puts("No input devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000593 } else {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100594#ifdef CONFIG_CONSOLE_MUX
595 iomux_printdevs(stdin);
596#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100597 printf("%s\n", stdio_devices[stdin]->name);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100598#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000599 }
600
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100601 puts("Out: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000602 if (stdio_devices[stdout] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100603 puts("No output devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000604 } else {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100605#ifdef CONFIG_CONSOLE_MUX
606 iomux_printdevs(stdout);
607#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100608 printf("%s\n", stdio_devices[stdout]->name);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100609#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000610 }
611
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100612 puts("Err: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000613 if (stdio_devices[stderr] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100614 puts("No error devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000615 } else {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100616#ifdef CONFIG_CONSOLE_MUX
617 iomux_printdevs(stderr);
618#else
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100619 printf("%s\n", stdio_devices[stderr]->name);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100620#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000621 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200622#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
wdenk47d1a6e2002-11-03 00:01:44 +0000623
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200624#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk47d1a6e2002-11-03 00:01:44 +0000625 /* set the environment variables (will overwrite previous env settings) */
626 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100627 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000628 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200629#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
wdenk47d1a6e2002-11-03 00:01:44 +0000630
631#if 0
632 /* If nothing usable installed, use only the initial console */
633 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100634 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000635#endif
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100636 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000637}
638
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200639#else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +0000640
641/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100642int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000643{
644 device_t *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200645 int i;
646 struct list_head *list = device_get_list();
647 struct list_head *pos;
648 device_t *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000649
wdenkd791b1d2003-04-20 14:04:18 +0000650#ifdef CONFIG_SPLASH_SCREEN
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100651 /*
652 * suppress all output if splash screen is enabled and we have
653 * a bmp to display
654 */
dzu87970eb2003-09-29 21:55:54 +0000655 if (getenv("splashimage") != NULL)
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200656 gd->flags |= GD_FLG_SILENT;
wdenkf72da342003-10-10 10:05:42 +0000657#endif
658
wdenk47d1a6e2002-11-03 00:01:44 +0000659 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200660 list_for_each(pos, list) {
661 dev = list_entry(pos, device_t, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000662
663 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
664 inputdev = dev;
665 }
666 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
667 outputdev = dev;
668 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200669 if(inputdev && outputdev)
670 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000671 }
672
673 /* Initializes output console first */
674 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100675 console_setfile(stdout, outputdev);
676 console_setfile(stderr, outputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100677#ifdef CONFIG_CONSOLE_MUX
678 console_devices[stdout][0] = outputdev;
679 console_devices[stderr][0] = outputdev;
680#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000681 }
682
683 /* Initializes input console */
684 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100685 console_setfile(stdin, inputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100686#ifdef CONFIG_CONSOLE_MUX
687 console_devices[stdin][0] = inputdev;
688#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000689 }
690
wdenk5f535fe2003-09-18 09:21:33 +0000691 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
692
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200693#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
wdenk47cd00f2003-03-06 13:39:27 +0000694 /* Print information */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100695 puts("In: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000696 if (stdio_devices[stdin] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100697 puts("No input devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000698 } else {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100699 printf("%s\n", stdio_devices[stdin]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000700 }
701
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100702 puts("Out: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000703 if (stdio_devices[stdout] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100704 puts("No output devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000705 } else {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100706 printf("%s\n", stdio_devices[stdout]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000707 }
708
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100709 puts("Err: ");
wdenk47d1a6e2002-11-03 00:01:44 +0000710 if (stdio_devices[stderr] == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100711 puts("No error devices available!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000712 } else {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100713 printf("%s\n", stdio_devices[stderr]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000714 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200715#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
wdenk47d1a6e2002-11-03 00:01:44 +0000716
717 /* Setting environment variables */
718 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100719 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000720 }
721
722#if 0
723 /* If nothing usable installed, use only the initial console */
724 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100725 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000726#endif
727
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100728 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000729}
730
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200731#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */