]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/serial.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[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
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_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
42    || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) \
43    || defined(CONFIG_MPC5xxx) || defined(CONFIG_MPC83xx) \
44    || defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
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 #elif defined(CONFIG_UART1_CONSOLE)
58                 return &serial1_device;
59 #else
60                 return &serial0_device;
61 #endif
62 #elif defined(CONFIG_S3C2410)
63 #if defined(CONFIG_SERIAL1)
64         return &s3c24xx_serial0_device;
65 #elif defined(CONFIG_SERIAL2)
66         return &s3c24xx_serial1_device;
67 #elif defined(CONFIG_SERIAL3)
68         return &s3c24xx_serial2_device;
69 #else
70 #error "CONFIG_SERIAL? missing."
71 #endif
72 #elif defined(CONFIG_S5PC1XX)
73 #if defined(CONFIG_SERIAL0)
74         return &s5pc1xx_serial0_device;
75 #elif defined(CONFIG_SERIAL1)
76         return &s5pc1xx_serial1_device;
77 #elif defined(CONFIG_SERIAL2)
78         return &s5pc1xx_serial2_device;
79 #elif defined(CONFIG_SERIAL3)
80         return &s5pc1xx_serial3_device;
81 #else
82 #error "CONFIG_SERIAL? missing."
83 #endif
84 #elif defined(CONFIG_OMAP3_ZOOM2)
85                 return ZOOM2_DEFAULT_SERIAL_DEVICE;
86 #else
87 #error No default console
88 #endif
89 }
90
91 struct serial_device *default_serial_console(void) __attribute__((weak, alias("__default_serial_console")));
92 #endif
93
94 int serial_register (struct serial_device *dev)
95 {
96         dev->init += gd->reloc_off;
97         dev->setbrg += gd->reloc_off;
98         dev->getc += gd->reloc_off;
99         dev->tstc += gd->reloc_off;
100         dev->putc += gd->reloc_off;
101         dev->puts += gd->reloc_off;
102
103         dev->next = serial_devices;
104         serial_devices = dev;
105
106         return 0;
107 }
108
109 void serial_initialize (void)
110 {
111 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
112         serial_register (&serial_smc_device);
113 #endif
114 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
115  || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
116         serial_register (&serial_scc_device);
117 #endif
118
119 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
120  || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) \
121  || defined(CONFIG_MPC5xxx)
122         serial_register(&serial0_device);
123         serial_register(&serial1_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_S5PC1XX)
155         serial_register(&s5pc1xx_serial0_device);
156         serial_register(&s5pc1xx_serial1_device);
157         serial_register(&s5pc1xx_serial2_device);
158         serial_register(&s5pc1xx_serial3_device);
159 #endif
160         serial_assign (default_serial_console ()->name);
161 }
162
163 void serial_stdio_init (void)
164 {
165         struct stdio_dev dev;
166         struct serial_device *s = serial_devices;
167
168         while (s) {
169                 memset (&dev, 0, sizeof (dev));
170
171                 strcpy (dev.name, s->name);
172                 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
173
174                 dev.start = s->init;
175                 dev.putc = s->putc;
176                 dev.puts = s->puts;
177                 dev.getc = s->getc;
178                 dev.tstc = s->tstc;
179
180                 stdio_register (&dev);
181
182                 s = s->next;
183         }
184 }
185
186 int serial_assign (char *name)
187 {
188         struct serial_device *s;
189
190         for (s = serial_devices; s; s = s->next) {
191                 if (strcmp (s->name, name) == 0) {
192                         serial_current = s;
193                         return 0;
194                 }
195         }
196
197         return 1;
198 }
199
200 void serial_reinit_all (void)
201 {
202         struct serial_device *s;
203
204         for (s = serial_devices; s; s = s->next) {
205                 s->init ();
206         }
207 }
208
209 int serial_init (void)
210 {
211         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
212                 struct serial_device *dev = default_serial_console ();
213
214                 return dev->init ();
215         }
216
217         return serial_current->init ();
218 }
219
220 void serial_setbrg (void)
221 {
222         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
223                 struct serial_device *dev = default_serial_console ();
224
225                 dev->setbrg ();
226                 return;
227         }
228
229         serial_current->setbrg ();
230 }
231
232 int serial_getc (void)
233 {
234         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
235                 struct serial_device *dev = default_serial_console ();
236
237                 return dev->getc ();
238         }
239
240         return serial_current->getc ();
241 }
242
243 int serial_tstc (void)
244 {
245         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
246                 struct serial_device *dev = default_serial_console ();
247
248                 return dev->tstc ();
249         }
250
251         return serial_current->tstc ();
252 }
253
254 void serial_putc (const char c)
255 {
256         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
257                 struct serial_device *dev = default_serial_console ();
258
259                 dev->putc (c);
260                 return;
261         }
262
263         serial_current->putc (c);
264 }
265
266 void serial_puts (const char *s)
267 {
268         if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
269                 struct serial_device *dev = default_serial_console ();
270
271                 dev->puts (s);
272                 return;
273         }
274
275         serial_current->puts (s);
276 }