xref: /freebsd/sys/dev/aac/aac_pci.c (revision eacee0ff7ec955b32e09515246bd97b6edcd2b0f)
1 /*-
2  * Copyright (c) 2000 Michael Smith
3  * Copyright (c) 2001 Scott Long
4  * Copyright (c) 2000 BSDi
5  * Copyright (c) 2001 Adaptec, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	$FreeBSD$
30  */
31 
32 /*
33  * PCI bus interface and resource allocation.
34  */
35 
36 #include "opt_aac.h"
37 
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 
42 #include <dev/aac/aac_compat.h>
43 #include <sys/bus.h>
44 #include <sys/conf.h>
45 #include <sys/devicestat.h>
46 #include <sys/disk.h>
47 
48 #include <machine/bus_memio.h>
49 #include <machine/bus.h>
50 #include <machine/resource.h>
51 #include <sys/rman.h>
52 
53 #include <pci/pcireg.h>
54 #include <pci/pcivar.h>
55 
56 #include <dev/aac/aacreg.h>
57 #include <dev/aac/aac_ioctl.h>
58 #include <dev/aac/aacvar.h>
59 
60 static int	aac_pci_probe(device_t dev);
61 static int	aac_pci_attach(device_t dev);
62 
63 static device_method_t aac_methods[] = {
64 	/* Device interface */
65 	DEVMETHOD(device_probe,		aac_pci_probe),
66 	DEVMETHOD(device_attach,	aac_pci_attach),
67 	DEVMETHOD(device_detach,	aac_detach),
68 	DEVMETHOD(device_suspend,	aac_suspend),
69 	DEVMETHOD(device_resume,	aac_resume),
70 
71 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
72 	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
73 	{ 0, 0 }
74 };
75 
76 static driver_t aac_pci_driver = {
77 	"aac",
78 	aac_methods,
79 	sizeof(struct aac_softc)
80 };
81 
82 static devclass_t	aac_devclass;
83 
84 DRIVER_MODULE(aac, pci, aac_pci_driver, aac_devclass, 0, 0);
85 
86 struct aac_ident
87 {
88 	u_int16_t		vendor;
89 	u_int16_t		device;
90 	u_int16_t		subvendor;
91 	u_int16_t		subdevice;
92 	int			hwif;
93 	char			*desc;
94 } aac_identifiers[] = {
95 	{0x1028, 0x0001, 0x1028, 0x0001, AAC_HWIF_I960RX, "Dell PERC 2/Si"},
96 	{0x1028, 0x0002, 0x1028, 0x0002, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
97 	{0x1028, 0x0003, 0x1028, 0x0003, AAC_HWIF_I960RX, "Dell PERC 3/Si"},
98 	{0x1028, 0x0004, 0x1028, 0x00d0, AAC_HWIF_I960RX, "Dell PERC 3/Si"},
99 	{0x1028, 0x0002, 0x1028, 0x00d1, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
100 	{0x1028, 0x0002, 0x1028, 0x00d9, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
101 	{0x1028, 0x0008, 0x1028, 0x00cf, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
102 	{0x1028, 0x000a, 0x1028, 0x0106, AAC_HWIF_I960RX, "Dell PERC 3/Di"},
103 	{0x1011, 0x0046, 0x9005, 0x0364, AAC_HWIF_STRONGARM, "Adaptec AAC-364"},
104 	{0x1011, 0x0046, 0x9005, 0x0365, AAC_HWIF_STRONGARM,
105 	 "Adaptec SCSI RAID 5400S"},
106 	{0x1011, 0x0046, 0x9005, 0x1364, AAC_HWIF_STRONGARM, "Dell PERC 2/QC"},
107 	{0x1011, 0x0046, 0x103c, 0x10c2, AAC_HWIF_STRONGARM, "HP NetRaid-4M"},
108 	{0x9005, 0x0285, 0x9005, 0x0285, AAC_HWIF_I960RX,
109 	 "Adaptec SCSI RAID 2200S"},
110 	{0x9005, 0x0285, 0x9005, 0x0286, AAC_HWIF_I960RX,
111 	 "Adaptec SCSI RAID 2120S"},
112 	{0, 0, 0, 0, 0, 0}
113 };
114 
115 /*
116  * Determine whether this is one of our supported adapters.
117  */
118 static int
119 aac_pci_probe(device_t dev)
120 {
121 	struct aac_ident *m;
122 
123 	debug_called(1);
124 
125 	for (m = aac_identifiers; m->vendor != 0; m++) {
126 		if ((m->vendor == pci_get_vendor(dev)) &&
127 		    (m->device == pci_get_device(dev)) &&
128 		    ((m->subvendor == 0) || (m->subvendor ==
129 					     pci_get_subvendor(dev))) &&
130 		    ((m->subdevice == 0) || ((m->subdevice ==
131 					      pci_get_subdevice(dev))))) {
132 
133 			device_set_desc(dev, m->desc);
134 			return(-10);	/* allow room to be overridden */
135 		}
136 	}
137 	return(ENXIO);
138 }
139 
140 /*
141  * Allocate resources for our device, set up the bus interface.
142  */
143 static int
144 aac_pci_attach(device_t dev)
145 {
146 	struct aac_softc *sc;
147 	int i, error;
148 	u_int32_t command;
149 
150 	debug_called(1);
151 
152 	/*
153 	 * Initialise softc.
154 	 */
155 	sc = device_get_softc(dev);
156 	bzero(sc, sizeof(*sc));
157 	sc->aac_dev = dev;
158 
159 	/* assume failure is 'not configured' */
160 	error = ENXIO;
161 
162 	/*
163 	 * Verify that the adapter is correctly set up in PCI space.
164 	 */
165 	command = pci_read_config(sc->aac_dev, PCIR_COMMAND, 2);
166 	command |= PCIM_CMD_BUSMASTEREN;
167 	pci_write_config(dev, PCIR_COMMAND, command, 2);
168 	command = pci_read_config(sc->aac_dev, PCIR_COMMAND, 2);
169 	if (!(command & PCIM_CMD_BUSMASTEREN)) {
170 		device_printf(sc->aac_dev, "can't enable bus-master feature\n");
171 		goto out;
172 	}
173 	if ((command & PCIM_CMD_MEMEN) == 0) {
174 		device_printf(sc->aac_dev, "memory window not available\n");
175 		goto out;
176 	}
177 
178 	/*
179 	 * Allocate the PCI register window.
180 	 */
181 	sc->aac_regs_rid = 0x10;	/* first base address register */
182 	if ((sc->aac_regs_resource = bus_alloc_resource(sc->aac_dev,
183 							SYS_RES_MEMORY,
184 							&sc->aac_regs_rid,
185 							0, ~0, 1,
186 							RF_ACTIVE)) == NULL) {
187 		device_printf(sc->aac_dev,
188 			      "couldn't allocate register window\n");
189 		goto out;
190 	}
191 	sc->aac_btag = rman_get_bustag(sc->aac_regs_resource);
192 	sc->aac_bhandle = rman_get_bushandle(sc->aac_regs_resource);
193 
194 	/*
195 	 * Allocate and connect our interrupt.
196 	 */
197 	sc->aac_irq_rid = 0;
198 	if ((sc->aac_irq = bus_alloc_resource(sc->aac_dev, SYS_RES_IRQ,
199 			   		      &sc->aac_irq_rid, 0, ~0, 1,
200 			   		      RF_SHAREABLE |
201 					      RF_ACTIVE)) == NULL) {
202 		device_printf(sc->aac_dev, "can't allocate interrupt\n");
203 		goto out;
204 	}
205 #ifndef INTR_ENTROPY
206 #define INTR_ENTROPY 0
207 #endif
208 	if (bus_setup_intr(sc->aac_dev, sc->aac_irq, INTR_TYPE_BIO|INTR_ENTROPY,
209 			   aac_intr, sc, &sc->aac_intr)) {
210 		device_printf(sc->aac_dev, "can't set up interrupt\n");
211 		goto out;
212 	}
213 
214 	/* assume failure is 'out of memory' */
215 	error = ENOMEM;
216 
217 	/*
218 	 * Allocate the parent bus DMA tag appropriate for our PCI interface.
219 	 *
220 	 * Note that some of these controllers are 64-bit capable.
221 	 */
222 	if (bus_dma_tag_create(NULL, 			/* parent */
223 			       1, 0, 			/* algnmnt, boundary */
224 			       BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
225 			       BUS_SPACE_MAXADDR, 	/* highaddr */
226 			       NULL, NULL, 		/* filter, filterarg */
227 			       MAXBSIZE, 		/* maxsize */
228 			       AAC_MAXSGENTRIES,	/* nsegments */
229 			       BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
230 			       BUS_DMA_ALLOCNOW,	/* flags */
231 			       &sc->aac_parent_dmat)) {
232 		device_printf(sc->aac_dev, "can't allocate parent DMA tag\n");
233 		goto out;
234 	}
235 
236 	/*
237 	 * Create DMA tag for mapping buffers into controller-addressable space.
238 	 */
239 	if (bus_dma_tag_create(sc->aac_parent_dmat, 	/* parent */
240 			   1, 0, 			/* algnmnt, boundary */
241 			   BUS_SPACE_MAXADDR,		/* lowaddr */
242 			   BUS_SPACE_MAXADDR, 		/* highaddr */
243 			   NULL, NULL, 			/* filter, filterarg */
244 			   MAXBSIZE, AAC_MAXSGENTRIES,	/* maxsize, nsegments */
245 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
246 			   0,				/* flags */
247 			   &sc->aac_buffer_dmat)) {
248 		device_printf(sc->aac_dev, "can't allocate buffer DMA tag\n");
249 		goto out;
250 	}
251 
252 	/*
253 	 * Create DMA tag for mapping FIBs into controller-addressable space..
254 	 */
255 	if (bus_dma_tag_create(sc->aac_parent_dmat,	/* parent */
256 			   1, 0, 			/* algnmnt, boundary */
257 			   BUS_SPACE_MAXADDR,		/* lowaddr */
258 			   BUS_SPACE_MAXADDR, 		/* highaddr */
259 			   NULL, NULL, 			/* filter, filterarg */
260 			   AAC_FIB_COUNT *
261 			   sizeof(struct aac_fib), 1,	/* maxsize, nsegments */
262 			   BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
263 			   0,				/* flags */
264 			   &sc->aac_fib_dmat)) {
265 		device_printf(sc->aac_dev, "can't allocate FIB DMA tag\n");
266 		goto out;
267 	}
268 
269 	/*
270 	 * Detect the hardware interface version, set up the bus interface
271 	 * indirection.
272 	 */
273 	sc->aac_hwif = AAC_HWIF_UNKNOWN;
274 	for (i = 0; aac_identifiers[i].vendor != 0; i++) {
275 		if ((aac_identifiers[i].vendor == pci_get_vendor(dev)) &&
276 		(aac_identifiers[i].device == pci_get_device(dev))) {
277 			sc->aac_hwif = aac_identifiers[i].hwif;
278 			switch(sc->aac_hwif) {
279 			case AAC_HWIF_I960RX:
280 				debug(2, "set hardware up for i960Rx");
281 				sc->aac_if = aac_rx_interface;
282 				break;
283 
284 			case AAC_HWIF_STRONGARM:
285 				debug(2, "set hardware up for StrongARM");
286 				sc->aac_if = aac_sa_interface;
287 				break;
288 			case AAC_HWIF_FALCON:
289 				debug(2, "set hardware up for Falcon/PPC");
290 				sc->aac_if = aac_fa_interface;
291 				break;
292 			}
293 			break;
294 		}
295 	}
296 	if (sc->aac_hwif == AAC_HWIF_UNKNOWN) {
297 		device_printf(sc->aac_dev, "unknown hardware type\n");
298 		error = ENXIO;
299 		goto out;
300 	}
301 
302 
303 	/*
304 	 * Check for quirky hardware
305 	 */
306 	if (pci_get_subdevice(dev) == 0x1364 &&
307 	    pci_get_subvendor(dev) == 0x9005)
308 		sc->quirks |= AAC_QUIRK_PERC2QC;
309 
310 	/*
311 	 * Do bus-independent initialisation.
312 	 */
313 	error = aac_attach(sc);
314 
315 out:
316 	if (error)
317 		aac_free(sc);
318 	return(error);
319 }
320