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