common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
master
Jean-Christophe PLAGNIOL-VILLARD 16 years ago committed by Wolfgang Denk
parent ec6f149946
commit 5f03201088
  1. 108
      common/console.c

@ -106,7 +106,7 @@ int cd_count[MAX_FILES];
* only from fgetc() which assures it. * only from fgetc() which assures it.
* No attempt is made to demultiplex multiple input sources. * No attempt is made to demultiplex multiple input sources.
*/ */
static int iomux_getc(void) static int console_getc(int file)
{ {
unsigned char ret; unsigned char ret;
@ -116,7 +116,7 @@ static int iomux_getc(void)
return ret; return ret;
} }
static int iomux_tstc(int file) static int console_tstc(int file)
{ {
int i, ret; int i, ret;
device_t *dev; device_t *dev;
@ -138,7 +138,7 @@ static int iomux_tstc(int file)
return 0; return 0;
} }
static void iomux_putc(int file, const char c) static void console_putc(int file, const char c)
{ {
int i; int i;
device_t *dev; device_t *dev;
@ -150,7 +150,7 @@ static void iomux_putc(int file, const char c)
} }
} }
static void iomux_puts(int file, const char *s) static void console_puts(int file, const char *s)
{ {
int i; int i;
device_t *dev; device_t *dev;
@ -161,6 +161,46 @@ static void iomux_puts(int file, const char *s)
dev->puts(s); dev->puts(s);
} }
} }
static inline void console_printdevs(int file)
{
iomux_printdevs(file);
}
static inline void console_doenv(int file, device_t *dev)
{
iomux_doenv(file, dev->name);
}
#else
static inline int console_getc(int file)
{
return stdio_devices[file]->getc();
}
static inline int console_tstc(int file)
{
return stdio_devices[file]->tstc();
}
static inline void console_putc(int file, const char c)
{
stdio_devices[file]->putc(c);
}
static inline void console_puts(int file, const char *s)
{
stdio_devices[file]->puts(s);
}
static inline void console_printdevs(int file)
{
printf("%s\n", stdio_devices[file]->name);
}
static inline void console_doenv(int file, device_t *dev)
{
console_setfile(file, dev);
}
#endif /* defined(CONFIG_CONSOLE_MUX) */ #endif /* defined(CONFIG_CONSOLE_MUX) */
/** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/ /** U-Boot INITIAL CONSOLE-NOT COMPATIBLE FUNCTIONS *************************/
@ -195,8 +235,8 @@ int fgetc(int file)
* check for that first. * check for that first.
*/ */
if (tstcdev != NULL) if (tstcdev != NULL)
return iomux_getc(); return console_getc(file);
iomux_tstc(file); console_tstc(file);
#ifdef CONFIG_WATCHDOG #ifdef CONFIG_WATCHDOG
/* /*
* If the watchdog must be rate-limited then it should * If the watchdog must be rate-limited then it should
@ -206,7 +246,7 @@ int fgetc(int file)
#endif #endif
} }
#else #else
return stdio_devices[file]->getc(); return console_getc(file);
#endif #endif
} }
@ -216,11 +256,7 @@ int fgetc(int file)
int ftstc(int file) int ftstc(int file)
{ {
if (file < MAX_FILES) if (file < MAX_FILES)
#if defined(CONFIG_CONSOLE_MUX) return console_tstc(file);
return iomux_tstc(file);
#else
return stdio_devices[file]->tstc();
#endif
return -1; return -1;
} }
@ -228,21 +264,13 @@ int ftstc(int file)
void fputc(int file, const char c) void fputc(int file, const char c)
{ {
if (file < MAX_FILES) if (file < MAX_FILES)
#if defined(CONFIG_CONSOLE_MUX) console_putc(file, c);
iomux_putc(file, c);
#else
stdio_devices[file]->putc(c);
#endif
} }
void fputs(int file, const char *s) void fputs(int file, const char *s)
{ {
if (file < MAX_FILES) if (file < MAX_FILES)
#if defined(CONFIG_CONSOLE_MUX) console_puts(file, s);
iomux_puts(file, s);
#else
stdio_devices[file]->puts(s);
#endif
} }
void fprintf(int file, const char *fmt, ...) void fprintf(int file, const char *fmt, ...)
@ -555,28 +583,16 @@ int console_init_r(void)
} }
/* Initializes output console first */ /* Initializes output console first */
if (outputdev != NULL) { if (outputdev != NULL) {
#ifdef CONFIG_CONSOLE_MUX
/* need to set a console if not done above. */ /* need to set a console if not done above. */
iomux_doenv(stdout, outputdev->name); console_doenv(stdout, outputdev);
#else
console_setfile(stdout, outputdev);
#endif
} }
if (errdev != NULL) { if (errdev != NULL) {
#ifdef CONFIG_CONSOLE_MUX
/* need to set a console if not done above. */ /* need to set a console if not done above. */
iomux_doenv(stderr, errdev->name); console_doenv(stderr, errdev);
#else
console_setfile(stderr, errdev);
#endif
} }
if (inputdev != NULL) { if (inputdev != NULL) {
#ifdef CONFIG_CONSOLE_MUX
/* need to set a console if not done above. */ /* need to set a console if not done above. */
iomux_doenv(stdin, inputdev->name); console_doenv(stdin, inputdev);
#else
console_setfile(stdin, inputdev);
#endif
} }
#ifdef CONFIG_CONSOLE_MUX #ifdef CONFIG_CONSOLE_MUX
@ -591,33 +607,21 @@ done:
if (stdio_devices[stdin] == NULL) { if (stdio_devices[stdin] == NULL) {
puts("No input devices available!\n"); puts("No input devices available!\n");
} else { } else {
#ifdef CONFIG_CONSOLE_MUX console_printdevs(stdin);
iomux_printdevs(stdin);
#else
printf("%s\n", stdio_devices[stdin]->name);
#endif
} }
puts("Out: "); puts("Out: ");
if (stdio_devices[stdout] == NULL) { if (stdio_devices[stdout] == NULL) {
puts("No output devices available!\n"); puts("No output devices available!\n");
} else { } else {
#ifdef CONFIG_CONSOLE_MUX console_printdevs(stdout);
iomux_printdevs(stdout);
#else
printf("%s\n", stdio_devices[stdout]->name);
#endif
} }
puts("Err: "); puts("Err: ");
if (stdio_devices[stderr] == NULL) { if (stdio_devices[stderr] == NULL) {
puts("No error devices available!\n"); puts("No error devices available!\n");
} else { } else {
#ifdef CONFIG_CONSOLE_MUX console_printdevs(stderr);
iomux_printdevs(stderr);
#else
printf("%s\n", stdio_devices[stderr]->name);
#endif
} }
#endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */ #endif /* CONFIG_SYS_CONSOLE_INFO_QUIET */

Loading…
Cancel
Save