Do a major clean-up of the BUSDMA architecture. A large number of
[dragonfly.git] / sys / dev / disk / stg / tmc18c30_isa.c
1 /*      $FreeBSD: src/sys/dev/stg/tmc18c30_isa.c,v 1.2.2.4 2001/09/04 04:45:23 non Exp $        */
2 /*      $DragonFly: src/sys/dev/disk/stg/tmc18c30_isa.c,v 1.9 2006/10/25 20:55:54 dillon Exp $  */
3 /*      $NecBSD: tmc18c30_pisa.c,v 1.22 1998/11/26 01:59:21 honda 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) 1996, 1997, 1998
13 *       NetBSD/pc98 porting staff. All rights reserved.
14 *  Copyright (c) 1996, 1997, 1998
15 *       Naofumi HONDA. All rights reserved.
16 *  Copyright (c) 1996, 1997, 1998
17 *       Kouichi Matsuda. All rights reserved.
18
19 *  Redistribution and use in source and binary forms, with or without
20 *  modification, are permitted provided that the following conditions
21 *  are met:
22 *  1. Redistributions of source code must retain the above copyright
23 *     notice, this list of conditions and the following disclaimer.
24 *  2. Redistributions in binary form must reproduce the above copyright
25 *     notice, this list of conditions and the following disclaimer in the
26 *     documentation and/or other materials provided with the distribution.
27 *  3. The name of the author may not be used to endorse or promote products
28 *     derived from this software without specific prior written permission.
29
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
32 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
34 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
36 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
39 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGE.
41 */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/module.h>
47 #include <sys/bus.h>
48 #include <sys/disklabel.h>
49 #include <sys/buf.h>
50 #include <sys/queue.h>
51 #include <sys/malloc.h>
52 #include <sys/errno.h>
53 #include <sys/rman.h>
54 #include <sys/device_port.h>
55 #include <sys/thread2.h>
56
57 #include <vm/vm.h>
58
59 #include <bus/isa/isavar.h>
60
61 #include <machine/dvcfg.h>
62
63 #include <bus/cam/scsi/scsi_low.h>
64 #include <bus/isa/isa_common.h>
65 #include <bus/cam/scsi/scsi_low_pisa.h>
66
67 #include "tmc18c30reg.h"
68 #include "tmc18c30var.h"
69
70 #define STG_HOSTID      7
71
72 #include        <sys/kernel.h>
73 #include        <sys/module.h>
74
75 static  int     stgprobe(device_t devi);
76 static  int     stgattach(device_t devi);
77
78 static  void    stg_isa_unload  (device_t);
79
80 static void
81 stg_isa_intr(void * arg)
82 {
83         stgintr(arg);
84 }
85
86 static void
87 stg_release_resource(device_t dev)
88 {
89         struct stg_softc        *sc = device_get_softc(dev);
90
91         if (sc->stg_intrhand) {
92                 bus_teardown_intr(dev, sc->irq_res, sc->stg_intrhand);
93         }
94
95         if (sc->port_res) {
96                 bus_release_resource(dev, SYS_RES_IOPORT,
97                                      sc->port_rid, sc->port_res);
98         }
99
100         if (sc->irq_res) {
101                 bus_release_resource(dev, SYS_RES_IRQ,
102                                      sc->irq_rid, sc->irq_res);
103         }
104
105         if (sc->mem_res) {
106                 bus_release_resource(dev, SYS_RES_MEMORY,
107                                      sc->mem_rid, sc->mem_res);
108         }
109 }
110
111 static int
112 stg_alloc_resource(device_t dev)
113 {
114         struct stg_softc        *sc = device_get_softc(dev);
115         u_long                  maddr, msize;
116         int                     error;
117
118         sc->port_rid = 0;
119         sc->port_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &sc->port_rid,
120                                           0, ~0, STGIOSZ, RF_ACTIVE);
121         if (sc->port_res == NULL) {
122                 stg_release_resource(dev);
123                 return(ENOMEM);
124         }
125
126         sc->irq_rid = 0;
127         sc->irq_res = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->irq_rid,
128                                          0, ~0, 1, RF_ACTIVE);
129         if (sc->irq_res == NULL) {
130                 stg_release_resource(dev);
131                 return(ENOMEM);
132         }
133
134         error = bus_get_resource(dev, SYS_RES_MEMORY, 0, &maddr, &msize);
135         if (error) {
136                 return(0);      /* XXX */
137         }
138
139         /* no need to allocate memory if not configured */
140         if (maddr == 0 || msize == 0) {
141                 return(0);
142         }
143
144         sc->mem_rid = 0;
145         sc->mem_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->mem_rid,
146                                          0, ~0, 1, RF_ACTIVE);
147         if (sc->mem_res == NULL) {
148                 stg_release_resource(dev);
149                 return(ENOMEM);
150         }
151
152         return(0);
153 }
154
155 static int
156 stg_isa_probe(device_t dev)
157 {
158         struct stg_softc        *sc = device_get_softc(dev);
159         int                     error;
160
161         bzero(sc, sizeof(struct stg_softc));
162
163         error = stg_alloc_resource(dev);
164         if (error) {
165                 return(error);
166         }
167
168         if (stgprobe(dev) == 0) {
169                 stg_release_resource(dev);
170                 return(ENXIO);
171         }
172
173         stg_release_resource(dev);
174
175         return(0);
176 }
177
178 static int
179 stg_isa_attach(device_t dev)
180 {
181         struct stg_softc        *sc = device_get_softc(dev);
182         int                     error;
183
184         error = stg_alloc_resource(dev);
185         if (error) {
186                 return(error);
187         }
188
189         error = bus_setup_intr(dev, sc->irq_res, 0,
190                                stg_isa_intr, (void *)sc,
191                                &sc->stg_intrhand, NULL);
192         if (error) {
193                 stg_release_resource(dev);
194                 return(error);
195         }
196
197         if (stgattach(dev) == 0) {
198                 stg_release_resource(dev);
199                 return(ENXIO);
200         }
201
202         return(0);
203 }
204
205 static  void
206 stg_isa_detach(device_t dev)
207 {
208         stg_isa_unload(dev);
209         stg_release_resource(dev);
210 }
211
212 static device_method_t stg_isa_methods[] = {
213         /* Device interface */
214         DEVMETHOD(device_probe,         stg_isa_probe),
215         DEVMETHOD(device_attach,        stg_isa_attach),
216         DEVMETHOD(device_detach,        stg_isa_detach),
217
218         { 0, 0 }
219 };
220
221 static driver_t stg_isa_driver = {
222         "stg",
223         stg_isa_methods,
224         sizeof(struct stg_softc),
225 };
226
227 static devclass_t stg_devclass;
228
229 DRIVER_MODULE(stg, isa, stg_isa_driver, stg_devclass, 0, 0);
230
231 static  void
232 stg_isa_unload(device_t devi)
233 {
234         struct stg_softc *sc = device_get_softc(devi);
235
236         printf("%s: unload\n",sc->sc_sclow.sl_xname);
237         crit_enter();
238         scsi_low_deactivate((struct scsi_low_softc *)sc);
239         scsi_low_dettach(&sc->sc_sclow);
240         crit_exit();
241 }
242
243 static  int
244 stgprobe(device_t devi)
245 {
246         int rv;
247         struct stg_softc *sc = device_get_softc(devi);
248
249         rv = stgprobesubr(rman_get_bustag(sc->port_res),
250                           rman_get_bushandle(sc->port_res),
251                           device_get_flags(devi));
252
253         return rv;
254 }
255
256 static  int
257 stgattach(device_t devi)
258 {
259         struct stg_softc *sc;
260         struct scsi_low_softc *slp;
261         u_int32_t flags = device_get_flags(devi);
262         u_int iobase = bus_get_resource_start(devi, SYS_RES_IOPORT, 0);
263         char    dvname[16];
264
265         strcpy(dvname,"stg");
266
267
268         if (iobase == 0)
269         {
270                 printf("%s: no ioaddr is given\n", dvname);
271                 return (0);
272         }
273
274         sc = device_get_softc(devi);
275         if (sc == NULL) {
276                 return(0);
277         }
278
279         slp = &sc->sc_sclow;
280         slp->sl_dev = devi;
281         sc->sc_iot = rman_get_bustag(sc->port_res);
282         sc->sc_ioh = rman_get_bushandle(sc->port_res);
283
284         slp->sl_hostid = STG_HOSTID;
285         slp->sl_cfgflags = flags;
286
287         crit_enter();
288         stgattachsubr(sc);
289         crit_exit();
290
291         return(STGIOSZ);
292 }