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