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 | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 14 | #include <dm.h> |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 15 | #include <errno.h> |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 16 | #include <stdarg.h> |
| 17 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 18 | #include <stdio_dev.h> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 19 | #include <serial.h> |
wdenk | 7f6c2cb | 2002-11-10 22:06:23 +0000 | [diff] [blame] | 20 | #ifdef CONFIG_LOGBUFFER |
| 21 | #include <logbuff.h> |
| 22 | #endif |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 23 | |
| 24 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 25 | #include <i2c.h> |
wdenk | 7f6c2cb | 2002-11-10 22:06:23 +0000 | [diff] [blame] | 26 | #endif |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 27 | |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 28 | #include <dm/device-internal.h> |
| 29 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 32 | static struct stdio_dev devs; |
| 33 | struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL }; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 34 | char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" }; |
| 35 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 36 | #if defined(CONFIG_SPLASH_SCREEN) && !defined(CONFIG_SYS_DEVICE_NULLDEV) |
| 37 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 38 | #endif |
| 39 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 40 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
| 41 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
| 42 | #endif |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 43 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 44 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 45 | static void nulldev_putc(struct stdio_dev *dev, const char c) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 46 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 47 | /* nulldev is empty! */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 50 | static void nulldev_puts(struct stdio_dev *dev, const char *s) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 51 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 52 | /* nulldev is empty! */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 55 | static int nulldev_input(struct stdio_dev *dev) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 56 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 57 | /* nulldev is empty! */ |
| 58 | return 0; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 59 | } |
| 60 | #endif |
| 61 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 62 | static void stdio_serial_putc(struct stdio_dev *dev, const char c) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 63 | { |
| 64 | serial_putc(c); |
| 65 | } |
| 66 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 67 | static void stdio_serial_puts(struct stdio_dev *dev, const char *s) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 68 | { |
| 69 | serial_puts(s); |
| 70 | } |
| 71 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 72 | static int stdio_serial_getc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 73 | { |
| 74 | return serial_getc(); |
| 75 | } |
| 76 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 77 | static int stdio_serial_tstc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 78 | { |
| 79 | return serial_tstc(); |
| 80 | } |
| 81 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 82 | /************************************************************************** |
| 83 | * SYSTEM DRIVERS |
| 84 | ************************************************************************** |
| 85 | */ |
| 86 | |
| 87 | static void drv_system_init (void) |
| 88 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 89 | struct stdio_dev dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 90 | |
| 91 | memset (&dev, 0, sizeof (dev)); |
| 92 | |
| 93 | strcpy (dev.name, "serial"); |
Bin Meng | 1caf934 | 2015-11-03 23:23:37 -0800 | [diff] [blame] | 94 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 95 | dev.putc = stdio_serial_putc; |
| 96 | dev.puts = stdio_serial_puts; |
| 97 | dev.getc = stdio_serial_getc; |
| 98 | dev.tstc = stdio_serial_tstc; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 99 | stdio_register (&dev); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 100 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 102 | memset (&dev, 0, sizeof (dev)); |
| 103 | |
| 104 | strcpy (dev.name, "nulldev"); |
Bin Meng | 1caf934 | 2015-11-03 23:23:37 -0800 | [diff] [blame] | 105 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 106 | dev.putc = nulldev_putc; |
| 107 | dev.puts = nulldev_puts; |
| 108 | dev.getc = nulldev_input; |
| 109 | dev.tstc = nulldev_input; |
| 110 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 111 | stdio_register (&dev); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 112 | #endif |
| 113 | } |
| 114 | |
| 115 | /************************************************************************** |
| 116 | * DEVICES |
| 117 | ************************************************************************** |
| 118 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 119 | struct list_head* stdio_get_list(void) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 120 | { |
| 121 | return &(devs.list); |
| 122 | } |
| 123 | |
Mike Frysinger | d7be305 | 2010-10-20 07:18:03 -0400 | [diff] [blame] | 124 | struct stdio_dev* stdio_get_by_name(const char *name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 125 | { |
| 126 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 127 | struct stdio_dev *dev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 128 | |
| 129 | if(!name) |
| 130 | return NULL; |
| 131 | |
| 132 | list_for_each(pos, &(devs.list)) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 133 | dev = list_entry(pos, struct stdio_dev, list); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 134 | if(strcmp(dev->name, name) == 0) |
| 135 | return dev; |
| 136 | } |
| 137 | |
| 138 | return NULL; |
| 139 | } |
| 140 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 141 | struct stdio_dev* stdio_clone(struct stdio_dev *dev) |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 142 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 143 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 144 | |
| 145 | if(!dev) |
| 146 | return NULL; |
| 147 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 148 | _dev = calloc(1, sizeof(struct stdio_dev)); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 149 | |
| 150 | if(!_dev) |
| 151 | return NULL; |
| 152 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 153 | memcpy(_dev, dev, sizeof(struct stdio_dev)); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 154 | |
| 155 | return _dev; |
| 156 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 157 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 158 | int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 159 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 160 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 161 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 162 | _dev = stdio_clone(dev); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 163 | if(!_dev) |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 164 | return -ENODEV; |
Stefan Roese | 3e3c026 | 2008-09-05 10:47:46 +0200 | [diff] [blame] | 165 | list_add_tail(&(_dev->list), &(devs.list)); |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 166 | if (devp) |
| 167 | *devp = _dev; |
| 168 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 172 | int stdio_register(struct stdio_dev *dev) |
| 173 | { |
| 174 | return stdio_register_dev(dev, NULL); |
| 175 | } |
| 176 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 177 | /* deregister the device "devname". |
| 178 | * returns 0 if success, -1 if device is assigned and 1 if devname not found |
| 179 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 180 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 181 | int stdio_deregister_dev(struct stdio_dev *dev, int force) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 182 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 183 | int l; |
| 184 | struct list_head *pos; |
Bradley Bolen | 03bf22f | 2011-08-22 11:48:05 +0000 | [diff] [blame] | 185 | char temp_names[3][16]; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 186 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 187 | /* get stdio devices (ListRemoveItem changes the dev list) */ |
| 188 | for (l=0 ; l< MAX_FILES; l++) { |
| 189 | if (stdio_devices[l] == dev) { |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 190 | if (force) { |
| 191 | strcpy(temp_names[l], "nulldev"); |
| 192 | continue; |
| 193 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 194 | /* Device is assigned -> report error */ |
| 195 | return -1; |
| 196 | } |
| 197 | memcpy (&temp_names[l][0], |
| 198 | stdio_devices[l]->name, |
Bradley Bolen | 03bf22f | 2011-08-22 11:48:05 +0000 | [diff] [blame] | 199 | sizeof(temp_names[l])); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 200 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 201 | |
| 202 | list_del(&(dev->list)); |
Hans de Goede | 88274b6 | 2014-09-24 14:06:09 +0200 | [diff] [blame] | 203 | free(dev); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 204 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 205 | /* reassign Device list */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 206 | list_for_each(pos, &(devs.list)) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 207 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 208 | for (l=0 ; l< MAX_FILES; l++) { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 209 | if(strcmp(dev->name, temp_names[l]) == 0) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 210 | stdio_devices[l] = dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | return 0; |
| 214 | } |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 215 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 216 | int stdio_deregister(const char *devname, int force) |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 217 | { |
| 218 | struct stdio_dev *dev; |
| 219 | |
| 220 | dev = stdio_get_by_name(devname); |
| 221 | |
| 222 | if (!dev) /* device not found */ |
| 223 | return -ENODEV; |
| 224 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 225 | return stdio_deregister_dev(dev, force); |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 226 | } |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 227 | #endif /* CONFIG_SYS_STDIO_DEREGISTER */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 228 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 229 | int stdio_init_tables(void) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 230 | { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 231 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 232 | /* already relocated for current ARM implementation */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 233 | ulong relocation_offset = gd->reloc_off; |
wdenk | 3595ac4 | 2003-06-22 17:18:28 +0000 | [diff] [blame] | 234 | int i; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 235 | |
| 236 | /* relocate device name pointers */ |
| 237 | for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) { |
| 238 | stdio_names[i] = (char *) (((ulong) stdio_names[i]) + |
| 239 | relocation_offset); |
| 240 | } |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 241 | #endif /* CONFIG_NEEDS_MANUAL_RELOC */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 242 | |
| 243 | /* Initialize the list */ |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 244 | INIT_LIST_HEAD(&(devs.list)); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 245 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 246 | return 0; |
| 247 | } |
| 248 | |
| 249 | int stdio_add_devices(void) |
| 250 | { |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 251 | #ifdef CONFIG_DM_KEYBOARD |
| 252 | struct udevice *dev; |
| 253 | struct uclass *uc; |
| 254 | int ret; |
| 255 | |
| 256 | /* |
| 257 | * For now we probe all the devices here. At some point this should be |
| 258 | * done only when the devices are required - e.g. we have a list of |
| 259 | * input devices to start up in the stdin environment variable. That |
| 260 | * work probably makes more sense when stdio itself is converted to |
| 261 | * driver model. |
| 262 | * |
| 263 | * TODO(sjg@chromium.org): Convert changing uclass_first_device() etc. |
| 264 | * to return the device even on error. Then we could use that here. |
| 265 | */ |
| 266 | ret = uclass_get(UCLASS_KEYBOARD, &uc); |
| 267 | if (ret) |
| 268 | return ret; |
| 269 | |
| 270 | /* Don't report errors to the caller - assume that they are non-fatal */ |
| 271 | uclass_foreach_dev(dev, uc) { |
| 272 | ret = device_probe(dev); |
| 273 | if (ret) |
| 274 | printf("Failed to probe keyboard '%s'\n", dev->name); |
| 275 | } |
| 276 | #endif |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 277 | #ifdef CONFIG_SYS_I2C |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 278 | i2c_init_all(); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 279 | #else |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 280 | #if defined(CONFIG_HARD_I2C) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 281 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 282 | #endif |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 283 | #endif |
Simon Glass | e3b81c1 | 2016-01-18 19:52:23 -0700 | [diff] [blame] | 284 | #ifdef CONFIG_DM_VIDEO |
| 285 | struct udevice *vdev; |
| 286 | |
| 287 | for (ret = uclass_first_device(UCLASS_VIDEO, &vdev); |
| 288 | vdev; |
| 289 | ret = uclass_next_device(&vdev)) |
| 290 | ; |
| 291 | if (ret) |
| 292 | printf("%s: Video device failed (ret=%d)\n", __func__, ret); |
| 293 | #else |
| 294 | # if defined(CONFIG_LCD) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 295 | drv_lcd_init (); |
Simon Glass | e3b81c1 | 2016-01-18 19:52:23 -0700 | [diff] [blame] | 296 | # endif |
| 297 | # if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 298 | drv_video_init (); |
Simon Glass | e3b81c1 | 2016-01-18 19:52:23 -0700 | [diff] [blame] | 299 | # endif |
| 300 | #endif /* CONFIG_DM_VIDEO */ |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 301 | #if defined(CONFIG_KEYBOARD) && !defined(CONFIG_DM_KEYBOARD) |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 302 | drv_keyboard_init (); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 303 | #endif |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 304 | #ifdef CONFIG_LOGBUFFER |
| 305 | drv_logbuff_init (); |
| 306 | #endif |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 307 | drv_system_init (); |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 308 | serial_stdio_init (); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 309 | #ifdef CONFIG_USB_TTY |
| 310 | drv_usbtty_init (); |
| 311 | #endif |
wdenk | 68ceb29 | 2004-08-02 21:11:11 +0000 | [diff] [blame] | 312 | #ifdef CONFIG_NETCONSOLE |
| 313 | drv_nc_init (); |
| 314 | #endif |
Mike Frysinger | 36ea8e9 | 2008-10-11 21:51:20 -0400 | [diff] [blame] | 315 | #ifdef CONFIG_JTAG_CONSOLE |
| 316 | drv_jtag_console_init (); |
| 317 | #endif |
Vadim Bendebury | 98ab435 | 2012-10-12 18:48:47 +0000 | [diff] [blame] | 318 | #ifdef CONFIG_CBMEM_CONSOLE |
| 319 | cbmemc_init(); |
| 320 | #endif |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | int stdio_init(void) |
| 326 | { |
| 327 | stdio_init_tables(); |
| 328 | stdio_add_devices(); |
| 329 | |
| 330 | return 0; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 331 | } |