Merge from vendor branch OPENSSH:
[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.5 2004/02/19 15:48:26 joerg 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, &sc->nsp_intrhand);
228         if (error) {
229                 nsp_release_resource(dev);
230                 return(error);
231         }
232
233         if (nspattach(dev) == 0) {
234                 nsp_release_resource(dev);
235                 return(ENXIO);
236         }
237
238         return(0);
239 }
240
241 static  void
242 nsp_pccard_detach(DEVPORT_PDEVICE dev)
243 {
244         nsp_card_unload(dev);
245         nsp_release_resource(dev);
246 }
247
248 static device_method_t nsp_pccard_methods[] = {
249         /* Device interface */
250         DEVMETHOD(device_probe,         pccard_compat_probe),
251         DEVMETHOD(device_attach,        pccard_compat_attach),
252         DEVMETHOD(device_detach,        nsp_pccard_detach),
253
254         /* Card interface */
255         DEVMETHOD(card_compat_match,    nsp_pccard_match),
256         DEVMETHOD(card_compat_probe,    nsp_pccard_probe),
257         DEVMETHOD(card_compat_attach,   nsp_pccard_attach),
258
259         { 0, 0 }
260 };
261
262 static driver_t nsp_pccard_driver = {
263         "nsp",
264         nsp_pccard_methods,
265         sizeof(struct nsp_softc),
266 };
267
268 static devclass_t nsp_devclass;
269
270 MODULE_DEPEND(nsp, scsi_low, 1, 1, 1);
271 DRIVER_MODULE(nsp, pccard, nsp_pccard_driver, nsp_devclass, 0, 0);
272
273 static  void
274 nsp_card_unload(DEVPORT_PDEVICE devi)
275 {
276         struct nsp_softc *sc = DEVPORT_PDEVGET_SOFTC(devi);
277         intrmask_t s;
278
279         printf("%s: unload\n",sc->sc_sclow.sl_xname);
280         s = splcam();
281         scsi_low_deactivate((struct scsi_low_softc *)sc);
282         scsi_low_dettach(&sc->sc_sclow);
283         splx(s);
284 }
285
286 static  int
287 nspprobe(DEVPORT_PDEVICE devi)
288 {
289         int rv;
290         struct nsp_softc *sc = device_get_softc(devi);
291
292         rv = nspprobesubr(rman_get_bustag(sc->port_res),
293                           rman_get_bushandle(sc->port_res),
294                           DEVPORT_PDEVFLAGS(devi));
295
296         return rv;
297 }
298
299 static  int
300 nspattach(DEVPORT_PDEVICE devi)
301 {
302         struct nsp_softc *sc;
303         struct scsi_low_softc *slp;
304         u_int32_t flags = DEVPORT_PDEVFLAGS(devi);
305         u_int   iobase = DEVPORT_PDEVIOBASE(devi);
306         intrmask_t s;
307         char    dvname[16];
308
309         strcpy(dvname,"nsp");
310
311         if (iobase == 0)
312         {
313                 printf("%s: no ioaddr is given\n", dvname);
314                 return (0);
315         }
316
317         sc = DEVPORT_PDEVALLOC_SOFTC(devi);
318         if (sc == NULL) {
319                 return (0);
320         }
321
322         slp = &sc->sc_sclow;
323         slp->sl_dev = devi;
324         sc->sc_iot = rman_get_bustag(sc->port_res);
325         sc->sc_ioh = rman_get_bushandle(sc->port_res);
326
327         if((flags & PIO_MODE) == 0) {
328                 sc->sc_memt = rman_get_bustag(sc->mem_res);
329                 sc->sc_memh = rman_get_bushandle(sc->mem_res);
330         } else {
331                 sc->sc_memh = 0;
332         }
333         /* slp->sl_irq = devi->pd_irq; */
334         sc->sc_iclkdiv = CLKDIVR_20M;
335         sc->sc_clkdiv = CLKDIVR_40M;
336
337         slp->sl_hostid = NSP_HOSTID;
338         slp->sl_cfgflags = flags;
339
340         s = splcam();
341         nspattachsubr(sc);
342         splx(s);
343
344         return(NSP_IOSIZE);
345 }