Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / netif / cs / if_cs_pccard.c
1 /*
2  * Copyright (c) 1999 M. Warner Losh <imp@village.org> 
3  * 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  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD: src/sys/dev/cs/if_cs_pccard.c,v 1.1.2.1 2001/01/25 20:13:48 imp Exp $
26  */
27
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/kernel.h>
31 #include <sys/socket.h>
32
33 #include <sys/module.h>
34 #include <sys/bus.h>
35
36 #include <machine/bus.h>
37 #include <machine/resource.h>
38  
39 #include <net/ethernet.h> 
40 #include <net/if.h> 
41 #include <net/if_arp.h>
42
43 #include <dev/cs/if_csvar.h>
44 #include <dev/pccard/pccardvar.h>
45
46 #include "card_if.h"
47
48 static int
49 cs_pccard_probe(device_t dev)
50 {
51         int error;
52
53         error = cs_cs89x0_probe(dev);
54         cs_release_resources(dev);
55         return (error);
56 }
57
58 static int
59 cs_pccard_attach(device_t dev)
60 {
61         struct cs_softc *sc = device_get_softc(dev);
62         int flags = device_get_flags(dev);
63         int error;
64         
65         if (sc->port_used > 0)
66                 cs_alloc_port(dev, sc->port_rid, sc->port_used);
67         if (sc->mem_used)
68                 cs_alloc_memory(dev, sc->mem_rid, sc->mem_used);
69         error = cs_alloc_irq(dev, sc->irq_rid, 0);
70         if (error != 0)
71                 goto bad;
72                 
73         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
74             csintr, sc, &sc->irq_handle);
75         if (error != 0)
76                 goto bad;
77
78         return (cs_attach(sc, device_get_unit(dev), flags));
79 bad:
80         cs_release_resources(dev);
81         return (error);
82 }
83
84 static device_method_t cs_pccard_methods[] = {
85         /* Device interface */
86         DEVMETHOD(device_probe,         cs_pccard_probe),
87         DEVMETHOD(device_attach,        cs_pccard_attach),
88 #ifdef CS_HAS_DETACH
89         DEVMETHOD(device_detach,        cs_detach),
90 #endif
91         { 0, 0 }
92 };
93
94 static driver_t cs_pccard_driver = {
95         "cs",
96         cs_pccard_methods,
97         sizeof(struct cs_softc),
98 };
99
100 extern devclass_t cs_devclass;
101
102 DRIVER_MODULE(if_cs, pccard, cs_pccard_driver, cs_devclass, 0, 0);
103 MODULE_DEPEND(if_cs, pccard, 1, 1, 1);