blob: bed907e25c2ddef8ddf0832782ffc48c2933e90c [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 Vasutb4980512012-09-12 19:39:57 +020046serial_initfunc(s5p_serial_initialize);
Marek Vasutf0eb1f62012-09-12 13:50:56 +020047
Mike Frysingerc52b4f72011-04-29 18:03:30 +000048void serial_register(struct serial_device *dev)
wdenk281e00a2004-08-01 22:48:16 +000049{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020050#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut89143fb2012-09-07 14:35:31 +020051 dev->start += gd->reloc_off;
wdenk281e00a2004-08-01 22:48:16 +000052 dev->setbrg += gd->reloc_off;
53 dev->getc += gd->reloc_off;
54 dev->tstc += gd->reloc_off;
55 dev->putc += gd->reloc_off;
56 dev->puts += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -050057#endif
wdenk281e00a2004-08-01 22:48:16 +000058
59 dev->next = serial_devices;
60 serial_devices = dev;
wdenk281e00a2004-08-01 22:48:16 +000061}
62
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +000063void serial_initialize(void)
wdenk281e00a2004-08-01 22:48:16 +000064{
Marek Vasutf0eb1f62012-09-12 13:50:56 +020065 mpc8xx_serial_initialize();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#if defined(CONFIG_SYS_NS16550_SERIAL)
67#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020068 serial_register(&eserial1_device);
69#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020071 serial_register(&eserial2_device);
72#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020074 serial_register(&eserial3_device);
75#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk0fd30252006-08-30 23:02:10 +020077 serial_register(&eserial4_device);
78#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079#endif /* CONFIG_SYS_NS16550_SERIAL */
Marek Vasut1fe5c112012-09-12 13:57:58 +020080 pxa_serial_initialize();
Marek Vasut28af6382012-09-12 16:01:16 +020081 s3c24xx_serial_initialize();
Marek Vasutb4980512012-09-12 19:39:57 +020082 s5p_serial_initialize();
Anatolij Gustschine3b28e62010-04-24 19:27:05 +020083#if defined(CONFIG_MPC512X)
84#if defined(CONFIG_SYS_PSC1)
85 serial_register(&serial1_device);
86#endif
87#if defined(CONFIG_SYS_PSC3)
88 serial_register(&serial3_device);
89#endif
90#if defined(CONFIG_SYS_PSC4)
91 serial_register(&serial4_device);
92#endif
93#if defined(CONFIG_SYS_PSC6)
94 serial_register(&serial6_device);
95#endif
96#endif
Mike Frysinger635f3302011-04-29 23:23:28 -040097#if defined(CONFIG_SYS_BFIN_UART)
98 serial_register_bfin_uart();
99#endif
Michal Simek49a23e42011-09-25 21:03:08 +0000100#if defined(CONFIG_XILINX_UARTLITE)
101# ifdef XILINX_UARTLITE_BASEADDR
102 serial_register(&uartlite_serial0_device);
103# endif /* XILINX_UARTLITE_BASEADDR */
104# ifdef XILINX_UARTLITE_BASEADDR1
105 serial_register(&uartlite_serial1_device);
106# endif /* XILINX_UARTLITE_BASEADDR1 */
107# ifdef XILINX_UARTLITE_BASEADDR2
108 serial_register(&uartlite_serial2_device);
109# endif /* XILINX_UARTLITE_BASEADDR2 */
110# ifdef XILINX_UARTLITE_BASEADDR3
111 serial_register(&uartlite_serial3_device);
112# endif /* XILINX_UARTLITE_BASEADDR3 */
113#endif /* CONFIG_XILINX_UARTLITE */
Michal Simek194846f2012-09-14 00:55:24 +0000114#if defined(CONFIG_ZYNQ_SERIAL)
115# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR0
116 serial_register(&uart_zynq_serial0_device);
117# endif
118# ifdef CONFIG_ZYNQ_SERIAL_BASEADDR1
119 serial_register(&uart_zynq_serial1_device);
120# endif
121#endif
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000122 serial_assign(default_serial_console()->name);
wdenk281e00a2004-08-01 22:48:16 +0000123}
124
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000125void serial_stdio_init(void)
wdenk281e00a2004-08-01 22:48:16 +0000126{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200127 struct stdio_dev dev;
wdenk281e00a2004-08-01 22:48:16 +0000128 struct serial_device *s = serial_devices;
129
wdenk2ee66532004-10-11 22:43:02 +0000130 while (s) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000131 memset(&dev, 0, sizeof(dev));
wdenk281e00a2004-08-01 22:48:16 +0000132
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000133 strcpy(dev.name, s->name);
wdenk281e00a2004-08-01 22:48:16 +0000134 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
135
Marek Vasut89143fb2012-09-07 14:35:31 +0200136 dev.start = s->start;
137 dev.stop = s->stop;
wdenk281e00a2004-08-01 22:48:16 +0000138 dev.putc = s->putc;
139 dev.puts = s->puts;
140 dev.getc = s->getc;
141 dev.tstc = s->tstc;
142
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000143 stdio_register(&dev);
wdenk281e00a2004-08-01 22:48:16 +0000144
145 s = s->next;
146 }
147}
148
Gerlando Falauto7813ca92011-11-18 06:49:12 +0000149int serial_assign(const char *name)
wdenk281e00a2004-08-01 22:48:16 +0000150{
151 struct serial_device *s;
152
wdenk2ee66532004-10-11 22:43:02 +0000153 for (s = serial_devices; s; s = s->next) {
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000154 if (strcmp(s->name, name) == 0) {
wdenk281e00a2004-08-01 22:48:16 +0000155 serial_current = s;
156 return 0;
157 }
158 }
159
160 return 1;
161}
162
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000163void serial_reinit_all(void)
wdenk281e00a2004-08-01 22:48:16 +0000164{
165 struct serial_device *s;
166
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000167 for (s = serial_devices; s; s = s->next)
Marek Vasut89143fb2012-09-07 14:35:31 +0200168 s->start();
wdenk281e00a2004-08-01 22:48:16 +0000169}
170
Simon Glass857c2832011-08-19 11:09:43 +0000171static struct serial_device *get_current(void)
wdenk281e00a2004-08-01 22:48:16 +0000172{
Simon Glass857c2832011-08-19 11:09:43 +0000173 struct serial_device *dev;
174
wdenk2ee66532004-10-11 22:43:02 +0000175 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
Simon Glass857c2832011-08-19 11:09:43 +0000176 dev = default_serial_console();
wdenk2ee66532004-10-11 22:43:02 +0000177
Simon Glass857c2832011-08-19 11:09:43 +0000178 /* We must have a console device */
179 if (!dev)
180 panic("Cannot find console");
181 } else
182 dev = serial_current;
183 return dev;
184}
wdenk281e00a2004-08-01 22:48:16 +0000185
Simon Glass857c2832011-08-19 11:09:43 +0000186int serial_init(void)
187{
Marek Vasut89143fb2012-09-07 14:35:31 +0200188 return get_current()->start();
wdenk281e00a2004-08-01 22:48:16 +0000189}
190
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000191void serial_setbrg(void)
wdenk281e00a2004-08-01 22:48:16 +0000192{
Simon Glass857c2832011-08-19 11:09:43 +0000193 get_current()->setbrg();
wdenk281e00a2004-08-01 22:48:16 +0000194}
195
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000196int serial_getc(void)
wdenk281e00a2004-08-01 22:48:16 +0000197{
Simon Glass857c2832011-08-19 11:09:43 +0000198 return get_current()->getc();
wdenk281e00a2004-08-01 22:48:16 +0000199}
200
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000201int serial_tstc(void)
wdenk281e00a2004-08-01 22:48:16 +0000202{
Simon Glass857c2832011-08-19 11:09:43 +0000203 return get_current()->tstc();
wdenk281e00a2004-08-01 22:48:16 +0000204}
205
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000206void serial_putc(const char c)
wdenk281e00a2004-08-01 22:48:16 +0000207{
Simon Glass857c2832011-08-19 11:09:43 +0000208 get_current()->putc(c);
wdenk281e00a2004-08-01 22:48:16 +0000209}
210
Gerlando Falautoa6e6f7f2011-11-18 06:49:11 +0000211void serial_puts(const char *s)
wdenk281e00a2004-08-01 22:48:16 +0000212{
Simon Glass857c2832011-08-19 11:09:43 +0000213 get_current()->puts(s);
wdenk281e00a2004-08-01 22:48:16 +0000214}
Mike Frysinger7b826c22011-05-14 06:56:15 +0000215
216#if CONFIG_POST & CONFIG_SYS_POST_UART
217static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
218
219/* Mark weak until post/cpu/.../uart.c migrate over */
220__weak
221int uart_post_test(int flags)
222{
223 unsigned char c;
224 int ret, saved_baud, b;
225 struct serial_device *saved_dev, *s;
226 bd_t *bd = gd->bd;
227
228 /* Save current serial state */
229 ret = 0;
230 saved_dev = serial_current;
231 saved_baud = bd->bi_baudrate;
232
233 for (s = serial_devices; s; s = s->next) {
234 /* If this driver doesn't support loop back, skip it */
235 if (!s->loop)
236 continue;
237
238 /* Test the next device */
239 serial_current = s;
240
241 ret = serial_init();
242 if (ret)
243 goto done;
244
245 /* Consume anything that happens to be queued */
246 while (serial_tstc())
247 serial_getc();
248
249 /* Enable loop back */
250 s->loop(1);
251
252 /* Test every available baud rate */
253 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
254 bd->bi_baudrate = bauds[b];
255 serial_setbrg();
256
257 /*
258 * Stick to printable chars to avoid issues:
259 * - terminal corruption
260 * - serial program reacting to sequences and sending
261 * back random extra data
262 * - most serial drivers add in extra chars (like \r\n)
263 */
264 for (c = 0x20; c < 0x7f; ++c) {
265 /* Send it out */
266 serial_putc(c);
267
268 /* Make sure it's the same one */
269 ret = (c != serial_getc());
270 if (ret) {
271 s->loop(0);
272 goto done;
273 }
274
275 /* Clean up the output in case it was sent */
276 serial_putc('\b');
277 ret = ('\b' != serial_getc());
278 if (ret) {
279 s->loop(0);
280 goto done;
281 }
282 }
283 }
284
285 /* Disable loop back */
286 s->loop(0);
287
Marek Vasut89143fb2012-09-07 14:35:31 +0200288 /* XXX: There is no serial_stop() !? */
289 if (s->stop)
290 s->stop();
Mike Frysinger7b826c22011-05-14 06:56:15 +0000291 }
292
293 done:
294 /* Restore previous serial state */
295 serial_current = saved_dev;
296 bd->bi_baudrate = saved_baud;
297 serial_reinit_all();
298 serial_setbrg();
299
300 return ret;
301}
302#endif