]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/nsp/nsp_pccard.c
MFV r328255: 8972 zfs holds: In scripted mode, do not pad columns with spaces
[FreeBSD/FreeBSD.git] / sys / dev / nsp / nsp_pccard.c
1 /*      $NecBSD: nsp_pisa.c,v 1.4 1999/04/15 01:35:54 kmatsuda Exp $    */
2 /*      $NetBSD$        */
3
4 /*-
5  * SPDX-License-Identifier: BSD-3-Clause
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/cdefs.h>
40 __FBSDID("$FreeBSD$");
41
42 #include <sys/param.h>
43 #include <sys/bus.h>
44 #include <sys/errno.h>
45 #include <sys/kernel.h>
46 #include <sys/malloc.h>
47 #include <sys/module.h>
48 #include <sys/systm.h>
49
50 #include <machine/bus.h>
51 #include <machine/resource.h>
52 #include <sys/rman.h>
53
54 #include <sys/bus.h>
55
56 #include <dev/pccard/pccardvar.h>
57
58 #include <cam/scsi/scsi_low.h>
59
60 #include <dev/nsp/nspreg.h>
61 #include <dev/nsp/nspvar.h>
62
63 #define NSP_HOSTID      7
64
65 #include "pccarddevs.h"
66
67 #define PIO_MODE 0x100          /* pd_flags */
68
69 static int nspprobe(device_t devi);
70 static int nspattach(device_t devi);
71
72 static  void    nsp_card_unload (device_t);
73
74 const struct pccard_product nsp_products[] = {
75         PCMCIA_CARD(IODATA3, CBSC16),
76         PCMCIA_CARD(PANASONIC, KME),
77         PCMCIA_CARD(WORKBIT2, NINJA_SCSI3),
78         PCMCIA_CARD(WORKBIT, ULTRA_NINJA_16),
79         { NULL }
80 };
81
82 /*
83  * Additional code for FreeBSD new-bus PC Card frontend
84  */
85
86 static void
87 nsp_pccard_intr(void * arg)
88 {
89         struct nsp_softc *sc;
90
91         sc = arg;
92         SCSI_LOW_LOCK(&sc->sc_sclow);
93         nspintr(sc);
94         SCSI_LOW_UNLOCK(&sc->sc_sclow);
95 }
96
97 static void
98 nsp_release_resource(device_t dev)
99 {
100         struct nsp_softc        *sc = device_get_softc(dev);
101
102         if (sc->nsp_intrhand)
103                 bus_teardown_intr(dev, sc->irq_res, sc->nsp_intrhand);
104         if (sc->port_res)
105                 bus_release_resource(dev, SYS_RES_IOPORT,
106                                      sc->port_rid, sc->port_res);
107         if (sc->irq_res)
108                 bus_release_resource(dev, SYS_RES_IRQ,
109                                      sc->irq_rid, sc->irq_res);
110         if (sc->mem_res)
111                 bus_release_resource(dev, SYS_RES_MEMORY,
112                                      sc->mem_rid, sc->mem_res);
113         mtx_destroy(&sc->sc_sclow.sl_lock);
114 }
115
116 static int
117 nsp_alloc_resource(device_t dev)
118 {
119         struct nsp_softc        *sc = device_get_softc(dev);
120         rman_res_t              ioaddr, iosize, maddr, msize;
121         int                     error;
122
123         error = bus_get_resource(dev, SYS_RES_IOPORT, 0, &ioaddr, &iosize);
124         if (error || iosize < NSP_IOSIZE)
125                 return(ENOMEM);
126
127         mtx_init(&sc->sc_sclow.sl_lock, "nsp", NULL, MTX_DEF);
128         sc->port_rid = 0;
129         sc->port_res = bus_alloc_resource_anywhere(dev, SYS_RES_IOPORT,
130                                                    &sc->port_rid, NSP_IOSIZE,
131                                                    RF_ACTIVE);
132         if (sc->port_res == NULL) {
133                 nsp_release_resource(dev);
134                 return(ENOMEM);
135         }
136
137         sc->irq_rid = 0;
138         sc->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->irq_rid,
139                                              RF_ACTIVE);
140         if (sc->irq_res == NULL) {
141                 nsp_release_resource(dev);
142                 return(ENOMEM);
143         }
144
145         error = bus_get_resource(dev, SYS_RES_MEMORY, 0, &maddr, &msize);
146         if (error)
147                 return(0);      /* XXX */
148
149         /* No need to allocate memory if not configured and it's in PIO mode */
150         if (maddr == 0 || msize == 0) {
151                 if ((device_get_flags(dev) & PIO_MODE) == 0) {
152                         printf("Memory window was not configured. Configure or use in PIO mode.");
153                         nsp_release_resource(dev);
154                         return(ENOMEM);
155                 }
156                 /* no need to allocate memory if PIO mode */
157                 return(0);
158         }
159
160         sc->mem_rid = 0;
161         sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->mem_rid,
162                                              RF_ACTIVE);
163         if (sc->mem_res == NULL) {
164                 nsp_release_resource(dev);
165                 return(ENOMEM);
166         }
167
168         return(0);
169 }
170
171 static int
172 nsp_pccard_probe(device_t dev)
173 {
174         const struct pccard_product *pp;
175
176         if ((pp = pccard_product_lookup(dev, nsp_products,
177             sizeof(nsp_products[0]), NULL)) != NULL) {
178                 if (pp->pp_name)
179                         device_set_desc(dev, pp->pp_name);
180                 return (BUS_PROBE_DEFAULT);
181         }
182         return(EIO);
183 }
184
185 static int
186 nsp_pccard_attach(device_t dev)
187 {
188         struct nsp_softc        *sc = device_get_softc(dev);
189         int                     error;
190
191         error = nsp_alloc_resource(dev);
192         if (error)
193                 return(error);
194         if (nspprobe(dev) == 0) {
195                 nsp_release_resource(dev);
196                 return(ENXIO);
197         }
198         error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_CAM | INTR_ENTROPY |
199             INTR_MPSAFE, NULL, nsp_pccard_intr, sc, &sc->nsp_intrhand);
200         if (error) {
201                 nsp_release_resource(dev);
202                 return(error);
203         }
204         if (nspattach(dev) == 0) {
205                 nsp_release_resource(dev);
206                 return(ENXIO);
207         }
208
209         return(0);
210 }
211
212 static int
213 nsp_pccard_detach(device_t dev)
214 {
215         nsp_card_unload(dev);
216         nsp_release_resource(dev);
217
218         return (0);
219 }
220
221 static device_method_t nsp_pccard_methods[] = {
222         /* Device interface */
223         DEVMETHOD(device_probe,         nsp_pccard_probe),
224         DEVMETHOD(device_attach,        nsp_pccard_attach),
225         DEVMETHOD(device_detach,        nsp_pccard_detach),
226         { 0, 0 }
227 };
228
229 static driver_t nsp_pccard_driver = {
230         "nsp",
231         nsp_pccard_methods,
232         sizeof(struct nsp_softc),
233 };
234
235 static devclass_t nsp_devclass;
236
237 MODULE_DEPEND(nsp, scsi_low, 1, 1, 1);
238 DRIVER_MODULE(nsp, pccard, nsp_pccard_driver, nsp_devclass, 0, 0);
239 PCCARD_PNP_INFO(nsp_products);
240
241 static void
242 nsp_card_unload(device_t devi)
243 {
244         struct nsp_softc *sc = device_get_softc(devi);
245
246         scsi_low_deactivate(&sc->sc_sclow);
247         scsi_low_detach(&sc->sc_sclow);
248 }
249
250 static  int
251 nspprobe(device_t devi)
252 {
253         int rv;
254         struct nsp_softc *sc = device_get_softc(devi);
255
256         rv = nspprobesubr(sc->port_res,
257                           device_get_flags(devi));
258
259         return rv;
260 }
261
262 static  int
263 nspattach(device_t devi)
264 {
265         struct nsp_softc *sc;
266         struct scsi_low_softc *slp;
267         u_int32_t flags = device_get_flags(devi);
268         u_int   iobase = bus_get_resource_start(devi, SYS_RES_IOPORT, 0);
269
270         if (iobase == 0) {
271                 device_printf(devi, "no ioaddr is given\n");
272                 return (ENXIO);
273         }
274
275         sc = device_get_softc(devi);
276         slp = &sc->sc_sclow;
277         slp->sl_dev = devi;
278
279         if (sc->mem_res == NULL) {
280                 device_printf(devi,
281                     "WARNING: CANNOT GET Memory RESOURCE going PIO mode\n");
282                 flags |= PIO_MODE;
283         }
284
285         /* slp->sl_irq = devi->pd_irq; */
286         sc->sc_iclkdiv = CLKDIVR_20M;
287         sc->sc_clkdiv = CLKDIVR_40M;
288
289         slp->sl_hostid = NSP_HOSTID;
290         slp->sl_cfgflags = flags;
291
292         nspattachsubr(sc);
293
294         return(NSP_IOSIZE);
295 }