]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/Space.c
drivers/net: delete old 8bit ISA 3c501 driver.
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / Space.c
CommitLineData
1da177e4
LT
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Holds initial configuration information for devices.
7 *
8 * Version: @(#)Space.c 1.0.7 08/12/93
9 *
02c30a84 10 * Authors: Ross Biro
1da177e4
LT
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Donald J. Becker, <becker@scyld.com>
13 *
14 * Changelog:
15 * Stephen Hemminger (09/2003)
16 * - get rid of pre-linked dev list, dynamic device allocation
17 * Paul Gortmaker (03/2002)
18 * - struct init cleanup, enable multiple ISA autoprobes.
19 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 09/1999
20 * - fix sbni: s/device/net_device/
6aa20a22 21 * Paul Gortmaker (06/98):
1da177e4
LT
22 * - sort probes in a sane way, make sure all (safe) probes
23 * get run once & failed autoprobes don't autoprobe again.
24 *
25 * This program is free software; you can redistribute it and/or
26 * modify it under the terms of the GNU General Public License
27 * as published by the Free Software Foundation; either version
28 * 2 of the License, or (at your option) any later version.
29 */
1da177e4
LT
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
1da177e4
LT
32#include <linux/errno.h>
33#include <linux/init.h>
34#include <linux/netlink.h>
1da177e4
LT
35
36/* A unified ethernet device probe. This is the easiest way to have every
37 ethernet adaptor have the name "eth[0123...]".
38 */
39
1da177e4
LT
40extern struct net_device *hp100_probe(int unit);
41extern struct net_device *ultra_probe(int unit);
1da177e4
LT
42extern struct net_device *wd_probe(int unit);
43extern struct net_device *el2_probe(int unit);
44extern struct net_device *ne_probe(int unit);
45extern struct net_device *hp_probe(int unit);
46extern struct net_device *hp_plus_probe(int unit);
47extern struct net_device *express_probe(int unit);
48extern struct net_device *eepro_probe(int unit);
49extern struct net_device *at1700_probe(int unit);
50extern struct net_device *fmv18x_probe(int unit);
51extern struct net_device *eth16i_probe(int unit);
52extern struct net_device *i82596_probe(int unit);
53extern struct net_device *ewrk3_probe(int unit);
1da177e4 54extern struct net_device *el16_probe(int unit);
1da177e4 55extern struct net_device *elplus_probe(int unit);
1da177e4
LT
56extern struct net_device *e2100_probe(int unit);
57extern struct net_device *ni5010_probe(int unit);
58extern struct net_device *ni52_probe(int unit);
59extern struct net_device *ni65_probe(int unit);
60extern struct net_device *sonic_probe(int unit);
1da177e4
LT
61extern struct net_device *seeq8005_probe(int unit);
62extern struct net_device *smc_init(int unit);
63extern struct net_device *atarilance_probe(int unit);
64extern struct net_device *sun3lance_probe(int unit);
65extern struct net_device *sun3_82586_probe(int unit);
66extern struct net_device *apne_probe(int unit);
1da177e4 67extern struct net_device *cs89x0_probe(int unit);
1da177e4
LT
68extern struct net_device *mvme147lance_probe(int unit);
69extern struct net_device *tc515_probe(int unit);
70extern struct net_device *lance_probe(int unit);
1da177e4
LT
71extern struct net_device *mac8390_probe(int unit);
72extern struct net_device *mac89x0_probe(int unit);
1da177e4
LT
73extern struct net_device *cops_probe(int unit);
74extern struct net_device *ltpc_probe(void);
6aa20a22 75
1da177e4
LT
76/* Detachable devices ("pocket adaptors") */
77extern struct net_device *de620_probe(int unit);
78
79/* Fibre Channel adapters */
80extern int iph5526_probe(struct net_device *dev);
81
82/* SBNI adapters */
83extern int sbni_probe(int unit);
84
85struct devprobe2 {
86 struct net_device *(*probe)(int unit);
87 int status; /* non-zero if autoprobe has failed */
88};
89
90static int __init probe_list2(int unit, struct devprobe2 *p, int autoprobe)
91{
92 struct net_device *dev;
93 for (; p->probe; p++) {
94 if (autoprobe && p->status)
95 continue;
96 dev = p->probe(unit);
97 if (!IS_ERR(dev))
98 return 0;
99 if (autoprobe)
100 p->status = PTR_ERR(dev);
101 }
102 return -ENODEV;
103}
104
1da177e4
LT
105/*
106 * ISA probes that touch addresses < 0x400 (including those that also
a5e371f6 107 * look for EISA/PCI cards in addition to ISA cards).
1da177e4
LT
108 */
109static struct devprobe2 isa_probes[] __initdata = {
7525d4bf 110#if defined(CONFIG_HP100) && defined(CONFIG_ISA) /* ISA, EISA */
1da177e4 111 {hp100_probe, 0},
6aa20a22 112#endif
1da177e4
LT
113#ifdef CONFIG_3C515
114 {tc515_probe, 0},
115#endif
6aa20a22 116#ifdef CONFIG_ULTRA
1da177e4
LT
117 {ultra_probe, 0},
118#endif
6aa20a22 119#ifdef CONFIG_WD80x3
1da177e4
LT
120 {wd_probe, 0},
121#endif
122#ifdef CONFIG_EL2 /* 3c503 */
123 {el2_probe, 0},
124#endif
125#ifdef CONFIG_HPLAN
126 {hp_probe, 0},
127#endif
128#ifdef CONFIG_HPLAN_PLUS
129 {hp_plus_probe, 0},
130#endif
131#ifdef CONFIG_E2100 /* Cabletron E21xx series. */
132 {e2100_probe, 0},
133#endif
134#if defined(CONFIG_NE2000) || \
135 defined(CONFIG_NE_H8300) /* ISA (use ne2k-pci for PCI cards) */
136 {ne_probe, 0},
137#endif
138#ifdef CONFIG_LANCE /* ISA/VLB (use pcnet32 for PCI cards) */
139 {lance_probe, 0},
140#endif
141#ifdef CONFIG_SMC9194
142 {smc_init, 0},
143#endif
6aa20a22 144#ifdef CONFIG_SEEQ8005
1da177e4
LT
145 {seeq8005_probe, 0},
146#endif
147#ifdef CONFIG_CS89x0
e9460a9e 148#ifndef CONFIG_CS89x0_PLATFORM
1da177e4
LT
149 {cs89x0_probe, 0},
150#endif
e9460a9e 151#endif
1da177e4
LT
152#ifdef CONFIG_AT1700
153 {at1700_probe, 0},
154#endif
1da177e4
LT
155#ifdef CONFIG_ETH16I
156 {eth16i_probe, 0}, /* ICL EtherTeam 16i/32 */
157#endif
158#ifdef CONFIG_EEXPRESS /* Intel EtherExpress */
159 {express_probe, 0},
160#endif
161#ifdef CONFIG_EEXPRESS_PRO /* Intel EtherExpress Pro/10 */
162 {eepro_probe, 0},
163#endif
164#ifdef CONFIG_EWRK3 /* DEC EtherWORKS 3 */
165 {ewrk3_probe, 0},
166#endif
6e07ba3e 167#if defined(CONFIG_MVME16x_NET) || defined(CONFIG_BVME6000_NET) /* Intel I82596 */
1da177e4
LT
168 {i82596_probe, 0},
169#endif
1da177e4
LT
170#ifdef CONFIG_EL16 /* 3c507 */
171 {el16_probe, 0},
172#endif
173#ifdef CONFIG_ELPLUS /* 3c505 */
174 {elplus_probe, 0},
175#endif
1da177e4
LT
176#ifdef CONFIG_NI5010
177 {ni5010_probe, 0},
178#endif
179#ifdef CONFIG_NI52
180 {ni52_probe, 0},
181#endif
182#ifdef CONFIG_NI65
183 {ni65_probe, 0},
184#endif
185 {NULL, 0},
186};
187
188static struct devprobe2 parport_probes[] __initdata = {
189#ifdef CONFIG_DE620 /* D-Link DE-620 adapter */
190 {de620_probe, 0},
191#endif
192 {NULL, 0},
193};
194
195static struct devprobe2 m68k_probes[] __initdata = {
196#ifdef CONFIG_ATARILANCE /* Lance-based Atari ethernet boards */
197 {atarilance_probe, 0},
198#endif
199#ifdef CONFIG_SUN3LANCE /* sun3 onboard Lance chip */
200 {sun3lance_probe, 0},
201#endif
202#ifdef CONFIG_SUN3_82586 /* sun3 onboard Intel 82586 chip */
203 {sun3_82586_probe, 0},
204#endif
205#ifdef CONFIG_APNE /* A1200 PCMCIA NE2000 */
206 {apne_probe, 0},
207#endif
1da177e4
LT
208#ifdef CONFIG_MVME147_NET /* MVME147 internal Ethernet */
209 {mvme147lance_probe, 0},
210#endif
1da177e4
LT
211#ifdef CONFIG_MAC8390 /* NuBus NS8390-based cards */
212 {mac8390_probe, 0},
213#endif
214#ifdef CONFIG_MAC89x0
215 {mac89x0_probe, 0},
216#endif
217 {NULL, 0},
218};
219
220/*
221 * Unified ethernet device probe, segmented per architecture and
222 * per bus interface. This drives the legacy devices only for now.
223 */
6aa20a22 224
1da177e4
LT
225static void __init ethif_probe2(int unit)
226{
227 unsigned long base_addr = netdev_boot_base("eth", unit);
228
229 if (base_addr == 1)
230 return;
231
232 (void)( probe_list2(unit, m68k_probes, base_addr == 0) &&
1da177e4
LT
233 probe_list2(unit, isa_probes, base_addr == 0) &&
234 probe_list2(unit, parport_probes, base_addr == 0));
235}
236
1da177e4
LT
237/* Statically configured drivers -- order matters here. */
238static int __init net_olddevs_init(void)
239{
240 int num;
241
1da177e4
LT
242#ifdef CONFIG_SBNI
243 for (num = 0; num < 8; ++num)
244 sbni_probe(num);
1da177e4
LT
245#endif
246 for (num = 0; num < 8; ++num)
247 ethif_probe2(num);
248
249#ifdef CONFIG_COPS
250 cops_probe(0);
251 cops_probe(1);
252 cops_probe(2);
253#endif
254#ifdef CONFIG_LTPC
255 ltpc_probe();
256#endif
257
258 return 0;
259}
260
261device_initcall(net_olddevs_init);