Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * INET		An implementation of the TCP/IP protocol suite for the LINUX
  4 *		operating system.  INET is implemented using the  BSD Socket
  5 *		interface as the means of communication with the user level.
  6 *
  7 *		Holds initial configuration information for devices.
  8 *
  9 * Version:	@(#)Space.c	1.0.7	08/12/93
 10 *
 11 * Authors:	Ross Biro
 12 *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
 13 *		Donald J. Becker, <becker@scyld.com>
 14 *
 15 * Changelog:
 16 *		Stephen Hemminger (09/2003)
 17 *		- get rid of pre-linked dev list, dynamic device allocation
 18 *		Paul Gortmaker (03/2002)
 19 *		- struct init cleanup, enable multiple ISA autoprobes.
 20 *		Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 09/1999
 21 *		- fix sbni: s/device/net_device/
 22 *		Paul Gortmaker (06/98):
 23 *		 - sort probes in a sane way, make sure all (safe) probes
 24 *		   get run once & failed autoprobes don't autoprobe again.
 
 
 
 
 
 25 */
 26#include <linux/netdevice.h>
 27#include <linux/etherdevice.h>
 28#include <linux/errno.h>
 29#include <linux/init.h>
 30#include <linux/netlink.h>
 31#include <net/Space.h>
 32
 33/*
 34 * This structure holds boot-time configured netdevice settings. They
 35 * are then used in the device probing.
 36 */
 37struct netdev_boot_setup {
 38	char name[IFNAMSIZ];
 39	struct ifmap map;
 40};
 41#define NETDEV_BOOT_SETUP_MAX 8
 42
 43
 44/******************************************************************************
 45 *
 46 *		      Device Boot-time Settings Routines
 47 *
 48 ******************************************************************************/
 49
 50/* Boot time configuration table */
 51static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
 52
 53/**
 54 *	netdev_boot_setup_add	- add new setup entry
 55 *	@name: name of the device
 56 *	@map: configured settings for the device
 57 *
 58 *	Adds new setup entry to the dev_boot_setup list.  The function
 59 *	returns 0 on error and 1 on success.  This is a generic routine to
 60 *	all netdevices.
 61 */
 62static int netdev_boot_setup_add(char *name, struct ifmap *map)
 63{
 64	struct netdev_boot_setup *s;
 65	int i;
 66
 67	s = dev_boot_setup;
 68	for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
 69		if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
 70			memset(s[i].name, 0, sizeof(s[i].name));
 71			strscpy(s[i].name, name, IFNAMSIZ);
 72			memcpy(&s[i].map, map, sizeof(s[i].map));
 73			break;
 74		}
 75	}
 76
 77	return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
 78}
 79
 80/**
 81 * netdev_boot_setup_check	- check boot time settings
 82 * @dev: the netdevice
 83 *
 84 * Check boot time settings for the device.
 85 * The found settings are set for the device to be used
 86 * later in the device probing.
 87 * Returns 0 if no settings found, 1 if they are.
 88 */
 89int netdev_boot_setup_check(struct net_device *dev)
 90{
 91	struct netdev_boot_setup *s = dev_boot_setup;
 92	int i;
 93
 94	for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
 95		if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
 96		    !strcmp(dev->name, s[i].name)) {
 97			dev->irq = s[i].map.irq;
 98			dev->base_addr = s[i].map.base_addr;
 99			dev->mem_start = s[i].map.mem_start;
100			dev->mem_end = s[i].map.mem_end;
101			return 1;
102		}
103	}
104	return 0;
105}
106EXPORT_SYMBOL(netdev_boot_setup_check);
107
108/**
109 * netdev_boot_base	- get address from boot time settings
110 * @prefix: prefix for network device
111 * @unit: id for network device
112 *
113 * Check boot time settings for the base address of device.
114 * The found settings are set for the device to be used
115 * later in the device probing.
116 * Returns 0 if no settings found.
117 */
118static unsigned long netdev_boot_base(const char *prefix, int unit)
119{
120	const struct netdev_boot_setup *s = dev_boot_setup;
121	char name[IFNAMSIZ];
122	int i;
123
124	sprintf(name, "%s%d", prefix, unit);
125
126	/*
127	 * If device already registered then return base of 1
128	 * to indicate not to probe for this interface
129	 */
130	if (__dev_get_by_name(&init_net, name))
131		return 1;
132
133	for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
134		if (!strcmp(name, s[i].name))
135			return s[i].map.base_addr;
136	return 0;
137}
138
139/*
140 * Saves at boot time configured settings for any netdevice.
141 */
142static int __init netdev_boot_setup(char *str)
143{
144	int ints[5];
145	struct ifmap map;
146
147	str = get_options(str, ARRAY_SIZE(ints), ints);
148	if (!str || !*str)
149		return 0;
150
151	/* Save settings */
152	memset(&map, 0, sizeof(map));
153	if (ints[0] > 0)
154		map.irq = ints[1];
155	if (ints[0] > 1)
156		map.base_addr = ints[2];
157	if (ints[0] > 2)
158		map.mem_start = ints[3];
159	if (ints[0] > 3)
160		map.mem_end = ints[4];
161
162	/* Add new entry to the list */
163	return netdev_boot_setup_add(str, &map);
164}
165
166__setup("netdev=", netdev_boot_setup);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
168static int __init ether_boot_setup(char *str)
169{
170	return netdev_boot_setup(str);
171}
172__setup("ether=", ether_boot_setup);
173
 
 
174
175/* A unified ethernet device probe.  This is the easiest way to have every
176 * ethernet adaptor have the name "eth[0123...]".
177 */
178
179struct devprobe2 {
180	struct net_device *(*probe)(int unit);
181	int status;	/* non-zero if autoprobe has failed */
182};
183
184static int __init probe_list2(int unit, struct devprobe2 *p, int autoprobe)
185{
186	struct net_device *dev;
187
188	for (; p->probe; p++) {
189		if (autoprobe && p->status)
190			continue;
191		dev = p->probe(unit);
192		if (!IS_ERR(dev))
193			return 0;
194		if (autoprobe)
195			p->status = PTR_ERR(dev);
196	}
197	return -ENODEV;
198}
199
200/* ISA probes that touch addresses < 0x400 (including those that also
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201 * look for EISA/PCI cards in addition to ISA cards).
202 */
203static struct devprobe2 isa_probes[] __initdata = {
 
 
 
204#ifdef CONFIG_3C515
205	{tc515_probe, 0},
206#endif
207#ifdef CONFIG_ULTRA
208	{ultra_probe, 0},
209#endif
210#ifdef CONFIG_WD80x3
211	{wd_probe, 0},
212#endif
213#if defined(CONFIG_NE2000) /* ISA (use ne2k-pci for PCI cards) */
 
 
 
 
 
 
 
 
 
 
 
 
 
214	{ne_probe, 0},
215#endif
216#ifdef CONFIG_LANCE		/* ISA/VLB (use pcnet32 for PCI cards) */
217	{lance_probe, 0},
218#endif
219#ifdef CONFIG_SMC9194
220	{smc_init, 0},
221#endif
222#ifdef CONFIG_CS89x0_ISA
223	{cs89x0_probe, 0},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224#endif
225	{NULL, 0},
226};
227
228/* Unified ethernet device probe, segmented per architecture and
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229 * per bus interface. This drives the legacy devices only for now.
230 */
231
232static void __init ethif_probe2(int unit)
233{
234	unsigned long base_addr = netdev_boot_base("eth", unit);
235
236	if (base_addr == 1)
237		return;
238
239	probe_list2(unit, isa_probes, base_addr == 0);
 
 
 
240}
241
242/*  Statically configured drivers -- order matters here. */
243static int __init net_olddevs_init(void)
244{
245	int num;
246
 
 
 
 
247	for (num = 0; num < 8; ++num)
248		ethif_probe2(num);
 
 
 
 
 
 
 
 
 
249
250	return 0;
251}
252
253device_initcall(net_olddevs_init);
v3.5.6
 
  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 *
 10 * Authors:	Ross Biro
 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/
 21 *		Paul Gortmaker (06/98):
 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 */
 30#include <linux/netdevice.h>
 31#include <linux/etherdevice.h>
 32#include <linux/errno.h>
 33#include <linux/init.h>
 34#include <linux/netlink.h>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 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
 40extern struct net_device *ne2_probe(int unit);
 41extern struct net_device *hp100_probe(int unit);
 42extern struct net_device *ultra_probe(int unit);
 43extern struct net_device *ultra32_probe(int unit);
 44extern struct net_device *wd_probe(int unit);
 45extern struct net_device *el2_probe(int unit);
 46extern struct net_device *ne_probe(int unit);
 47extern struct net_device *hp_probe(int unit);
 48extern struct net_device *hp_plus_probe(int unit);
 49extern struct net_device *express_probe(int unit);
 50extern struct net_device *eepro_probe(int unit);
 51extern struct net_device *at1700_probe(int unit);
 52extern struct net_device *fmv18x_probe(int unit);
 53extern struct net_device *eth16i_probe(int unit);
 54extern struct net_device *i82596_probe(int unit);
 55extern struct net_device *ewrk3_probe(int unit);
 56extern struct net_device *el1_probe(int unit);
 57extern struct net_device *el16_probe(int unit);
 58extern struct net_device *elmc_probe(int unit);
 59extern struct net_device *elplus_probe(int unit);
 60extern struct net_device *ac3200_probe(int unit);
 61extern struct net_device *es_probe(int unit);
 62extern struct net_device *lne390_probe(int unit);
 63extern struct net_device *e2100_probe(int unit);
 64extern struct net_device *ni5010_probe(int unit);
 65extern struct net_device *ni52_probe(int unit);
 66extern struct net_device *ni65_probe(int unit);
 67extern struct net_device *sonic_probe(int unit);
 68extern struct net_device *seeq8005_probe(int unit);
 69extern struct net_device *smc_init(int unit);
 70extern struct net_device *atarilance_probe(int unit);
 71extern struct net_device *sun3lance_probe(int unit);
 72extern struct net_device *sun3_82586_probe(int unit);
 73extern struct net_device *apne_probe(int unit);
 74extern struct net_device *cs89x0_probe(int unit);
 75extern struct net_device *mvme147lance_probe(int unit);
 76extern struct net_device *tc515_probe(int unit);
 77extern struct net_device *lance_probe(int unit);
 78extern struct net_device *mac8390_probe(int unit);
 79extern struct net_device *mac89x0_probe(int unit);
 80extern struct net_device *mc32_probe(int unit);
 81extern struct net_device *cops_probe(int unit);
 82extern struct net_device *ltpc_probe(void);
 83
 84/* Detachable devices ("pocket adaptors") */
 85extern struct net_device *de620_probe(int unit);
 
 
 
 86
 87/* Fibre Channel adapters */
 88extern int iph5526_probe(struct net_device *dev);
 89
 90/* SBNI adapters */
 91extern int sbni_probe(int unit);
 
 92
 93struct devprobe2 {
 94	struct net_device *(*probe)(int unit);
 95	int status;	/* non-zero if autoprobe has failed */
 96};
 97
 98static int __init probe_list2(int unit, struct devprobe2 *p, int autoprobe)
 99{
100	struct net_device *dev;
 
101	for (; p->probe; p++) {
102		if (autoprobe && p->status)
103			continue;
104		dev = p->probe(unit);
105		if (!IS_ERR(dev))
106			return 0;
107		if (autoprobe)
108			p->status = PTR_ERR(dev);
109	}
110	return -ENODEV;
111}
112
113/*
114 * This is a bit of an artificial separation as there are PCI drivers
115 * that also probe for EISA cards (in the PCI group) and there are ISA
116 * drivers that probe for EISA cards (in the ISA group).  These are the
117 * legacy EISA only driver probes, and also the legacy PCI probes
118 */
119
120static struct devprobe2 eisa_probes[] __initdata = {
121#ifdef CONFIG_ULTRA32
122	{ultra32_probe, 0},
123#endif
124#ifdef CONFIG_AC3200
125	{ac3200_probe, 0},
126#endif
127#ifdef CONFIG_ES3210
128	{es_probe, 0},
129#endif
130#ifdef CONFIG_LNE390
131	{lne390_probe, 0},
132#endif
133	{NULL, 0},
134};
135
136/*
137 * ISA probes that touch addresses < 0x400 (including those that also
138 * look for EISA/PCI cards in addition to ISA cards).
139 */
140static struct devprobe2 isa_probes[] __initdata = {
141#if defined(CONFIG_HP100) && defined(CONFIG_ISA)	/* ISA, EISA */
142	{hp100_probe, 0},
143#endif
144#ifdef CONFIG_3C515
145	{tc515_probe, 0},
146#endif
147#ifdef CONFIG_ULTRA
148	{ultra_probe, 0},
149#endif
150#ifdef CONFIG_WD80x3
151	{wd_probe, 0},
152#endif
153#ifdef CONFIG_EL2 		/* 3c503 */
154	{el2_probe, 0},
155#endif
156#ifdef CONFIG_HPLAN
157	{hp_probe, 0},
158#endif
159#ifdef CONFIG_HPLAN_PLUS
160	{hp_plus_probe, 0},
161#endif
162#ifdef CONFIG_E2100		/* Cabletron E21xx series. */
163	{e2100_probe, 0},
164#endif
165#if defined(CONFIG_NE2000) || \
166    defined(CONFIG_NE_H8300)  /* ISA (use ne2k-pci for PCI cards) */
167	{ne_probe, 0},
168#endif
169#ifdef CONFIG_LANCE		/* ISA/VLB (use pcnet32 for PCI cards) */
170	{lance_probe, 0},
171#endif
172#ifdef CONFIG_SMC9194
173	{smc_init, 0},
174#endif
175#ifdef CONFIG_SEEQ8005
176	{seeq8005_probe, 0},
177#endif
178#ifdef CONFIG_CS89x0
179#ifndef CONFIG_CS89x0_PLATFORM
180 	{cs89x0_probe, 0},
181#endif
182#endif
183#ifdef CONFIG_AT1700
184	{at1700_probe, 0},
185#endif
186#ifdef CONFIG_ETH16I
187	{eth16i_probe, 0},	/* ICL EtherTeam 16i/32 */
188#endif
189#ifdef CONFIG_EEXPRESS		/* Intel EtherExpress */
190	{express_probe, 0},
191#endif
192#ifdef CONFIG_EEXPRESS_PRO	/* Intel EtherExpress Pro/10 */
193	{eepro_probe, 0},
194#endif
195#ifdef CONFIG_EWRK3             /* DEC EtherWORKS 3 */
196    	{ewrk3_probe, 0},
197#endif
198#if defined(CONFIG_APRICOT) || defined(CONFIG_MVME16x_NET) || defined(CONFIG_BVME6000_NET)	/* Intel I82596 */
199	{i82596_probe, 0},
200#endif
201#ifdef CONFIG_EL1		/* 3c501 */
202	{el1_probe, 0},
203#endif
204#ifdef CONFIG_EL16		/* 3c507 */
205	{el16_probe, 0},
206#endif
207#ifdef CONFIG_ELPLUS		/* 3c505 */
208	{elplus_probe, 0},
209#endif
210#ifdef CONFIG_NI5010
211	{ni5010_probe, 0},
212#endif
213#ifdef CONFIG_NI52
214	{ni52_probe, 0},
215#endif
216#ifdef CONFIG_NI65
217	{ni65_probe, 0},
218#endif
219	{NULL, 0},
220};
221
222static struct devprobe2 parport_probes[] __initdata = {
223#ifdef CONFIG_DE620		/* D-Link DE-620 adapter */
224	{de620_probe, 0},
225#endif
226	{NULL, 0},
227};
228
229static struct devprobe2 m68k_probes[] __initdata = {
230#ifdef CONFIG_ATARILANCE	/* Lance-based Atari ethernet boards */
231	{atarilance_probe, 0},
232#endif
233#ifdef CONFIG_SUN3LANCE         /* sun3 onboard Lance chip */
234	{sun3lance_probe, 0},
235#endif
236#ifdef CONFIG_SUN3_82586        /* sun3 onboard Intel 82586 chip */
237	{sun3_82586_probe, 0},
238#endif
239#ifdef CONFIG_APNE		/* A1200 PCMCIA NE2000 */
240	{apne_probe, 0},
241#endif
242#ifdef CONFIG_MVME147_NET	/* MVME147 internal Ethernet */
243	{mvme147lance_probe, 0},
244#endif
245#ifdef CONFIG_MAC8390           /* NuBus NS8390-based cards */
246	{mac8390_probe, 0},
247#endif
248#ifdef CONFIG_MAC89x0
249 	{mac89x0_probe, 0},
250#endif
251	{NULL, 0},
252};
253
254/*
255 * Unified ethernet device probe, segmented per architecture and
256 * per bus interface. This drives the legacy devices only for now.
257 */
258
259static void __init ethif_probe2(int unit)
260{
261	unsigned long base_addr = netdev_boot_base("eth", unit);
262
263	if (base_addr == 1)
264		return;
265
266	(void)(	probe_list2(unit, m68k_probes, base_addr == 0) &&
267		probe_list2(unit, eisa_probes, base_addr == 0) &&
268		probe_list2(unit, isa_probes, base_addr == 0) &&
269		probe_list2(unit, parport_probes, base_addr == 0));
270}
271
272/*  Statically configured drivers -- order matters here. */
273static int __init net_olddevs_init(void)
274{
275	int num;
276
277#ifdef CONFIG_SBNI
278	for (num = 0; num < 8; ++num)
279		sbni_probe(num);
280#endif
281	for (num = 0; num < 8; ++num)
282		ethif_probe2(num);
283
284#ifdef CONFIG_COPS
285	cops_probe(0);
286	cops_probe(1);
287	cops_probe(2);
288#endif
289#ifdef CONFIG_LTPC
290	ltpc_probe();
291#endif
292
293	return 0;
294}
295
296device_initcall(net_olddevs_init);