Merge from vendor branch GCC:
[dragonfly.git] / sys / dev / netif / an / if_an_pci.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_pci.c,v 1.2.2.8 2003/02/11 03:32:48 ambrisko Exp $
33  * $DragonFly: src/sys/dev/netif/an/if_an_pci.c,v 1.16 2005/07/30 18:15:18 joerg Exp $
34  */
35
36 /*
37  * This is a PCI shim for the Aironet PC4500/4800 wireless network
38  * driver. Aironet makes PCMCIA, ISA and PCI versions of these devices,
39  * which all have basically the same interface. The ISA and PCI cards
40  * are actually bridge adapters with PCMCIA cards inserted into them,
41  * however they appear as normal PCI or ISA devices to the host.
42  *
43  * All we do here is handle the PCI probe and attach and set up an
44  * interrupt handler entry point. The PCI version of the card uses
45  * a PLX 9050 PCI to "dumb bus" bridge chip, which provides us with
46  * multiple PCI address space mappings. The primary mapping at PCI
47  * register 0x14 is for the PLX chip itself, *NOT* the Aironet card.
48  * The I/O address of the Aironet is actually at register 0x18, which
49  * is the local bus mapping register for bus space 0. There are also
50  * registers for additional register spaces at registers 0x1C and
51  * 0x20, but these are unused in the Aironet devices. To find out
52  * more, you need a datasheet for the 9050 from PLX, but you have
53  * to go through their sales office to get it. Bleh.
54  */
55
56 #include "opt_inet.h"
57
58 #ifdef INET
59 #define ANCACHE
60 #endif
61
62 #include <sys/param.h>
63 #include <sys/systm.h>
64 #include <sys/sockio.h>
65 #include <sys/mbuf.h>
66 #include <sys/malloc.h>
67 #include <sys/kernel.h>
68 #include <sys/socket.h>
69
70 #include <sys/module.h>
71 #include <sys/bus.h>
72 #include <machine/bus.h>
73 #include <sys/rman.h>
74 #include <machine/resource.h>
75
76 #include <net/if.h>
77 #include <net/if_arp.h>
78 #include <net/ethernet.h>
79 #include <net/if_dl.h>
80 #include <net/if_media.h>
81
82 #include <bus/pci/pcidevs.h>
83 #include <bus/pci/pcireg.h>
84 #include <bus/pci/pcivar.h>
85
86 #include "if_aironet_ieee.h"
87 #include "if_anreg.h"
88
89 struct an_type {
90         uint16_t                 an_vid;
91         uint16_t                 an_did;
92         int                      an_port_rid;
93         const char              *an_name;
94 };
95
96 static const struct an_type an_devs[] = {
97         { PCI_VENDOR_AIRONET, PCI_PRODUCT_AIRONET_350,
98           PCIR_BAR(2), "Cisco Aironet 350 Series" },
99         { PCI_VENDOR_AIRONET, PCI_PRODUCT_AIRONET_PC4500,
100           PCIR_BAR(2), "Aironet PCI4500" },
101         { PCI_VENDOR_AIRONET, PCI_PRODUCT_AIRONET_PC4800,
102           PCIR_BAR(2), "Aironet PCI4800" },
103         { PCI_VENDOR_AIRONET, PCI_PRODUCT_AIRONET_PC4xxx,
104           PCIR_BAR(2), "Aironet PCI4500/PCI4800" },
105         { PCI_VENDOR_AIRONET, PCI_PRODUCT_AIRONET_MPI350,
106           PCIR_BAR(0), "Cisco Aironet MPI350" },
107         { 0, 0, 0, NULL }
108 };
109
110 static int an_probe_pci         (device_t);
111 static int an_attach_pci        (device_t);
112 static int an_suspend_pci       (device_t);
113 static int an_resume_pci        (device_t);
114
115 static int
116 an_probe_pci(device_t dev)
117 {
118         const struct an_type *t;
119         uint16_t vid, did;
120
121         vid = pci_get_vendor(dev);
122         did = pci_get_device(dev);
123         for (t = an_devs; t->an_name != NULL; ++t) {
124                 if (vid == t->an_vid && did == t->an_did) {
125                         struct an_softc *sc;
126
127                         sc = device_get_softc(dev);
128                         sc->port_rid = t->an_port_rid;
129                         if (vid == PCI_VENDOR_AIRONET &&
130                             did == PCI_PRODUCT_AIRONET_MPI350)
131                                 sc->mpi350 = 1;
132
133                         device_set_desc(dev, t->an_name);
134                         return(0);
135                 }
136         }
137         return(ENXIO);
138 }
139
140 static int
141 an_attach_pci(dev)
142         device_t                dev;
143 {
144         struct an_softc         *sc;
145         int                     flags, error;
146
147         sc = device_get_softc(dev);
148         flags = device_get_flags(dev);
149
150         error = an_alloc_port(dev, sc->port_rid, 1);
151         if (error) {
152                 device_printf(dev, "couldn't map ports\n");
153                 goto fail;
154         }
155
156         sc->an_btag = rman_get_bustag(sc->port_res);
157         sc->an_bhandle = rman_get_bushandle(sc->port_res);
158
159         /* Allocate memory for MPI350 */
160         if (sc->mpi350) {
161                 /* Allocate memory */
162                 sc->mem_rid = PCIR_MAPS + 4;
163                 error = an_alloc_memory(dev, sc->mem_rid, 1);
164                 if (error) {
165                         device_printf(dev, "couldn't map memory\n");
166                         goto fail;
167                 }
168                 sc->an_mem_btag = rman_get_bustag(sc->mem_res);
169                 sc->an_mem_bhandle = rman_get_bushandle(sc->mem_res);
170
171                 /* Allocate aux. memory */
172                 sc->mem_aux_rid = PCIR_MAPS + 8;
173                 error = an_alloc_aux_memory(dev, sc->mem_aux_rid, 
174                     AN_AUXMEMSIZE);
175                 if (error) {
176                         device_printf(dev, "couldn't map aux memory\n");
177                         goto fail;
178                 }
179                 sc->an_mem_aux_btag = rman_get_bustag(sc->mem_aux_res);
180                 sc->an_mem_aux_bhandle = rman_get_bushandle(sc->mem_aux_res);
181
182                 /* Allocate DMA region */
183                 error = bus_dma_tag_create(NULL,        /* parent */
184                                1, 0,                    /* alignment, bounds */
185                                BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
186                                BUS_SPACE_MAXADDR,       /* highaddr */
187                                NULL, NULL,              /* filter, filterarg */
188                                0x3ffff,                 /* maxsize XXX */
189                                1,                       /* nsegments */
190                                0xffff,                  /* maxsegsize XXX */
191                                BUS_DMA_ALLOCNOW,        /* flags */
192                                &sc->an_dtag);
193                 if (error) {
194                         device_printf(dev, "couldn't get DMA region\n");
195                         goto fail;
196                 }
197         }
198
199         /* Allocate interrupt */
200         error = an_alloc_irq(dev, 0, RF_SHAREABLE);
201         if (error)
202                 goto fail;
203
204         error = an_attach(sc, dev, flags);
205         if (error)
206                 goto fail;
207
208         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
209                                an_intr, sc, &sc->irq_handle, NULL);
210         if (error) {
211                 ifmedia_removeall(&sc->an_ifmedia);
212                 ether_ifdetach(&sc->arpcom.ac_if);
213                 goto fail;
214         }
215
216         return(0);
217
218 fail:
219         an_release_resources(dev);
220         return(error);
221 }
222
223 static int
224 an_suspend_pci(device_t dev)
225 {
226         an_shutdown(dev);
227         
228         return (0);
229 }
230
231 static int
232 an_resume_pci(device_t dev)
233 {
234         an_resume(dev);
235
236         return (0);
237 }
238
239 static device_method_t an_pci_methods[] = {
240         /* Device interface */
241         DEVMETHOD(device_probe,         an_probe_pci),
242         DEVMETHOD(device_attach,        an_attach_pci),
243         DEVMETHOD(device_detach,        an_detach),
244         DEVMETHOD(device_shutdown,      an_shutdown),
245         DEVMETHOD(device_suspend,       an_suspend_pci),
246         DEVMETHOD(device_resume,        an_resume_pci),
247         { 0, 0 }
248 };
249
250 static driver_t an_pci_driver = {
251         "an",
252         an_pci_methods,
253         sizeof(struct an_softc),
254 };
255
256 static devclass_t an_devclass;
257
258 DRIVER_MODULE(if_an, pci, an_pci_driver, an_devclass, 0, 0);