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