]>
Commit | Line | Data |
---|---|---|
281e00a3 WD |
1 | /* |
2 | * (C) Copyright 2004 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
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 | ||
28 | #if defined(CONFIG_SERIAL_MULTI) | |
29 | ||
30 | static struct serial_device *serial_devices = NULL; | |
31 | static struct serial_device *serial_current = NULL; | |
32 | ||
33 | #ifndef CONFIG_LWMON | |
2ee66533 | 34 | struct serial_device *default_serial_console (void) |
281e00a3 WD |
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; | |
ff36fd85 WD |
41 | #elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \ |
42 | || defined(CONFIG_405EP) | |
43 | return &serial0_device; | |
281e00a3 WD |
44 | #else |
45 | #error No default console | |
46 | #endif | |
47 | } | |
48 | #endif | |
49 | ||
2ee66533 | 50 | static int serial_register (struct serial_device *dev) |
281e00a3 WD |
51 | { |
52 | DECLARE_GLOBAL_DATA_PTR; | |
53 | ||
54 | dev->init += gd->reloc_off; | |
55 | dev->setbrg += gd->reloc_off; | |
56 | dev->getc += gd->reloc_off; | |
57 | dev->tstc += gd->reloc_off; | |
58 | dev->putc += gd->reloc_off; | |
59 | dev->puts += gd->reloc_off; | |
60 | ||
61 | dev->next = serial_devices; | |
62 | serial_devices = dev; | |
63 | ||
64 | return 0; | |
65 | } | |
66 | ||
2ee66533 | 67 | void serial_initialize (void) |
281e00a3 WD |
68 | { |
69 | #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2) | |
2ee66533 | 70 | serial_register (&serial_smc_device); |
281e00a3 WD |
71 | #endif |
72 | #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \ | |
73 | || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4) | |
2ee66533 | 74 | serial_register (&serial_scc_device); |
281e00a3 WD |
75 | #endif |
76 | ||
ff36fd85 WD |
77 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \ |
78 | || defined(CONFIG_405EP) | |
79 | serial_register(&serial0_device); | |
80 | serial_register(&serial1_device); | |
81 | #endif | |
82 | ||
2ee66533 | 83 | serial_assign (default_serial_console ()->name); |
281e00a3 WD |
84 | } |
85 | ||
2ee66533 | 86 | void serial_devices_init (void) |
281e00a3 WD |
87 | { |
88 | device_t dev; | |
89 | struct serial_device *s = serial_devices; | |
90 | ||
2ee66533 | 91 | while (s) { |
281e00a3 WD |
92 | memset (&dev, 0, sizeof (dev)); |
93 | ||
94 | strcpy (dev.name, s->name); | |
95 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; | |
96 | ||
97 | dev.start = s->init; | |
98 | dev.putc = s->putc; | |
99 | dev.puts = s->puts; | |
100 | dev.getc = s->getc; | |
101 | dev.tstc = s->tstc; | |
102 | ||
103 | device_register (&dev); | |
104 | ||
105 | s = s->next; | |
106 | } | |
107 | } | |
108 | ||
2ee66533 | 109 | int serial_assign (char *name) |
281e00a3 WD |
110 | { |
111 | struct serial_device *s; | |
112 | ||
2ee66533 WD |
113 | for (s = serial_devices; s; s = s->next) { |
114 | if (strcmp (s->name, name) == 0) { | |
281e00a3 WD |
115 | serial_current = s; |
116 | return 0; | |
117 | } | |
118 | } | |
119 | ||
120 | return 1; | |
121 | } | |
122 | ||
2ee66533 | 123 | void serial_reinit_all (void) |
281e00a3 WD |
124 | { |
125 | struct serial_device *s; | |
126 | ||
2ee66533 WD |
127 | for (s = serial_devices; s; s = s->next) { |
128 | s->init (); | |
281e00a3 WD |
129 | } |
130 | } | |
131 | ||
2ee66533 | 132 | int serial_init (void) |
281e00a3 | 133 | { |
2ee66533 | 134 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 135 | |
2ee66533 WD |
136 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
137 | struct serial_device *dev = default_serial_console (); | |
138 | ||
139 | return dev->init (); | |
281e00a3 WD |
140 | } |
141 | ||
2ee66533 | 142 | return serial_current->init (); |
281e00a3 WD |
143 | } |
144 | ||
2ee66533 | 145 | void serial_setbrg (void) |
281e00a3 | 146 | { |
2ee66533 | 147 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 148 | |
2ee66533 WD |
149 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
150 | struct serial_device *dev = default_serial_console (); | |
151 | ||
152 | dev->setbrg (); | |
281e00a3 WD |
153 | return; |
154 | } | |
155 | ||
2ee66533 | 156 | serial_current->setbrg (); |
281e00a3 WD |
157 | } |
158 | ||
2ee66533 | 159 | int serial_getc (void) |
281e00a3 | 160 | { |
2ee66533 | 161 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 162 | |
2ee66533 WD |
163 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
164 | struct serial_device *dev = default_serial_console (); | |
165 | ||
166 | return dev->getc (); | |
281e00a3 WD |
167 | } |
168 | ||
2ee66533 | 169 | return serial_current->getc (); |
281e00a3 WD |
170 | } |
171 | ||
2ee66533 | 172 | int serial_tstc (void) |
281e00a3 | 173 | { |
2ee66533 | 174 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 175 | |
2ee66533 WD |
176 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
177 | struct serial_device *dev = default_serial_console (); | |
178 | ||
179 | return dev->tstc (); | |
281e00a3 WD |
180 | } |
181 | ||
2ee66533 | 182 | return serial_current->tstc (); |
281e00a3 WD |
183 | } |
184 | ||
2ee66533 | 185 | void serial_putc (const char c) |
281e00a3 | 186 | { |
2ee66533 | 187 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 188 | |
2ee66533 WD |
189 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
190 | struct serial_device *dev = default_serial_console (); | |
191 | ||
192 | dev->putc (c); | |
281e00a3 WD |
193 | return; |
194 | } | |
195 | ||
2ee66533 | 196 | serial_current->putc (c); |
281e00a3 WD |
197 | } |
198 | ||
2ee66533 | 199 | void serial_puts (const char *s) |
281e00a3 | 200 | { |
2ee66533 | 201 | DECLARE_GLOBAL_DATA_PTR; |
8b74bf31 | 202 | |
2ee66533 WD |
203 | if (!(gd->flags & GD_FLG_RELOC) || !serial_current) { |
204 | struct serial_device *dev = default_serial_console (); | |
205 | ||
206 | dev->puts (s); | |
281e00a3 WD |
207 | return; |
208 | } | |
209 | ||
2ee66533 | 210 | serial_current->puts (s); |
281e00a3 WD |
211 | } |
212 | ||
213 | #endif /* CONFIG_SERIAL_MULTI */ |