]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/serial.c
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
[karo-tx-uboot.git] / common / serial.c
1 /*
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>
26 #include <stdio_dev.h>
27 #include <post.h>
28 #include <linux/compiler.h>
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 static struct serial_device *serial_devices = NULL;
33 static struct serial_device *serial_current = NULL;
34
35 void serial_register(struct serial_device *dev)
36 {
37 #ifdef CONFIG_NEEDS_MANUAL_RELOC
38         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;
44 #endif
45
46         dev->next = serial_devices;
47         serial_devices = dev;
48 }
49
50 void serial_initialize (void)
51 {
52 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
53         serial_register (&serial_smc_device);
54 #endif
55 #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);
58 #endif
59
60 #if defined(CONFIG_SYS_NS16550_SERIAL)
61 #if defined(CONFIG_SYS_NS16550_COM1)
62         serial_register(&eserial1_device);
63 #endif
64 #if defined(CONFIG_SYS_NS16550_COM2)
65         serial_register(&eserial2_device);
66 #endif
67 #if defined(CONFIG_SYS_NS16550_COM3)
68         serial_register(&eserial3_device);
69 #endif
70 #if defined(CONFIG_SYS_NS16550_COM4)
71         serial_register(&eserial4_device);
72 #endif
73 #endif /* CONFIG_SYS_NS16550_SERIAL */
74 #if defined (CONFIG_FFUART)
75         serial_register(&serial_ffuart_device);
76 #endif
77 #if defined (CONFIG_BTUART)
78         serial_register(&serial_btuart_device);
79 #endif
80 #if defined (CONFIG_STUART)
81         serial_register(&serial_stuart_device);
82 #endif
83 #if defined(CONFIG_S3C2410)
84         serial_register(&s3c24xx_serial0_device);
85         serial_register(&s3c24xx_serial1_device);
86         serial_register(&s3c24xx_serial2_device);
87 #endif
88 #if defined(CONFIG_S5P)
89         serial_register(&s5p_serial0_device);
90         serial_register(&s5p_serial1_device);
91         serial_register(&s5p_serial2_device);
92         serial_register(&s5p_serial3_device);
93 #endif
94 #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
108 #if defined(CONFIG_SYS_BFIN_UART)
109         serial_register_bfin_uart();
110 #endif
111         serial_assign (default_serial_console ()->name);
112 }
113
114 void serial_stdio_init (void)
115 {
116         struct stdio_dev dev;
117         struct serial_device *s = serial_devices;
118
119         while (s) {
120                 memset (&dev, 0, sizeof (dev));
121
122                 strcpy (dev.name, s->name);
123                 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
124
125                 dev.start = s->init;
126                 dev.stop = s->uninit;
127                 dev.putc = s->putc;
128                 dev.puts = s->puts;
129                 dev.getc = s->getc;
130                 dev.tstc = s->tstc;
131
132                 stdio_register (&dev);
133
134                 s = s->next;
135         }
136 }
137
138 int serial_assign (char *name)
139 {
140         struct serial_device *s;
141
142         for (s = serial_devices; s; s = s->next) {
143                 if (strcmp (s->name, name) == 0) {
144                         serial_current = s;
145                         return 0;
146                 }
147         }
148
149         return 1;
150 }
151
152 void serial_reinit_all (void)
153 {
154         struct serial_device *s;
155
156         for (s = serial_devices; s; s = s->next) {
157                 s->init ();
158         }
159 }
160
161 int serial_init (void)
162 {
163         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
164                 struct serial_device *dev = default_serial_console ();
165
166                 return dev->init ();
167         }
168
169         return serial_current->init ();
170 }
171
172 void serial_setbrg (void)
173 {
174         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
175                 struct serial_device *dev = default_serial_console ();
176
177                 dev->setbrg ();
178                 return;
179         }
180
181         serial_current->setbrg ();
182 }
183
184 int serial_getc (void)
185 {
186         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
187                 struct serial_device *dev = default_serial_console ();
188
189                 return dev->getc ();
190         }
191
192         return serial_current->getc ();
193 }
194
195 int serial_tstc (void)
196 {
197         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
198                 struct serial_device *dev = default_serial_console ();
199
200                 return dev->tstc ();
201         }
202
203         return serial_current->tstc ();
204 }
205
206 void serial_putc (const char c)
207 {
208         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
209                 struct serial_device *dev = default_serial_console ();
210
211                 dev->putc (c);
212                 return;
213         }
214
215         serial_current->putc (c);
216 }
217
218 void serial_puts (const char *s)
219 {
220         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
221                 struct serial_device *dev = default_serial_console ();
222
223                 dev->puts (s);
224                 return;
225         }
226
227         serial_current->puts (s);
228 }
229
230 #if CONFIG_POST & CONFIG_SYS_POST_UART
231 static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
232
233 /* Mark weak until post/cpu/.../uart.c migrate over */
234 __weak
235 int uart_post_test(int flags)
236 {
237         unsigned char c;
238         int ret, saved_baud, b;
239         struct serial_device *saved_dev, *s;
240         bd_t *bd = gd->bd;
241
242         /* Save current serial state */
243         ret = 0;
244         saved_dev = serial_current;
245         saved_baud = bd->bi_baudrate;
246
247         for (s = serial_devices; s; s = s->next) {
248                 /* If this driver doesn't support loop back, skip it */
249                 if (!s->loop)
250                         continue;
251
252                 /* Test the next device */
253                 serial_current = s;
254
255                 ret = serial_init();
256                 if (ret)
257                         goto done;
258
259                 /* Consume anything that happens to be queued */
260                 while (serial_tstc())
261                         serial_getc();
262
263                 /* Enable loop back */
264                 s->loop(1);
265
266                 /* Test every available baud rate */
267                 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
268                         bd->bi_baudrate = bauds[b];
269                         serial_setbrg();
270
271                         /*
272                          * Stick to printable chars to avoid issues:
273                          *  - terminal corruption
274                          *  - serial program reacting to sequences and sending
275                          *    back random extra data
276                          *  - most serial drivers add in extra chars (like \r\n)
277                          */
278                         for (c = 0x20; c < 0x7f; ++c) {
279                                 /* Send it out */
280                                 serial_putc(c);
281
282                                 /* Make sure it's the same one */
283                                 ret = (c != serial_getc());
284                                 if (ret) {
285                                         s->loop(0);
286                                         goto done;
287                                 }
288
289                                 /* Clean up the output in case it was sent */
290                                 serial_putc('\b');
291                                 ret = ('\b' != serial_getc());
292                                 if (ret) {
293                                         s->loop(0);
294                                         goto done;
295                                 }
296                         }
297                 }
298
299                 /* Disable loop back */
300                 s->loop(0);
301
302                 /* XXX: There is no serial_uninit() !? */
303                 if (s->uninit)
304                         s->uninit();
305         }
306
307  done:
308         /* Restore previous serial state */
309         serial_current = saved_dev;
310         bd->bi_baudrate = saved_baud;
311         serial_reinit_all();
312         serial_setbrg();
313
314         return ret;
315 }
316 #endif