2002-09-18 21:21:13 +00:00
|
|
|
/*
|
2012-01-16 21:12:24 +00:00
|
|
|
* Copyright (C) 2009 Sergey Kubushyn <ksi@koi8.net>
|
|
|
|
*
|
|
|
|
* Changes for multibus/multiadapter I2C support.
|
|
|
|
*
|
2002-09-18 21:21:13 +00:00
|
|
|
* (C) Copyright 2000
|
|
|
|
* Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-09-18 21:21:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <common.h>
|
2015-10-19 03:17:15 +00:00
|
|
|
#include <dm.h>
|
2014-07-23 12:55:05 +00:00
|
|
|
#include <errno.h>
|
2002-09-18 21:21:13 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <malloc.h>
|
2009-05-16 10:14:54 +00:00
|
|
|
#include <stdio_dev.h>
|
2004-08-01 22:48:16 +00:00
|
|
|
#include <serial.h>
|
2002-11-10 22:06:23 +00:00
|
|
|
#ifdef CONFIG_LOGBUFFER
|
|
|
|
#include <logbuff.h>
|
|
|
|
#endif
|
2013-01-29 07:53:15 +00:00
|
|
|
|
2017-05-13 03:09:56 +00:00
|
|
|
#if defined(CONFIG_SYS_I2C)
|
2002-09-18 21:21:13 +00:00
|
|
|
#include <i2c.h>
|
2002-11-10 22:06:23 +00:00
|
|
|
#endif
|
2002-09-18 21:21:13 +00:00
|
|
|
|
2015-10-19 03:17:15 +00:00
|
|
|
#include <dm/device-internal.h>
|
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
static struct stdio_dev devs;
|
|
|
|
struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL };
|
2002-09-18 21:21:13 +00:00
|
|
|
char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" };
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SPLASH_SCREEN) && !defined(CONFIG_SYS_DEVICE_NULLDEV)
|
|
|
|
#define CONFIG_SYS_DEVICE_NULLDEV 1
|
2003-04-20 14:04:18 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:02 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
|
2014-09-20 14:54:37 +00:00
|
|
|
#define CONFIG_SYS_DEVICE_NULLDEV 1
|
|
|
|
#endif
|
2003-04-20 14:04:18 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_DEVICE_NULLDEV
|
2014-10-08 20:57:44 +00:00
|
|
|
static void nulldev_putc(struct stdio_dev *dev, const char c)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2008-08-31 02:24:55 +00:00
|
|
|
/* nulldev is empty! */
|
2002-09-18 21:21:13 +00:00
|
|
|
}
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static void nulldev_puts(struct stdio_dev *dev, const char *s)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2008-08-31 02:24:55 +00:00
|
|
|
/* nulldev is empty! */
|
2002-09-18 21:21:13 +00:00
|
|
|
}
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static int nulldev_input(struct stdio_dev *dev)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2008-08-31 02:24:55 +00:00
|
|
|
/* nulldev is empty! */
|
|
|
|
return 0;
|
2002-09-18 21:21:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static void stdio_serial_putc(struct stdio_dev *dev, const char c)
|
2014-07-23 12:54:59 +00:00
|
|
|
{
|
|
|
|
serial_putc(c);
|
|
|
|
}
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static void stdio_serial_puts(struct stdio_dev *dev, const char *s)
|
2014-07-23 12:54:59 +00:00
|
|
|
{
|
|
|
|
serial_puts(s);
|
|
|
|
}
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static int stdio_serial_getc(struct stdio_dev *dev)
|
2014-07-23 12:54:59 +00:00
|
|
|
{
|
|
|
|
return serial_getc();
|
|
|
|
}
|
|
|
|
|
2014-10-08 20:57:44 +00:00
|
|
|
static int stdio_serial_tstc(struct stdio_dev *dev)
|
2014-07-23 12:54:59 +00:00
|
|
|
{
|
|
|
|
return serial_tstc();
|
|
|
|
}
|
|
|
|
|
2002-09-18 21:21:13 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* SYSTEM DRIVERS
|
|
|
|
**************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void drv_system_init (void)
|
|
|
|
{
|
2009-05-16 10:14:54 +00:00
|
|
|
struct stdio_dev dev;
|
2002-09-18 21:21:13 +00:00
|
|
|
|
|
|
|
memset (&dev, 0, sizeof (dev));
|
|
|
|
|
|
|
|
strcpy (dev.name, "serial");
|
2015-11-04 07:23:37 +00:00
|
|
|
dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
|
2014-07-23 12:54:59 +00:00
|
|
|
dev.putc = stdio_serial_putc;
|
|
|
|
dev.puts = stdio_serial_puts;
|
|
|
|
dev.getc = stdio_serial_getc;
|
|
|
|
dev.tstc = stdio_serial_tstc;
|
2009-05-16 10:14:54 +00:00
|
|
|
stdio_register (&dev);
|
2002-09-18 21:21:13 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_DEVICE_NULLDEV
|
2002-09-18 21:21:13 +00:00
|
|
|
memset (&dev, 0, sizeof (dev));
|
|
|
|
|
|
|
|
strcpy (dev.name, "nulldev");
|
2015-11-04 07:23:37 +00:00
|
|
|
dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
|
2002-09-18 21:21:13 +00:00
|
|
|
dev.putc = nulldev_putc;
|
|
|
|
dev.puts = nulldev_puts;
|
|
|
|
dev.getc = nulldev_input;
|
|
|
|
dev.tstc = nulldev_input;
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
stdio_register (&dev);
|
2002-09-18 21:21:13 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* DEVICES
|
|
|
|
**************************************************************************
|
|
|
|
*/
|
2009-05-16 10:14:54 +00:00
|
|
|
struct list_head* stdio_get_list(void)
|
2008-08-31 02:24:55 +00:00
|
|
|
{
|
|
|
|
return &(devs.list);
|
|
|
|
}
|
|
|
|
|
2016-10-06 02:42:16 +00:00
|
|
|
#ifdef CONFIG_DM_VIDEO
|
|
|
|
/**
|
|
|
|
* stdio_probe_device() - Find a device which provides the given stdio device
|
|
|
|
*
|
|
|
|
* This looks for a device of the given uclass which provides a particular
|
|
|
|
* stdio device. It is currently really only useful for UCLASS_VIDEO.
|
|
|
|
*
|
|
|
|
* Ultimately we want to be able to probe a device by its stdio name. At
|
|
|
|
* present devices register in their probe function (for video devices this
|
|
|
|
* is done in vidconsole_post_probe()) and we don't know what name they will
|
|
|
|
* use until they do so.
|
|
|
|
* TODO(sjg@chromium.org): We should be able to determine the name before
|
|
|
|
* probing, and probe the required device.
|
|
|
|
*
|
|
|
|
* @name: stdio device name (e.g. "vidconsole")
|
|
|
|
* id: Uclass ID of device to look for (e.g. UCLASS_VIDEO)
|
|
|
|
* @sdevp: Returns stdout device, if found, else NULL
|
|
|
|
* @return 0 if found, -ENOENT if no device found with that name, other -ve
|
|
|
|
* on other error
|
|
|
|
*/
|
|
|
|
static int stdio_probe_device(const char *name, enum uclass_id id,
|
|
|
|
struct stdio_dev **sdevp)
|
|
|
|
{
|
|
|
|
struct stdio_dev *sdev;
|
|
|
|
struct udevice *dev;
|
|
|
|
int seq, ret;
|
|
|
|
|
|
|
|
*sdevp = NULL;
|
|
|
|
seq = trailing_strtoln(name, NULL);
|
|
|
|
if (seq == -1)
|
2016-11-13 21:22:00 +00:00
|
|
|
seq = 0;
|
|
|
|
ret = uclass_get_device_by_seq(id, seq, &dev);
|
|
|
|
if (ret == -ENODEV)
|
2016-10-06 02:42:16 +00:00
|
|
|
ret = uclass_first_device_err(id, &dev);
|
|
|
|
if (ret) {
|
|
|
|
debug("No %s device for seq %d (%s)\n", uclass_get_name(id),
|
|
|
|
seq, name);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
/* The device should be be the last one registered */
|
|
|
|
sdev = list_empty(&devs.list) ? NULL :
|
|
|
|
list_last_entry(&devs.list, struct stdio_dev, list);
|
|
|
|
if (!sdev || strcmp(sdev->name, name)) {
|
|
|
|
debug("Device '%s' did not register with stdio as '%s'\n",
|
|
|
|
dev->name, name);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
*sdevp = sdev;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-11-13 21:21:59 +00:00
|
|
|
struct stdio_dev *stdio_get_by_name(const char *name)
|
2008-08-31 02:24:55 +00:00
|
|
|
{
|
|
|
|
struct list_head *pos;
|
2016-10-06 02:42:16 +00:00
|
|
|
struct stdio_dev *sdev;
|
2008-08-31 02:24:55 +00:00
|
|
|
|
2016-11-13 21:21:59 +00:00
|
|
|
if (!name)
|
2008-08-31 02:24:55 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
list_for_each(pos, &(devs.list)) {
|
2016-10-06 02:42:16 +00:00
|
|
|
sdev = list_entry(pos, struct stdio_dev, list);
|
|
|
|
if (strcmp(sdev->name, name) == 0)
|
|
|
|
return sdev;
|
2008-08-31 02:24:55 +00:00
|
|
|
}
|
2016-10-06 02:42:16 +00:00
|
|
|
#ifdef CONFIG_DM_VIDEO
|
|
|
|
/*
|
|
|
|
* We did not find a suitable stdio device. If there is a video
|
|
|
|
* driver with a name starting with 'vidconsole', we can try probing
|
|
|
|
* that in the hope that it will produce the required stdio device.
|
|
|
|
*
|
|
|
|
* This function is sometimes called with the entire value of
|
|
|
|
* 'stdout', which may include a list of devices separate by commas.
|
|
|
|
* Obviously this is not going to work, so we ignore that case. The
|
|
|
|
* call path in that case is console_init_r() -> search_device() ->
|
|
|
|
* stdio_get_by_name().
|
|
|
|
*/
|
|
|
|
if (!strncmp(name, "vidconsole", 10) && !strchr(name, ',') &&
|
|
|
|
!stdio_probe_device(name, UCLASS_VIDEO, &sdev))
|
|
|
|
return sdev;
|
|
|
|
#endif
|
2008-08-31 02:24:55 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
struct stdio_dev* stdio_clone(struct stdio_dev *dev)
|
2008-09-01 15:11:26 +00:00
|
|
|
{
|
2009-05-16 10:14:54 +00:00
|
|
|
struct stdio_dev *_dev;
|
2008-09-01 15:11:26 +00:00
|
|
|
|
|
|
|
if(!dev)
|
|
|
|
return NULL;
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
_dev = calloc(1, sizeof(struct stdio_dev));
|
2008-09-01 15:11:26 +00:00
|
|
|
|
|
|
|
if(!_dev)
|
|
|
|
return NULL;
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
memcpy(_dev, dev, sizeof(struct stdio_dev));
|
2008-09-01 15:11:26 +00:00
|
|
|
|
|
|
|
return _dev;
|
|
|
|
}
|
2002-09-18 21:21:13 +00:00
|
|
|
|
2014-07-23 12:55:05 +00:00
|
|
|
int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2009-05-16 10:14:54 +00:00
|
|
|
struct stdio_dev *_dev;
|
2008-09-01 15:11:26 +00:00
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
_dev = stdio_clone(dev);
|
2008-09-01 15:11:26 +00:00
|
|
|
if(!_dev)
|
2014-07-23 12:55:05 +00:00
|
|
|
return -ENODEV;
|
2008-09-05 08:47:46 +00:00
|
|
|
list_add_tail(&(_dev->list), &(devs.list));
|
2014-07-23 12:55:05 +00:00
|
|
|
if (devp)
|
|
|
|
*devp = _dev;
|
|
|
|
|
2002-09-18 21:21:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-23 12:55:05 +00:00
|
|
|
int stdio_register(struct stdio_dev *dev)
|
|
|
|
{
|
|
|
|
return stdio_register_dev(dev, NULL);
|
|
|
|
}
|
|
|
|
|
2002-09-18 21:21:13 +00:00
|
|
|
/* deregister the device "devname".
|
|
|
|
* returns 0 if success, -1 if device is assigned and 1 if devname not found
|
|
|
|
*/
|
2016-10-18 02:13:02 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
|
2014-09-20 14:54:37 +00:00
|
|
|
int stdio_deregister_dev(struct stdio_dev *dev, int force)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2008-08-31 02:24:55 +00:00
|
|
|
int l;
|
|
|
|
struct list_head *pos;
|
2011-08-22 11:48:05 +00:00
|
|
|
char temp_names[3][16];
|
2002-09-18 21:21:13 +00:00
|
|
|
|
|
|
|
/* get stdio devices (ListRemoveItem changes the dev list) */
|
|
|
|
for (l=0 ; l< MAX_FILES; l++) {
|
|
|
|
if (stdio_devices[l] == dev) {
|
2014-09-20 14:54:37 +00:00
|
|
|
if (force) {
|
|
|
|
strcpy(temp_names[l], "nulldev");
|
|
|
|
continue;
|
|
|
|
}
|
2002-09-18 21:21:13 +00:00
|
|
|
/* Device is assigned -> report error */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy (&temp_names[l][0],
|
|
|
|
stdio_devices[l]->name,
|
2011-08-22 11:48:05 +00:00
|
|
|
sizeof(temp_names[l]));
|
2002-09-18 21:21:13 +00:00
|
|
|
}
|
2008-08-31 02:24:55 +00:00
|
|
|
|
|
|
|
list_del(&(dev->list));
|
2014-09-24 12:06:09 +00:00
|
|
|
free(dev);
|
2008-08-31 02:24:55 +00:00
|
|
|
|
2002-09-18 21:21:13 +00:00
|
|
|
/* reassign Device list */
|
2008-08-31 02:24:55 +00:00
|
|
|
list_for_each(pos, &(devs.list)) {
|
2009-05-16 10:14:54 +00:00
|
|
|
dev = list_entry(pos, struct stdio_dev, list);
|
2002-09-18 21:21:13 +00:00
|
|
|
for (l=0 ; l< MAX_FILES; l++) {
|
2008-08-31 02:24:55 +00:00
|
|
|
if(strcmp(dev->name, temp_names[l]) == 0)
|
2002-09-18 21:21:13 +00:00
|
|
|
stdio_devices[l] = dev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2014-07-23 12:55:05 +00:00
|
|
|
|
2014-09-20 14:54:37 +00:00
|
|
|
int stdio_deregister(const char *devname, int force)
|
2014-07-23 12:55:05 +00:00
|
|
|
{
|
|
|
|
struct stdio_dev *dev;
|
|
|
|
|
|
|
|
dev = stdio_get_by_name(devname);
|
|
|
|
|
|
|
|
if (!dev) /* device not found */
|
|
|
|
return -ENODEV;
|
|
|
|
|
2014-09-20 14:54:37 +00:00
|
|
|
return stdio_deregister_dev(dev, force);
|
2014-07-23 12:55:05 +00:00
|
|
|
}
|
2016-10-18 02:13:02 +00:00
|
|
|
#endif /* CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER) */
|
2002-09-18 21:21:13 +00:00
|
|
|
|
2014-09-03 23:37:01 +00:00
|
|
|
int stdio_init_tables(void)
|
2002-09-18 21:21:13 +00:00
|
|
|
{
|
2010-10-28 18:00:11 +00:00
|
|
|
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
2009-09-21 16:20:36 +00:00
|
|
|
/* already relocated for current ARM implementation */
|
2002-09-18 21:21:13 +00:00
|
|
|
ulong relocation_offset = gd->reloc_off;
|
2003-06-22 17:18:28 +00:00
|
|
|
int i;
|
2002-09-18 21:21:13 +00:00
|
|
|
|
|
|
|
/* relocate device name pointers */
|
|
|
|
for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) {
|
|
|
|
stdio_names[i] = (char *) (((ulong) stdio_names[i]) +
|
|
|
|
relocation_offset);
|
|
|
|
}
|
2010-10-28 18:00:11 +00:00
|
|
|
#endif /* CONFIG_NEEDS_MANUAL_RELOC */
|
2002-09-18 21:21:13 +00:00
|
|
|
|
|
|
|
/* Initialize the list */
|
2008-08-31 02:24:55 +00:00
|
|
|
INIT_LIST_HEAD(&(devs.list));
|
2002-09-18 21:21:13 +00:00
|
|
|
|
2014-09-03 23:37:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stdio_add_devices(void)
|
|
|
|
{
|
2015-10-19 03:17:15 +00:00
|
|
|
#ifdef CONFIG_DM_KEYBOARD
|
|
|
|
struct udevice *dev;
|
|
|
|
struct uclass *uc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For now we probe all the devices here. At some point this should be
|
|
|
|
* done only when the devices are required - e.g. we have a list of
|
|
|
|
* input devices to start up in the stdin environment variable. That
|
|
|
|
* work probably makes more sense when stdio itself is converted to
|
|
|
|
* driver model.
|
|
|
|
*
|
|
|
|
* TODO(sjg@chromium.org): Convert changing uclass_first_device() etc.
|
|
|
|
* to return the device even on error. Then we could use that here.
|
|
|
|
*/
|
|
|
|
ret = uclass_get(UCLASS_KEYBOARD, &uc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Don't report errors to the caller - assume that they are non-fatal */
|
|
|
|
uclass_foreach_dev(dev, uc) {
|
|
|
|
ret = device_probe(dev);
|
|
|
|
if (ret)
|
|
|
|
printf("Failed to probe keyboard '%s'\n", dev->name);
|
|
|
|
}
|
|
|
|
#endif
|
2012-01-16 21:12:24 +00:00
|
|
|
#ifdef CONFIG_SYS_I2C
|
|
|
|
i2c_init_all();
|
|
|
|
#else
|
|
|
|
#endif
|
2016-01-19 02:52:23 +00:00
|
|
|
#ifdef CONFIG_DM_VIDEO
|
2016-10-06 02:42:16 +00:00
|
|
|
/*
|
|
|
|
* If the console setting is not in environment variables then
|
|
|
|
* console_init_r() will not be calling iomux_doenv() (which calls
|
|
|
|
* search_device()). So we will not dynamically add devices by
|
|
|
|
* calling stdio_probe_device().
|
|
|
|
*
|
|
|
|
* So just probe all video devices now so that whichever one is
|
|
|
|
* required will be available.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_SYS_CONSOLE_IS_IN_ENV
|
2016-01-19 02:52:23 +00:00
|
|
|
struct udevice *vdev;
|
2016-01-22 02:44:49 +00:00
|
|
|
# ifndef CONFIG_DM_KEYBOARD
|
|
|
|
int ret;
|
|
|
|
# endif
|
2016-01-19 02:52:23 +00:00
|
|
|
|
|
|
|
for (ret = uclass_first_device(UCLASS_VIDEO, &vdev);
|
|
|
|
vdev;
|
|
|
|
ret = uclass_next_device(&vdev))
|
|
|
|
;
|
|
|
|
if (ret)
|
|
|
|
printf("%s: Video device failed (ret=%d)\n", __func__, ret);
|
2016-10-06 02:42:16 +00:00
|
|
|
#endif /* !CONFIG_SYS_CONSOLE_IS_IN_ENV */
|
2016-01-19 02:52:23 +00:00
|
|
|
#else
|
|
|
|
# if defined(CONFIG_LCD)
|
2002-09-18 21:21:13 +00:00
|
|
|
drv_lcd_init ();
|
2016-01-19 02:52:23 +00:00
|
|
|
# endif
|
|
|
|
# if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
|
2002-09-18 21:21:13 +00:00
|
|
|
drv_video_init ();
|
2016-01-19 02:52:23 +00:00
|
|
|
# endif
|
|
|
|
#endif /* CONFIG_DM_VIDEO */
|
2015-10-19 03:17:15 +00:00
|
|
|
#if defined(CONFIG_KEYBOARD) && !defined(CONFIG_DM_KEYBOARD)
|
2003-06-03 23:54:09 +00:00
|
|
|
drv_keyboard_init ();
|
2002-11-05 16:35:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_LOGBUFFER
|
|
|
|
drv_logbuff_init ();
|
2002-09-18 21:21:13 +00:00
|
|
|
#endif
|
|
|
|
drv_system_init ();
|
2009-05-16 10:14:54 +00:00
|
|
|
serial_stdio_init ();
|
2004-03-12 00:14:09 +00:00
|
|
|
#ifdef CONFIG_USB_TTY
|
|
|
|
drv_usbtty_init ();
|
|
|
|
#endif
|
2004-08-02 21:11:11 +00:00
|
|
|
#ifdef CONFIG_NETCONSOLE
|
|
|
|
drv_nc_init ();
|
|
|
|
#endif
|
2008-10-12 01:51:20 +00:00
|
|
|
#ifdef CONFIG_JTAG_CONSOLE
|
|
|
|
drv_jtag_console_init ();
|
|
|
|
#endif
|
2012-10-12 18:48:47 +00:00
|
|
|
#ifdef CONFIG_CBMEM_CONSOLE
|
|
|
|
cbmemc_init();
|
|
|
|
#endif
|
2014-09-03 23:37:01 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int stdio_init(void)
|
|
|
|
{
|
|
|
|
stdio_init_tables();
|
|
|
|
stdio_add_devices();
|
|
|
|
|
|
|
|
return 0;
|
2002-09-18 21:21:13 +00:00
|
|
|
}
|