Home | History | Annotate | Line # | Download | only in pci
piixide.c revision 1.35.2.1
      1  1.35.2.1     pavel /*	$NetBSD: piixide.c,v 1.35.2.1 2007/10/24 22:00:15 pavel 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.19     perry  * 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.20     lukem #include <sys/cdefs.h>
     33  1.35.2.1     pavel __KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.35.2.1 2007/10/24 22:00:15 pavel Exp $");
     34      1.20     lukem 
     35       1.1    bouyer #include <sys/param.h>
     36       1.1    bouyer #include <sys/systm.h>
     37       1.1    bouyer 
     38       1.1    bouyer #include <dev/pci/pcivar.h>
     39       1.1    bouyer #include <dev/pci/pcidevs.h>
     40       1.1    bouyer #include <dev/pci/pciidereg.h>
     41       1.1    bouyer #include <dev/pci/pciidevar.h>
     42       1.1    bouyer #include <dev/pci/pciide_piix_reg.h>
     43       1.1    bouyer 
     44       1.2   thorpej static void piix_chip_map(struct pciide_softc*, struct pci_attach_args *);
     45      1.12   thorpej static void piix_setup_channel(struct ata_channel *);
     46      1.12   thorpej static void piix3_4_setup_channel(struct ata_channel *);
     47       1.2   thorpej static u_int32_t piix_setup_idetim_timings(u_int8_t, u_int8_t, u_int8_t);
     48       1.2   thorpej static u_int32_t piix_setup_idetim_drvs(struct ata_drive_datas *);
     49       1.2   thorpej static u_int32_t piix_setup_sidetim_timings(u_int8_t, u_int8_t, u_int8_t);
     50       1.5    bouyer static void piixsata_chip_map(struct pciide_softc*, struct pci_attach_args *);
     51       1.2   thorpej 
     52      1.18  jmcneill static void piixide_powerhook(int, void *);
     53       1.2   thorpej static int  piixide_match(struct device *, struct cfdata *, void *);
     54       1.2   thorpej static void piixide_attach(struct device *, struct device *, void *);
     55       1.1    bouyer 
     56       1.2   thorpej static const struct pciide_product_desc pciide_intel_products[] =  {
     57       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82092AA,
     58       1.1    bouyer 	  0,
     59       1.1    bouyer 	  "Intel 82092AA IDE controller",
     60       1.1    bouyer 	  default_chip_map,
     61       1.1    bouyer 	},
     62       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82371FB_IDE,
     63       1.1    bouyer 	  0,
     64       1.1    bouyer 	  "Intel 82371FB IDE controller (PIIX)",
     65       1.1    bouyer 	  piix_chip_map,
     66       1.1    bouyer 	},
     67       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82371SB_IDE,
     68       1.1    bouyer 	  0,
     69       1.1    bouyer 	  "Intel 82371SB IDE Interface (PIIX3)",
     70       1.1    bouyer 	  piix_chip_map,
     71       1.1    bouyer 	},
     72       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82371AB_IDE,
     73       1.1    bouyer 	  0,
     74       1.1    bouyer 	  "Intel 82371AB IDE controller (PIIX4)",
     75       1.1    bouyer 	  piix_chip_map,
     76       1.1    bouyer 	},
     77       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82440MX_IDE,
     78       1.1    bouyer 	  0,
     79       1.1    bouyer 	  "Intel 82440MX IDE controller",
     80       1.1    bouyer 	  piix_chip_map
     81       1.1    bouyer 	},
     82       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801AA_IDE,
     83       1.1    bouyer 	  0,
     84       1.1    bouyer 	  "Intel 82801AA IDE Controller (ICH)",
     85       1.1    bouyer 	  piix_chip_map,
     86       1.1    bouyer 	},
     87       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801AB_IDE,
     88       1.1    bouyer 	  0,
     89       1.1    bouyer 	  "Intel 82801AB IDE Controller (ICH0)",
     90       1.1    bouyer 	  piix_chip_map,
     91       1.1    bouyer 	},
     92       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801BA_IDE,
     93       1.1    bouyer 	  0,
     94       1.1    bouyer 	  "Intel 82801BA IDE Controller (ICH2)",
     95       1.1    bouyer 	  piix_chip_map,
     96       1.1    bouyer 	},
     97       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801BAM_IDE,
     98       1.1    bouyer 	  0,
     99       1.1    bouyer 	  "Intel 82801BAM IDE Controller (ICH2-M)",
    100       1.1    bouyer 	  piix_chip_map,
    101       1.1    bouyer 	},
    102       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801CA_IDE_1,
    103       1.1    bouyer 	  0,
    104       1.1    bouyer 	  "Intel 82801CA IDE Controller (ICH3)",
    105       1.1    bouyer 	  piix_chip_map,
    106       1.1    bouyer 	},
    107       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801CA_IDE_2,
    108       1.1    bouyer 	  0,
    109       1.1    bouyer 	  "Intel 82801CA IDE Controller (ICH3)",
    110       1.1    bouyer 	  piix_chip_map,
    111       1.1    bouyer 	},
    112       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801DB_IDE,
    113       1.1    bouyer 	  0,
    114       1.1    bouyer 	  "Intel 82801DB IDE Controller (ICH4)",
    115       1.1    bouyer 	  piix_chip_map,
    116       1.1    bouyer 	},
    117       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801DBM_IDE,
    118       1.1    bouyer 	  0,
    119       1.1    bouyer 	  "Intel 82801DBM IDE Controller (ICH4-M)",
    120       1.1    bouyer 	  piix_chip_map,
    121       1.1    bouyer 	},
    122       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801EB_IDE,
    123       1.1    bouyer 	  0,
    124       1.1    bouyer 	  "Intel 82801EB IDE Controller (ICH5)",
    125       1.1    bouyer 	  piix_chip_map,
    126       1.1    bouyer 	},
    127       1.1    bouyer 	{ PCI_PRODUCT_INTEL_82801EB_SATA,
    128       1.1    bouyer 	  0,
    129       1.1    bouyer 	  "Intel 82801EB Serial ATA Controller",
    130       1.5    bouyer 	  piixsata_chip_map,
    131       1.4    bouyer 	},
    132       1.4    bouyer 	{ PCI_PRODUCT_INTEL_82801ER_SATA,
    133       1.4    bouyer 	  0,
    134       1.4    bouyer 	  "Intel 82801ER Serial ATA/Raid Controller",
    135       1.5    bouyer 	  piixsata_chip_map,
    136       1.1    bouyer 	},
    137       1.9   thorpej 	{ PCI_PRODUCT_INTEL_6300ESB_IDE,
    138       1.9   thorpej 	  0,
    139       1.9   thorpej 	  "Intel 6300ESB IDE Controller (ICH5)",
    140       1.9   thorpej 	  piix_chip_map,
    141       1.9   thorpej 	},
    142       1.9   thorpej 	{ PCI_PRODUCT_INTEL_6300ESB_SATA,
    143       1.9   thorpej 	  0,
    144       1.9   thorpej 	  "Intel 6300ESB Serial ATA Controller",
    145       1.9   thorpej 	  piixsata_chip_map,
    146       1.9   thorpej 	},
    147      1.22    briggs 	{ PCI_PRODUCT_INTEL_6300ESB_RAID,
    148      1.22    briggs 	  0,
    149      1.22    briggs 	  "Intel 6300ESB Serial ATA/RAID Controller",
    150      1.22    briggs 	  piixsata_chip_map,
    151      1.22    briggs 	},
    152      1.17      cube 	{ PCI_PRODUCT_INTEL_82801FB_IDE,
    153      1.17      cube 	  0,
    154      1.17      cube 	  "Intel 82801FB IDE Controller (ICH6)",
    155      1.17      cube 	  piix_chip_map,
    156      1.17      cube 	},
    157      1.16      cube 	{ PCI_PRODUCT_INTEL_82801FB_SATA,
    158      1.16      cube 	  0,
    159      1.16      cube 	  "Intel 82801FB Serial ATA/Raid Controller",
    160      1.16      cube 	  piixsata_chip_map,
    161      1.16      cube 	},
    162      1.16      cube 	{ PCI_PRODUCT_INTEL_82801FR_SATA,
    163      1.16      cube 	  0,
    164      1.16      cube 	  "Intel 82801FR Serial ATA/Raid Controller",
    165      1.16      cube 	  piixsata_chip_map,
    166      1.16      cube 	},
    167      1.21    bouyer 	{ PCI_PRODUCT_INTEL_82801FBM_SATA,
    168      1.21    bouyer 	  0,
    169      1.21    bouyer 	  "Intel 82801FBM Serial ATA Controller (ICH6)",
    170      1.21    bouyer 	  piixsata_chip_map,
    171      1.21    bouyer 	},
    172      1.23      tron 	{ PCI_PRODUCT_INTEL_82801G_IDE,
    173      1.23      tron 	  0,
    174      1.23      tron 	  "Intel 82801GB/GR IDE Controller (ICH7)",
    175      1.23      tron 	  piix_chip_map,
    176      1.23      tron 	},
    177      1.23      tron 	{ PCI_PRODUCT_INTEL_82801G_SATA,
    178      1.23      tron 	  0,
    179      1.23      tron 	  "Intel 82801GB/GR Serial ATA/Raid Controller (ICH7)",
    180      1.23      tron 	  piixsata_chip_map,
    181      1.23      tron 	},
    182      1.26     markd 	{ PCI_PRODUCT_INTEL_82801GBM_SATA,
    183      1.26     markd 	  0,
    184      1.26     markd 	  "Intel 82801GBM/GHM Serial ATA Controller (ICH7)",
    185      1.26     markd 	  piixsata_chip_map,
    186      1.26     markd 	},
    187      1.29   xtraeme 	{ PCI_PRODUCT_INTEL_82801H_SATA_1,
    188      1.29   xtraeme 	  0,
    189      1.29   xtraeme 	  "Intel 82801H Serial ATA Controller (ICH8)",
    190      1.29   xtraeme 	  piixsata_chip_map,
    191      1.29   xtraeme 	},
    192      1.29   xtraeme 	{ PCI_PRODUCT_INTEL_82801H_SATA_RAID,
    193      1.29   xtraeme 	  0,
    194      1.29   xtraeme 	  "Intel 82801H Serial ATA RAID Controller (ICH8)",
    195      1.29   xtraeme 	  piixsata_chip_map,
    196      1.29   xtraeme 	},
    197      1.29   xtraeme 	{ PCI_PRODUCT_INTEL_82801H_SATA_2,
    198      1.29   xtraeme 	  0,
    199      1.29   xtraeme 	  "Intel 82801H Serial ATA Controller (ICH8)",
    200      1.29   xtraeme 	  piixsata_chip_map,
    201      1.29   xtraeme 	},
    202  1.35.2.1     pavel 	{ PCI_PRODUCT_INTEL_82801HBM_IDE,
    203  1.35.2.1     pavel 	  0,
    204  1.35.2.1     pavel 	  "Intel 82801HBM IDE Controller (ICH8M)",
    205  1.35.2.1     pavel 	  piix_chip_map,
    206  1.35.2.1     pavel 	},
    207      1.29   xtraeme 	{ PCI_PRODUCT_INTEL_82801HBM_SATA_1,
    208      1.29   xtraeme 	  0,
    209      1.29   xtraeme 	  "Intel 82801HBM Serial ATA Controller (ICH8M)",
    210      1.29   xtraeme 	  piixsata_chip_map,
    211      1.29   xtraeme 	},
    212      1.29   xtraeme 	{ PCI_PRODUCT_INTEL_82801HBM_SATA_2,
    213      1.29   xtraeme 	  0,
    214      1.29   xtraeme 	  "Intel 82801HBM Serial ATA Controller (ICH8M)",
    215      1.29   xtraeme 	  piixsata_chip_map,
    216      1.29   xtraeme 	},
    217  1.35.2.1     pavel 	{ PCI_PRODUCT_INTEL_82801HEM_SATA,
    218  1.35.2.1     pavel 	  0,
    219  1.35.2.1     pavel 	  "Intel 82801HEM Serial ATA Controller (ICH8M)",
    220  1.35.2.1     pavel 	  piixsata_chip_map,
    221  1.35.2.1     pavel 	},
    222      1.28      cube 	{ PCI_PRODUCT_INTEL_63XXESB_IDE,
    223      1.28      cube 	  0,
    224      1.28      cube 	  "Intel 631xESB/632xESB IDE Controller",
    225      1.28      cube 	  piix_chip_map,
    226      1.28      cube 	},
    227  1.35.2.1     pavel 	{ PCI_PRODUCT_INTEL_82801I_SATA_1,
    228  1.35.2.1     pavel 	  0,
    229  1.35.2.1     pavel 	  "Intel 82801I Serial ATA Controller (ICH9)",
    230  1.35.2.1     pavel 	  piixsata_chip_map,
    231  1.35.2.1     pavel 	},
    232  1.35.2.1     pavel 	{ PCI_PRODUCT_INTEL_82801I_SATA_2,
    233  1.35.2.1     pavel 	  0,
    234  1.35.2.1     pavel 	  "Intel 82801I Serial ATA Controller (ICH9)",
    235  1.35.2.1     pavel 	  piixsata_chip_map,
    236  1.35.2.1     pavel 	},
    237  1.35.2.1     pavel 	{ PCI_PRODUCT_INTEL_82801I_SATA_3,
    238  1.35.2.1     pavel 	  0,
    239  1.35.2.1     pavel 	  "Intel 82801I Serial ATA Controller (ICH9)",
    240  1.35.2.1     pavel 	  piixsata_chip_map,
    241  1.35.2.1     pavel 	},
    242      1.28      cube 	{ PCI_PRODUCT_INTEL_63XXESB_SATA,
    243      1.28      cube 	  0,
    244      1.28      cube 	  "Intel 631xESB/632xESB Serial ATA Controller",
    245      1.28      cube 	  piixsata_chip_map,
    246      1.28      cube 	},
    247       1.1    bouyer 	{ 0,
    248       1.1    bouyer 	  0,
    249       1.1    bouyer 	  NULL,
    250       1.1    bouyer 	  NULL
    251       1.1    bouyer 	}
    252       1.1    bouyer };
    253       1.1    bouyer 
    254       1.1    bouyer CFATTACH_DECL(piixide, sizeof(struct pciide_softc),
    255       1.1    bouyer     piixide_match, piixide_attach, NULL, NULL);
    256       1.1    bouyer 
    257       1.2   thorpej static int
    258      1.33  christos piixide_match(struct device *parent, struct cfdata *match,
    259      1.31  christos     void *aux)
    260       1.1    bouyer {
    261       1.1    bouyer 	struct pci_attach_args *pa = aux;
    262       1.1    bouyer 
    263       1.1    bouyer 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL) {
    264       1.1    bouyer 		if (pciide_lookup_product(pa->pa_id, pciide_intel_products))
    265       1.1    bouyer 			return (2);
    266       1.1    bouyer 	}
    267       1.1    bouyer 	return (0);
    268       1.1    bouyer }
    269       1.1    bouyer 
    270       1.2   thorpej static void
    271      1.33  christos piixide_attach(struct device *parent, struct device *self, void *aux)
    272       1.1    bouyer {
    273       1.1    bouyer 	struct pci_attach_args *pa = aux;
    274       1.1    bouyer 	struct pciide_softc *sc = (struct pciide_softc *)self;
    275       1.1    bouyer 
    276       1.1    bouyer 	pciide_common_attach(sc, pa,
    277       1.1    bouyer 	    pciide_lookup_product(pa->pa_id, pciide_intel_products));
    278       1.1    bouyer 
    279      1.18  jmcneill 	/* Setup our powerhook */
    280      1.30  jmcneill 	sc->sc_powerhook = powerhook_establish(
    281      1.30  jmcneill 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, piixide_powerhook, sc);
    282      1.18  jmcneill 	if (sc->sc_powerhook == NULL)
    283      1.18  jmcneill 		printf("%s: WARNING: unable to establish PCI power hook\n",
    284      1.18  jmcneill 		    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    285      1.18  jmcneill }
    286      1.18  jmcneill 
    287      1.18  jmcneill static void
    288      1.18  jmcneill piixide_powerhook(int why, void *hdl)
    289      1.18  jmcneill {
    290      1.18  jmcneill 	struct pciide_softc *sc = (struct pciide_softc *)hdl;
    291      1.18  jmcneill 
    292      1.18  jmcneill 	switch (why) {
    293      1.18  jmcneill 	case PWR_SUSPEND:
    294      1.18  jmcneill 	case PWR_STANDBY:
    295      1.18  jmcneill 		pci_conf_capture(sc->sc_pc, sc->sc_tag, &sc->sc_pciconf);
    296      1.27  jmcneill 		sc->sc_idetim = pci_conf_read(sc->sc_pc, sc->sc_tag,
    297      1.27  jmcneill 		    PIIX_IDETIM);
    298      1.27  jmcneill 		sc->sc_udmatim = pci_conf_read(sc->sc_pc, sc->sc_tag,
    299      1.27  jmcneill 		    PIIX_UDMATIM);
    300      1.18  jmcneill 		break;
    301      1.18  jmcneill 	case PWR_RESUME:
    302      1.18  jmcneill 		pci_conf_restore(sc->sc_pc, sc->sc_tag, &sc->sc_pciconf);
    303      1.27  jmcneill 		pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM,
    304      1.27  jmcneill 		    sc->sc_idetim);
    305      1.27  jmcneill 		pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_UDMATIM,
    306      1.27  jmcneill 		    sc->sc_udmatim);
    307      1.18  jmcneill 		break;
    308      1.18  jmcneill 	case PWR_SOFTSUSPEND:
    309      1.18  jmcneill 	case PWR_SOFTSTANDBY:
    310      1.18  jmcneill 	case PWR_SOFTRESUME:
    311      1.18  jmcneill 		break;
    312      1.18  jmcneill 	}
    313      1.18  jmcneill 
    314      1.18  jmcneill 	return;
    315       1.1    bouyer }
    316       1.1    bouyer 
    317       1.2   thorpej static void
    318       1.2   thorpej piix_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
    319       1.1    bouyer {
    320       1.1    bouyer 	struct pciide_channel *cp;
    321       1.1    bouyer 	int channel;
    322       1.1    bouyer 	u_int32_t idetim;
    323       1.1    bouyer 	bus_size_t cmdsize, ctlsize;
    324      1.24    bouyer 	pcireg_t interface = PCI_INTERFACE(pa->pa_class);
    325       1.1    bouyer 
    326       1.1    bouyer 	if (pciide_chipen(sc, pa) == 0)
    327       1.1    bouyer 		return;
    328       1.1    bouyer 
    329       1.1    bouyer 	aprint_normal("%s: bus-master DMA support present",
    330      1.14   thorpej 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    331       1.1    bouyer 	pciide_mapreg_dma(sc, pa);
    332       1.1    bouyer 	aprint_normal("\n");
    333      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    334       1.1    bouyer 	if (sc->sc_dma_ok) {
    335      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
    336       1.1    bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    337       1.1    bouyer 		switch(sc->sc_pp->ide_product) {
    338       1.1    bouyer 		case PCI_PRODUCT_INTEL_82371AB_IDE:
    339       1.1    bouyer 		case PCI_PRODUCT_INTEL_82440MX_IDE:
    340       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801AA_IDE:
    341       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801AB_IDE:
    342       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801BA_IDE:
    343       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801BAM_IDE:
    344       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801CA_IDE_1:
    345       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801CA_IDE_2:
    346       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801DB_IDE:
    347       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801DBM_IDE:
    348       1.1    bouyer 		case PCI_PRODUCT_INTEL_82801EB_IDE:
    349       1.9   thorpej 		case PCI_PRODUCT_INTEL_6300ESB_IDE:
    350      1.17      cube 		case PCI_PRODUCT_INTEL_82801FB_IDE:
    351      1.23      tron 		case PCI_PRODUCT_INTEL_82801G_IDE:
    352  1.35.2.1     pavel 		case PCI_PRODUCT_INTEL_82801HBM_IDE:
    353      1.14   thorpej 			sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_UDMA;
    354       1.1    bouyer 		}
    355       1.1    bouyer 	}
    356      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    357      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    358       1.1    bouyer 	switch(sc->sc_pp->ide_product) {
    359       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801AA_IDE:
    360      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
    361       1.1    bouyer 		break;
    362       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801BA_IDE:
    363       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801BAM_IDE:
    364       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801CA_IDE_1:
    365       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801CA_IDE_2:
    366       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801DB_IDE:
    367       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801DBM_IDE:
    368       1.1    bouyer 	case PCI_PRODUCT_INTEL_82801EB_IDE:
    369       1.9   thorpej 	case PCI_PRODUCT_INTEL_6300ESB_IDE:
    370      1.17      cube 	case PCI_PRODUCT_INTEL_82801FB_IDE:
    371      1.23      tron 	case PCI_PRODUCT_INTEL_82801G_IDE:
    372  1.35.2.1     pavel 	case PCI_PRODUCT_INTEL_82801HBM_IDE:
    373      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    374       1.1    bouyer 		break;
    375       1.1    bouyer 	default:
    376      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 2;
    377       1.1    bouyer 	}
    378       1.1    bouyer 	if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82371FB_IDE)
    379      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_set_modes = piix_setup_channel;
    380       1.1    bouyer 	else
    381      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_set_modes = piix3_4_setup_channel;
    382      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    383      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    384       1.1    bouyer 
    385      1.11   thorpej 	ATADEBUG_PRINT(("piix_setup_chip: old idetim=0x%x",
    386       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
    387       1.1    bouyer 	    DEBUG_PROBE);
    388       1.1    bouyer 	if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
    389      1.11   thorpej 		ATADEBUG_PRINT((", sidetim=0x%x",
    390       1.1    bouyer 		    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
    391       1.1    bouyer 		    DEBUG_PROBE);
    392      1.14   thorpej 		if (sc->sc_wdcdev.sc_atac.atac_cap & ATAC_CAP_UDMA) {
    393      1.11   thorpej 			ATADEBUG_PRINT((", udamreg 0x%x",
    394       1.1    bouyer 			    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
    395       1.1    bouyer 			    DEBUG_PROBE);
    396       1.1    bouyer 		}
    397       1.1    bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
    398       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
    399       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
    400       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE ||
    401       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_1 ||
    402       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_2 ||
    403       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DB_IDE ||
    404       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DBM_IDE ||
    405       1.9   thorpej 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801EB_IDE ||
    406      1.17      cube 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801FB_IDE ||
    407      1.23      tron 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_6300ESB_IDE ||
    408  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801G_IDE ||
    409  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801HBM_IDE) {
    410      1.11   thorpej 			ATADEBUG_PRINT((", IDE_CONTROL 0x%x",
    411       1.1    bouyer 			    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
    412       1.1    bouyer 			    DEBUG_PROBE);
    413       1.1    bouyer 		}
    414       1.1    bouyer 
    415       1.1    bouyer 	}
    416      1.11   thorpej 	ATADEBUG_PRINT(("\n"), DEBUG_PROBE);
    417       1.1    bouyer 
    418      1.12   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    419      1.12   thorpej 
    420      1.14   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    421      1.14   thorpej 	     channel++) {
    422       1.1    bouyer 		cp = &sc->pciide_channels[channel];
    423      1.24    bouyer 		if (pciide_chansetup(sc, channel, interface) == 0)
    424       1.1    bouyer 			continue;
    425       1.1    bouyer 		idetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
    426       1.1    bouyer 		if ((PIIX_IDETIM_READ(idetim, channel) &
    427       1.1    bouyer 		    PIIX_IDETIM_IDE) == 0) {
    428       1.1    bouyer #if 1
    429       1.1    bouyer 			aprint_normal("%s: %s channel ignored (disabled)\n",
    430      1.14   thorpej 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, cp->name);
    431      1.12   thorpej 			cp->ata_channel.ch_flags |= ATACH_DISABLED;
    432       1.1    bouyer 			continue;
    433       1.1    bouyer #else
    434       1.1    bouyer 			pcireg_t interface;
    435       1.1    bouyer 
    436       1.1    bouyer 			idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE,
    437       1.1    bouyer 			    channel);
    438       1.1    bouyer 			pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM,
    439       1.1    bouyer 			    idetim);
    440       1.1    bouyer 			interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc,
    441       1.1    bouyer 			    sc->sc_tag, PCI_CLASS_REG));
    442       1.1    bouyer 			aprint_normal("channel %d idetim=%08x interface=%02x\n",
    443       1.1    bouyer 			    channel, idetim, interface);
    444       1.1    bouyer #endif
    445       1.1    bouyer 		}
    446      1.24    bouyer 		pciide_mapchan(pa, cp, interface,
    447      1.24    bouyer 		    &cmdsize, &ctlsize, pciide_pci_intr);
    448       1.1    bouyer 	}
    449       1.1    bouyer 
    450      1.11   thorpej 	ATADEBUG_PRINT(("piix_setup_chip: idetim=0x%x",
    451       1.1    bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
    452       1.1    bouyer 	    DEBUG_PROBE);
    453       1.1    bouyer 	if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
    454      1.11   thorpej 		ATADEBUG_PRINT((", sidetim=0x%x",
    455       1.1    bouyer 		    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
    456       1.1    bouyer 		    DEBUG_PROBE);
    457      1.14   thorpej 		if (sc->sc_wdcdev.sc_atac.atac_cap & ATAC_CAP_UDMA) {
    458      1.11   thorpej 			ATADEBUG_PRINT((", udamreg 0x%x",
    459       1.1    bouyer 			    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
    460       1.1    bouyer 			    DEBUG_PROBE);
    461       1.1    bouyer 		}
    462       1.1    bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
    463       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
    464       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
    465       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE ||
    466       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_1 ||
    467       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_2 ||
    468       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DB_IDE ||
    469       1.9   thorpej 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DBM_IDE ||
    470       1.9   thorpej 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801EB_IDE ||
    471      1.17      cube 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801FB_IDE ||
    472      1.23      tron 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_6300ESB_IDE ||
    473  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801G_IDE ||
    474  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801HBM_IDE) {
    475      1.11   thorpej 			ATADEBUG_PRINT((", IDE_CONTROL 0x%x",
    476       1.1    bouyer 			    pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
    477       1.1    bouyer 			    DEBUG_PROBE);
    478       1.1    bouyer 		}
    479       1.1    bouyer 	}
    480      1.11   thorpej 	ATADEBUG_PRINT(("\n"), DEBUG_PROBE);
    481       1.1    bouyer }
    482       1.1    bouyer 
    483       1.2   thorpej static void
    484      1.12   thorpej piix_setup_channel(struct ata_channel *chp)
    485       1.1    bouyer {
    486       1.1    bouyer 	u_int8_t mode[2], drive;
    487       1.1    bouyer 	u_int32_t oidetim, idetim, idedma_ctl;
    488      1.13   thorpej 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    489      1.13   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    490      1.12   thorpej 	struct ata_drive_datas *drvp = cp->ata_channel.ch_drive;
    491       1.1    bouyer 
    492       1.1    bouyer 	oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
    493       1.8   thorpej 	idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, chp->ch_channel);
    494       1.1    bouyer 	idedma_ctl = 0;
    495       1.1    bouyer 
    496       1.1    bouyer 	/* set up new idetim: Enable IDE registers decode */
    497       1.1    bouyer 	idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE,
    498       1.8   thorpej 	    chp->ch_channel);
    499       1.1    bouyer 
    500       1.1    bouyer 	/* setup DMA */
    501       1.1    bouyer 	pciide_channel_dma_setup(cp);
    502       1.1    bouyer 
    503       1.1    bouyer 	/*
    504       1.1    bouyer 	 * Here we have to mess up with drives mode: PIIX can't have
    505       1.1    bouyer 	 * different timings for master and slave drives.
    506       1.1    bouyer 	 * We need to find the best combination.
    507       1.1    bouyer 	 */
    508       1.1    bouyer 
    509       1.1    bouyer 	/* If both drives supports DMA, take the lower mode */
    510       1.1    bouyer 	if ((drvp[0].drive_flags & DRIVE_DMA) &&
    511       1.1    bouyer 	    (drvp[1].drive_flags & DRIVE_DMA)) {
    512       1.1    bouyer 		mode[0] = mode[1] =
    513       1.1    bouyer 		    min(drvp[0].DMA_mode, drvp[1].DMA_mode);
    514       1.1    bouyer 		    drvp[0].DMA_mode = mode[0];
    515       1.1    bouyer 		    drvp[1].DMA_mode = mode[1];
    516       1.1    bouyer 		goto ok;
    517       1.1    bouyer 	}
    518       1.1    bouyer 	/*
    519       1.1    bouyer 	 * If only one drive supports DMA, use its mode, and
    520       1.1    bouyer 	 * put the other one in PIO mode 0 if mode not compatible
    521       1.1    bouyer 	 */
    522       1.1    bouyer 	if (drvp[0].drive_flags & DRIVE_DMA) {
    523       1.1    bouyer 		mode[0] = drvp[0].DMA_mode;
    524       1.1    bouyer 		mode[1] = drvp[1].PIO_mode;
    525       1.1    bouyer 		if (piix_isp_pio[mode[1]] != piix_isp_dma[mode[0]] ||
    526       1.1    bouyer 		    piix_rtc_pio[mode[1]] != piix_rtc_dma[mode[0]])
    527       1.1    bouyer 			mode[1] = drvp[1].PIO_mode = 0;
    528       1.1    bouyer 		goto ok;
    529       1.1    bouyer 	}
    530       1.1    bouyer 	if (drvp[1].drive_flags & DRIVE_DMA) {
    531       1.1    bouyer 		mode[1] = drvp[1].DMA_mode;
    532       1.1    bouyer 		mode[0] = drvp[0].PIO_mode;
    533       1.1    bouyer 		if (piix_isp_pio[mode[0]] != piix_isp_dma[mode[1]] ||
    534       1.1    bouyer 		    piix_rtc_pio[mode[0]] != piix_rtc_dma[mode[1]])
    535       1.1    bouyer 			mode[0] = drvp[0].PIO_mode = 0;
    536       1.1    bouyer 		goto ok;
    537       1.1    bouyer 	}
    538       1.1    bouyer 	/*
    539       1.1    bouyer 	 * If both drives are not DMA, takes the lower mode, unless
    540       1.1    bouyer 	 * one of them is PIO mode < 2
    541       1.1    bouyer 	 */
    542       1.1    bouyer 	if (drvp[0].PIO_mode < 2) {
    543       1.1    bouyer 		mode[0] = drvp[0].PIO_mode = 0;
    544       1.1    bouyer 		mode[1] = drvp[1].PIO_mode;
    545       1.1    bouyer 	} else if (drvp[1].PIO_mode < 2) {
    546       1.1    bouyer 		mode[1] = drvp[1].PIO_mode = 0;
    547       1.1    bouyer 		mode[0] = drvp[0].PIO_mode;
    548       1.1    bouyer 	} else {
    549       1.1    bouyer 		mode[0] = mode[1] =
    550       1.1    bouyer 		    min(drvp[1].PIO_mode, drvp[0].PIO_mode);
    551       1.1    bouyer 		drvp[0].PIO_mode = mode[0];
    552       1.1    bouyer 		drvp[1].PIO_mode = mode[1];
    553       1.1    bouyer 	}
    554       1.1    bouyer ok:	/* The modes are setup */
    555       1.1    bouyer 	for (drive = 0; drive < 2; drive++) {
    556       1.1    bouyer 		if (drvp[drive].drive_flags & DRIVE_DMA) {
    557       1.1    bouyer 			idetim |= piix_setup_idetim_timings(
    558       1.8   thorpej 			    mode[drive], 1, chp->ch_channel);
    559       1.1    bouyer 			goto end;
    560       1.1    bouyer 		}
    561       1.1    bouyer 	}
    562       1.1    bouyer 	/* If we are there, none of the drives are DMA */
    563       1.1    bouyer 	if (mode[0] >= 2)
    564       1.1    bouyer 		idetim |= piix_setup_idetim_timings(
    565       1.8   thorpej 		    mode[0], 0, chp->ch_channel);
    566      1.19     perry 	else
    567       1.1    bouyer 		idetim |= piix_setup_idetim_timings(
    568       1.8   thorpej 		    mode[1], 0, chp->ch_channel);
    569       1.1    bouyer end:	/*
    570       1.1    bouyer 	 * timing mode is now set up in the controller. Enable
    571       1.1    bouyer 	 * it per-drive
    572       1.1    bouyer 	 */
    573       1.1    bouyer 	for (drive = 0; drive < 2; drive++) {
    574       1.1    bouyer 		/* If no drive, skip */
    575       1.1    bouyer 		if ((drvp[drive].drive_flags & DRIVE) == 0)
    576       1.1    bouyer 			continue;
    577       1.1    bouyer 		idetim |= piix_setup_idetim_drvs(&drvp[drive]);
    578       1.1    bouyer 		if (drvp[drive].drive_flags & DRIVE_DMA)
    579       1.1    bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    580       1.1    bouyer 	}
    581       1.1    bouyer 	if (idedma_ctl != 0) {
    582       1.1    bouyer 		/* Add software bits in status register */
    583       1.3      fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    584       1.1    bouyer 		    idedma_ctl);
    585       1.1    bouyer 	}
    586       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
    587       1.1    bouyer }
    588       1.1    bouyer 
    589       1.2   thorpej static void
    590      1.12   thorpej piix3_4_setup_channel(struct ata_channel *chp)
    591       1.1    bouyer {
    592       1.1    bouyer 	struct ata_drive_datas *drvp;
    593       1.1    bouyer 	u_int32_t oidetim, idetim, sidetim, udmareg, ideconf, idedma_ctl;
    594      1.13   thorpej 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    595      1.13   thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    596       1.8   thorpej 	struct wdc_softc *wdc = &sc->sc_wdcdev;
    597      1.15   thorpej 	int drive, s;
    598       1.8   thorpej 	int channel = chp->ch_channel;
    599       1.1    bouyer 
    600       1.1    bouyer 	oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
    601       1.1    bouyer 	sidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM);
    602       1.1    bouyer 	udmareg = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG);
    603       1.1    bouyer 	ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG);
    604       1.1    bouyer 	idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, channel);
    605       1.1    bouyer 	sidetim &= ~(PIIX_SIDETIM_ISP_MASK(channel) |
    606       1.1    bouyer 	    PIIX_SIDETIM_RTC_MASK(channel));
    607       1.1    bouyer 	idedma_ctl = 0;
    608       1.1    bouyer 
    609       1.1    bouyer 	/* set up new idetim: Enable IDE registers decode */
    610       1.1    bouyer 	idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, channel);
    611       1.1    bouyer 
    612       1.1    bouyer 	/* setup DMA if needed */
    613       1.1    bouyer 	pciide_channel_dma_setup(cp);
    614       1.1    bouyer 
    615       1.1    bouyer 	for (drive = 0; drive < 2; drive++) {
    616       1.1    bouyer 		udmareg &= ~(PIIX_UDMACTL_DRV_EN(channel, drive) |
    617       1.1    bouyer 		    PIIX_UDMATIM_SET(0x3, channel, drive));
    618       1.1    bouyer 		drvp = &chp->ch_drive[drive];
    619       1.1    bouyer 		/* If no drive, skip */
    620       1.1    bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    621       1.1    bouyer 			continue;
    622       1.1    bouyer 		if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
    623       1.1    bouyer 		    (drvp->drive_flags & DRIVE_UDMA) == 0))
    624       1.1    bouyer 			goto pio;
    625       1.1    bouyer 
    626       1.1    bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
    627       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
    628       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
    629       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE ||
    630       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_1 ||
    631       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_2 ||
    632       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DB_IDE ||
    633       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DBM_IDE ||
    634       1.9   thorpej 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801EB_IDE ||
    635      1.17      cube 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801FB_IDE ||
    636      1.23      tron 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_6300ESB_IDE ||
    637  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801G_IDE ||
    638  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801HBM_IDE) {
    639       1.1    bouyer 			ideconf |= PIIX_CONFIG_PINGPONG;
    640       1.1    bouyer 		}
    641       1.1    bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
    642       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE ||
    643       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_1 ||
    644       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801CA_IDE_2 ||
    645       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DB_IDE ||
    646       1.1    bouyer 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801DBM_IDE ||
    647       1.9   thorpej 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801EB_IDE ||
    648      1.17      cube 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801FB_IDE ||
    649      1.23      tron 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_6300ESB_IDE ||
    650  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801G_IDE ||
    651  1.35.2.1     pavel 		    sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801HBM_IDE) {
    652       1.1    bouyer 			/* setup Ultra/100 */
    653       1.1    bouyer 			if (drvp->UDMA_mode > 2 &&
    654       1.1    bouyer 			    (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
    655       1.1    bouyer 				drvp->UDMA_mode = 2;
    656       1.1    bouyer 			if (drvp->UDMA_mode > 4) {
    657       1.1    bouyer 				ideconf |= PIIX_CONFIG_UDMA100(channel, drive);
    658       1.1    bouyer 			} else {
    659       1.1    bouyer 				ideconf &= ~PIIX_CONFIG_UDMA100(channel, drive);
    660       1.1    bouyer 				if (drvp->UDMA_mode > 2) {
    661       1.1    bouyer 					ideconf |= PIIX_CONFIG_UDMA66(channel,
    662       1.1    bouyer 					    drive);
    663       1.1    bouyer 				} else {
    664       1.1    bouyer 					ideconf &= ~PIIX_CONFIG_UDMA66(channel,
    665       1.1    bouyer 					    drive);
    666       1.1    bouyer 				}
    667       1.1    bouyer 			}
    668       1.1    bouyer 		}
    669       1.1    bouyer 		if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE) {
    670       1.1    bouyer 			/* setup Ultra/66 */
    671       1.1    bouyer 			if (drvp->UDMA_mode > 2 &&
    672       1.1    bouyer 			    (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
    673       1.1    bouyer 				drvp->UDMA_mode = 2;
    674       1.1    bouyer 			if (drvp->UDMA_mode > 2)
    675       1.1    bouyer 				ideconf |= PIIX_CONFIG_UDMA66(channel, drive);
    676       1.1    bouyer 			else
    677       1.1    bouyer 				ideconf &= ~PIIX_CONFIG_UDMA66(channel, drive);
    678       1.1    bouyer 		}
    679      1.14   thorpej 		if ((wdc->sc_atac.atac_cap & ATAC_CAP_UDMA) &&
    680       1.1    bouyer 		    (drvp->drive_flags & DRIVE_UDMA)) {
    681       1.1    bouyer 			/* use Ultra/DMA */
    682      1.15   thorpej 			s = splbio();
    683       1.1    bouyer 			drvp->drive_flags &= ~DRIVE_DMA;
    684      1.15   thorpej 			splx(s);
    685       1.1    bouyer 			udmareg |= PIIX_UDMACTL_DRV_EN( channel, drive);
    686       1.1    bouyer 			udmareg |= PIIX_UDMATIM_SET(
    687       1.1    bouyer 			    piix4_sct_udma[drvp->UDMA_mode], channel, drive);
    688       1.1    bouyer 		} else {
    689       1.1    bouyer 			/* use Multiword DMA */
    690      1.15   thorpej 			s = splbio();
    691       1.1    bouyer 			drvp->drive_flags &= ~DRIVE_UDMA;
    692      1.15   thorpej 			splx(s);
    693       1.1    bouyer 			if (drive == 0) {
    694       1.1    bouyer 				idetim |= piix_setup_idetim_timings(
    695       1.1    bouyer 				    drvp->DMA_mode, 1, channel);
    696       1.1    bouyer 			} else {
    697       1.1    bouyer 				sidetim |= piix_setup_sidetim_timings(
    698       1.1    bouyer 					drvp->DMA_mode, 1, channel);
    699       1.1    bouyer 				idetim =PIIX_IDETIM_SET(idetim,
    700       1.1    bouyer 				    PIIX_IDETIM_SITRE, channel);
    701       1.1    bouyer 			}
    702       1.1    bouyer 		}
    703       1.1    bouyer 		idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    704      1.19     perry 
    705       1.1    bouyer pio:		/* use PIO mode */
    706       1.1    bouyer 		idetim |= piix_setup_idetim_drvs(drvp);
    707       1.1    bouyer 		if (drive == 0) {
    708       1.1    bouyer 			idetim |= piix_setup_idetim_timings(
    709       1.1    bouyer 			    drvp->PIO_mode, 0, channel);
    710       1.1    bouyer 		} else {
    711       1.1    bouyer 			sidetim |= piix_setup_sidetim_timings(
    712       1.1    bouyer 				drvp->PIO_mode, 0, channel);
    713       1.1    bouyer 			idetim =PIIX_IDETIM_SET(idetim,
    714       1.1    bouyer 			    PIIX_IDETIM_SITRE, channel);
    715       1.1    bouyer 		}
    716       1.1    bouyer 	}
    717       1.1    bouyer 	if (idedma_ctl != 0) {
    718       1.1    bouyer 		/* Add software bits in status register */
    719       1.3      fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    720       1.1    bouyer 		    idedma_ctl);
    721       1.1    bouyer 	}
    722       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
    723       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM, sidetim);
    724       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG, udmareg);
    725       1.1    bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_CONFIG, ideconf);
    726       1.1    bouyer }
    727       1.1    bouyer 
    728       1.1    bouyer 
    729       1.1    bouyer /* setup ISP and RTC fields, based on mode */
    730       1.1    bouyer static u_int32_t
    731       1.1    bouyer piix_setup_idetim_timings(mode, dma, channel)
    732       1.1    bouyer 	u_int8_t mode;
    733       1.1    bouyer 	u_int8_t dma;
    734       1.1    bouyer 	u_int8_t channel;
    735       1.1    bouyer {
    736      1.19     perry 
    737       1.1    bouyer 	if (dma)
    738       1.1    bouyer 		return PIIX_IDETIM_SET(0,
    739      1.19     perry 		    PIIX_IDETIM_ISP_SET(piix_isp_dma[mode]) |
    740       1.1    bouyer 		    PIIX_IDETIM_RTC_SET(piix_rtc_dma[mode]),
    741       1.1    bouyer 		    channel);
    742      1.19     perry 	else
    743       1.1    bouyer 		return PIIX_IDETIM_SET(0,
    744      1.19     perry 		    PIIX_IDETIM_ISP_SET(piix_isp_pio[mode]) |
    745       1.1    bouyer 		    PIIX_IDETIM_RTC_SET(piix_rtc_pio[mode]),
    746       1.1    bouyer 		    channel);
    747       1.1    bouyer }
    748       1.1    bouyer 
    749       1.1    bouyer /* setup DTE, PPE, IE and TIME field based on PIO mode */
    750       1.1    bouyer static u_int32_t
    751       1.1    bouyer piix_setup_idetim_drvs(drvp)
    752       1.1    bouyer 	struct ata_drive_datas *drvp;
    753       1.1    bouyer {
    754       1.1    bouyer 	u_int32_t ret = 0;
    755      1.12   thorpej 	struct ata_channel *chp = drvp->chnl_softc;
    756       1.8   thorpej 	u_int8_t channel = chp->ch_channel;
    757       1.1    bouyer 	u_int8_t drive = drvp->drive;
    758       1.1    bouyer 
    759       1.1    bouyer 	/*
    760      1.34       wiz 	 * If drive is using UDMA, timings setups are independent
    761       1.1    bouyer 	 * So just check DMA and PIO here.
    762       1.1    bouyer 	 */
    763       1.1    bouyer 	if (drvp->drive_flags & DRIVE_DMA) {
    764       1.1    bouyer 		/* if mode = DMA mode 0, use compatible timings */
    765       1.1    bouyer 		if ((drvp->drive_flags & DRIVE_DMA) &&
    766       1.1    bouyer 		    drvp->DMA_mode == 0) {
    767       1.1    bouyer 			drvp->PIO_mode = 0;
    768       1.1    bouyer 			return ret;
    769       1.1    bouyer 		}
    770       1.1    bouyer 		ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
    771       1.1    bouyer 		/*
    772       1.1    bouyer 		 * PIO and DMA timings are the same, use fast timings for PIO
    773       1.1    bouyer 		 * too, else use compat timings.
    774       1.1    bouyer 		 */
    775       1.1    bouyer 		if ((piix_isp_pio[drvp->PIO_mode] !=
    776       1.1    bouyer 		    piix_isp_dma[drvp->DMA_mode]) ||
    777       1.1    bouyer 		    (piix_rtc_pio[drvp->PIO_mode] !=
    778       1.1    bouyer 		    piix_rtc_dma[drvp->DMA_mode]))
    779       1.1    bouyer 			drvp->PIO_mode = 0;
    780       1.1    bouyer 		/* if PIO mode <= 2, use compat timings for PIO */
    781       1.1    bouyer 		if (drvp->PIO_mode <= 2) {
    782       1.1    bouyer 			ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_DTE(drive),
    783       1.1    bouyer 			    channel);
    784       1.1    bouyer 			return ret;
    785       1.1    bouyer 		}
    786       1.1    bouyer 	}
    787       1.1    bouyer 
    788       1.1    bouyer 	/*
    789       1.1    bouyer 	 * Now setup PIO modes. If mode < 2, use compat timings.
    790       1.1    bouyer 	 * Else enable fast timings. Enable IORDY and prefetch/post
    791       1.1    bouyer 	 * if PIO mode >= 3.
    792       1.1    bouyer 	 */
    793       1.1    bouyer 
    794       1.1    bouyer 	if (drvp->PIO_mode < 2)
    795       1.1    bouyer 		return ret;
    796       1.1    bouyer 
    797       1.1    bouyer 	ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
    798       1.1    bouyer 	if (drvp->PIO_mode >= 3) {
    799       1.1    bouyer 		ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_IE(drive), channel);
    800       1.1    bouyer 		ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_PPE(drive), channel);
    801       1.1    bouyer 	}
    802       1.1    bouyer 	return ret;
    803       1.1    bouyer }
    804       1.1    bouyer 
    805       1.1    bouyer /* setup values in SIDETIM registers, based on mode */
    806       1.1    bouyer static u_int32_t
    807       1.1    bouyer piix_setup_sidetim_timings(mode, dma, channel)
    808       1.1    bouyer 	u_int8_t mode;
    809       1.1    bouyer 	u_int8_t dma;
    810       1.1    bouyer 	u_int8_t channel;
    811       1.1    bouyer {
    812       1.1    bouyer 	if (dma)
    813       1.1    bouyer 		return PIIX_SIDETIM_ISP_SET(piix_isp_dma[mode], channel) |
    814       1.1    bouyer 		    PIIX_SIDETIM_RTC_SET(piix_rtc_dma[mode], channel);
    815      1.19     perry 	else
    816       1.1    bouyer 		return PIIX_SIDETIM_ISP_SET(piix_isp_pio[mode], channel) |
    817       1.1    bouyer 		    PIIX_SIDETIM_RTC_SET(piix_rtc_pio[mode], channel);
    818       1.5    bouyer }
    819       1.5    bouyer 
    820       1.5    bouyer static void
    821       1.5    bouyer piixsata_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
    822       1.5    bouyer {
    823       1.5    bouyer 	struct pciide_channel *cp;
    824       1.5    bouyer 	bus_size_t cmdsize, ctlsize;
    825      1.22    briggs 	pcireg_t interface, cmdsts;
    826      1.35      cube 	int channel;
    827       1.5    bouyer 
    828       1.5    bouyer 	if (pciide_chipen(sc, pa) == 0)
    829       1.5    bouyer 		return;
    830       1.5    bouyer 
    831       1.5    bouyer 	aprint_normal("%s: bus-master DMA support present",
    832      1.14   thorpej 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    833       1.5    bouyer 	pciide_mapreg_dma(sc, pa);
    834       1.5    bouyer 	aprint_normal("\n");
    835       1.1    bouyer 
    836      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    837      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    838       1.1    bouyer 	if (sc->sc_dma_ok) {
    839      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    840       1.1    bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    841      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    842      1.14   thorpej 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    843       1.1    bouyer 	}
    844      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = sata_setup_channel;
    845       1.1    bouyer 
    846      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    847      1.14   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    848       1.1    bouyer 
    849      1.22    briggs 	cmdsts = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG);
    850      1.32  drochner 	cmdsts &= ~PCI_COMMAND_INTERRUPT_DISABLE;
    851      1.22    briggs 	pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG, cmdsts);
    852      1.22    briggs 
    853      1.22    briggs 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
    854      1.22    briggs 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_RAID)
    855      1.22    briggs 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_RAID;
    856      1.22    briggs 
    857       1.1    bouyer 	interface = PCI_INTERFACE(pa->pa_class);
    858      1.29   xtraeme 
    859      1.12   thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    860      1.12   thorpej 
    861      1.14   thorpej 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
    862      1.14   thorpej 	     channel++) {
    863       1.1    bouyer 		cp = &sc->pciide_channels[channel];
    864       1.1    bouyer 		if (pciide_chansetup(sc, channel, interface) == 0)
    865       1.1    bouyer 			continue;
    866       1.1    bouyer 		pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
    867       1.1    bouyer 		    pciide_pci_intr);
    868       1.1    bouyer 	}
    869       1.1    bouyer }
    870