5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
26 #include <stdio_dev.h>
28 #include <linux/compiler.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 static struct serial_device *serial_devices;
33 static struct serial_device *serial_current;
35 static void serial_null(void)
39 #define serial_initfunc(name) \
41 __attribute__((weak, alias("serial_null")));
43 serial_initfunc(mpc8xx_serial_initialize);
44 serial_initfunc(ns16550_serial_initialize);
45 serial_initfunc(pxa_serial_initialize);
46 serial_initfunc(s3c24xx_serial_initialize);
47 serial_initfunc(s5p_serial_initialize);
48 serial_initfunc(zynq_serial_initalize);
49 serial_initfunc(bfin_serial_initialize);
50 serial_initfunc(bfin_jtag_initialize);
51 serial_initfunc(mpc512x_serial_initialize);
52 serial_initfunc(uartlite_serial_initialize);
53 serial_initfunc(au1x00_serial_initialize);
55 void serial_register(struct serial_device *dev)
57 #ifdef CONFIG_NEEDS_MANUAL_RELOC
58 dev->start += gd->reloc_off;
59 dev->setbrg += gd->reloc_off;
60 dev->getc += gd->reloc_off;
61 dev->tstc += gd->reloc_off;
62 dev->putc += gd->reloc_off;
63 dev->puts += gd->reloc_off;
66 dev->next = serial_devices;
70 void serial_initialize(void)
72 mpc8xx_serial_initialize();
73 ns16550_serial_initialize();
74 pxa_serial_initialize();
75 s3c24xx_serial_initialize();
76 s5p_serial_initialize();
77 mpc512x_serial_initialize();
78 bfin_serial_initialize();
79 bfin_jtag_initialize();
80 uartlite_serial_initialize();
81 zynq_serial_initalize();
82 au1x00_serial_initialize();
84 serial_assign(default_serial_console()->name);
87 void serial_stdio_init(void)
90 struct serial_device *s = serial_devices;
93 memset(&dev, 0, sizeof(dev));
95 strcpy(dev.name, s->name);
96 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
105 stdio_register(&dev);
111 int serial_assign(const char *name)
113 struct serial_device *s;
115 for (s = serial_devices; s; s = s->next) {
116 if (strcmp(s->name, name) == 0) {
125 void serial_reinit_all(void)
127 struct serial_device *s;
129 for (s = serial_devices; s; s = s->next)
133 static struct serial_device *get_current(void)
135 struct serial_device *dev;
137 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
138 dev = default_serial_console();
140 /* We must have a console device */
142 panic("Cannot find console");
144 dev = serial_current;
148 int serial_init(void)
150 return get_current()->start();
153 void serial_setbrg(void)
155 get_current()->setbrg();
158 int serial_getc(void)
160 return get_current()->getc();
163 int serial_tstc(void)
165 return get_current()->tstc();
168 void serial_putc(const char c)
170 get_current()->putc(c);
173 void serial_puts(const char *s)
175 get_current()->puts(s);
178 #if CONFIG_POST & CONFIG_SYS_POST_UART
179 static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
181 /* Mark weak until post/cpu/.../uart.c migrate over */
183 int uart_post_test(int flags)
186 int ret, saved_baud, b;
187 struct serial_device *saved_dev, *s;
190 /* Save current serial state */
192 saved_dev = serial_current;
193 saved_baud = bd->bi_baudrate;
195 for (s = serial_devices; s; s = s->next) {
196 /* If this driver doesn't support loop back, skip it */
200 /* Test the next device */
207 /* Consume anything that happens to be queued */
208 while (serial_tstc())
211 /* Enable loop back */
214 /* Test every available baud rate */
215 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
216 bd->bi_baudrate = bauds[b];
220 * Stick to printable chars to avoid issues:
221 * - terminal corruption
222 * - serial program reacting to sequences and sending
223 * back random extra data
224 * - most serial drivers add in extra chars (like \r\n)
226 for (c = 0x20; c < 0x7f; ++c) {
230 /* Make sure it's the same one */
231 ret = (c != serial_getc());
237 /* Clean up the output in case it was sent */
239 ret = ('\b' != serial_getc());
247 /* Disable loop back */
250 /* XXX: There is no serial_stop() !? */
256 /* Restore previous serial state */
257 serial_current = saved_dev;
258 bd->bi_baudrate = saved_baud;