blob: dea25a049c88fedadf57f605175a2c20ec266fa8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk281e00a2004-08-01 22:48:16 +00002/*
3 * (C) Copyright 2004
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk281e00a2004-08-01 22:48:16 +00005 */
6
7#include <common.h>
Simon Glassf3998fd2019-08-02 09:44:25 -06008#include <env_internal.h>
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
wdenk281e00a2004-08-01 22:48:16 +000010#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020011#include <stdio_dev.h>
Mike Frysinger7b826c22011-05-14 06:56:15 +000012#include <post.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Mike Frysinger7b826c22011-05-14 06:56:15 +000014#include <linux/compiler.h>
Marek Vasut6d93e252012-10-06 14:07:03 +000015#include <errno.h>
Simon Glassc05ed002020-05-10 11:40:11 -060016#include <linux/delay.h>
wdenk281e00a2004-08-01 22:48:16 +000017
Wolfgang Denkd87080b2006-03-31 18:32:53 +020018DECLARE_GLOBAL_DATA_PTR;
19
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000020static struct serial_device *serial_devices;
21static struct serial_device *serial_current;
Joe Hershberger32057712012-12-11 22:16:27 -060022/*
23 * Table with supported baudrates (defined in config_xyz.h)
24 */
25static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenk281e00a2004-08-01 22:48:16 +000026
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000027/**
28 * serial_null() - Void registration routine of a serial driver
29 *
30 * This routine implements a void registration routine of a serial
31 * driver. The registration routine of a particular driver is aliased
32 * to this empty function in case the driver is not compiled into
33 * U-Boot.
34 */
Marek Vasut2a333ae2012-09-12 17:49:58 +020035static void serial_null(void)
36{
37}
38
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000039/**
Joe Hershberger32057712012-12-11 22:16:27 -060040 * on_baudrate() - Update the actual baudrate when the env var changes
41 *
Heinrich Schuchardt938b05a2018-07-29 10:41:02 +020042 * @name: changed environment variable
43 * @value: new value of the environment variable
44 * @op: operation (create, overwrite, or delete)
45 * @flags: attributes of environment variable change,
46 * see flags H_* in include/search.h
47 *
Joe Hershberger32057712012-12-11 22:16:27 -060048 * This will check for a valid baudrate and only apply it if valid.
Heinrich Schuchardt938b05a2018-07-29 10:41:02 +020049 *
50 * Return: 0 on success, 1 on error
Joe Hershberger32057712012-12-11 22:16:27 -060051 */
52static int on_baudrate(const char *name, const char *value, enum env_op op,
53 int flags)
54{
55 int i;
56 int baudrate;
57
58 switch (op) {
59 case env_op_create:
60 case env_op_overwrite:
61 /*
62 * Switch to new baudrate if new baudrate is supported
63 */
64 baudrate = simple_strtoul(value, NULL, 10);
65
66 /* Not actually changing */
67 if (gd->baudrate == baudrate)
68 return 0;
69
Axel Lin99351752013-06-23 00:46:41 +080070 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
Joe Hershberger32057712012-12-11 22:16:27 -060071 if (baudrate == baudrate_table[i])
72 break;
73 }
Axel Lin99351752013-06-23 00:46:41 +080074 if (i == ARRAY_SIZE(baudrate_table)) {
Joe Hershberger32057712012-12-11 22:16:27 -060075 if ((flags & H_FORCE) == 0)
76 printf("## Baudrate %d bps not supported\n",
77 baudrate);
78 return 1;
79 }
80 if ((flags & H_INTERACTIVE) != 0) {
81 printf("## Switch baudrate to %d"
82 " bps and press ENTER ...\n", baudrate);
83 udelay(50000);
84 }
85
86 gd->baudrate = baudrate;
Joe Hershberger32057712012-12-11 22:16:27 -060087
88 serial_setbrg();
89
90 udelay(50000);
91
92 if ((flags & H_INTERACTIVE) != 0)
93 while (1) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +020094 if (getchar() == '\r')
Joe Hershberger32057712012-12-11 22:16:27 -060095 break;
96 }
97
98 return 0;
99 case env_op_delete:
100 printf("## Baudrate may not be deleted\n");
101 return 1;
102 default:
103 return 0;
104 }
105}
106U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
107
108/**
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000109 * serial_initfunc() - Forward declare of driver registration routine
110 * @name: Name of the real driver registration routine.
111 *
112 * This macro expands onto forward declaration of a driver registration
113 * routine, which is then used below in serial_initialize() function.
114 * The declaration is made weak and aliases to serial_null() so in case
115 * the driver is not compiled in, the function is still declared and can
116 * be used, but aliases to serial_null() and thus is optimized away.
117 */
Marek Vasut2a333ae2012-09-12 17:49:58 +0200118#define serial_initfunc(name) \
119 void name(void) \
120 __attribute__((weak, alias("serial_null")));
121
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100122serial_initfunc(atmel_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100123serial_initfunc(mcf_serial_initialize);
Marek Vasut7a311542012-09-13 01:38:52 +0200124serial_initfunc(mpc85xx_serial_initialize);
Marek Vasuta9434722012-09-14 22:37:43 +0200125serial_initfunc(mxc_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100126serial_initfunc(ns16550_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100127serial_initfunc(pl01x_serial_initialize);
128serial_initfunc(pxa_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100129serial_initfunc(sh_serial_initialize);
Weijie Gao44fa6762019-09-25 17:45:18 +0800130serial_initfunc(mtk_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200131
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000132/**
133 * serial_register() - Register serial driver with serial driver core
134 * @dev: Pointer to the serial driver structure
135 *
136 * This function registers the serial driver supplied via @dev with
137 * serial driver core, thus making U-Boot aware of it and making it
138 * available for U-Boot to use. On platforms that still require manual
139 * relocation of constant variables, relocation of the supplied structure
140 * is performed.
141 */
Mike Frysingerc52b4f72011-04-29 18:03:30 +0000142void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +0000143{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200144#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutf2760c42012-09-16 18:54:22 +0200145 if (dev->start)
146 dev->start += gd->reloc_off;
147 if (dev->stop)
148 dev->stop += gd->reloc_off;
149 if (dev->setbrg)
150 dev->setbrg += gd->reloc_off;
151 if (dev->getc)
152 dev->getc += gd->reloc_off;
153 if (dev->tstc)
154 dev->tstc += gd->reloc_off;
155 if (dev->putc)
156 dev->putc += gd->reloc_off;
157 if (dev->puts)
158 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500159#endif
wdenk281e00a2004-08-01 22:48:16 +0000160
161 dev->next = serial_devices;
162 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +0000163}
164
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000165/**
166 * serial_initialize() - Register all compiled-in serial port drivers
167 *
168 * This function registers all serial port drivers that are compiled
169 * into the U-Boot binary with the serial core, thus making them
170 * available to U-Boot to use. Lastly, this function assigns a default
171 * serial port to the serial core. That serial port is then used as a
172 * default output.
173 */
Ovidiu Panait39a19222020-07-24 14:12:22 +0300174int serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +0000175{
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100176 atmel_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100177 mcf_serial_initialize();
Marek Vasut7a311542012-09-13 01:38:52 +0200178 mpc85xx_serial_initialize();
Marek Vasuta9434722012-09-14 22:37:43 +0200179 mxc_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100180 ns16550_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100181 pl01x_serial_initialize();
182 pxa_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100183 sh_serial_initialize();
Weijie Gao44fa6762019-09-25 17:45:18 +0800184 mtk_serial_initialize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200185
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000186 serial_assign(default_serial_console()->name);
Ovidiu Panait39a19222020-07-24 14:12:22 +0300187
188 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000189}
190
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200191static int serial_stub_start(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600192{
193 struct serial_device *dev = sdev->priv;
194
195 return dev->start();
196}
197
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200198static int serial_stub_stop(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600199{
200 struct serial_device *dev = sdev->priv;
201
202 return dev->stop();
203}
204
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200205static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
Simon Glass709ea542014-07-23 06:54:59 -0600206{
207 struct serial_device *dev = sdev->priv;
208
209 dev->putc(ch);
210}
211
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200212static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
Simon Glass709ea542014-07-23 06:54:59 -0600213{
214 struct serial_device *dev = sdev->priv;
215
216 dev->puts(str);
217}
218
Masahiro Yamada49ddcf32017-06-22 16:48:49 +0900219static int serial_stub_getc(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600220{
221 struct serial_device *dev = sdev->priv;
222
223 return dev->getc();
224}
225
Masahiro Yamada49ddcf32017-06-22 16:48:49 +0900226static int serial_stub_tstc(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600227{
228 struct serial_device *dev = sdev->priv;
229
230 return dev->tstc();
231}
232
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000233/**
234 * serial_stdio_init() - Register serial ports with STDIO core
235 *
236 * This function generates a proxy driver for each serial port driver.
237 * These proxy drivers then register with the STDIO core, making the
238 * serial drivers available as STDIO devices.
239 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000240void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000241{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200242 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000243 struct serial_device *s = serial_devices;
244
wdenk2ee66532004-10-11 22:43:02 +0000245 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000246 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000247
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000248 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000249 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
250
Simon Glass709ea542014-07-23 06:54:59 -0600251 dev.start = serial_stub_start;
252 dev.stop = serial_stub_stop;
253 dev.putc = serial_stub_putc;
254 dev.puts = serial_stub_puts;
255 dev.getc = serial_stub_getc;
256 dev.tstc = serial_stub_tstc;
Simon Glassaddf9512014-09-04 16:27:23 -0600257 dev.priv = s;
wdenk281e00a2004-08-01 22:48:16 +0000258
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000259 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000260
261 s = s->next;
262 }
263}
264
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000265/**
266 * serial_assign() - Select the serial output device by name
267 * @name: Name of the serial driver to be used as default output
268 *
269 * This function configures the serial output multiplexing by
270 * selecting which serial device will be used as default. In case
271 * the STDIO "serial" device is selected as stdin/stdout/stderr,
272 * the serial device previously configured by this function will be
273 * used for the particular operation.
274 *
275 * Returns 0 on success, negative on error.
276 */
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000277int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000278{
279 struct serial_device *s;
280
wdenk2ee66532004-10-11 22:43:02 +0000281 for (s = serial_devices; s; s = s->next) {
Marek Vasut6d93e252012-10-06 14:07:03 +0000282 if (strcmp(s->name, name))
283 continue;
284 serial_current = s;
285 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000286 }
287
Marek Vasut6d93e252012-10-06 14:07:03 +0000288 return -EINVAL;
wdenk281e00a2004-08-01 22:48:16 +0000289}
290
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000291/**
292 * serial_reinit_all() - Reinitialize all compiled-in serial ports
293 *
294 * This function reinitializes all serial ports that are compiled
295 * into U-Boot by calling their serial_start() functions.
296 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000297void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000298{
299 struct serial_device *s;
300
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000301 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200302 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000303}
304
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000305/**
306 * get_current() - Return pointer to currently selected serial port
307 *
308 * This function returns a pointer to currently selected serial port.
309 * The currently selected serial port is altered by serial_assign()
310 * function.
311 *
312 * In case this function is called before relocation or before any serial
313 * port is configured, this function calls default_serial_console() to
314 * determine the serial port. Otherwise, the configured serial port is
315 * returned.
316 *
317 * Returns pointer to the currently selected serial port on success,
318 * NULL on error.
319 */
Simon Glass857c2832011-08-19 11:09:43 +0000320static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000321{
Simon Glass857c2832011-08-19 11:09:43 +0000322 struct serial_device *dev;
323
Marek Vasutdee19412012-10-06 14:07:04 +0000324 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass857c2832011-08-19 11:09:43 +0000325 dev = default_serial_console();
Marek Vasutdee19412012-10-06 14:07:04 +0000326 else if (!serial_current)
327 dev = default_serial_console();
328 else
Simon Glass857c2832011-08-19 11:09:43 +0000329 dev = serial_current;
Marek Vasutdee19412012-10-06 14:07:04 +0000330
331 /* We must have a console device */
332 if (!dev) {
333#ifdef CONFIG_SPL_BUILD
334 puts("Cannot find console\n");
335 hang();
336#else
337 panic("Cannot find console\n");
338#endif
339 }
340
Simon Glass857c2832011-08-19 11:09:43 +0000341 return dev;
342}
wdenk281e00a2004-08-01 22:48:16 +0000343
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000344/**
345 * serial_init() - Initialize currently selected serial port
346 *
347 * This function initializes the currently selected serial port. This
348 * usually involves setting up the registers of that particular port,
349 * enabling clock and such. This function uses the get_current() call
350 * to determine which port is selected.
351 *
352 * Returns 0 on success, negative on error.
353 */
Simon Glass857c2832011-08-19 11:09:43 +0000354int serial_init(void)
355{
Simon Glass093f79a2014-07-23 06:55:07 -0600356 gd->flags |= GD_FLG_SERIAL_READY;
Marek Vasut89143fb2012-09-07 14:35:31 +0200357 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000358}
359
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000360/**
361 * serial_setbrg() - Configure baud-rate of currently selected serial port
362 *
363 * This function configures the baud-rate of the currently selected
364 * serial port. The baud-rate is retrieved from global data within
365 * the serial port driver. This function uses the get_current() call
366 * to determine which port is selected.
367 *
368 * Returns 0 on success, negative on error.
369 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000370void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000371{
Simon Glass857c2832011-08-19 11:09:43 +0000372 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000373}
374
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000375/**
376 * serial_getc() - Read character from currently selected serial port
377 *
378 * This function retrieves a character from currently selected serial
379 * port. In case there is no character waiting on the serial port,
380 * this function will block and wait for the character to appear. This
381 * function uses the get_current() call to determine which port is
382 * selected.
383 *
384 * Returns the character on success, negative on error.
385 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000386int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000387{
Simon Glass857c2832011-08-19 11:09:43 +0000388 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000389}
390
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000391/**
392 * serial_tstc() - Test if data is available on currently selected serial port
393 *
394 * This function tests if one or more characters are available on
395 * currently selected serial port. This function never blocks. This
396 * function uses the get_current() call to determine which port is
397 * selected.
398 *
399 * Returns positive if character is available, zero otherwise.
400 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000401int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000402{
Simon Glass857c2832011-08-19 11:09:43 +0000403 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000404}
405
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000406/**
407 * serial_putc() - Output character via currently selected serial port
408 * @c: Single character to be output from the serial port.
409 *
410 * This function outputs a character via currently selected serial
411 * port. This character is passed to the serial port driver responsible
412 * for controlling the hardware. The hardware may still be in process
413 * of transmitting another character, therefore this function may block
414 * for a short amount of time. This function uses the get_current()
415 * call to determine which port is selected.
416 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000417void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000418{
Simon Glass857c2832011-08-19 11:09:43 +0000419 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000420}
421
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000422/**
423 * serial_puts() - Output string via currently selected serial port
424 * @s: Zero-terminated string to be output from the serial port.
425 *
426 * This function outputs a zero-terminated string via currently
427 * selected serial port. This function behaves as an accelerator
428 * in case the hardware can queue multiple characters for transfer.
429 * The whole string that is to be output is available to the function
430 * implementing the hardware manipulation. Transmitting the whole
431 * string may take some time, thus this function may block for some
432 * amount of time. This function uses the get_current() call to
433 * determine which port is selected.
434 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000435void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000436{
Simon Glass857c2832011-08-19 11:09:43 +0000437 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000438}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000439
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000440/**
441 * default_serial_puts() - Output string by calling serial_putc() in loop
442 * @s: Zero-terminated string to be output from the serial port.
443 *
444 * This function outputs a zero-terminated string by calling serial_putc()
445 * in a loop. Most drivers do not support queueing more than one byte for
446 * transfer, thus this function precisely implements their serial_puts().
447 *
448 * To optimize the number of get_current() calls, this function only
449 * calls get_current() once and then directly accesses the putc() call
450 * of the &struct serial_device .
451 */
Marek Vasutbfb7d7a2012-10-06 14:07:01 +0000452void default_serial_puts(const char *s)
453{
454 struct serial_device *dev = get_current();
455 while (*s)
456 dev->putc(*s++);
457}
458
Mike Frysinger7b826c22011-05-14 06:56:15 +0000459#if CONFIG_POST & CONFIG_SYS_POST_UART
460static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
461
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000462/**
463 * uart_post_test() - Test the currently selected serial port using POST
464 * @flags: POST framework flags
465 *
466 * Do a loopback test of the currently selected serial port. This
467 * function is only useful in the context of the POST testing framwork.
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800468 * The serial port is first configured into loopback mode and then
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000469 * characters are sent through it.
470 *
471 * Returns 0 on success, value otherwise.
472 */
Mike Frysinger7b826c22011-05-14 06:56:15 +0000473/* Mark weak until post/cpu/.../uart.c migrate over */
474__weak
475int uart_post_test(int flags)
476{
477 unsigned char c;
478 int ret, saved_baud, b;
479 struct serial_device *saved_dev, *s;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000480
481 /* Save current serial state */
482 ret = 0;
483 saved_dev = serial_current;
Masahiro Yamada8e261572014-04-04 20:09:58 +0900484 saved_baud = gd->baudrate;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000485
486 for (s = serial_devices; s; s = s->next) {
487 /* If this driver doesn't support loop back, skip it */
488 if (!s->loop)
489 continue;
490
491 /* Test the next device */
492 serial_current = s;
493
494 ret = serial_init();
495 if (ret)
496 goto done;
497
498 /* Consume anything that happens to be queued */
499 while (serial_tstc())
500 serial_getc();
501
502 /* Enable loop back */
503 s->loop(1);
504
505 /* Test every available baud rate */
506 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
Masahiro Yamada8e261572014-04-04 20:09:58 +0900507 gd->baudrate = bauds[b];
Mike Frysinger7b826c22011-05-14 06:56:15 +0000508 serial_setbrg();
509
510 /*
511 * Stick to printable chars to avoid issues:
512 * - terminal corruption
513 * - serial program reacting to sequences and sending
514 * back random extra data
515 * - most serial drivers add in extra chars (like \r\n)
516 */
517 for (c = 0x20; c < 0x7f; ++c) {
518 /* Send it out */
519 serial_putc(c);
520
521 /* Make sure it's the same one */
522 ret = (c != serial_getc());
523 if (ret) {
524 s->loop(0);
525 goto done;
526 }
527
528 /* Clean up the output in case it was sent */
529 serial_putc('\b');
530 ret = ('\b' != serial_getc());
531 if (ret) {
532 s->loop(0);
533 goto done;
534 }
535 }
536 }
537
538 /* Disable loop back */
539 s->loop(0);
540
Marek Vasut89143fb2012-09-07 14:35:31 +0200541 /* XXX: There is no serial_stop() !? */
542 if (s->stop)
543 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000544 }
545
546 done:
547 /* Restore previous serial state */
548 serial_current = saved_dev;
Masahiro Yamada8e261572014-04-04 20:09:58 +0900549 gd->baudrate = saved_baud;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000550 serial_reinit_all();
551 serial_setbrg();
552
553 return ret;
554}
555#endif