if_ed_isa.c revision 150957
1/*-
2 * Copyright (c) 1995, David Greenman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice unmodified, this list of conditions, and the following
10 *    disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/ed/if_ed_isa.c 150957 2005-10-05 05:21:07Z imp $");
31
32#include "opt_ed.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/socket.h>
37#include <sys/kernel.h>
38
39#include <sys/module.h>
40#include <sys/bus.h>
41#include <machine/bus.h>
42
43#include <net/ethernet.h>
44#include <net/if.h>
45#include <net/if_arp.h>
46#include <net/if_media.h>
47#include <net/if_mib.h>
48
49#include <isa/isavar.h>
50
51#include <dev/ed/if_edvar.h>
52#include <dev/ed/if_edreg.h>
53
54static int ed_isa_probe(device_t);
55static int ed_isa_attach(device_t);
56
57static struct isa_pnp_id ed_ids[] = {
58	{ 0x1684a34d,	NULL },		/* SMC8416 */
59	{ 0xd680d041,	NULL },		/* PNP80d6 */
60	{ 0x1980635e,	NULL },		/* WSC8019 */
61	{ 0x0131d805,	NULL },		/* ANX3101 */
62	{ 0x01200507,	NULL },		/* AXE2001 */
63	{ 0x19808c4a,	NULL },		/* RTL8019 */
64	{ 0x0090252a,	NULL },		/* JQE9000 */
65	{ 0x0020832e,	NULL },		/* KTC2000 */
66	{ 0x4cf48906,	NULL },		/* ATIf44c */
67	{ 0,		NULL }
68};
69
70static int
71ed_isa_probe_Novell(device_t dev)
72{
73	struct ed_softc *sc = device_get_softc(dev);
74	int flags = device_get_flags(dev);
75	int err;
76
77	err = ed_probe_Novell(dev, 0, flags);
78	if (err)
79		return err;
80	ed_Novell_read_mac(sc);
81	/*
82	 * Final sanity check for Gateway Ethernet cards before
83	 * believing that they really are Gateway AT.
84	 */
85	if ((ED_FLAGS_GETTYPE(flags) == ED_FLAGS_GWETHER) &&
86	    (sc->enaddr[2] == 0x86)) {
87		sc->type_str = "Gateway AT";
88	}
89
90	return (0);
91}
92
93static int
94ed_isa_probe(device_t dev)
95{
96	int flags = device_get_flags(dev);
97	int error = 0;
98
99	/* Check isapnp ids */
100	error = ISA_PNP_PROBE(device_get_parent(dev), dev, ed_ids);
101
102	/* If the card had a PnP ID that didn't match any we know about */
103	if (error == ENXIO)
104		goto end;
105
106	/* If we had some other problem. */
107	if (!(error == 0 || error == ENOENT))
108		goto end;
109
110	/* Heuristic probes */
111
112	error = ed_probe_WD80x3(dev, 0, flags);
113	if (error == 0)
114		goto end;
115	ed_release_resources(dev);
116
117	error = ed_probe_RTL80x9(dev, 0, flags);
118	if (error == 0)
119		goto end;
120	ed_release_resources(dev);
121
122#ifdef ED_3C503
123	error = ed_probe_3Com(dev, 0, flags);
124	if (error == 0)
125		goto end;
126	ed_release_resources(dev);
127#endif
128
129#ifdef ED_SIC
130	error = ed_probe_SIC(dev, 0, flags);
131	if (error == 0)
132		goto end;
133	ed_release_resources(dev);
134#endif
135	error = ed_isa_probe_Novell(dev);
136	if (error == 0)
137		goto end;
138	ed_release_resources(dev);
139
140#ifdef ED_HPP
141	error = ed_probe_HP_pclanp(dev, 0, flags);
142	if (error == 0)
143		goto end;
144	ed_release_resources(dev);
145#endif
146end:
147	if (error == 0)
148		error = ed_alloc_irq(dev, 0, 0);
149
150	ed_release_resources(dev);
151	return (error);
152}
153
154static int
155ed_isa_attach(device_t dev)
156{
157	struct ed_softc *sc = device_get_softc(dev);
158	int error;
159
160	if (sc->port_used > 0)
161		ed_alloc_port(dev, sc->port_rid, sc->port_used);
162	if (sc->mem_used)
163		ed_alloc_memory(dev, sc->mem_rid, sc->mem_used);
164
165	ed_alloc_irq(dev, sc->irq_rid, 0);
166
167	error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET | INTR_MPSAFE,
168	    edintr, sc, &sc->irq_handle);
169	if (error) {
170		ed_release_resources(dev);
171		return (error);
172	}
173
174	if (sc->chip_type == ED_CHIP_TYPE_RTL8029)
175		ed_Novell_read_mac(sc);
176
177#ifdef ED_HPP
178	if (sc->vendor == ED_VENDOR_HP && sc->type == ED_TYPE_HP_PCLANPLUS)
179		sc->readmem = ed_hpp_readmem;
180#endif
181	return ed_attach(dev);
182}
183
184static device_method_t ed_isa_methods[] = {
185	/* Device interface */
186	DEVMETHOD(device_probe,		ed_isa_probe),
187	DEVMETHOD(device_attach,	ed_isa_attach),
188	DEVMETHOD(device_detach,	ed_detach),
189
190	{ 0, 0 }
191};
192
193static driver_t ed_isa_driver = {
194	"ed",
195	ed_isa_methods,
196	sizeof(struct ed_softc)
197};
198
199DRIVER_MODULE(ed, isa, ed_isa_driver, ed_devclass, 0, 0);
200MODULE_DEPEND(ed, isa, 1, 1, 1);
201MODULE_DEPEND(ed, ether, 1, 1, 1);
202