]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/dpt/dpt_isa.c
This commit was generated by cvs2svn to compensate for changes in r146539,
[FreeBSD/FreeBSD.git] / sys / dev / dpt / dpt_isa.c
1 /*-
2  * Copyright (c) 2000 Matthew N. Dodd <winter@jurai.net>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/module.h>
35 #include <sys/bus.h>
36
37 #include <machine/bus_pio.h>
38 #include <machine/bus.h>
39 #include <machine/resource.h>
40 #include <sys/rman.h>
41
42 #include <isa/isavar.h>
43
44 #include <cam/scsi/scsi_all.h>
45
46 #include <dev/dpt/dpt.h>
47
48 #ifdef notyet
49 static void     dpt_isa_identify        (driver_t *, device_t);
50 #endif
51 static int      dpt_isa_probe           (device_t);
52 static int      dpt_isa_attach          (device_t);
53 static int      dpt_isa_detach          (device_t);
54
55 static int      dpt_isa_valid_irq       (int);
56 static int      dpt_isa_valid_ioport    (int);
57
58 static int
59 dpt_isa_valid_irq (int irq)
60 {
61         switch (irq) {
62                 case 11:
63                 case 12:
64                 case 14:
65                 case 15:
66                         return (0);
67                 default:
68                         return (1);
69         };
70         return (1);
71 }
72
73 static int
74 dpt_isa_valid_ioport (int ioport)
75 {
76         switch (ioport) {
77                 case 0x170:
78                 case 0x1f0:
79                 case 0x230:
80                 case 0x330:
81                         return (0);
82                 default:
83                         return (1);
84         };
85         return (1);
86 }
87
88 #ifdef notyet
89 static void
90 dpt_isa_identify (driver_t *driver, device_t parent)
91 {
92         device_t        child;
93         dpt_conf_t *    conf;
94         int             isa_bases[] = { 0x1f0, 0x170, 0x330, 0x230, 0 };
95         int             i;
96
97         for (i = 0; isa_bases[i]; i++) {
98                 conf = dpt_pio_get_conf(isa_bases[i]);
99                 if (!conf) {
100                         if (bootverbose)
101                                 device_printf(parent, "dpt: dpt_pio_get_conf(%x) failed.\n",
102                                         isa_bases[i]);
103                         continue;
104                 }
105
106                 child = BUS_ADD_CHILD(parent, ISA_ORDER_SPECULATIVE, "dpt", -1);
107                 if (child == 0) {
108                         device_printf(parent, "dpt: BUS_ADD_CHILD() failed!\n");
109                         continue;
110                 }
111                 device_set_driver(child, driver);
112                 bus_set_resource(child, SYS_RES_IOPORT, 0, isa_bases[i], 0x9);
113         }
114         return;
115 }
116 #endif
117
118 static int
119 dpt_isa_probe (device_t dev)
120 {
121         dpt_conf_t *    conf;
122         u_int32_t       io_base;
123
124         /* No pnp support */
125         if (isa_get_vendorid(dev))
126                 return (ENXIO);
127
128         if ((io_base = bus_get_resource_start(dev, SYS_RES_IOPORT, 0)) == 0)
129                 return (ENXIO);
130
131         if (dpt_isa_valid_ioport(io_base))
132                 ;
133
134         conf = dpt_pio_get_conf(io_base);
135         if (!conf) {
136                 printf("dpt: dpt_pio_get_conf() failed.\n");
137                 return (ENXIO);
138         }
139
140         if (dpt_isa_valid_irq(conf->IRQ))
141                 ;
142
143         device_set_desc(dev, "ISA DPT SCSI controller");
144         bus_set_resource(dev, SYS_RES_IRQ, 0, conf->IRQ, 1);
145         bus_set_resource(dev, SYS_RES_DRQ, 0, ((8 - conf->DMA_channel) & 7), 1);
146
147         return 0;
148 }
149
150 static int
151 dpt_isa_attach (device_t dev)
152 {
153         dpt_softc_t *   dpt;
154         int             s;
155         int             error = 0;
156
157         dpt = device_get_softc(dev);
158
159
160         dpt->io_rid = 0;
161         dpt->io_type = SYS_RES_IOPORT;
162         dpt->irq_rid = 0;
163
164         error = dpt_alloc_resources(dev);
165         if (error) {
166                 goto bad;
167         }
168
169         dpt->drq_rid = 0;
170         dpt->drq_res = bus_alloc_resource_any(dev, SYS_RES_DRQ, &dpt->drq_rid,
171                                         RF_ACTIVE);
172         if (!dpt->drq_res) {
173                 device_printf(dev, "No DRQ!\n");
174                 error = ENOMEM;
175                 goto bad;
176         }
177         isa_dma_acquire(rman_get_start(dpt->drq_res));
178         isa_dmacascade(rman_get_start(dpt->drq_res));
179
180         dpt_alloc(dev);
181
182         /* Allocate a dmatag representing the capabilities of this attachment */
183         if (bus_dma_tag_create( /* parent    */ NULL,
184                                 /* alignemnt */ 1,
185                                 /* boundary  */ 0,
186                                 /* lowaddr   */ BUS_SPACE_MAXADDR_32BIT,
187                                 /* highaddr  */ BUS_SPACE_MAXADDR,
188                                 /* filter    */ NULL,
189                                 /* filterarg */ NULL,
190                                 /* maxsize   */ BUS_SPACE_MAXSIZE_32BIT,
191                                 /* nsegments */ ~0,
192                                 /* maxsegsz  */ BUS_SPACE_MAXSIZE_32BIT,
193                                 /* flags     */ 0,
194                                 /* lockfunc  */ busdma_lock_mutex,
195                                 /* lockarg   */ &Giant,
196                                 &dpt->parent_dmat) != 0) {
197                 error = ENXIO;
198                 goto bad;
199         }
200
201         s = splcam();
202
203         if (dpt_init(dpt) != 0) {
204                 splx(s);
205                 error = ENXIO;
206                 goto bad;
207         }
208
209         /* Register with the XPT */
210         dpt_attach(dpt);
211
212         splx(s);
213
214         if (bus_setup_intr(dev, dpt->irq_res, INTR_TYPE_CAM | INTR_ENTROPY,
215                            dpt_intr, dpt, &dpt->ih)) {
216                 device_printf(dev, "Unable to register interrupt handler\n");
217                 error = ENXIO;
218                 goto bad;
219         }
220
221         return (error);
222
223  bad:
224         if (dpt->drq_res) {
225                 isa_dma_release(rman_get_start(dpt->drq_res));
226         }
227
228         dpt_release_resources(dev);
229
230         if (dpt)
231                 dpt_free(dpt);
232
233         return (error);
234 }
235
236 static int
237 dpt_isa_detach (device_t dev)
238 {
239         dpt_softc_t *   dpt;
240         int             dma;
241         int             error;
242
243         dpt = device_get_softc(dev);
244
245         dma = rman_get_start(dpt->drq_res);
246         error = dpt_detach(dev);
247         isa_dma_release(dma);
248
249         return (error);
250 }
251
252
253 static device_method_t dpt_isa_methods[] = {
254         /* Device interface */
255 #ifdef notyet
256         DEVMETHOD(device_identify,      dpt_isa_identify),
257 #endif
258         DEVMETHOD(device_probe,         dpt_isa_probe),
259         DEVMETHOD(device_attach,        dpt_isa_attach),
260         DEVMETHOD(device_detach,        dpt_isa_detach),
261
262         { 0, 0 }
263 };
264
265 static driver_t dpt_isa_driver = {
266         "dpt",
267         dpt_isa_methods,
268         sizeof(dpt_softc_t),
269 };
270
271 DRIVER_MODULE(dpt, isa, dpt_isa_driver, dpt_devclass, 0, 0);