Merge from vendor branch DIFFUTILS:
[dragonfly.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  * $DragonFly: src/sys/dev/netif/an/if_an_pccard.c,v 1.5 2004/03/14 15:36:48 joerg Exp $
34  *
35  * $FreeBSD: src/sys/dev/an/if_an_pccard.c,v 1.1.2.6 2003/02/01 03:25:12 ambrisko Exp $
36  */
37
38 /*
39  * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
40  *
41  * Written by Bill Paul <wpaul@ctr.columbia.edu>
42  * Electrical Engineering Department
43  * Columbia University, New York City
44  */
45
46 #include "opt_inet.h"
47
48 #ifdef INET
49 #define ANCACHE
50 #endif
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/socket.h>
55 #include <sys/kernel.h>
56
57 #include <sys/module.h>
58 #include <sys/bus.h>
59 #include <machine/bus.h>
60 #include <sys/rman.h>
61 #include <machine/resource.h>
62
63 #include <net/if.h>
64 #include <net/if_arp.h>
65 #include <net/ethernet.h>
66 #include <net/if_dl.h>
67 #include <net/if_types.h>
68 #include <net/if_media.h>
69
70 #include <bus/pccard/pccardvar.h>
71 #include <bus/pccard/pccarddevs.h>
72 #include "card_if.h"
73
74 #include "if_aironet_ieee.h"
75 #include "if_anreg.h"
76
77 /*
78  * Support for PCMCIA cards.
79  */
80 static int  an_pccard_match(device_t);
81 static int  an_pccard_probe(device_t);
82 static int  an_pccard_attach(device_t);
83 static int  an_pccard_detach(device_t);
84
85 static device_method_t an_pccard_methods[] = {
86         /* Device interface */
87         DEVMETHOD(device_probe,         pccard_compat_probe),
88         DEVMETHOD(device_attach,        pccard_compat_attach),
89         DEVMETHOD(device_shutdown,      an_shutdown),
90         DEVMETHOD(device_detach,        an_pccard_detach),
91
92         /* Card interface */
93         DEVMETHOD(card_compat_match,    an_pccard_match),
94         DEVMETHOD(card_compat_probe,    an_pccard_probe),
95         DEVMETHOD(card_compat_attach,   an_pccard_attach),
96
97         { 0, 0 }
98 };
99
100 static driver_t an_pccard_driver = {
101         "an",
102         an_pccard_methods,
103         sizeof(struct an_softc)
104 };
105
106 static devclass_t an_pccard_devclass;
107
108 DRIVER_MODULE(if_an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
109
110 static const struct pccard_product an_pccard_products[] = {
111         PCMCIA_CARD(AIRONET, PC4500, 0),
112         PCMCIA_CARD(AIRONET, PC4800, 0),
113         PCMCIA_CARD(AIRONET, 350, 0),
114         PCMCIA_CARD(XIRCOM, CWE1130, 0), 
115         { NULL }
116 };
117
118 static int
119 an_pccard_match(device_t dev)
120 {
121         const struct pccard_product *pp;
122
123         if ((pp = pccard_product_lookup(dev, an_pccard_products,
124             sizeof(an_pccard_products[0]), NULL)) != NULL) {
125                 if (pp->pp_name != NULL)
126                         device_set_desc(dev, pp->pp_name);
127                 return (0);
128         }
129         return (ENXIO);
130 }
131
132 static int
133 an_pccard_detach(device_t dev)
134 {
135         struct an_softc         *sc = device_get_softc(dev);
136         struct ifnet            *ifp = &sc->arpcom.ac_if;
137
138         if (sc->an_gone) {
139                 device_printf(dev,"already unloaded\n");
140                 return(0);
141         }
142         an_stop(sc);
143         ifmedia_removeall(&sc->an_ifmedia);
144         ifp->if_flags &= ~IFF_RUNNING;
145         ether_ifdetach(ifp);
146         sc->an_gone = 1;
147         bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
148         an_release_resources(dev);
149         return (0);
150 }
151
152 static int
153 an_pccard_probe(device_t dev)
154 {
155         int     error;
156
157         error = an_probe(dev); /* 0 is failure for now */
158         if (error != 0) {
159                 device_set_desc(dev, "Aironet PC4500/PC4800");
160                 error = an_alloc_irq(dev, 0, 0);
161         } else
162                 error = 1;
163         an_release_resources(dev);
164         return (error);
165 }
166
167
168 static int
169 an_pccard_attach(device_t dev)
170 {
171         struct an_softc *sc = device_get_softc(dev);
172         int flags = device_get_flags(dev);
173         int error;
174
175         an_alloc_port(dev, sc->port_rid, AN_IOSIZ);
176         an_alloc_irq(dev, sc->irq_rid, 0);
177
178         sc->an_bhandle = rman_get_bushandle(sc->port_res);
179         sc->an_btag = rman_get_bustag(sc->port_res);
180         sc->an_dev = dev;
181
182         error = an_attach(sc, device_get_unit(dev), flags);
183         if (error) {
184                 goto fail;
185         }
186         
187         /*
188          * Must setup the interrupt after the an_attach to prevent racing.
189          */
190         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
191                                an_intr, sc, &sc->irq_handle);
192         if (error) {
193                 goto fail;
194         }
195
196 fail:
197         if (error)
198                 an_release_resources(dev);
199         return (error);
200 }