blob: daa80038a71ddc507fa594a95c575e6823393764 [file] [log] [blame]
wdenk7ac16102004-08-01 22:48:16 +00001/*
2 * (C) Copyright 2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
Joe Hershberger3928bb62012-12-11 22:16:27 -060025#include <environment.h>
wdenk7ac16102004-08-01 22:48:16 +000026#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020027#include <stdio_dev.h>
Mike Frysinger078f2f12011-05-14 06:56:15 +000028#include <post.h>
29#include <linux/compiler.h>
Marek Vasut0e1b5772012-10-06 14:07:03 +000030#include <errno.h>
wdenk7ac16102004-08-01 22:48:16 +000031
Wolfgang Denk6405a152006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
33
Gerlando Falauto34148d62011-11-18 06:49:11 +000034static struct serial_device *serial_devices;
35static struct serial_device *serial_current;
Joe Hershberger3928bb62012-12-11 22:16:27 -060036/*
37 * Table with supported baudrates (defined in config_xyz.h)
38 */
39static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
40#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
wdenk7ac16102004-08-01 22:48:16 +000041
Marek Vasut95656ea2012-10-08 11:36:39 +000042/**
43 * serial_null() - Void registration routine of a serial driver
44 *
45 * This routine implements a void registration routine of a serial
46 * driver. The registration routine of a particular driver is aliased
47 * to this empty function in case the driver is not compiled into
48 * U-Boot.
49 */
Marek Vasutf6af0482012-09-12 17:49:58 +020050static void serial_null(void)
51{
Joe Hershberger3928bb62012-12-11 22:16:27 -060052}
53
54/**
55 * on_baudrate() - Update the actual baudrate when the env var changes
56 *
57 * This will check for a valid baudrate and only apply it if valid.
58 */
59static int on_baudrate(const char *name, const char *value, enum env_op op,
60 int flags)
61{
62 int i;
63 int baudrate;
64
65 switch (op) {
66 case env_op_create:
67 case env_op_overwrite:
68 /*
69 * Switch to new baudrate if new baudrate is supported
70 */
71 baudrate = simple_strtoul(value, NULL, 10);
72
73 /* Not actually changing */
74 if (gd->baudrate == baudrate)
75 return 0;
76
77 for (i = 0; i < N_BAUDRATES; ++i) {
78 if (baudrate == baudrate_table[i])
79 break;
80 }
81 if (i == N_BAUDRATES) {
82 if ((flags & H_FORCE) == 0)
83 printf("## Baudrate %d bps not supported\n",
84 baudrate);
85 return 1;
86 }
87 if ((flags & H_INTERACTIVE) != 0) {
88 printf("## Switch baudrate to %d"
89 " bps and press ENTER ...\n", baudrate);
90 udelay(50000);
91 }
92
93 gd->baudrate = baudrate;
94#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
95 gd->bd->bi_baudrate = baudrate;
96#endif
97
98 serial_setbrg();
99
100 udelay(50000);
101
102 if ((flags & H_INTERACTIVE) != 0)
103 while (1) {
104 if (getc() == '\r')
105 break;
106 }
107
108 return 0;
109 case env_op_delete:
110 printf("## Baudrate may not be deleted\n");
111 return 1;
112 default:
113 return 0;
114 }
Marek Vasutf6af0482012-09-12 17:49:58 +0200115}
Joe Hershberger3928bb62012-12-11 22:16:27 -0600116U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
Marek Vasutf6af0482012-09-12 17:49:58 +0200117
Marek Vasut95656ea2012-10-08 11:36:39 +0000118/**
119 * serial_initfunc() - Forward declare of driver registration routine
120 * @name: Name of the real driver registration routine.
121 *
122 * This macro expands onto forward declaration of a driver registration
123 * routine, which is then used below in serial_initialize() function.
124 * The declaration is made weak and aliases to serial_null() so in case
125 * the driver is not compiled in, the function is still declared and can
126 * be used, but aliases to serial_null() and thus is optimized away.
127 */
Marek Vasutf6af0482012-09-12 17:49:58 +0200128#define serial_initfunc(name) \
129 void name(void) \
130 __attribute__((weak, alias("serial_null")));
131
Marek Vasut419d8942012-09-12 13:50:56 +0200132serial_initfunc(mpc8xx_serial_initialize);
Marek Vasut3f085062012-09-12 20:02:05 +0200133serial_initfunc(ns16550_serial_initialize);
Marek Vasutf3442012012-09-12 13:57:58 +0200134serial_initfunc(pxa_serial_initialize);
Marek Vasutb3e48aa2012-09-12 16:01:16 +0200135serial_initfunc(s3c24xx_serial_initialize);
Marek Vasut533e31e2012-09-12 19:39:57 +0200136serial_initfunc(s5p_serial_initialize);
Tom Rini354531e2012-10-08 14:46:23 -0700137serial_initfunc(zynq_serial_initalize);
Marek Vasut840b7242012-09-12 20:07:54 +0200138serial_initfunc(bfin_serial_initialize);
Marek Vasut3862c4a2012-09-13 00:02:54 +0200139serial_initfunc(bfin_jtag_initialize);
Marek Vasutf9bf9662012-09-12 19:50:18 +0200140serial_initfunc(mpc512x_serial_initialize);
Marek Vasutd97fb5c2012-09-12 19:45:58 +0200141serial_initfunc(uartlite_serial_initialize);
Marek Vasut01f9ea82012-09-13 01:16:50 +0200142serial_initfunc(au1x00_serial_initialize);
Marek Vasut2a9d9352012-09-13 01:20:07 +0200143serial_initfunc(asc_serial_initialize);
Marek Vasut76cb60d2012-09-13 01:20:59 +0200144serial_initfunc(jz_serial_initialize);
Marek Vasut58698e72012-09-13 01:26:42 +0200145serial_initfunc(mpc5xx_serial_initialize);
Marek Vasut18a47792012-09-13 01:34:16 +0200146serial_initfunc(mpc8260_scc_serial_initialize);
147serial_initfunc(mpc8260_smc_serial_initialize);
Marek Vasutc5485452012-09-13 01:38:52 +0200148serial_initfunc(mpc85xx_serial_initialize);
Marek Vasuta29555c2012-09-13 01:40:33 +0200149serial_initfunc(iop480_serial_initialize);
Marek Vasut8330d1e2012-09-13 12:25:07 +0200150serial_initfunc(leon2_serial_initialize);
Marek Vasut2c91a962012-09-13 12:25:48 +0200151serial_initfunc(leon3_serial_initialize);
Marek Vasut4c2ced32012-09-13 12:26:39 +0200152serial_initfunc(marvell_serial_initialize);
Marek Vasut42cde132012-09-13 12:27:37 +0200153serial_initfunc(amirix_serial_initialize);
Marek Vasutbf5314b2012-09-13 12:28:07 +0200154serial_initfunc(bmw_serial_initialize);
Marek Vasutf7284022012-09-13 12:29:31 +0200155serial_initfunc(cogent_serial_initialize);
Marek Vasut7aa03ef2012-09-13 12:32:56 +0200156serial_initfunc(cpci750_serial_initialize);
Marek Vasutadede692012-09-13 12:33:50 +0200157serial_initfunc(evb64260_serial_initialize);
Marek Vasute67241b2012-09-13 12:34:24 +0200158serial_initfunc(ml2_serial_initialize);
Marek Vasut4750eed2012-09-13 12:34:49 +0200159serial_initfunc(sconsole_serial_initialize);
Marek Vasut4dfb1d02012-09-13 12:35:54 +0200160serial_initfunc(p3mx_serial_initialize);
Marek Vasut4b026392012-09-13 16:48:50 +0200161serial_initfunc(altera_jtag_serial_initialize);
Marek Vasute9d0e3c2012-09-13 16:49:51 +0200162serial_initfunc(altera_serial_initialize);
Marek Vasutff093ed2012-09-13 16:50:30 +0200163serial_initfunc(atmel_serial_initialize);
Marek Vasuta1207aa2012-09-13 16:51:02 +0200164serial_initfunc(lpc32xx_serial_initialize);
Marek Vasut96e8ff62012-09-13 16:51:38 +0200165serial_initfunc(mcf_serial_initialize);
Marek Vasutfcb9ef82012-09-13 16:52:38 +0200166serial_initfunc(oc_serial_initialize);
Marek Vasut289c3002012-09-14 22:33:21 +0200167serial_initfunc(sandbox_serial_initialize);
Marek Vasut30916a42012-09-14 22:34:22 +0200168serial_initfunc(clps7111_serial_initialize);
Marek Vasut9784bde2012-09-14 22:34:51 +0200169serial_initfunc(imx_serial_initialize);
Marek Vasutdde37342012-09-14 22:35:14 +0200170serial_initfunc(ixp_serial_initialize);
Marek Vasut5ee46562012-09-14 22:35:43 +0200171serial_initfunc(ks8695_serial_initialize);
Marek Vasut58177b72012-09-14 22:36:27 +0200172serial_initfunc(lh7a40x_serial_initialize);
Marek Vasut00797862012-09-14 22:37:17 +0200173serial_initfunc(max3100_serial_initialize);
Marek Vasut64c60552012-09-14 22:37:43 +0200174serial_initfunc(mxc_serial_initialize);
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200175serial_initfunc(pl01x_serial_initialize);
Marek Vasut9776a442012-09-14 22:39:19 +0200176serial_initfunc(s3c44b0_serial_initialize);
Marek Vasut0d19c022012-09-14 22:39:44 +0200177serial_initfunc(sa1100_serial_initialize);
Marek Vasut904d3d72012-09-14 22:40:08 +0200178serial_initfunc(sh_serial_initialize);
Marek Vasut419d8942012-09-12 13:50:56 +0200179
Marek Vasut95656ea2012-10-08 11:36:39 +0000180/**
181 * serial_register() - Register serial driver with serial driver core
182 * @dev: Pointer to the serial driver structure
183 *
184 * This function registers the serial driver supplied via @dev with
185 * serial driver core, thus making U-Boot aware of it and making it
186 * available for U-Boot to use. On platforms that still require manual
187 * relocation of constant variables, relocation of the supplied structure
188 * is performed.
189 */
Mike Frysingerffadc822011-04-29 18:03:30 +0000190void serial_register(struct serial_device *dev)
wdenk7ac16102004-08-01 22:48:16 +0000191{
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200192#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut2206b342012-09-16 18:54:22 +0200193 if (dev->start)
194 dev->start += gd->reloc_off;
195 if (dev->stop)
196 dev->stop += gd->reloc_off;
197 if (dev->setbrg)
198 dev->setbrg += gd->reloc_off;
199 if (dev->getc)
200 dev->getc += gd->reloc_off;
201 if (dev->tstc)
202 dev->tstc += gd->reloc_off;
203 if (dev->putc)
204 dev->putc += gd->reloc_off;
205 if (dev->puts)
206 dev->puts += gd->reloc_off;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500207#endif
wdenk7ac16102004-08-01 22:48:16 +0000208
209 dev->next = serial_devices;
210 serial_devices = dev;
wdenk7ac16102004-08-01 22:48:16 +0000211}
212
Marek Vasut95656ea2012-10-08 11:36:39 +0000213/**
214 * serial_initialize() - Register all compiled-in serial port drivers
215 *
216 * This function registers all serial port drivers that are compiled
217 * into the U-Boot binary with the serial core, thus making them
218 * available to U-Boot to use. Lastly, this function assigns a default
219 * serial port to the serial core. That serial port is then used as a
220 * default output.
221 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000222void serial_initialize(void)
wdenk7ac16102004-08-01 22:48:16 +0000223{
Marek Vasut419d8942012-09-12 13:50:56 +0200224 mpc8xx_serial_initialize();
Marek Vasut3f085062012-09-12 20:02:05 +0200225 ns16550_serial_initialize();
Marek Vasutf3442012012-09-12 13:57:58 +0200226 pxa_serial_initialize();
Marek Vasutb3e48aa2012-09-12 16:01:16 +0200227 s3c24xx_serial_initialize();
Marek Vasut533e31e2012-09-12 19:39:57 +0200228 s5p_serial_initialize();
Marek Vasutf9bf9662012-09-12 19:50:18 +0200229 mpc512x_serial_initialize();
Marek Vasut840b7242012-09-12 20:07:54 +0200230 bfin_serial_initialize();
Marek Vasut3862c4a2012-09-13 00:02:54 +0200231 bfin_jtag_initialize();
Marek Vasutd97fb5c2012-09-12 19:45:58 +0200232 uartlite_serial_initialize();
Tom Rini354531e2012-10-08 14:46:23 -0700233 zynq_serial_initalize();
Marek Vasut01f9ea82012-09-13 01:16:50 +0200234 au1x00_serial_initialize();
Marek Vasut2a9d9352012-09-13 01:20:07 +0200235 asc_serial_initialize();
Marek Vasut76cb60d2012-09-13 01:20:59 +0200236 jz_serial_initialize();
Marek Vasut58698e72012-09-13 01:26:42 +0200237 mpc5xx_serial_initialize();
Marek Vasut18a47792012-09-13 01:34:16 +0200238 mpc8260_scc_serial_initialize();
239 mpc8260_smc_serial_initialize();
Marek Vasutc5485452012-09-13 01:38:52 +0200240 mpc85xx_serial_initialize();
Marek Vasuta29555c2012-09-13 01:40:33 +0200241 iop480_serial_initialize();
Marek Vasut8330d1e2012-09-13 12:25:07 +0200242 leon2_serial_initialize();
Marek Vasut2c91a962012-09-13 12:25:48 +0200243 leon3_serial_initialize();
Marek Vasut4c2ced32012-09-13 12:26:39 +0200244 marvell_serial_initialize();
Marek Vasut42cde132012-09-13 12:27:37 +0200245 amirix_serial_initialize();
Marek Vasutbf5314b2012-09-13 12:28:07 +0200246 bmw_serial_initialize();
Marek Vasutf7284022012-09-13 12:29:31 +0200247 cogent_serial_initialize();
Marek Vasut7aa03ef2012-09-13 12:32:56 +0200248 cpci750_serial_initialize();
Marek Vasutadede692012-09-13 12:33:50 +0200249 evb64260_serial_initialize();
Marek Vasute67241b2012-09-13 12:34:24 +0200250 ml2_serial_initialize();
Marek Vasut4750eed2012-09-13 12:34:49 +0200251 sconsole_serial_initialize();
Marek Vasut4dfb1d02012-09-13 12:35:54 +0200252 p3mx_serial_initialize();
Marek Vasut4b026392012-09-13 16:48:50 +0200253 altera_jtag_serial_initialize();
Marek Vasute9d0e3c2012-09-13 16:49:51 +0200254 altera_serial_initialize();
Marek Vasutff093ed2012-09-13 16:50:30 +0200255 atmel_serial_initialize();
Marek Vasuta1207aa2012-09-13 16:51:02 +0200256 lpc32xx_serial_initialize();
Marek Vasut96e8ff62012-09-13 16:51:38 +0200257 mcf_serial_initialize();
Marek Vasutfcb9ef82012-09-13 16:52:38 +0200258 oc_serial_initialize();
Marek Vasut289c3002012-09-14 22:33:21 +0200259 sandbox_serial_initialize();
Marek Vasut30916a42012-09-14 22:34:22 +0200260 clps7111_serial_initialize();
Marek Vasut9784bde2012-09-14 22:34:51 +0200261 imx_serial_initialize();
Marek Vasutdde37342012-09-14 22:35:14 +0200262 ixp_serial_initialize();
Marek Vasut5ee46562012-09-14 22:35:43 +0200263 ks8695_serial_initialize();
Marek Vasut58177b72012-09-14 22:36:27 +0200264 lh7a40x_serial_initialize();
Marek Vasut00797862012-09-14 22:37:17 +0200265 max3100_serial_initialize();
Marek Vasut64c60552012-09-14 22:37:43 +0200266 mxc_serial_initialize();
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200267 pl01x_serial_initialize();
Marek Vasut9776a442012-09-14 22:39:19 +0200268 s3c44b0_serial_initialize();
Marek Vasut0d19c022012-09-14 22:39:44 +0200269 sa1100_serial_initialize();
Marek Vasut904d3d72012-09-14 22:40:08 +0200270 sh_serial_initialize();
Marek Vasut01f9ea82012-09-13 01:16:50 +0200271
Gerlando Falauto34148d62011-11-18 06:49:11 +0000272 serial_assign(default_serial_console()->name);
wdenk7ac16102004-08-01 22:48:16 +0000273}
274
Marek Vasut95656ea2012-10-08 11:36:39 +0000275/**
276 * serial_stdio_init() - Register serial ports with STDIO core
277 *
278 * This function generates a proxy driver for each serial port driver.
279 * These proxy drivers then register with the STDIO core, making the
280 * serial drivers available as STDIO devices.
281 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000282void serial_stdio_init(void)
wdenk7ac16102004-08-01 22:48:16 +0000283{
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200284 struct stdio_dev dev;
wdenk7ac16102004-08-01 22:48:16 +0000285 struct serial_device *s = serial_devices;
286
wdenk8f08c5b2004-10-11 22:43:02 +0000287 while (s) {
Gerlando Falauto34148d62011-11-18 06:49:11 +0000288 memset(&dev, 0, sizeof(dev));
wdenk7ac16102004-08-01 22:48:16 +0000289
Gerlando Falauto34148d62011-11-18 06:49:11 +0000290 strcpy(dev.name, s->name);
wdenk7ac16102004-08-01 22:48:16 +0000291 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
292
Marek Vasutb46931d2012-09-07 14:35:31 +0200293 dev.start = s->start;
294 dev.stop = s->stop;
wdenk7ac16102004-08-01 22:48:16 +0000295 dev.putc = s->putc;
296 dev.puts = s->puts;
297 dev.getc = s->getc;
298 dev.tstc = s->tstc;
299
Gerlando Falauto34148d62011-11-18 06:49:11 +0000300 stdio_register(&dev);
wdenk7ac16102004-08-01 22:48:16 +0000301
302 s = s->next;
303 }
304}
305
Marek Vasut95656ea2012-10-08 11:36:39 +0000306/**
307 * serial_assign() - Select the serial output device by name
308 * @name: Name of the serial driver to be used as default output
309 *
310 * This function configures the serial output multiplexing by
311 * selecting which serial device will be used as default. In case
312 * the STDIO "serial" device is selected as stdin/stdout/stderr,
313 * the serial device previously configured by this function will be
314 * used for the particular operation.
315 *
316 * Returns 0 on success, negative on error.
317 */
Gerlando Falauto92999582011-11-18 06:49:12 +0000318int serial_assign(const char *name)
wdenk7ac16102004-08-01 22:48:16 +0000319{
320 struct serial_device *s;
321
wdenk8f08c5b2004-10-11 22:43:02 +0000322 for (s = serial_devices; s; s = s->next) {
Marek Vasut0e1b5772012-10-06 14:07:03 +0000323 if (strcmp(s->name, name))
324 continue;
325 serial_current = s;
326 return 0;
wdenk7ac16102004-08-01 22:48:16 +0000327 }
328
Marek Vasut0e1b5772012-10-06 14:07:03 +0000329 return -EINVAL;
wdenk7ac16102004-08-01 22:48:16 +0000330}
331
Marek Vasut95656ea2012-10-08 11:36:39 +0000332/**
333 * serial_reinit_all() - Reinitialize all compiled-in serial ports
334 *
335 * This function reinitializes all serial ports that are compiled
336 * into U-Boot by calling their serial_start() functions.
337 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000338void serial_reinit_all(void)
wdenk7ac16102004-08-01 22:48:16 +0000339{
340 struct serial_device *s;
341
Gerlando Falauto34148d62011-11-18 06:49:11 +0000342 for (s = serial_devices; s; s = s->next)
Marek Vasutb46931d2012-09-07 14:35:31 +0200343 s->start();
wdenk7ac16102004-08-01 22:48:16 +0000344}
345
Marek Vasut95656ea2012-10-08 11:36:39 +0000346/**
347 * get_current() - Return pointer to currently selected serial port
348 *
349 * This function returns a pointer to currently selected serial port.
350 * The currently selected serial port is altered by serial_assign()
351 * function.
352 *
353 * In case this function is called before relocation or before any serial
354 * port is configured, this function calls default_serial_console() to
355 * determine the serial port. Otherwise, the configured serial port is
356 * returned.
357 *
358 * Returns pointer to the currently selected serial port on success,
359 * NULL on error.
360 */
Simon Glass8f4e6f12011-08-19 11:09:43 +0000361static struct serial_device *get_current(void)
wdenk7ac16102004-08-01 22:48:16 +0000362{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000363 struct serial_device *dev;
364
Marek Vasutbdad8072012-10-06 14:07:04 +0000365 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass8f4e6f12011-08-19 11:09:43 +0000366 dev = default_serial_console();
Marek Vasutbdad8072012-10-06 14:07:04 +0000367 else if (!serial_current)
368 dev = default_serial_console();
369 else
370 dev = serial_current;
wdenk8f08c5b2004-10-11 22:43:02 +0000371
Marek Vasutbdad8072012-10-06 14:07:04 +0000372 /* We must have a console device */
373 if (!dev) {
Marek Vasuta6f63342012-09-15 10:33:51 +0200374#ifdef CONFIG_SPL_BUILD
Marek Vasutbdad8072012-10-06 14:07:04 +0000375 puts("Cannot find console\n");
376 hang();
Marek Vasuta6f63342012-09-15 10:33:51 +0200377#else
Marek Vasutbdad8072012-10-06 14:07:04 +0000378 panic("Cannot find console\n");
Marek Vasuta6f63342012-09-15 10:33:51 +0200379#endif
Marek Vasutbdad8072012-10-06 14:07:04 +0000380 }
381
Simon Glass8f4e6f12011-08-19 11:09:43 +0000382 return dev;
383}
wdenk7ac16102004-08-01 22:48:16 +0000384
Marek Vasut95656ea2012-10-08 11:36:39 +0000385/**
386 * serial_init() - Initialize currently selected serial port
387 *
388 * This function initializes the currently selected serial port. This
389 * usually involves setting up the registers of that particular port,
390 * enabling clock and such. This function uses the get_current() call
391 * to determine which port is selected.
392 *
393 * Returns 0 on success, negative on error.
394 */
Simon Glass8f4e6f12011-08-19 11:09:43 +0000395int serial_init(void)
396{
Marek Vasutb46931d2012-09-07 14:35:31 +0200397 return get_current()->start();
wdenk7ac16102004-08-01 22:48:16 +0000398}
399
Marek Vasut95656ea2012-10-08 11:36:39 +0000400/**
401 * serial_setbrg() - Configure baud-rate of currently selected serial port
402 *
403 * This function configures the baud-rate of the currently selected
404 * serial port. The baud-rate is retrieved from global data within
405 * the serial port driver. This function uses the get_current() call
406 * to determine which port is selected.
407 *
408 * Returns 0 on success, negative on error.
409 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000410void serial_setbrg(void)
wdenk7ac16102004-08-01 22:48:16 +0000411{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000412 get_current()->setbrg();
wdenk7ac16102004-08-01 22:48:16 +0000413}
414
Marek Vasut95656ea2012-10-08 11:36:39 +0000415/**
416 * serial_getc() - Read character from currently selected serial port
417 *
418 * This function retrieves a character from currently selected serial
419 * port. In case there is no character waiting on the serial port,
420 * this function will block and wait for the character to appear. This
421 * function uses the get_current() call to determine which port is
422 * selected.
423 *
424 * Returns the character on success, negative on error.
425 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000426int serial_getc(void)
wdenk7ac16102004-08-01 22:48:16 +0000427{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000428 return get_current()->getc();
wdenk7ac16102004-08-01 22:48:16 +0000429}
430
Marek Vasut95656ea2012-10-08 11:36:39 +0000431/**
432 * serial_tstc() - Test if data is available on currently selected serial port
433 *
434 * This function tests if one or more characters are available on
435 * currently selected serial port. This function never blocks. This
436 * function uses the get_current() call to determine which port is
437 * selected.
438 *
439 * Returns positive if character is available, zero otherwise.
440 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000441int serial_tstc(void)
wdenk7ac16102004-08-01 22:48:16 +0000442{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000443 return get_current()->tstc();
wdenk7ac16102004-08-01 22:48:16 +0000444}
445
Marek Vasut95656ea2012-10-08 11:36:39 +0000446/**
447 * serial_putc() - Output character via currently selected serial port
448 * @c: Single character to be output from the serial port.
449 *
450 * This function outputs a character via currently selected serial
451 * port. This character is passed to the serial port driver responsible
452 * for controlling the hardware. The hardware may still be in process
453 * of transmitting another character, therefore this function may block
454 * for a short amount of time. This function uses the get_current()
455 * call to determine which port is selected.
456 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000457void serial_putc(const char c)
wdenk7ac16102004-08-01 22:48:16 +0000458{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000459 get_current()->putc(c);
wdenk7ac16102004-08-01 22:48:16 +0000460}
461
Marek Vasut95656ea2012-10-08 11:36:39 +0000462/**
463 * serial_puts() - Output string via currently selected serial port
464 * @s: Zero-terminated string to be output from the serial port.
465 *
466 * This function outputs a zero-terminated string via currently
467 * selected serial port. This function behaves as an accelerator
468 * in case the hardware can queue multiple characters for transfer.
469 * The whole string that is to be output is available to the function
470 * implementing the hardware manipulation. Transmitting the whole
471 * string may take some time, thus this function may block for some
472 * amount of time. This function uses the get_current() call to
473 * determine which port is selected.
474 */
Gerlando Falauto34148d62011-11-18 06:49:11 +0000475void serial_puts(const char *s)
wdenk7ac16102004-08-01 22:48:16 +0000476{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000477 get_current()->puts(s);
wdenk7ac16102004-08-01 22:48:16 +0000478}
Mike Frysinger078f2f12011-05-14 06:56:15 +0000479
Marek Vasut95656ea2012-10-08 11:36:39 +0000480/**
481 * default_serial_puts() - Output string by calling serial_putc() in loop
482 * @s: Zero-terminated string to be output from the serial port.
483 *
484 * This function outputs a zero-terminated string by calling serial_putc()
485 * in a loop. Most drivers do not support queueing more than one byte for
486 * transfer, thus this function precisely implements their serial_puts().
487 *
488 * To optimize the number of get_current() calls, this function only
489 * calls get_current() once and then directly accesses the putc() call
490 * of the &struct serial_device .
491 */
Marek Vasut6b9124e2012-10-06 14:07:01 +0000492void default_serial_puts(const char *s)
493{
494 struct serial_device *dev = get_current();
495 while (*s)
496 dev->putc(*s++);
497}
498
Mike Frysinger078f2f12011-05-14 06:56:15 +0000499#if CONFIG_POST & CONFIG_SYS_POST_UART
500static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
501
Marek Vasut95656ea2012-10-08 11:36:39 +0000502/**
503 * uart_post_test() - Test the currently selected serial port using POST
504 * @flags: POST framework flags
505 *
506 * Do a loopback test of the currently selected serial port. This
507 * function is only useful in the context of the POST testing framwork.
508 * The serial port is firstly configured into loopback mode and then
509 * characters are sent through it.
510 *
511 * Returns 0 on success, value otherwise.
512 */
Mike Frysinger078f2f12011-05-14 06:56:15 +0000513/* Mark weak until post/cpu/.../uart.c migrate over */
514__weak
515int uart_post_test(int flags)
516{
517 unsigned char c;
518 int ret, saved_baud, b;
519 struct serial_device *saved_dev, *s;
520 bd_t *bd = gd->bd;
521
522 /* Save current serial state */
523 ret = 0;
524 saved_dev = serial_current;
525 saved_baud = bd->bi_baudrate;
526
527 for (s = serial_devices; s; s = s->next) {
528 /* If this driver doesn't support loop back, skip it */
529 if (!s->loop)
530 continue;
531
532 /* Test the next device */
533 serial_current = s;
534
535 ret = serial_init();
536 if (ret)
537 goto done;
538
539 /* Consume anything that happens to be queued */
540 while (serial_tstc())
541 serial_getc();
542
543 /* Enable loop back */
544 s->loop(1);
545
546 /* Test every available baud rate */
547 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
548 bd->bi_baudrate = bauds[b];
549 serial_setbrg();
550
551 /*
552 * Stick to printable chars to avoid issues:
553 * - terminal corruption
554 * - serial program reacting to sequences and sending
555 * back random extra data
556 * - most serial drivers add in extra chars (like \r\n)
557 */
558 for (c = 0x20; c < 0x7f; ++c) {
559 /* Send it out */
560 serial_putc(c);
561
562 /* Make sure it's the same one */
563 ret = (c != serial_getc());
564 if (ret) {
565 s->loop(0);
566 goto done;
567 }
568
569 /* Clean up the output in case it was sent */
570 serial_putc('\b');
571 ret = ('\b' != serial_getc());
572 if (ret) {
573 s->loop(0);
574 goto done;
575 }
576 }
577 }
578
579 /* Disable loop back */
580 s->loop(0);
581
Marek Vasutb46931d2012-09-07 14:35:31 +0200582 /* XXX: There is no serial_stop() !? */
583 if (s->stop)
584 s->stop();
Mike Frysinger078f2f12011-05-14 06:56:15 +0000585 }
586
587 done:
588 /* Restore previous serial state */
589 serial_current = saved_dev;
590 bd->bi_baudrate = saved_baud;
591 serial_reinit_all();
592 serial_setbrg();
593
594 return ret;
595}
596#endif