Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 2 | /* |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 3 | * Copyright (C) 2009 Sergey Kubushyn <ksi@koi8.net> |
| 4 | * |
| 5 | * Changes for multibus/multiadapter I2C support. |
| 6 | * |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 7 | * (C) Copyright 2000 |
| 8 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <config.h> |
| 12 | #include <common.h> |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 13 | #include <dm.h> |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 14 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.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> |
Igor Opaniuk | 5eb83c0 | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 20 | #include <splash.h> |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 21 | #include <i2c.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 22 | #include <asm/global_data.h> |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 23 | #include <dm/device-internal.h> |
| 24 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 27 | static struct stdio_dev devs; |
| 28 | struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL }; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 29 | char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" }; |
| 30 | |
Andy Shevchenko | d9b0ac9 | 2021-02-11 17:09:36 +0200 | [diff] [blame] | 31 | int stdio_file_to_flags(const int file) |
| 32 | { |
| 33 | switch (file) { |
| 34 | case stdin: |
| 35 | return DEV_FLAGS_INPUT; |
| 36 | case stdout: |
| 37 | case stderr: |
| 38 | return DEV_FLAGS_OUTPUT; |
| 39 | default: |
| 40 | return -EINVAL; |
| 41 | } |
| 42 | } |
| 43 | |
Andy Shevchenko | 99cb2b9 | 2021-02-11 17:09:35 +0200 | [diff] [blame] | 44 | #if CONFIG_IS_ENABLED(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 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 60 | |
Andy Shevchenko | 99cb2b9 | 2021-02-11 17:09:35 +0200 | [diff] [blame] | 61 | static void nulldev_register(void) |
| 62 | { |
| 63 | struct stdio_dev dev; |
| 64 | |
| 65 | memset(&dev, '\0', sizeof(dev)); |
| 66 | |
| 67 | strcpy(dev.name, "nulldev"); |
| 68 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; |
| 69 | dev.putc = nulldev_putc; |
| 70 | dev.puts = nulldev_puts; |
| 71 | dev.getc = nulldev_input; |
| 72 | dev.tstc = nulldev_input; |
| 73 | |
| 74 | stdio_register(&dev); |
| 75 | } |
| 76 | #else |
| 77 | static inline void nulldev_register(void) {} |
| 78 | #endif /* SYS_DEVICE_NULLDEV */ |
| 79 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 80 | static void stdio_serial_putc(struct stdio_dev *dev, const char c) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 81 | { |
| 82 | serial_putc(c); |
| 83 | } |
| 84 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 85 | static void stdio_serial_puts(struct stdio_dev *dev, const char *s) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 86 | { |
| 87 | serial_puts(s); |
| 88 | } |
| 89 | |
Pali Rohár | 78b5243 | 2022-09-05 11:31:19 +0200 | [diff] [blame] | 90 | #ifdef CONFIG_CONSOLE_FLUSH_SUPPORT |
| 91 | static void stdio_serial_flush(struct stdio_dev *dev) |
| 92 | { |
| 93 | serial_flush(); |
| 94 | } |
| 95 | #endif |
| 96 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 97 | static int stdio_serial_getc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 98 | { |
| 99 | return serial_getc(); |
| 100 | } |
| 101 | |
Jeroen Hofstee | 654f8d0 | 2014-10-08 22:57:44 +0200 | [diff] [blame] | 102 | static int stdio_serial_tstc(struct stdio_dev *dev) |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 103 | { |
| 104 | return serial_tstc(); |
| 105 | } |
| 106 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 107 | /************************************************************************** |
| 108 | * SYSTEM DRIVERS |
| 109 | ************************************************************************** |
| 110 | */ |
| 111 | |
| 112 | static void drv_system_init (void) |
| 113 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 114 | struct stdio_dev dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 115 | |
| 116 | memset (&dev, 0, sizeof (dev)); |
| 117 | |
| 118 | strcpy (dev.name, "serial"); |
Bin Meng | 1caf934 | 2015-11-03 23:23:37 -0800 | [diff] [blame] | 119 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 120 | dev.putc = stdio_serial_putc; |
| 121 | dev.puts = stdio_serial_puts; |
Pali Rohár | 78b5243 | 2022-09-05 11:31:19 +0200 | [diff] [blame] | 122 | STDIO_DEV_ASSIGN_FLUSH(&dev, stdio_serial_flush); |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 123 | dev.getc = stdio_serial_getc; |
| 124 | dev.tstc = stdio_serial_tstc; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 125 | stdio_register (&dev); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 126 | |
Andy Shevchenko | 99cb2b9 | 2021-02-11 17:09:35 +0200 | [diff] [blame] | 127 | nulldev_register(); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /************************************************************************** |
| 131 | * DEVICES |
| 132 | ************************************************************************** |
| 133 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 134 | struct list_head* stdio_get_list(void) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 135 | { |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 136 | return &devs.list; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 139 | /** |
| 140 | * stdio_probe_device() - Find a device which provides the given stdio device |
| 141 | * |
| 142 | * This looks for a device of the given uclass which provides a particular |
| 143 | * stdio device. It is currently really only useful for UCLASS_VIDEO. |
| 144 | * |
| 145 | * Ultimately we want to be able to probe a device by its stdio name. At |
| 146 | * present devices register in their probe function (for video devices this |
| 147 | * is done in vidconsole_post_probe()) and we don't know what name they will |
| 148 | * use until they do so. |
| 149 | * TODO(sjg@chromium.org): We should be able to determine the name before |
| 150 | * probing, and probe the required device. |
| 151 | * |
| 152 | * @name: stdio device name (e.g. "vidconsole") |
| 153 | * id: Uclass ID of device to look for (e.g. UCLASS_VIDEO) |
| 154 | * @sdevp: Returns stdout device, if found, else NULL |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 155 | * Return: 0 if found, -ENOENT if no device found with that name, other -ve |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 156 | * on other error |
| 157 | */ |
| 158 | static int stdio_probe_device(const char *name, enum uclass_id id, |
| 159 | struct stdio_dev **sdevp) |
| 160 | { |
| 161 | struct stdio_dev *sdev; |
| 162 | struct udevice *dev; |
| 163 | int seq, ret; |
| 164 | |
| 165 | *sdevp = NULL; |
| 166 | seq = trailing_strtoln(name, NULL); |
| 167 | if (seq == -1) |
Simon Glass | d844efe | 2016-11-13 14:22:00 -0700 | [diff] [blame] | 168 | seq = 0; |
| 169 | ret = uclass_get_device_by_seq(id, seq, &dev); |
| 170 | if (ret == -ENODEV) |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 171 | ret = uclass_first_device_err(id, &dev); |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 172 | if (ret) { |
| 173 | debug("No %s device for seq %d (%s)\n", uclass_get_name(id), |
| 174 | seq, name); |
| 175 | return ret; |
| 176 | } |
| 177 | /* The device should be be the last one registered */ |
| 178 | sdev = list_empty(&devs.list) ? NULL : |
| 179 | list_last_entry(&devs.list, struct stdio_dev, list); |
| 180 | if (!sdev || strcmp(sdev->name, name)) { |
| 181 | debug("Device '%s' did not register with stdio as '%s'\n", |
| 182 | dev->name, name); |
| 183 | return -ENOENT; |
| 184 | } |
| 185 | *sdevp = sdev; |
| 186 | |
| 187 | return 0; |
| 188 | } |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 189 | |
Simon Glass | ab29a34 | 2016-11-13 14:21:59 -0700 | [diff] [blame] | 190 | struct stdio_dev *stdio_get_by_name(const char *name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 191 | { |
| 192 | struct list_head *pos; |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 193 | struct stdio_dev *sdev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 194 | |
Simon Glass | ab29a34 | 2016-11-13 14:21:59 -0700 | [diff] [blame] | 195 | if (!name) |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 196 | return NULL; |
| 197 | |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 198 | list_for_each(pos, &devs.list) { |
Simon Glass | d8441ea | 2016-10-05 20:42:16 -0600 | [diff] [blame] | 199 | sdev = list_entry(pos, struct stdio_dev, list); |
| 200 | if (strcmp(sdev->name, name) == 0) |
| 201 | return sdev; |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 202 | } |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 203 | if (IS_ENABLED(CONFIG_VIDEO)) { |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 204 | /* |
| 205 | * We did not find a suitable stdio device. If there is a video |
| 206 | * driver with a name starting with 'vidconsole', we can try |
| 207 | * probing that in the hope that it will produce the required |
| 208 | * stdio device. |
| 209 | * |
| 210 | * This function is sometimes called with the entire value of |
| 211 | * 'stdout', which may include a list of devices separate by |
| 212 | * commas. Obviously this is not going to work, so we ignore |
| 213 | * that case. The call path in that case is |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 214 | * console_init_r() -> console_search_dev() -> stdio_get_by_name() |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 215 | */ |
| 216 | if (!strncmp(name, "vidconsole", 10) && !strchr(name, ',') && |
| 217 | !stdio_probe_device(name, UCLASS_VIDEO, &sdev)) |
| 218 | return sdev; |
| 219 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 220 | |
| 221 | return NULL; |
| 222 | } |
| 223 | |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 224 | struct stdio_dev *stdio_clone(struct stdio_dev *dev) |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 225 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 226 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 227 | |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 228 | if (!dev) |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 229 | return NULL; |
| 230 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 231 | _dev = calloc(1, sizeof(struct stdio_dev)); |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 232 | if (!_dev) |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 233 | return NULL; |
| 234 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 235 | memcpy(_dev, dev, sizeof(struct stdio_dev)); |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 236 | |
| 237 | return _dev; |
| 238 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 239 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 240 | int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 241 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 242 | struct stdio_dev *_dev; |
Jean-Christophe PLAGNIOL-VILLARD | 628ffd7 | 2008-09-01 17:11:26 +0200 | [diff] [blame] | 243 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 244 | _dev = stdio_clone(dev); |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 245 | if (!_dev) |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 246 | return -ENODEV; |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 247 | list_add_tail(&_dev->list, &devs.list); |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 248 | if (devp) |
| 249 | *devp = _dev; |
| 250 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 251 | return 0; |
| 252 | } |
| 253 | |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 254 | int stdio_register(struct stdio_dev *dev) |
| 255 | { |
| 256 | return stdio_register_dev(dev, NULL); |
| 257 | } |
| 258 | |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 259 | int stdio_deregister_dev(struct stdio_dev *dev, int force) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 260 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 261 | struct list_head *pos; |
Bradley Bolen | 03bf22f | 2011-08-22 11:48:05 +0000 | [diff] [blame] | 262 | char temp_names[3][16]; |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 263 | int i; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 264 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 265 | /* get stdio devices (ListRemoveItem changes the dev list) */ |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 266 | for (i = 0 ; i < MAX_FILES; i++) { |
| 267 | if (stdio_devices[i] == dev) { |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 268 | if (force) { |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 269 | strcpy(temp_names[i], "nulldev"); |
Hans de Goede | 32d0192 | 2014-09-20 16:54:37 +0200 | [diff] [blame] | 270 | continue; |
| 271 | } |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 272 | /* Device is assigned -> report error */ |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 273 | return -EBUSY; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 274 | } |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 275 | memcpy(&temp_names[i][0], stdio_devices[i]->name, |
| 276 | sizeof(temp_names[i])); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 277 | } |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 278 | |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 279 | list_del(&dev->list); |
Hans de Goede | 88274b6 | 2014-09-24 14:06:09 +0200 | [diff] [blame] | 280 | free(dev); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 281 | |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 282 | /* reassign device list */ |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 283 | list_for_each(pos, &devs.list) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 284 | dev = list_entry(pos, struct stdio_dev, list); |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 285 | for (i = 0 ; i < MAX_FILES; i++) { |
| 286 | if (strcmp(dev->name, temp_names[i]) == 0) |
| 287 | stdio_devices[i] = dev; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 288 | } |
| 289 | } |
Simon Glass | 4225f2f | 2020-08-11 11:23:41 -0600 | [diff] [blame] | 290 | |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 291 | return 0; |
| 292 | } |
Simon Glass | d97143a | 2014-07-23 06:55:05 -0600 | [diff] [blame] | 293 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 294 | int stdio_init_tables(void) |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 295 | { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 296 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 297 | /* already relocated for current ARM implementation */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 298 | ulong relocation_offset = gd->reloc_off; |
wdenk | 3595ac4 | 2003-06-22 17:18:28 +0000 | [diff] [blame] | 299 | int i; |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 300 | |
| 301 | /* relocate device name pointers */ |
| 302 | for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) { |
| 303 | stdio_names[i] = (char *) (((ulong) stdio_names[i]) + |
| 304 | relocation_offset); |
| 305 | } |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 306 | #endif /* CONFIG_NEEDS_MANUAL_RELOC */ |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 307 | |
| 308 | /* Initialize the list */ |
Simon Glass | 18c587d | 2020-08-11 11:23:40 -0600 | [diff] [blame] | 309 | INIT_LIST_HEAD(&devs.list); |
wdenk | 91d3256 | 2002-09-18 21:21:13 +0000 | [diff] [blame] | 310 | |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 311 | return 0; |
| 312 | } |
| 313 | |
| 314 | int stdio_add_devices(void) |
| 315 | { |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 316 | struct udevice *dev; |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 317 | int ret; |
| 318 | |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 319 | if (IS_ENABLED(CONFIG_DM_KEYBOARD)) { |
| 320 | /* |
| 321 | * For now we probe all the devices here. At some point this |
| 322 | * should be done only when the devices are required - e.g. we |
| 323 | * have a list of input devices to start up in the stdin |
| 324 | * environment variable. That work probably makes more sense |
| 325 | * when stdio itself is converted to driver model. |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 326 | */ |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 327 | |
| 328 | /* |
| 329 | * Don't report errors to the caller - assume that they are |
| 330 | * non-fatal |
| 331 | */ |
Michal Suchanek | 7ff1263 | 2022-10-12 21:57:55 +0200 | [diff] [blame] | 332 | for (ret = uclass_first_device_check(UCLASS_KEYBOARD, &dev); |
| 333 | dev; |
| 334 | ret = uclass_next_device_check(&dev)) { |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 335 | if (ret) |
Michal Suchanek | 7ff1263 | 2022-10-12 21:57:55 +0200 | [diff] [blame] | 336 | printf("%s: Failed to probe keyboard '%s' (ret=%d)\n", |
| 337 | __func__, dev->name, ret); |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 338 | } |
Simon Glass | b206cd7 | 2015-10-18 21:17:15 -0600 | [diff] [blame] | 339 | } |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 340 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 341 | i2c_init_all(); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 342 | #endif |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 343 | if (IS_ENABLED(CONFIG_VIDEO)) { |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 344 | /* |
| 345 | * If the console setting is not in environment variables then |
| 346 | * console_init_r() will not be calling iomux_doenv() (which |
Andy Shevchenko | 3232487 | 2020-12-21 14:30:03 +0200 | [diff] [blame] | 347 | * calls console_search_dev()). So we will not dynamically add |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 348 | * devices by calling stdio_probe_device(). |
| 349 | * |
| 350 | * So just probe all video devices now so that whichever one is |
| 351 | * required will be available. |
| 352 | */ |
| 353 | struct udevice *vdev; |
| 354 | int ret; |
Simon Glass | e3b81c1 | 2016-01-18 19:52:23 -0700 | [diff] [blame] | 355 | |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 356 | if (!IS_ENABLED(CONFIG_SYS_CONSOLE_IS_IN_ENV)) { |
Michal Suchanek | 7ff1263 | 2022-10-12 21:57:55 +0200 | [diff] [blame] | 357 | for (ret = uclass_first_device_check(UCLASS_VIDEO, |
| 358 | &vdev); |
| 359 | vdev; |
| 360 | ret = uclass_next_device_check(&vdev)) { |
| 361 | if (ret) |
| 362 | printf("%s: Failed to probe video device '%s' (ret=%d)\n", |
| 363 | __func__, vdev->name, ret); |
| 364 | } |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 365 | } |
| 366 | if (IS_ENABLED(CONFIG_SPLASH_SCREEN) && |
| 367 | IS_ENABLED(CONFIG_CMD_BMP)) |
| 368 | splash_display(); |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 369 | } |
| 370 | |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 371 | drv_system_init(); |
| 372 | serial_stdio_init(); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 373 | #ifdef CONFIG_USB_TTY |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 374 | drv_usbtty_init(); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 375 | #endif |
Loic Poulain | fc2b399 | 2021-11-25 18:16:15 +0100 | [diff] [blame] | 376 | #ifdef CONFIG_USB_FUNCTION_ACM |
| 377 | drv_usbacm_init (); |
| 378 | #endif |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 379 | if (IS_ENABLED(CONFIG_NETCONSOLE)) |
| 380 | drv_nc_init(); |
Mike Frysinger | 36ea8e9 | 2008-10-11 21:51:20 -0400 | [diff] [blame] | 381 | #ifdef CONFIG_JTAG_CONSOLE |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 382 | drv_jtag_console_init(); |
Mike Frysinger | 36ea8e9 | 2008-10-11 21:51:20 -0400 | [diff] [blame] | 383 | #endif |
Simon Glass | 5d4b6b1 | 2020-08-11 11:23:39 -0600 | [diff] [blame] | 384 | if (IS_ENABLED(CONFIG_CBMEM_CONSOLE)) |
| 385 | cbmemc_init(); |
Simon Glass | 9fb0249 | 2014-09-03 17:37:01 -0600 | [diff] [blame] | 386 | |
| 387 | return 0; |
| 388 | } |