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 #if defined(CONFIG_SERIAL_MULTI)
30 static struct serial_device *serial_devices = NULL;
31 static struct serial_device *serial_current = NULL;
34 struct serial_device * default_serial_console (void)
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;
42 #error No default console
47 static int serial_register(struct serial_device* dev)
49 DECLARE_GLOBAL_DATA_PTR;
51 dev->init += gd->reloc_off;
52 dev->setbrg += gd->reloc_off;
53 dev->getc += gd->reloc_off;
54 dev->tstc += gd->reloc_off;
55 dev->putc += gd->reloc_off;
56 dev->puts += gd->reloc_off;
58 dev->next = serial_devices;
64 void serial_initialize(void)
66 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
67 serial_register(&serial_smc_device);
69 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
70 || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
71 serial_register(&serial_scc_device);
74 serial_assign(default_serial_console()->name);
77 void serial_devices_init(void)
80 struct serial_device *s = serial_devices;
84 memset (&dev, 0, sizeof (dev));
86 strcpy (dev.name, s->name);
87 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
95 device_register (&dev);
101 int serial_assign(char * name)
103 struct serial_device *s;
105 for (s = serial_devices; s; s = s->next)
107 if (strcmp(s->name, name) == 0)
117 void serial_reinit_all(void)
119 struct serial_device *s;
121 for (s = serial_devices; s; s = s->next)
127 int serial_init(void)
131 struct serial_device *dev = default_serial_console();
135 return serial_current->init();
138 void serial_setbrg(void)
142 struct serial_device *dev = default_serial_console();
147 serial_current->setbrg();
150 int serial_getc(void)
154 struct serial_device *dev = default_serial_console();
158 return serial_current->getc();
161 int serial_tstc(void)
165 struct serial_device *dev = default_serial_console();
169 return serial_current->tstc();
172 void serial_putc(const char c)
176 struct serial_device *dev = default_serial_console();
181 serial_current->putc(c);
184 void serial_puts(const char *s)
188 struct serial_device *dev = default_serial_console();
193 serial_current->puts(s);
196 #endif /* CONFIG_SERIAL_MULTI */