wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 1 | /* |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 2 | * Copyright (C) 2009 Sergey Kubushyn <ksi@koi8.net> |
| 3 | * |
| 4 | * Changes for multibus/multiadapter I2C support. |
| 5 | * |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 6 | * (C) Copyright 2000 |
| 7 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <config.h> |
| 13 | #include <common.h> |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 14 | #include <errno.h> |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 15 | #include <stdarg.h> |
| 16 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 17 | #include <stdio_dev.h> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 18 | #include <serial.h> |
wdenk | 7f6c2cb | 2002-11-10 22:06:23 +0000 | [diff] [blame] | 19 | #ifdef CONFIG_LOGBUFFER |
| 20 | #include <logbuff.h> |
| 21 | #endif |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 22 | |
| 23 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 24 | #include <i2c.h> |
wdenk | 7f6c2cb | 2002-11-10 22:06:23 +0000 | [diff] [blame] | 25 | #endif |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 26 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 29 | static struct stdio_dev devs; |
| 30 | struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL }; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 31 | char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" }; |
| 32 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 33 | #if defined(CONFIG_SPLASH_SCREEN) && !defined(CONFIG_SYS_DEVICE_NULLDEV) |
| 34 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 35 | #endif |
| 36 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 37 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
| 38 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
| 39 | #endif |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 40 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 41 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 42 | static void nulldev_putc(struct stdio_dev *dev, const char c) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 43 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 44 | /* nulldev is empty! */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 45 | } |
| 46 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 47 | static void nulldev_puts(struct stdio_dev *dev, const char *s) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 48 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 49 | /* nulldev is empty! */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 52 | static int nulldev_input(struct stdio_dev *dev) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 53 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 54 | /* nulldev is empty! */ |
| 55 | return 0; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 56 | } |
| 57 | #endif |
| 58 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 59 | static void stdio_serial_putc(struct stdio_dev *dev, const char c) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 60 | { |
| 61 | serial_putc(c); |
| 62 | } |
| 63 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 64 | static void stdio_serial_puts(struct stdio_dev *dev, const char *s) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 65 | { |
| 66 | serial_puts(s); |
| 67 | } |
| 68 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 69 | static int stdio_serial_getc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 70 | { |
| 71 | return serial_getc(); |
| 72 | } |
| 73 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 74 | static int stdio_serial_tstc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 75 | { |
| 76 | return serial_tstc(); |
| 77 | } |
| 78 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 79 | /************************************************************************** |
| 80 | * SYSTEM DRIVERS |
| 81 | ************************************************************************** |
| 82 | */ |
| 83 | |
| 84 | static void drv_system_init (void) |
| 85 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 86 | struct stdio_dev dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 87 | |
| 88 | memset (&dev, 0, sizeof (dev)); |
| 89 | |
| 90 | strcpy (dev.name, "serial"); |
| 91 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 92 | dev.putc = stdio_serial_putc; |
| 93 | dev.puts = stdio_serial_puts; |
| 94 | dev.getc = stdio_serial_getc; |
| 95 | dev.tstc = stdio_serial_tstc; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 96 | stdio_register (&dev); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 97 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 99 | memset (&dev, 0, sizeof (dev)); |
| 100 | |
| 101 | strcpy (dev.name, "nulldev"); |
| 102 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; |
| 103 | dev.putc = nulldev_putc; |
| 104 | dev.puts = nulldev_puts; |
| 105 | dev.getc = nulldev_input; |
| 106 | dev.tstc = nulldev_input; |
| 107 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 108 | stdio_register (&dev); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 109 | #endif |
| 110 | } |
| 111 | |
| 112 | /************************************************************************** |
| 113 | * DEVICES |
| 114 | ************************************************************************** |
| 115 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 116 | struct list_head* stdio_get_list(void) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 117 | { |
| 118 | return &(devs.list); |
| 119 | } |
| 120 | |
Mike Frysinger | d7be305 | 2010-10-20 07:18:03 -0400 | [diff] [blame] | 121 | struct stdio_dev* stdio_get_by_name(const char *name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 122 | { |
| 123 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 124 | struct stdio_dev *dev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 125 | |
| 126 | if(!name) |
| 127 | return NULL; |
| 128 | |
| 129 | list_for_each(pos, &(devs.list)) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 130 | dev = list_entry(pos, struct stdio_dev, list); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 131 | if(strcmp(dev->name, name) == 0) |
| 132 | return dev; |
| 133 | } |
| 134 | |
| 135 | return NULL; |
| 136 | } |
| 137 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 138 | struct stdio_dev* stdio_clone(struct stdio_dev *dev) |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 139 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 140 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 141 | |
| 142 | if(!dev) |
| 143 | return NULL; |
| 144 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 145 | _dev = calloc(1, sizeof(struct stdio_dev)); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 146 | |
| 147 | if(!_dev) |
| 148 | return NULL; |
| 149 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 150 | memcpy(_dev, dev, sizeof(struct stdio_dev)); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 151 | |
| 152 | return _dev; |
| 153 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 154 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 155 | int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 156 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 157 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 158 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 159 | _dev = stdio_clone(dev); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 160 | if(!_dev) |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 161 | return -ENODEV; |
Stefan Roese | 3e3c026 | 2008-09-05 10:47:46 +0200 | [diff] [blame] | 162 | list_add_tail(&(_dev->list), &(devs.list)); |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 163 | if (devp) |
| 164 | *devp = _dev; |
| 165 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 166 | return 0; |
| 167 | } |
| 168 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 169 | int stdio_register(struct stdio_dev *dev) |
| 170 | { |
| 171 | return stdio_register_dev(dev, NULL); |
| 172 | } |
| 173 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 174 | /* deregister the device "devname". |
| 175 | * returns 0 if success, -1 if device is assigned and 1 if devname not found |
| 176 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 177 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 178 | int stdio_deregister_dev(struct stdio_dev *dev, int force) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 179 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 180 | int l; |
| 181 | struct list_head *pos; |
Bradley Bolen | 03bf22f | 2011-08-22 11:48:05 +0000 | [diff] [blame] | 182 | char temp_names[3][16]; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 183 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 184 | /* get stdio devices (ListRemoveItem changes the dev list) */ |
| 185 | for (l=0 ; l< MAX_FILES; l++) { |
| 186 | if (stdio_devices[l] == dev) { |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 187 | if (force) { |
| 188 | strcpy(temp_names[l], "nulldev"); |
| 189 | continue; |
| 190 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 191 | /* Device is assigned -> report error */ |
| 192 | return -1; |
| 193 | } |
| 194 | memcpy (&temp_names[l][0], |
| 195 | stdio_devices[l]->name, |
Bradley Bolen | 03bf22f | 2011-08-22 11:48:05 +0000 | [diff] [blame] | 196 | sizeof(temp_names[l])); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 197 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 198 | |
| 199 | list_del(&(dev->list)); |
Hans de Goede | 88274b6 | 2014-09-24 14:06:09 +0200 | [diff] [blame] | 200 | free(dev); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 201 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 202 | /* reassign Device list */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 203 | list_for_each(pos, &(devs.list)) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 204 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 205 | for (l=0 ; l< MAX_FILES; l++) { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 206 | if(strcmp(dev->name, temp_names[l]) == 0) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 207 | stdio_devices[l] = dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 208 | } |
| 209 | } |
| 210 | return 0; |
| 211 | } |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 212 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 213 | int stdio_deregister(const char *devname, int force) |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 214 | { |
| 215 | struct stdio_dev *dev; |
| 216 | |
| 217 | dev = stdio_get_by_name(devname); |
| 218 | |
| 219 | if (!dev) /* device not found */ |
| 220 | return -ENODEV; |
| 221 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 222 | return stdio_deregister_dev(dev, force); |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 223 | } |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 224 | #endif /* CONFIG_SYS_STDIO_DEREGISTER */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 225 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 226 | int stdio_init_tables(void) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 227 | { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 228 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 229 | /* already relocated for current ARM implementation */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 230 | ulong relocation_offset = gd->reloc_off; |
wdenk | 3595ac4 | 2003-06-22 17:18:28 +0000 | [diff] [blame] | 231 | int i; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 232 | |
| 233 | /* relocate device name pointers */ |
| 234 | for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) { |
| 235 | stdio_names[i] = (char *) (((ulong) stdio_names[i]) + |
| 236 | relocation_offset); |
| 237 | } |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 238 | #endif /* CONFIG_NEEDS_MANUAL_RELOC */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 239 | |
| 240 | /* Initialize the list */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 241 | INIT_LIST_HEAD(&(devs.list)); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 242 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | int stdio_add_devices(void) |
| 247 | { |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 248 | #ifdef CONFIG_SYS_I2C |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 249 | i2c_init_all(); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 250 | #else |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 251 | #if defined(CONFIG_HARD_I2C) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 252 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 253 | #endif |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 254 | #endif |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 255 | #ifdef CONFIG_LCD |
| 256 | drv_lcd_init (); |
| 257 | #endif |
wdenk | a6c7ad2 | 2002-12-03 21:28:10 +0000 | [diff] [blame] | 258 | #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 259 | drv_video_init (); |
| 260 | #endif |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 261 | #ifdef CONFIG_KEYBOARD |
| 262 | drv_keyboard_init (); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 263 | #endif |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 264 | #ifdef CONFIG_LOGBUFFER |
| 265 | drv_logbuff_init (); |
| 266 | #endif |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 267 | drv_system_init (); |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 268 | serial_stdio_init (); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 269 | #ifdef CONFIG_USB_TTY |
| 270 | drv_usbtty_init (); |
| 271 | #endif |
wdenk | 68ceb29 | 2004-08-02 21:11:11 +0000 | [diff] [blame] | 272 | #ifdef CONFIG_NETCONSOLE |
| 273 | drv_nc_init (); |
| 274 | #endif |
Mike Frysinger | 36ea8e9 | 2008-10-11 21:51:20 -0400 | [diff] [blame] | 275 | #ifdef CONFIG_JTAG_CONSOLE |
| 276 | drv_jtag_console_init (); |
| 277 | #endif |
Vadim Bendebury | 98ab435 | 2012-10-12 18:48:47 +0000 | [diff] [blame] | 278 | #ifdef CONFIG_CBMEM_CONSOLE |
| 279 | cbmemc_init(); |
| 280 | #endif |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 281 | |
| 282 | return 0; |
| 283 | } |
| 284 | |
| 285 | int stdio_init(void) |
| 286 | { |
| 287 | stdio_init_tables(); |
| 288 | stdio_add_devices(); |
| 289 | |
| 290 | return 0; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 291 | } |