blob: 70f6261dc2ccb5d348a3040aaab575cdfa257b9d [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>
wdenk281e00a2004-08-01 22:48:16 +000029
Wolfgang Denkd87080b2006-03-31 18:32:53 +020030DECLARE_GLOBAL_DATA_PTR;
31
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000032static struct serial_device *serial_devices;
33static struct serial_device *serial_current;
wdenk281e00a2004-08-01 22:48:16 +000034
Marek Vasut2a333ae2012-09-12 17:49:58 +020035static void serial_null(void)
36{
37}
38
39#define serial_initfunc(name) \
40 void name(void) \
41 __attribute__((weak, alias("serial_null")));
42
Marek Vasutf0eb1f62012-09-12 13:50:56 +020043serial_initfunc(mpc8xx_serial_initialize);
Marek Vasut1fe5c112012-09-12 13:57:58 +020044serial_initfunc(pxa_serial_initialize);
Marek Vasut28af6382012-09-12 16:01:16 +020045serial_initfunc(s3c24xx_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +020046
Mike Frysingerc52b4f72011-04-29 18:03:30 +000047void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +000048{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020049#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut89143fb2012-09-07 14:35:31 +020050 dev->start += gd->reloc_off;
wdenk281e00a2004-08-01 22:48:16 +000051 dev->setbrg += gd->reloc_off;
52 dev->getc += gd->reloc_off;
53 dev->tstc += gd->reloc_off;
54 dev->putc += gd->reloc_off;
55 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -050056#endif
wdenk281e00a2004-08-01 22:48:16 +000057
58 dev->next = serial_devices;
59 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +000060}
61
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000062void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +000063{
Marek Vasutf0eb1f62012-09-12 13:50:56 +020064 mpc8xx_serial_initialize();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065#if defined(CONFIG_SYS_NS16550_SERIAL)
66#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020067 serial_register(&eserial1_device);
68#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020070 serial_register(&eserial2_device);
71#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020073 serial_register(&eserial3_device);
74#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020076 serial_register(&eserial4_device);
77#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#endif /* CONFIG_SYS_NS16550_SERIAL */
Marek Vasut1fe5c112012-09-12 13:57:58 +020079 pxa_serial_initialize();
Marek Vasut28af6382012-09-12 16:01:16 +020080 s3c24xx_serial_initialize();
Minkyu Kang889a2752010-08-23 19:52:03 +090081#if defined(CONFIG_S5P)
Minkyu Kang46a3b5c2010-03-24 16:59:30 +090082 serial_register(&s5p_serial0_device);
83 serial_register(&s5p_serial1_device);
84 serial_register(&s5p_serial2_device);
85 serial_register(&s5p_serial3_device);
Minkyu Kangdd2c9e62009-10-01 17:20:28 +090086#endif
Anatolij Gustschine3b28e62010-04-24 19:27:05 +020087#if defined(CONFIG_MPC512X)
88#if defined(CONFIG_SYS_PSC1)
89 serial_register(&serial1_device);
90#endif
91#if defined(CONFIG_SYS_PSC3)
92 serial_register(&serial3_device);
93#endif
94#if defined(CONFIG_SYS_PSC4)
95 serial_register(&serial4_device);
96#endif
97#if defined(CONFIG_SYS_PSC6)
98 serial_register(&serial6_device);
99#endif
100#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400101#if defined(CONFIG_SYS_BFIN_UART)
102 serial_register_bfin_uart();
103#endif
Michal Simek49a23e42011-09-25 21:03:08 +0000104#if defined(CONFIG_XILINX_UARTLITE)
105# ifdef XILINX_UARTLITE_BASEADDR
106 serial_register(&uartlite_serial0_device);
107# endif /* XILINX_UARTLITE_BASEADDR */
108# ifdef XILINX_UARTLITE_BASEADDR1
109 serial_register(&uartlite_serial1_device);
110# endif /* XILINX_UARTLITE_BASEADDR1 */
111# ifdef XILINX_UARTLITE_BASEADDR2
112 serial_register(&uartlite_serial2_device);
113# endif /* XILINX_UARTLITE_BASEADDR2 */
114# ifdef XILINX_UARTLITE_BASEADDR3
115 serial_register(&uartlite_serial3_device);
116# endif /* XILINX_UARTLITE_BASEADDR3 */
117#endif /* CONFIG_XILINX_UARTLITE */
Michal Simek194846f2012-09-14 00:55:24 +0000118#if defined(CONFIG_ZYNQ_SERIAL)
119# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR0
120 serial_register(&uart_zynq_serial0_device);
121# endif
122# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR1
123 serial_register(&uart_zynq_serial1_device);
124# endif
125#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000126 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000127}
128
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000129void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000130{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200131 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000132 struct serial_device *s = serial_devices;
133
wdenk2ee66532004-10-11 22:43:02 +0000134 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000135 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000136
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000137 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000138 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
139
Marek Vasut89143fb2012-09-07 14:35:31 +0200140 dev.start = s->start;
141 dev.stop = s->stop;
wdenk281e00a2004-08-01 22:48:16 +0000142 dev.putc = s->putc;
143 dev.puts = s->puts;
144 dev.getc = s->getc;
145 dev.tstc = s->tstc;
146
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000147 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000148
149 s = s->next;
150 }
151}
152
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000153int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000154{
155 struct serial_device *s;
156
wdenk2ee66532004-10-11 22:43:02 +0000157 for (s = serial_devices; s; s = s->next) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000158 if (strcmp(s->name, name) == 0) {
wdenk281e00a2004-08-01 22:48:16 +0000159 serial_current = s;
160 return 0;
161 }
162 }
163
164 return 1;
165}
166
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000167void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000168{
169 struct serial_device *s;
170
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000171 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200172 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000173}
174
Simon Glass857c2832011-08-19 11:09:43 +0000175static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000176{
Simon Glass857c2832011-08-19 11:09:43 +0000177 struct serial_device *dev;
178
wdenk2ee66532004-10-11 22:43:02 +0000179 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
Simon Glass857c2832011-08-19 11:09:43 +0000180 dev = default_serial_console();
wdenk2ee66532004-10-11 22:43:02 +0000181
Simon Glass857c2832011-08-19 11:09:43 +0000182 /* We must have a console device */
183 if (!dev)
184 panic("Cannot find console");
185 } else
186 dev = serial_current;
187 return dev;
188}
wdenk281e00a2004-08-01 22:48:16 +0000189
Simon Glass857c2832011-08-19 11:09:43 +0000190int serial_init(void)
191{
Marek Vasut89143fb2012-09-07 14:35:31 +0200192 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000193}
194
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000195void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000196{
Simon Glass857c2832011-08-19 11:09:43 +0000197 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000198}
199
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000200int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000201{
Simon Glass857c2832011-08-19 11:09:43 +0000202 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000203}
204
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000205int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000206{
Simon Glass857c2832011-08-19 11:09:43 +0000207 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000208}
209
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000210void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000211{
Simon Glass857c2832011-08-19 11:09:43 +0000212 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000213}
214
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000215void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000216{
Simon Glass857c2832011-08-19 11:09:43 +0000217 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000218}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000219
220#if CONFIG_POST & CONFIG_SYS_POST_UART
221static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
222
223/* Mark weak until post/cpu/.../uart.c migrate over */
224__weak
225int uart_post_test(int flags)
226{
227 unsigned char c;
228 int ret, saved_baud, b;
229 struct serial_device *saved_dev, *s;
230 bd_t *bd = gd->bd;
231
232 /* Save current serial state */
233 ret = 0;
234 saved_dev = serial_current;
235 saved_baud = bd->bi_baudrate;
236
237 for (s = serial_devices; s; s = s->next) {
238 /* If this driver doesn't support loop back, skip it */
239 if (!s->loop)
240 continue;
241
242 /* Test the next device */
243 serial_current = s;
244
245 ret = serial_init();
246 if (ret)
247 goto done;
248
249 /* Consume anything that happens to be queued */
250 while (serial_tstc())
251 serial_getc();
252
253 /* Enable loop back */
254 s->loop(1);
255
256 /* Test every available baud rate */
257 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
258 bd->bi_baudrate = bauds[b];
259 serial_setbrg();
260
261 /*
262 * Stick to printable chars to avoid issues:
263 * - terminal corruption
264 * - serial program reacting to sequences and sending
265 * back random extra data
266 * - most serial drivers add in extra chars (like \r\n)
267 */
268 for (c = 0x20; c < 0x7f; ++c) {
269 /* Send it out */
270 serial_putc(c);
271
272 /* Make sure it's the same one */
273 ret = (c != serial_getc());
274 if (ret) {
275 s->loop(0);
276 goto done;
277 }
278
279 /* Clean up the output in case it was sent */
280 serial_putc('\b');
281 ret = ('\b' != serial_getc());
282 if (ret) {
283 s->loop(0);
284 goto done;
285 }
286 }
287 }
288
289 /* Disable loop back */
290 s->loop(0);
291
Marek Vasut89143fb2012-09-07 14:35:31 +0200292 /* XXX: There is no serial_stop() !? */
293 if (s->stop)
294 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000295 }
296
297 done:
298 /* Restore previous serial state */
299 serial_current = saved_dev;
300 bd->bi_baudrate = saved_baud;
301 serial_reinit_all();
302 serial_setbrg();
303
304 return ret;
305}
306#endif