xref: /freebsd/sys/dev/ata/ata-pci.c (revision c96ae1968a6ab7056427a739bce81bf07447c2d4)
1 /*-
2  * Copyright (c) 1998 - 2006 S�ren Schmidt <sos@FreeBSD.org>
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  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include "opt_ata.h"
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/module.h>
35 #include <sys/ata.h>
36 #include <sys/bus.h>
37 #include <sys/conf.h>
38 #include <sys/malloc.h>
39 #include <sys/sema.h>
40 #include <sys/taskqueue.h>
41 #include <vm/uma.h>
42 #include <machine/stdarg.h>
43 #include <machine/resource.h>
44 #include <machine/bus.h>
45 #include <sys/rman.h>
46 #include <dev/pci/pcivar.h>
47 #include <dev/pci/pcireg.h>
48 #include <dev/ata/ata-all.h>
49 #include <dev/ata/ata-pci.h>
50 #include <ata_if.h>
51 
52 /* local vars */
53 static MALLOC_DEFINE(M_ATAPCI, "ata_pci", "ATA driver PCI");
54 
55 /* misc defines */
56 #define IOMASK                  0xfffffffc
57 #define ATA_PROBE_OK            -10
58 
59 int
60 ata_legacy(device_t dev)
61 {
62     return ((pci_read_config(dev, PCIR_PROGIF, 1)&PCIP_STORAGE_IDE_MASTERDEV) &&
63 	    ((pci_read_config(dev, PCIR_PROGIF, 1) &
64 	      (PCIP_STORAGE_IDE_MODEPRIM | PCIP_STORAGE_IDE_MODESEC)) !=
65 	     (PCIP_STORAGE_IDE_MODEPRIM | PCIP_STORAGE_IDE_MODESEC)));
66 }
67 
68 int
69 ata_pci_probe(device_t dev)
70 {
71     if (pci_get_class(dev) != PCIC_STORAGE)
72 	return ENXIO;
73 
74     switch (pci_get_vendor(dev)) {
75     case ATA_ACARD_ID:
76 	if (!ata_acard_ident(dev))
77 	    return ATA_PROBE_OK;
78 	break;
79     case ATA_ACER_LABS_ID:
80 	if (!ata_ali_ident(dev))
81 	    return ATA_PROBE_OK;
82 	break;
83     case ATA_AMD_ID:
84 	if (!ata_amd_ident(dev))
85 	    return ATA_PROBE_OK;
86 	break;
87     case ATA_ATI_ID:
88 	if (!ata_ati_ident(dev))
89 	    return ATA_PROBE_OK;
90 	break;
91     case ATA_CYRIX_ID:
92 	if (!ata_cyrix_ident(dev))
93 	    return ATA_PROBE_OK;
94 	break;
95     case ATA_CYPRESS_ID:
96 	if (!ata_cypress_ident(dev))
97 	    return ATA_PROBE_OK;
98 	break;
99     case ATA_HIGHPOINT_ID:
100 	if (!ata_highpoint_ident(dev))
101 	    return ATA_PROBE_OK;
102 	break;
103     case ATA_INTEL_ID:
104 	if (!ata_intel_ident(dev))
105 	    return ATA_PROBE_OK;
106 	break;
107     case ATA_ITE_ID:
108 	if (!ata_ite_ident(dev))
109 	    return ATA_PROBE_OK;
110 	break;
111     case ATA_JMICRON_ID:
112 	if (!ata_jmicron_ident(dev))
113 	    return ATA_PROBE_OK;
114 	break;
115     case ATA_MARVELL_ID:
116 	if (!ata_marvell_ident(dev))
117 	    return ATA_PROBE_OK;
118 	break;
119     case ATA_NATIONAL_ID:
120 	if (!ata_national_ident(dev))
121 	    return ATA_PROBE_OK;
122 	break;
123     case ATA_NETCELL_ID:
124 	if (!ata_netcell_ident(dev))
125 	    return ATA_PROBE_OK;
126 	break;
127     case ATA_NVIDIA_ID:
128 	if (!ata_nvidia_ident(dev))
129 	    return ATA_PROBE_OK;
130 	break;
131     case ATA_PROMISE_ID:
132 	if (!ata_promise_ident(dev))
133 	    return ATA_PROBE_OK;
134 	break;
135     case ATA_SERVERWORKS_ID:
136 	if (!ata_serverworks_ident(dev))
137 	    return ATA_PROBE_OK;
138 	break;
139     case ATA_SILICON_IMAGE_ID:
140 	if (!ata_sii_ident(dev))
141 	    return ATA_PROBE_OK;
142 	break;
143     case ATA_SIS_ID:
144 	if (!ata_sis_ident(dev))
145 	    return ATA_PROBE_OK;
146 	break;
147     case ATA_VIA_ID:
148 	if (!ata_via_ident(dev))
149 	    return ATA_PROBE_OK;
150 	break;
151     case ATA_CENATEK_ID:
152 	if (pci_get_devid(dev) == ATA_CENATEK_ROCKET) {
153 	    ata_generic_ident(dev);
154 	    device_set_desc(dev, "Cenatek Rocket Drive controller");
155 	    return ATA_PROBE_OK;
156 	}
157 	break;
158     case ATA_MICRON_ID:
159 	if (pci_get_devid(dev) == ATA_MICRON_RZ1000 ||
160 	    pci_get_devid(dev) == ATA_MICRON_RZ1001) {
161 	    ata_generic_ident(dev);
162 	    device_set_desc(dev,
163 		"RZ 100? ATA controller !WARNING! data loss/corruption risk");
164 	    return ATA_PROBE_OK;
165 	}
166 	break;
167     }
168 
169     /* unknown chipset, try generic DMA if it seems possible */
170     if ((pci_get_class(dev) == PCIC_STORAGE) &&
171 	(pci_get_subclass(dev) == PCIS_STORAGE_IDE)) {
172 	if (!ata_generic_ident(dev))
173 	    return ATA_PROBE_OK;
174     }
175     return ENXIO;
176 }
177 
178 int
179 ata_pci_attach(device_t dev)
180 {
181     struct ata_pci_controller *ctlr = device_get_softc(dev);
182     u_int32_t cmd;
183     int unit;
184 
185     /* do chipset specific setups only needed once */
186     if (ata_legacy(dev) || pci_read_config(dev, PCIR_BAR(2), 4) & IOMASK)
187 	ctlr->channels = 2;
188     else
189 	ctlr->channels = 1;
190     ctlr->allocate = ata_pci_allocate;
191     ctlr->dmainit = ata_pci_dmainit;
192     ctlr->dev = dev;
193 
194     /* if needed try to enable busmastering */
195     cmd = pci_read_config(dev, PCIR_COMMAND, 2);
196     if (!(cmd & PCIM_CMD_BUSMASTEREN)) {
197 	pci_write_config(dev, PCIR_COMMAND, cmd | PCIM_CMD_BUSMASTEREN, 2);
198 	cmd = pci_read_config(dev, PCIR_COMMAND, 2);
199     }
200 
201     /* if busmastering mode "stuck" use it */
202     if ((cmd & PCIM_CMD_BUSMASTEREN) == PCIM_CMD_BUSMASTEREN) {
203 	ctlr->r_type1 = SYS_RES_IOPORT;
204 	ctlr->r_rid1 = ATA_BMADDR_RID;
205 	ctlr->r_res1 = bus_alloc_resource_any(dev, ctlr->r_type1, &ctlr->r_rid1,
206 					      RF_ACTIVE);
207     }
208 
209     if (ctlr->chipinit(dev))
210 	return ENXIO;
211 
212     /* attach all channels on this controller */
213     for (unit = 0; unit < ctlr->channels; unit++) {
214 	if (unit == 0 && (pci_get_progif(dev) & 0x81) == 0x80) {
215 	    device_add_child(dev, "ata", unit);
216 	    continue;
217 	}
218 	if (unit == 1 && (pci_get_progif(dev) & 0x84) == 0x80) {
219 	    device_add_child(dev, "ata", unit);
220 	    continue;
221 	}
222 	device_add_child(dev, "ata", devclass_find_free_unit(ata_devclass, 2));
223     }
224     bus_generic_attach(dev);
225     return 0;
226 }
227 
228 int
229 ata_pci_detach(device_t dev)
230 {
231     struct ata_pci_controller *ctlr = device_get_softc(dev);
232     device_t *children;
233     int nchildren, i;
234 
235     /* detach & delete all children */
236     if (!device_get_children(dev, &children, &nchildren)) {
237 	for (i = 0; i < nchildren; i++)
238 	    device_delete_child(dev, children[i]);
239 	free(children, M_TEMP);
240     }
241 
242     if (ctlr->r_irq) {
243 	bus_teardown_intr(dev, ctlr->r_irq, ctlr->handle);
244 	bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ctlr->r_irq);
245     }
246     if (ctlr->r_res2)
247 	bus_release_resource(dev, ctlr->r_type2, ctlr->r_rid2, ctlr->r_res2);
248     if (ctlr->r_res1)
249 	bus_release_resource(dev, ctlr->r_type1, ctlr->r_rid1, ctlr->r_res1);
250 
251     return 0;
252 }
253 
254 struct resource *
255 ata_pci_alloc_resource(device_t dev, device_t child, int type, int *rid,
256 		       u_long start, u_long end, u_long count, u_int flags)
257 {
258     struct ata_pci_controller *controller = device_get_softc(dev);
259     int unit = ((struct ata_channel *)device_get_softc(child))->unit;
260     struct resource *res = NULL;
261     int myrid;
262 
263     if (type == SYS_RES_IOPORT) {
264 	switch (*rid) {
265 	case ATA_IOADDR_RID:
266 	    if (ata_legacy(dev)) {
267 		start = (unit ? ATA_SECONDARY : ATA_PRIMARY);
268 		count = ATA_IOSIZE;
269 		end = start + count - 1;
270 	    }
271 	    myrid = PCIR_BAR(0) + (unit << 3);
272 	    res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev,
273 				     SYS_RES_IOPORT, &myrid,
274 				     start, end, count, flags);
275 	    break;
276 
277 	case ATA_CTLADDR_RID:
278 	    if (ata_legacy(dev)) {
279 		start = (unit ? ATA_SECONDARY : ATA_PRIMARY) + ATA_CTLOFFSET;
280 		count = ATA_CTLIOSIZE;
281 		end = start + count - 1;
282 	    }
283 	    myrid = PCIR_BAR(1) + (unit << 3);
284 	    res = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev,
285 				     SYS_RES_IOPORT, &myrid,
286 				     start, end, count, flags);
287 	    break;
288 	}
289     }
290     if (type == SYS_RES_IRQ && *rid == ATA_IRQ_RID) {
291 	if (ata_legacy(dev)) {
292 	    int irq = (unit == 0 ? 14 : 15);
293 
294 	    res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child,
295 				     SYS_RES_IRQ, rid, irq, irq, 1, flags);
296 	}
297 	else
298 	    res = controller->r_irq;
299     }
300     return res;
301 }
302 
303 int
304 ata_pci_release_resource(device_t dev, device_t child, int type, int rid,
305 			 struct resource *r)
306 {
307     int unit = ((struct ata_channel *)device_get_softc(child))->unit;
308 
309     if (type == SYS_RES_IOPORT) {
310 	switch (rid) {
311 	case ATA_IOADDR_RID:
312 	    return BUS_RELEASE_RESOURCE(device_get_parent(dev), dev,
313 					SYS_RES_IOPORT,
314 					PCIR_BAR(0) + (unit << 3), r);
315 	    break;
316 
317 	case ATA_CTLADDR_RID:
318 	    return BUS_RELEASE_RESOURCE(device_get_parent(dev), dev,
319 					SYS_RES_IOPORT,
320 					PCIR_BAR(1) + (unit << 3), r);
321 	    break;
322 	default:
323 	    return ENOENT;
324 	}
325     }
326     if (type == SYS_RES_IRQ) {
327 	if (rid != ATA_IRQ_RID)
328 	    return ENOENT;
329 
330 	if (ata_legacy(dev)) {
331 	    return BUS_RELEASE_RESOURCE(device_get_parent(dev), child,
332 					SYS_RES_IRQ, rid, r);
333 	}
334 	else
335 	    return 0;
336     }
337     return EINVAL;
338 }
339 
340 int
341 ata_pci_setup_intr(device_t dev, device_t child, struct resource *irq,
342 		   int flags, driver_intr_t *function, void *argument,
343 		   void **cookiep)
344 {
345     if (ata_legacy(dev)) {
346 	return BUS_SETUP_INTR(device_get_parent(dev), child, irq,
347 			      flags, function, argument, cookiep);
348     }
349     else {
350 	struct ata_pci_controller *controller = device_get_softc(dev);
351 	int unit = ((struct ata_channel *)device_get_softc(child))->unit;
352 
353 	controller->interrupt[unit].function = function;
354 	controller->interrupt[unit].argument = argument;
355 	*cookiep = controller;
356 	return 0;
357     }
358 }
359 
360 int
361 ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq,
362 		      void *cookie)
363 {
364     if (ata_legacy(dev)) {
365 	return BUS_TEARDOWN_INTR(device_get_parent(dev), child, irq, cookie);
366     }
367     else {
368 	struct ata_pci_controller *controller = device_get_softc(dev);
369 	int unit = ((struct ata_channel *)device_get_softc(child))->unit;
370 
371 	controller->interrupt[unit].function = NULL;
372 	controller->interrupt[unit].argument = NULL;
373 	return 0;
374     }
375 }
376 
377 int
378 ata_pci_allocate(device_t dev)
379 {
380     struct ata_pci_controller *ctlr = device_get_softc(device_get_parent(dev));
381     struct ata_channel *ch = device_get_softc(dev);
382     struct resource *io = NULL, *ctlio = NULL;
383     int i, rid;
384 
385     rid = ATA_IOADDR_RID;
386     if (!(io = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid, RF_ACTIVE)))
387 	return ENXIO;
388 
389     rid = ATA_CTLADDR_RID;
390     if (!(ctlio = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,RF_ACTIVE))){
391 	bus_release_resource(dev, SYS_RES_IOPORT, ATA_IOADDR_RID, io);
392 	return ENXIO;
393     }
394 
395     for (i = ATA_DATA; i <= ATA_COMMAND; i ++) {
396 	ch->r_io[i].res = io;
397 	ch->r_io[i].offset = i;
398     }
399     ch->r_io[ATA_CONTROL].res = ctlio;
400     ch->r_io[ATA_CONTROL].offset = ata_legacy(device_get_parent(dev)) ? 0 : 2;
401     ch->r_io[ATA_IDX_ADDR].res = io;
402     ata_default_registers(dev);
403     if (ctlr->r_res1) {
404 	for (i = ATA_BMCMD_PORT; i <= ATA_BMDTP_PORT; i++) {
405 	    ch->r_io[i].res = ctlr->r_res1;
406 	    ch->r_io[i].offset = (i - ATA_BMCMD_PORT) + (ch->unit*ATA_BMIOSIZE);
407 	}
408     }
409 
410     ata_pci_hw(dev);
411     return 0;
412 }
413 
414 void
415 ata_pci_hw(device_t dev)
416 {
417     struct ata_channel *ch = device_get_softc(dev);
418 
419     ata_generic_hw(dev);
420     ch->hw.status = ata_pci_status;
421 }
422 
423 int
424 ata_pci_status(device_t dev)
425 {
426     struct ata_channel *ch = device_get_softc(dev);
427 
428     if ((dumping || !ata_legacy(device_get_parent(dev))) &&
429 	ch->dma && ((ch->flags & ATA_ALWAYS_DMASTAT) ||
430 		    (ch->dma->flags & ATA_DMA_ACTIVE))) {
431 	int bmstat = ATA_IDX_INB(ch, ATA_BMSTAT_PORT) & ATA_BMSTAT_MASK;
432 
433 	if ((bmstat & (ATA_BMSTAT_ACTIVE | ATA_BMSTAT_INTERRUPT)) !=
434 	    ATA_BMSTAT_INTERRUPT)
435 	    return 0;
436 	ATA_IDX_OUTB(ch, ATA_BMSTAT_PORT, bmstat & ~ATA_BMSTAT_ERROR);
437 	DELAY(1);
438     }
439     if (ATA_IDX_INB(ch, ATA_ALTSTAT) & ATA_S_BUSY) {
440 	DELAY(100);
441 	if (ATA_IDX_INB(ch, ATA_ALTSTAT) & ATA_S_BUSY)
442 	    return 0;
443     }
444     return 1;
445 }
446 
447 static int
448 ata_pci_dmastart(device_t dev)
449 {
450     struct ata_channel *ch = device_get_softc(device_get_parent(dev));
451 
452     ATA_IDX_OUTB(ch, ATA_BMSTAT_PORT, (ATA_IDX_INB(ch, ATA_BMSTAT_PORT) |
453 		 (ATA_BMSTAT_INTERRUPT | ATA_BMSTAT_ERROR)));
454     ATA_IDX_OUTL(ch, ATA_BMDTP_PORT, ch->dma->sg_bus);
455     ch->dma->flags |= ATA_DMA_ACTIVE;
456     ATA_IDX_OUTB(ch, ATA_BMCMD_PORT,
457 		 (ATA_IDX_INB(ch, ATA_BMCMD_PORT) & ~ATA_BMCMD_WRITE_READ) |
458 		 ((ch->dma->flags & ATA_DMA_READ) ? ATA_BMCMD_WRITE_READ : 0) |
459 		 ATA_BMCMD_START_STOP);
460     return 0;
461 }
462 
463 static int
464 ata_pci_dmastop(device_t dev)
465 {
466     struct ata_channel *ch = device_get_softc(device_get_parent(dev));
467     int error;
468 
469     ATA_IDX_OUTB(ch, ATA_BMCMD_PORT,
470 		 ATA_IDX_INB(ch, ATA_BMCMD_PORT) & ~ATA_BMCMD_START_STOP);
471     ch->dma->flags &= ~ATA_DMA_ACTIVE;
472     error = ATA_IDX_INB(ch, ATA_BMSTAT_PORT) & ATA_BMSTAT_MASK;
473     ATA_IDX_OUTB(ch, ATA_BMSTAT_PORT, ATA_BMSTAT_INTERRUPT | ATA_BMSTAT_ERROR);
474     return error;
475 }
476 
477 static void
478 ata_pci_dmareset(device_t dev)
479 {
480     struct ata_channel *ch = device_get_softc(dev);
481 
482     ATA_IDX_OUTB(ch, ATA_BMCMD_PORT,
483 		 ATA_IDX_INB(ch, ATA_BMCMD_PORT) & ~ATA_BMCMD_START_STOP);
484     ch->dma->flags &= ~ATA_DMA_ACTIVE;
485     ATA_IDX_OUTB(ch, ATA_BMSTAT_PORT, ATA_BMSTAT_INTERRUPT | ATA_BMSTAT_ERROR);
486     ch->dma->unload(dev);
487 }
488 
489 void
490 ata_pci_dmainit(device_t dev)
491 {
492     struct ata_channel *ch = device_get_softc(dev);
493 
494     ata_dmainit(dev);
495     if (ch->dma) {
496 	ch->dma->start = ata_pci_dmastart;
497 	ch->dma->stop = ata_pci_dmastop;
498 	ch->dma->reset = ata_pci_dmareset;
499     }
500 }
501 
502 static device_method_t ata_pci_methods[] = {
503     /* device interface */
504     DEVMETHOD(device_probe,             ata_pci_probe),
505     DEVMETHOD(device_attach,            ata_pci_attach),
506     DEVMETHOD(device_detach,            ata_pci_detach),
507     DEVMETHOD(device_shutdown,          bus_generic_shutdown),
508     DEVMETHOD(device_suspend,           bus_generic_suspend),
509     DEVMETHOD(device_resume,            bus_generic_resume),
510 
511     /* bus methods */
512     DEVMETHOD(bus_alloc_resource,       ata_pci_alloc_resource),
513     DEVMETHOD(bus_release_resource,     ata_pci_release_resource),
514     DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource),
515     DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource),
516     DEVMETHOD(bus_setup_intr,           ata_pci_setup_intr),
517     DEVMETHOD(bus_teardown_intr,        ata_pci_teardown_intr),
518 
519     { 0, 0 }
520 };
521 
522 devclass_t atapci_devclass;
523 
524 static driver_t ata_pci_driver = {
525     "atapci",
526     ata_pci_methods,
527     sizeof(struct ata_pci_controller),
528 };
529 
530 DRIVER_MODULE(atapci, pci, ata_pci_driver, atapci_devclass, 0, 0);
531 MODULE_VERSION(atapci, 1);
532 MODULE_DEPEND(atapci, ata, 1, 1, 1);
533 
534 static int
535 ata_pcichannel_probe(device_t dev)
536 {
537     struct ata_channel *ch = device_get_softc(dev);
538     device_t *children;
539     int count, i;
540     char buffer[32];
541 
542     /* take care of green memory */
543     bzero(ch, sizeof(struct ata_channel));
544 
545     /* find channel number on this controller */
546     device_get_children(device_get_parent(dev), &children, &count);
547     for (i = 0; i < count; i++) {
548 	if (children[i] == dev)
549 	    ch->unit = i;
550     }
551     free(children, M_TEMP);
552 
553     sprintf(buffer, "ATA channel %d", ch->unit);
554     device_set_desc_copy(dev, buffer);
555 
556     return ata_probe(dev);
557 }
558 
559 static int
560 ata_pcichannel_attach(device_t dev)
561 {
562     struct ata_pci_controller *ctlr = device_get_softc(device_get_parent(dev));
563     struct ata_channel *ch = device_get_softc(dev);
564     int error;
565 
566     if (ctlr->dmainit)
567 	ctlr->dmainit(dev);
568     if (ch->dma)
569 	ch->dma->alloc(dev);
570 
571     if ((error = ctlr->allocate(dev)))
572 	return error;
573 
574     return ata_attach(dev);
575 }
576 
577 static int
578 ata_pcichannel_detach(device_t dev)
579 {
580     struct ata_channel *ch = device_get_softc(dev);
581     int error;
582 
583     if ((error = ata_detach(dev)))
584 	return error;
585 
586     if (ch->dma)
587 	ch->dma->free(dev);
588 
589     /* XXX SOS free resources for io and ctlio ?? */
590 
591     return 0;
592 }
593 
594 static int
595 ata_pcichannel_locking(device_t dev, int mode)
596 {
597     struct ata_pci_controller *ctlr = device_get_softc(device_get_parent(dev));
598     struct ata_channel *ch = device_get_softc(dev);
599 
600     if (ctlr->locking)
601 	return ctlr->locking(dev, mode);
602     else
603 	return ch->unit;
604 }
605 
606 static void
607 ata_pcichannel_reset(device_t dev)
608 {
609     struct ata_pci_controller *ctlr = device_get_softc(device_get_parent(dev));
610     struct ata_channel *ch = device_get_softc(dev);
611 
612     /* if DMA engine present reset it  */
613     if (ch->dma) {
614 	if (ch->dma->reset)
615 	    ch->dma->reset(dev);
616 	ch->dma->unload(dev);
617     }
618 
619     /* reset the controller HW */
620     if (ctlr->reset)
621 	ctlr->reset(dev);
622     else
623 	ata_generic_reset(dev);
624 }
625 
626 static void
627 ata_pcichannel_setmode(device_t parent, device_t dev)
628 {
629     struct ata_pci_controller *ctlr = device_get_softc(GRANDPARENT(dev));
630     struct ata_device *atadev = device_get_softc(dev);
631     int mode = atadev->mode;
632 
633     ctlr->setmode(dev, ATA_PIO_MAX);
634     if (mode >= ATA_DMA)
635 	ctlr->setmode(dev, mode);
636 }
637 
638 static device_method_t ata_pcichannel_methods[] = {
639     /* device interface */
640     DEVMETHOD(device_probe,     ata_pcichannel_probe),
641     DEVMETHOD(device_attach,    ata_pcichannel_attach),
642     DEVMETHOD(device_detach,    ata_pcichannel_detach),
643     DEVMETHOD(device_shutdown,  bus_generic_shutdown),
644     DEVMETHOD(device_suspend,   ata_suspend),
645     DEVMETHOD(device_resume,    ata_resume),
646 
647     /* ATA methods */
648     DEVMETHOD(ata_setmode,      ata_pcichannel_setmode),
649     DEVMETHOD(ata_locking,      ata_pcichannel_locking),
650     DEVMETHOD(ata_reset,        ata_pcichannel_reset),
651 
652     { 0, 0 }
653 };
654 
655 driver_t ata_pcichannel_driver = {
656     "ata",
657     ata_pcichannel_methods,
658     sizeof(struct ata_channel),
659 };
660 
661 DRIVER_MODULE(ata, atapci, ata_pcichannel_driver, ata_devclass, 0, 0);
662