]> git.sur5r.net Git - u-boot/blob - common/serial.c
MX51: Drop unused header file for mx51evk
[u-boot] / 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
28 DECLARE_GLOBAL_DATA_PTR;
29
30 static struct serial_device *serial_devices = NULL;
31 static struct serial_device *serial_current = NULL;
32
33 #if !defined(CONFIG_LWMON) && !defined(CONFIG_PXA27X)
34 struct serial_device *__default_serial_console (void)
35 {
36 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
37         return &serial_smc_device;
38 #elif defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
39    || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
40         return &serial_scc_device;
41 #elif defined(CONFIG_4xx) \
42    || defined(CONFIG_MB86R0x) || defined(CONFIG_MPC5xxx) \
43    || defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) \
44    || defined(CONFIG_MPC86xx) || defined(CONFIG_SYS_SC520)
45 #if defined(CONFIG_CONS_INDEX) && defined(CONFIG_SYS_NS16550_SERIAL)
46 #if (CONFIG_CONS_INDEX==1)
47         return &eserial1_device;
48 #elif (CONFIG_CONS_INDEX==2)
49         return &eserial2_device;
50 #elif (CONFIG_CONS_INDEX==3)
51         return &eserial3_device;
52 #elif (CONFIG_CONS_INDEX==4)
53         return &eserial4_device;
54 #else
55 #error "Bad CONFIG_CONS_INDEX."
56 #endif
57         return &serial0_device;
58 #endif
59 #elif defined(CONFIG_MPC512X)
60 #if (CONFIG_PSC_CONSOLE == 3)
61                 return &serial3_device;
62 #elif (CONFIG_PSC_CONSOLE == 6)
63                 return &serial6_device;
64 #else
65 #error "Bad CONFIG_PSC_CONSOLE."
66 #endif
67 #elif defined(CONFIG_S3C2410)
68 #if defined(CONFIG_SERIAL1)
69         return &s3c24xx_serial0_device;
70 #elif defined(CONFIG_SERIAL2)
71         return &s3c24xx_serial1_device;
72 #elif defined(CONFIG_SERIAL3)
73         return &s3c24xx_serial2_device;
74 #else
75 #error "CONFIG_SERIAL? missing."
76 #endif
77 #elif defined(CONFIG_S5P)
78 #if defined(CONFIG_SERIAL0)
79         return &s5p_serial0_device;
80 #elif defined(CONFIG_SERIAL1)
81         return &s5p_serial1_device;
82 #elif defined(CONFIG_SERIAL2)
83         return &s5p_serial2_device;
84 #elif defined(CONFIG_SERIAL3)
85         return &s5p_serial3_device;
86 #else
87 #error "CONFIG_SERIAL? missing."
88 #endif
89 #elif defined(CONFIG_OMAP3_ZOOM2)
90                 return ZOOM2_DEFAULT_SERIAL_DEVICE;
91 #else
92 #error No default console
93 #endif
94 }
95
96 struct serial_device *default_serial_console(void) __attribute__((weak, alias("__default_serial_console")));
97 #endif
98
99 int serial_register (struct serial_device *dev)
100 {
101 #ifndef CONFIG_RELOC_FIXUP_WORKS
102         dev->init += gd->reloc_off;
103         dev->setbrg += gd->reloc_off;
104         dev->getc += gd->reloc_off;
105         dev->tstc += gd->reloc_off;
106         dev->putc += gd->reloc_off;
107         dev->puts += gd->reloc_off;
108 #endif
109
110         dev->next = serial_devices;
111         serial_devices = dev;
112
113         return 0;
114 }
115
116 void serial_initialize (void)
117 {
118 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
119         serial_register (&serial_smc_device);
120 #endif
121 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
122  || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
123         serial_register (&serial_scc_device);
124 #endif
125
126 #if defined(CONFIG_SYS_NS16550_SERIAL)
127 #if defined(CONFIG_SYS_NS16550_COM1)
128         serial_register(&eserial1_device);
129 #endif
130 #if defined(CONFIG_SYS_NS16550_COM2)
131         serial_register(&eserial2_device);
132 #endif
133 #if defined(CONFIG_SYS_NS16550_COM3)
134         serial_register(&eserial3_device);
135 #endif
136 #if defined(CONFIG_SYS_NS16550_COM4)
137         serial_register(&eserial4_device);
138 #endif
139 #endif /* CONFIG_SYS_NS16550_SERIAL */
140 #if defined (CONFIG_FFUART)
141         serial_register(&serial_ffuart_device);
142 #endif
143 #if defined (CONFIG_BTUART)
144         serial_register(&serial_btuart_device);
145 #endif
146 #if defined (CONFIG_STUART)
147         serial_register(&serial_stuart_device);
148 #endif
149 #if defined(CONFIG_S3C2410)
150         serial_register(&s3c24xx_serial0_device);
151         serial_register(&s3c24xx_serial1_device);
152         serial_register(&s3c24xx_serial2_device);
153 #endif
154 #if defined(CONFIG_S5P)
155         serial_register(&s5p_serial0_device);
156         serial_register(&s5p_serial1_device);
157         serial_register(&s5p_serial2_device);
158         serial_register(&s5p_serial3_device);
159 #endif
160 #if defined(CONFIG_MPC512X)
161 #if defined(CONFIG_SYS_PSC1)
162         serial_register(&serial1_device);
163 #endif
164 #if defined(CONFIG_SYS_PSC3)
165         serial_register(&serial3_device);
166 #endif
167 #if defined(CONFIG_SYS_PSC4)
168         serial_register(&serial4_device);
169 #endif
170 #if defined(CONFIG_SYS_PSC6)
171         serial_register(&serial6_device);
172 #endif
173 #endif
174         serial_assign (default_serial_console ()->name);
175 }
176
177 void serial_stdio_init (void)
178 {
179         struct stdio_dev dev;
180         struct serial_device *s = serial_devices;
181
182         while (s) {
183                 memset (&dev, 0, sizeof (dev));
184
185                 strcpy (dev.name, s->name);
186                 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
187
188                 dev.start = s->init;
189                 dev.stop = s->uninit;
190                 dev.putc = s->putc;
191                 dev.puts = s->puts;
192                 dev.getc = s->getc;
193                 dev.tstc = s->tstc;
194
195                 stdio_register (&dev);
196
197                 s = s->next;
198         }
199 }
200
201 int serial_assign (char *name)
202 {
203         struct serial_device *s;
204
205         for (s = serial_devices; s; s = s->next) {
206                 if (strcmp (s->name, name) == 0) {
207                         serial_current = s;
208                         return 0;
209                 }
210         }
211
212         return 1;
213 }
214
215 void serial_reinit_all (void)
216 {
217         struct serial_device *s;
218
219         for (s = serial_devices; s; s = s->next) {
220                 s->init ();
221         }
222 }
223
224 int serial_init (void)
225 {
226         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
227                 struct serial_device *dev = default_serial_console ();
228
229                 return dev->init ();
230         }
231
232         return serial_current->init ();
233 }
234
235 void serial_setbrg (void)
236 {
237         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
238                 struct serial_device *dev = default_serial_console ();
239
240                 dev->setbrg ();
241                 return;
242         }
243
244         serial_current->setbrg ();
245 }
246
247 int serial_getc (void)
248 {
249         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
250                 struct serial_device *dev = default_serial_console ();
251
252                 return dev->getc ();
253         }
254
255         return serial_current->getc ();
256 }
257
258 int serial_tstc (void)
259 {
260         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
261                 struct serial_device *dev = default_serial_console ();
262
263                 return dev->tstc ();
264         }
265
266         return serial_current->tstc ();
267 }
268
269 void serial_putc (const char c)
270 {
271         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
272                 struct serial_device *dev = default_serial_console ();
273
274                 dev->putc (c);
275                 return;
276         }
277
278         serial_current->putc (c);
279 }
280
281 void serial_puts (const char *s)
282 {
283         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
284                 struct serial_device *dev = default_serial_console ();
285
286                 dev->puts (s);
287                 return;
288         }
289
290         serial_current->puts (s);
291 }