]>
Commit | Line | Data |
---|---|---|
91d3256c WD |
1 | /* |
2 | * (C) Copyright 2000 | |
3 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), [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 <config.h> | |
25 | #include <common.h> | |
26 | #include <stdarg.h> | |
27 | #include <malloc.h> | |
52cb4d4f | 28 | #include <stdio_dev.h> |
281e00a3 | 29 | #include <serial.h> |
7f6c2cbc WD |
30 | #ifdef CONFIG_LOGBUFFER |
31 | #include <logbuff.h> | |
32 | #endif | |
33 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) | |
91d3256c | 34 | #include <i2c.h> |
7f6c2cbc | 35 | #endif |
91d3256c | 36 | |
d87080b7 WD |
37 | DECLARE_GLOBAL_DATA_PTR; |
38 | ||
52cb4d4f JCPV |
39 | static struct stdio_dev devs; |
40 | struct stdio_dev *stdio_devices[] = { NULL, NULL, NULL }; | |
91d3256c WD |
41 | char *stdio_names[MAX_FILES] = { "stdin", "stdout", "stderr" }; |
42 | ||
6d0f6bcf JCPV |
43 | #if defined(CONFIG_SPLASH_SCREEN) && !defined(CONFIG_SYS_DEVICE_NULLDEV) |
44 | #define CONFIG_SYS_DEVICE_NULLDEV 1 | |
d791b1dc WD |
45 | #endif |
46 | ||
47 | ||
6d0f6bcf | 48 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
91d3256c WD |
49 | void nulldev_putc(const char c) |
50 | { | |
c1de7a6d | 51 | /* nulldev is empty! */ |
91d3256c WD |
52 | } |
53 | ||
54 | void nulldev_puts(const char *s) | |
55 | { | |
c1de7a6d | 56 | /* nulldev is empty! */ |
91d3256c WD |
57 | } |
58 | ||
59 | int nulldev_input(void) | |
60 | { | |
c1de7a6d JCPV |
61 | /* nulldev is empty! */ |
62 | return 0; | |
91d3256c WD |
63 | } |
64 | #endif | |
65 | ||
66 | /************************************************************************** | |
67 | * SYSTEM DRIVERS | |
68 | ************************************************************************** | |
69 | */ | |
70 | ||
71 | static void drv_system_init (void) | |
72 | { | |
52cb4d4f | 73 | struct stdio_dev dev; |
91d3256c WD |
74 | |
75 | memset (&dev, 0, sizeof (dev)); | |
76 | ||
77 | strcpy (dev.name, "serial"); | |
78 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; | |
91d3256c WD |
79 | dev.putc = serial_putc; |
80 | dev.puts = serial_puts; | |
81 | dev.getc = serial_getc; | |
82 | dev.tstc = serial_tstc; | |
52cb4d4f | 83 | stdio_register (&dev); |
91d3256c | 84 | |
6d0f6bcf | 85 | #ifdef CONFIG_SYS_DEVICE_NULLDEV |
91d3256c WD |
86 | memset (&dev, 0, sizeof (dev)); |
87 | ||
88 | strcpy (dev.name, "nulldev"); | |
89 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; | |
90 | dev.putc = nulldev_putc; | |
91 | dev.puts = nulldev_puts; | |
92 | dev.getc = nulldev_input; | |
93 | dev.tstc = nulldev_input; | |
94 | ||
52cb4d4f | 95 | stdio_register (&dev); |
91d3256c WD |
96 | #endif |
97 | } | |
98 | ||
99 | /************************************************************************** | |
100 | * DEVICES | |
101 | ************************************************************************** | |
102 | */ | |
52cb4d4f | 103 | struct list_head* stdio_get_list(void) |
c1de7a6d JCPV |
104 | { |
105 | return &(devs.list); | |
106 | } | |
107 | ||
d7be3056 | 108 | struct stdio_dev* stdio_get_by_name(const char *name) |
c1de7a6d JCPV |
109 | { |
110 | struct list_head *pos; | |
52cb4d4f | 111 | struct stdio_dev *dev; |
c1de7a6d JCPV |
112 | |
113 | if(!name) | |
114 | return NULL; | |
115 | ||
116 | list_for_each(pos, &(devs.list)) { | |
52cb4d4f | 117 | dev = list_entry(pos, struct stdio_dev, list); |
c1de7a6d JCPV |
118 | if(strcmp(dev->name, name) == 0) |
119 | return dev; | |
120 | } | |
121 | ||
122 | return NULL; | |
123 | } | |
124 | ||
52cb4d4f | 125 | struct stdio_dev* stdio_clone(struct stdio_dev *dev) |
628ffd73 | 126 | { |
52cb4d4f | 127 | struct stdio_dev *_dev; |
628ffd73 JCPV |
128 | |
129 | if(!dev) | |
130 | return NULL; | |
131 | ||
52cb4d4f | 132 | _dev = calloc(1, sizeof(struct stdio_dev)); |
628ffd73 JCPV |
133 | |
134 | if(!_dev) | |
135 | return NULL; | |
136 | ||
52cb4d4f | 137 | memcpy(_dev, dev, sizeof(struct stdio_dev)); |
628ffd73 JCPV |
138 | |
139 | return _dev; | |
140 | } | |
91d3256c | 141 | |
52cb4d4f | 142 | int stdio_register (struct stdio_dev * dev) |
91d3256c | 143 | { |
52cb4d4f | 144 | struct stdio_dev *_dev; |
628ffd73 | 145 | |
52cb4d4f | 146 | _dev = stdio_clone(dev); |
628ffd73 JCPV |
147 | if(!_dev) |
148 | return -1; | |
3e3c026e | 149 | list_add_tail(&(_dev->list), &(devs.list)); |
91d3256c WD |
150 | return 0; |
151 | } | |
152 | ||
153 | /* deregister the device "devname". | |
154 | * returns 0 if success, -1 if device is assigned and 1 if devname not found | |
155 | */ | |
52cb4d4f | 156 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
d7be3056 | 157 | int stdio_deregister(const char *devname) |
91d3256c | 158 | { |
c1de7a6d JCPV |
159 | int l; |
160 | struct list_head *pos; | |
52cb4d4f | 161 | struct stdio_dev *dev; |
03bf22f5 | 162 | char temp_names[3][16]; |
91d3256c | 163 | |
52cb4d4f | 164 | dev = stdio_get_by_name(devname); |
c1de7a6d JCPV |
165 | |
166 | if(!dev) /* device not found */ | |
167 | return -1; | |
91d3256c WD |
168 | /* get stdio devices (ListRemoveItem changes the dev list) */ |
169 | for (l=0 ; l< MAX_FILES; l++) { | |
170 | if (stdio_devices[l] == dev) { | |
171 | /* Device is assigned -> report error */ | |
172 | return -1; | |
173 | } | |
174 | memcpy (&temp_names[l][0], | |
175 | stdio_devices[l]->name, | |
03bf22f5 | 176 | sizeof(temp_names[l])); |
91d3256c | 177 | } |
c1de7a6d JCPV |
178 | |
179 | list_del(&(dev->list)); | |
180 | ||
91d3256c | 181 | /* reassign Device list */ |
c1de7a6d | 182 | list_for_each(pos, &(devs.list)) { |
52cb4d4f | 183 | dev = list_entry(pos, struct stdio_dev, list); |
91d3256c | 184 | for (l=0 ; l< MAX_FILES; l++) { |
c1de7a6d | 185 | if(strcmp(dev->name, temp_names[l]) == 0) |
91d3256c | 186 | stdio_devices[l] = dev; |
91d3256c WD |
187 | } |
188 | } | |
189 | return 0; | |
190 | } | |
52cb4d4f | 191 | #endif /* CONFIG_SYS_STDIO_DEREGISTER */ |
91d3256c | 192 | |
52cb4d4f | 193 | int stdio_init (void) |
91d3256c | 194 | { |
2e5167cc | 195 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
521af04d | 196 | /* already relocated for current ARM implementation */ |
91d3256c | 197 | ulong relocation_offset = gd->reloc_off; |
3595ac49 | 198 | int i; |
91d3256c WD |
199 | |
200 | /* relocate device name pointers */ | |
201 | for (i = 0; i < (sizeof (stdio_names) / sizeof (char *)); ++i) { | |
202 | stdio_names[i] = (char *) (((ulong) stdio_names[i]) + | |
203 | relocation_offset); | |
204 | } | |
2e5167cc | 205 | #endif /* CONFIG_NEEDS_MANUAL_RELOC */ |
91d3256c WD |
206 | |
207 | /* Initialize the list */ | |
c1de7a6d | 208 | INIT_LIST_HEAD(&(devs.list)); |
91d3256c | 209 | |
e70fb539 | 210 | #ifdef CONFIG_ARM_DCC |
4f572898 JCPV |
211 | drv_arm_dcc_init (); |
212 | #endif | |
91d3256c | 213 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
6d0f6bcf | 214 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
91d3256c WD |
215 | #endif |
216 | #ifdef CONFIG_LCD | |
217 | drv_lcd_init (); | |
218 | #endif | |
a6c7ad2f | 219 | #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) |
91d3256c WD |
220 | drv_video_init (); |
221 | #endif | |
682011ff WD |
222 | #ifdef CONFIG_KEYBOARD |
223 | drv_keyboard_init (); | |
56f94be3 WD |
224 | #endif |
225 | #ifdef CONFIG_LOGBUFFER | |
226 | drv_logbuff_init (); | |
91d3256c WD |
227 | #endif |
228 | drv_system_init (); | |
52cb4d4f | 229 | serial_stdio_init (); |
232c150a WD |
230 | #ifdef CONFIG_USB_TTY |
231 | drv_usbtty_init (); | |
232 | #endif | |
68ceb29e WD |
233 | #ifdef CONFIG_NETCONSOLE |
234 | drv_nc_init (); | |
235 | #endif | |
36ea8e9a MF |
236 | #ifdef CONFIG_JTAG_CONSOLE |
237 | drv_jtag_console_init (); | |
238 | #endif | |
98ab435f VB |
239 | #ifdef CONFIG_CBMEM_CONSOLE |
240 | cbmemc_init(); | |
241 | #endif | |
91d3256c WD |
242 | return (0); |
243 | } |