b7d9b7ea9667d8030d17fa8e3da1179206f0e93c
[dragonfly.git] / sys / dev / netif / awi / if_awi_pccard.c
1 /*
2  * Copyright (c) 2000 Atsushi Onoe <onoe@sm.sony.co.jp>
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/awi/if_awi_pccard.c,v 1.5.2.1 2000/12/07 04:09:39 imp Exp $
26  * $DragonFly: src/sys/dev/netif/awi/Attic/if_awi_pccard.c,v 1.6 2004/02/19 14:31:13 joerg Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <sys/socket.h>
33
34 #include <sys/module.h>
35 #include <sys/bus.h>
36
37 #include <machine/bus.h>
38 #include <machine/resource.h>
39 #include <sys/rman.h>
40  
41 #include <net/if.h> 
42 #include <net/if_arp.h>
43 #include <net/if_media.h>
44 #include <net/ethernet.h>
45 #include <net/if_ieee80211.h>
46
47 #include <machine/clock.h>
48
49 #include "am79c930reg.h"
50 #include "am79c930var.h"
51 #include "awireg.h"
52 #include "awivar.h"
53
54 #include <bus/pccard/pccardvar.h>
55 #include <bus/pccard/pccarddevs.h>
56 #include "card_if.h"
57
58 struct awi_pccard_softc {
59         struct awi_softc        sc_awi;
60
61         u_int8_t        sc_version[AWI_BANNER_LEN];
62         int             sc_intr_mask;
63         void            *sc_intrhand;
64         struct resource *sc_irq_res;
65         int             sc_irq_rid;
66         struct resource *sc_port_res;
67         int             sc_port_rid;
68         struct resource *sc_mem_res;
69         int             sc_mem_rid;
70 };
71
72 static const struct pccard_product awi_pccard_products[] = {
73         PCMCIA_CARD(AMD, AM79C930, 0),
74         PCMCIA_CARD(BAY, STACK_650, 0),
75         PCMCIA_CARD(BAY, STACK_660, 0),
76         PCMCIA_CARD(BAY, SURFER_PRO, 0),
77         PCMCIA_CARD(ICOM, SL200, 0),
78         PCMCIA_CARD(NOKIA, C020_WLAN, 0),
79         PCMCIA_CARD(FARALLON, SKYLINE, 0),
80         PCMCIA_CARD(ZOOM, AIR_4000, 0),
81         { NULL }
82 };
83
84 static int awi_pccard_match(device_t);
85 static int awi_pccard_probe(device_t);
86 static int awi_pccard_attach(device_t);
87 static int awi_pccard_detach(device_t);
88 static void awi_pccard_shutdown(device_t);
89 static int awi_pccard_enable(struct awi_softc *);
90 static void awi_pccard_disable(struct awi_softc *);
91
92 static int
93 awi_pccard_match(device_t dev)
94 {
95         const struct pccard_product *pp;
96
97         if ((pp = pccard_product_lookup(dev, awi_pccard_products,
98             sizeof(awi_pccard_products[0]), NULL)) != NULL) {
99                 if (pp->pp_name != NULL)
100                         device_set_desc(dev, pp->pp_name);
101                 return 0;
102         }
103         return ENXIO;
104 }
105
106 /*
107  * Initialize the device - called from Slot manager.
108  */
109 static int
110 awi_pccard_probe(device_t dev)
111 {
112         struct awi_pccard_softc *psc = device_get_softc(dev);
113         struct awi_softc *sc = &psc->sc_awi;
114         int error = 0;
115
116         psc->sc_port_rid = 0;
117         psc->sc_port_res = bus_alloc_resource(dev, SYS_RES_IOPORT,
118             &psc->sc_port_rid, 0, ~0, 16, RF_ACTIVE);
119         if (!psc->sc_port_res)
120                 return ENOMEM;
121
122         sc->sc_chip.sc_iot = rman_get_bustag(psc->sc_port_res);
123         sc->sc_chip.sc_ioh = rman_get_bushandle(psc->sc_port_res);
124         am79c930_chip_init(&sc->sc_chip, 0);
125         DELAY(1000); 
126
127         awi_read_bytes(sc, AWI_BANNER, psc->sc_version, AWI_BANNER_LEN);
128         if (memcmp(psc->sc_version, "PCnetMobile:", 12) != 0)  {
129                 device_printf(dev, "awi_pccard_probe: bad banner: %12D\n",
130                     psc->sc_version, " ");
131                 error = ENXIO;
132         } else
133                 device_set_desc(dev, psc->sc_version);
134         bus_release_resource(dev, SYS_RES_IOPORT, psc->sc_port_rid,
135             psc->sc_port_res);
136
137         return error;
138 }
139
140 static int
141 awi_pccard_attach(device_t dev)
142 {
143         struct awi_pccard_softc *psc = device_get_softc(dev);
144         struct awi_softc *sc = &psc->sc_awi;
145         struct ifnet *ifp = &sc->sc_ec.ac_if;
146         int error = 0;
147
148         psc->sc_port_res = 0;
149         psc->sc_irq_res = 0;
150         psc->sc_mem_res = 0;
151         psc->sc_intrhand = 0;
152
153         ifp->if_dname = device_get_name(dev);
154         if (ifp->if_dname == NULL) {
155                 printf("awi%d: awi_pccard_attach: cannot get device name\n",
156                     device_get_unit(dev));
157                 goto fail;
158         }
159         if_initname(ifp, ifp->if_dname, device_get_unit(dev));
160         strlcpy(sc->sc_dev.dv_xname, ifp->if_xname,
161             sizeof(sc->sc_dev.dv_xname));
162
163         psc->sc_port_rid = 0;
164         psc->sc_port_res = bus_alloc_resource(dev, SYS_RES_IOPORT,
165             &psc->sc_port_rid, 0, ~0, 16, RF_ACTIVE);
166         if (!psc->sc_port_res) {
167                 device_printf(dev, "awi_pccard_attach: port alloc failed\n");
168                 goto fail;
169         }
170         sc->sc_chip.sc_iot = rman_get_bustag(psc->sc_port_res);
171         sc->sc_chip.sc_ioh = rman_get_bushandle(psc->sc_port_res);
172
173         psc->sc_irq_rid = 0;
174         psc->sc_irq_res = bus_alloc_resource(dev, SYS_RES_IRQ,
175             &psc->sc_irq_rid, 0, ~0, 1, RF_ACTIVE);
176         if (!psc->sc_irq_res) {
177                 device_printf(dev, "awi_pccard_attach: irq alloc failed\n");
178                 goto fail;
179         }
180
181         psc->sc_mem_rid = 0;
182 #if 1
183         /*
184          * XXX: awi needs to access memory with 8bit,
185          * but pccardd apparently maps memory with MDF_16BITS flag.
186          * So memory mapped access is disabled and use IO port instead.
187          */
188         psc->sc_mem_res = 0;
189 #else
190         psc->sc_mem_res = bus_alloc_resource(dev, SYS_RES_MEMORY,
191             &psc->sc_mem_rid, 0, ~0, 0x8000, RF_ACTIVE);
192 #endif
193         if (psc->sc_mem_res) {
194                 sc->sc_chip.sc_memt = rman_get_bustag(psc->sc_mem_res);
195                 sc->sc_chip.sc_memh = rman_get_bushandle(psc->sc_mem_res);
196                 am79c930_chip_init(&sc->sc_chip, 1);
197         } else
198                 am79c930_chip_init(&sc->sc_chip, 0);
199
200         error = bus_setup_intr(dev, psc->sc_irq_res, INTR_TYPE_NET,
201             (void (*)(void *))awi_intr, sc, &psc->sc_intrhand);
202         if (error) {
203                 device_printf(dev, "awi_pccard_attach: intr setup failed\n");
204                 goto fail;
205         }
206
207         sc->sc_cansleep = 1;
208         sc->sc_enabled = 1;
209         sc->sc_ifp = &sc->sc_ec.ac_if;
210
211         error = awi_attach(sc);
212         sc->sc_enabled = 0;     /*XXX*/
213         if (error == 0)
214                 return 0;
215         device_printf(dev, "awi_pccard_attach: awi_attach failed\n");
216
217   fail:
218         if (psc->sc_intrhand) {
219                 bus_teardown_intr(dev, psc->sc_irq_res, psc->sc_intrhand);
220                 psc->sc_intrhand = 0;
221         }
222         if (psc->sc_port_res) {
223                 bus_release_resource(dev, SYS_RES_IOPORT, psc->sc_port_rid,
224                     psc->sc_port_res);
225                 psc->sc_port_res = 0;
226         }
227         if (psc->sc_irq_res) {
228                 bus_release_resource(dev, SYS_RES_IRQ, psc->sc_irq_rid,
229                     psc->sc_irq_res);
230                 psc->sc_irq_res = 0;
231         }
232         if (psc->sc_mem_res) {
233                 bus_release_resource(dev, SYS_RES_MEMORY, psc->sc_mem_rid,
234                     psc->sc_mem_res);
235                 psc->sc_mem_res = 0;
236         }
237         if (error == 0)
238                 error = ENXIO;
239         return error;
240 }
241
242 static int
243 awi_pccard_detach(device_t dev)
244 {
245         struct awi_pccard_softc *psc = device_get_softc(dev);
246         struct awi_softc *sc = &psc->sc_awi;
247         struct ifnet *ifp = &sc->sc_ec.ac_if;
248
249         ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
250         ifp->if_flags &= ~IFF_RUNNING; 
251         if (psc->sc_intrhand) {
252                 bus_teardown_intr(dev, psc->sc_irq_res, psc->sc_intrhand);
253                 psc->sc_intrhand = 0;
254         }
255         if (psc->sc_port_res) {
256                 bus_release_resource(dev, SYS_RES_IOPORT, psc->sc_port_rid,
257                     psc->sc_port_res);
258                 psc->sc_port_res = 0;
259         }
260         if (psc->sc_irq_res) {
261                 bus_release_resource(dev, SYS_RES_IRQ, psc->sc_irq_rid,
262                     psc->sc_irq_res);
263                 psc->sc_irq_res = 0;
264         }
265         if (psc->sc_mem_res) {
266                 bus_release_resource(dev, SYS_RES_MEMORY, psc->sc_mem_rid,
267                     psc->sc_mem_res);
268                 psc->sc_mem_res = 0;
269         }
270         return 0;
271 }
272
273 static device_method_t awi_pccard_methods[] = {
274         /* Device interface */
275         DEVMETHOD(device_probe,         pccard_compat_probe),
276         DEVMETHOD(device_attach,        pccard_compat_attach),
277         DEVMETHOD(device_detach,        awi_pccard_detach),
278
279         /* Card interface */
280         DEVMETHOD(card_compat_match,    awi_pccard_match),
281         DEVMETHOD(card_compat_probe,    awi_pccard_probe),
282         DEVMETHOD(card_compat_attach,   awi_pccard_attach),
283
284         { 0, 0 }
285 };
286
287 static driver_t awi_pccard_driver = {
288         "awi",
289         awi_pccard_methods,
290         sizeof(struct awi_pccard_softc),
291 };
292
293 extern devclass_t awi_devclass;
294
295 DRIVER_MODULE(if_awi, pccard, awi_pccard_driver, awi_devclass, 0, 0);