Home | History | Annotate | Line # | Download | only in pci
iteide.c revision 1.6
      1  1.6  christos /*	$NetBSD: iteide.c,v 1.6 2006/10/12 01:31:31 christos Exp $	*/
      2  1.1     grant 
      3  1.1     grant /*
      4  1.1     grant  * Copyright (c) 2004 The NetBSD Foundation, Inc.
      5  1.1     grant  *
      6  1.1     grant  * This code is derived from software contributed to The NetBSD Foundation
      7  1.1     grant  * by Grant Beattie.
      8  1.1     grant  *
      9  1.1     grant  * Redistribution and use in source and binary forms, with or without
     10  1.1     grant  * modification, are permitted provided that the following conditions
     11  1.1     grant  * are met:
     12  1.1     grant  * 1. Redistributions of source code must retain the above copyright
     13  1.1     grant  *    notice, this list of conditions and the following disclaimer.
     14  1.1     grant  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1     grant  *    notice, this list of conditions and the following disclaimer in the
     16  1.1     grant  *    documentation and/or other materials provided with the distribution.
     17  1.1     grant  * 3. The name of the author may not be used to endorse or promote products
     18  1.1     grant  *    derived from this software without specific prior written permission.
     19  1.1     grant  *
     20  1.1     grant  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.1     grant  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.1     grant  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.2     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.1     grant  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.1     grant  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.1     grant  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.1     grant  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.1     grant  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.1     grant  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  1.1     grant  *
     31  1.1     grant  */
     32  1.1     grant 
     33  1.3     lukem #include <sys/cdefs.h>
     34  1.6  christos __KERNEL_RCSID(0, "$NetBSD: iteide.c,v 1.6 2006/10/12 01:31:31 christos Exp $");
     35  1.3     lukem 
     36  1.1     grant #include <sys/param.h>
     37  1.1     grant #include <sys/systm.h>
     38  1.1     grant 
     39  1.1     grant #include <dev/pci/pcivar.h>
     40  1.1     grant #include <dev/pci/pcidevs.h>
     41  1.1     grant #include <dev/pci/pciidereg.h>
     42  1.1     grant #include <dev/pci/pciidevar.h>
     43  1.1     grant #include <dev/pci/pciide_ite_reg.h>
     44  1.1     grant 
     45  1.1     grant static void ite_chip_map(struct pciide_softc*, struct pci_attach_args*);
     46  1.1     grant static void ite_setup_channel(struct ata_channel*);
     47  1.1     grant 
     48  1.1     grant static int  iteide_match(struct device *, struct cfdata *, void *);
     49  1.1     grant static void iteide_attach(struct device *, struct device *, void *);
     50  1.1     grant 
     51  1.1     grant CFATTACH_DECL(iteide, sizeof(struct pciide_softc),
     52  1.1     grant     iteide_match, iteide_attach, NULL, NULL);
     53  1.1     grant 
     54  1.1     grant static const struct pciide_product_desc pciide_ite_products[] =  {
     55  1.5   xtraeme 	{ PCI_PRODUCT_ITE_IT8211,
     56  1.5   xtraeme 	  0,
     57  1.5   xtraeme 	  "Integrated Technology Express IDE controller",
     58  1.5   xtraeme 	  ite_chip_map,
     59  1.5   xtraeme 	},
     60  1.1     grant 	{ PCI_PRODUCT_ITE_IT8212,
     61  1.1     grant 	  0,
     62  1.1     grant 	  "Integrated Technology Express IDE controller",
     63  1.1     grant 	  ite_chip_map,
     64  1.1     grant 	},
     65  1.1     grant 	{ 0,
     66  1.1     grant 	  0,
     67  1.1     grant 	  NULL,
     68  1.1     grant 	  NULL
     69  1.1     grant 	}
     70  1.1     grant };
     71  1.1     grant 
     72  1.1     grant static int
     73  1.6  christos iteide_match(struct device *parent __unused, struct cfdata *match __unused,
     74  1.6  christos     void *aux)
     75  1.1     grant {
     76  1.1     grant 	struct pci_attach_args *pa = aux;
     77  1.1     grant 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ITE &&
     78  1.1     grant 	    PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE) {
     79  1.1     grant 		if (pciide_lookup_product(pa->pa_id, pciide_ite_products))
     80  1.1     grant 			return (2);
     81  1.1     grant 	}
     82  1.1     grant 	return (0);
     83  1.1     grant }
     84  1.1     grant 
     85  1.1     grant static void
     86  1.6  christos iteide_attach(struct device *parent __unused, struct device *self, void *aux)
     87  1.1     grant {
     88  1.1     grant 	struct pci_attach_args *pa = aux;
     89  1.1     grant 	struct pciide_softc *sc = (struct pciide_softc *)self;
     90  1.1     grant 
     91  1.1     grant 	pciide_common_attach(sc, pa,
     92  1.1     grant 	    pciide_lookup_product(pa->pa_id, pciide_ite_products));
     93  1.1     grant }
     94  1.1     grant 
     95  1.1     grant static void
     96  1.1     grant ite_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
     97  1.1     grant {
     98  1.1     grant 	struct pciide_channel *cp;
     99  1.1     grant 	int channel;
    100  1.1     grant 	pcireg_t interface;
    101  1.1     grant 	bus_size_t cmdsize, ctlsize;
    102  1.1     grant 	pcireg_t cfg, modectl;
    103  1.1     grant 
    104  1.1     grant 	/* fake interface since IT8212 claims to be a RAID device */
    105  1.1     grant 	interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
    106  1.1     grant 	    PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
    107  1.1     grant 
    108  1.1     grant 	cfg = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_CFG);
    109  1.1     grant 	modectl = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_MODE);
    110  1.1     grant 	ATADEBUG_PRINT(("%s: cfg=0x%x, modectl=0x%x\n",
    111  1.1     grant 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, cfg & IT_CFG_MASK,
    112  1.1     grant 	    modectl & IT_MODE_MASK), DEBUG_PROBE);
    113  1.1     grant 
    114  1.1     grant 	if (pciide_chipen(sc, pa) == 0)
    115  1.1     grant 		return;
    116  1.1     grant 
    117  1.1     grant 	aprint_normal("%s: bus-master DMA support present",
    118  1.1     grant 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    119  1.1     grant 	pciide_mapreg_dma(sc, pa);
    120  1.1     grant 	aprint_normal("\n");
    121  1.1     grant 
    122  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    123  1.1     grant 
    124  1.1     grant 	if (sc->sc_dma_ok) {
    125  1.1     grant 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    126  1.1     grant 		sc->sc_wdcdev.irqack = pciide_irqack;
    127  1.1     grant 	}
    128  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    129  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    130  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
    131  1.1     grant 
    132  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_set_modes = ite_setup_channel;
    133  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    134  1.1     grant 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
    135  1.1     grant 
    136  1.1     grant 	wdc_allocate_regs(&sc->sc_wdcdev);
    137  1.1     grant 
    138  1.1     grant 	/* Disable RAID */
    139  1.1     grant 	modectl &= ~IT_MODE_RAID1;
    140  1.1     grant 	/* Disable CPU firmware mode */
    141  1.1     grant 	modectl &= ~IT_MODE_CPU;
    142  1.1     grant 
    143  1.1     grant 	pci_conf_write(sc->sc_pc, sc->sc_tag, IT_MODE, modectl);
    144  1.1     grant 
    145  1.1     grant 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels; channel++) {
    146  1.1     grant 		cp = &sc->pciide_channels[channel];
    147  1.1     grant 
    148  1.1     grant 		if (pciide_chansetup(sc, channel, interface) == 0)
    149  1.1     grant 			continue;
    150  1.1     grant 
    151  1.1     grant 		pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
    152  1.1     grant 		    pciide_pci_intr);
    153  1.1     grant 	}
    154  1.1     grant 	/* Re-read configuration registers after channels setup */
    155  1.1     grant 	cfg = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_CFG);
    156  1.1     grant 	modectl = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_MODE);
    157  1.1     grant 	ATADEBUG_PRINT(("%s: cfg=0x%x, modectl=0x%x\n",
    158  1.1     grant 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, cfg & IT_CFG_MASK,
    159  1.1     grant 	    modectl & IT_MODE_MASK), DEBUG_PROBE);
    160  1.1     grant }
    161  1.1     grant 
    162  1.1     grant static void
    163  1.1     grant ite_setup_channel(struct ata_channel *chp)
    164  1.1     grant {
    165  1.1     grant 	struct ata_drive_datas *drvp;
    166  1.1     grant 	int drive, mode = 0;
    167  1.1     grant 	u_int32_t idedma_ctl;
    168  1.1     grant 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    169  1.1     grant 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    170  1.1     grant 	int channel = chp->ch_channel;
    171  1.1     grant 	pcireg_t cfg, modectl;
    172  1.1     grant 	pcireg_t tim;
    173  1.1     grant 
    174  1.1     grant 	cfg = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_CFG);
    175  1.1     grant 	modectl = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_MODE);
    176  1.1     grant 	tim = pci_conf_read(sc->sc_pc, sc->sc_tag, IT_TIM(channel));
    177  1.1     grant 	ATADEBUG_PRINT(("%s:%d: tim=0x%x\n",
    178  1.1     grant 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    179  1.1     grant 	    channel, tim), DEBUG_PROBE);
    180  1.1     grant 
    181  1.1     grant 	/* Setup DMA if needed */
    182  1.1     grant 	pciide_channel_dma_setup(cp);
    183  1.1     grant 
    184  1.1     grant 	/* Clear all bits for this channel */
    185  1.1     grant 	idedma_ctl = 0;
    186  1.1     grant 
    187  1.1     grant 	/* Per channel settings */
    188  1.1     grant 	for (drive = 0; drive < 2; drive++) {
    189  1.1     grant 		drvp = &chp->ch_drive[drive];
    190  1.1     grant 
    191  1.1     grant 		/* If no drive, skip */
    192  1.1     grant 		if ((drvp->drive_flags & DRIVE) == 0)
    193  1.1     grant 			continue;
    194  1.1     grant 
    195  1.1     grant 		if ((chp->ch_atac->atac_cap & ATAC_CAP_UDMA) != 0 &&
    196  1.1     grant 		    (drvp->drive_flags & DRIVE_UDMA) != 0) {
    197  1.1     grant 			/* Setup UltraDMA mode */
    198  1.1     grant 			drvp->drive_flags &= ~DRIVE_DMA;
    199  1.1     grant 			modectl &= ~IT_MODE_DMA(channel, drive);
    200  1.1     grant 
    201  1.1     grant #if 0
    202  1.1     grant 			/* Check cable, only works in CPU firmware mode */
    203  1.1     grant 			if (drvp->UDMA_mode > 2 &&
    204  1.1     grant 			    (cfg & IT_CFG_CABLE(channel, drive)) == 0) {
    205  1.1     grant 				ATADEBUG_PRINT(("(%s:%d:%d): "
    206  1.1     grant 				    "80-wire cable not detected\n",
    207  1.1     grant 				    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname,
    208  1.1     grant 				    channel, drive), DEBUG_PROBE);
    209  1.1     grant 				drvp->UDMA_mode = 2;
    210  1.1     grant 			}
    211  1.1     grant #endif
    212  1.1     grant 
    213  1.1     grant 			if (drvp->UDMA_mode >= 5)
    214  1.1     grant 				tim |= IT_TIM_UDMA5(drive);
    215  1.1     grant 			else
    216  1.1     grant 				tim &= ~IT_TIM_UDMA5(drive);
    217  1.1     grant 
    218  1.1     grant 			mode = drvp->PIO_mode;
    219  1.1     grant 		} else if ((chp->ch_atac->atac_cap & ATAC_CAP_DMA) != 0 &&
    220  1.1     grant 		    (drvp->drive_flags & DRIVE_DMA) != 0) {
    221  1.1     grant 			/* Setup multiword DMA mode */
    222  1.1     grant 			drvp->drive_flags &= ~DRIVE_UDMA;
    223  1.1     grant 			modectl |= IT_MODE_DMA(channel, drive);
    224  1.1     grant 
    225  1.1     grant 			/* mode = min(pio, dma + 2) */
    226  1.1     grant 			if (drvp->PIO_mode <= (drvp->DMA_mode + 2))
    227  1.1     grant 				mode = drvp->PIO_mode;
    228  1.1     grant 			else
    229  1.1     grant 				mode = drvp->DMA_mode + 2;
    230  1.1     grant 		} else {
    231  1.1     grant 			goto pio;
    232  1.1     grant 		}
    233  1.1     grant 		idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    234  1.1     grant 
    235  1.1     grant pio:
    236  1.1     grant 		/* Setup PIO mode */
    237  1.1     grant 		if (mode <= 2) {
    238  1.1     grant 			drvp->DMA_mode = 0;
    239  1.1     grant 			drvp->PIO_mode = 0;
    240  1.1     grant 			mode = 0;
    241  1.1     grant 		} else {
    242  1.1     grant 			drvp->PIO_mode = mode;
    243  1.1     grant 			drvp->DMA_mode = mode - 2;
    244  1.1     grant 		}
    245  1.1     grant 
    246  1.1     grant 		/* Enable IORDY if PIO mode >= 3 */
    247  1.1     grant 		if (drvp->PIO_mode >= 3)
    248  1.1     grant 			cfg |= IT_CFG_IORDY(channel);
    249  1.1     grant 	}
    250  1.1     grant 
    251  1.1     grant 	ATADEBUG_PRINT(("%s: tim=0x%x\n",
    252  1.1     grant 	    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname, tim), DEBUG_PROBE);
    253  1.1     grant 
    254  1.1     grant 	pci_conf_write(sc->sc_pc, sc->sc_tag, IT_CFG, cfg);
    255  1.1     grant 	pci_conf_write(sc->sc_pc, sc->sc_tag, IT_MODE, modectl);
    256  1.1     grant 	pci_conf_write(sc->sc_pc, sc->sc_tag, IT_TIM(channel), tim);
    257  1.1     grant 
    258  1.1     grant 	if (idedma_ctl != 0) {
    259  1.1     grant 		/* Add software bits in status register */
    260  1.1     grant 		bus_space_write_1(sc->sc_dma_iot,
    261  1.1     grant 		    cp->dma_iohs[IDEDMA_CTL], 0, idedma_ctl);
    262  1.1     grant 	}
    263  1.1     grant }
    264