2 * Copyright (C) 2009 Sergey Kubushyn <ksi@koi8.net>
4 * Changes for multibus/multiadapter I2C support.
7 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
9 * SPDX-License-Identifier: GPL-2.0+
18 #include <stdio_dev.h>
20 #ifdef CONFIG_LOGBUFFER
24 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
28 #include <dm/device-internal.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 static struct stdio_dev devs;
33 struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL };
34 char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" };
36 #if defined(CONFIG_SPLASH_SCREEN) && !defined(CONFIG_SYS_DEVICE_NULLDEV)
37 #define CONFIG_SYS_DEVICE_NULLDEV 1
40 #if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
41 #define CONFIG_SYS_DEVICE_NULLDEV 1
44 #ifdef CONFIG_SYS_DEVICE_NULLDEV
45 static void nulldev_putc(struct stdio_dev *dev, const char c)
47 /* nulldev is empty! */
50 static void nulldev_puts(struct stdio_dev *dev, const char *s)
52 /* nulldev is empty! */
55 static int nulldev_input(struct stdio_dev *dev)
57 /* nulldev is empty! */
62 static void stdio_serial_putc(struct stdio_dev *dev, const char c)
67 static void stdio_serial_puts(struct stdio_dev *dev, const char *s)
72 static int stdio_serial_getc(struct stdio_dev *dev)
77 static int stdio_serial_tstc(struct stdio_dev *dev)
82 /**************************************************************************
84 **************************************************************************
87 static void drv_system_init (void)
91 memset (&dev, 0, sizeof (dev));
93 strcpy (dev.name, "serial");
94 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
95 dev.putc = stdio_serial_putc;
96 dev.puts = stdio_serial_puts;
97 dev.getc = stdio_serial_getc;
98 dev.tstc = stdio_serial_tstc;
99 stdio_register (&dev);
101 #ifdef CONFIG_SYS_DEVICE_NULLDEV
102 memset (&dev, 0, sizeof (dev));
104 strcpy (dev.name, "nulldev");
105 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
106 dev.putc = nulldev_putc;
107 dev.puts = nulldev_puts;
108 dev.getc = nulldev_input;
109 dev.tstc = nulldev_input;
111 stdio_register (&dev);
115 /**************************************************************************
117 **************************************************************************
119 struct list_head* stdio_get_list(void)
124 #ifdef CONFIG_DM_VIDEO
126 * stdio_probe_device() - Find a device which provides the given stdio device
128 * This looks for a device of the given uclass which provides a particular
129 * stdio device. It is currently really only useful for UCLASS_VIDEO.
131 * Ultimately we want to be able to probe a device by its stdio name. At
132 * present devices register in their probe function (for video devices this
133 * is done in vidconsole_post_probe()) and we don't know what name they will
134 * use until they do so.
135 * TODO(sjg@chromium.org): We should be able to determine the name before
136 * probing, and probe the required device.
138 * @name: stdio device name (e.g. "vidconsole")
139 * id: Uclass ID of device to look for (e.g. UCLASS_VIDEO)
140 * @sdevp: Returns stdout device, if found, else NULL
141 * @return 0 if found, -ENOENT if no device found with that name, other -ve
144 static int stdio_probe_device(const char *name, enum uclass_id id,
145 struct stdio_dev **sdevp)
147 struct stdio_dev *sdev;
152 seq = trailing_strtoln(name, NULL);
154 ret = uclass_first_device_err(id, &dev);
156 ret = uclass_get_device_by_seq(id, seq, &dev);
158 debug("No %s device for seq %d (%s)\n", uclass_get_name(id),
162 /* The device should be be the last one registered */
163 sdev = list_empty(&devs.list) ? NULL :
164 list_last_entry(&devs.list, struct stdio_dev, list);
165 if (!sdev || strcmp(sdev->name, name)) {
166 debug("Device '%s' did not register with stdio as '%s'\n",
176 struct stdio_dev* stdio_get_by_name(const char *name)
178 struct list_head *pos;
179 struct stdio_dev *sdev;
184 list_for_each(pos, &(devs.list)) {
185 sdev = list_entry(pos, struct stdio_dev, list);
186 if (strcmp(sdev->name, name) == 0)
189 #ifdef CONFIG_DM_VIDEO
191 * We did not find a suitable stdio device. If there is a video
192 * driver with a name starting with 'vidconsole', we can try probing
193 * that in the hope that it will produce the required stdio device.
195 * This function is sometimes called with the entire value of
196 * 'stdout', which may include a list of devices separate by commas.
197 * Obviously this is not going to work, so we ignore that case. The
198 * call path in that case is console_init_r() -> search_device() ->
199 * stdio_get_by_name().
201 if (!strncmp(name, "vidconsole", 10) && !strchr(name, ',') &&
202 !stdio_probe_device(name, UCLASS_VIDEO, &sdev))
209 struct stdio_dev* stdio_clone(struct stdio_dev *dev)
211 struct stdio_dev *_dev;
216 _dev = calloc(1, sizeof(struct stdio_dev));
221 memcpy(_dev, dev, sizeof(struct stdio_dev));
226 int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp)
228 struct stdio_dev *_dev;
230 _dev = stdio_clone(dev);
233 list_add_tail(&(_dev->list), &(devs.list));
240 int stdio_register(struct stdio_dev *dev)
242 return stdio_register_dev(dev, NULL);
245 /* deregister the device "devname".
246 * returns 0 if success, -1 if device is assigned and 1 if devname not found
248 #if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
249 int stdio_deregister_dev(struct stdio_dev *dev, int force)
252 struct list_head *pos;
253 char temp_names[3][16];
255 /* get stdio devices (ListRemoveItem changes the dev list) */
256 for (l=0 ; l< MAX_FILES; l++) {
257 if (stdio_devices[l] == dev) {
259 strcpy(temp_names[l], "nulldev");
262 /* Device is assigned -> report error */
265 memcpy (&temp_names[l][0],
266 stdio_devices[l]->name,
267 sizeof(temp_names[l]));
270 list_del(&(dev->list));
273 /* reassign Device list */
274 list_for_each(pos, &(devs.list)) {
275 dev = list_entry(pos, struct stdio_dev, list);
276 for (l=0 ; l< MAX_FILES; l++) {
277 if(strcmp(dev->name, temp_names[l]) == 0)
278 stdio_devices[l] = dev;
284 int stdio_deregister(const char *devname, int force)
286 struct stdio_dev *dev;
288 dev = stdio_get_by_name(devname);
290 if (!dev) /* device not found */
293 return stdio_deregister_dev(dev, force);
295 #endif /* CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER) */
297 int stdio_init_tables(void)
299 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
300 /* already relocated for current ARM implementation */
301 ulong relocation_offset = gd->reloc_off;
304 /* relocate device name pointers */
305 for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) {
306 stdio_names[i] = (char *) (((ulong) stdio_names[i]) +
309 #endif /* CONFIG_NEEDS_MANUAL_RELOC */
311 /* Initialize the list */
312 INIT_LIST_HEAD(&(devs.list));
317 int stdio_add_devices(void)
319 #ifdef CONFIG_DM_KEYBOARD
325 * For now we probe all the devices here. At some point this should be
326 * done only when the devices are required - e.g. we have a list of
327 * input devices to start up in the stdin environment variable. That
328 * work probably makes more sense when stdio itself is converted to
331 * TODO(sjg@chromium.org): Convert changing uclass_first_device() etc.
332 * to return the device even on error. Then we could use that here.
334 ret = uclass_get(UCLASS_KEYBOARD, &uc);
338 /* Don't report errors to the caller - assume that they are non-fatal */
339 uclass_foreach_dev(dev, uc) {
340 ret = device_probe(dev);
342 printf("Failed to probe keyboard '%s'\n", dev->name);
345 #ifdef CONFIG_SYS_I2C
348 #if defined(CONFIG_HARD_I2C)
349 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
352 #ifdef CONFIG_DM_VIDEO
354 * If the console setting is not in environment variables then
355 * console_init_r() will not be calling iomux_doenv() (which calls
356 * search_device()). So we will not dynamically add devices by
357 * calling stdio_probe_device().
359 * So just probe all video devices now so that whichever one is
360 * required will be available.
362 #ifndef CONFIG_SYS_CONSOLE_IS_IN_ENV
363 struct udevice *vdev;
364 # ifndef CONFIG_DM_KEYBOARD
368 for (ret = uclass_first_device(UCLASS_VIDEO, &vdev);
370 ret = uclass_next_device(&vdev))
373 printf("%s: Video device failed (ret=%d)\n", __func__, ret);
374 #endif /* !CONFIG_SYS_CONSOLE_IS_IN_ENV */
376 # if defined(CONFIG_LCD)
379 # if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
382 #endif /* CONFIG_DM_VIDEO */
383 #if defined(CONFIG_KEYBOARD) && !defined(CONFIG_DM_KEYBOARD)
384 drv_keyboard_init ();
386 #ifdef CONFIG_LOGBUFFER
390 serial_stdio_init ();
391 #ifdef CONFIG_USB_TTY
394 #ifdef CONFIG_NETCONSOLE
397 #ifdef CONFIG_JTAG_CONSOLE
398 drv_jtag_console_init ();
400 #ifdef CONFIG_CBMEM_CONSOLE