blob: 87542f92dfd924c659155f59b2adc0b8258101ca [file] [log] [blame]
wdenk7ac16102004-08-01 22:48:16 +00001/*
2 * (C) Copyright 2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk7ac16102004-08-01 22:48:16 +00006 */
7
8#include <common.h>
Joe Hershberger3928bb62012-12-11 22:16:27 -06009#include <environment.h>
wdenk7ac16102004-08-01 22:48:16 +000010#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020011#include <stdio_dev.h>
Mike Frysinger078f2f12011-05-14 06:56:15 +000012#include <post.h>
13#include <linux/compiler.h>
Marek Vasut0e1b5772012-10-06 14:07:03 +000014#include <errno.h>
wdenk7ac16102004-08-01 22:48:16 +000015
Wolfgang Denk6405a152006-03-31 18:32:53 +020016DECLARE_GLOBAL_DATA_PTR;
17
Gerlando Falauto34148d62011-11-18 06:49:11 +000018static struct serial_device *serial_devices;
19static struct serial_device *serial_current;
Joe Hershberger3928bb62012-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;
wdenk7ac16102004-08-01 22:48:16 +000024
Marek Vasut95656ea2012-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 Vasutf6af0482012-09-12 17:49:58 +020033static void serial_null(void)
34{
Joe Hershberger3928bb62012-12-11 22:16:27 -060035}
36
37/**
38 * 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 Linebca8732013-06-23 00:46:41 +080060 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
Joe Hershberger3928bb62012-12-11 22:16:27 -060061 if (baudrate == baudrate_table[i])
62 break;
63 }
Axel Linebca8732013-06-23 00:46:41 +080064 if (i == ARRAY_SIZE(baudrate_table)) {
Joe Hershberger3928bb62012-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 Hershberger3928bb62012-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 }
Marek Vasutf6af0482012-09-12 17:49:58 +020095}
Joe Hershberger3928bb62012-12-11 22:16:27 -060096U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
Marek Vasutf6af0482012-09-12 17:49:58 +020097
Marek Vasut95656ea2012-10-08 11:36:39 +000098/**
99 * 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 Vasutf6af0482012-09-12 17:49:58 +0200108#define serial_initfunc(name) \
109 void name(void) \
110 __attribute__((weak, alias("serial_null")));
111
Marek Vasut42cde132012-09-13 12:27:37 +0200112serial_initfunc(amirix_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100113serial_initfunc(arc_serial_initialize);
114serial_initfunc(arm_dcc_initialize);
115serial_initfunc(asc_serial_initialize);
116serial_initfunc(atmel_serial_initialize);
117serial_initfunc(au1x00_serial_initialize);
118serial_initfunc(bfin_jtag_initialize);
119serial_initfunc(bfin_serial_initialize);
Marek Vasutbf5314b2012-09-13 12:28:07 +0200120serial_initfunc(bmw_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100121serial_initfunc(clps7111_serial_initialize);
Marek Vasutf7284022012-09-13 12:29:31 +0200122serial_initfunc(cogent_serial_initialize);
Marek Vasut7aa03ef2012-09-13 12:32:56 +0200123serial_initfunc(cpci750_serial_initialize);
Marek Vasutadede692012-09-13 12:33:50 +0200124serial_initfunc(evb64260_serial_initialize);
Marek Vasut9784bde2012-09-14 22:34:51 +0200125serial_initfunc(imx_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100126serial_initfunc(iop480_serial_initialize);
127serial_initfunc(jz_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100128serial_initfunc(leon2_serial_initialize);
129serial_initfunc(leon3_serial_initialize);
Marek Vasut58177b72012-09-14 22:36:27 +0200130serial_initfunc(lh7a40x_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100131serial_initfunc(lpc32xx_serial_initialize);
132serial_initfunc(marvell_serial_initialize);
Marek Vasut00797862012-09-14 22:37:17 +0200133serial_initfunc(max3100_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100134serial_initfunc(mcf_serial_initialize);
135serial_initfunc(ml2_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100136serial_initfunc(mpc5xx_serial_initialize);
137serial_initfunc(mpc8260_scc_serial_initialize);
138serial_initfunc(mpc8260_smc_serial_initialize);
139serial_initfunc(mpc85xx_serial_initialize);
140serial_initfunc(mpc8xx_serial_initialize);
Marek Vasut64c60552012-09-14 22:37:43 +0200141serial_initfunc(mxc_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100142serial_initfunc(mxs_auart_initialize);
143serial_initfunc(ns16550_serial_initialize);
144serial_initfunc(oc_serial_initialize);
145serial_initfunc(p3mx_serial_initialize);
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200146serial_initfunc(pl01x_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100147serial_initfunc(pxa_serial_initialize);
148serial_initfunc(s3c24xx_serial_initialize);
149serial_initfunc(s5p_serial_initialize);
Marek Vasut0d19c022012-09-14 22:39:44 +0200150serial_initfunc(sa1100_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100151serial_initfunc(sandbox_serial_initialize);
152serial_initfunc(sconsole_serial_initialize);
Marek Vasut904d3d72012-09-14 22:40:08 +0200153serial_initfunc(sh_serial_initialize);
rev13@wp.plaf9873c2015-03-01 12:44:41 +0100154serial_initfunc(stm32_serial_initialize);
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100155serial_initfunc(uartlite_serial_initialize);
156serial_initfunc(zynq_serial_initialize);
Marek Vasut419d8942012-09-12 13:50:56 +0200157
Marek Vasut95656ea2012-10-08 11:36:39 +0000158/**
159 * serial_register() - Register serial driver with serial driver core
160 * @dev: Pointer to the serial driver structure
161 *
162 * This function registers the serial driver supplied via @dev with
163 * serial driver core, thus making U-Boot aware of it and making it
164 * available for U-Boot to use. On platforms that still require manual
165 * relocation of constant variables, relocation of the supplied structure
166 * is performed.
167 */
Mike Frysingerffadc822011-04-29 18:03:30 +0000168void serial_register(struct serial_device *dev)
wdenk7ac16102004-08-01 22:48:16 +0000169{
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200170#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut2206b342012-09-16 18:54:22 +0200171 if (dev->start)
172 dev->start += gd->reloc_off;
173 if (dev->stop)
174 dev->stop += gd->reloc_off;
175 if (dev->setbrg)
176 dev->setbrg += gd->reloc_off;
177 if (dev->getc)
178 dev->getc += gd->reloc_off;
179 if (dev->tstc)
180 dev->tstc += gd->reloc_off;
181 if (dev->putc)
182 dev->putc += gd->reloc_off;
183 if (dev->puts)
184 dev->puts += gd->reloc_off;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500185#endif
wdenk7ac16102004-08-01 22:48:16 +0000186
187 dev->next = serial_devices;
188 serial_devices = dev;
wdenk7ac16102004-08-01 22:48:16 +0000189}
190
Marek Vasut95656ea2012-10-08 11:36:39 +0000191/**
192 * serial_initialize() - Register all compiled-in serial port drivers
193 *
194 * This function registers all serial port drivers that are compiled
195 * into the U-Boot binary with the serial core, thus making them
196 * available to U-Boot to use. Lastly, this function assigns a default
197 * serial port to the serial core. That serial port is then used as a
198 * default output.
199 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000200void serial_initialize(void)
wdenk7ac16102004-08-01 22:48:16 +0000201{
Marek Vasut42cde132012-09-13 12:27:37 +0200202 amirix_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100203 arc_serial_initialize();
204 arm_dcc_initialize();
205 asc_serial_initialize();
206 atmel_serial_initialize();
207 au1x00_serial_initialize();
208 bfin_jtag_initialize();
209 bfin_serial_initialize();
Marek Vasutbf5314b2012-09-13 12:28:07 +0200210 bmw_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100211 clps7111_serial_initialize();
Marek Vasutf7284022012-09-13 12:29:31 +0200212 cogent_serial_initialize();
Marek Vasut7aa03ef2012-09-13 12:32:56 +0200213 cpci750_serial_initialize();
Marek Vasutadede692012-09-13 12:33:50 +0200214 evb64260_serial_initialize();
Marek Vasut9784bde2012-09-14 22:34:51 +0200215 imx_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100216 iop480_serial_initialize();
217 jz_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100218 leon2_serial_initialize();
219 leon3_serial_initialize();
Marek Vasut58177b72012-09-14 22:36:27 +0200220 lh7a40x_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100221 lpc32xx_serial_initialize();
222 marvell_serial_initialize();
Marek Vasut00797862012-09-14 22:37:17 +0200223 max3100_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100224 mcf_serial_initialize();
225 ml2_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100226 mpc85xx_serial_initialize();
227 mpc8xx_serial_initialize();
Marek Vasut64c60552012-09-14 22:37:43 +0200228 mxc_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100229 mxs_auart_initialize();
230 ns16550_serial_initialize();
231 oc_serial_initialize();
232 p3mx_serial_initialize();
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200233 pl01x_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100234 pxa_serial_initialize();
235 s3c24xx_serial_initialize();
236 s5p_serial_initialize();
Marek Vasut0d19c022012-09-14 22:39:44 +0200237 sa1100_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100238 sandbox_serial_initialize();
239 sconsole_serial_initialize();
Marek Vasut904d3d72012-09-14 22:40:08 +0200240 sh_serial_initialize();
rev13@wp.plaf9873c2015-03-01 12:44:41 +0100241 stm32_serial_initialize();
Jeroen Hofstee6512cc12014-10-27 20:10:07 +0100242 uartlite_serial_initialize();
243 zynq_serial_initialize();
Marek Vasut01f9ea82012-09-13 01:16:50 +0200244
Gerlando Falauto34148d62011-11-18 06:49:11 +0000245 serial_assign(default_serial_console()->name);
wdenk7ac16102004-08-01 22:48:16 +0000246}
247
Jeroen Hofstee169eda62014-10-08 22:57:44 +0200248static int serial_stub_start(struct stdio_dev *sdev)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600249{
250 struct serial_device *dev = sdev->priv;
251
252 return dev->start();
253}
254
Jeroen Hofstee169eda62014-10-08 22:57:44 +0200255static int serial_stub_stop(struct stdio_dev *sdev)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600256{
257 struct serial_device *dev = sdev->priv;
258
259 return dev->stop();
260}
261
Jeroen Hofstee169eda62014-10-08 22:57:44 +0200262static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600263{
264 struct serial_device *dev = sdev->priv;
265
266 dev->putc(ch);
267}
268
Jeroen Hofstee169eda62014-10-08 22:57:44 +0200269static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600270{
271 struct serial_device *dev = sdev->priv;
272
273 dev->puts(str);
274}
275
Masahiro Yamada5e0ef842017-06-22 16:48:49 +0900276static int serial_stub_getc(struct stdio_dev *sdev)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600277{
278 struct serial_device *dev = sdev->priv;
279
280 return dev->getc();
281}
282
Masahiro Yamada5e0ef842017-06-22 16:48:49 +0900283static int serial_stub_tstc(struct stdio_dev *sdev)
Simon Glass0d1e1f72014-07-23 06:54:59 -0600284{
285 struct serial_device *dev = sdev->priv;
286
287 return dev->tstc();
288}
289
Marek Vasut95656ea2012-10-08 11:36:39 +0000290/**
291 * serial_stdio_init() - Register serial ports with STDIO core
292 *
293 * This function generates a proxy driver for each serial port driver.
294 * These proxy drivers then register with the STDIO core, making the
295 * serial drivers available as STDIO devices.
296 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000297void serial_stdio_init(void)
wdenk7ac16102004-08-01 22:48:16 +0000298{
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200299 struct stdio_dev dev;
wdenk7ac16102004-08-01 22:48:16 +0000300 struct serial_device *s = serial_devices;
301
wdenk8f08c5b2004-10-11 22:43:02 +0000302 while (s) {
Gerlando Falauto34148d62011-11-18 06:49:11 +0000303 memset(&dev, 0, sizeof(dev));
wdenk7ac16102004-08-01 22:48:16 +0000304
Gerlando Falauto34148d62011-11-18 06:49:11 +0000305 strcpy(dev.name, s->name);
wdenk7ac16102004-08-01 22:48:16 +0000306 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
307
Simon Glass0d1e1f72014-07-23 06:54:59 -0600308 dev.start = serial_stub_start;
309 dev.stop = serial_stub_stop;
310 dev.putc = serial_stub_putc;
311 dev.puts = serial_stub_puts;
312 dev.getc = serial_stub_getc;
313 dev.tstc = serial_stub_tstc;
Simon Glassac2a14f2014-09-04 16:27:23 -0600314 dev.priv = s;
wdenk7ac16102004-08-01 22:48:16 +0000315
Gerlando Falauto34148d62011-11-18 06:49:11 +0000316 stdio_register(&dev);
wdenk7ac16102004-08-01 22:48:16 +0000317
318 s = s->next;
319 }
320}
321
Marek Vasut95656ea2012-10-08 11:36:39 +0000322/**
323 * serial_assign() - Select the serial output device by name
324 * @name: Name of the serial driver to be used as default output
325 *
326 * This function configures the serial output multiplexing by
327 * selecting which serial device will be used as default. In case
328 * the STDIO "serial" device is selected as stdin/stdout/stderr,
329 * the serial device previously configured by this function will be
330 * used for the particular operation.
331 *
332 * Returns 0 on success, negative on error.
333 */
Gerlando Falauto92999582011-11-18 06:49:12 +0000334int serial_assign(const char *name)
wdenk7ac16102004-08-01 22:48:16 +0000335{
336 struct serial_device *s;
337
wdenk8f08c5b2004-10-11 22:43:02 +0000338 for (s = serial_devices; s; s = s->next) {
Marek Vasut0e1b5772012-10-06 14:07:03 +0000339 if (strcmp(s->name, name))
340 continue;
341 serial_current = s;
342 return 0;
wdenk7ac16102004-08-01 22:48:16 +0000343 }
344
Marek Vasut0e1b5772012-10-06 14:07:03 +0000345 return -EINVAL;
wdenk7ac16102004-08-01 22:48:16 +0000346}
347
Marek Vasut95656ea2012-10-08 11:36:39 +0000348/**
349 * serial_reinit_all() - Reinitialize all compiled-in serial ports
350 *
351 * This function reinitializes all serial ports that are compiled
352 * into U-Boot by calling their serial_start() functions.
353 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000354void serial_reinit_all(void)
wdenk7ac16102004-08-01 22:48:16 +0000355{
356 struct serial_device *s;
357
Gerlando Falauto34148d62011-11-18 06:49:11 +0000358 for (s = serial_devices; s; s = s->next)
Marek Vasutb46931d2012-09-07 14:35:31 +0200359 s->start();
wdenk7ac16102004-08-01 22:48:16 +0000360}
361
Marek Vasut95656ea2012-10-08 11:36:39 +0000362/**
363 * get_current() - Return pointer to currently selected serial port
364 *
365 * This function returns a pointer to currently selected serial port.
366 * The currently selected serial port is altered by serial_assign()
367 * function.
368 *
369 * In case this function is called before relocation or before any serial
370 * port is configured, this function calls default_serial_console() to
371 * determine the serial port. Otherwise, the configured serial port is
372 * returned.
373 *
374 * Returns pointer to the currently selected serial port on success,
375 * NULL on error.
376 */
Simon Glass8f4e6f12011-08-19 11:09:43 +0000377static struct serial_device *get_current(void)
wdenk7ac16102004-08-01 22:48:16 +0000378{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000379 struct serial_device *dev;
380
Marek Vasutbdad8072012-10-06 14:07:04 +0000381 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass8f4e6f12011-08-19 11:09:43 +0000382 dev = default_serial_console();
Marek Vasutbdad8072012-10-06 14:07:04 +0000383 else if (!serial_current)
384 dev = default_serial_console();
385 else
386 dev = serial_current;
wdenk8f08c5b2004-10-11 22:43:02 +0000387
Marek Vasutbdad8072012-10-06 14:07:04 +0000388 /* We must have a console device */
389 if (!dev) {
Marek Vasuta6f63342012-09-15 10:33:51 +0200390#ifdef CONFIG_SPL_BUILD
Marek Vasutbdad8072012-10-06 14:07:04 +0000391 puts("Cannot find console\n");
392 hang();
Marek Vasuta6f63342012-09-15 10:33:51 +0200393#else
Marek Vasutbdad8072012-10-06 14:07:04 +0000394 panic("Cannot find console\n");
Marek Vasuta6f63342012-09-15 10:33:51 +0200395#endif
Marek Vasutbdad8072012-10-06 14:07:04 +0000396 }
397
Simon Glass8f4e6f12011-08-19 11:09:43 +0000398 return dev;
399}
wdenk7ac16102004-08-01 22:48:16 +0000400
Marek Vasut95656ea2012-10-08 11:36:39 +0000401/**
402 * serial_init() - Initialize currently selected serial port
403 *
404 * This function initializes the currently selected serial port. This
405 * usually involves setting up the registers of that particular port,
406 * enabling clock and such. This function uses the get_current() call
407 * to determine which port is selected.
408 *
409 * Returns 0 on success, negative on error.
410 */
Simon Glass8f4e6f12011-08-19 11:09:43 +0000411int serial_init(void)
412{
Simon Glassb9d5f6b2014-07-23 06:55:07 -0600413 gd->flags |= GD_FLG_SERIAL_READY;
Marek Vasutb46931d2012-09-07 14:35:31 +0200414 return get_current()->start();
wdenk7ac16102004-08-01 22:48:16 +0000415}
416
Marek Vasut95656ea2012-10-08 11:36:39 +0000417/**
418 * serial_setbrg() - Configure baud-rate of currently selected serial port
419 *
420 * This function configures the baud-rate of the currently selected
421 * serial port. The baud-rate is retrieved from global data within
422 * the serial port driver. This function uses the get_current() call
423 * to determine which port is selected.
424 *
425 * Returns 0 on success, negative on error.
426 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000427void serial_setbrg(void)
wdenk7ac16102004-08-01 22:48:16 +0000428{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000429 get_current()->setbrg();
wdenk7ac16102004-08-01 22:48:16 +0000430}
431
Marek Vasut95656ea2012-10-08 11:36:39 +0000432/**
433 * serial_getc() - Read character from currently selected serial port
434 *
435 * This function retrieves a character from currently selected serial
436 * port. In case there is no character waiting on the serial port,
437 * this function will block and wait for the character to appear. This
438 * function uses the get_current() call to determine which port is
439 * selected.
440 *
441 * Returns the character on success, negative on error.
442 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000443int serial_getc(void)
wdenk7ac16102004-08-01 22:48:16 +0000444{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000445 return get_current()->getc();
wdenk7ac16102004-08-01 22:48:16 +0000446}
447
Marek Vasut95656ea2012-10-08 11:36:39 +0000448/**
449 * serial_tstc() - Test if data is available on currently selected serial port
450 *
451 * This function tests if one or more characters are available on
452 * currently selected serial port. This function never blocks. This
453 * function uses the get_current() call to determine which port is
454 * selected.
455 *
456 * Returns positive if character is available, zero otherwise.
457 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000458int serial_tstc(void)
wdenk7ac16102004-08-01 22:48:16 +0000459{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000460 return get_current()->tstc();
wdenk7ac16102004-08-01 22:48:16 +0000461}
462
Marek Vasut95656ea2012-10-08 11:36:39 +0000463/**
464 * serial_putc() - Output character via currently selected serial port
465 * @c: Single character to be output from the serial port.
466 *
467 * This function outputs a character via currently selected serial
468 * port. This character is passed to the serial port driver responsible
469 * for controlling the hardware. The hardware may still be in process
470 * of transmitting another character, therefore this function may block
471 * for a short amount of time. This function uses the get_current()
472 * call to determine which port is selected.
473 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000474void serial_putc(const char c)
wdenk7ac16102004-08-01 22:48:16 +0000475{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000476 get_current()->putc(c);
wdenk7ac16102004-08-01 22:48:16 +0000477}
478
Marek Vasut95656ea2012-10-08 11:36:39 +0000479/**
480 * serial_puts() - Output string via currently selected serial port
481 * @s: Zero-terminated string to be output from the serial port.
482 *
483 * This function outputs a zero-terminated string via currently
484 * selected serial port. This function behaves as an accelerator
485 * in case the hardware can queue multiple characters for transfer.
486 * The whole string that is to be output is available to the function
487 * implementing the hardware manipulation. Transmitting the whole
488 * string may take some time, thus this function may block for some
489 * amount of time. This function uses the get_current() call to
490 * determine which port is selected.
491 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000492void serial_puts(const char *s)
wdenk7ac16102004-08-01 22:48:16 +0000493{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000494 get_current()->puts(s);
wdenk7ac16102004-08-01 22:48:16 +0000495}
Mike Frysinger078f2f12011-05-14 06:56:15 +0000496
Marek Vasut95656ea2012-10-08 11:36:39 +0000497/**
498 * default_serial_puts() - Output string by calling serial_putc() in loop
499 * @s: Zero-terminated string to be output from the serial port.
500 *
501 * This function outputs a zero-terminated string by calling serial_putc()
502 * in a loop. Most drivers do not support queueing more than one byte for
503 * transfer, thus this function precisely implements their serial_puts().
504 *
505 * To optimize the number of get_current() calls, this function only
506 * calls get_current() once and then directly accesses the putc() call
507 * of the &struct serial_device .
508 */
Marek Vasut6b9124e2012-10-06 14:07:01 +0000509void default_serial_puts(const char *s)
510{
511 struct serial_device *dev = get_current();
512 while (*s)
513 dev->putc(*s++);
514}
515
Mike Frysinger078f2f12011-05-14 06:56:15 +0000516#if CONFIG_POST & CONFIG_SYS_POST_UART
517static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
518
Marek Vasut95656ea2012-10-08 11:36:39 +0000519/**
520 * uart_post_test() - Test the currently selected serial port using POST
521 * @flags: POST framework flags
522 *
523 * Do a loopback test of the currently selected serial port. This
524 * function is only useful in the context of the POST testing framwork.
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800525 * The serial port is first configured into loopback mode and then
Marek Vasut95656ea2012-10-08 11:36:39 +0000526 * characters are sent through it.
527 *
528 * Returns 0 on success, value otherwise.
529 */
Mike Frysinger078f2f12011-05-14 06:56:15 +0000530/* Mark weak until post/cpu/.../uart.c migrate over */
531__weak
532int uart_post_test(int flags)
533{
534 unsigned char c;
535 int ret, saved_baud, b;
536 struct serial_device *saved_dev, *s;
Mike Frysinger078f2f12011-05-14 06:56:15 +0000537
538 /* Save current serial state */
539 ret = 0;
540 saved_dev = serial_current;
Masahiro Yamada197c7202014-04-04 20:09:58 +0900541 saved_baud = gd->baudrate;
Mike Frysinger078f2f12011-05-14 06:56:15 +0000542
543 for (s = serial_devices; s; s = s->next) {
544 /* If this driver doesn't support loop back, skip it */
545 if (!s->loop)
546 continue;
547
548 /* Test the next device */
549 serial_current = s;
550
551 ret = serial_init();
552 if (ret)
553 goto done;
554
555 /* Consume anything that happens to be queued */
556 while (serial_tstc())
557 serial_getc();
558
559 /* Enable loop back */
560 s->loop(1);
561
562 /* Test every available baud rate */
563 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
Masahiro Yamada197c7202014-04-04 20:09:58 +0900564 gd->baudrate = bauds[b];
Mike Frysinger078f2f12011-05-14 06:56:15 +0000565 serial_setbrg();
566
567 /*
568 * Stick to printable chars to avoid issues:
569 * - terminal corruption
570 * - serial program reacting to sequences and sending
571 * back random extra data
572 * - most serial drivers add in extra chars (like \r\n)
573 */
574 for (c = 0x20; c < 0x7f; ++c) {
575 /* Send it out */
576 serial_putc(c);
577
578 /* Make sure it's the same one */
579 ret = (c != serial_getc());
580 if (ret) {
581 s->loop(0);
582 goto done;
583 }
584
585 /* Clean up the output in case it was sent */
586 serial_putc('\b');
587 ret = ('\b' != serial_getc());
588 if (ret) {
589 s->loop(0);
590 goto done;
591 }
592 }
593 }
594
595 /* Disable loop back */
596 s->loop(0);
597
Marek Vasutb46931d2012-09-07 14:35:31 +0200598 /* XXX: There is no serial_stop() !? */
599 if (s->stop)
600 s->stop();
Mike Frysinger078f2f12011-05-14 06:56:15 +0000601 }
602
603 done:
604 /* Restore previous serial state */
605 serial_current = saved_dev;
Masahiro Yamada197c7202014-04-04 20:09:58 +0900606 gd->baudrate = saved_baud;
Mike Frysinger078f2f12011-05-14 06:56:15 +0000607 serial_reinit_all();
608 serial_setbrg();
609
610 return ret;
611}
612#endif