blob: 67301355d7dcba85d1a7c2608c1d1814c4e6e687 [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;
77#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
78 gd->bd->bi_baudrate = baudrate;
79#endif
80
81 serial_setbrg();
82
83 udelay(50000);
84
85 if ((flags & H_INTERACTIVE) != 0)
86 while (1) {
87 if (getc() == '\r')
88 break;
89 }
90
91 return 0;
92 case env_op_delete:
93 printf("## Baudrate may not be deleted\n");
94 return 1;
95 default:
96 return 0;
97 }
98}
99U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
100
101/**
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000102 * serial_initfunc() - Forward declare of driver registration routine
103 * @name: Name of the real driver registration routine.
104 *
105 * This macro expands onto forward declaration of a driver registration
106 * routine, which is then used below in serial_initialize() function.
107 * The declaration is made weak and aliases to serial_null() so in case
108 * the driver is not compiled in, the function is still declared and can
109 * be used, but aliases to serial_null() and thus is optimized away.
110 */
Marek Vasut2a333ae2012-09-12 17:49:58 +0200111#define serial_initfunc(name) \
112 void name(void) \
113 __attribute__((weak, alias("serial_null")));
114
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200115serial_initfunc(mpc8xx_serial_initialize);
Marek Vasutabc0ed82012-09-12 20:02:05 +0200116serial_initfunc(ns16550_serial_initialize);
Marek Vasut1fe5c112012-09-12 13:57:58 +0200117serial_initfunc(pxa_serial_initialize);
Marek Vasut28af6382012-09-12 16:01:16 +0200118serial_initfunc(s3c24xx_serial_initialize);
Marek Vasutb4980512012-09-12 19:39:57 +0200119serial_initfunc(s5p_serial_initialize);
Tom Rini51d81022012-10-08 14:46:23 -0700120serial_initfunc(zynq_serial_initalize);
Marek Vasut5ae1de02012-09-12 20:07:54 +0200121serial_initfunc(bfin_serial_initialize);
Marek Vasut41651ca2012-09-13 00:02:54 +0200122serial_initfunc(bfin_jtag_initialize);
Marek Vasut918327c2012-09-12 19:50:18 +0200123serial_initfunc(mpc512x_serial_initialize);
Marek Vasut87d69222012-09-12 19:45:58 +0200124serial_initfunc(uartlite_serial_initialize);
Marek Vasut7b953c52012-09-13 01:16:50 +0200125serial_initfunc(au1x00_serial_initialize);
Marek Vasut01911422012-09-13 01:20:07 +0200126serial_initfunc(asc_serial_initialize);
Marek Vasut6cb32732012-09-13 01:20:59 +0200127serial_initfunc(jz_serial_initialize);
Marek Vasutb57c6522012-09-13 01:26:42 +0200128serial_initfunc(mpc5xx_serial_initialize);
Marek Vasutd68f4da2012-09-13 01:34:16 +0200129serial_initfunc(mpc8260_scc_serial_initialize);
130serial_initfunc(mpc8260_smc_serial_initialize);
Marek Vasut7a311542012-09-13 01:38:52 +0200131serial_initfunc(mpc85xx_serial_initialize);
Marek Vasutfcc20742012-09-13 01:40:33 +0200132serial_initfunc(iop480_serial_initialize);
Marek Vasutaf7be3b2012-09-13 12:25:07 +0200133serial_initfunc(leon2_serial_initialize);
Marek Vasut29b5ff72012-09-13 12:25:48 +0200134serial_initfunc(leon3_serial_initialize);
Marek Vasutafe4c382012-09-13 12:26:39 +0200135serial_initfunc(marvell_serial_initialize);
Marek Vasut5dee6f52012-09-13 12:27:37 +0200136serial_initfunc(amirix_serial_initialize);
Marek Vasutc45a14a2012-09-13 12:28:07 +0200137serial_initfunc(bmw_serial_initialize);
Marek Vasutd25c39d2012-09-13 12:29:31 +0200138serial_initfunc(cogent_serial_initialize);
Marek Vasut619c90b2012-09-13 12:32:56 +0200139serial_initfunc(cpci750_serial_initialize);
Marek Vasut829b3b22012-09-13 12:33:50 +0200140serial_initfunc(evb64260_serial_initialize);
Marek Vasutd126f282012-09-13 12:34:24 +0200141serial_initfunc(ml2_serial_initialize);
Marek Vasut26d8eaa2012-09-13 12:34:49 +0200142serial_initfunc(sconsole_serial_initialize);
Marek Vasut088a4f32012-09-13 12:35:54 +0200143serial_initfunc(p3mx_serial_initialize);
Marek Vasut8c085752012-09-13 16:48:50 +0200144serial_initfunc(altera_jtag_serial_initialize);
Marek Vasutb207d642012-09-13 16:49:51 +0200145serial_initfunc(altera_serial_initialize);
Marek Vasutcfba4572012-09-13 16:50:30 +0200146serial_initfunc(atmel_serial_initialize);
Marek Vasute503f902012-09-13 16:51:02 +0200147serial_initfunc(lpc32xx_serial_initialize);
Marek Vasutabaef692012-09-13 16:51:38 +0200148serial_initfunc(mcf_serial_initialize);
Marek Vasut69ea8072012-09-13 16:52:38 +0200149serial_initfunc(oc_serial_initialize);
Marek Vasutcef46b72012-09-14 22:33:21 +0200150serial_initfunc(sandbox_serial_initialize);
Marek Vasut8b029db2012-09-14 22:34:22 +0200151serial_initfunc(clps7111_serial_initialize);
Marek Vasut7882e7c2012-09-14 22:34:51 +0200152serial_initfunc(imx_serial_initialize);
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200153serial_initfunc(ixp_serial_initialize);
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200154serial_initfunc(ks8695_serial_initialize);
Marek Vasut1f673b42012-09-14 22:36:27 +0200155serial_initfunc(lh7a40x_serial_initialize);
Marek Vasut7cd851a2012-09-14 22:37:17 +0200156serial_initfunc(max3100_serial_initialize);
Marek Vasuta9434722012-09-14 22:37:43 +0200157serial_initfunc(mxc_serial_initialize);
Marek Vasut39f61472012-09-14 22:38:46 +0200158serial_initfunc(pl01x_serial_initialize);
Marek Vasuteb507662012-09-14 22:39:19 +0200159serial_initfunc(s3c44b0_serial_initialize);
Marek Vasuta30a4222012-09-14 22:39:44 +0200160serial_initfunc(sa1100_serial_initialize);
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200161serial_initfunc(sh_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200162
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000163/**
164 * serial_register() - Register serial driver with serial driver core
165 * @dev: Pointer to the serial driver structure
166 *
167 * This function registers the serial driver supplied via @dev with
168 * serial driver core, thus making U-Boot aware of it and making it
169 * available for U-Boot to use. On platforms that still require manual
170 * relocation of constant variables, relocation of the supplied structure
171 * is performed.
172 */
Mike Frysingerc52b4f72011-04-29 18:03:30 +0000173void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +0000174{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200175#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutf2760c42012-09-16 18:54:22 +0200176 if (dev->start)
177 dev->start += gd->reloc_off;
178 if (dev->stop)
179 dev->stop += gd->reloc_off;
180 if (dev->setbrg)
181 dev->setbrg += gd->reloc_off;
182 if (dev->getc)
183 dev->getc += gd->reloc_off;
184 if (dev->tstc)
185 dev->tstc += gd->reloc_off;
186 if (dev->putc)
187 dev->putc += gd->reloc_off;
188 if (dev->puts)
189 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500190#endif
wdenk281e00a2004-08-01 22:48:16 +0000191
192 dev->next = serial_devices;
193 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +0000194}
195
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000196/**
197 * serial_initialize() - Register all compiled-in serial port drivers
198 *
199 * This function registers all serial port drivers that are compiled
200 * into the U-Boot binary with the serial core, thus making them
201 * available to U-Boot to use. Lastly, this function assigns a default
202 * serial port to the serial core. That serial port is then used as a
203 * default output.
204 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000205void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +0000206{
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200207 mpc8xx_serial_initialize();
Marek Vasutabc0ed82012-09-12 20:02:05 +0200208 ns16550_serial_initialize();
Marek Vasut1fe5c112012-09-12 13:57:58 +0200209 pxa_serial_initialize();
Marek Vasut28af6382012-09-12 16:01:16 +0200210 s3c24xx_serial_initialize();
Marek Vasutb4980512012-09-12 19:39:57 +0200211 s5p_serial_initialize();
Marek Vasut918327c2012-09-12 19:50:18 +0200212 mpc512x_serial_initialize();
Marek Vasut5ae1de02012-09-12 20:07:54 +0200213 bfin_serial_initialize();
Marek Vasut41651ca2012-09-13 00:02:54 +0200214 bfin_jtag_initialize();
Marek Vasut87d69222012-09-12 19:45:58 +0200215 uartlite_serial_initialize();
Tom Rini51d81022012-10-08 14:46:23 -0700216 zynq_serial_initalize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200217 au1x00_serial_initialize();
Marek Vasut01911422012-09-13 01:20:07 +0200218 asc_serial_initialize();
Marek Vasut6cb32732012-09-13 01:20:59 +0200219 jz_serial_initialize();
Marek Vasutb57c6522012-09-13 01:26:42 +0200220 mpc5xx_serial_initialize();
Marek Vasutd68f4da2012-09-13 01:34:16 +0200221 mpc8260_scc_serial_initialize();
222 mpc8260_smc_serial_initialize();
Marek Vasut7a311542012-09-13 01:38:52 +0200223 mpc85xx_serial_initialize();
Marek Vasutfcc20742012-09-13 01:40:33 +0200224 iop480_serial_initialize();
Marek Vasutaf7be3b2012-09-13 12:25:07 +0200225 leon2_serial_initialize();
Marek Vasut29b5ff72012-09-13 12:25:48 +0200226 leon3_serial_initialize();
Marek Vasutafe4c382012-09-13 12:26:39 +0200227 marvell_serial_initialize();
Marek Vasut5dee6f52012-09-13 12:27:37 +0200228 amirix_serial_initialize();
Marek Vasutc45a14a2012-09-13 12:28:07 +0200229 bmw_serial_initialize();
Marek Vasutd25c39d2012-09-13 12:29:31 +0200230 cogent_serial_initialize();
Marek Vasut619c90b2012-09-13 12:32:56 +0200231 cpci750_serial_initialize();
Marek Vasut829b3b22012-09-13 12:33:50 +0200232 evb64260_serial_initialize();
Marek Vasutd126f282012-09-13 12:34:24 +0200233 ml2_serial_initialize();
Marek Vasut26d8eaa2012-09-13 12:34:49 +0200234 sconsole_serial_initialize();
Marek Vasut088a4f32012-09-13 12:35:54 +0200235 p3mx_serial_initialize();
Marek Vasut8c085752012-09-13 16:48:50 +0200236 altera_jtag_serial_initialize();
Marek Vasutb207d642012-09-13 16:49:51 +0200237 altera_serial_initialize();
Marek Vasutcfba4572012-09-13 16:50:30 +0200238 atmel_serial_initialize();
Marek Vasute503f902012-09-13 16:51:02 +0200239 lpc32xx_serial_initialize();
Marek Vasutabaef692012-09-13 16:51:38 +0200240 mcf_serial_initialize();
Marek Vasut69ea8072012-09-13 16:52:38 +0200241 oc_serial_initialize();
Marek Vasutcef46b72012-09-14 22:33:21 +0200242 sandbox_serial_initialize();
Marek Vasut8b029db2012-09-14 22:34:22 +0200243 clps7111_serial_initialize();
Marek Vasut7882e7c2012-09-14 22:34:51 +0200244 imx_serial_initialize();
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200245 ixp_serial_initialize();
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200246 ks8695_serial_initialize();
Marek Vasut1f673b42012-09-14 22:36:27 +0200247 lh7a40x_serial_initialize();
Marek Vasut7cd851a2012-09-14 22:37:17 +0200248 max3100_serial_initialize();
Marek Vasuta9434722012-09-14 22:37:43 +0200249 mxc_serial_initialize();
Marek Vasut39f61472012-09-14 22:38:46 +0200250 pl01x_serial_initialize();
Marek Vasuteb507662012-09-14 22:39:19 +0200251 s3c44b0_serial_initialize();
Marek Vasuta30a4222012-09-14 22:39:44 +0200252 sa1100_serial_initialize();
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200253 sh_serial_initialize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200254
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000255 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000256}
257
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000258/**
259 * serial_stdio_init() - Register serial ports with STDIO core
260 *
261 * This function generates a proxy driver for each serial port driver.
262 * These proxy drivers then register with the STDIO core, making the
263 * serial drivers available as STDIO devices.
264 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000265void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000266{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200267 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000268 struct serial_device *s = serial_devices;
269
wdenk2ee66532004-10-11 22:43:02 +0000270 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000271 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000272
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000273 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000274 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
275
Marek Vasut89143fb2012-09-07 14:35:31 +0200276 dev.start = s->start;
277 dev.stop = s->stop;
wdenk281e00a2004-08-01 22:48:16 +0000278 dev.putc = s->putc;
279 dev.puts = s->puts;
280 dev.getc = s->getc;
281 dev.tstc = s->tstc;
282
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000283 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000284
285 s = s->next;
286 }
287}
288
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000289/**
290 * serial_assign() - Select the serial output device by name
291 * @name: Name of the serial driver to be used as default output
292 *
293 * This function configures the serial output multiplexing by
294 * selecting which serial device will be used as default. In case
295 * the STDIO "serial" device is selected as stdin/stdout/stderr,
296 * the serial device previously configured by this function will be
297 * used for the particular operation.
298 *
299 * Returns 0 on success, negative on error.
300 */
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000301int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000302{
303 struct serial_device *s;
304
wdenk2ee66532004-10-11 22:43:02 +0000305 for (s = serial_devices; s; s = s->next) {
Marek Vasut6d93e252012-10-06 14:07:03 +0000306 if (strcmp(s->name, name))
307 continue;
308 serial_current = s;
309 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000310 }
311
Marek Vasut6d93e252012-10-06 14:07:03 +0000312 return -EINVAL;
wdenk281e00a2004-08-01 22:48:16 +0000313}
314
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000315/**
316 * serial_reinit_all() - Reinitialize all compiled-in serial ports
317 *
318 * This function reinitializes all serial ports that are compiled
319 * into U-Boot by calling their serial_start() functions.
320 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000321void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000322{
323 struct serial_device *s;
324
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000325 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200326 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000327}
328
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000329/**
330 * get_current() - Return pointer to currently selected serial port
331 *
332 * This function returns a pointer to currently selected serial port.
333 * The currently selected serial port is altered by serial_assign()
334 * function.
335 *
336 * In case this function is called before relocation or before any serial
337 * port is configured, this function calls default_serial_console() to
338 * determine the serial port. Otherwise, the configured serial port is
339 * returned.
340 *
341 * Returns pointer to the currently selected serial port on success,
342 * NULL on error.
343 */
Simon Glass857c2832011-08-19 11:09:43 +0000344static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000345{
Simon Glass857c2832011-08-19 11:09:43 +0000346 struct serial_device *dev;
347
Marek Vasutdee19412012-10-06 14:07:04 +0000348 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass857c2832011-08-19 11:09:43 +0000349 dev = default_serial_console();
Marek Vasutdee19412012-10-06 14:07:04 +0000350 else if (!serial_current)
351 dev = default_serial_console();
352 else
Simon Glass857c2832011-08-19 11:09:43 +0000353 dev = serial_current;
Marek Vasutdee19412012-10-06 14:07:04 +0000354
355 /* We must have a console device */
356 if (!dev) {
357#ifdef CONFIG_SPL_BUILD
358 puts("Cannot find console\n");
359 hang();
360#else
361 panic("Cannot find console\n");
362#endif
363 }
364
Simon Glass857c2832011-08-19 11:09:43 +0000365 return dev;
366}
wdenk281e00a2004-08-01 22:48:16 +0000367
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000368/**
369 * serial_init() - Initialize currently selected serial port
370 *
371 * This function initializes the currently selected serial port. This
372 * usually involves setting up the registers of that particular port,
373 * enabling clock and such. This function uses the get_current() call
374 * to determine which port is selected.
375 *
376 * Returns 0 on success, negative on error.
377 */
Simon Glass857c2832011-08-19 11:09:43 +0000378int serial_init(void)
379{
Marek Vasut89143fb2012-09-07 14:35:31 +0200380 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000381}
382
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000383/**
384 * serial_setbrg() - Configure baud-rate of currently selected serial port
385 *
386 * This function configures the baud-rate of the currently selected
387 * serial port. The baud-rate is retrieved from global data within
388 * the serial port driver. This function uses the get_current() call
389 * to determine which port is selected.
390 *
391 * Returns 0 on success, negative on error.
392 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000393void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000394{
Simon Glass857c2832011-08-19 11:09:43 +0000395 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000396}
397
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000398/**
399 * serial_getc() - Read character from currently selected serial port
400 *
401 * This function retrieves a character from currently selected serial
402 * port. In case there is no character waiting on the serial port,
403 * this function will block and wait for the character to appear. This
404 * function uses the get_current() call to determine which port is
405 * selected.
406 *
407 * Returns the character on success, negative on error.
408 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000409int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000410{
Simon Glass857c2832011-08-19 11:09:43 +0000411 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000412}
413
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000414/**
415 * serial_tstc() - Test if data is available on currently selected serial port
416 *
417 * This function tests if one or more characters are available on
418 * currently selected serial port. This function never blocks. This
419 * function uses the get_current() call to determine which port is
420 * selected.
421 *
422 * Returns positive if character is available, zero otherwise.
423 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000424int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000425{
Simon Glass857c2832011-08-19 11:09:43 +0000426 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000427}
428
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000429/**
430 * serial_putc() - Output character via currently selected serial port
431 * @c: Single character to be output from the serial port.
432 *
433 * This function outputs a character via currently selected serial
434 * port. This character is passed to the serial port driver responsible
435 * for controlling the hardware. The hardware may still be in process
436 * of transmitting another character, therefore this function may block
437 * for a short amount of time. This function uses the get_current()
438 * call to determine which port is selected.
439 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000440void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000441{
Simon Glass857c2832011-08-19 11:09:43 +0000442 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000443}
444
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000445/**
446 * serial_puts() - Output string via currently selected serial port
447 * @s: Zero-terminated string to be output from the serial port.
448 *
449 * This function outputs a zero-terminated string via currently
450 * selected serial port. This function behaves as an accelerator
451 * in case the hardware can queue multiple characters for transfer.
452 * The whole string that is to be output is available to the function
453 * implementing the hardware manipulation. Transmitting the whole
454 * string may take some time, thus this function may block for some
455 * amount of time. This function uses the get_current() call to
456 * determine which port is selected.
457 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000458void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000459{
Simon Glass857c2832011-08-19 11:09:43 +0000460 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000461}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000462
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000463/**
464 * default_serial_puts() - Output string by calling serial_putc() in loop
465 * @s: Zero-terminated string to be output from the serial port.
466 *
467 * This function outputs a zero-terminated string by calling serial_putc()
468 * in a loop. Most drivers do not support queueing more than one byte for
469 * transfer, thus this function precisely implements their serial_puts().
470 *
471 * To optimize the number of get_current() calls, this function only
472 * calls get_current() once and then directly accesses the putc() call
473 * of the &struct serial_device .
474 */
Marek Vasutbfb7d7a2012-10-06 14:07:01 +0000475void default_serial_puts(const char *s)
476{
477 struct serial_device *dev = get_current();
478 while (*s)
479 dev->putc(*s++);
480}
481
Mike Frysinger7b826c22011-05-14 06:56:15 +0000482#if CONFIG_POST & CONFIG_SYS_POST_UART
483static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
484
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000485/**
486 * uart_post_test() - Test the currently selected serial port using POST
487 * @flags: POST framework flags
488 *
489 * Do a loopback test of the currently selected serial port. This
490 * function is only useful in the context of the POST testing framwork.
491 * The serial port is firstly configured into loopback mode and then
492 * characters are sent through it.
493 *
494 * Returns 0 on success, value otherwise.
495 */
Mike Frysinger7b826c22011-05-14 06:56:15 +0000496/* Mark weak until post/cpu/.../uart.c migrate over */
497__weak
498int uart_post_test(int flags)
499{
500 unsigned char c;
501 int ret, saved_baud, b;
502 struct serial_device *saved_dev, *s;
503 bd_t *bd = gd->bd;
504
505 /* Save current serial state */
506 ret = 0;
507 saved_dev = serial_current;
508 saved_baud = bd->bi_baudrate;
509
510 for (s = serial_devices; s; s = s->next) {
511 /* If this driver doesn't support loop back, skip it */
512 if (!s->loop)
513 continue;
514
515 /* Test the next device */
516 serial_current = s;
517
518 ret = serial_init();
519 if (ret)
520 goto done;
521
522 /* Consume anything that happens to be queued */
523 while (serial_tstc())
524 serial_getc();
525
526 /* Enable loop back */
527 s->loop(1);
528
529 /* Test every available baud rate */
530 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
531 bd->bi_baudrate = bauds[b];
532 serial_setbrg();
533
534 /*
535 * Stick to printable chars to avoid issues:
536 * - terminal corruption
537 * - serial program reacting to sequences and sending
538 * back random extra data
539 * - most serial drivers add in extra chars (like \r\n)
540 */
541 for (c = 0x20; c < 0x7f; ++c) {
542 /* Send it out */
543 serial_putc(c);
544
545 /* Make sure it's the same one */
546 ret = (c != serial_getc());
547 if (ret) {
548 s->loop(0);
549 goto done;
550 }
551
552 /* Clean up the output in case it was sent */
553 serial_putc('\b');
554 ret = ('\b' != serial_getc());
555 if (ret) {
556 s->loop(0);
557 goto done;
558 }
559 }
560 }
561
562 /* Disable loop back */
563 s->loop(0);
564
Marek Vasut89143fb2012-09-07 14:35:31 +0200565 /* XXX: There is no serial_stop() !? */
566 if (s->stop)
567 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000568 }
569
570 done:
571 /* Restore previous serial state */
572 serial_current = saved_dev;
573 bd->bi_baudrate = saved_baud;
574 serial_reinit_all();
575 serial_setbrg();
576
577 return ret;
578}
579#endif