Home | History | Annotate | Line # | Download | only in pci
cypide.c revision 1.20.40.1
      1  1.20.40.1      mjf /*	$NetBSD: cypide.c,v 1.20.40.1 2008/04/03 12:42:49 mjf 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.14    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.1   bouyer 
     33       1.15    lukem #include <sys/cdefs.h>
     34  1.20.40.1      mjf __KERNEL_RCSID(0, "$NetBSD: cypide.c,v 1.20.40.1 2008/04/03 12:42:49 mjf Exp $");
     35       1.15    lukem 
     36        1.1   bouyer #include <sys/param.h>
     37        1.1   bouyer #include <sys/systm.h>
     38        1.1   bouyer #include <sys/malloc.h>
     39        1.1   bouyer 
     40        1.1   bouyer #include <dev/pci/pcivar.h>
     41        1.1   bouyer #include <dev/pci/pcidevs.h>
     42        1.1   bouyer #include <dev/pci/pciidereg.h>
     43        1.1   bouyer #include <dev/pci/pciidevar.h>
     44        1.1   bouyer #include <dev/pci/pciide_cy693_reg.h>
     45        1.1   bouyer #include <dev/pci/cy82c693var.h>
     46        1.1   bouyer 
     47        1.2  thorpej static void cy693_chip_map(struct pciide_softc*, struct pci_attach_args*);
     48       1.11  thorpej static void cy693_setup_channel(struct ata_channel*);
     49        1.1   bouyer 
     50  1.20.40.1      mjf static int  cypide_match(device_t, cfdata_t, void *);
     51  1.20.40.1      mjf static void cypide_attach(device_t, device_t, void *);
     52        1.1   bouyer 
     53  1.20.40.1      mjf CFATTACH_DECL_NEW(cypide, sizeof(struct pciide_softc),
     54        1.1   bouyer     cypide_match, cypide_attach, NULL, NULL);
     55        1.1   bouyer 
     56        1.2  thorpej static const struct pciide_product_desc pciide_cypress_products[] =  {
     57        1.1   bouyer 	{ PCI_PRODUCT_CONTAQ_82C693,
     58        1.1   bouyer 	  IDE_16BIT_IOSPACE,
     59        1.1   bouyer 	  "Cypress 82C693 IDE Controller",
     60        1.1   bouyer 	  cy693_chip_map,
     61        1.1   bouyer 	},
     62        1.1   bouyer 	{ 0,
     63        1.1   bouyer 	  0,
     64        1.1   bouyer 	  NULL,
     65        1.1   bouyer 	  NULL
     66        1.1   bouyer 	}
     67        1.1   bouyer };
     68        1.1   bouyer 
     69        1.2  thorpej static int
     70  1.20.40.1      mjf cypide_match(device_t parent, cfdata_t match, void *aux)
     71        1.1   bouyer {
     72        1.1   bouyer 	struct pci_attach_args *pa = aux;
     73        1.1   bouyer 
     74        1.3  mycroft 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ &&
     75        1.3  mycroft 	    PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
     76        1.3  mycroft 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
     77        1.1   bouyer 		if (pciide_lookup_product(pa->pa_id, pciide_cypress_products))
     78        1.1   bouyer 			return (2);
     79        1.1   bouyer 	}
     80        1.1   bouyer 	return (0);
     81        1.1   bouyer }
     82        1.1   bouyer 
     83        1.2  thorpej static void
     84  1.20.40.1      mjf cypide_attach(device_t parent, device_t self, void *aux)
     85        1.1   bouyer {
     86        1.1   bouyer 	struct pci_attach_args *pa = aux;
     87  1.20.40.1      mjf 	struct pciide_softc *sc = device_private(self);
     88  1.20.40.1      mjf 
     89  1.20.40.1      mjf 	sc->sc_wdcdev.sc_atac.atac_dev = self;
     90        1.1   bouyer 
     91        1.1   bouyer 	pciide_common_attach(sc, pa,
     92        1.1   bouyer 	    pciide_lookup_product(pa->pa_id, pciide_cypress_products));
     93        1.1   bouyer 
     94        1.1   bouyer }
     95        1.1   bouyer 
     96        1.2  thorpej static void
     97        1.2  thorpej cy693_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
     98       1.14    perry {
     99        1.1   bouyer 	struct pciide_channel *cp;
    100        1.1   bouyer 	pcireg_t interface = PCI_INTERFACE(pa->pa_class);
    101        1.1   bouyer 	bus_size_t cmdsize, ctlsize;
    102        1.1   bouyer 
    103        1.1   bouyer 	if (pciide_chipen(sc, pa) == 0)
    104        1.1   bouyer 		return;
    105        1.1   bouyer 
    106        1.1   bouyer 	/*
    107        1.1   bouyer 	 * this chip has 2 PCI IDE functions, one for primary and one for
    108        1.1   bouyer 	 * secondary. So we need to call pciide_mapregs_compat() with
    109        1.1   bouyer 	 * the real channel
    110        1.1   bouyer 	 */
    111        1.1   bouyer 	if (pa->pa_function == 1) {
    112        1.1   bouyer 		sc->sc_cy_compatchan = 0;
    113        1.1   bouyer 	} else if (pa->pa_function == 2) {
    114        1.1   bouyer 		sc->sc_cy_compatchan = 1;
    115        1.1   bouyer 	} else {
    116  1.20.40.1      mjf 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    117  1.20.40.1      mjf 		    "unexpected PCI function %d\n", pa->pa_function);
    118        1.1   bouyer 		return;
    119        1.1   bouyer 	}
    120        1.1   bouyer 	if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
    121  1.20.40.1      mjf 		aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    122  1.20.40.1      mjf 		    "bus-master DMA support present\n");
    123        1.1   bouyer 		pciide_mapreg_dma(sc, pa);
    124        1.1   bouyer 	} else {
    125  1.20.40.1      mjf 		aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    126  1.20.40.1      mjf 		    "hardware does not support DMA\n");
    127        1.1   bouyer 		sc->sc_dma_ok = 0;
    128        1.1   bouyer 	}
    129        1.1   bouyer 
    130        1.1   bouyer 	sc->sc_cy_handle = cy82c693_init(pa->pa_iot);
    131        1.1   bouyer 	if (sc->sc_cy_handle == NULL) {
    132  1.20.40.1      mjf 		aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    133  1.20.40.1      mjf 		    "unable to map hyperCache control registers\n");
    134        1.1   bouyer 		sc->sc_dma_ok = 0;
    135        1.1   bouyer 	}
    136        1.1   bouyer 
    137       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
    138        1.1   bouyer 	if (sc->sc_dma_ok) {
    139       1.13  thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
    140        1.1   bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    141        1.1   bouyer 	}
    142       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    143       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    144       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = cy693_setup_channel;
    145        1.1   bouyer 
    146       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
    147       1.13  thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = 1;
    148        1.1   bouyer 
    149       1.11  thorpej 	wdc_allocate_regs(&sc->sc_wdcdev);
    150       1.11  thorpej 
    151        1.1   bouyer 	/* Only one channel for this chip; if we are here it's enabled */
    152        1.1   bouyer 	cp = &sc->pciide_channels[0];
    153       1.11  thorpej 	sc->wdc_chanarray[0] = &cp->ata_channel;
    154        1.1   bouyer 	cp->name = PCIIDE_CHANNEL_NAME(0);
    155       1.11  thorpej 	cp->ata_channel.ch_channel = 0;
    156       1.13  thorpej 	cp->ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
    157       1.11  thorpej 	cp->ata_channel.ch_queue =
    158        1.5  thorpej 	    malloc(sizeof(struct ata_queue), M_DEVBUF, M_NOWAIT);
    159       1.17   bouyer 	cp->ata_channel.ch_ndrive = 2;
    160       1.11  thorpej 	if (cp->ata_channel.ch_queue == NULL) {
    161        1.1   bouyer 		aprint_error("%s primary channel: "
    162        1.1   bouyer 		    "can't allocate memory for command queue",
    163  1.20.40.1      mjf 		    device_xname(sc->sc_wdcdev.sc_atac.atac_dev));
    164        1.1   bouyer 		return;
    165        1.1   bouyer 	}
    166  1.20.40.1      mjf 	aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
    167  1.20.40.1      mjf 	    "primary channel %s to ",
    168        1.1   bouyer 	    (interface & PCIIDE_INTERFACE_SETTABLE(0)) ?
    169        1.1   bouyer 	    "configured" : "wired");
    170        1.1   bouyer 	if (interface & PCIIDE_INTERFACE_PCI(0)) {
    171        1.1   bouyer 		aprint_normal("native-PCI mode\n");
    172        1.1   bouyer 		pciide_mapregs_native(pa, cp, &cmdsize, &ctlsize,
    173        1.1   bouyer 		    pciide_pci_intr);
    174        1.1   bouyer 	} else {
    175        1.1   bouyer 		aprint_normal("compatibility mode\n");
    176        1.1   bouyer 		pciide_mapregs_compat(pa, cp, sc->sc_cy_compatchan, &cmdsize,
    177        1.1   bouyer 		    &ctlsize);
    178       1.11  thorpej 		if ((cp->ata_channel.ch_flags & ATACH_DISABLED) == 0)
    179        1.8   bouyer 			pciide_map_compat_intr(pa, cp, sc->sc_cy_compatchan);
    180        1.1   bouyer 	}
    181       1.11  thorpej 	wdcattach(&cp->ata_channel);
    182        1.1   bouyer }
    183        1.1   bouyer 
    184        1.2  thorpej static void
    185       1.11  thorpej cy693_setup_channel(struct ata_channel *chp)
    186        1.1   bouyer {
    187        1.1   bouyer 	struct ata_drive_datas *drvp;
    188        1.1   bouyer 	int drive;
    189        1.1   bouyer 	u_int32_t cy_cmd_ctrl;
    190        1.1   bouyer 	u_int32_t idedma_ctl;
    191       1.12  thorpej 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
    192       1.12  thorpej 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
    193        1.1   bouyer 	int dma_mode = -1;
    194        1.1   bouyer 
    195       1.10  thorpej 	ATADEBUG_PRINT(("cy693_chip_map: old timings reg 0x%x\n",
    196        1.1   bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)),DEBUG_PROBE);
    197        1.1   bouyer 
    198        1.1   bouyer 	cy_cmd_ctrl = idedma_ctl = 0;
    199        1.1   bouyer 
    200        1.1   bouyer 	/* setup DMA if needed */
    201        1.1   bouyer 	pciide_channel_dma_setup(cp);
    202        1.1   bouyer 
    203        1.1   bouyer 	for (drive = 0; drive < 2; drive++) {
    204        1.1   bouyer 		drvp = &chp->ch_drive[drive];
    205        1.1   bouyer 		/* If no drive, skip */
    206        1.1   bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    207        1.1   bouyer 			continue;
    208        1.1   bouyer 		/* add timing values, setup DMA if needed */
    209        1.1   bouyer 		if (drvp->drive_flags & DRIVE_DMA) {
    210        1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    211        1.1   bouyer 			/* use Multiword DMA */
    212        1.1   bouyer 			if (dma_mode == -1 || dma_mode > drvp->DMA_mode)
    213        1.1   bouyer 				dma_mode = drvp->DMA_mode;
    214        1.1   bouyer 		}
    215        1.1   bouyer 		cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
    216        1.1   bouyer 		    CY_CMD_CTRL_IOW_PULSE_OFF(drive));
    217        1.1   bouyer 		cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
    218        1.1   bouyer 		    CY_CMD_CTRL_IOW_REC_OFF(drive));
    219        1.1   bouyer 		cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
    220        1.1   bouyer 		    CY_CMD_CTRL_IOR_PULSE_OFF(drive));
    221        1.1   bouyer 		cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
    222        1.1   bouyer 		    CY_CMD_CTRL_IOR_REC_OFF(drive));
    223        1.1   bouyer 	}
    224        1.1   bouyer 	pci_conf_write(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL, cy_cmd_ctrl);
    225        1.1   bouyer 	chp->ch_drive[0].DMA_mode = dma_mode;
    226        1.1   bouyer 	chp->ch_drive[1].DMA_mode = dma_mode;
    227        1.1   bouyer 
    228        1.1   bouyer 	if (dma_mode == -1)
    229        1.1   bouyer 		dma_mode = 0;
    230        1.1   bouyer 
    231        1.1   bouyer 	if (sc->sc_cy_handle != NULL) {
    232        1.1   bouyer 		/* Note: `multiple' is implied. */
    233        1.1   bouyer 		cy82c693_write(sc->sc_cy_handle,
    234        1.1   bouyer 		    (sc->sc_cy_compatchan == 0) ?
    235        1.1   bouyer 		    CY_DMA_IDX_PRIMARY : CY_DMA_IDX_SECONDARY, dma_mode);
    236        1.1   bouyer 	}
    237        1.1   bouyer 
    238        1.1   bouyer 	if (idedma_ctl != 0) {
    239        1.1   bouyer 		/* Add software bits in status register */
    240        1.4     fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    241        1.4     fvdl 		    idedma_ctl);
    242        1.1   bouyer 	}
    243       1.10  thorpej 	ATADEBUG_PRINT(("cy693_chip_map: new timings reg 0x%x\n",
    244        1.1   bouyer 	    pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)), DEBUG_PROBE);
    245        1.1   bouyer }
    246