blob: 9f78492298df2612157ea515eb10ca62ccf2dda8 [file] [log] [blame]
wdenk281e00a2004-08-01 22:48:16 +00001/*
2 * (C) Copyright 2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk281e00a2004-08-01 22:48:16 +00006 */
7
8#include <common.h>
Joe Hershberger32057712012-12-11 22:16:27 -06009#include <environment.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>
13#include <linux/compiler.h>
Marek Vasut6d93e252012-10-06 14:07:03 +000014#include <errno.h>
wdenk281e00a2004-08-01 22:48:16 +000015
Wolfgang Denkd87080b2006-03-31 18:32:53 +020016DECLARE_GLOBAL_DATA_PTR;
17
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000018static struct serial_device *serial_devices;
19static struct serial_device *serial_current;
Joe Hershberger32057712012-12-11 22:16:27 -060020/*
21 * Table with supported baudrates (defined in config_xyz.h)
22 */
23static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenk281e00a2004-08-01 22:48:16 +000024
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000025/**
26 * serial_null() - Void registration routine of a serial driver
27 *
28 * This routine implements a void registration routine of a serial
29 * driver. The registration routine of a particular driver is aliased
30 * to this empty function in case the driver is not compiled into
31 * U-Boot.
32 */
Marek Vasut2a333ae2012-09-12 17:49:58 +020033static void serial_null(void)
34{
35}
36
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000037/**
Joe Hershberger32057712012-12-11 22:16:27 -060038 * on_baudrate() - Update the actual baudrate when the env var changes
39 *
40 * This will check for a valid baudrate and only apply it if valid.
41 */
42static int on_baudrate(const char *name, const char *value, enum env_op op,
43 int flags)
44{
45 int i;
46 int baudrate;
47
48 switch (op) {
49 case env_op_create:
50 case env_op_overwrite:
51 /*
52 * Switch to new baudrate if new baudrate is supported
53 */
54 baudrate = simple_strtoul(value, NULL, 10);
55
56 /* Not actually changing */
57 if (gd->baudrate == baudrate)
58 return 0;
59
Axel Lin99351752013-06-23 00:46:41 +080060 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
Joe Hershberger32057712012-12-11 22:16:27 -060061 if (baudrate == baudrate_table[i])
62 break;
63 }
Axel Lin99351752013-06-23 00:46:41 +080064 if (i == ARRAY_SIZE(baudrate_table)) {
Joe Hershberger32057712012-12-11 22:16:27 -060065 if ((flags & H_FORCE) == 0)
66 printf("## Baudrate %d bps not supported\n",
67 baudrate);
68 return 1;
69 }
70 if ((flags & H_INTERACTIVE) != 0) {
71 printf("## Switch baudrate to %d"
72 " bps and press ENTER ...\n", baudrate);
73 udelay(50000);
74 }
75
76 gd->baudrate = baudrate;
Joe Hershberger32057712012-12-11 22:16:27 -060077
78 serial_setbrg();
79
80 udelay(50000);
81
82 if ((flags & H_INTERACTIVE) != 0)
83 while (1) {
84 if (getc() == '\r')
85 break;
86 }
87
88 return 0;
89 case env_op_delete:
90 printf("## Baudrate may not be deleted\n");
91 return 1;
92 default:
93 return 0;
94 }
95}
96U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
97
98/**
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000099 * serial_initfunc() - Forward declare of driver registration routine
100 * @name: Name of the real driver registration routine.
101 *
102 * This macro expands onto forward declaration of a driver registration
103 * routine, which is then used below in serial_initialize() function.
104 * The declaration is made weak and aliases to serial_null() so in case
105 * the driver is not compiled in, the function is still declared and can
106 * be used, but aliases to serial_null() and thus is optimized away.
107 */
Marek Vasut2a333ae2012-09-12 17:49:58 +0200108#define serial_initfunc(name) \
109 void name(void) \
110 __attribute__((weak, alias("serial_null")));
111
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100112serial_initfunc(altera_jtag_serial_initialize);
113serial_initfunc(altera_serial_initialize);
114serial_initfunc(amirix_serial_initialize);
115serial_initfunc(arc_serial_initialize);
116serial_initfunc(arm_dcc_initialize);
Marek Vasut01911422012-09-13 01:20:07 +0200117serial_initfunc(asc_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100118serial_initfunc(atmel_serial_initialize);
119serial_initfunc(au1x00_serial_initialize);
120serial_initfunc(bfin_jtag_initialize);
121serial_initfunc(bfin_serial_initialize);
122serial_initfunc(bmw_serial_initialize);
123serial_initfunc(clps7111_serial_initialize);
124serial_initfunc(cogent_serial_initialize);
125serial_initfunc(cpci750_serial_initialize);
126serial_initfunc(evb64260_serial_initialize);
127serial_initfunc(imx_serial_initialize);
128serial_initfunc(iop480_serial_initialize);
Marek Vasut6cb32732012-09-13 01:20:59 +0200129serial_initfunc(jz_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100130serial_initfunc(leon2_serial_initialize);
131serial_initfunc(leon3_serial_initialize);
132serial_initfunc(lh7a40x_serial_initialize);
133serial_initfunc(lpc32xx_serial_initialize);
134serial_initfunc(marvell_serial_initialize);
135serial_initfunc(max3100_serial_initialize);
136serial_initfunc(mcf_serial_initialize);
137serial_initfunc(ml2_serial_initialize);
138serial_initfunc(mpc512x_serial_initialize);
Marek Vasutb57c6522012-09-13 01:26:42 +0200139serial_initfunc(mpc5xx_serial_initialize);
Marek Vasutd68f4da2012-09-13 01:34:16 +0200140serial_initfunc(mpc8260_scc_serial_initialize);
141serial_initfunc(mpc8260_smc_serial_initialize);
Marek Vasut7a311542012-09-13 01:38:52 +0200142serial_initfunc(mpc85xx_serial_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100143serial_initfunc(mpc8xx_serial_initialize);
Marek Vasuta9434722012-09-14 22:37:43 +0200144serial_initfunc(mxc_serial_initialize);
Andreas Wass661edaa2013-08-14 23:45:03 +0200145serial_initfunc(mxs_auart_initialize);
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100146serial_initfunc(ns16550_serial_initialize);
147serial_initfunc(oc_serial_initialize);
148serial_initfunc(p3mx_serial_initialize);
149serial_initfunc(pl01x_serial_initialize);
150serial_initfunc(pxa_serial_initialize);
151serial_initfunc(s3c24xx_serial_initialize);
152serial_initfunc(s5p_serial_initialize);
153serial_initfunc(sa1100_serial_initialize);
154serial_initfunc(sandbox_serial_initialize);
155serial_initfunc(sconsole_serial_initialize);
156serial_initfunc(sh_serial_initialize);
157serial_initfunc(uartlite_serial_initialize);
158serial_initfunc(zynq_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200159
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000160/**
161 * serial_register() - Register serial driver with serial driver core
162 * @dev: Pointer to the serial driver structure
163 *
164 * This function registers the serial driver supplied via @dev with
165 * serial driver core, thus making U-Boot aware of it and making it
166 * available for U-Boot to use. On platforms that still require manual
167 * relocation of constant variables, relocation of the supplied structure
168 * is performed.
169 */
Mike Frysingerc52b4f72011-04-29 18:03:30 +0000170void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +0000171{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200172#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutf2760c42012-09-16 18:54:22 +0200173 if (dev->start)
174 dev->start += gd->reloc_off;
175 if (dev->stop)
176 dev->stop += gd->reloc_off;
177 if (dev->setbrg)
178 dev->setbrg += gd->reloc_off;
179 if (dev->getc)
180 dev->getc += gd->reloc_off;
181 if (dev->tstc)
182 dev->tstc += gd->reloc_off;
183 if (dev->putc)
184 dev->putc += gd->reloc_off;
185 if (dev->puts)
186 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500187#endif
wdenk281e00a2004-08-01 22:48:16 +0000188
189 dev->next = serial_devices;
190 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +0000191}
192
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000193/**
194 * serial_initialize() - Register all compiled-in serial port drivers
195 *
196 * This function registers all serial port drivers that are compiled
197 * into the U-Boot binary with the serial core, thus making them
198 * available to U-Boot to use. Lastly, this function assigns a default
199 * serial port to the serial core. That serial port is then used as a
200 * default output.
201 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000202void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +0000203{
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100204 altera_jtag_serial_initialize();
205 altera_serial_initialize();
206 amirix_serial_initialize();
207 arc_serial_initialize();
208 arm_dcc_initialize();
Marek Vasut01911422012-09-13 01:20:07 +0200209 asc_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100210 atmel_serial_initialize();
211 au1x00_serial_initialize();
212 bfin_jtag_initialize();
213 bfin_serial_initialize();
214 bmw_serial_initialize();
215 clps7111_serial_initialize();
216 cogent_serial_initialize();
217 cpci750_serial_initialize();
218 evb64260_serial_initialize();
219 imx_serial_initialize();
220 iop480_serial_initialize();
Marek Vasut6cb32732012-09-13 01:20:59 +0200221 jz_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100222 leon2_serial_initialize();
223 leon3_serial_initialize();
224 lh7a40x_serial_initialize();
225 lpc32xx_serial_initialize();
226 marvell_serial_initialize();
227 max3100_serial_initialize();
228 mcf_serial_initialize();
229 ml2_serial_initialize();
230 mpc512x_serial_initialize();
Marek Vasutb57c6522012-09-13 01:26:42 +0200231 mpc5xx_serial_initialize();
Marek Vasutd68f4da2012-09-13 01:34:16 +0200232 mpc8260_scc_serial_initialize();
233 mpc8260_smc_serial_initialize();
Marek Vasut7a311542012-09-13 01:38:52 +0200234 mpc85xx_serial_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100235 mpc8xx_serial_initialize();
Marek Vasuta9434722012-09-14 22:37:43 +0200236 mxc_serial_initialize();
Andreas Wass661edaa2013-08-14 23:45:03 +0200237 mxs_auart_initialize();
Jeroen Hofstee94a255d2014-10-27 20:10:07 +0100238 ns16550_serial_initialize();
239 oc_serial_initialize();
240 p3mx_serial_initialize();
241 pl01x_serial_initialize();
242 pxa_serial_initialize();
243 s3c24xx_serial_initialize();
244 s5p_serial_initialize();
245 sa1100_serial_initialize();
246 sandbox_serial_initialize();
247 sconsole_serial_initialize();
248 sh_serial_initialize();
249 uartlite_serial_initialize();
250 zynq_serial_initialize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200251
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000252 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000253}
254
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200255static int serial_stub_start(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600256{
257 struct serial_device *dev = sdev->priv;
258
259 return dev->start();
260}
261
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200262static int serial_stub_stop(struct stdio_dev *sdev)
Simon Glass709ea542014-07-23 06:54:59 -0600263{
264 struct serial_device *dev = sdev->priv;
265
266 return dev->stop();
267}
268
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200269static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
Simon Glass709ea542014-07-23 06:54:59 -0600270{
271 struct serial_device *dev = sdev->priv;
272
273 dev->putc(ch);
274}
275
Jeroen Hofstee654f8d02014-10-08 22:57:44 +0200276static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
Simon Glass709ea542014-07-23 06:54:59 -0600277{
278 struct serial_device *dev = sdev->priv;
279
280 dev->puts(str);
281}
282
283int serial_stub_getc(struct stdio_dev *sdev)
284{
285 struct serial_device *dev = sdev->priv;
286
287 return dev->getc();
288}
289
290int serial_stub_tstc(struct stdio_dev *sdev)
291{
292 struct serial_device *dev = sdev->priv;
293
294 return dev->tstc();
295}
296
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000297/**
298 * serial_stdio_init() - Register serial ports with STDIO core
299 *
300 * This function generates a proxy driver for each serial port driver.
301 * These proxy drivers then register with the STDIO core, making the
302 * serial drivers available as STDIO devices.
303 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000304void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000305{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200306 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000307 struct serial_device *s = serial_devices;
308
wdenk2ee66532004-10-11 22:43:02 +0000309 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000310 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000311
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000312 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000313 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
314
Simon Glass709ea542014-07-23 06:54:59 -0600315 dev.start = serial_stub_start;
316 dev.stop = serial_stub_stop;
317 dev.putc = serial_stub_putc;
318 dev.puts = serial_stub_puts;
319 dev.getc = serial_stub_getc;
320 dev.tstc = serial_stub_tstc;
Simon Glassaddf9512014-09-04 16:27:23 -0600321 dev.priv = s;
wdenk281e00a2004-08-01 22:48:16 +0000322
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000323 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000324
325 s = s->next;
326 }
327}
328
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000329/**
330 * serial_assign() - Select the serial output device by name
331 * @name: Name of the serial driver to be used as default output
332 *
333 * This function configures the serial output multiplexing by
334 * selecting which serial device will be used as default. In case
335 * the STDIO "serial" device is selected as stdin/stdout/stderr,
336 * the serial device previously configured by this function will be
337 * used for the particular operation.
338 *
339 * Returns 0 on success, negative on error.
340 */
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000341int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000342{
343 struct serial_device *s;
344
wdenk2ee66532004-10-11 22:43:02 +0000345 for (s = serial_devices; s; s = s->next) {
Marek Vasut6d93e252012-10-06 14:07:03 +0000346 if (strcmp(s->name, name))
347 continue;
348 serial_current = s;
349 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000350 }
351
Marek Vasut6d93e252012-10-06 14:07:03 +0000352 return -EINVAL;
wdenk281e00a2004-08-01 22:48:16 +0000353}
354
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000355/**
356 * serial_reinit_all() - Reinitialize all compiled-in serial ports
357 *
358 * This function reinitializes all serial ports that are compiled
359 * into U-Boot by calling their serial_start() functions.
360 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000361void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000362{
363 struct serial_device *s;
364
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000365 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200366 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000367}
368
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000369/**
370 * get_current() - Return pointer to currently selected serial port
371 *
372 * This function returns a pointer to currently selected serial port.
373 * The currently selected serial port is altered by serial_assign()
374 * function.
375 *
376 * In case this function is called before relocation or before any serial
377 * port is configured, this function calls default_serial_console() to
378 * determine the serial port. Otherwise, the configured serial port is
379 * returned.
380 *
381 * Returns pointer to the currently selected serial port on success,
382 * NULL on error.
383 */
Simon Glass857c2832011-08-19 11:09:43 +0000384static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000385{
Simon Glass857c2832011-08-19 11:09:43 +0000386 struct serial_device *dev;
387
Marek Vasutdee19412012-10-06 14:07:04 +0000388 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass857c2832011-08-19 11:09:43 +0000389 dev = default_serial_console();
Marek Vasutdee19412012-10-06 14:07:04 +0000390 else if (!serial_current)
391 dev = default_serial_console();
392 else
Simon Glass857c2832011-08-19 11:09:43 +0000393 dev = serial_current;
Marek Vasutdee19412012-10-06 14:07:04 +0000394
395 /* We must have a console device */
396 if (!dev) {
397#ifdef CONFIG_SPL_BUILD
398 puts("Cannot find console\n");
399 hang();
400#else
401 panic("Cannot find console\n");
402#endif
403 }
404
Simon Glass857c2832011-08-19 11:09:43 +0000405 return dev;
406}
wdenk281e00a2004-08-01 22:48:16 +0000407
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000408/**
409 * serial_init() - Initialize currently selected serial port
410 *
411 * This function initializes the currently selected serial port. This
412 * usually involves setting up the registers of that particular port,
413 * enabling clock and such. This function uses the get_current() call
414 * to determine which port is selected.
415 *
416 * Returns 0 on success, negative on error.
417 */
Simon Glass857c2832011-08-19 11:09:43 +0000418int serial_init(void)
419{
Simon Glass093f79a2014-07-23 06:55:07 -0600420 gd->flags |= GD_FLG_SERIAL_READY;
Marek Vasut89143fb2012-09-07 14:35:31 +0200421 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000422}
423
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000424/**
425 * serial_setbrg() - Configure baud-rate of currently selected serial port
426 *
427 * This function configures the baud-rate of the currently selected
428 * serial port. The baud-rate is retrieved from global data within
429 * the serial port driver. This function uses the get_current() call
430 * to determine which port is selected.
431 *
432 * Returns 0 on success, negative on error.
433 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000434void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000435{
Simon Glass857c2832011-08-19 11:09:43 +0000436 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000437}
438
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000439/**
440 * serial_getc() - Read character from currently selected serial port
441 *
442 * This function retrieves a character from currently selected serial
443 * port. In case there is no character waiting on the serial port,
444 * this function will block and wait for the character to appear. This
445 * function uses the get_current() call to determine which port is
446 * selected.
447 *
448 * Returns the character on success, negative on error.
449 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000450int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000451{
Simon Glass857c2832011-08-19 11:09:43 +0000452 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000453}
454
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000455/**
456 * serial_tstc() - Test if data is available on currently selected serial port
457 *
458 * This function tests if one or more characters are available on
459 * currently selected serial port. This function never blocks. This
460 * function uses the get_current() call to determine which port is
461 * selected.
462 *
463 * Returns positive if character is available, zero otherwise.
464 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000465int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000466{
Simon Glass857c2832011-08-19 11:09:43 +0000467 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000468}
469
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000470/**
471 * serial_putc() - Output character via currently selected serial port
472 * @c: Single character to be output from the serial port.
473 *
474 * This function outputs a character via currently selected serial
475 * port. This character is passed to the serial port driver responsible
476 * for controlling the hardware. The hardware may still be in process
477 * of transmitting another character, therefore this function may block
478 * for a short amount of time. This function uses the get_current()
479 * call to determine which port is selected.
480 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000481void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000482{
Simon Glass857c2832011-08-19 11:09:43 +0000483 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000484}
485
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000486/**
487 * serial_puts() - Output string via currently selected serial port
488 * @s: Zero-terminated string to be output from the serial port.
489 *
490 * This function outputs a zero-terminated string via currently
491 * selected serial port. This function behaves as an accelerator
492 * in case the hardware can queue multiple characters for transfer.
493 * The whole string that is to be output is available to the function
494 * implementing the hardware manipulation. Transmitting the whole
495 * string may take some time, thus this function may block for some
496 * amount of time. This function uses the get_current() call to
497 * determine which port is selected.
498 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000499void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000500{
Simon Glass857c2832011-08-19 11:09:43 +0000501 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000502}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000503
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000504/**
505 * default_serial_puts() - Output string by calling serial_putc() in loop
506 * @s: Zero-terminated string to be output from the serial port.
507 *
508 * This function outputs a zero-terminated string by calling serial_putc()
509 * in a loop. Most drivers do not support queueing more than one byte for
510 * transfer, thus this function precisely implements their serial_puts().
511 *
512 * To optimize the number of get_current() calls, this function only
513 * calls get_current() once and then directly accesses the putc() call
514 * of the &struct serial_device .
515 */
Marek Vasutbfb7d7a2012-10-06 14:07:01 +0000516void default_serial_puts(const char *s)
517{
518 struct serial_device *dev = get_current();
519 while (*s)
520 dev->putc(*s++);
521}
522
Mike Frysinger7b826c22011-05-14 06:56:15 +0000523#if CONFIG_POST & CONFIG_SYS_POST_UART
524static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
525
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000526/**
527 * uart_post_test() - Test the currently selected serial port using POST
528 * @flags: POST framework flags
529 *
530 * Do a loopback test of the currently selected serial port. This
531 * function is only useful in the context of the POST testing framwork.
532 * The serial port is firstly configured into loopback mode and then
533 * characters are sent through it.
534 *
535 * Returns 0 on success, value otherwise.
536 */
Mike Frysinger7b826c22011-05-14 06:56:15 +0000537/* Mark weak until post/cpu/.../uart.c migrate over */
538__weak
539int uart_post_test(int flags)
540{
541 unsigned char c;
542 int ret, saved_baud, b;
543 struct serial_device *saved_dev, *s;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000544
545 /* Save current serial state */
546 ret = 0;
547 saved_dev = serial_current;
Masahiro Yamada8e261572014-04-04 20:09:58 +0900548 saved_baud = gd->baudrate;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000549
550 for (s = serial_devices; s; s = s->next) {
551 /* If this driver doesn't support loop back, skip it */
552 if (!s->loop)
553 continue;
554
555 /* Test the next device */
556 serial_current = s;
557
558 ret = serial_init();
559 if (ret)
560 goto done;
561
562 /* Consume anything that happens to be queued */
563 while (serial_tstc())
564 serial_getc();
565
566 /* Enable loop back */
567 s->loop(1);
568
569 /* Test every available baud rate */
570 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
Masahiro Yamada8e261572014-04-04 20:09:58 +0900571 gd->baudrate = bauds[b];
Mike Frysinger7b826c22011-05-14 06:56:15 +0000572 serial_setbrg();
573
574 /*
575 * Stick to printable chars to avoid issues:
576 * - terminal corruption
577 * - serial program reacting to sequences and sending
578 * back random extra data
579 * - most serial drivers add in extra chars (like \r\n)
580 */
581 for (c = 0x20; c < 0x7f; ++c) {
582 /* Send it out */
583 serial_putc(c);
584
585 /* Make sure it's the same one */
586 ret = (c != serial_getc());
587 if (ret) {
588 s->loop(0);
589 goto done;
590 }
591
592 /* Clean up the output in case it was sent */
593 serial_putc('\b');
594 ret = ('\b' != serial_getc());
595 if (ret) {
596 s->loop(0);
597 goto done;
598 }
599 }
600 }
601
602 /* Disable loop back */
603 s->loop(0);
604
Marek Vasut89143fb2012-09-07 14:35:31 +0200605 /* XXX: There is no serial_stop() !? */
606 if (s->stop)
607 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000608 }
609
610 done:
611 /* Restore previous serial state */
612 serial_current = saved_dev;
Masahiro Yamada8e261572014-04-04 20:09:58 +0900613 gd->baudrate = saved_baud;
Mike Frysinger7b826c22011-05-14 06:56:15 +0000614 serial_reinit_all();
615 serial_setbrg();
616
617 return ret;
618}
619#endif