blob: 4f2bc7ffb9d58ad5794b9c9f987a3468f2544b84 [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
Mike Frysingerc52b4f72011-04-29 18:03:30 +000035void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +000036{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020037#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk281e00a2004-08-01 22:48:16 +000038 dev->init += gd->reloc_off;
39 dev->setbrg += gd->reloc_off;
40 dev->getc += gd->reloc_off;
41 dev->tstc += gd->reloc_off;
42 dev->putc += gd->reloc_off;
43 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -050044#endif
wdenk281e00a2004-08-01 22:48:16 +000045
46 dev->next = serial_devices;
47 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +000048}
49
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000050void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +000051{
52#if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000053 serial_register(&serial_smc_device);
wdenk281e00a2004-08-01 22:48:16 +000054#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000055#if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
56 defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
57 serial_register(&serial_scc_device);
wdenk281e00a2004-08-01 22:48:16 +000058#endif
59
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#if defined(CONFIG_SYS_NS16550_SERIAL)
61#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020062 serial_register(&eserial1_device);
63#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020065 serial_register(&eserial2_device);
66#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020068 serial_register(&eserial3_device);
69#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020071 serial_register(&eserial4_device);
72#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#endif /* CONFIG_SYS_NS16550_SERIAL */
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000074#if defined(CONFIG_FFUART)
stefano babic80172c62007-08-30 22:57:04 +020075 serial_register(&serial_ffuart_device);
76#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000077#if defined(CONFIG_BTUART)
stefano babic80172c62007-08-30 22:57:04 +020078 serial_register(&serial_btuart_device);
79#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000080#if defined(CONFIG_STUART)
stefano babic80172c62007-08-30 22:57:04 +020081 serial_register(&serial_stuart_device);
82#endif
Harald Weltea7c185e2007-12-19 14:24:40 +010083#if defined(CONFIG_S3C2410)
84 serial_register(&s3c24xx_serial0_device);
85 serial_register(&s3c24xx_serial1_device);
86 serial_register(&s3c24xx_serial2_device);
87#endif
Minkyu Kang889a2752010-08-23 19:52:03 +090088#if defined(CONFIG_S5P)
Minkyu Kang46a3b5c2010-03-24 16:59:30 +090089 serial_register(&s5p_serial0_device);
90 serial_register(&s5p_serial1_device);
91 serial_register(&s5p_serial2_device);
92 serial_register(&s5p_serial3_device);
Minkyu Kangdd2c9e62009-10-01 17:20:28 +090093#endif
Anatolij Gustschine3b28e62010-04-24 19:27:05 +020094#if defined(CONFIG_MPC512X)
95#if defined(CONFIG_SYS_PSC1)
96 serial_register(&serial1_device);
97#endif
98#if defined(CONFIG_SYS_PSC3)
99 serial_register(&serial3_device);
100#endif
101#if defined(CONFIG_SYS_PSC4)
102 serial_register(&serial4_device);
103#endif
104#if defined(CONFIG_SYS_PSC6)
105 serial_register(&serial6_device);
106#endif
107#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400108#if defined(CONFIG_SYS_BFIN_UART)
109 serial_register_bfin_uart();
110#endif
Michal Simek49a23e42011-09-25 21:03:08 +0000111#if defined(CONFIG_XILINX_UARTLITE)
112# ifdef XILINX_UARTLITE_BASEADDR
113 serial_register(&uartlite_serial0_device);
114# endif /* XILINX_UARTLITE_BASEADDR */
115# ifdef XILINX_UARTLITE_BASEADDR1
116 serial_register(&uartlite_serial1_device);
117# endif /* XILINX_UARTLITE_BASEADDR1 */
118# ifdef XILINX_UARTLITE_BASEADDR2
119 serial_register(&uartlite_serial2_device);
120# endif /* XILINX_UARTLITE_BASEADDR2 */
121# ifdef XILINX_UARTLITE_BASEADDR3
122 serial_register(&uartlite_serial3_device);
123# endif /* XILINX_UARTLITE_BASEADDR3 */
124#endif /* CONFIG_XILINX_UARTLITE */
Michal Simek194846f2012-09-14 00:55:24 +0000125#if defined(CONFIG_ZYNQ_SERIAL)
126# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR0
127 serial_register(&uart_zynq_serial0_device);
128# endif
129# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR1
130 serial_register(&uart_zynq_serial1_device);
131# endif
132#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000133 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000134}
135
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000136void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000137{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200138 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000139 struct serial_device *s = serial_devices;
140
wdenk2ee66532004-10-11 22:43:02 +0000141 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000142 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000143
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000144 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000145 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
146
147 dev.start = s->init;
Anatolij Gustschine3b28e62010-04-24 19:27:05 +0200148 dev.stop = s->uninit;
wdenk281e00a2004-08-01 22:48:16 +0000149 dev.putc = s->putc;
150 dev.puts = s->puts;
151 dev.getc = s->getc;
152 dev.tstc = s->tstc;
153
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000154 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000155
156 s = s->next;
157 }
158}
159
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000160int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000161{
162 struct serial_device *s;
163
wdenk2ee66532004-10-11 22:43:02 +0000164 for (s = serial_devices; s; s = s->next) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000165 if (strcmp(s->name, name) == 0) {
wdenk281e00a2004-08-01 22:48:16 +0000166 serial_current = s;
167 return 0;
168 }
169 }
170
171 return 1;
172}
173
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000174void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000175{
176 struct serial_device *s;
177
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000178 for (s = serial_devices; s; s = s->next)
179 s->init();
wdenk281e00a2004-08-01 22:48:16 +0000180}
181
Simon Glass857c2832011-08-19 11:09:43 +0000182static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000183{
Simon Glass857c2832011-08-19 11:09:43 +0000184 struct serial_device *dev;
185
wdenk2ee66532004-10-11 22:43:02 +0000186 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
Simon Glass857c2832011-08-19 11:09:43 +0000187 dev = default_serial_console();
wdenk2ee66532004-10-11 22:43:02 +0000188
Simon Glass857c2832011-08-19 11:09:43 +0000189 /* We must have a console device */
190 if (!dev)
191 panic("Cannot find console");
192 } else
193 dev = serial_current;
194 return dev;
195}
wdenk281e00a2004-08-01 22:48:16 +0000196
Simon Glass857c2832011-08-19 11:09:43 +0000197int serial_init(void)
198{
199 return get_current()->init();
wdenk281e00a2004-08-01 22:48:16 +0000200}
201
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000202void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000203{
Simon Glass857c2832011-08-19 11:09:43 +0000204 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000205}
206
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000207int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000208{
Simon Glass857c2832011-08-19 11:09:43 +0000209 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000210}
211
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000212int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000213{
Simon Glass857c2832011-08-19 11:09:43 +0000214 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000215}
216
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000217void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000218{
Simon Glass857c2832011-08-19 11:09:43 +0000219 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000220}
221
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000222void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000223{
Simon Glass857c2832011-08-19 11:09:43 +0000224 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000225}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000226
227#if CONFIG_POST & CONFIG_SYS_POST_UART
228static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
229
230/* Mark weak until post/cpu/.../uart.c migrate over */
231__weak
232int uart_post_test(int flags)
233{
234 unsigned char c;
235 int ret, saved_baud, b;
236 struct serial_device *saved_dev, *s;
237 bd_t *bd = gd->bd;
238
239 /* Save current serial state */
240 ret = 0;
241 saved_dev = serial_current;
242 saved_baud = bd->bi_baudrate;
243
244 for (s = serial_devices; s; s = s->next) {
245 /* If this driver doesn't support loop back, skip it */
246 if (!s->loop)
247 continue;
248
249 /* Test the next device */
250 serial_current = s;
251
252 ret = serial_init();
253 if (ret)
254 goto done;
255
256 /* Consume anything that happens to be queued */
257 while (serial_tstc())
258 serial_getc();
259
260 /* Enable loop back */
261 s->loop(1);
262
263 /* Test every available baud rate */
264 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
265 bd->bi_baudrate = bauds[b];
266 serial_setbrg();
267
268 /*
269 * Stick to printable chars to avoid issues:
270 * - terminal corruption
271 * - serial program reacting to sequences and sending
272 * back random extra data
273 * - most serial drivers add in extra chars (like \r\n)
274 */
275 for (c = 0x20; c < 0x7f; ++c) {
276 /* Send it out */
277 serial_putc(c);
278
279 /* Make sure it's the same one */
280 ret = (c != serial_getc());
281 if (ret) {
282 s->loop(0);
283 goto done;
284 }
285
286 /* Clean up the output in case it was sent */
287 serial_putc('\b');
288 ret = ('\b' != serial_getc());
289 if (ret) {
290 s->loop(0);
291 goto done;
292 }
293 }
294 }
295
296 /* Disable loop back */
297 s->loop(0);
298
299 /* XXX: There is no serial_uninit() !? */
300 if (s->uninit)
301 s->uninit();
302 }
303
304 done:
305 /* Restore previous serial state */
306 serial_current = saved_dev;
307 bd->bi_baudrate = saved_baud;
308 serial_reinit_all();
309 serial_setbrg();
310
311 return ret;
312}
313#endif