blob: ad8898f151b256ece8730df1dec3db565c2099d4 [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>
25#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020026#include <stdio_dev.h>
Mike Frysinger078f2f12011-05-14 06:56:15 +000027#include <post.h>
28#include <linux/compiler.h>
wdenk7ac16102004-08-01 22:48:16 +000029
Wolfgang Denk6405a152006-03-31 18:32:53 +020030DECLARE_GLOBAL_DATA_PTR;
31
Gerlando Falauto34148d62011-11-18 06:49:11 +000032static struct serial_device *serial_devices;
33static struct serial_device *serial_current;
wdenk7ac16102004-08-01 22:48:16 +000034
Marek Vasutf6af0482012-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 Vasut419d8942012-09-12 13:50:56 +020043serial_initfunc(mpc8xx_serial_initialize);
Marek Vasutf3442012012-09-12 13:57:58 +020044serial_initfunc(pxa_serial_initialize);
Marek Vasutb3e48aa2012-09-12 16:01:16 +020045serial_initfunc(s3c24xx_serial_initialize);
Marek Vasut533e31e2012-09-12 19:39:57 +020046serial_initfunc(s5p_serial_initialize);
Tom Rini354531e2012-10-08 14:46:23 -070047serial_initfunc(zynq_serial_initalize);
Marek Vasutd97fb5c2012-09-12 19:45:58 +020048serial_initfunc(uartlite_serial_initialize);
Marek Vasut419d8942012-09-12 13:50:56 +020049
Mike Frysingerffadc822011-04-29 18:03:30 +000050void serial_register(struct serial_device *dev)
wdenk7ac16102004-08-01 22:48:16 +000051{
Wolfgang Denkd0813e52010-10-28 20:00:11 +020052#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasutb46931d2012-09-07 14:35:31 +020053 dev->start += gd->reloc_off;
wdenk7ac16102004-08-01 22:48:16 +000054 dev->setbrg += gd->reloc_off;
55 dev->getc += gd->reloc_off;
56 dev->tstc += gd->reloc_off;
57 dev->putc += gd->reloc_off;
58 dev->puts += gd->reloc_off;
Peter Tyser9057cbf2009-09-21 11:20:36 -050059#endif
wdenk7ac16102004-08-01 22:48:16 +000060
61 dev->next = serial_devices;
62 serial_devices = dev;
wdenk7ac16102004-08-01 22:48:16 +000063}
64
Gerlando Falauto34148d62011-11-18 06:49:11 +000065void serial_initialize(void)
wdenk7ac16102004-08-01 22:48:16 +000066{
Marek Vasut419d8942012-09-12 13:50:56 +020067 mpc8xx_serial_initialize();
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020068#if defined(CONFIG_SYS_NS16550_SERIAL)
69#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk44df5612006-08-30 23:02:10 +020070 serial_register(&eserial1_device);
71#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020072#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk44df5612006-08-30 23:02:10 +020073 serial_register(&eserial2_device);
74#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020075#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk44df5612006-08-30 23:02:10 +020076 serial_register(&eserial3_device);
77#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020078#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk44df5612006-08-30 23:02:10 +020079 serial_register(&eserial4_device);
80#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081#endif /* CONFIG_SYS_NS16550_SERIAL */
Marek Vasutf3442012012-09-12 13:57:58 +020082 pxa_serial_initialize();
Marek Vasutb3e48aa2012-09-12 16:01:16 +020083 s3c24xx_serial_initialize();
Marek Vasut533e31e2012-09-12 19:39:57 +020084 s5p_serial_initialize();
Anatolij Gustschinee4aac82010-04-24 19:27:05 +020085#if defined(CONFIG_MPC512X)
86#if defined(CONFIG_SYS_PSC1)
87 serial_register(&serial1_device);
88#endif
89#if defined(CONFIG_SYS_PSC3)
90 serial_register(&serial3_device);
91#endif
92#if defined(CONFIG_SYS_PSC4)
93 serial_register(&serial4_device);
94#endif
95#if defined(CONFIG_SYS_PSC6)
96 serial_register(&serial6_device);
97#endif
98#endif
Mike Frysinger53ba3222011-04-29 23:23:28 -040099#if defined(CONFIG_SYS_BFIN_UART)
100 serial_register_bfin_uart();
101#endif
Marek Vasutd97fb5c2012-09-12 19:45:58 +0200102 uartlite_serial_initialize();
Tom Rini354531e2012-10-08 14:46:23 -0700103 zynq_serial_initalize();
Gerlando Falauto34148d62011-11-18 06:49:11 +0000104 serial_assign(default_serial_console()->name);
wdenk7ac16102004-08-01 22:48:16 +0000105}
106
Gerlando Falauto34148d62011-11-18 06:49:11 +0000107void serial_stdio_init(void)
wdenk7ac16102004-08-01 22:48:16 +0000108{
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200109 struct stdio_dev dev;
wdenk7ac16102004-08-01 22:48:16 +0000110 struct serial_device *s = serial_devices;
111
wdenk8f08c5b2004-10-11 22:43:02 +0000112 while (s) {
Gerlando Falauto34148d62011-11-18 06:49:11 +0000113 memset(&dev, 0, sizeof(dev));
wdenk7ac16102004-08-01 22:48:16 +0000114
Gerlando Falauto34148d62011-11-18 06:49:11 +0000115 strcpy(dev.name, s->name);
wdenk7ac16102004-08-01 22:48:16 +0000116 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
117
Marek Vasutb46931d2012-09-07 14:35:31 +0200118 dev.start = s->start;
119 dev.stop = s->stop;
wdenk7ac16102004-08-01 22:48:16 +0000120 dev.putc = s->putc;
121 dev.puts = s->puts;
122 dev.getc = s->getc;
123 dev.tstc = s->tstc;
124
Gerlando Falauto34148d62011-11-18 06:49:11 +0000125 stdio_register(&dev);
wdenk7ac16102004-08-01 22:48:16 +0000126
127 s = s->next;
128 }
129}
130
Gerlando Falauto92999582011-11-18 06:49:12 +0000131int serial_assign(const char *name)
wdenk7ac16102004-08-01 22:48:16 +0000132{
133 struct serial_device *s;
134
wdenk8f08c5b2004-10-11 22:43:02 +0000135 for (s = serial_devices; s; s = s->next) {
Gerlando Falauto34148d62011-11-18 06:49:11 +0000136 if (strcmp(s->name, name) == 0) {
wdenk7ac16102004-08-01 22:48:16 +0000137 serial_current = s;
138 return 0;
139 }
140 }
141
142 return 1;
143}
144
Gerlando Falauto34148d62011-11-18 06:49:11 +0000145void serial_reinit_all(void)
wdenk7ac16102004-08-01 22:48:16 +0000146{
147 struct serial_device *s;
148
Gerlando Falauto34148d62011-11-18 06:49:11 +0000149 for (s = serial_devices; s; s = s->next)
Marek Vasutb46931d2012-09-07 14:35:31 +0200150 s->start();
wdenk7ac16102004-08-01 22:48:16 +0000151}
152
Simon Glass8f4e6f12011-08-19 11:09:43 +0000153static struct serial_device *get_current(void)
wdenk7ac16102004-08-01 22:48:16 +0000154{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000155 struct serial_device *dev;
156
wdenk8f08c5b2004-10-11 22:43:02 +0000157 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
Simon Glass8f4e6f12011-08-19 11:09:43 +0000158 dev = default_serial_console();
wdenk8f08c5b2004-10-11 22:43:02 +0000159
Simon Glass8f4e6f12011-08-19 11:09:43 +0000160 /* We must have a console device */
161 if (!dev)
162 panic("Cannot find console");
163 } else
164 dev = serial_current;
165 return dev;
166}
wdenk7ac16102004-08-01 22:48:16 +0000167
Simon Glass8f4e6f12011-08-19 11:09:43 +0000168int serial_init(void)
169{
Marek Vasutb46931d2012-09-07 14:35:31 +0200170 return get_current()->start();
wdenk7ac16102004-08-01 22:48:16 +0000171}
172
Gerlando Falauto34148d62011-11-18 06:49:11 +0000173void serial_setbrg(void)
wdenk7ac16102004-08-01 22:48:16 +0000174{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000175 get_current()->setbrg();
wdenk7ac16102004-08-01 22:48:16 +0000176}
177
Gerlando Falauto34148d62011-11-18 06:49:11 +0000178int serial_getc(void)
wdenk7ac16102004-08-01 22:48:16 +0000179{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000180 return get_current()->getc();
wdenk7ac16102004-08-01 22:48:16 +0000181}
182
Gerlando Falauto34148d62011-11-18 06:49:11 +0000183int serial_tstc(void)
wdenk7ac16102004-08-01 22:48:16 +0000184{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000185 return get_current()->tstc();
wdenk7ac16102004-08-01 22:48:16 +0000186}
187
Gerlando Falauto34148d62011-11-18 06:49:11 +0000188void serial_putc(const char c)
wdenk7ac16102004-08-01 22:48:16 +0000189{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000190 get_current()->putc(c);
wdenk7ac16102004-08-01 22:48:16 +0000191}
192
Gerlando Falauto34148d62011-11-18 06:49:11 +0000193void serial_puts(const char *s)
wdenk7ac16102004-08-01 22:48:16 +0000194{
Simon Glass8f4e6f12011-08-19 11:09:43 +0000195 get_current()->puts(s);
wdenk7ac16102004-08-01 22:48:16 +0000196}
Mike Frysinger078f2f12011-05-14 06:56:15 +0000197
198#if CONFIG_POST & CONFIG_SYS_POST_UART
199static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
200
201/* Mark weak until post/cpu/.../uart.c migrate over */
202__weak
203int uart_post_test(int flags)
204{
205 unsigned char c;
206 int ret, saved_baud, b;
207 struct serial_device *saved_dev, *s;
208 bd_t *bd = gd->bd;
209
210 /* Save current serial state */
211 ret = 0;
212 saved_dev = serial_current;
213 saved_baud = bd->bi_baudrate;
214
215 for (s = serial_devices; s; s = s->next) {
216 /* If this driver doesn't support loop back, skip it */
217 if (!s->loop)
218 continue;
219
220 /* Test the next device */
221 serial_current = s;
222
223 ret = serial_init();
224 if (ret)
225 goto done;
226
227 /* Consume anything that happens to be queued */
228 while (serial_tstc())
229 serial_getc();
230
231 /* Enable loop back */
232 s->loop(1);
233
234 /* Test every available baud rate */
235 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
236 bd->bi_baudrate = bauds[b];
237 serial_setbrg();
238
239 /*
240 * Stick to printable chars to avoid issues:
241 * - terminal corruption
242 * - serial program reacting to sequences and sending
243 * back random extra data
244 * - most serial drivers add in extra chars (like \r\n)
245 */
246 for (c = 0x20; c < 0x7f; ++c) {
247 /* Send it out */
248 serial_putc(c);
249
250 /* Make sure it's the same one */
251 ret = (c != serial_getc());
252 if (ret) {
253 s->loop(0);
254 goto done;
255 }
256
257 /* Clean up the output in case it was sent */
258 serial_putc('\b');
259 ret = ('\b' != serial_getc());
260 if (ret) {
261 s->loop(0);
262 goto done;
263 }
264 }
265 }
266
267 /* Disable loop back */
268 s->loop(0);
269
Marek Vasutb46931d2012-09-07 14:35:31 +0200270 /* XXX: There is no serial_stop() !? */
271 if (s->stop)
272 s->stop();
Mike Frysinger078f2f12011-05-14 06:56:15 +0000273 }
274
275 done:
276 /* Restore previous serial state */
277 serial_current = saved_dev;
278 bd->bi_baudrate = saved_baud;
279 serial_reinit_all();
280 serial_setbrg();
281
282 return ret;
283}
284#endif