Merge from vendor branch FILE:
[dragonfly.git] / sys / dev / disk / nsp / nsp_pccard.c
1 /*      $FreeBSD: src/sys/dev/nsp/nsp_pccard.c,v 1.2.2.6 2001/12/17 13:30:19 non Exp $  */
2 /*      $DragonFly: src/sys/dev/disk/nsp/nsp_pccard.c,v 1.6 2005/05/24 20:59:00 dillon Exp $    */
3 /*      $NecBSD: nsp_pisa.c,v 1.4 1999/04/15 01:35:54 kmatsuda Exp $    */
4 /*      $NetBSD$        */
5
6 /*
7  * [Ported for FreeBSD]
8  *  Copyright (c) 2000
9  *      Noriaki Mitsunaga, Mitsuru Iwasaki and Takanori Watanabe.
10  *      All rights reserved.
11  * [NetBSD for NEC PC-98 series]
12  *  Copyright (c) 1998
13  *      NetBSD/pc98 porting staff. All rights reserved.
14  * 
15  *  Redistribution and use in source and binary forms, with or without
16  *  modification, are permitted provided that the following conditions
17  *  are met:
18  *  1. Redistributions of source code must retain the above copyright
19  *     notice, this list of conditions and the following disclaimer.
20  *  2. Redistributions in binary form must reproduce the above copyright
21  *     notice, this list of conditions and the following disclaimer in the
22  *     documentation and/or other materials provided with the distribution.
23  *  3. The name of the author may not be used to endorse or promote products
24  *     derived from this software without specific prior written permission.
25  * 
26  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
30  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
34  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/disklabel.h>
42 #if defined(__FreeBSD__) && __FreeBSD_version >= 500001
43 #include <sys/bio.h>
44 #endif
45 #include <sys/buf.h>
46 #include <sys/queue.h>
47 #include <sys/malloc.h>
48 #include <sys/errno.h>
49
50 #include <vm/vm.h>
51
52 #include <machine/bus.h>
53 #include <machine/dvcfg.h>
54
55 #include <sys/device_port.h>
56
57 #include <bus/pccard/pccarddevs.h>
58 #include <bus/pccard/pccardvar.h>
59
60 #include <bus/cam/scsi/scsi_low.h>
61 #include <bus/cam/scsi/scsi_low_pisa.h>
62
63 #include "nspreg.h"
64 #include "nspvar.h"
65
66 #define NSP_HOSTID      7
67
68 #include        <sys/kernel.h>
69 #include        <sys/module.h>
70 #if !defined(__FreeBSD__) || __FreeBSD_version < 500014
71 #include        <sys/select.h>
72 #endif
73 #include        <bus/pccard/cardinfo.h>
74 #include        <bus/pccard/slot.h>
75
76 #define PIO_MODE 0x100          /* pd_flags */
77
78 static int nspprobe(DEVPORT_PDEVICE devi);
79 static int nspattach(DEVPORT_PDEVICE devi);
80
81 static  void    nsp_card_unload (DEVPORT_PDEVICE);
82
83 static const struct pccard_product nsp_products[] = {
84         PCMCIA_CARD(IODATA3, CBSC16, 0),
85         PCMCIA_CARD(PANASONIC, KME, 0),
86         PCMCIA_CARD(WORKBIT2, NINJA_SCSI3, 0),
87         PCMCIA_CARD(WORKBIT, ULTRA_NINJA_16, 0),
88         { NULL }
89 };
90
91 /*
92  * Additional code for FreeBSD new-bus PCCard frontend
93  */
94
95 static void
96 nsp_pccard_intr(void * arg)
97 {
98         nspintr(arg);
99 }
100
101 static void
102 nsp_release_resource(DEVPORT_PDEVICE dev)
103 {
104         struct nsp_softc        *sc = device_get_softc(dev);
105
106         if (sc->nsp_intrhand) {
107                 bus_teardown_intr(dev, sc->irq_res, sc->nsp_intrhand);
108         }
109
110         if (sc->port_res) {
111                 bus_release_resource(dev, SYS_RES_IOPORT,
112                                      sc->port_rid, sc->port_res);
113         }
114
115         if (sc->irq_res) {
116                 bus_release_resource(dev, SYS_RES_IRQ,
117                                      sc->irq_rid, sc->irq_res);
118         }
119
120         if (sc->mem_res) {
121                 bus_release_resource(dev, SYS_RES_MEMORY,
122                                      sc->mem_rid, sc->mem_res);
123         }
124 }
125
126 static int
127 nsp_alloc_resource(DEVPORT_PDEVICE dev)
128 {
129         struct nsp_softc        *sc = device_get_softc(dev);
130         u_long                  ioaddr, iosize, maddr, msize;
131         int                     error;
132
133         error = bus_get_resource(dev, SYS_RES_IOPORT, 0, &ioaddr, &iosize);
134         if (error || iosize < NSP_IOSIZE)
135                 return(ENOMEM);
136
137         sc->port_rid = 0;
138         sc->port_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &sc->port_rid,
139                                           0, ~0, NSP_IOSIZE, RF_ACTIVE);
140         if (sc->port_res == NULL) {
141                 nsp_release_resource(dev);
142                 return(ENOMEM);
143         }
144
145         sc->irq_rid = 0;
146         sc->irq_res = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->irq_rid,
147                                          0, ~0, 1, RF_ACTIVE);
148         if (sc->irq_res == NULL) {
149                 nsp_release_resource(dev);
150                 return(ENOMEM);
151         }
152
153         error = bus_get_resource(dev, SYS_RES_MEMORY, 0, &maddr, &msize);
154         if (error) {
155                 return(0);      /* XXX */
156         }
157
158         /* No need to allocate memory if not configured and it's in PIO mode */
159         if (maddr == 0 || msize == 0) {
160                 if ((DEVPORT_PDEVFLAGS(dev) & PIO_MODE) == 0) {
161                         printf("Memory window was not configured. Configure or use in PIO mode.");
162                         nsp_release_resource(dev);
163                         return(ENOMEM);
164                 }
165                 /* no need to allocate memory if PIO mode */
166                 return(0);
167         }
168
169         sc->mem_rid = 0;
170         sc->mem_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->mem_rid,
171                                          0, ~0, 1, RF_ACTIVE);
172         if (sc->mem_res == NULL) {
173                 nsp_release_resource(dev);
174                 return(ENOMEM);
175         }
176
177         return(0);
178 }
179
180 static int nsp_pccard_match(device_t dev)
181 {
182         const struct pccard_product *pp;
183
184         if ((pp = pccard_product_lookup(dev, nsp_products,
185             sizeof(nsp_products[0]), NULL)) != NULL) {
186                 device_set_desc(dev, pp->pp_name);
187                 return (0);
188         }
189         return (ENXIO);
190 }
191
192 static int
193 nsp_pccard_probe(DEVPORT_PDEVICE dev)
194 {
195         struct nsp_softc        *sc = device_get_softc(dev);
196         int                     error;
197
198         bzero(sc, sizeof(struct nsp_softc));
199
200         error = nsp_alloc_resource(dev);
201         if (error) {
202                 return(error);
203         }
204
205         if (nspprobe(dev) == 0) {
206                 nsp_release_resource(dev);
207                 return(ENXIO);
208         }
209
210         nsp_release_resource(dev);
211
212         return(0);
213 }
214
215 static int
216 nsp_pccard_attach(DEVPORT_PDEVICE dev)
217 {
218         struct nsp_softc        *sc = device_get_softc(dev);
219         int                     error;
220
221         error = nsp_alloc_resource(dev);
222         if (error) {
223                 return(error);
224         }
225
226         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_CAM,
227                                nsp_pccard_intr, (void *)sc,
228                                &sc->nsp_intrhand, NULL);
229         if (error) {
230                 nsp_release_resource(dev);
231                 return(error);
232         }
233
234         if (nspattach(dev) == 0) {
235                 nsp_release_resource(dev);
236                 return(ENXIO);
237         }
238
239         return(0);
240 }
241
242 static  void
243 nsp_pccard_detach(DEVPORT_PDEVICE dev)
244 {
245         nsp_card_unload(dev);
246         nsp_release_resource(dev);
247 }
248
249 static device_method_t nsp_pccard_methods[] = {
250         /* Device interface */
251         DEVMETHOD(device_probe,         pccard_compat_probe),
252         DEVMETHOD(device_attach,        pccard_compat_attach),
253         DEVMETHOD(device_detach,        nsp_pccard_detach),
254
255         /* Card interface */
256         DEVMETHOD(card_compat_match,    nsp_pccard_match),
257         DEVMETHOD(card_compat_probe,    nsp_pccard_probe),
258         DEVMETHOD(card_compat_attach,   nsp_pccard_attach),
259
260         { 0, 0 }
261 };
262
263 static driver_t nsp_pccard_driver = {
264         "nsp",
265         nsp_pccard_methods,
266         sizeof(struct nsp_softc),
267 };
268
269 static devclass_t nsp_devclass;
270
271 MODULE_DEPEND(nsp, scsi_low, 1, 1, 1);
272 DRIVER_MODULE(nsp, pccard, nsp_pccard_driver, nsp_devclass, 0, 0);
273
274 static  void
275 nsp_card_unload(DEVPORT_PDEVICE devi)
276 {
277         struct nsp_softc *sc = DEVPORT_PDEVGET_SOFTC(devi);
278         intrmask_t s;
279
280         printf("%s: unload\n",sc->sc_sclow.sl_xname);
281         s = splcam();
282         scsi_low_deactivate((struct scsi_low_softc *)sc);
283         scsi_low_dettach(&sc->sc_sclow);
284         splx(s);
285 }
286
287 static  int
288 nspprobe(DEVPORT_PDEVICE devi)
289 {
290         int rv;
291         struct nsp_softc *sc = device_get_softc(devi);
292
293         rv = nspprobesubr(rman_get_bustag(sc->port_res),
294                           rman_get_bushandle(sc->port_res),
295                           DEVPORT_PDEVFLAGS(devi));
296
297         return rv;
298 }
299
300 static  int
301 nspattach(DEVPORT_PDEVICE devi)
302 {
303         struct nsp_softc *sc;
304         struct scsi_low_softc *slp;
305         u_int32_t flags = DEVPORT_PDEVFLAGS(devi);
306         u_int   iobase = DEVPORT_PDEVIOBASE(devi);
307         intrmask_t s;
308         char    dvname[16];
309
310         strcpy(dvname,"nsp");
311
312         if (iobase == 0)
313         {
314                 printf("%s: no ioaddr is given\n", dvname);
315                 return (0);
316         }
317
318         sc = DEVPORT_PDEVALLOC_SOFTC(devi);
319         if (sc == NULL) {
320                 return (0);
321         }
322
323         slp = &sc->sc_sclow;
324         slp->sl_dev = devi;
325         sc->sc_iot = rman_get_bustag(sc->port_res);
326         sc->sc_ioh = rman_get_bushandle(sc->port_res);
327
328         if((flags & PIO_MODE) == 0) {
329                 sc->sc_memt = rman_get_bustag(sc->mem_res);
330                 sc->sc_memh = rman_get_bushandle(sc->mem_res);
331         } else {
332                 sc->sc_memh = 0;
333         }
334         /* slp->sl_irq = devi->pd_irq; */
335         sc->sc_iclkdiv = CLKDIVR_20M;
336         sc->sc_clkdiv = CLKDIVR_40M;
337
338         slp->sl_hostid = NSP_HOSTID;
339         slp->sl_cfgflags = flags;
340
341         s = splcam();
342         nspattachsubr(sc);
343         splx(s);
344
345         return(NSP_IOSIZE);
346 }