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