Initial import from FreeBSD RELENG_4:
[games.git] / sys / dev / netif / an / if_an_pccard.c
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: src/sys/dev/an/if_an_pccard.c,v 1.1.2.6 2003/02/01 03:25:12 ambrisko Exp $
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 <machine/resource.h>
59
60 #include <net/if.h>
61 #include <net/if_arp.h>
62 #include <net/ethernet.h>
63 #include <net/if_dl.h>
64 #include <net/if_types.h>
65 #include <net/if_media.h>
66
67 #ifndef lint
68 static const char rcsid[] =
69  "$FreeBSD: src/sys/dev/an/if_an_pccard.c,v 1.1.2.6 2003/02/01 03:25:12 ambrisko Exp $";
70 #endif
71
72 #include <dev/an/if_aironet_ieee.h>
73 #include <dev/an/if_anreg.h>
74
75 /*
76  * Support for PCMCIA cards.
77  */
78 static int  an_pccard_probe(device_t);
79 static int  an_pccard_attach(device_t);
80 static int  an_pccard_detach(device_t);
81
82 static device_method_t an_pccard_methods[] = {
83         /* Device interface */
84         DEVMETHOD(device_probe,         an_pccard_probe),
85         DEVMETHOD(device_attach,        an_pccard_attach),
86         DEVMETHOD(device_detach,        an_pccard_detach),
87         DEVMETHOD(device_shutdown,      an_shutdown),
88
89         { 0, 0 }
90 };
91
92 static driver_t an_pccard_driver = {
93         "an",
94         an_pccard_methods,
95         sizeof(struct an_softc)
96 };
97
98 static devclass_t an_pccard_devclass;
99
100 DRIVER_MODULE(if_an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
101
102 static int
103 an_pccard_detach(device_t dev)
104 {
105         struct an_softc         *sc = device_get_softc(dev);
106         struct ifnet            *ifp = &sc->arpcom.ac_if;
107
108         if (sc->an_gone) {
109                 device_printf(dev,"already unloaded\n");
110                 return(0);
111         }
112         an_stop(sc);
113         ifmedia_removeall(&sc->an_ifmedia);
114         ifp->if_flags &= ~IFF_RUNNING;
115         ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
116         sc->an_gone = 1;
117         bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
118         an_release_resources(dev);
119         return (0);
120 }
121
122 static int
123 an_pccard_probe(device_t dev)
124 {
125         int     error;
126
127         error = an_probe(dev); /* 0 is failure for now */
128         if (error != 0) {
129                 device_set_desc(dev, "Aironet PC4500/PC4800");
130                 error = an_alloc_irq(dev, 0, 0);
131         } else
132                 error = 1;
133         an_release_resources(dev);
134         return (error);
135 }
136
137
138 static int
139 an_pccard_attach(device_t dev)
140 {
141         struct an_softc *sc = device_get_softc(dev);
142         int flags = device_get_flags(dev);
143         int error;
144
145         an_alloc_port(dev, sc->port_rid, AN_IOSIZ);
146         an_alloc_irq(dev, sc->irq_rid, 0);
147
148         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
149                                an_intr, sc, &sc->irq_handle);
150         if (error) {
151                 printf("setup intr failed %d \n", error);
152                 an_release_resources(dev);
153                 return (error);
154         }
155
156         sc->an_bhandle = rman_get_bushandle(sc->port_res);
157         sc->an_btag = rman_get_bustag(sc->port_res);
158         sc->an_dev = dev;
159
160         error = an_attach(sc, device_get_unit(dev), flags);
161         return (error);
162 }