3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
30 DECLARE_GLOBAL_DATA_PTR;
32 #ifdef CONFIG_AMIGAONEG3SE
33 int console_changed = 0;
36 #ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
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
42 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
43 extern int overwrite_console (void);
44 #define OVERWRITE_CONSOLE overwrite_console ()
46 #define OVERWRITE_CONSOLE 0
47 #endif /* CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE */
49 #endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
51 static int console_setfile (int file, device_t * dev)
62 /* Start new device */
64 error = dev->start ();
65 /* If it's not started dont use it */
70 /* Assign the new device (leaving the existing one started) */
71 stdio_devices[file] = dev;
74 * Update monitor functions
75 * (to use the console stuff by other applications)
79 gd->jt[XF_getc] = dev->getc;
80 gd->jt[XF_tstc] = dev->tstc;
83 gd->jt[XF_putc] = dev->putc;
84 gd->jt[XF_puts] = dev->puts;
85 gd->jt[XF_printf] = printf;
90 default: /* Invalid file ID */
96 #if defined(CONFIG_CONSOLE_MUX)
97 /** Console I/O multiplexing *******************************************/
99 static device_t *tstcdev;
100 device_t **console_devices[MAX_FILES];
101 int cd_count[MAX_FILES];
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.
109 static int iomux_getc(void)
113 /* This is never called with testcdev == NULL */
114 ret = tstcdev->getc();
119 static int iomux_tstc(int file)
125 for (i = 0; i < cd_count[file]; i++) {
126 dev = console_devices[file][i];
127 if (dev->tstc != NULL) {
141 static void iomux_putc(int file, const char c)
146 for (i = 0; i < cd_count[file]; i++) {
147 dev = console_devices[file][i];
148 if (dev->putc != NULL)
153 static void iomux_puts(int file, const char *s)
158 for (i = 0; i < cd_count[file]; i++) {
159 dev = console_devices[file][i];
160 if (dev->puts != NULL)
164 #endif /* defined(CONFIG_CONSOLE_MUX) */
166 /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
168 void serial_printf (const char *fmt, ...)
172 char printbuffer[CONFIG_SYS_PBSIZE];
174 va_start (args, fmt);
176 /* For this to work, printbuffer must be larger than
177 * anything we ever want to print.
179 i = vsprintf (printbuffer, fmt, args);
182 serial_puts (printbuffer);
187 if (file < MAX_FILES) {
188 #if defined(CONFIG_CONSOLE_MUX)
190 * Effectively poll for input wherever it may be available.
194 * Upper layer may have already called tstc() so
195 * check for that first.
200 #ifdef CONFIG_WATCHDOG
202 * If the watchdog must be rate-limited then it should
203 * already be handled in board-specific code.
209 return stdio_devices[file]->getc ();
218 if (file < MAX_FILES)
219 #if defined(CONFIG_CONSOLE_MUX)
220 return iomux_tstc(file);
222 return stdio_devices[file]->tstc ();
228 void fputc (int file, const char c)
230 if (file < MAX_FILES)
231 #if defined(CONFIG_CONSOLE_MUX)
234 stdio_devices[file]->putc (c);
238 void fputs (int file, const char *s)
240 if (file < MAX_FILES)
241 #if defined(CONFIG_CONSOLE_MUX)
244 stdio_devices[file]->puts (s);
248 void fprintf (int file, const char *fmt, ...)
252 char printbuffer[CONFIG_SYS_PBSIZE];
254 va_start (args, fmt);
256 /* For this to work, printbuffer must be larger than
257 * anything we ever want to print.
259 i = vsprintf (printbuffer, fmt, args);
262 /* Send to desired file */
263 fputs (file, printbuffer);
266 /** U-Boot INITIAL CONSOLE-COMPATIBLE FUNCTION *****************************/
270 #ifdef CONFIG_DISABLE_CONSOLE
271 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
275 if (gd->flags & GD_FLG_DEVINIT) {
276 /* Get from the standard input */
277 return fgetc (stdin);
280 /* Send directly to the handler */
281 return serial_getc ();
286 #ifdef CONFIG_DISABLE_CONSOLE
287 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
291 if (gd->flags & GD_FLG_DEVINIT) {
292 /* Test the standard input */
293 return ftstc (stdin);
296 /* Send directly to the handler */
297 return serial_tstc ();
300 void putc (const char c)
302 #ifdef CONFIG_SILENT_CONSOLE
303 if (gd->flags & GD_FLG_SILENT)
307 #ifdef CONFIG_DISABLE_CONSOLE
308 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
312 if (gd->flags & GD_FLG_DEVINIT) {
313 /* Send to the standard output */
316 /* Send directly to the handler */
321 void puts (const char *s)
323 #ifdef CONFIG_SILENT_CONSOLE
324 if (gd->flags & GD_FLG_SILENT)
328 #ifdef CONFIG_DISABLE_CONSOLE
329 if (gd->flags & GD_FLG_DISABLE_CONSOLE)
333 if (gd->flags & GD_FLG_DEVINIT) {
334 /* Send to the standard output */
337 /* Send directly to the handler */
342 void printf (const char *fmt, ...)
346 char printbuffer[CONFIG_SYS_PBSIZE];
348 va_start (args, fmt);
350 /* For this to work, printbuffer must be larger than
351 * anything we ever want to print.
353 i = vsprintf (printbuffer, fmt, args);
356 /* Print the string */
360 void vprintf (const char *fmt, va_list args)
363 char printbuffer[CONFIG_SYS_PBSIZE];
365 /* For this to work, printbuffer must be larger than
366 * anything we ever want to print.
368 i = vsprintf (printbuffer, fmt, args);
370 /* Print the string */
374 /* test if ctrl-c was pressed */
375 static int ctrlc_disabled = 0; /* see disable_ctrl() */
376 static int ctrlc_was_pressed = 0;
379 if (!ctrlc_disabled && gd->have_console) {
382 case 0x03: /* ^C - Control C */
383 ctrlc_was_pressed = 1;
393 /* pass 1 to disable ctrlc() checking, 0 to enable.
394 * returns previous state
396 int disable_ctrlc (int disable)
398 int prev = ctrlc_disabled; /* save previous state */
400 ctrlc_disabled = disable;
406 return ctrlc_was_pressed;
409 void clear_ctrlc (void)
411 ctrlc_was_pressed = 0;
414 #ifdef CONFIG_MODEM_SUPPORT_DEBUG
416 char *cursor = screen;
418 inline void dbg(const char *fmt, ...)
422 char printbuffer[CONFIG_SYS_PBSIZE];
425 memset(screen, 0, sizeof(screen));
431 /* For this to work, printbuffer must be larger than
432 * anything we ever want to print.
434 i = vsprintf(printbuffer, fmt, args);
437 if ((screen + sizeof(screen) - 1 - cursor) < strlen(printbuffer)+1) {
438 memset(screen, 0, sizeof(screen));
441 sprintf(cursor, printbuffer);
442 cursor += strlen(printbuffer);
446 inline void dbg(const char *fmt, ...)
451 /** U-Boot INIT FUNCTIONS *************************************************/
453 device_t *search_device (int flags, char *name)
457 dev = device_get_by_name(name);
459 if(dev && (dev->flags & flags))
465 int console_assign (int file, char *devname)
470 /* Check for valid file */
473 flag = DEV_FLAGS_INPUT;
477 flag = DEV_FLAGS_OUTPUT;
483 /* Check for valid device name */
485 dev = search_device(flag, devname);
488 return console_setfile (file, dev);
493 /* Called before relocation - use serial functions */
494 int console_init_f (void)
496 gd->have_console = 1;
498 #ifdef CONFIG_SILENT_CONSOLE
499 if (getenv("silent") != NULL)
500 gd->flags |= GD_FLG_SILENT;
506 #ifdef CONFIG_SYS_CONSOLE_IS_IN_ENV
507 /* Called after the relocation - use desired console functions */
508 int console_init_r (void)
510 char *stdinname, *stdoutname, *stderrname;
511 device_t *inputdev = NULL, *outputdev = NULL, *errdev = NULL;
512 #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
514 #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
515 #ifdef CONFIG_CONSOLE_MUX
519 /* set default handlers at first */
520 gd->jt[XF_getc] = serial_getc;
521 gd->jt[XF_tstc] = serial_tstc;
522 gd->jt[XF_putc] = serial_putc;
523 gd->jt[XF_puts] = serial_puts;
524 gd->jt[XF_printf] = serial_printf;
526 /* stdin stdout and stderr are in environment */
528 stdinname = getenv ("stdin");
529 stdoutname = getenv ("stdout");
530 stderrname = getenv ("stderr");
532 if (OVERWRITE_CONSOLE == 0) { /* if not overwritten by config switch */
533 inputdev = search_device (DEV_FLAGS_INPUT, stdinname);
534 outputdev = search_device (DEV_FLAGS_OUTPUT, stdoutname);
535 errdev = search_device (DEV_FLAGS_OUTPUT, stderrname);
536 #ifdef CONFIG_CONSOLE_MUX
537 iomux_err = iomux_doenv(stdin, stdinname);
538 iomux_err += iomux_doenv(stdout, stdoutname);
539 iomux_err += iomux_doenv(stderr, stderrname);
541 /* Successful, so skip all the code below. */
545 /* if the devices are overwritten or not found, use default device */
546 if (inputdev == NULL) {
547 inputdev = search_device (DEV_FLAGS_INPUT, "serial");
549 if (outputdev == NULL) {
550 outputdev = search_device (DEV_FLAGS_OUTPUT, "serial");
552 if (errdev == NULL) {
553 errdev = search_device (DEV_FLAGS_OUTPUT, "serial");
555 /* Initializes output console first */
556 if (outputdev != NULL) {
557 #ifdef CONFIG_CONSOLE_MUX
558 /* need to set a console if not done above. */
559 iomux_doenv(stdout, outputdev->name);
561 console_setfile (stdout, outputdev);
564 if (errdev != NULL) {
565 #ifdef CONFIG_CONSOLE_MUX
566 /* need to set a console if not done above. */
567 iomux_doenv(stderr, errdev->name);
569 console_setfile (stderr, errdev);
572 if (inputdev != NULL) {
573 #ifdef CONFIG_CONSOLE_MUX
574 /* need to set a console if not done above. */
575 iomux_doenv(stdin, inputdev->name);
577 console_setfile (stdin, inputdev);
581 #ifdef CONFIG_CONSOLE_MUX
585 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
587 #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
588 /* Print information */
590 if (stdio_devices[stdin] == NULL) {
591 puts ("No input devices available!\n");
593 #ifdef CONFIG_CONSOLE_MUX
594 iomux_printdevs(stdin);
596 printf ("%s\n", stdio_devices[stdin]->name);
601 if (stdio_devices[stdout] == NULL) {
602 puts ("No output devices available!\n");
604 #ifdef CONFIG_CONSOLE_MUX
605 iomux_printdevs(stdout);
607 printf ("%s\n", stdio_devices[stdout]->name);
612 if (stdio_devices[stderr] == NULL) {
613 puts ("No error devices available!\n");
615 #ifdef CONFIG_CONSOLE_MUX
616 iomux_printdevs(stderr);
618 printf ("%s\n", stdio_devices[stderr]->name);
621 #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
623 #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE
624 /* set the environment variables (will overwrite previous env settings) */
625 for (i = 0; i < 3; i++) {
626 setenv (stdio_names[i], stdio_devices[i]->name);
628 #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */
631 /* If nothing usable installed, use only the initial console */
632 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
638 #else /* CONFIG_SYS_CONSOLE_IS_IN_ENV */
640 /* Called after the relocation - use desired console functions */
641 int console_init_r (void)
643 device_t *inputdev = NULL, *outputdev = NULL;
645 struct list_head *list = device_get_list();
646 struct list_head *pos;
649 #ifdef CONFIG_SPLASH_SCREEN
650 /* suppress all output if splash screen is enabled and we have
652 if (getenv("splashimage") != NULL)
653 gd->flags |= GD_FLG_SILENT;
656 /* Scan devices looking for input and output devices */
657 list_for_each(pos, list) {
658 dev = list_entry(pos, device_t, list);
660 if ((dev->flags & DEV_FLAGS_INPUT) && (inputdev == NULL)) {
663 if ((dev->flags & DEV_FLAGS_OUTPUT) && (outputdev == NULL)) {
666 if(inputdev && outputdev)
670 /* Initializes output console first */
671 if (outputdev != NULL) {
672 console_setfile (stdout, outputdev);
673 console_setfile (stderr, outputdev);
674 #ifdef CONFIG_CONSOLE_MUX
675 console_devices[stdout][0] = outputdev;
676 console_devices[stderr][0] = outputdev;
680 /* Initializes input console */
681 if (inputdev != NULL) {
682 console_setfile (stdin, inputdev);
683 #ifdef CONFIG_CONSOLE_MUX
684 console_devices[stdin][0] = inputdev;
688 gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */
690 #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
691 /* Print information */
693 if (stdio_devices[stdin] == NULL) {
694 puts ("No input devices available!\n");
696 printf ("%s\n", stdio_devices[stdin]->name);
700 if (stdio_devices[stdout] == NULL) {
701 puts ("No output devices available!\n");
703 printf ("%s\n", stdio_devices[stdout]->name);
707 if (stdio_devices[stderr] == NULL) {
708 puts ("No error devices available!\n");
710 printf ("%s\n", stdio_devices[stderr]->name);
712 #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */
714 /* Setting environment variables */
715 for (i = 0; i < 3; i++) {
716 setenv (stdio_names[i], stdio_devices[i]->name);
720 /* If nothing usable installed, use only the initial console */
721 if ((stdio_devices[stdin] == NULL) && (stdio_devices[stdout] == NULL))
728 #endif /* CONFIG_SYS_CONSOLE_IS_IN_ENV */