]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/serial.c
ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
[people/ms/u-boot.git] / common / serial.c
CommitLineData
281e00a3
WD
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 <devices.h>
27
d87080b7
WD
28DECLARE_GLOBAL_DATA_PTR;
29
281e00a3
WD
30#if defined(CONFIG_SERIAL_MULTI)
31
32static struct serial_device *serial_devices = NULL;
33static struct serial_device *serial_current = NULL;
34
80172c61 35#if !defined(CONFIG_LWMON) && !defined(CONFIG_PXA27X)
2ee66533 36struct serial_device *default_serial_console (void)
281e00a3
WD
37{
38#if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
39 return &serial_smc_device;
40#elif defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
41 || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
42 return &serial_scc_device;
ff36fd85 43#elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
3cb86f3e 44 || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)
0fd30252
WD
45#if defined(CONFIG_CONS_INDEX) && defined(CFG_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)
6c5879f3
MB
58 return &serial1_device;
59#else
60 return &serial0_device;
61#endif
281e00a3
WD
62#else
63#error No default console
64#endif
65}
66#endif
67
80172c61 68int serial_register (struct serial_device *dev)
281e00a3 69{
281e00a3
WD
70 dev->init += gd->reloc_off;
71 dev->setbrg += gd->reloc_off;
72 dev->getc += gd->reloc_off;
73 dev->tstc += gd->reloc_off;
74 dev->putc += gd->reloc_off;
75 dev->puts += gd->reloc_off;
76
77 dev->next = serial_devices;
78 serial_devices = dev;
79
80 return 0;
81}
82
2ee66533 83void serial_initialize (void)
281e00a3
WD
84{
85#if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
2ee66533 86 serial_register (&serial_smc_device);
281e00a3
WD
87#endif
88#if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
89 || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
2ee66533 90 serial_register (&serial_scc_device);
281e00a3
WD
91#endif
92
ff36fd85 93#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
3cb86f3e 94 || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)
ff36fd85
WD
95 serial_register(&serial0_device);
96 serial_register(&serial1_device);
97#endif
98
0fd30252
WD
99#if defined(CFG_NS16550_SERIAL)
100#if defined(CFG_NS16550_COM1)
101 serial_register(&eserial1_device);
102#endif
103#if defined(CFG_NS16550_COM2)
104 serial_register(&eserial2_device);
105#endif
106#if defined(CFG_NS16550_COM3)
107 serial_register(&eserial3_device);
108#endif
109#if defined(CFG_NS16550_COM4)
110 serial_register(&eserial4_device);
111#endif
112#endif /* CFG_NS16550_SERIAL */
80172c61
SB
113#if defined (CONFIG_FFUART)
114 serial_register(&serial_ffuart_device);
115#endif
116#if defined (CONFIG_BTUART)
117 serial_register(&serial_btuart_device);
118#endif
119#if defined (CONFIG_STUART)
120 serial_register(&serial_stuart_device);
121#endif
2ee66533 122 serial_assign (default_serial_console ()->name);
281e00a3
WD
123}
124
2ee66533 125void serial_devices_init (void)
281e00a3
WD
126{
127 device_t dev;
128 struct serial_device *s = serial_devices;
129
2ee66533 130 while (s) {
281e00a3
WD
131 memset (&dev, 0, sizeof (dev));
132
133 strcpy (dev.name, s->name);
134 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
135
136 dev.start = s->init;
137 dev.putc = s->putc;
138 dev.puts = s->puts;
139 dev.getc = s->getc;
140 dev.tstc = s->tstc;
141
142 device_register (&dev);
143
144 s = s->next;
145 }
146}
147
2ee66533 148int serial_assign (char *name)
281e00a3
WD
149{
150 struct serial_device *s;
151
2ee66533
WD
152 for (s = serial_devices; s; s = s->next) {
153 if (strcmp (s->name, name) == 0) {
281e00a3
WD
154 serial_current = s;
155 return 0;
156 }
157 }
158
159 return 1;
160}
161
2ee66533 162void serial_reinit_all (void)
281e00a3
WD
163{
164 struct serial_device *s;
165
2ee66533
WD
166 for (s = serial_devices; s; s = s->next) {
167 s->init ();
281e00a3
WD
168 }
169}
170
2ee66533 171int serial_init (void)
281e00a3 172{
2ee66533
WD
173 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
174 struct serial_device *dev = default_serial_console ();
175
176 return dev->init ();
281e00a3
WD
177 }
178
2ee66533 179 return serial_current->init ();
281e00a3
WD
180}
181
2ee66533 182void serial_setbrg (void)
281e00a3 183{
2ee66533
WD
184 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
185 struct serial_device *dev = default_serial_console ();
186
187 dev->setbrg ();
281e00a3
WD
188 return;
189 }
190
2ee66533 191 serial_current->setbrg ();
281e00a3
WD
192}
193
2ee66533 194int serial_getc (void)
281e00a3 195{
2ee66533
WD
196 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
197 struct serial_device *dev = default_serial_console ();
198
199 return dev->getc ();
281e00a3
WD
200 }
201
2ee66533 202 return serial_current->getc ();
281e00a3
WD
203}
204
2ee66533 205int serial_tstc (void)
281e00a3 206{
2ee66533
WD
207 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
208 struct serial_device *dev = default_serial_console ();
209
210 return dev->tstc ();
281e00a3
WD
211 }
212
2ee66533 213 return serial_current->tstc ();
281e00a3
WD
214}
215
2ee66533 216void serial_putc (const char c)
281e00a3 217{
2ee66533
WD
218 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
219 struct serial_device *dev = default_serial_console ();
220
221 dev->putc (c);
281e00a3
WD
222 return;
223 }
224
2ee66533 225 serial_current->putc (c);
281e00a3
WD
226}
227
2ee66533 228void serial_puts (const char *s)
281e00a3 229{
2ee66533
WD
230 if (!(gd->flags & GD_FLG_RELOC) || !serial_current) {
231 struct serial_device *dev = default_serial_console ();
232
233 dev->puts (s);
281e00a3
WD
234 return;
235 }
236
2ee66533 237 serial_current->puts (s);
281e00a3
WD
238}
239
240#endif /* CONFIG_SERIAL_MULTI */