Home | History | Annotate | Line # | Download | only in pci
hptide.c revision 1.9.2.1
      1  1.9.2.1      jmc /*	$NetBSD: hptide.c,v 1.9.2.1 2004/08/11 19:46:13 jmc Exp $	*/
      2      1.1   bouyer 
      3      1.1   bouyer /*
      4      1.1   bouyer  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
      5      1.1   bouyer  *
      6      1.1   bouyer  * Redistribution and use in source and binary forms, with or without
      7      1.1   bouyer  * modification, are permitted provided that the following conditions
      8      1.1   bouyer  * are met:
      9      1.1   bouyer  * 1. Redistributions of source code must retain the above copyright
     10      1.1   bouyer  *    notice, this list of conditions and the following disclaimer.
     11      1.1   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1   bouyer  *    notice, this list of conditions and the following disclaimer in the
     13      1.1   bouyer  *    documentation and/or other materials provided with the distribution.
     14      1.1   bouyer  * 3. All advertising materials mentioning features or use of this software
     15      1.1   bouyer  *    must display the following acknowledgement:
     16      1.1   bouyer  *	This product includes software developed by Manuel Bouyer.
     17      1.1   bouyer  * 4. The name of the author may not be used to endorse or promote products
     18      1.1   bouyer  *    derived from this software without specific prior written permission.
     19      1.1   bouyer  *
     20      1.1   bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21      1.1   bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22      1.1   bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23      1.1   bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24      1.1   bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25      1.1   bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26      1.1   bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27      1.1   bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28      1.1   bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29      1.1   bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30      1.1   bouyer  */
     31      1.1   bouyer 
     32      1.1   bouyer #include <sys/param.h>
     33      1.1   bouyer #include <sys/systm.h>
     34      1.1   bouyer 
     35      1.1   bouyer #include <dev/pci/pcivar.h>
     36      1.1   bouyer #include <dev/pci/pcidevs.h>
     37      1.1   bouyer #include <dev/pci/pciidereg.h>
     38      1.1   bouyer #include <dev/pci/pciidevar.h>
     39      1.1   bouyer #include <dev/pci/pciide_hpt_reg.h>
     40      1.1   bouyer 
     41      1.2  thorpej static void hpt_chip_map(struct pciide_softc*, struct pci_attach_args*);
     42      1.8  thorpej static void hpt_setup_channel(struct wdc_channel*);
     43      1.2  thorpej static int  hpt_pci_intr(void *);
     44      1.1   bouyer 
     45      1.2  thorpej static int  hptide_match(struct device *, struct cfdata *, void *);
     46      1.2  thorpej static void hptide_attach(struct device *, struct device *, void *);
     47      1.1   bouyer 
     48      1.1   bouyer CFATTACH_DECL(hptide, sizeof(struct pciide_softc),
     49      1.1   bouyer     hptide_match, hptide_attach, NULL, NULL);
     50      1.1   bouyer 
     51      1.2  thorpej static const struct pciide_product_desc pciide_triones_products[] =  {
     52      1.7      chs 	{ PCI_PRODUCT_TRIONES_HPT302,
     53      1.7      chs 	  0,
     54      1.7      chs 	  NULL,
     55      1.7      chs 	  hpt_chip_map
     56      1.7      chs 	},
     57      1.1   bouyer 	{ PCI_PRODUCT_TRIONES_HPT366,
     58      1.3  mycroft 	  0,
     59      1.1   bouyer 	  NULL,
     60      1.1   bouyer 	  hpt_chip_map,
     61      1.1   bouyer 	},
     62      1.7      chs 	{ PCI_PRODUCT_TRIONES_HPT371,
     63      1.7      chs 	  0,
     64      1.7      chs 	  NULL,
     65      1.7      chs 	  hpt_chip_map,
     66      1.7      chs 	},
     67      1.7      chs 	{ PCI_PRODUCT_TRIONES_HPT372A,
     68      1.3  mycroft 	  0,
     69      1.1   bouyer 	  NULL,
     70      1.1   bouyer 	  hpt_chip_map
     71      1.1   bouyer 	},
     72      1.1   bouyer 	{ PCI_PRODUCT_TRIONES_HPT374,
     73      1.3  mycroft 	  0,
     74      1.1   bouyer 	  NULL,
     75      1.1   bouyer 	  hpt_chip_map
     76      1.1   bouyer 	},
     77      1.1   bouyer 	{ 0,
     78      1.1   bouyer 	  0,
     79      1.1   bouyer 	  NULL,
     80      1.1   bouyer 	  NULL
     81      1.1   bouyer 	}
     82      1.1   bouyer };
     83      1.1   bouyer 
     84      1.2  thorpej static int
     85      1.2  thorpej hptide_match(struct device *parent, struct cfdata *match, void *aux)
     86      1.1   bouyer {
     87      1.1   bouyer 	struct pci_attach_args *pa = aux;
     88      1.1   bouyer 
     89      1.1   bouyer 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_TRIONES) {
     90      1.1   bouyer 		if (pciide_lookup_product(pa->pa_id, pciide_triones_products))
     91      1.1   bouyer 			return (2);
     92      1.1   bouyer 	}
     93      1.1   bouyer 	return (0);
     94      1.1   bouyer }
     95      1.1   bouyer 
     96      1.2  thorpej static void
     97      1.2  thorpej hptide_attach(struct device *parent, struct device *self, void *aux)
     98      1.1   bouyer {
     99      1.1   bouyer 	struct pci_attach_args *pa = aux;
    100      1.1   bouyer 	struct pciide_softc *sc = (struct pciide_softc *)self;
    101      1.1   bouyer 
    102      1.1   bouyer 	pciide_common_attach(sc, pa,
    103      1.1   bouyer 	    pciide_lookup_product(pa->pa_id, pciide_triones_products));
    104      1.1   bouyer 
    105      1.1   bouyer }
    106      1.1   bouyer 
    107      1.2  thorpej static void
    108      1.2  thorpej hpt_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
    109      1.1   bouyer {
    110      1.1   bouyer 	struct pciide_channel *cp;
    111      1.5  mycroft 	int i, compatchan, revision;
    112      1.1   bouyer 	pcireg_t interface;
    113      1.1   bouyer 	bus_size_t cmdsize, ctlsize;
    114      1.1   bouyer 
    115      1.1   bouyer 	if (pciide_chipen(sc, pa) == 0)
    116      1.1   bouyer 		return;
    117      1.1   bouyer 
    118      1.1   bouyer 	revision = PCI_REVISION(pa->pa_class);
    119      1.1   bouyer 	aprint_normal("%s: Triones/Highpoint ",
    120      1.1   bouyer 	    sc->sc_wdcdev.sc_dev.dv_xname);
    121      1.7      chs 	switch (sc->sc_pp->ide_product) {
    122      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT302:
    123      1.7      chs 		aprint_normal("HPT302 IDE Controller\n");
    124      1.7      chs 		break;
    125      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT371:
    126      1.7      chs 		aprint_normal("HPT371 IDE Controller\n");
    127      1.7      chs 		break;
    128      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT374:
    129      1.1   bouyer 		aprint_normal("HPT374 IDE Controller\n");
    130      1.7      chs 		break;
    131      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT372A:
    132      1.7      chs 		aprint_normal("HPT372A IDE Controller\n");
    133      1.7      chs 		break;
    134      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT366:
    135      1.1   bouyer 		if (revision == HPT372_REV)
    136      1.1   bouyer 			aprint_normal("HPT372 IDE Controller\n");
    137      1.1   bouyer 		else if (revision == HPT370_REV)
    138      1.1   bouyer 			aprint_normal("HPT370 IDE Controller\n");
    139      1.1   bouyer 		else if (revision == HPT370A_REV)
    140      1.1   bouyer 			aprint_normal("HPT370A IDE Controller\n");
    141      1.1   bouyer 		else if (revision == HPT366_REV)
    142      1.1   bouyer 			aprint_normal("HPT366 IDE Controller\n");
    143      1.1   bouyer 		else
    144      1.1   bouyer 			aprint_normal("unknown HPT IDE controller rev %d\n",
    145      1.1   bouyer 			    revision);
    146      1.7      chs 		break;
    147      1.7      chs 	default:
    148      1.1   bouyer 		aprint_normal("unknown HPT IDE controller 0x%x\n",
    149      1.1   bouyer 		    sc->sc_pp->ide_product);
    150      1.7      chs 	}
    151      1.1   bouyer 
    152      1.1   bouyer 	/*
    153      1.1   bouyer 	 * when the chip is in native mode it identifies itself as a
    154      1.1   bouyer 	 * 'misc mass storage'. Fake interface in this case.
    155      1.1   bouyer 	 */
    156      1.1   bouyer 	if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
    157      1.1   bouyer 		interface = PCI_INTERFACE(pa->pa_class);
    158      1.1   bouyer 	} else {
    159      1.1   bouyer 		interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
    160      1.1   bouyer 		    PCIIDE_INTERFACE_PCI(0);
    161      1.1   bouyer 		if ((sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT366 &&
    162      1.1   bouyer 		    (revision == HPT370_REV || revision == HPT370A_REV ||
    163      1.1   bouyer 		     revision == HPT372_REV)) ||
    164      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT302 ||
    165      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT371 ||
    166      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT372A ||
    167      1.1   bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT374)
    168      1.1   bouyer 			interface |= PCIIDE_INTERFACE_PCI(1);
    169      1.1   bouyer 	}
    170      1.1   bouyer 
    171      1.1   bouyer 	aprint_normal("%s: bus-master DMA support present",
    172      1.1   bouyer 	    sc->sc_wdcdev.sc_dev.dv_xname);
    173      1.1   bouyer 	pciide_mapreg_dma(sc, pa);
    174      1.1   bouyer 	aprint_normal("\n");
    175      1.1   bouyer 	sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
    176      1.1   bouyer 	    WDC_CAPABILITY_MODE;
    177      1.1   bouyer 	if (sc->sc_dma_ok) {
    178      1.1   bouyer 		sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
    179      1.1   bouyer 		sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
    180      1.1   bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    181      1.1   bouyer 	}
    182      1.1   bouyer 	sc->sc_wdcdev.PIO_cap = 4;
    183      1.1   bouyer 	sc->sc_wdcdev.DMA_cap = 2;
    184      1.1   bouyer 
    185      1.1   bouyer 	sc->sc_wdcdev.set_modes = hpt_setup_channel;
    186      1.1   bouyer 	sc->sc_wdcdev.channels = sc->wdc_chanarray;
    187      1.1   bouyer 	if (sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT366 &&
    188      1.1   bouyer 	    revision == HPT366_REV) {
    189      1.5  mycroft 		sc->sc_wdcdev.nchannels = 1;
    190      1.1   bouyer 		sc->sc_wdcdev.UDMA_cap = 4;
    191      1.1   bouyer 	} else {
    192      1.1   bouyer 		sc->sc_wdcdev.nchannels = 2;
    193      1.1   bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT374 ||
    194      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT372A ||
    195      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT371 ||
    196      1.7      chs 		    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT302 ||
    197      1.1   bouyer 		    (sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT366 &&
    198      1.1   bouyer 		    revision == HPT372_REV))
    199      1.1   bouyer 			sc->sc_wdcdev.UDMA_cap = 6;
    200      1.1   bouyer 		else
    201      1.1   bouyer 			sc->sc_wdcdev.UDMA_cap = 5;
    202      1.1   bouyer 	}
    203      1.1   bouyer 	for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
    204      1.1   bouyer 		cp = &sc->pciide_channels[i];
    205      1.1   bouyer 		if (sc->sc_wdcdev.nchannels > 1) {
    206      1.1   bouyer 			compatchan = i;
    207      1.1   bouyer 			if((pciide_pci_read(sc->sc_pc, sc->sc_tag,
    208      1.1   bouyer 			   HPT370_CTRL1(i)) & HPT370_CTRL1_EN) == 0) {
    209      1.1   bouyer 				aprint_normal(
    210      1.1   bouyer 				    "%s: %s channel ignored (disabled)\n",
    211      1.1   bouyer 				    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    212      1.1   bouyer 				cp->wdc_channel.ch_flags |= WDCF_DISABLED;
    213      1.1   bouyer 				continue;
    214      1.5  mycroft 			}
    215      1.5  mycroft 		} else {
    216      1.5  mycroft 			/*
    217      1.5  mycroft 			 * The 366 has 2 PCI IDE functions, one for primary and
    218      1.5  mycroft 			 * one for secondary. So we need to call
    219      1.5  mycroft 			 * pciide_mapregs_compat() with the real channel.
    220      1.5  mycroft 			 */
    221      1.5  mycroft 			if (pa->pa_function == 0)
    222      1.5  mycroft 				compatchan = 0;
    223      1.5  mycroft 			else if (pa->pa_function == 1)
    224      1.5  mycroft 				compatchan = 1;
    225      1.5  mycroft 			else {
    226      1.5  mycroft 				aprint_error("%s: unexpected PCI function %d\n",
    227      1.5  mycroft 				    sc->sc_wdcdev.sc_dev.dv_xname, pa->pa_function);
    228      1.5  mycroft 				return;
    229      1.1   bouyer 			}
    230      1.1   bouyer 		}
    231      1.1   bouyer 		if (pciide_chansetup(sc, i, interface) == 0)
    232      1.1   bouyer 			continue;
    233      1.1   bouyer 		if (interface & PCIIDE_INTERFACE_PCI(i)) {
    234      1.1   bouyer 			pciide_mapregs_native(pa, cp, &cmdsize,
    235      1.1   bouyer 			    &ctlsize, hpt_pci_intr);
    236      1.1   bouyer 		} else {
    237      1.1   bouyer 			pciide_mapregs_compat(pa, cp, compatchan,
    238      1.1   bouyer 			    &cmdsize, &ctlsize);
    239  1.9.2.1      jmc 			if ((cp->wdc_channel.ch_flags & WDCF_DISABLED) == 0)
    240  1.9.2.1      jmc 				pciide_map_compat_intr(pa, cp,
    241  1.9.2.1      jmc 				    sc->sc_cy_compatchan);
    242      1.1   bouyer 		}
    243      1.1   bouyer 		wdcattach(&cp->wdc_channel);
    244      1.1   bouyer 	}
    245      1.1   bouyer 	if ((sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT366 &&
    246      1.1   bouyer 	    (revision == HPT370_REV || revision == HPT370A_REV ||
    247      1.1   bouyer 	     revision == HPT372_REV)) ||
    248      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT302 ||
    249      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT371 ||
    250      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT372A ||
    251      1.1   bouyer 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT374) {
    252      1.1   bouyer 		/*
    253      1.1   bouyer 		 * HPT370_REV and highter has a bit to disable interrupts,
    254      1.1   bouyer 		 * make sure to clear it
    255      1.1   bouyer 		 */
    256      1.1   bouyer 		pciide_pci_write(sc->sc_pc, sc->sc_tag, HPT_CSEL,
    257      1.1   bouyer 		    pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL) &
    258      1.1   bouyer 		    ~HPT_CSEL_IRQDIS);
    259      1.1   bouyer 	}
    260      1.1   bouyer 	/* set clocks, etc (mandatory on 372/4, optional otherwise) */
    261      1.1   bouyer 	if ((sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT366 &&
    262      1.1   bouyer 	     revision == HPT372_REV ) ||
    263      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT302 ||
    264      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT371 ||
    265      1.7      chs 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT372A ||
    266      1.1   bouyer 	    sc->sc_pp->ide_product == PCI_PRODUCT_TRIONES_HPT374)
    267      1.1   bouyer 		pciide_pci_write(sc->sc_pc, sc->sc_tag, HPT_SC2,
    268      1.1   bouyer 		    (pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_SC2) &
    269      1.1   bouyer 		     HPT_SC2_MAEN) | HPT_SC2_OSC_EN);
    270      1.1   bouyer 	return;
    271      1.1   bouyer }
    272      1.1   bouyer 
    273      1.2  thorpej static void
    274      1.8  thorpej hpt_setup_channel(struct wdc_channel *chp)
    275      1.1   bouyer {
    276      1.1   bouyer 	struct ata_drive_datas *drvp;
    277      1.1   bouyer 	int drive;
    278      1.1   bouyer 	int cable;
    279      1.1   bouyer 	u_int32_t before, after;
    280      1.1   bouyer 	u_int32_t idedma_ctl;
    281      1.1   bouyer 	struct pciide_channel *cp = (struct pciide_channel*)chp;
    282      1.9  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    283      1.1   bouyer 	int revision =
    284      1.1   bouyer 	     PCI_REVISION(pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
    285      1.7      chs 	const u_int32_t *tim_pio, *tim_dma, *tim_udma;
    286      1.1   bouyer 
    287      1.1   bouyer 	cable = pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL);
    288      1.1   bouyer 
    289      1.1   bouyer 	/* setup DMA if needed */
    290      1.1   bouyer 	pciide_channel_dma_setup(cp);
    291      1.1   bouyer 
    292      1.1   bouyer 	idedma_ctl = 0;
    293      1.1   bouyer 
    294      1.7      chs 	/* select the timing arrays for the chip */
    295      1.7      chs 	switch (sc->sc_pp->ide_product) {
    296      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT374:
    297      1.7      chs 		tim_udma = hpt374_udma;
    298      1.7      chs 		tim_dma = hpt374_dma;
    299      1.7      chs 		tim_pio = hpt374_pio;
    300      1.7      chs 		break;
    301      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT302:
    302      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT371:
    303      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT372A:
    304      1.7      chs 		tim_udma = hpt372_udma;
    305      1.7      chs 		tim_dma = hpt372_dma;
    306      1.7      chs 		tim_pio = hpt372_pio;
    307      1.7      chs 		break;
    308      1.7      chs 	case PCI_PRODUCT_TRIONES_HPT366:
    309      1.7      chs 	default:
    310      1.7      chs 		switch (revision) {
    311      1.7      chs 		case HPT372_REV:
    312      1.7      chs 			tim_udma = hpt372_udma;
    313      1.7      chs 			tim_dma = hpt372_dma;
    314      1.7      chs 			tim_pio = hpt372_pio;
    315      1.7      chs 			break;
    316      1.7      chs 		case HPT370_REV:
    317      1.7      chs 		case HPT370A_REV:
    318      1.7      chs 			tim_udma = hpt370_udma;
    319      1.7      chs 			tim_dma = hpt370_dma;
    320      1.7      chs 			tim_pio = hpt370_pio;
    321      1.7      chs 			break;
    322      1.7      chs 		case HPT366_REV:
    323      1.7      chs 		default:
    324      1.7      chs 			tim_udma = hpt366_udma;
    325      1.7      chs 			tim_dma = hpt366_dma;
    326      1.7      chs 			tim_pio = hpt366_pio;
    327      1.7      chs 			break;
    328      1.7      chs 		}
    329      1.7      chs 	}
    330      1.7      chs 
    331      1.1   bouyer 	/* Per drive settings */
    332      1.1   bouyer 	for (drive = 0; drive < 2; drive++) {
    333      1.1   bouyer 		drvp = &chp->ch_drive[drive];
    334      1.1   bouyer 		/* If no drive, skip */
    335      1.1   bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    336      1.1   bouyer 			continue;
    337      1.1   bouyer 		before = pci_conf_read(sc->sc_pc, sc->sc_tag,
    338      1.9  thorpej 					HPT_IDETIM(chp->ch_channel, drive));
    339      1.1   bouyer 
    340      1.1   bouyer 		/* add timing values, setup DMA if needed */
    341      1.1   bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    342      1.1   bouyer 			/* use Ultra/DMA */
    343      1.1   bouyer 			drvp->drive_flags &= ~DRIVE_DMA;
    344      1.9  thorpej 			if ((cable & HPT_CSEL_CBLID(chp->ch_channel)) != 0 &&
    345      1.1   bouyer 			    drvp->UDMA_mode > 2)
    346      1.1   bouyer 				drvp->UDMA_mode = 2;
    347      1.7      chs 			after = tim_udma[drvp->UDMA_mode];
    348      1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    349      1.1   bouyer 		} else if (drvp->drive_flags & DRIVE_DMA) {
    350      1.1   bouyer 			/*
    351      1.1   bouyer 			 * use Multiword DMA.
    352      1.1   bouyer 			 * Timings will be used for both PIO and DMA, so adjust
    353      1.1   bouyer 			 * DMA mode if needed
    354      1.1   bouyer 			 */
    355      1.1   bouyer 			if (drvp->PIO_mode >= 3 &&
    356      1.1   bouyer 			    (drvp->DMA_mode + 2) > drvp->PIO_mode) {
    357      1.1   bouyer 				drvp->DMA_mode = drvp->PIO_mode - 2;
    358      1.1   bouyer 			}
    359      1.7      chs 			after = tim_dma[drvp->DMA_mode];
    360      1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    361      1.1   bouyer 		} else {
    362      1.1   bouyer 			/* PIO only */
    363      1.7      chs 			after = tim_pio[drvp->PIO_mode];
    364      1.1   bouyer 		}
    365      1.1   bouyer 		pci_conf_write(sc->sc_pc, sc->sc_tag,
    366      1.9  thorpej 		    HPT_IDETIM(chp->ch_channel, drive), after);
    367      1.1   bouyer 		WDCDEBUG_PRINT(("%s: bus speed register set to 0x%08x "
    368      1.1   bouyer 		    "(BIOS 0x%08x)\n", drvp->drv_softc->dv_xname,
    369      1.1   bouyer 		    after, before), DEBUG_PROBE);
    370      1.1   bouyer 	}
    371      1.1   bouyer 	if (idedma_ctl != 0) {
    372      1.1   bouyer 		/* Add software bits in status register */
    373      1.6     fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    374      1.1   bouyer 		    idedma_ctl);
    375      1.1   bouyer 	}
    376      1.1   bouyer }
    377      1.1   bouyer 
    378      1.2  thorpej static int
    379      1.2  thorpej hpt_pci_intr(void *arg)
    380      1.1   bouyer {
    381      1.1   bouyer 	struct pciide_softc *sc = arg;
    382      1.1   bouyer 	struct pciide_channel *cp;
    383      1.8  thorpej 	struct wdc_channel *wdc_cp;
    384      1.1   bouyer 	int rv = 0;
    385      1.1   bouyer 	int dmastat, i, crv;
    386      1.1   bouyer 
    387      1.1   bouyer 	for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
    388      1.6     fvdl 		cp = &sc->pciide_channels[i];
    389      1.6     fvdl 		dmastat = bus_space_read_1(sc->sc_dma_iot,
    390      1.6     fvdl 		    cp->dma_iohs[IDEDMA_CTL], 0);
    391      1.1   bouyer 		if((dmastat & ( IDEDMA_CTL_ACT | IDEDMA_CTL_INTR)) !=
    392      1.1   bouyer 		    IDEDMA_CTL_INTR)
    393      1.1   bouyer 			continue;
    394      1.1   bouyer 		wdc_cp = &cp->wdc_channel;
    395      1.1   bouyer 		crv = wdcintr(wdc_cp);
    396      1.1   bouyer 		if (crv == 0) {
    397      1.1   bouyer 			printf("%s:%d: bogus intr\n",
    398      1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname, i);
    399      1.6     fvdl 			bus_space_write_1(sc->sc_dma_iot,
    400      1.6     fvdl 			    cp->dma_iohs[IDEDMA_CTL], 0, dmastat);
    401      1.1   bouyer 		} else
    402      1.1   bouyer 			rv = 1;
    403      1.1   bouyer 	}
    404      1.1   bouyer 	return rv;
    405      1.1   bouyer }
    406