blob: e0886d562e198c9c89ce3bfd0200fb0a2d1d0682 [file] [log] [blame]
wdenk281e00a2004-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>
25#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020026#include <stdio_dev.h>
Mike Frysinger7b826c22011-05-14 06:56:15 +000027#include <post.h>
28#include <linux/compiler.h>
Marek Vasut6d93e252012-10-06 14:07:03 +000029#include <errno.h>
wdenk281e00a2004-08-01 22:48:16 +000030
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000033static struct serial_device *serial_devices;
34static struct serial_device *serial_current;
wdenk281e00a2004-08-01 22:48:16 +000035
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000036/**
37 * serial_null() - Void registration routine of a serial driver
38 *
39 * This routine implements a void registration routine of a serial
40 * driver. The registration routine of a particular driver is aliased
41 * to this empty function in case the driver is not compiled into
42 * U-Boot.
43 */
Marek Vasut2a333ae2012-09-12 17:49:58 +020044static void serial_null(void)
45{
46}
47
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000048/**
49 * serial_initfunc() - Forward declare of driver registration routine
50 * @name: Name of the real driver registration routine.
51 *
52 * This macro expands onto forward declaration of a driver registration
53 * routine, which is then used below in serial_initialize() function.
54 * The declaration is made weak and aliases to serial_null() so in case
55 * the driver is not compiled in, the function is still declared and can
56 * be used, but aliases to serial_null() and thus is optimized away.
57 */
Marek Vasut2a333ae2012-09-12 17:49:58 +020058#define serial_initfunc(name) \
59 void name(void) \
60 __attribute__((weak, alias("serial_null")));
61
Marek Vasutf0eb1f62012-09-12 13:50:56 +020062serial_initfunc(mpc8xx_serial_initialize);
Marek Vasutabc0ed82012-09-12 20:02:05 +020063serial_initfunc(ns16550_serial_initialize);
Marek Vasut1fe5c112012-09-12 13:57:58 +020064serial_initfunc(pxa_serial_initialize);
Marek Vasut28af6382012-09-12 16:01:16 +020065serial_initfunc(s3c24xx_serial_initialize);
Marek Vasutb4980512012-09-12 19:39:57 +020066serial_initfunc(s5p_serial_initialize);
Tom Rini51d81022012-10-08 14:46:23 -070067serial_initfunc(zynq_serial_initalize);
Marek Vasut5ae1de02012-09-12 20:07:54 +020068serial_initfunc(bfin_serial_initialize);
Marek Vasut41651ca2012-09-13 00:02:54 +020069serial_initfunc(bfin_jtag_initialize);
Marek Vasut918327c2012-09-12 19:50:18 +020070serial_initfunc(mpc512x_serial_initialize);
Marek Vasut87d69222012-09-12 19:45:58 +020071serial_initfunc(uartlite_serial_initialize);
Marek Vasut7b953c52012-09-13 01:16:50 +020072serial_initfunc(au1x00_serial_initialize);
Marek Vasut01911422012-09-13 01:20:07 +020073serial_initfunc(asc_serial_initialize);
Marek Vasut6cb32732012-09-13 01:20:59 +020074serial_initfunc(jz_serial_initialize);
Marek Vasutb57c6522012-09-13 01:26:42 +020075serial_initfunc(mpc5xx_serial_initialize);
Marek Vasut2063a542012-09-13 01:29:31 +020076serial_initfunc(mpc8220_serial_initialize);
Marek Vasutd68f4da2012-09-13 01:34:16 +020077serial_initfunc(mpc8260_scc_serial_initialize);
78serial_initfunc(mpc8260_smc_serial_initialize);
Marek Vasut7a311542012-09-13 01:38:52 +020079serial_initfunc(mpc85xx_serial_initialize);
Marek Vasutfcc20742012-09-13 01:40:33 +020080serial_initfunc(iop480_serial_initialize);
Marek Vasutaf7be3b2012-09-13 12:25:07 +020081serial_initfunc(leon2_serial_initialize);
Marek Vasut29b5ff72012-09-13 12:25:48 +020082serial_initfunc(leon3_serial_initialize);
Marek Vasutafe4c382012-09-13 12:26:39 +020083serial_initfunc(marvell_serial_initialize);
Marek Vasut5dee6f52012-09-13 12:27:37 +020084serial_initfunc(amirix_serial_initialize);
Marek Vasutc45a14a2012-09-13 12:28:07 +020085serial_initfunc(bmw_serial_initialize);
Marek Vasutd25c39d2012-09-13 12:29:31 +020086serial_initfunc(cogent_serial_initialize);
Marek Vasut619c90b2012-09-13 12:32:56 +020087serial_initfunc(cpci750_serial_initialize);
Marek Vasut829b3b22012-09-13 12:33:50 +020088serial_initfunc(evb64260_serial_initialize);
Marek Vasutd126f282012-09-13 12:34:24 +020089serial_initfunc(ml2_serial_initialize);
Marek Vasut26d8eaa2012-09-13 12:34:49 +020090serial_initfunc(sconsole_serial_initialize);
Marek Vasut088a4f32012-09-13 12:35:54 +020091serial_initfunc(p3mx_serial_initialize);
Marek Vasut8c085752012-09-13 16:48:50 +020092serial_initfunc(altera_jtag_serial_initialize);
Marek Vasutb207d642012-09-13 16:49:51 +020093serial_initfunc(altera_serial_initialize);
Marek Vasutcfba4572012-09-13 16:50:30 +020094serial_initfunc(atmel_serial_initialize);
Marek Vasute503f902012-09-13 16:51:02 +020095serial_initfunc(lpc32xx_serial_initialize);
Marek Vasutabaef692012-09-13 16:51:38 +020096serial_initfunc(mcf_serial_initialize);
Marek Vasut28ea4c32012-09-13 16:52:07 +020097serial_initfunc(ns9750_serial_initialize);
Marek Vasut69ea8072012-09-13 16:52:38 +020098serial_initfunc(oc_serial_initialize);
Marek Vasut4bee0b32012-09-13 16:53:15 +020099serial_initfunc(s3c4510b_serial_initialize);
Marek Vasutcc61c312012-09-13 16:53:49 +0200100serial_initfunc(s3c64xx_serial_initialize);
Marek Vasutcef46b72012-09-14 22:33:21 +0200101serial_initfunc(sandbox_serial_initialize);
Marek Vasut8b029db2012-09-14 22:34:22 +0200102serial_initfunc(clps7111_serial_initialize);
Marek Vasut7882e7c2012-09-14 22:34:51 +0200103serial_initfunc(imx_serial_initialize);
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200104serial_initfunc(ixp_serial_initialize);
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200105serial_initfunc(ks8695_serial_initialize);
Marek Vasut1f673b42012-09-14 22:36:27 +0200106serial_initfunc(lh7a40x_serial_initialize);
Marek Vasut21310b52012-09-14 22:36:50 +0200107serial_initfunc(lpc2292_serial_initialize);
Marek Vasut7cd851a2012-09-14 22:37:17 +0200108serial_initfunc(max3100_serial_initialize);
Marek Vasuta9434722012-09-14 22:37:43 +0200109serial_initfunc(mxc_serial_initialize);
Marek Vasut0dd9b842012-09-14 22:38:09 +0200110serial_initfunc(netarm_serial_initialize);
Marek Vasut39f61472012-09-14 22:38:46 +0200111serial_initfunc(pl01x_serial_initialize);
Marek Vasuteb507662012-09-14 22:39:19 +0200112serial_initfunc(s3c44b0_serial_initialize);
Marek Vasuta30a4222012-09-14 22:39:44 +0200113serial_initfunc(sa1100_serial_initialize);
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200114serial_initfunc(sh_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200115
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000116/**
117 * serial_register() - Register serial driver with serial driver core
118 * @dev: Pointer to the serial driver structure
119 *
120 * This function registers the serial driver supplied via @dev with
121 * serial driver core, thus making U-Boot aware of it and making it
122 * available for U-Boot to use. On platforms that still require manual
123 * relocation of constant variables, relocation of the supplied structure
124 * is performed.
125 */
Mike Frysingerc52b4f72011-04-29 18:03:30 +0000126void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +0000127{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200128#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutf2760c42012-09-16 18:54:22 +0200129 if (dev->start)
130 dev->start += gd->reloc_off;
131 if (dev->stop)
132 dev->stop += gd->reloc_off;
133 if (dev->setbrg)
134 dev->setbrg += gd->reloc_off;
135 if (dev->getc)
136 dev->getc += gd->reloc_off;
137 if (dev->tstc)
138 dev->tstc += gd->reloc_off;
139 if (dev->putc)
140 dev->putc += gd->reloc_off;
141 if (dev->puts)
142 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500143#endif
wdenk281e00a2004-08-01 22:48:16 +0000144
145 dev->next = serial_devices;
146 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +0000147}
148
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000149/**
150 * serial_initialize() - Register all compiled-in serial port drivers
151 *
152 * This function registers all serial port drivers that are compiled
153 * into the U-Boot binary with the serial core, thus making them
154 * available to U-Boot to use. Lastly, this function assigns a default
155 * serial port to the serial core. That serial port is then used as a
156 * default output.
157 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000158void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +0000159{
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200160 mpc8xx_serial_initialize();
Marek Vasutabc0ed82012-09-12 20:02:05 +0200161 ns16550_serial_initialize();
Marek Vasut1fe5c112012-09-12 13:57:58 +0200162 pxa_serial_initialize();
Marek Vasut28af6382012-09-12 16:01:16 +0200163 s3c24xx_serial_initialize();
Marek Vasutb4980512012-09-12 19:39:57 +0200164 s5p_serial_initialize();
Marek Vasut918327c2012-09-12 19:50:18 +0200165 mpc512x_serial_initialize();
Marek Vasut5ae1de02012-09-12 20:07:54 +0200166 bfin_serial_initialize();
Marek Vasut41651ca2012-09-13 00:02:54 +0200167 bfin_jtag_initialize();
Marek Vasut87d69222012-09-12 19:45:58 +0200168 uartlite_serial_initialize();
Tom Rini51d81022012-10-08 14:46:23 -0700169 zynq_serial_initalize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200170 au1x00_serial_initialize();
Marek Vasut01911422012-09-13 01:20:07 +0200171 asc_serial_initialize();
Marek Vasut6cb32732012-09-13 01:20:59 +0200172 jz_serial_initialize();
Marek Vasutb57c6522012-09-13 01:26:42 +0200173 mpc5xx_serial_initialize();
Marek Vasut2063a542012-09-13 01:29:31 +0200174 mpc8220_serial_initialize();
Marek Vasutd68f4da2012-09-13 01:34:16 +0200175 mpc8260_scc_serial_initialize();
176 mpc8260_smc_serial_initialize();
Marek Vasut7a311542012-09-13 01:38:52 +0200177 mpc85xx_serial_initialize();
Marek Vasutfcc20742012-09-13 01:40:33 +0200178 iop480_serial_initialize();
Marek Vasutaf7be3b2012-09-13 12:25:07 +0200179 leon2_serial_initialize();
Marek Vasut29b5ff72012-09-13 12:25:48 +0200180 leon3_serial_initialize();
Marek Vasutafe4c382012-09-13 12:26:39 +0200181 marvell_serial_initialize();
Marek Vasut5dee6f52012-09-13 12:27:37 +0200182 amirix_serial_initialize();
Marek Vasutc45a14a2012-09-13 12:28:07 +0200183 bmw_serial_initialize();
Marek Vasutd25c39d2012-09-13 12:29:31 +0200184 cogent_serial_initialize();
Marek Vasut619c90b2012-09-13 12:32:56 +0200185 cpci750_serial_initialize();
Marek Vasut829b3b22012-09-13 12:33:50 +0200186 evb64260_serial_initialize();
Marek Vasutd126f282012-09-13 12:34:24 +0200187 ml2_serial_initialize();
Marek Vasut26d8eaa2012-09-13 12:34:49 +0200188 sconsole_serial_initialize();
Marek Vasut088a4f32012-09-13 12:35:54 +0200189 p3mx_serial_initialize();
Marek Vasut8c085752012-09-13 16:48:50 +0200190 altera_jtag_serial_initialize();
Marek Vasutb207d642012-09-13 16:49:51 +0200191 altera_serial_initialize();
Marek Vasutcfba4572012-09-13 16:50:30 +0200192 atmel_serial_initialize();
Marek Vasute503f902012-09-13 16:51:02 +0200193 lpc32xx_serial_initialize();
Marek Vasutabaef692012-09-13 16:51:38 +0200194 mcf_serial_initialize();
Marek Vasut28ea4c32012-09-13 16:52:07 +0200195 ns9750_serial_initialize();
Marek Vasut69ea8072012-09-13 16:52:38 +0200196 oc_serial_initialize();
Marek Vasut4bee0b32012-09-13 16:53:15 +0200197 s3c4510b_serial_initialize();
Marek Vasutcc61c312012-09-13 16:53:49 +0200198 s3c64xx_serial_initialize();
Marek Vasutcef46b72012-09-14 22:33:21 +0200199 sandbox_serial_initialize();
Marek Vasut8b029db2012-09-14 22:34:22 +0200200 clps7111_serial_initialize();
Marek Vasut7882e7c2012-09-14 22:34:51 +0200201 imx_serial_initialize();
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200202 ixp_serial_initialize();
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200203 ks8695_serial_initialize();
Marek Vasut1f673b42012-09-14 22:36:27 +0200204 lh7a40x_serial_initialize();
Marek Vasut21310b52012-09-14 22:36:50 +0200205 lpc2292_serial_initialize();
Marek Vasut7cd851a2012-09-14 22:37:17 +0200206 max3100_serial_initialize();
Marek Vasuta9434722012-09-14 22:37:43 +0200207 mxc_serial_initialize();
Marek Vasut0dd9b842012-09-14 22:38:09 +0200208 netarm_serial_initialize();
Marek Vasut39f61472012-09-14 22:38:46 +0200209 pl01x_serial_initialize();
Marek Vasuteb507662012-09-14 22:39:19 +0200210 s3c44b0_serial_initialize();
Marek Vasuta30a4222012-09-14 22:39:44 +0200211 sa1100_serial_initialize();
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200212 sh_serial_initialize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200213
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000214 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000215}
216
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000217/**
218 * serial_stdio_init() - Register serial ports with STDIO core
219 *
220 * This function generates a proxy driver for each serial port driver.
221 * These proxy drivers then register with the STDIO core, making the
222 * serial drivers available as STDIO devices.
223 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000224void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000225{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200226 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000227 struct serial_device *s = serial_devices;
228
wdenk2ee66532004-10-11 22:43:02 +0000229 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000230 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000231
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000232 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000233 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
234
Marek Vasut89143fb2012-09-07 14:35:31 +0200235 dev.start = s->start;
236 dev.stop = s->stop;
wdenk281e00a2004-08-01 22:48:16 +0000237 dev.putc = s->putc;
238 dev.puts = s->puts;
239 dev.getc = s->getc;
240 dev.tstc = s->tstc;
241
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000242 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000243
244 s = s->next;
245 }
246}
247
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000248/**
249 * serial_assign() - Select the serial output device by name
250 * @name: Name of the serial driver to be used as default output
251 *
252 * This function configures the serial output multiplexing by
253 * selecting which serial device will be used as default. In case
254 * the STDIO "serial" device is selected as stdin/stdout/stderr,
255 * the serial device previously configured by this function will be
256 * used for the particular operation.
257 *
258 * Returns 0 on success, negative on error.
259 */
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000260int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000261{
262 struct serial_device *s;
263
wdenk2ee66532004-10-11 22:43:02 +0000264 for (s = serial_devices; s; s = s->next) {
Marek Vasut6d93e252012-10-06 14:07:03 +0000265 if (strcmp(s->name, name))
266 continue;
267 serial_current = s;
268 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000269 }
270
Marek Vasut6d93e252012-10-06 14:07:03 +0000271 return -EINVAL;
wdenk281e00a2004-08-01 22:48:16 +0000272}
273
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000274/**
275 * serial_reinit_all() - Reinitialize all compiled-in serial ports
276 *
277 * This function reinitializes all serial ports that are compiled
278 * into U-Boot by calling their serial_start() functions.
279 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000280void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000281{
282 struct serial_device *s;
283
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000284 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200285 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000286}
287
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000288/**
289 * get_current() - Return pointer to currently selected serial port
290 *
291 * This function returns a pointer to currently selected serial port.
292 * The currently selected serial port is altered by serial_assign()
293 * function.
294 *
295 * In case this function is called before relocation or before any serial
296 * port is configured, this function calls default_serial_console() to
297 * determine the serial port. Otherwise, the configured serial port is
298 * returned.
299 *
300 * Returns pointer to the currently selected serial port on success,
301 * NULL on error.
302 */
Simon Glass857c2832011-08-19 11:09:43 +0000303static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000304{
Simon Glass857c2832011-08-19 11:09:43 +0000305 struct serial_device *dev;
306
Marek Vasutdee19412012-10-06 14:07:04 +0000307 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass857c2832011-08-19 11:09:43 +0000308 dev = default_serial_console();
Marek Vasutdee19412012-10-06 14:07:04 +0000309 else if (!serial_current)
310 dev = default_serial_console();
311 else
Simon Glass857c2832011-08-19 11:09:43 +0000312 dev = serial_current;
Marek Vasutdee19412012-10-06 14:07:04 +0000313
314 /* We must have a console device */
315 if (!dev) {
316#ifdef CONFIG_SPL_BUILD
317 puts("Cannot find console\n");
318 hang();
319#else
320 panic("Cannot find console\n");
321#endif
322 }
323
Simon Glass857c2832011-08-19 11:09:43 +0000324 return dev;
325}
wdenk281e00a2004-08-01 22:48:16 +0000326
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000327/**
328 * serial_init() - Initialize currently selected serial port
329 *
330 * This function initializes the currently selected serial port. This
331 * usually involves setting up the registers of that particular port,
332 * enabling clock and such. This function uses the get_current() call
333 * to determine which port is selected.
334 *
335 * Returns 0 on success, negative on error.
336 */
Simon Glass857c2832011-08-19 11:09:43 +0000337int serial_init(void)
338{
Marek Vasut89143fb2012-09-07 14:35:31 +0200339 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000340}
341
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000342/**
343 * serial_setbrg() - Configure baud-rate of currently selected serial port
344 *
345 * This function configures the baud-rate of the currently selected
346 * serial port. The baud-rate is retrieved from global data within
347 * the serial port driver. This function uses the get_current() call
348 * to determine which port is selected.
349 *
350 * Returns 0 on success, negative on error.
351 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000352void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000353{
Simon Glass857c2832011-08-19 11:09:43 +0000354 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000355}
356
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000357/**
358 * serial_getc() - Read character from currently selected serial port
359 *
360 * This function retrieves a character from currently selected serial
361 * port. In case there is no character waiting on the serial port,
362 * this function will block and wait for the character to appear. This
363 * function uses the get_current() call to determine which port is
364 * selected.
365 *
366 * Returns the character on success, negative on error.
367 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000368int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000369{
Simon Glass857c2832011-08-19 11:09:43 +0000370 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000371}
372
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000373/**
374 * serial_tstc() - Test if data is available on currently selected serial port
375 *
376 * This function tests if one or more characters are available on
377 * currently selected serial port. This function never blocks. This
378 * function uses the get_current() call to determine which port is
379 * selected.
380 *
381 * Returns positive if character is available, zero otherwise.
382 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000383int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000384{
Simon Glass857c2832011-08-19 11:09:43 +0000385 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000386}
387
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000388/**
389 * serial_putc() - Output character via currently selected serial port
390 * @c: Single character to be output from the serial port.
391 *
392 * This function outputs a character via currently selected serial
393 * port. This character is passed to the serial port driver responsible
394 * for controlling the hardware. The hardware may still be in process
395 * of transmitting another character, therefore this function may block
396 * for a short amount of time. This function uses the get_current()
397 * call to determine which port is selected.
398 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000399void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000400{
Simon Glass857c2832011-08-19 11:09:43 +0000401 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000402}
403
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000404/**
405 * serial_puts() - Output string via currently selected serial port
406 * @s: Zero-terminated string to be output from the serial port.
407 *
408 * This function outputs a zero-terminated string via currently
409 * selected serial port. This function behaves as an accelerator
410 * in case the hardware can queue multiple characters for transfer.
411 * The whole string that is to be output is available to the function
412 * implementing the hardware manipulation. Transmitting the whole
413 * string may take some time, thus this function may block for some
414 * amount of time. This function uses the get_current() call to
415 * determine which port is selected.
416 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000417void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000418{
Simon Glass857c2832011-08-19 11:09:43 +0000419 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000420}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000421
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000422/**
423 * default_serial_puts() - Output string by calling serial_putc() in loop
424 * @s: Zero-terminated string to be output from the serial port.
425 *
426 * This function outputs a zero-terminated string by calling serial_putc()
427 * in a loop. Most drivers do not support queueing more than one byte for
428 * transfer, thus this function precisely implements their serial_puts().
429 *
430 * To optimize the number of get_current() calls, this function only
431 * calls get_current() once and then directly accesses the putc() call
432 * of the &struct serial_device .
433 */
Marek Vasutbfb7d7a2012-10-06 14:07:01 +0000434void default_serial_puts(const char *s)
435{
436 struct serial_device *dev = get_current();
437 while (*s)
438 dev->putc(*s++);
439}
440
Mike Frysinger7b826c22011-05-14 06:56:15 +0000441#if CONFIG_POST & CONFIG_SYS_POST_UART
442static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
443
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000444/**
445 * uart_post_test() - Test the currently selected serial port using POST
446 * @flags: POST framework flags
447 *
448 * Do a loopback test of the currently selected serial port. This
449 * function is only useful in the context of the POST testing framwork.
450 * The serial port is firstly configured into loopback mode and then
451 * characters are sent through it.
452 *
453 * Returns 0 on success, value otherwise.
454 */
Mike Frysinger7b826c22011-05-14 06:56:15 +0000455/* Mark weak until post/cpu/.../uart.c migrate over */
456__weak
457int uart_post_test(int flags)
458{
459 unsigned char c;
460 int ret, saved_baud, b;
461 struct serial_device *saved_dev, *s;
462 bd_t *bd = gd->bd;
463
464 /* Save current serial state */
465 ret = 0;
466 saved_dev = serial_current;
467 saved_baud = bd->bi_baudrate;
468
469 for (s = serial_devices; s; s = s->next) {
470 /* If this driver doesn't support loop back, skip it */
471 if (!s->loop)
472 continue;
473
474 /* Test the next device */
475 serial_current = s;
476
477 ret = serial_init();
478 if (ret)
479 goto done;
480
481 /* Consume anything that happens to be queued */
482 while (serial_tstc())
483 serial_getc();
484
485 /* Enable loop back */
486 s->loop(1);
487
488 /* Test every available baud rate */
489 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
490 bd->bi_baudrate = bauds[b];
491 serial_setbrg();
492
493 /*
494 * Stick to printable chars to avoid issues:
495 * - terminal corruption
496 * - serial program reacting to sequences and sending
497 * back random extra data
498 * - most serial drivers add in extra chars (like \r\n)
499 */
500 for (c = 0x20; c < 0x7f; ++c) {
501 /* Send it out */
502 serial_putc(c);
503
504 /* Make sure it's the same one */
505 ret = (c != serial_getc());
506 if (ret) {
507 s->loop(0);
508 goto done;
509 }
510
511 /* Clean up the output in case it was sent */
512 serial_putc('\b');
513 ret = ('\b' != serial_getc());
514 if (ret) {
515 s->loop(0);
516 goto done;
517 }
518 }
519 }
520
521 /* Disable loop back */
522 s->loop(0);
523
Marek Vasut89143fb2012-09-07 14:35:31 +0200524 /* XXX: There is no serial_stop() !? */
525 if (s->stop)
526 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000527 }
528
529 done:
530 /* Restore previous serial state */
531 serial_current = saved_dev;
532 bd->bi_baudrate = saved_baud;
533 serial_reinit_all();
534 serial_setbrg();
535
536 return ret;
537}
538#endif