blob: 1d9fd7ff42bd7ac200bf3b89cbce7afe35ea7b1a [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
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200204int 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 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000215 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100216 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000217
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100218 serial_puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200219 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000220}
221
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100222int fgetc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000223{
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100224 if (file < MAX_FILES) {
225#if defined(CONFIG_CONSOLE_MUX)
226 /*
227 * Effectively poll for input wherever it may be available.
228 */
229 for (;;) {
230 /*
231 * Upper layer may have already called tstc() so
232 * check for that first.
233 */
234 if (tstcdev != NULL)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100235 return console_getc(file);
236 console_tstc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100237#ifdef CONFIG_WATCHDOG
238 /*
239 * If the watchdog must be rate-limited then it should
240 * already be handled in board-specific code.
241 */
242 udelay(1);
243#endif
244 }
245#else
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100246 return console_getc(file);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100247#endif
248 }
wdenk47d1a6e2002-11-03 00:01:44 +0000249
250 return -1;
251}
252
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100253int ftstc(int file)
wdenk47d1a6e2002-11-03 00:01:44 +0000254{
255 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100256 return console_tstc(file);
wdenk47d1a6e2002-11-03 00:01:44 +0000257
258 return -1;
259}
260
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100261void fputc(int file, const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000262{
263 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100264 console_putc(file, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000265}
266
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100267void fputs(int file, const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000268{
269 if (file < MAX_FILES)
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100270 console_puts(file, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000271}
272
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200273int fprintf(int file, const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000274{
275 va_list args;
276 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200277 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000278
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100279 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000280
281 /* For this to work, printbuffer must be larger than
282 * anything we ever want to print.
283 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000284 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100285 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000286
287 /* Send to desired file */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100288 fputs(file, printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200289 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000290}
291
292/** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
293
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100294int getc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000295{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100296#ifdef CONFIG_DISABLE_CONSOLE
297 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
298 return 0;
299#endif
300
Graeme Russe3e454c2011-08-29 02:14:05 +0000301 if (!gd->have_console)
302 return 0;
303
wdenk47d1a6e2002-11-03 00:01:44 +0000304 if (gd->flags & GD_FLG_DEVINIT) {
305 /* Get from the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100306 return fgetc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000307 }
308
309 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100310 return serial_getc();
wdenk47d1a6e2002-11-03 00:01:44 +0000311}
312
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100313int tstc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000314{
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100315#ifdef CONFIG_DISABLE_CONSOLE
316 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
317 return 0;
318#endif
319
Graeme Russe3e454c2011-08-29 02:14:05 +0000320 if (!gd->have_console)
321 return 0;
322
wdenk47d1a6e2002-11-03 00:01:44 +0000323 if (gd->flags & GD_FLG_DEVINIT) {
324 /* Test the standard input */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100325 return ftstc(stdin);
wdenk47d1a6e2002-11-03 00:01:44 +0000326 }
327
328 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100329 return serial_tstc();
wdenk47d1a6e2002-11-03 00:01:44 +0000330}
331
Simon Glass295d3942011-10-18 13:43:20 +0000332#if defined(CONFIG_PRE_CONSOLE_BUFFER) || defined(CONFIG_PRE_CONSOLE_PUTC)
Graeme Russ9558b482011-09-01 00:48:27 +0000333#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
334
335static void pre_console_putc(const char c)
336{
Simon Glass295d3942011-10-18 13:43:20 +0000337#ifdef CONFIG_PRE_CONSOLE_BUFFER
Graeme Russ9558b482011-09-01 00:48:27 +0000338 char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR;
339
340 buffer[CIRC_BUF_IDX(gd->precon_buf_idx++)] = c;
Simon Glass295d3942011-10-18 13:43:20 +0000341#endif
342#ifdef CONFIG_PRE_CONSOLE_PUTC
343 board_pre_console_putc(c);
344#endif
Graeme Russ9558b482011-09-01 00:48:27 +0000345}
346
347static void pre_console_puts(const char *s)
348{
349 while (*s)
350 pre_console_putc(*s++);
351}
352
353static void print_pre_console_buffer(void)
354{
Simon Glass295d3942011-10-18 13:43:20 +0000355#ifdef CONFIG_PRE_CONSOLE_BUFFER
Graeme Russ9558b482011-09-01 00:48:27 +0000356 unsigned long i = 0;
357 char *buffer = (char *)CONFIG_PRE_CON_BUF_ADDR;
358
359 if (gd->precon_buf_idx > CONFIG_PRE_CON_BUF_SZ)
360 i = gd->precon_buf_idx - CONFIG_PRE_CON_BUF_SZ;
361
362 while (i < gd->precon_buf_idx)
363 putc(buffer[CIRC_BUF_IDX(i++)]);
Simon Glass295d3942011-10-18 13:43:20 +0000364#endif
Graeme Russ9558b482011-09-01 00:48:27 +0000365}
Simon Glass295d3942011-10-18 13:43:20 +0000366
Graeme Russ9558b482011-09-01 00:48:27 +0000367#else
368static inline void pre_console_putc(const char c) {}
369static inline void pre_console_puts(const char *s) {}
370static inline void print_pre_console_buffer(void) {}
371#endif
372
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100373void putc(const char c)
wdenk47d1a6e2002-11-03 00:01:44 +0000374{
wdenka6cccae2004-02-06 21:48:22 +0000375#ifdef CONFIG_SILENT_CONSOLE
376 if (gd->flags & GD_FLG_SILENT)
wdenkf6e20fc2004-02-08 19:38:38 +0000377 return;
wdenka6cccae2004-02-06 21:48:22 +0000378#endif
379
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100380#ifdef CONFIG_DISABLE_CONSOLE
381 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
382 return;
383#endif
384
Graeme Russe3e454c2011-08-29 02:14:05 +0000385 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000386 return pre_console_putc(c);
Graeme Russe3e454c2011-08-29 02:14:05 +0000387
wdenk47d1a6e2002-11-03 00:01:44 +0000388 if (gd->flags & GD_FLG_DEVINIT) {
389 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100390 fputc(stdout, c);
wdenk47d1a6e2002-11-03 00:01:44 +0000391 } else {
392 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100393 serial_putc(c);
wdenk47d1a6e2002-11-03 00:01:44 +0000394 }
395}
396
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100397void puts(const char *s)
wdenk47d1a6e2002-11-03 00:01:44 +0000398{
wdenka6cccae2004-02-06 21:48:22 +0000399#ifdef CONFIG_SILENT_CONSOLE
400 if (gd->flags & GD_FLG_SILENT)
401 return;
402#endif
403
Mark Jacksonf5c3ba72008-08-25 19:21:30 +0100404#ifdef CONFIG_DISABLE_CONSOLE
405 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
406 return;
407#endif
408
Graeme Russe3e454c2011-08-29 02:14:05 +0000409 if (!gd->have_console)
Graeme Russ9558b482011-09-01 00:48:27 +0000410 return pre_console_puts(s);
Graeme Russe3e454c2011-08-29 02:14:05 +0000411
wdenk47d1a6e2002-11-03 00:01:44 +0000412 if (gd->flags & GD_FLG_DEVINIT) {
413 /* Send to the standard output */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100414 fputs(stdout, s);
wdenk47d1a6e2002-11-03 00:01:44 +0000415 } else {
416 /* Send directly to the handler */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100417 serial_puts(s);
wdenk47d1a6e2002-11-03 00:01:44 +0000418 }
419}
420
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200421int printf(const char *fmt, ...)
wdenk47d1a6e2002-11-03 00:01:44 +0000422{
423 va_list args;
424 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200425 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000426
Graeme Russ9558b482011-09-01 00:48:27 +0000427#ifndef CONFIG_PRE_CONSOLE_BUFFER
Graeme Russe3e454c2011-08-29 02:14:05 +0000428 if (!gd->have_console)
429 return 0;
Graeme Russ9558b482011-09-01 00:48:27 +0000430#endif
Graeme Russe3e454c2011-08-29 02:14:05 +0000431
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100432 va_start(args, fmt);
wdenk47d1a6e2002-11-03 00:01:44 +0000433
434 /* For this to work, printbuffer must be larger than
435 * anything we ever want to print.
436 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000437 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100438 va_end(args);
wdenk47d1a6e2002-11-03 00:01:44 +0000439
440 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100441 puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200442 return i;
wdenk47d1a6e2002-11-03 00:01:44 +0000443}
444
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200445int vprintf(const char *fmt, va_list args)
wdenk6dd652f2003-06-19 23:40:20 +0000446{
447 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200448 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk6dd652f2003-06-19 23:40:20 +0000449
Graeme Russ9558b482011-09-01 00:48:27 +0000450#ifndef CONFIG_PRE_CONSOLE_BUFFER
Graeme Russe3e454c2011-08-29 02:14:05 +0000451 if (!gd->have_console)
452 return 0;
Graeme Russ9558b482011-09-01 00:48:27 +0000453#endif
Graeme Russe3e454c2011-08-29 02:14:05 +0000454
wdenk6dd652f2003-06-19 23:40:20 +0000455 /* For this to work, printbuffer must be larger than
456 * anything we ever want to print.
457 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000458 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
wdenk6dd652f2003-06-19 23:40:20 +0000459
460 /* Print the string */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100461 puts(printbuffer);
Wolfgang Denkd9c27252010-06-20 17:14:14 +0200462 return i;
wdenk6dd652f2003-06-19 23:40:20 +0000463}
464
wdenk47d1a6e2002-11-03 00:01:44 +0000465/* test if ctrl-c was pressed */
466static int ctrlc_disabled = 0; /* see disable_ctrl() */
467static int ctrlc_was_pressed = 0;
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100468int ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000469{
wdenk47d1a6e2002-11-03 00:01:44 +0000470 if (!ctrlc_disabled && gd->have_console) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100471 if (tstc()) {
472 switch (getc()) {
wdenk47d1a6e2002-11-03 00:01:44 +0000473 case 0x03: /* ^C - Control C */
474 ctrlc_was_pressed = 1;
475 return 1;
476 default:
477 break;
478 }
479 }
480 }
481 return 0;
482}
483
484/* pass 1 to disable ctrlc() checking, 0 to enable.
485 * returns previous state
486 */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100487int disable_ctrlc(int disable)
wdenk47d1a6e2002-11-03 00:01:44 +0000488{
489 int prev = ctrlc_disabled; /* save previous state */
490
491 ctrlc_disabled = disable;
492 return prev;
493}
494
495int had_ctrlc (void)
496{
497 return ctrlc_was_pressed;
498}
499
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100500void clear_ctrlc(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000501{
502 ctrlc_was_pressed = 0;
503}
504
505#ifdef CONFIG_MODEM_SUPPORT_DEBUG
506char screen[1024];
507char *cursor = screen;
508int once = 0;
509inline void dbg(const char *fmt, ...)
510{
511 va_list args;
512 uint i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200513 char printbuffer[CONFIG_SYS_PBSIZE];
wdenk47d1a6e2002-11-03 00:01:44 +0000514
515 if (!once) {
516 memset(screen, 0, sizeof(screen));
517 once++;
518 }
519
520 va_start(args, fmt);
521
522 /* For this to work, printbuffer must be larger than
523 * anything we ever want to print.
524 */
Sonny Rao068af6f2011-10-10 09:22:31 +0000525 i = vsnprintf(printbuffer, sizeof(printbuffer), fmt, args);
wdenk47d1a6e2002-11-03 00:01:44 +0000526 va_end(args);
527
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100528 if ((screen + sizeof(screen) - 1 - cursor)
529 < strlen(printbuffer) + 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000530 memset(screen, 0, sizeof(screen));
531 cursor = screen;
532 }
533 sprintf(cursor, printbuffer);
534 cursor += strlen(printbuffer);
535
536}
537#else
538inline void dbg(const char *fmt, ...)
539{
540}
541#endif
542
543/** U-Boot INIT FUNCTIONS *************************************************/
544
Mike Frysingerd7be3052010-10-20 07:18:03 -0400545struct stdio_dev *search_device(int flags, const char *name)
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200546{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200547 struct stdio_dev *dev;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200548
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200549 dev = stdio_get_by_name(name);
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200550
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100551 if (dev && (dev->flags & flags))
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200552 return dev;
553
554 return NULL;
555}
556
Mike Frysingerd7be3052010-10-20 07:18:03 -0400557int console_assign(int file, const char *devname)
wdenk47d1a6e2002-11-03 00:01:44 +0000558{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200559 int flag;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200560 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000561
562 /* Check for valid file */
563 switch (file) {
564 case stdin:
565 flag = DEV_FLAGS_INPUT;
566 break;
567 case stdout:
568 case stderr:
569 flag = DEV_FLAGS_OUTPUT;
570 break;
571 default:
572 return -1;
573 }
574
575 /* Check for valid device name */
576
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200577 dev = search_device(flag, devname);
wdenk47d1a6e2002-11-03 00:01:44 +0000578
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100579 if (dev)
580 return console_setfile(file, dev);
wdenk47d1a6e2002-11-03 00:01:44 +0000581
582 return -1;
583}
584
585/* Called before relocation - use serial functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100586int console_init_f(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000587{
wdenk47d1a6e2002-11-03 00:01:44 +0000588 gd->have_console = 1;
wdenkf72da342003-10-10 10:05:42 +0000589
590#ifdef CONFIG_SILENT_CONSOLE
591 if (getenv("silent") != NULL)
592 gd->flags |= GD_FLG_SILENT;
593#endif
594
Graeme Russ9558b482011-09-01 00:48:27 +0000595 print_pre_console_buffer();
596
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100597 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000598}
599
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200600void stdio_print_current_devices(void)
601{
David Brownell52f6c342009-08-30 11:05:29 -0700602#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200603 /* Print information */
604 puts("In: ");
605 if (stdio_devices[stdin] == NULL) {
606 puts("No input devices available!\n");
607 } else {
608 printf ("%s\n", stdio_devices[stdin]->name);
609 }
610
611 puts("Out: ");
612 if (stdio_devices[stdout] == NULL) {
613 puts("No output devices available!\n");
614 } else {
615 printf ("%s\n", stdio_devices[stdout]->name);
616 }
617
618 puts("Err: ");
619 if (stdio_devices[stderr] == NULL) {
620 puts("No error devices available!\n");
621 } else {
622 printf ("%s\n", stdio_devices[stderr]->name);
623 }
624#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
625}
626
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200627#ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
wdenk47d1a6e2002-11-03 00:01:44 +0000628/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100629int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000630{
631 char *stdinname, *stdoutname, *stderrname;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200632 struct stdio_dev *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200633#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk6e592382004-04-18 17:39:38 +0000634 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200635#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100636#ifdef CONFIG_CONSOLE_MUX
637 int iomux_err = 0;
638#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000639
640 /* set default handlers at first */
wdenk27b207f2003-07-24 23:38:38 +0000641 gd->jt[XF_getc] = serial_getc;
642 gd->jt[XF_tstc] = serial_tstc;
643 gd->jt[XF_putc] = serial_putc;
644 gd->jt[XF_puts] = serial_puts;
645 gd->jt[XF_printf] = serial_printf;
wdenk47d1a6e2002-11-03 00:01:44 +0000646
647 /* stdin stdout and stderr are in environment */
648 /* scan for it */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100649 stdinname = getenv("stdin");
650 stdoutname = getenv("stdout");
651 stderrname = getenv("stderr");
wdenk47d1a6e2002-11-03 00:01:44 +0000652
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200653 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100654 inputdev = search_device(DEV_FLAGS_INPUT, stdinname);
655 outputdev = search_device(DEV_FLAGS_OUTPUT, stdoutname);
656 errdev = search_device(DEV_FLAGS_OUTPUT, stderrname);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100657#ifdef CONFIG_CONSOLE_MUX
658 iomux_err = iomux_doenv(stdin, stdinname);
659 iomux_err += iomux_doenv(stdout, stdoutname);
660 iomux_err += iomux_doenv(stderr, stderrname);
661 if (!iomux_err)
662 /* Successful, so skip all the code below. */
663 goto done;
664#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000665 }
666 /* if the devices are overwritten or not found, use default device */
667 if (inputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100668 inputdev = search_device(DEV_FLAGS_INPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000669 }
670 if (outputdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100671 outputdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000672 }
673 if (errdev == NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100674 errdev = search_device(DEV_FLAGS_OUTPUT, "serial");
wdenk47d1a6e2002-11-03 00:01:44 +0000675 }
676 /* Initializes output console first */
677 if (outputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100678 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100679 console_doenv(stdout, outputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000680 }
681 if (errdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100682 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100683 console_doenv(stderr, errdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000684 }
685 if (inputdev != NULL) {
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100686 /* need to set a console if not done above. */
Jean-Christophe PLAGNIOL-VILLARD5f032012009-02-01 17:07:52 +0100687 console_doenv(stdin, inputdev);
wdenk47d1a6e2002-11-03 00:01:44 +0000688 }
689
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100690#ifdef CONFIG_CONSOLE_MUX
691done:
692#endif
693
wdenk5f535fe2003-09-18 09:21:33 +0000694 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
695
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200696 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +0000697
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200698#ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
wdenk47d1a6e2002-11-03 00:01:44 +0000699 /* set the environment variables (will overwrite previous env settings) */
700 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100701 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000702 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200703#endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
wdenk47d1a6e2002-11-03 00:01:44 +0000704
705#if 0
706 /* If nothing usable installed, use only the initial console */
707 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100708 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000709#endif
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100710 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000711}
712
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200713#else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
wdenk47d1a6e2002-11-03 00:01:44 +0000714
715/* Called after the relocation - use desired console functions */
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100716int console_init_r(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000717{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200718 struct stdio_dev *inputdev = NULL, *outputdev = NULL;
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200719 int i;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200720 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200721 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200722 struct stdio_dev *dev;
wdenk47d1a6e2002-11-03 00:01:44 +0000723
wdenkd791b1d2003-04-20 14:04:18 +0000724#ifdef CONFIG_SPLASH_SCREEN
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100725 /*
726 * suppress all output if splash screen is enabled and we have
Anatolij Gustschina7490812010-03-16 15:29:33 +0100727 * a bmp to display. We redirect the output from frame buffer
728 * console to serial console in this case or suppress it if
729 * "silent" mode was requested.
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100730 */
Anatolij Gustschina7490812010-03-16 15:29:33 +0100731 if (getenv("splashimage") != NULL) {
732 if (!(gd->flags & GD_FLG_SILENT))
733 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
734 }
wdenkf72da342003-10-10 10:05:42 +0000735#endif
736
wdenk47d1a6e2002-11-03 00:01:44 +0000737 /* Scan devices looking for input and output devices */
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200738 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200739 dev = list_entry(pos, struct stdio_dev, list);
wdenk47d1a6e2002-11-03 00:01:44 +0000740
741 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
742 inputdev = dev;
743 }
744 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
745 outputdev = dev;
746 }
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +0200747 if(inputdev && outputdev)
748 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000749 }
750
751 /* Initializes output console first */
752 if (outputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100753 console_setfile(stdout, outputdev);
754 console_setfile(stderr, outputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100755#ifdef CONFIG_CONSOLE_MUX
756 console_devices[stdout][0] = outputdev;
757 console_devices[stderr][0] = outputdev;
758#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000759 }
760
761 /* Initializes input console */
762 if (inputdev != NULL) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100763 console_setfile(stdin, inputdev);
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100764#ifdef CONFIG_CONSOLE_MUX
765 console_devices[stdin][0] = inputdev;
766#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000767 }
768
wdenk5f535fe2003-09-18 09:21:33 +0000769 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
770
Jean-Christophe PLAGNIOL-VILLARD7e3be7c2009-05-16 12:14:55 +0200771 stdio_print_current_devices();
wdenk47d1a6e2002-11-03 00:01:44 +0000772
773 /* Setting environment variables */
774 for (i = 0; i < 3; i++) {
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100775 setenv(stdio_names[i], stdio_devices[i]->name);
wdenk47d1a6e2002-11-03 00:01:44 +0000776 }
777
778#if 0
779 /* If nothing usable installed, use only the initial console */
780 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100781 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000782#endif
783
Jean-Christophe PLAGNIOL-VILLARDec6f1492009-02-01 17:07:51 +0100784 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000785}
786
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200787#endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */