This source file includes following definitions.
- ethif_probe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 #include <linux/config.h>
28 #include <linux/netdevice.h>
29 #include <linux/errno.h>
30
31 #define LOOPBACK
32
33 #define NEXT_DEV NULL
34
35
36
37
38
39
40 extern int ultra_probe(struct device *dev);
41 extern int wd_probe(struct device *dev);
42 extern int el2_probe(struct device *dev);
43 extern int ne_probe(struct device *dev);
44 extern int hp_probe(struct device *dev);
45 extern int hp_plus_probe(struct device *dev);
46 extern int znet_probe(struct device *);
47 extern int express_probe(struct device *);
48 extern int el3_probe(struct device *);
49 extern int at1500_probe(struct device *);
50 extern int at1700_probe(struct device *);
51 extern int depca_probe(struct device *);
52 extern int el1_probe(struct device *);
53 extern int el16_probe(struct device *);
54 extern int elplus_probe(struct device *);
55 extern int ac3200_probe(struct device *);
56 extern int e2100_probe(struct device *);
57 extern int ni52_probe(struct device *);
58 extern int ni65_probe(struct device *);
59 extern int SK_init(struct device *);
60
61
62 extern int atp_init(struct device *);
63 extern int de600_probe(struct device *);
64 extern int de620_probe(struct device *);
65
66 static int
67 ethif_probe(struct device *dev)
68 {
69 short base_addr = dev->base_addr;
70
71 if (base_addr < 0 || base_addr == 1)
72 return 1;
73
74 if (1
75 #if defined(CONFIG_ULTRA)
76 && ultra_probe(dev)
77 #endif
78 #if defined(CONFIG_WD80x3) || defined(WD80x3)
79 && wd_probe(dev)
80 #endif
81 #if defined(CONFIG_EL2) || defined(EL2)
82 && el2_probe(dev)
83 #endif
84 #if defined(CONFIG_NE2000) || defined(NE2000)
85 && ne_probe(dev)
86 #endif
87 #if defined(CONFIG_HPLAN) || defined(HPLAN)
88 && hp_probe(dev)
89 #endif
90 #if defined(CONFIG_HPLAN_PLUS)
91 && hp_plus_probe(dev)
92 #endif
93 #ifdef CONFIG_AT1500
94 && at1500_probe(dev)
95 #endif
96 #ifdef CONFIG_AT1700
97 && at1700_probe(dev)
98 #endif
99 #ifdef CONFIG_EL3
100 && el3_probe(dev)
101 #endif
102 #ifdef CONFIG_ZNET
103 && znet_probe(dev)
104 #endif
105 #ifdef CONFIG_EEXPRESS
106 && express_probe(dev)
107 #endif
108 #ifdef CONFIG_DEPCA
109 && depca_probe(dev)
110 #endif
111 #ifdef CONFIG_EL1
112 && el1_probe(dev)
113 #endif
114 #ifdef CONFIG_EL16
115 && el16_probe(dev)
116 #endif
117 #ifdef CONFIG_ELPLUS
118 && elplus_probe(dev)
119 #endif
120 #ifdef CONFIG_AC3200
121 && ac3200_probe(dev)
122 #endif
123 #ifdef CONFIG_E2100
124 && e2100_probe(dev)
125 #endif
126 #ifdef CONFIG_DE600
127 && de600_probe(dev)
128 #endif
129 #ifdef CONFIG_DE620
130 && de620_probe(dev)
131 #endif
132 #if defined(CONFIG_SK_G16)
133 && SK_init(dev)
134 #endif
135 #ifdef CONFIG_NI52
136 && ni52_probe(dev)
137 #endif
138 #ifdef CONFIG_NI65
139 && ni65_probe(dev)
140 #endif
141 && 1 ) {
142 return 1;
143 }
144 return 0;
145 }
146
147
148
149
150 #ifdef CONFIG_ATP
151 static struct device atp_dev = {
152 "atp0", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, atp_init, };
153 # undef NEXT_DEV
154 # define NEXT_DEV (&atp_dev)
155 #endif
156
157
158 #ifndef ETH0_ADDR
159 # define ETH0_ADDR 0
160 #endif
161 #ifndef ETH0_IRQ
162 # define ETH0_IRQ 0
163 #endif
164
165
166
167
168 static struct device eth3_dev = {
169 "eth3", 0,0,0,0,0xffe0 , 0,0,0,0, NEXT_DEV, ethif_probe };
170 static struct device eth2_dev = {
171 "eth2", 0,0,0,0,0xffe0 , 0,0,0,0, ð3_dev, ethif_probe };
172 static struct device eth1_dev = {
173 "eth1", 0,0,0,0,0xffe0 , 0,0,0,0, ð2_dev, ethif_probe };
174
175 static struct device eth0_dev = {
176 "eth0", 0, 0, 0, 0, ETH0_ADDR, ETH0_IRQ, 0, 0, 0, ð1_dev, ethif_probe };
177
178 # undef NEXT_DEV
179 # define NEXT_DEV (ð0_dev)
180
181 #if defined(PLIP) || defined(CONFIG_PLIP)
182 extern int plip_init(struct device *);
183 static struct device plip2_dev = {
184 "plip2", 0, 0, 0, 0, 0x278, 2, 0, 0, 0, NEXT_DEV, plip_init, };
185 static struct device plip1_dev = {
186 "plip1", 0, 0, 0, 0, 0x378, 7, 0, 0, 0, &plip2_dev, plip_init, };
187 static struct device plip0_dev = {
188 "plip0", 0, 0, 0, 0, 0x3BC, 5, 0, 0, 0, &plip1_dev, plip_init, };
189 # undef NEXT_DEV
190 # define NEXT_DEV (&plip0_dev)
191 #endif
192
193 #if defined(SLIP) || defined(CONFIG_SLIP)
194 extern int slip_init(struct device *);
195
196 #ifdef SL_SLIP_LOTS
197
198 static struct device slip15_dev={"sl15",0,0,0,0,15,0,0,0,0,NEXT_DEV,slip_init};
199 static struct device slip14_dev={"sl14",0,0,0,0,14,0,0,0,0,&slip15_dev,slip_init};
200 static struct device slip13_dev={"sl13",0,0,0,0,13,0,0,0,0,&slip14_dev,slip_init};
201 static struct device slip12_dev={"sl12",0,0,0,0,12,0,0,0,0,&slip13_dev,slip_init};
202 static struct device slip11_dev={"sl11",0,0,0,0,11,0,0,0,0,&slip12_dev,slip_init};
203 static struct device slip10_dev={"sl10",0,0,0,0,10,0,0,0,0,&slip11_dev,slip_init};
204 static struct device slip9_dev={"sl9",0,0,0,0,9,0,0,0,0,&slip10_dev,slip_init};
205 static struct device slip8_dev={"sl8",0,0,0,0,8,0,0,0,0,&slip9_dev,slip_init};
206 static struct device slip7_dev={"sl7",0,0,0,0,7,0,0,0,0,&slip8_dev,slip_init};
207 static struct device slip6_dev={"sl6",0,0,0,0,6,0,0,0,0,&slip7_dev,slip_init};
208 static struct device slip5_dev={"sl5",0,0,0,0,5,0,0,0,0,&slip6_dev,slip_init};
209 static struct device slip4_dev={"sl4",0,0,0,0,4,0,0,0,0,&slip5_dev,slip_init};
210 # undef NEXT_DEV
211 # define NEXT_DEV (&slip4_dev)
212 #endif
213
214 static struct device slip3_dev = {
215 "sl3",
216 0x0,
217 0x0,
218 0x0,
219 0x0,
220 0x3,
221 0,
222 0, 0, 0,
223 NEXT_DEV,
224 slip_init
225 };
226 static struct device slip2_dev = {
227 "sl2",
228 0x0,
229 0x0,
230 0x0,
231 0x0,
232 0x2,
233 0,
234 0, 0, 0,
235 &slip3_dev,
236 slip_init
237 };
238 static struct device slip1_dev = {
239 "sl1",
240 0x0,
241 0x0,
242 0x0,
243 0x0,
244 0x1,
245 0,
246 0, 0, 0,
247 &slip2_dev,
248 slip_init
249 };
250 static struct device slip0_dev = {
251 "sl0",
252 0x0,
253 0x0,
254 0x0,
255 0x0,
256 0x0,
257 0,
258 0, 0, 0,
259 &slip1_dev,
260 slip_init
261 };
262 # undef NEXT_DEV
263 # define NEXT_DEV (&slip0_dev)
264 #endif
265
266 #if defined(CONFIG_PPP)
267 extern int ppp_init(struct device *);
268 static struct device ppp3_dev = {
269 "ppp3", 0x0, 0x0, 0x0, 0x0, 3, 0, 0, 0, 0, NEXT_DEV, ppp_init, };
270 static struct device ppp2_dev = {
271 "ppp2", 0x0, 0x0, 0x0, 0x0, 2, 0, 0, 0, 0, &ppp3_dev, ppp_init, };
272 static struct device ppp1_dev = {
273 "ppp1", 0x0, 0x0, 0x0, 0x0, 1, 0, 0, 0, 0, &ppp2_dev, ppp_init, };
274 static struct device ppp0_dev = {
275 "ppp0", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, &ppp1_dev, ppp_init, };
276 #undef NEXT_DEV
277 #define NEXT_DEV (&ppp0_dev)
278 #endif
279
280 #ifdef CONFIG_DUMMY
281 extern int dummy_init(struct device *dev);
282 static struct device dummy_dev = {
283 "dummy", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, NEXT_DEV, dummy_init, };
284 # undef NEXT_DEV
285 # define NEXT_DEV (&dummy_dev)
286 #endif
287
288 #ifdef LOOPBACK
289 extern int loopback_init(struct device *dev);
290 static struct device loopback_dev = {
291 "lo",
292 0x0,
293 0x0,
294 0x0,
295 0x0,
296 0,
297 0,
298 0, 0, 0,
299 NEXT_DEV,
300 loopback_init
301 };
302 # undef NEXT_DEV
303 # define NEXT_DEV (&loopback_dev)
304 #endif
305
306
307 struct device *dev_base = NEXT_DEV;