Perform the following cleanup in sys/dev/netif:
[dragonfly.git] / sys / dev / netif / ndis / if_ndis_pci.c
1 /*
2  * Copyright (c) 2003
3  *      Bill Paul <wpaul@windriver.com>.  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/if_ndis/if_ndis_pci.c,v 1.7 2004/07/11 00:19:30 wpaul Exp $
33  * $DragonFly: src/sys/dev/netif/ndis/if_ndis_pci.c,v 1.4 2006/08/06 12:49:05 swildner Exp $
34  */
35
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/kernel.h>
39 #include <sys/proc.h>
40 #include <sys/module.h>
41 #include <sys/socket.h>
42 #include <sys/queue.h>
43 #include <sys/sysctl.h>
44
45 #include <net/if.h>
46 #include <net/if_arp.h>
47 #include <net/if_media.h>
48
49 #include <machine/bus.h>
50 #include <machine/resource.h>
51 #include <sys/bus.h>
52 #include <sys/rman.h>
53
54 #include <netproto/802_11/ieee80211_var.h>
55
56 #include <bus/pci/pcireg.h>
57 #include <bus/pci/pcivar.h>
58
59 #include <emulation/ndis/regcall.h>
60 #include <emulation/ndis/pe_var.h>
61 #include <emulation/ndis/resource_var.h>
62 #include <emulation/ndis/ntoskrnl_var.h>
63 #include <emulation/ndis/ndis_var.h>
64 #include <emulation/ndis/cfg_var.h>
65 #include "if_ndisvar.h"
66
67 #include "ndis_driver_data.h"
68
69 #ifdef NDIS_PCI_DEV_TABLE 
70
71 MODULE_DEPEND(ndis, pci, 1, 1, 1);
72 MODULE_DEPEND(ndis, wlan, 1, 1, 1);
73 MODULE_DEPEND(ndis, ndisapi, 1, 1, 1);
74
75 /*
76  * Various supported device vendors/types and their names.
77  * These are defined in the ndis_driver_data.h file.
78  */
79 static struct ndis_pci_type ndis_devs[] = {
80 #ifdef NDIS_PCI_DEV_TABLE
81         NDIS_PCI_DEV_TABLE
82 #endif
83         { 0, 0, 0, NULL }
84 };
85
86 static int ndis_probe_pci       (device_t);
87 static int ndis_attach_pci      (device_t);
88 static struct resource_list *ndis_get_resource_list
89                                 (device_t, device_t);
90 extern int ndis_attach          (device_t);
91 extern int ndis_shutdown        (device_t);
92 extern int ndis_detach          (device_t);
93 extern int ndis_suspend         (device_t);
94 extern int ndis_resume          (device_t);
95
96 static device_method_t ndis_methods[] = {
97         /* Device interface */
98         DEVMETHOD(device_probe,         ndis_probe_pci),
99         DEVMETHOD(device_attach,        ndis_attach_pci),
100         DEVMETHOD(device_detach,        ndis_detach),
101         DEVMETHOD(device_shutdown,      ndis_shutdown),
102         DEVMETHOD(device_suspend,       ndis_suspend),
103         DEVMETHOD(device_resume,        ndis_resume),
104
105         /* Bus interface */
106         DEVMETHOD(bus_get_resource_list, ndis_get_resource_list),
107
108         { 0, 0 }
109 };
110
111 static driver_t ndis_driver = {
112 #ifdef NDIS_DEVNAME
113         NDIS_DEVNAME,
114 #else
115         "ndis",
116 #endif
117         ndis_methods,
118         sizeof(struct ndis_softc)
119 };
120
121 static devclass_t ndis_devclass;
122
123 #ifdef NDIS_MODNAME
124 #define NDIS_MODNAME_OVERRIDE_PCI(x)                                    \
125         DRIVER_MODULE(x, pci, ndis_driver, ndis_devclass, 0, 0)
126 #define NDIS_MODNAME_OVERRIDE_CARDBUS(x)                                \
127         DRIVER_MODULE(x, cardbus, ndis_driver, ndis_devclass, 0, 0)
128 NDIS_MODNAME_OVERRIDE_PCI(NDIS_MODNAME);
129 NDIS_MODNAME_OVERRIDE_CARDBUS(NDIS_MODNAME);
130 #else
131 DRIVER_MODULE(ndis, pci, ndis_driver, ndis_devclass, 0, 0);
132 DRIVER_MODULE(ndis, cardbus, ndis_driver, ndis_devclass, 0, 0);
133 #endif
134
135 /*
136  * Probe for an NDIS device. Check the PCI vendor and device
137  * IDs against our list and return a device name if we find a match.
138  */
139 static int
140 ndis_probe_pci(device_t dev)
141 {
142         struct ndis_pci_type    *t;
143
144         t = ndis_devs;
145
146         while(t->ndis_name != NULL) {
147                 if ((pci_get_vendor(dev) == t->ndis_vid) &&
148                     (pci_get_device(dev) == t->ndis_did) &&
149                     ((pci_read_config(dev, PCIR_SUBVEND_0, 4) ==
150                     t->ndis_subsys) || t->ndis_subsys == 0)) {
151                         device_set_desc(dev, t->ndis_name);
152                         return(0);
153                 }
154                 t++;
155         }
156
157         return(ENXIO);
158 }
159
160 /*
161  * Attach the interface. Allocate softc structures, do ifmedia
162  * setup and ethernet/BPF attach.
163  */
164 static int
165 ndis_attach_pci(device_t dev)
166 {
167         struct ndis_softc       *sc;
168         int                     unit, error = 0, rid;
169         struct ndis_pci_type    *t;
170         int                     devidx = 0, defidx = 0;
171         struct resource_list    *rl;
172         struct resource_list_entry      *rle;
173
174         sc = device_get_softc(dev);
175         unit = device_get_unit(dev);
176         sc->ndis_dev = dev;
177
178         /*
179          * Map control/status registers.
180          */
181
182         pci_enable_busmaster(dev);
183
184         rl = BUS_GET_RESOURCE_LIST(device_get_parent(dev), dev);
185         if (rl != NULL) {
186                 SLIST_FOREACH(rle, rl, link) {
187                         switch (rle->type) {
188                         case SYS_RES_IOPORT:
189                                 sc->ndis_io_rid = rle->rid;
190                                 sc->ndis_res_io = bus_alloc_resource_any(dev,
191                                     SYS_RES_IOPORT, &sc->ndis_io_rid,
192                                     RF_ACTIVE);
193                                 if (sc->ndis_res_io == NULL) {
194                                         device_printf(dev,
195                                             "couldn't map iospace\n");
196                                         error = ENXIO;
197                                         goto fail;
198                                 }
199                                 break;
200                         case SYS_RES_MEMORY:
201                                 if (sc->ndis_res_altmem != NULL &&
202                                     sc->ndis_res_mem != NULL) {
203                                         device_printf(dev,
204                                             "too many memory resources\n");
205                                         error = ENXIO;
206                                         goto fail;
207                                 }
208                                 if (rle->rid == PCIR_BAR(2)) {
209                                         sc->ndis_altmem_rid = rle->rid;
210                                         sc->ndis_res_altmem =
211                                             bus_alloc_resource_any(dev,
212                                                 SYS_RES_MEMORY,
213                                                 &sc->ndis_altmem_rid,
214                                                 RF_ACTIVE);
215                                         if (sc->ndis_res_altmem == NULL) {
216                                                 device_printf(dev,
217                                                     "couldn't map alt "
218                                                     "memory\n");
219                                                 error = ENXIO;
220                                                 goto fail;
221                                         }
222                                 } else {
223                                         sc->ndis_mem_rid = rle->rid;
224                                         sc->ndis_res_mem =
225                                             bus_alloc_resource_any(dev,
226                                                 SYS_RES_MEMORY,
227                                                 &sc->ndis_mem_rid,
228                                                 RF_ACTIVE);
229                                         if (sc->ndis_res_mem == NULL) {
230                                                 device_printf(dev,
231                                                     "couldn't map memory\n");
232                                                 error = ENXIO;
233                                                 goto fail;
234                                         }
235                                 }
236                                 break;
237                         case SYS_RES_IRQ:
238                                 rid = rle->rid;
239                                 sc->ndis_irq = bus_alloc_resource_any(dev,
240                                     SYS_RES_IRQ, &rid,
241                                     RF_SHAREABLE | RF_ACTIVE);
242                                 if (sc->ndis_irq == NULL) {
243                                         device_printf(dev,
244                                             "couldn't map interrupt\n");
245                                         error = ENXIO;
246                                         goto fail;
247                                 }
248                                 break;
249                         default:
250                                 break;
251                         }
252                         sc->ndis_rescnt++;
253                 }
254         }
255
256         /*
257          * If the BIOS did not set up an interrupt for this device,
258          * the resource traversal code above will fail to set up
259          * an IRQ resource. This is usually a bad thing, so try to
260          * force the allocation of an interrupt here. If one was
261          * not assigned to us by the BIOS, bus_alloc_resource()
262          * should route one for us.
263          */
264         if (sc->ndis_irq == NULL) {
265                 rid = 0;
266                 sc->ndis_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
267                     &rid, RF_SHAREABLE | RF_ACTIVE);
268                 if (sc->ndis_irq == NULL) {
269                         device_printf(dev, "couldn't route interrupt\n");
270                         error = ENXIO;
271                         goto fail;
272                 }
273                 sc->ndis_rescnt++;
274         }
275
276         /*
277          * Allocate the parent bus DMA tag appropriate for PCI.
278          */
279 #define NDIS_NSEG_NEW 32
280         error = bus_dma_tag_create(NULL,        /* parent */
281                         1, 0,                   /* alignment, boundary */
282                         BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
283                         BUS_SPACE_MAXADDR,      /* highaddr */
284                         NULL, NULL,             /* filter, filterarg */
285                         MAXBSIZE, NDIS_NSEG_NEW,/* maxsize, nsegments */
286                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
287                         BUS_DMA_ALLOCNOW,       /* flags */
288                         &sc->ndis_parent_tag);
289
290         if (error)
291                 goto fail;
292
293         sc->ndis_iftype = PCIBus;
294
295         /* Figure out exactly which device we matched. */
296
297         t = ndis_devs;
298
299         while(t->ndis_name != NULL) {
300                 if ((pci_get_vendor(dev) == t->ndis_vid) &&
301                     (pci_get_device(dev) == t->ndis_did)) {
302                         if (t->ndis_subsys == 0)
303                                 defidx = devidx;
304                         else {
305                                 if (t->ndis_subsys ==
306                                     pci_read_config(dev, PCIR_SUBVEND_0, 4))
307                                         break;
308                         }
309                 }
310                 t++;
311                 devidx++;
312         }
313
314         if (ndis_devs[devidx].ndis_name == NULL)
315                 sc->ndis_devidx = defidx;
316         else
317                 sc->ndis_devidx = devidx;
318
319         error = ndis_attach(dev);
320
321 fail:
322         return(error);
323 }
324
325 static struct resource_list *
326 ndis_get_resource_list(device_t dev, device_t child)
327 {
328         struct ndis_softc       *sc;
329
330         sc = device_get_softc(dev);
331         return (BUS_GET_RESOURCE_LIST(device_get_parent(sc->ndis_dev), dev));
332 }
333
334 #endif /* NDIS_PCI_DEV_TABLE */