Merge branch 'vendor/FILE'
[dragonfly.git] / sys / dev / disk / aic / aic_isa.c
1 /*-
2  * Copyright (c) 1999 Luoqi Chen.
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  * $FreeBSD: src/sys/dev/aic/aic_isa.c,v 1.3 2000/01/14 23:42:35 imp Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/kernel.h>
31 #include <sys/module.h>
32 #include <sys/bus.h>
33 #include <sys/rman.h>
34
35 #include <bus/isa/isavar.h>
36 #include "aic6360reg.h"
37 #include "aicvar.h"
38   
39 struct aic_isa_softc {
40         struct  aic_softc sc_aic;
41         struct  resource *sc_port;
42         struct  resource *sc_irq;
43         struct  resource *sc_drq;
44         void    *sc_ih;
45 };
46
47 static int aic_isa_alloc_resources (device_t);
48 static void aic_isa_release_resources (device_t);
49 static int aic_isa_probe (device_t);
50 static int aic_isa_attach (device_t);
51
52 static u_int aic_isa_ports[] = { 0x340, 0x140 };
53 #define AIC_ISA_NUMPORTS NELEM(aic_isa_ports)
54 #define AIC_ISA_PORTSIZE 0x20
55
56 static struct isa_pnp_id aic_ids[] = {
57         { 0x15309004, "Adaptec AHA-1530P" },
58         { 0x15209004, "Adaptec AHA-1520P" },
59         { 0 }
60 };
61
62 static int
63 aic_isa_alloc_resources(device_t dev)
64 {
65         struct aic_isa_softc *sc = device_get_softc(dev);
66         int rid;
67
68         sc->sc_port = sc->sc_irq = sc->sc_drq = 0;
69
70         rid = 0;
71         sc->sc_port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
72                                         0ul, ~0ul, AIC_ISA_PORTSIZE, RF_ACTIVE);
73         if (!sc->sc_port) {
74                 device_printf(dev, "I/O port allocation failed\n");
75                 return (ENOMEM);
76         }
77
78         if (isa_get_irq(dev) != -1) {
79                 rid = 0;
80                 sc->sc_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
81                                                     RF_ACTIVE);
82                 if (!sc->sc_irq) {
83                         device_printf(dev, "IRQ allocation failed\n");
84                         aic_isa_release_resources(dev);
85                         return (ENOMEM);
86                 }
87         }
88
89         if (isa_get_drq(dev) != -1) {
90                 rid = 0;
91                 sc->sc_drq = bus_alloc_resource_any(dev, SYS_RES_DRQ, &rid,
92                                                     RF_ACTIVE);
93                 if (!sc->sc_drq) {
94                         device_printf(dev, "DRQ allocation failed\n");
95                         aic_isa_release_resources(dev);
96                         return (ENOMEM);
97                 }
98         }
99
100         sc->sc_aic.unit = device_get_unit(dev);
101         sc->sc_aic.tag = rman_get_bustag(sc->sc_port);
102         sc->sc_aic.bsh = rman_get_bushandle(sc->sc_port);
103         return (0);
104 }
105
106 static void
107 aic_isa_release_resources(device_t dev)
108 {
109         struct aic_isa_softc *sc = device_get_softc(dev);
110
111         if (sc->sc_port)
112                 bus_release_resource(dev, SYS_RES_IOPORT, 0, sc->sc_port);
113         if (sc->sc_irq)
114                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq);
115         if (sc->sc_drq)
116                 bus_release_resource(dev, SYS_RES_DRQ, 0, sc->sc_drq);
117         sc->sc_port = sc->sc_irq = sc->sc_drq = 0;
118 }
119
120 static int
121 aic_isa_probe(device_t dev)
122 {
123         struct aic_isa_softc *sc = device_get_softc(dev);
124         struct aic_softc *aic = &sc->sc_aic;
125         int numports, i;
126         u_int port, *ports;
127         u_int8_t porta;
128
129         if (ISA_PNP_PROBE(device_get_parent(dev), dev, aic_ids) == ENXIO)
130                 return (ENXIO);
131
132         port = isa_get_port(dev);
133         if (port != -1) {
134                 ports = &port;
135                 numports = 1;
136         } else {
137                 ports = aic_isa_ports;
138                 numports = AIC_ISA_NUMPORTS;
139         }
140
141         for (i = 0; i < numports; i++) {
142                 if (bus_set_resource(dev, SYS_RES_IOPORT, 0, ports[i],
143                                      AIC_ISA_PORTSIZE))
144                         continue;
145                 if (aic_isa_alloc_resources(dev))
146                         continue;
147                 if (!aic_probe(aic)) {
148                         aic_isa_release_resources(dev);
149                         break;
150                 }
151                 aic_isa_release_resources(dev);
152         }
153
154         if (i == numports)
155                 return (ENXIO);
156
157         porta = aic_inb(aic, PORTA);
158         if (isa_get_irq(dev) == -1)
159                 bus_set_resource(dev, SYS_RES_IRQ, 0, PORTA_IRQ(porta), 1);
160         if ((aic->flags & AIC_DMA_ENABLE) && isa_get_drq(dev) == -1)
161                 bus_set_resource(dev, SYS_RES_DRQ, 0, PORTA_DRQ(porta), 1);
162         device_set_desc(dev, "Adaptec 6260/6360 SCSI controller");
163         return (0);
164 }
165
166 static int
167 aic_isa_attach(device_t dev)
168 {
169         struct aic_isa_softc *sc = device_get_softc(dev);
170         struct aic_softc *aic = &sc->sc_aic;
171         int error;
172
173         error = aic_isa_alloc_resources(dev);
174         if (error) {
175                 device_printf(dev, "resource allocation failed\n");
176                 return (error);
177         }
178
179         error = aic_attach(aic);
180         if (error) {
181                 device_printf(dev, "attach failed\n");
182                 aic_isa_release_resources(dev);
183                 return (error);
184         }
185
186         error = bus_setup_intr(dev, sc->sc_irq, 0, aic_intr,
187                                 aic, &sc->sc_ih, NULL);
188         if (error) {
189                 device_printf(dev, "failed to register interrupt handler\n");
190                 aic_isa_release_resources(dev);
191                 return (error);
192         }
193         return (0);
194 }
195
196 static int
197 aic_isa_detach(device_t dev)
198 {
199         struct aic_isa_softc *sc = device_get_softc(dev);
200         struct aic_softc *aic = &sc->sc_aic;
201         int error;
202
203         error = aic_detach(aic);
204         if (error) {
205                 device_printf(dev, "detach failed\n");
206                 return (error);
207         }
208
209         error = bus_teardown_intr(dev, sc->sc_irq, sc->sc_ih);
210         if (error) {
211                 device_printf(dev, "failed to unregister interrupt handler\n");
212         }
213
214         aic_isa_release_resources(dev);
215         return (0);
216 }
217
218 static device_method_t aic_isa_methods[] = {
219         /* Device interface */
220         DEVMETHOD(device_probe,         aic_isa_probe),
221         DEVMETHOD(device_attach,        aic_isa_attach),
222         DEVMETHOD(device_detach,        aic_isa_detach),
223         { 0, 0 }
224 };
225
226 static driver_t aic_isa_driver = {
227         "aic",
228         aic_isa_methods, sizeof(struct aic_isa_softc),
229 };
230
231 extern devclass_t aic_devclass;
232
233 MODULE_DEPEND(aic, cam, 1,1,1);
234 DRIVER_MODULE(aic, isa, aic_isa_driver, aic_devclass, NULL, NULL);