3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
28 DECLARE_GLOBAL_DATA_PTR
;
30 #if defined(CONFIG_SERIAL_MULTI)
32 static struct serial_device
*serial_devices
= NULL
;
33 static struct serial_device
*serial_current
= NULL
;
36 struct serial_device
*default_serial_console (void)
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
;
43 #elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
44 || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)
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
;
55 #error "Bad CONFIG_CONS_INDEX."
57 #elif defined(CONFIG_UART1_CONSOLE)
58 return &serial1_device
;
60 return &serial0_device
;
63 #error No default console
68 static int serial_register (struct serial_device
*dev
)
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
;
77 dev
->next
= serial_devices
;
83 void serial_initialize (void)
85 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
86 serial_register (&serial_smc_device
);
88 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
89 || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
90 serial_register (&serial_scc_device
);
93 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \
94 || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)
95 serial_register(&serial0_device
);
96 serial_register(&serial1_device
);
99 #if defined(CFG_NS16550_SERIAL)
100 #if defined(CFG_NS16550_COM1)
101 serial_register(&eserial1_device
);
103 #if defined(CFG_NS16550_COM2)
104 serial_register(&eserial2_device
);
106 #if defined(CFG_NS16550_COM3)
107 serial_register(&eserial3_device
);
109 #if defined(CFG_NS16550_COM4)
110 serial_register(&eserial4_device
);
112 #endif /* CFG_NS16550_SERIAL */
113 serial_assign (default_serial_console ()->name
);
116 void serial_devices_init (void)
119 struct serial_device
*s
= serial_devices
;
122 memset (&dev
, 0, sizeof (dev
));
124 strcpy (dev
.name
, s
->name
);
125 dev
.flags
= DEV_FLAGS_OUTPUT
| DEV_FLAGS_INPUT
;
133 device_register (&dev
);
139 int serial_assign (char *name
)
141 struct serial_device
*s
;
143 for (s
= serial_devices
; s
; s
= s
->next
) {
144 if (strcmp (s
->name
, name
) == 0) {
153 void serial_reinit_all (void)
155 struct serial_device
*s
;
157 for (s
= serial_devices
; s
; s
= s
->next
) {
162 int serial_init (void)
164 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
165 struct serial_device
*dev
= default_serial_console ();
170 return serial_current
->init ();
173 void serial_setbrg (void)
175 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
176 struct serial_device
*dev
= default_serial_console ();
182 serial_current
->setbrg ();
185 int serial_getc (void)
187 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
188 struct serial_device
*dev
= default_serial_console ();
193 return serial_current
->getc ();
196 int serial_tstc (void)
198 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
199 struct serial_device
*dev
= default_serial_console ();
204 return serial_current
->tstc ();
207 void serial_putc (const char c
)
209 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
210 struct serial_device
*dev
= default_serial_console ();
216 serial_current
->putc (c
);
219 void serial_puts (const char *s
)
221 if (!(gd
->flags
& GD_FLG_RELOC
) || !serial_current
) {
222 struct serial_device
*dev
= default_serial_console ();
228 serial_current
->puts (s
);
231 #endif /* CONFIG_SERIAL_MULTI */