1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2014 The Chromium OS Authors.
8 #include <environment.h>
12 #include <stdio_dev.h>
15 #include <dm/device-internal.h>
16 #include <dm/of_access.h>
18 DECLARE_GLOBAL_DATA_PTR;
21 * Table with supported baudrates (defined in config_xyz.h)
23 static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
25 #if !CONFIG_VAL(SYS_MALLOC_F_LEN)
26 #error "Serial is required before relocation - define CONFIG_$(SPL_)SYS_MALLOC_F_LEN to make this work"
29 static int serial_check_stdout(const void *blob, struct udevice **devp)
33 /* Check for a chosen console */
34 node = fdtdec_get_chosen_node(blob, "stdout-path");
36 const char *str, *p, *name;
39 * Deal with things like
40 * stdout-path = "serial0:115200n8";
42 * We need to look up the alias and then follow it to the
45 str = fdtdec_get_chosen_prop(blob, "stdout-path");
48 name = fdt_get_alias_namelen(blob, str,
49 p ? p - str : strlen(str));
51 node = fdt_path_offset(blob, name);
55 node = fdt_path_offset(blob, "console");
56 if (!uclass_get_device_by_of_offset(UCLASS_SERIAL, node, devp))
60 * If the console is not marked to be bound before relocation, bind it
63 if (node > 0 && !lists_bind_fdt(gd->dm_root, offset_to_ofnode(node),
65 if (!device_probe(*devp))
72 static void serial_find_console_or_panic(void)
74 const void *blob = gd->fdt_blob;
76 #ifdef CONFIG_SERIAL_SEARCH_ALL
80 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
81 uclass_first_device(UCLASS_SERIAL, &dev);
83 gd->cur_serial_dev = dev;
86 } else if (CONFIG_IS_ENABLED(OF_CONTROL) && blob) {
87 /* Live tree has support for stdout */
88 if (of_live_active()) {
89 struct device_node *np = of_get_stdout();
91 if (np && !uclass_get_device_by_ofnode(UCLASS_SERIAL,
92 np_to_ofnode(np), &dev)) {
93 gd->cur_serial_dev = dev;
97 if (!serial_check_stdout(blob, &dev)) {
98 gd->cur_serial_dev = dev;
103 if (!SPL_BUILD || !CONFIG_IS_ENABLED(OF_CONTROL) || !blob) {
105 * Try to use CONFIG_CONS_INDEX if available (it is numbered
108 * Failing that, get the device with sequence number 0, or in
109 * extremis just the first working serial device we can find.
110 * But we insist on having a console (even if it is silent).
112 #ifdef CONFIG_CONS_INDEX
113 #define INDEX (CONFIG_CONS_INDEX - 1)
118 #ifdef CONFIG_SERIAL_SEARCH_ALL
119 if (!uclass_get_device_by_seq(UCLASS_SERIAL, INDEX, &dev) ||
120 !uclass_get_device(UCLASS_SERIAL, INDEX, &dev)) {
121 if (dev->flags & DM_FLAG_ACTIVATED) {
122 gd->cur_serial_dev = dev;
127 /* Search for any working device */
128 for (ret = uclass_first_device_check(UCLASS_SERIAL, &dev);
130 ret = uclass_next_device_check(&dev)) {
132 /* Device did succeed probing */
133 gd->cur_serial_dev = dev;
138 if (!uclass_get_device_by_seq(UCLASS_SERIAL, INDEX, &dev) ||
139 !uclass_get_device(UCLASS_SERIAL, INDEX, &dev) ||
140 (!uclass_first_device(UCLASS_SERIAL, &dev) && dev)) {
141 gd->cur_serial_dev = dev;
149 #ifdef CONFIG_REQUIRE_SERIAL_CONSOLE
150 panic_str("No serial driver found");
154 /* Called prior to relocation */
155 int serial_init(void)
157 serial_find_console_or_panic();
158 gd->flags |= GD_FLG_SERIAL_READY;
163 /* Called after relocation */
164 void serial_initialize(void)
169 static void _serial_putc(struct udevice *dev, char ch)
171 struct dm_serial_ops *ops = serial_get_ops(dev);
175 _serial_putc(dev, '\r');
178 err = ops->putc(dev, ch);
179 } while (err == -EAGAIN);
182 static void _serial_puts(struct udevice *dev, const char *str)
185 _serial_putc(dev, *str++);
188 static int __serial_getc(struct udevice *dev)
190 struct dm_serial_ops *ops = serial_get_ops(dev);
194 err = ops->getc(dev);
197 } while (err == -EAGAIN);
199 return err >= 0 ? err : 0;
202 static int __serial_tstc(struct udevice *dev)
204 struct dm_serial_ops *ops = serial_get_ops(dev);
207 return ops->pending(dev, true);
212 #if CONFIG_IS_ENABLED(SERIAL_RX_BUFFER)
213 static int _serial_tstc(struct udevice *dev)
215 struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
217 /* Read all available chars into the RX buffer */
218 while (__serial_tstc(dev)) {
219 upriv->buf[upriv->wr_ptr++] = __serial_getc(dev);
220 upriv->wr_ptr %= CONFIG_SERIAL_RX_BUFFER_SIZE;
223 return upriv->rd_ptr != upriv->wr_ptr ? 1 : 0;
226 static int _serial_getc(struct udevice *dev)
228 struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
231 val = upriv->buf[upriv->rd_ptr++];
232 upriv->rd_ptr %= CONFIG_SERIAL_RX_BUFFER_SIZE;
237 #else /* CONFIG_IS_ENABLED(SERIAL_RX_BUFFER) */
239 static int _serial_getc(struct udevice *dev)
241 return __serial_getc(dev);
244 static int _serial_tstc(struct udevice *dev)
246 return __serial_tstc(dev);
248 #endif /* CONFIG_IS_ENABLED(SERIAL_RX_BUFFER) */
250 void serial_putc(char ch)
252 if (gd->cur_serial_dev)
253 _serial_putc(gd->cur_serial_dev, ch);
256 void serial_puts(const char *str)
258 if (gd->cur_serial_dev)
259 _serial_puts(gd->cur_serial_dev, str);
262 int serial_getc(void)
264 if (!gd->cur_serial_dev)
267 return _serial_getc(gd->cur_serial_dev);
270 int serial_tstc(void)
272 if (!gd->cur_serial_dev)
275 return _serial_tstc(gd->cur_serial_dev);
278 void serial_setbrg(void)
280 struct dm_serial_ops *ops;
282 if (!gd->cur_serial_dev)
285 ops = serial_get_ops(gd->cur_serial_dev);
287 ops->setbrg(gd->cur_serial_dev, gd->baudrate);
290 void serial_stdio_init(void)
294 #if defined(CONFIG_DM_STDIO)
296 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
297 static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
299 _serial_putc(sdev->priv, ch);
303 static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
305 _serial_puts(sdev->priv, str);
308 static int serial_stub_getc(struct stdio_dev *sdev)
310 return _serial_getc(sdev->priv);
313 static int serial_stub_tstc(struct stdio_dev *sdev)
315 return _serial_tstc(sdev->priv);
320 * on_baudrate() - Update the actual baudrate when the env var changes
322 * This will check for a valid baudrate and only apply it if valid.
324 static int on_baudrate(const char *name, const char *value, enum env_op op,
332 case env_op_overwrite:
334 * Switch to new baudrate if new baudrate is supported
336 baudrate = simple_strtoul(value, NULL, 10);
338 /* Not actually changing */
339 if (gd->baudrate == baudrate)
342 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
343 if (baudrate == baudrate_table[i])
346 if (i == ARRAY_SIZE(baudrate_table)) {
347 if ((flags & H_FORCE) == 0)
348 printf("## Baudrate %d bps not supported\n",
352 if ((flags & H_INTERACTIVE) != 0) {
353 printf("## Switch baudrate to %d bps and press ENTER ...\n",
358 gd->baudrate = baudrate;
364 if ((flags & H_INTERACTIVE) != 0)
372 printf("## Baudrate may not be deleted\n");
378 U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
380 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
381 static int serial_post_probe(struct udevice *dev)
383 struct dm_serial_ops *ops = serial_get_ops(dev);
384 #ifdef CONFIG_DM_STDIO
385 struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
386 struct stdio_dev sdev;
390 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
392 ops->setbrg += gd->reloc_off;
394 ops->getc += gd->reloc_off;
396 ops->putc += gd->reloc_off;
398 ops->pending += gd->reloc_off;
400 ops->clear += gd->reloc_off;
401 #if CONFIG_POST & CONFIG_SYS_POST_UART
403 ops->loop += gd->reloc_off
406 /* Set the baud rate */
408 ret = ops->setbrg(dev, gd->baudrate);
413 #ifdef CONFIG_DM_STDIO
414 if (!(gd->flags & GD_FLG_RELOC))
416 memset(&sdev, '\0', sizeof(sdev));
418 strncpy(sdev.name, dev->name, sizeof(sdev.name));
419 sdev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_DM;
421 sdev.putc = serial_stub_putc;
422 sdev.puts = serial_stub_puts;
423 sdev.getc = serial_stub_getc;
424 sdev.tstc = serial_stub_tstc;
426 #if CONFIG_IS_ENABLED(SERIAL_RX_BUFFER)
427 /* Allocate the RX buffer */
428 upriv->buf = malloc(CONFIG_SERIAL_RX_BUFFER_SIZE);
431 stdio_register_dev(&sdev, &upriv->sdev);
436 static int serial_pre_remove(struct udevice *dev)
438 #if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
439 struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
441 if (stdio_deregister_dev(upriv->sdev, true))
448 UCLASS_DRIVER(serial) = {
451 .flags = DM_UC_FLAG_SEQ_ALIAS,
452 .post_probe = serial_post_probe,
453 .pre_remove = serial_pre_remove,
454 .per_device_auto_alloc_size = sizeof(struct serial_dev_priv),