if_an_pccard.c revision 86384
1/*
2 * Copyright (c) 1997, 1998, 1999
3 *	Bill Paul <wpaul@ctr.columbia.edu>.  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, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/dev/an/if_an_pccard.c 86384 2001-11-15 06:26:24Z imp $
33 */
34
35/*
36 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
37 *
38 * Written by Bill Paul <wpaul@ctr.columbia.edu>
39 * Electrical Engineering Department
40 * Columbia University, New York City
41 */
42
43#include "opt_inet.h"
44
45#ifdef INET
46#define ANCACHE
47#endif
48
49#include <sys/param.h>
50#include <sys/systm.h>
51#include <sys/socket.h>
52#include <sys/kernel.h>
53
54#include <sys/module.h>
55#include <sys/bus.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
58#include <sys/lock.h>
59#include <sys/mutex.h>
60#include <machine/resource.h>
61
62#include <net/if.h>
63#include <net/if_arp.h>
64#include <net/ethernet.h>
65#include <net/if_dl.h>
66#include <net/if_types.h>
67#include <net/if_media.h>
68
69#include <dev/pccard/pccardvar.h>
70#include <dev/pccard/pccarddevs.h>
71#include "card_if.h"
72
73#ifndef lint
74static const char rcsid[] =
75 "$FreeBSD: head/sys/dev/an/if_an_pccard.c 86384 2001-11-15 06:26:24Z imp $";
76#endif
77
78#include <dev/an/if_aironet_ieee.h>
79#include <dev/an/if_anreg.h>
80
81/*
82 * Support for PCMCIA cards.
83 */
84static int  an_pccard_match(device_t);
85static int  an_pccard_probe(device_t);
86static int  an_pccard_attach(device_t);
87static int  an_pccard_detach(device_t);
88
89static device_method_t an_pccard_methods[] = {
90	/* Device interface */
91	DEVMETHOD(device_probe,		pccard_compat_probe),
92	DEVMETHOD(device_attach,	pccard_compat_attach),
93	DEVMETHOD(device_detach,	an_pccard_detach),
94	DEVMETHOD(device_shutdown,	an_shutdown),
95
96	/* Card interface */
97	DEVMETHOD(card_compat_match, 	an_pccard_match),
98	DEVMETHOD(card_compat_probe,	an_pccard_probe),
99	DEVMETHOD(card_compat_attach,	an_pccard_attach),
100
101	{ 0, 0 }
102};
103
104static driver_t an_pccard_driver = {
105	"an",
106	an_pccard_methods,
107	sizeof(struct an_softc)
108};
109
110static devclass_t an_pccard_devclass;
111
112DRIVER_MODULE(if_an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
113
114static const struct pccard_product an_pccard_products[] = {
115	{ PCMCIA_STR_AIRONET_PC4800,	PCMCIA_VENDOR_AIRONET,
116	  PCMCIA_PRODUCT_AIRONET_PC4800,	0,
117	  PCMCIA_CIS_AIRONET_PC4800 },
118	{ PCMCIA_STR_AIRONET_PC4500,	PCMCIA_VENDOR_AIRONET,
119	  PCMCIA_PRODUCT_AIRONET_PC4500,	0,
120	  PCMCIA_CIS_AIRONET_PC4500 },
121	{ PCMCIA_STR_AIRONET_350,	PCMCIA_VENDOR_AIRONET,
122	  PCMCIA_PRODUCT_AIRONET_350,	0,
123	  PCMCIA_CIS_AIRONET_350 },
124};
125
126static int
127an_pccard_match(device_t dev)
128{
129	const struct pccard_product *pp;
130
131	if ((pp = pccard_product_lookup(dev, an_pccard_products,
132		sizeof(an_pccard_products[0]), NULL)) != NULL) {
133			device_set_desc(dev, pp->pp_name);
134			return 0;
135	}
136	return ENXIO;
137}
138
139static int
140an_pccard_detach(device_t dev)
141{
142	struct an_softc		*sc = device_get_softc(dev);
143	struct ifnet		*ifp = &sc->arpcom.ac_if;
144
145	if (sc->an_gone) {
146		device_printf(dev,"already unloaded\n");
147		return(0);
148	}
149	an_stop(sc);
150	ifmedia_removeall(&sc->an_ifmedia);
151	ifp->if_flags &= ~IFF_RUNNING;
152	ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
153	sc->an_gone = 1;
154	bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
155	an_release_resources(dev);
156	mtx_destroy(&sc->an_mtx);
157	return (0);
158}
159
160static int
161an_pccard_probe(device_t dev)
162{
163	int     error;
164
165	error = an_probe(dev); /* 0 is failure for now */
166	if (error != 0) {
167		device_set_desc(dev, "Aironet PC4500/PC4800");
168		error = an_alloc_irq(dev, 0, 0);
169	} else
170	        error = 1;
171	an_release_resources(dev);
172	return (error);
173}
174
175
176static int
177an_pccard_attach(device_t dev)
178{
179	struct an_softc *sc = device_get_softc(dev);
180	int flags = device_get_flags(dev);
181	int error;
182
183	an_alloc_port(dev, sc->port_rid, AN_IOSIZ);
184	an_alloc_irq(dev, sc->irq_rid, 0);
185
186	error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
187			       an_intr, sc, &sc->irq_handle);
188	if (error) {
189		printf("setup intr failed %d \n", error);
190		an_release_resources(dev);
191		return (error);
192	}
193
194	sc->an_bhandle = rman_get_bushandle(sc->port_res);
195	sc->an_btag = rman_get_bustag(sc->port_res);
196	sc->an_dev = dev;
197
198	error = an_attach(sc, device_get_unit(dev), flags);
199	return (error);
200}
201
202