xref: /freebsd/sys/dev/aac/aac_pci.c (revision b28624fde638caadd4a89f50c9b7e7da0f98c4d2)
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 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 
33 /*
34  * PCI bus interface and resource allocation.
35  */
36 
37 #include "opt_aac.h"
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/module.h>
43 
44 #include <sys/bio.h>
45 #include <sys/bus.h>
46 #include <sys/conf.h>
47 #include <sys/disk.h>
48 
49 #include <machine/bus.h>
50 #include <machine/resource.h>
51 #include <sys/rman.h>
52 
53 #include <dev/pci/pcireg.h>
54 #include <dev/pci/pcivar.h>
55 
56 #include <dev/aac/aacreg.h>
57 #include <sys/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 MODULE_DEPEND(aac, pci, 1, 1, 1);
86 
87 
88 struct aac_ident
89 {
90 	u_int16_t		vendor;
91 	u_int16_t		device;
92 	u_int16_t		subvendor;
93 	u_int16_t		subdevice;
94 	int			hwif;
95 	int			quirks;
96 	char			*desc;
97 } aac_identifiers[] = {
98 	{0x1028, 0x0001, 0x1028, 0x0001, AAC_HWIF_I960RX, 0,
99 	"Dell PERC 2/Si"},
100 	{0x1028, 0x0002, 0x1028, 0x0002, AAC_HWIF_I960RX, 0,
101 	"Dell PERC 3/Di"},
102 	{0x1028, 0x0003, 0x1028, 0x0003, AAC_HWIF_I960RX, 0,
103 	"Dell PERC 3/Si"},
104 	{0x1028, 0x0004, 0x1028, 0x00d0, AAC_HWIF_I960RX, 0,
105 	"Dell PERC 3/Si"},
106 	{0x1028, 0x0002, 0x1028, 0x00d1, AAC_HWIF_I960RX, 0,
107 	"Dell PERC 3/Di"},
108 	{0x1028, 0x0002, 0x1028, 0x00d9, AAC_HWIF_I960RX, 0,
109 	"Dell PERC 3/Di"},
110 	{0x1028, 0x000a, 0x1028, 0x0106, AAC_HWIF_I960RX, 0,
111 	"Dell PERC 3/Di"},
112 	{0x1028, 0x000a, 0x1028, 0x011b, AAC_HWIF_I960RX, 0,
113 	"Dell PERC 3/Di"},
114 	{0x1028, 0x000a, 0x1028, 0x0121, AAC_HWIF_I960RX, 0,
115 	"Dell PERC 3/Di"},
116 	{0x1011, 0x0046, 0x9005, 0x0364, AAC_HWIF_STRONGARM, 0,
117 	"Adaptec AAC-364"},
118 	{0x1011, 0x0046, 0x9005, 0x0365, AAC_HWIF_STRONGARM,
119 	 AAC_FLAGS_BROKEN_MEMMAP, "Adaptec SCSI RAID 5400S"},
120 	{0x1011, 0x0046, 0x9005, 0x1364, AAC_HWIF_STRONGARM, AAC_FLAGS_PERC2QC,
121 	 "Dell PERC 2/QC"},
122 	{0x1011, 0x0046, 0x103c, 0x10c2, AAC_HWIF_STRONGARM, 0,
123 	 "HP NetRaid-4M"},
124 	{0x9005, 0x0285, 0x9005, 0x0285, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
125 	 AAC_FLAGS_256FIBS, "Adaptec SCSI RAID 2200S"},
126 	{0x9005, 0x0285, 0x1028, 0x0287, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
127 	 AAC_FLAGS_256FIBS, "Dell PERC 320/DC"},
128 	{0x9005, 0x0285, 0x9005, 0x0286, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
129 	 AAC_FLAGS_256FIBS, "Adaptec SCSI RAID 2120S"},
130 	{0x9005, 0x0285, 0x9005, 0x0290, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB,
131 	 "Adaptec SATA RAID 2410SA"},
132 	{0x9005, 0x0285, 0x1028, 0x0291, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB,
133 	 "Dell CERC SATA RAID 2"},
134 	{0x9005, 0x0285, 0x9005, 0x0292, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB,
135 	 "Adaptec SATA RAID 2810SA"},
136 	{0x9005, 0x0285, 0x9005, 0x0293, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB,
137 	 "Adaptec SATA RAID 21610SA"},
138 	{0x9005, 0x0285, 0x103c, 0x3227, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB,
139 	 "HP ML110 G2 (Adaptec 2610SA)"},
140 	{0x9005, 0x0286, 0x9005, 0x028c, AAC_HWIF_RKT, 0,
141 	 "Adaptec SCSI RAID 2230S"},
142 	{0x9005, 0x0286, 0x9005, 0x028d, AAC_HWIF_RKT, 0,
143 	 "Adaptec SCSI RAID 2130S"},
144 
145 	{0x9005, 0x0285, 0x9005, 0x0287, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
146 	 AAC_FLAGS_256FIBS, "Adaptec SCSI RAID 2200S"},
147 	{0x9005, 0x0285, 0x17aa, 0x0286, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
148 	 AAC_FLAGS_256FIBS, "Legend S220"},
149 	{0x9005, 0x0285, 0x17aa, 0x0287, AAC_HWIF_I960RX, AAC_FLAGS_NO4GB |
150 	 AAC_FLAGS_256FIBS, "Legend S230"},
151 	{0x9005, 0x0285, 0x9005, 0x0288, AAC_HWIF_I960RX, 0,
152 	 "Adaptec SCSI RAID 3230S"},
153 	{0x9005, 0x0285, 0x9005, 0x0289, AAC_HWIF_I960RX, 0,
154 	 "Adaptec SCSI RAID 3240S"},
155 	{0x9005, 0x0285, 0x9005, 0x028a, AAC_HWIF_I960RX, 0,
156 	 "Adaptec SCSI RAID 2020ZCR"},
157 	{0x9005, 0x0285, 0x9005, 0x028b, AAC_HWIF_I960RX, 0,
158 	 "Adaptec SCSI RAID 2025ZCR"},
159 	{0x9005, 0x0286, 0x9005, 0x029b, AAC_HWIF_RKT, 0,
160 	 "Adaptec SATA RAID 2820SA"},
161 	{0x9005, 0x0286, 0x9005, 0x029c, AAC_HWIF_RKT, 0,
162 	 "Adaptec SATA RAID 2620SA"},
163 	{0x9005, 0x0286, 0x9005, 0x029d, AAC_HWIF_RKT, 0,
164 	 "Adaptec SATA RAID 2420SA"},
165 	{0x9005, 0x0286, 0x9005, 0x029e, AAC_HWIF_RKT, 0,
166 	 "ICP ICP9024RO SCSI RAID"},
167 	{0x9005, 0x0286, 0x9005, 0x029f, AAC_HWIF_RKT, 0,
168 	 "ICP ICP9014RO SCSI RAID"},
169 	{0x9005, 0x0285, 0x9005, 0x0294, AAC_HWIF_I960RX, 0,
170 	 "Adaptec SATA RAID 2026ZCR"},
171 	{0x9005, 0x0285, 0x103c, 0x3227, AAC_HWIF_I960RX, 0,
172 	 "Adaptec SATA RAID 2610SA"},
173 	{0x9005, 0x0285, 0x9005, 0x0296, AAC_HWIF_I960RX, 0,
174 	 "Adaptec SCSI RAID 2240S"},
175 	{0x9005, 0x0285, 0x9005, 0x0297, AAC_HWIF_I960RX, 0,
176 	 "Adaptec SAS RAID 4005SAS"},
177 	{0x9005, 0x0285, 0x1014, 0x02f2, AAC_HWIF_I960RX, 0,
178 	 "IBM ServeRAID 8i"},
179 	{0x9005, 0x0285, 0x9005, 0x0298, AAC_HWIF_I960RX, 0,
180 	 "Adaptec SAS RAID 4000SAS"},
181 	{0x9005, 0x0285, 0x9005, 0x0299, AAC_HWIF_I960RX, 0,
182 	 "Adaptec SAS RAID 4800SAS"},
183 	{0x9005, 0x0285, 0x9005, 0x029a, AAC_HWIF_I960RX, 0,
184 	 "Adaptec SAS RAID 4805SAS"},
185 	{0x9005, 0x0285, 0x9005, 0x028e, AAC_HWIF_I960RX, 0,
186 	 "Adaptec SATA RAID 2020SA ZCR"},
187 	{0x9005, 0x0285, 0x9005, 0x028f, AAC_HWIF_I960RX, 0,
188 	 "Adaptec SATA RAID 2025SA ZCR"},
189 	{0x9005, 0x0285, 0x9005, 0x02a4, AAC_HWIF_I960RX, 0,
190 	 "ICP ICP9085LI SAS RAID"},
191 	{0x9005, 0x0285, 0x9005, 0x02a5, AAC_HWIF_I960RX, 0,
192 	 "ICP ICP5085BR SAS RAID"},
193 	{0x9005, 0x0286, 0x9005, 0x02a0, AAC_HWIF_RKT, 0,
194 	 "ICP ICP9047MA SATA RAID"},
195 	{0x9005, 0x0286, 0x9005, 0x02a1, AAC_HWIF_RKT, 0,
196 	 "ICP ICP9087MA SATA RAID"},
197 	{0x9005, 0x0285, 0x9005, 0x02bb, AAC_HWIF_I960RX, 0,
198 	 "Adaptec RAID 3405"},
199 	{0x9005, 0x0285, 0x9005, 0x02bc, AAC_HWIF_I960RX, 0,
200 	 "Adaptec RAID 3805"},
201 	{0x9005, 0x0286, 0x1014, 0x9580, AAC_HWIF_RKT, 0,
202 	 "IBM ServeRAID-8k"},
203 	{0, 0, 0, 0, 0, 0, 0}
204 };
205 
206 static struct aac_ident *
207 aac_find_ident(device_t dev)
208 {
209 	struct aac_ident *m;
210 
211 	for (m = aac_identifiers; m->vendor != 0; m++) {
212 		if ((m->vendor == pci_get_vendor(dev)) &&
213 		    (m->device == pci_get_device(dev)) &&
214 		    (m->subvendor == pci_get_subvendor(dev)) &&
215 		    (m->subdevice == pci_get_subdevice(dev)))
216 		return (m);
217 	}
218 
219 	return (NULL);
220 }
221 
222 /*
223  * Determine whether this is one of our supported adapters.
224  */
225 static int
226 aac_pci_probe(device_t dev)
227 {
228 	struct aac_ident *id;
229 
230 	debug_called(1);
231 
232 	if ((id = aac_find_ident(dev)) != NULL) {
233 		device_set_desc(dev, id->desc);
234 		return(BUS_PROBE_DEFAULT);
235 	}
236 	return(ENXIO);
237 }
238 
239 /*
240  * Allocate resources for our device, set up the bus interface.
241  */
242 static int
243 aac_pci_attach(device_t dev)
244 {
245 	struct aac_softc *sc;
246 	struct aac_ident *id;
247 	int error;
248 	u_int32_t command;
249 
250 	debug_called(1);
251 
252 	/*
253 	 * Initialise softc.
254 	 */
255 	sc = device_get_softc(dev);
256 	bzero(sc, sizeof(*sc));
257 	sc->aac_dev = dev;
258 
259 	/* assume failure is 'not configured' */
260 	error = ENXIO;
261 
262 	/*
263 	 * Verify that the adapter is correctly set up in PCI space.
264 	 */
265 	command = pci_read_config(sc->aac_dev, PCIR_COMMAND, 2);
266 	command |= PCIM_CMD_BUSMASTEREN;
267 	pci_write_config(dev, PCIR_COMMAND, command, 2);
268 	command = pci_read_config(sc->aac_dev, PCIR_COMMAND, 2);
269 	if (!(command & PCIM_CMD_BUSMASTEREN)) {
270 		device_printf(sc->aac_dev, "can't enable bus-master feature\n");
271 		goto out;
272 	}
273 	if ((command & PCIM_CMD_MEMEN) == 0) {
274 		device_printf(sc->aac_dev, "memory window not available\n");
275 		goto out;
276 	}
277 
278 	/*
279 	 * Allocate the PCI register window.
280 	 */
281 	sc->aac_regs_rid = PCIR_BAR(0);
282 	if ((sc->aac_regs_resource = bus_alloc_resource_any(sc->aac_dev,
283 							    SYS_RES_MEMORY,
284 							    &sc->aac_regs_rid,
285 							    RF_ACTIVE)) ==
286 							    NULL) {
287 		device_printf(sc->aac_dev,
288 			      "couldn't allocate register window\n");
289 		goto out;
290 	}
291 	sc->aac_btag = rman_get_bustag(sc->aac_regs_resource);
292 	sc->aac_bhandle = rman_get_bushandle(sc->aac_regs_resource);
293 
294 	/* assume failure is 'out of memory' */
295 	error = ENOMEM;
296 
297 	/*
298 	 * Allocate the parent bus DMA tag appropriate for our PCI interface.
299 	 *
300 	 * Note that some of these controllers are 64-bit capable.
301 	 */
302 	if (bus_dma_tag_create(NULL, 			/* parent */
303 			       PAGE_SIZE, 0,		/* algnmnt, boundary */
304 			       BUS_SPACE_MAXADDR,	/* lowaddr */
305 			       BUS_SPACE_MAXADDR, 	/* highaddr */
306 			       NULL, NULL, 		/* filter, filterarg */
307 			       BUS_SPACE_MAXSIZE_32BIT,	/* maxsize */
308 			       BUS_SPACE_UNRESTRICTED,	/* nsegments */
309 			       BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
310 			       0,			/* flags */
311 			       NULL, NULL,		/* No locking needed */
312 			       &sc->aac_parent_dmat)) {
313 		device_printf(sc->aac_dev, "can't allocate parent DMA tag\n");
314 		goto out;
315 	}
316 
317 	/*
318 	 * Detect the hardware interface version, set up the bus interface
319 	 * indirection.
320 	 */
321 	id = aac_find_ident(dev);
322 	sc->aac_hwif = id->hwif;
323 	switch(sc->aac_hwif) {
324 	case AAC_HWIF_I960RX:
325 		debug(2, "set hardware up for i960Rx");
326 		sc->aac_if = aac_rx_interface;
327 		break;
328 	case AAC_HWIF_STRONGARM:
329 		debug(2, "set hardware up for StrongARM");
330 		sc->aac_if = aac_sa_interface;
331 		break;
332 	case AAC_HWIF_FALCON:
333 		debug(2, "set hardware up for Falcon/PPC");
334 		sc->aac_if = aac_fa_interface;
335 		break;
336 	case AAC_HWIF_RKT:
337 		debug(2, "set hardware up for Rocket/MIPS");
338 		sc->aac_if = aac_rkt_interface;
339 		break;
340 	default:
341 		sc->aac_hwif = AAC_HWIF_UNKNOWN;
342 		device_printf(sc->aac_dev, "unknown hardware type\n");
343 		error = ENXIO;
344 		goto out;
345 	}
346 
347 	/* Set up quirks */
348 	sc->flags = id->quirks;
349 
350 	/*
351 	 * Do bus-independent initialisation.
352 	 */
353 	error = aac_attach(sc);
354 
355 out:
356 	if (error)
357 		aac_free(sc);
358 	return(error);
359 }
360 
361 /*
362  * Do nothing driver that will attach to the SCSI channels of a Dell PERC
363  * controller.  This is needed to keep the power management subsystem from
364  * trying to power down these devices.
365  */
366 static int aacch_probe(device_t dev);
367 static int aacch_attach(device_t dev);
368 static int aacch_detach(device_t dev);
369 
370 static device_method_t aacch_methods[] = {
371 	/* Device interface */
372 	DEVMETHOD(device_probe,		aacch_probe),
373 	DEVMETHOD(device_attach,	aacch_attach),
374 	DEVMETHOD(device_detach,	aacch_detach),
375 	{ 0, 0 }
376 };
377 
378 struct aacch_softc {
379 	device_t	dev;
380 };
381 
382 static driver_t aacch_driver = {
383 	"aacch",
384 	aacch_methods,
385 	sizeof(struct aacch_softc)
386 };
387 
388 static devclass_t	aacch_devclass;
389 DRIVER_MODULE(aacch, pci, aacch_driver, aacch_devclass, 0, 0);
390 
391 static int
392 aacch_probe(device_t dev)
393 {
394 
395 	if ((pci_get_vendor(dev) != 0x9005) ||
396 	    (pci_get_device(dev) != 0x00c5))
397 		return (ENXIO);
398 
399 	device_set_desc(dev, "AAC RAID Channel");
400 	return (-10);
401 }
402 
403 static int
404 aacch_attach(device_t dev)
405 {
406 	struct aacch_softc *sc;
407 
408 	sc = device_get_softc(dev);
409 
410 	sc->dev = dev;
411 
412 	return (0);
413 }
414 
415 static int
416 aacch_detach(device_t dev)
417 {
418 
419 	return (0);
420 }
421