blob: 7922bf0669a4b67d7f9cd9af9dec06c7490f029c [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>
Joe Hershberger32057712012-12-11 22:16:27 -060025#include <environment.h>
wdenk281e00a2004-08-01 22:48:16 +000026#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020027#include <stdio_dev.h>
Mike Frysinger7b826c22011-05-14 06:56:15 +000028#include <post.h>
29#include <linux/compiler.h>
Marek Vasut6d93e252012-10-06 14:07:03 +000030#include <errno.h>
wdenk281e00a2004-08-01 22:48:16 +000031
Wolfgang Denkd87080b2006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
33
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000034static struct serial_device *serial_devices;
35static struct serial_device *serial_current;
Joe Hershberger32057712012-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]))
wdenk281e00a2004-08-01 22:48:16 +000041
Marek Vasut9cd2b9e2012-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 Vasut2a333ae2012-09-12 17:49:58 +020050static void serial_null(void)
51{
52}
53
Marek Vasut9cd2b9e2012-10-08 11:36:39 +000054/**
Joe Hershberger32057712012-12-11 22:16:27 -060055 * 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 }
115}
116U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
117
118/**
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000119 * 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 Vasut2a333ae2012-09-12 17:49:58 +0200128#define serial_initfunc(name) \
129 void name(void) \
130 __attribute__((weak, alias("serial_null")));
131
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200132serial_initfunc(mpc8xx_serial_initialize);
Marek Vasutabc0ed82012-09-12 20:02:05 +0200133serial_initfunc(ns16550_serial_initialize);
Marek Vasut1fe5c112012-09-12 13:57:58 +0200134serial_initfunc(pxa_serial_initialize);
Marek Vasut28af6382012-09-12 16:01:16 +0200135serial_initfunc(s3c24xx_serial_initialize);
Marek Vasutb4980512012-09-12 19:39:57 +0200136serial_initfunc(s5p_serial_initialize);
Tom Rini51d81022012-10-08 14:46:23 -0700137serial_initfunc(zynq_serial_initalize);
Marek Vasut5ae1de02012-09-12 20:07:54 +0200138serial_initfunc(bfin_serial_initialize);
Marek Vasut41651ca2012-09-13 00:02:54 +0200139serial_initfunc(bfin_jtag_initialize);
Marek Vasut918327c2012-09-12 19:50:18 +0200140serial_initfunc(mpc512x_serial_initialize);
Marek Vasut87d69222012-09-12 19:45:58 +0200141serial_initfunc(uartlite_serial_initialize);
Marek Vasut7b953c52012-09-13 01:16:50 +0200142serial_initfunc(au1x00_serial_initialize);
Marek Vasut01911422012-09-13 01:20:07 +0200143serial_initfunc(asc_serial_initialize);
Marek Vasut6cb32732012-09-13 01:20:59 +0200144serial_initfunc(jz_serial_initialize);
Marek Vasutb57c6522012-09-13 01:26:42 +0200145serial_initfunc(mpc5xx_serial_initialize);
Marek Vasut2063a542012-09-13 01:29:31 +0200146serial_initfunc(mpc8220_serial_initialize);
Marek Vasutd68f4da2012-09-13 01:34:16 +0200147serial_initfunc(mpc8260_scc_serial_initialize);
148serial_initfunc(mpc8260_smc_serial_initialize);
Marek Vasut7a311542012-09-13 01:38:52 +0200149serial_initfunc(mpc85xx_serial_initialize);
Marek Vasutfcc20742012-09-13 01:40:33 +0200150serial_initfunc(iop480_serial_initialize);
Marek Vasutaf7be3b2012-09-13 12:25:07 +0200151serial_initfunc(leon2_serial_initialize);
Marek Vasut29b5ff72012-09-13 12:25:48 +0200152serial_initfunc(leon3_serial_initialize);
Marek Vasutafe4c382012-09-13 12:26:39 +0200153serial_initfunc(marvell_serial_initialize);
Marek Vasut5dee6f52012-09-13 12:27:37 +0200154serial_initfunc(amirix_serial_initialize);
Marek Vasutc45a14a2012-09-13 12:28:07 +0200155serial_initfunc(bmw_serial_initialize);
Marek Vasutd25c39d2012-09-13 12:29:31 +0200156serial_initfunc(cogent_serial_initialize);
Marek Vasut619c90b2012-09-13 12:32:56 +0200157serial_initfunc(cpci750_serial_initialize);
Marek Vasut829b3b22012-09-13 12:33:50 +0200158serial_initfunc(evb64260_serial_initialize);
Marek Vasutd126f282012-09-13 12:34:24 +0200159serial_initfunc(ml2_serial_initialize);
Marek Vasut26d8eaa2012-09-13 12:34:49 +0200160serial_initfunc(sconsole_serial_initialize);
Marek Vasut088a4f32012-09-13 12:35:54 +0200161serial_initfunc(p3mx_serial_initialize);
Marek Vasut8c085752012-09-13 16:48:50 +0200162serial_initfunc(altera_jtag_serial_initialize);
Marek Vasutb207d642012-09-13 16:49:51 +0200163serial_initfunc(altera_serial_initialize);
Marek Vasutcfba4572012-09-13 16:50:30 +0200164serial_initfunc(atmel_serial_initialize);
Marek Vasute503f902012-09-13 16:51:02 +0200165serial_initfunc(lpc32xx_serial_initialize);
Marek Vasutabaef692012-09-13 16:51:38 +0200166serial_initfunc(mcf_serial_initialize);
Marek Vasut69ea8072012-09-13 16:52:38 +0200167serial_initfunc(oc_serial_initialize);
Marek Vasutcc61c312012-09-13 16:53:49 +0200168serial_initfunc(s3c64xx_serial_initialize);
Marek Vasutcef46b72012-09-14 22:33:21 +0200169serial_initfunc(sandbox_serial_initialize);
Marek Vasut8b029db2012-09-14 22:34:22 +0200170serial_initfunc(clps7111_serial_initialize);
Marek Vasut7882e7c2012-09-14 22:34:51 +0200171serial_initfunc(imx_serial_initialize);
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200172serial_initfunc(ixp_serial_initialize);
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200173serial_initfunc(ks8695_serial_initialize);
Marek Vasut1f673b42012-09-14 22:36:27 +0200174serial_initfunc(lh7a40x_serial_initialize);
Marek Vasut7cd851a2012-09-14 22:37:17 +0200175serial_initfunc(max3100_serial_initialize);
Marek Vasuta9434722012-09-14 22:37:43 +0200176serial_initfunc(mxc_serial_initialize);
Marek Vasut39f61472012-09-14 22:38:46 +0200177serial_initfunc(pl01x_serial_initialize);
Marek Vasuteb507662012-09-14 22:39:19 +0200178serial_initfunc(s3c44b0_serial_initialize);
Marek Vasuta30a4222012-09-14 22:39:44 +0200179serial_initfunc(sa1100_serial_initialize);
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200180serial_initfunc(sh_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200181
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000182/**
183 * serial_register() - Register serial driver with serial driver core
184 * @dev: Pointer to the serial driver structure
185 *
186 * This function registers the serial driver supplied via @dev with
187 * serial driver core, thus making U-Boot aware of it and making it
188 * available for U-Boot to use. On platforms that still require manual
189 * relocation of constant variables, relocation of the supplied structure
190 * is performed.
191 */
Mike Frysingerc52b4f72011-04-29 18:03:30 +0000192void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +0000193{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200194#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutf2760c42012-09-16 18:54:22 +0200195 if (dev->start)
196 dev->start += gd->reloc_off;
197 if (dev->stop)
198 dev->stop += gd->reloc_off;
199 if (dev->setbrg)
200 dev->setbrg += gd->reloc_off;
201 if (dev->getc)
202 dev->getc += gd->reloc_off;
203 if (dev->tstc)
204 dev->tstc += gd->reloc_off;
205 if (dev->putc)
206 dev->putc += gd->reloc_off;
207 if (dev->puts)
208 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500209#endif
wdenk281e00a2004-08-01 22:48:16 +0000210
211 dev->next = serial_devices;
212 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +0000213}
214
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000215/**
216 * serial_initialize() - Register all compiled-in serial port drivers
217 *
218 * This function registers all serial port drivers that are compiled
219 * into the U-Boot binary with the serial core, thus making them
220 * available to U-Boot to use. Lastly, this function assigns a default
221 * serial port to the serial core. That serial port is then used as a
222 * default output.
223 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000224void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +0000225{
Marek Vasutf0eb1f62012-09-12 13:50:56 +0200226 mpc8xx_serial_initialize();
Marek Vasutabc0ed82012-09-12 20:02:05 +0200227 ns16550_serial_initialize();
Marek Vasut1fe5c112012-09-12 13:57:58 +0200228 pxa_serial_initialize();
Marek Vasut28af6382012-09-12 16:01:16 +0200229 s3c24xx_serial_initialize();
Marek Vasutb4980512012-09-12 19:39:57 +0200230 s5p_serial_initialize();
Marek Vasut918327c2012-09-12 19:50:18 +0200231 mpc512x_serial_initialize();
Marek Vasut5ae1de02012-09-12 20:07:54 +0200232 bfin_serial_initialize();
Marek Vasut41651ca2012-09-13 00:02:54 +0200233 bfin_jtag_initialize();
Marek Vasut87d69222012-09-12 19:45:58 +0200234 uartlite_serial_initialize();
Tom Rini51d81022012-10-08 14:46:23 -0700235 zynq_serial_initalize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200236 au1x00_serial_initialize();
Marek Vasut01911422012-09-13 01:20:07 +0200237 asc_serial_initialize();
Marek Vasut6cb32732012-09-13 01:20:59 +0200238 jz_serial_initialize();
Marek Vasutb57c6522012-09-13 01:26:42 +0200239 mpc5xx_serial_initialize();
Marek Vasut2063a542012-09-13 01:29:31 +0200240 mpc8220_serial_initialize();
Marek Vasutd68f4da2012-09-13 01:34:16 +0200241 mpc8260_scc_serial_initialize();
242 mpc8260_smc_serial_initialize();
Marek Vasut7a311542012-09-13 01:38:52 +0200243 mpc85xx_serial_initialize();
Marek Vasutfcc20742012-09-13 01:40:33 +0200244 iop480_serial_initialize();
Marek Vasutaf7be3b2012-09-13 12:25:07 +0200245 leon2_serial_initialize();
Marek Vasut29b5ff72012-09-13 12:25:48 +0200246 leon3_serial_initialize();
Marek Vasutafe4c382012-09-13 12:26:39 +0200247 marvell_serial_initialize();
Marek Vasut5dee6f52012-09-13 12:27:37 +0200248 amirix_serial_initialize();
Marek Vasutc45a14a2012-09-13 12:28:07 +0200249 bmw_serial_initialize();
Marek Vasutd25c39d2012-09-13 12:29:31 +0200250 cogent_serial_initialize();
Marek Vasut619c90b2012-09-13 12:32:56 +0200251 cpci750_serial_initialize();
Marek Vasut829b3b22012-09-13 12:33:50 +0200252 evb64260_serial_initialize();
Marek Vasutd126f282012-09-13 12:34:24 +0200253 ml2_serial_initialize();
Marek Vasut26d8eaa2012-09-13 12:34:49 +0200254 sconsole_serial_initialize();
Marek Vasut088a4f32012-09-13 12:35:54 +0200255 p3mx_serial_initialize();
Marek Vasut8c085752012-09-13 16:48:50 +0200256 altera_jtag_serial_initialize();
Marek Vasutb207d642012-09-13 16:49:51 +0200257 altera_serial_initialize();
Marek Vasutcfba4572012-09-13 16:50:30 +0200258 atmel_serial_initialize();
Marek Vasute503f902012-09-13 16:51:02 +0200259 lpc32xx_serial_initialize();
Marek Vasutabaef692012-09-13 16:51:38 +0200260 mcf_serial_initialize();
Marek Vasut69ea8072012-09-13 16:52:38 +0200261 oc_serial_initialize();
Marek Vasutcc61c312012-09-13 16:53:49 +0200262 s3c64xx_serial_initialize();
Marek Vasutcef46b72012-09-14 22:33:21 +0200263 sandbox_serial_initialize();
Marek Vasut8b029db2012-09-14 22:34:22 +0200264 clps7111_serial_initialize();
Marek Vasut7882e7c2012-09-14 22:34:51 +0200265 imx_serial_initialize();
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200266 ixp_serial_initialize();
Marek Vasuta7ffb2f2012-09-14 22:35:43 +0200267 ks8695_serial_initialize();
Marek Vasut1f673b42012-09-14 22:36:27 +0200268 lh7a40x_serial_initialize();
Marek Vasut7cd851a2012-09-14 22:37:17 +0200269 max3100_serial_initialize();
Marek Vasuta9434722012-09-14 22:37:43 +0200270 mxc_serial_initialize();
Marek Vasut39f61472012-09-14 22:38:46 +0200271 pl01x_serial_initialize();
Marek Vasuteb507662012-09-14 22:39:19 +0200272 s3c44b0_serial_initialize();
Marek Vasuta30a4222012-09-14 22:39:44 +0200273 sa1100_serial_initialize();
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200274 sh_serial_initialize();
Marek Vasut7b953c52012-09-13 01:16:50 +0200275
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000276 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000277}
278
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000279/**
280 * serial_stdio_init() - Register serial ports with STDIO core
281 *
282 * This function generates a proxy driver for each serial port driver.
283 * These proxy drivers then register with the STDIO core, making the
284 * serial drivers available as STDIO devices.
285 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000286void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000287{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200288 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000289 struct serial_device *s = serial_devices;
290
wdenk2ee66532004-10-11 22:43:02 +0000291 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000292 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000293
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000294 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000295 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
296
Marek Vasut89143fb2012-09-07 14:35:31 +0200297 dev.start = s->start;
298 dev.stop = s->stop;
wdenk281e00a2004-08-01 22:48:16 +0000299 dev.putc = s->putc;
300 dev.puts = s->puts;
301 dev.getc = s->getc;
302 dev.tstc = s->tstc;
303
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000304 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000305
306 s = s->next;
307 }
308}
309
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000310/**
311 * serial_assign() - Select the serial output device by name
312 * @name: Name of the serial driver to be used as default output
313 *
314 * This function configures the serial output multiplexing by
315 * selecting which serial device will be used as default. In case
316 * the STDIO "serial" device is selected as stdin/stdout/stderr,
317 * the serial device previously configured by this function will be
318 * used for the particular operation.
319 *
320 * Returns 0 on success, negative on error.
321 */
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000322int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000323{
324 struct serial_device *s;
325
wdenk2ee66532004-10-11 22:43:02 +0000326 for (s = serial_devices; s; s = s->next) {
Marek Vasut6d93e252012-10-06 14:07:03 +0000327 if (strcmp(s->name, name))
328 continue;
329 serial_current = s;
330 return 0;
wdenk281e00a2004-08-01 22:48:16 +0000331 }
332
Marek Vasut6d93e252012-10-06 14:07:03 +0000333 return -EINVAL;
wdenk281e00a2004-08-01 22:48:16 +0000334}
335
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000336/**
337 * serial_reinit_all() - Reinitialize all compiled-in serial ports
338 *
339 * This function reinitializes all serial ports that are compiled
340 * into U-Boot by calling their serial_start() functions.
341 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000342void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000343{
344 struct serial_device *s;
345
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000346 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200347 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000348}
349
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000350/**
351 * get_current() - Return pointer to currently selected serial port
352 *
353 * This function returns a pointer to currently selected serial port.
354 * The currently selected serial port is altered by serial_assign()
355 * function.
356 *
357 * In case this function is called before relocation or before any serial
358 * port is configured, this function calls default_serial_console() to
359 * determine the serial port. Otherwise, the configured serial port is
360 * returned.
361 *
362 * Returns pointer to the currently selected serial port on success,
363 * NULL on error.
364 */
Simon Glass857c2832011-08-19 11:09:43 +0000365static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000366{
Simon Glass857c2832011-08-19 11:09:43 +0000367 struct serial_device *dev;
368
Marek Vasutdee19412012-10-06 14:07:04 +0000369 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass857c2832011-08-19 11:09:43 +0000370 dev = default_serial_console();
Marek Vasutdee19412012-10-06 14:07:04 +0000371 else if (!serial_current)
372 dev = default_serial_console();
373 else
Simon Glass857c2832011-08-19 11:09:43 +0000374 dev = serial_current;
Marek Vasutdee19412012-10-06 14:07:04 +0000375
376 /* We must have a console device */
377 if (!dev) {
378#ifdef CONFIG_SPL_BUILD
379 puts("Cannot find console\n");
380 hang();
381#else
382 panic("Cannot find console\n");
383#endif
384 }
385
Simon Glass857c2832011-08-19 11:09:43 +0000386 return dev;
387}
wdenk281e00a2004-08-01 22:48:16 +0000388
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000389/**
390 * serial_init() - Initialize currently selected serial port
391 *
392 * This function initializes the currently selected serial port. This
393 * usually involves setting up the registers of that particular port,
394 * enabling clock and such. This function uses the get_current() call
395 * to determine which port is selected.
396 *
397 * Returns 0 on success, negative on error.
398 */
Simon Glass857c2832011-08-19 11:09:43 +0000399int serial_init(void)
400{
Marek Vasut89143fb2012-09-07 14:35:31 +0200401 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000402}
403
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000404/**
405 * serial_setbrg() - Configure baud-rate of currently selected serial port
406 *
407 * This function configures the baud-rate of the currently selected
408 * serial port. The baud-rate is retrieved from global data within
409 * the serial port driver. This function uses the get_current() call
410 * to determine which port is selected.
411 *
412 * Returns 0 on success, negative on error.
413 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000414void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000415{
Simon Glass857c2832011-08-19 11:09:43 +0000416 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000417}
418
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000419/**
420 * serial_getc() - Read character from currently selected serial port
421 *
422 * This function retrieves a character from currently selected serial
423 * port. In case there is no character waiting on the serial port,
424 * this function will block and wait for the character to appear. This
425 * function uses the get_current() call to determine which port is
426 * selected.
427 *
428 * Returns the character on success, negative on error.
429 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000430int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000431{
Simon Glass857c2832011-08-19 11:09:43 +0000432 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000433}
434
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000435/**
436 * serial_tstc() - Test if data is available on currently selected serial port
437 *
438 * This function tests if one or more characters are available on
439 * currently selected serial port. This function never blocks. This
440 * function uses the get_current() call to determine which port is
441 * selected.
442 *
443 * Returns positive if character is available, zero otherwise.
444 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000445int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000446{
Simon Glass857c2832011-08-19 11:09:43 +0000447 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000448}
449
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000450/**
451 * serial_putc() - Output character via currently selected serial port
452 * @c: Single character to be output from the serial port.
453 *
454 * This function outputs a character via currently selected serial
455 * port. This character is passed to the serial port driver responsible
456 * for controlling the hardware. The hardware may still be in process
457 * of transmitting another character, therefore this function may block
458 * for a short amount of time. This function uses the get_current()
459 * call to determine which port is selected.
460 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000461void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000462{
Simon Glass857c2832011-08-19 11:09:43 +0000463 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000464}
465
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000466/**
467 * serial_puts() - Output string via currently selected serial port
468 * @s: Zero-terminated string to be output from the serial port.
469 *
470 * This function outputs a zero-terminated string via currently
471 * selected serial port. This function behaves as an accelerator
472 * in case the hardware can queue multiple characters for transfer.
473 * The whole string that is to be output is available to the function
474 * implementing the hardware manipulation. Transmitting the whole
475 * string may take some time, thus this function may block for some
476 * amount of time. This function uses the get_current() call to
477 * determine which port is selected.
478 */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000479void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000480{
Simon Glass857c2832011-08-19 11:09:43 +0000481 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000482}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000483
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000484/**
485 * default_serial_puts() - Output string by calling serial_putc() in loop
486 * @s: Zero-terminated string to be output from the serial port.
487 *
488 * This function outputs a zero-terminated string by calling serial_putc()
489 * in a loop. Most drivers do not support queueing more than one byte for
490 * transfer, thus this function precisely implements their serial_puts().
491 *
492 * To optimize the number of get_current() calls, this function only
493 * calls get_current() once and then directly accesses the putc() call
494 * of the &struct serial_device .
495 */
Marek Vasutbfb7d7a2012-10-06 14:07:01 +0000496void default_serial_puts(const char *s)
497{
498 struct serial_device *dev = get_current();
499 while (*s)
500 dev->putc(*s++);
501}
502
Mike Frysinger7b826c22011-05-14 06:56:15 +0000503#if CONFIG_POST & CONFIG_SYS_POST_UART
504static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
505
Marek Vasut9cd2b9e2012-10-08 11:36:39 +0000506/**
507 * uart_post_test() - Test the currently selected serial port using POST
508 * @flags: POST framework flags
509 *
510 * Do a loopback test of the currently selected serial port. This
511 * function is only useful in the context of the POST testing framwork.
512 * The serial port is firstly configured into loopback mode and then
513 * characters are sent through it.
514 *
515 * Returns 0 on success, value otherwise.
516 */
Mike Frysinger7b826c22011-05-14 06:56:15 +0000517/* Mark weak until post/cpu/.../uart.c migrate over */
518__weak
519int uart_post_test(int flags)
520{
521 unsigned char c;
522 int ret, saved_baud, b;
523 struct serial_device *saved_dev, *s;
524 bd_t *bd = gd->bd;
525
526 /* Save current serial state */
527 ret = 0;
528 saved_dev = serial_current;
529 saved_baud = bd->bi_baudrate;
530
531 for (s = serial_devices; s; s = s->next) {
532 /* If this driver doesn't support loop back, skip it */
533 if (!s->loop)
534 continue;
535
536 /* Test the next device */
537 serial_current = s;
538
539 ret = serial_init();
540 if (ret)
541 goto done;
542
543 /* Consume anything that happens to be queued */
544 while (serial_tstc())
545 serial_getc();
546
547 /* Enable loop back */
548 s->loop(1);
549
550 /* Test every available baud rate */
551 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
552 bd->bi_baudrate = bauds[b];
553 serial_setbrg();
554
555 /*
556 * Stick to printable chars to avoid issues:
557 * - terminal corruption
558 * - serial program reacting to sequences and sending
559 * back random extra data
560 * - most serial drivers add in extra chars (like \r\n)
561 */
562 for (c = 0x20; c < 0x7f; ++c) {
563 /* Send it out */
564 serial_putc(c);
565
566 /* Make sure it's the same one */
567 ret = (c != serial_getc());
568 if (ret) {
569 s->loop(0);
570 goto done;
571 }
572
573 /* Clean up the output in case it was sent */
574 serial_putc('\b');
575 ret = ('\b' != serial_getc());
576 if (ret) {
577 s->loop(0);
578 goto done;
579 }
580 }
581 }
582
583 /* Disable loop back */
584 s->loop(0);
585
Marek Vasut89143fb2012-09-07 14:35:31 +0200586 /* XXX: There is no serial_stop() !? */
587 if (s->stop)
588 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000589 }
590
591 done:
592 /* Restore previous serial state */
593 serial_current = saved_dev;
594 bd->bi_baudrate = saved_baud;
595 serial_reinit_all();
596 serial_setbrg();
597
598 return ret;
599}
600#endif