Home | History | Annotate | Line # | Download | only in pci
pciide_common.c revision 1.15
      1  1.15  thorpej /*	$NetBSD: pciide_common.c,v 1.15 2004/08/13 03:12:59 thorpej Exp $	*/
      2   1.1   bouyer 
      3   1.1   bouyer 
      4   1.1   bouyer /*
      5   1.1   bouyer  * Copyright (c) 1999, 2000, 2001, 2003 Manuel Bouyer.
      6   1.1   bouyer  *
      7   1.1   bouyer  * Redistribution and use in source and binary forms, with or without
      8   1.1   bouyer  * modification, are permitted provided that the following conditions
      9   1.1   bouyer  * are met:
     10   1.1   bouyer  * 1. Redistributions of source code must retain the above copyright
     11   1.1   bouyer  *    notice, this list of conditions and the following disclaimer.
     12   1.1   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   bouyer  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   bouyer  *    documentation and/or other materials provided with the distribution.
     15   1.1   bouyer  * 3. All advertising materials mentioning features or use of this software
     16   1.1   bouyer  *    must display the following acknowledgement:
     17   1.1   bouyer  *	This product includes software developed by Manuel Bouyer.
     18   1.1   bouyer  * 4. Neither the name of the University nor the names of its contributors
     19   1.1   bouyer  *    may be used to endorse or promote products derived from this software
     20   1.1   bouyer  *    without specific prior written permission.
     21   1.1   bouyer  *
     22   1.1   bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23   1.1   bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24   1.1   bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25   1.1   bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26   1.1   bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27   1.1   bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28   1.1   bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29   1.1   bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30   1.1   bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31   1.1   bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32   1.1   bouyer  *
     33   1.1   bouyer  */
     34   1.1   bouyer 
     35   1.1   bouyer 
     36   1.1   bouyer /*
     37   1.1   bouyer  * Copyright (c) 1996, 1998 Christopher G. Demetriou.  All rights reserved.
     38   1.1   bouyer  *
     39   1.1   bouyer  * Redistribution and use in source and binary forms, with or without
     40   1.1   bouyer  * modification, are permitted provided that the following conditions
     41   1.1   bouyer  * are met:
     42   1.1   bouyer  * 1. Redistributions of source code must retain the above copyright
     43   1.1   bouyer  *    notice, this list of conditions and the following disclaimer.
     44   1.1   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     45   1.1   bouyer  *    notice, this list of conditions and the following disclaimer in the
     46   1.1   bouyer  *    documentation and/or other materials provided with the distribution.
     47   1.1   bouyer  * 3. All advertising materials mentioning features or use of this software
     48   1.1   bouyer  *    must display the following acknowledgement:
     49   1.1   bouyer  *      This product includes software developed by Christopher G. Demetriou
     50   1.1   bouyer  *	for the NetBSD Project.
     51   1.1   bouyer  * 4. The name of the author may not be used to endorse or promote products
     52   1.1   bouyer  *    derived from this software without specific prior written permission
     53   1.1   bouyer  *
     54   1.1   bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     55   1.1   bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     56   1.1   bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     57   1.1   bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     58   1.1   bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     59   1.1   bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     60   1.1   bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     61   1.1   bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     62   1.1   bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     63   1.1   bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     64   1.1   bouyer  */
     65   1.1   bouyer 
     66   1.1   bouyer /*
     67   1.1   bouyer  * PCI IDE controller driver.
     68   1.1   bouyer  *
     69   1.1   bouyer  * Author: Christopher G. Demetriou, March 2, 1998 (derived from NetBSD
     70   1.1   bouyer  * sys/dev/pci/ppb.c, revision 1.16).
     71   1.1   bouyer  *
     72   1.1   bouyer  * See "PCI IDE Controller Specification, Revision 1.0 3/4/94" and
     73   1.1   bouyer  * "Programming Interface for Bus Master IDE Controller, Revision 1.0
     74   1.1   bouyer  * 5/16/94" from the PCI SIG.
     75   1.1   bouyer  *
     76   1.1   bouyer  */
     77   1.1   bouyer 
     78   1.1   bouyer #include <sys/cdefs.h>
     79  1.15  thorpej __KERNEL_RCSID(0, "$NetBSD: pciide_common.c,v 1.15 2004/08/13 03:12:59 thorpej Exp $");
     80   1.1   bouyer 
     81   1.1   bouyer #include <sys/param.h>
     82   1.1   bouyer #include <sys/malloc.h>
     83   1.1   bouyer 
     84   1.1   bouyer #include <uvm/uvm_extern.h>
     85   1.1   bouyer 
     86   1.1   bouyer #include <dev/pci/pcireg.h>
     87   1.1   bouyer #include <dev/pci/pcivar.h>
     88   1.1   bouyer #include <dev/pci/pcidevs.h>
     89   1.1   bouyer #include <dev/pci/pciidereg.h>
     90   1.1   bouyer #include <dev/pci/pciidevar.h>
     91   1.1   bouyer 
     92   1.3     fvdl #include <dev/ic/wdcreg.h>
     93   1.3     fvdl 
     94   1.1   bouyer #ifdef WDCDEBUG
     95   1.1   bouyer int wdcdebug_pciide_mask = 0;
     96   1.1   bouyer #endif
     97   1.1   bouyer 
     98   1.1   bouyer static const char dmaerrfmt[] =
     99   1.1   bouyer     "%s:%d: unable to %s table DMA map for drive %d, error=%d\n";
    100   1.1   bouyer 
    101   1.1   bouyer /* Default product description for devices not known from this controller */
    102   1.1   bouyer const struct pciide_product_desc default_product_desc = {
    103   1.1   bouyer 	0,
    104   1.1   bouyer 	0,
    105   1.1   bouyer 	"Generic PCI IDE controller",
    106   1.1   bouyer 	default_chip_map,
    107   1.1   bouyer };
    108   1.1   bouyer 
    109   1.1   bouyer const struct pciide_product_desc *
    110   1.1   bouyer pciide_lookup_product(id, pp)
    111   1.1   bouyer 	pcireg_t id;
    112   1.1   bouyer 	const struct pciide_product_desc *pp;
    113   1.1   bouyer {
    114   1.1   bouyer 	for (; pp->chip_map != NULL; pp++)
    115   1.1   bouyer 		if (PCI_PRODUCT(id) == pp->ide_product)
    116   1.1   bouyer 			break;
    117   1.1   bouyer 
    118   1.1   bouyer 	if (pp->chip_map == NULL)
    119   1.1   bouyer 		return NULL;
    120   1.1   bouyer 	return pp;
    121   1.1   bouyer }
    122   1.1   bouyer 
    123   1.1   bouyer void
    124   1.1   bouyer pciide_common_attach(sc, pa, pp)
    125   1.1   bouyer 	struct pciide_softc *sc;
    126   1.1   bouyer 	struct pci_attach_args *pa;
    127   1.1   bouyer 	const struct pciide_product_desc *pp;
    128   1.1   bouyer {
    129   1.1   bouyer 	pci_chipset_tag_t pc = pa->pa_pc;
    130   1.1   bouyer 	pcitag_t tag = pa->pa_tag;
    131   1.1   bouyer 	pcireg_t csr;
    132   1.1   bouyer 	char devinfo[256];
    133   1.1   bouyer 	const char *displaydev;
    134   1.1   bouyer 
    135   1.1   bouyer 	aprint_naive(": disk controller\n");
    136   1.1   bouyer 	aprint_normal("\n");
    137   1.1   bouyer 
    138   1.1   bouyer 	sc->sc_pci_id = pa->pa_id;
    139   1.1   bouyer 	if (pp == NULL) {
    140   1.1   bouyer 		/* should only happen for generic pciide devices */
    141   1.1   bouyer 		sc->sc_pp = &default_product_desc;
    142   1.9   itojun 		pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    143   1.1   bouyer 		displaydev = devinfo;
    144   1.1   bouyer 	} else {
    145   1.1   bouyer 		sc->sc_pp = pp;
    146   1.1   bouyer 		displaydev = sc->sc_pp->ide_name;
    147   1.1   bouyer 	}
    148   1.1   bouyer 
    149   1.1   bouyer 	/* if displaydev == NULL, printf is done in chip-specific map */
    150   1.1   bouyer 	if (displaydev)
    151   1.1   bouyer 		aprint_normal("%s: %s (rev. 0x%02x)\n",
    152   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, displaydev,
    153   1.1   bouyer 		    PCI_REVISION(pa->pa_class));
    154   1.1   bouyer 
    155   1.1   bouyer 	sc->sc_pc = pa->pa_pc;
    156   1.1   bouyer 	sc->sc_tag = pa->pa_tag;
    157   1.1   bouyer 
    158   1.1   bouyer 	/* Set up DMA defaults; these might be adjusted by chip_map. */
    159   1.1   bouyer 	sc->sc_dma_maxsegsz = IDEDMA_BYTE_COUNT_MAX;
    160   1.1   bouyer 	sc->sc_dma_boundary = IDEDMA_BYTE_COUNT_ALIGN;
    161   1.1   bouyer 
    162   1.1   bouyer #ifdef WDCDEBUG
    163   1.1   bouyer 	if (wdcdebug_pciide_mask & DEBUG_PROBE)
    164   1.1   bouyer 		pci_conf_print(sc->sc_pc, sc->sc_tag, NULL);
    165   1.1   bouyer #endif
    166   1.1   bouyer 	sc->sc_pp->chip_map(sc, pa);
    167   1.1   bouyer 
    168   1.1   bouyer 	if (sc->sc_dma_ok) {
    169   1.1   bouyer 		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
    170   1.1   bouyer 		csr |= PCI_COMMAND_MASTER_ENABLE;
    171   1.1   bouyer 		pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
    172   1.1   bouyer 	}
    173   1.1   bouyer 	WDCDEBUG_PRINT(("pciide: command/status register=%x\n",
    174   1.1   bouyer 	    pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG)), DEBUG_PROBE);
    175   1.1   bouyer }
    176   1.1   bouyer 
    177   1.1   bouyer /* tell whether the chip is enabled or not */
    178   1.1   bouyer int
    179   1.1   bouyer pciide_chipen(sc, pa)
    180   1.1   bouyer 	struct pciide_softc *sc;
    181   1.1   bouyer 	struct pci_attach_args *pa;
    182   1.1   bouyer {
    183   1.1   bouyer 	pcireg_t csr;
    184   1.1   bouyer 
    185   1.1   bouyer 	if ((pa->pa_flags & PCI_FLAGS_IO_ENABLED) == 0) {
    186   1.1   bouyer 		csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
    187   1.1   bouyer 		    PCI_COMMAND_STATUS_REG);
    188   1.1   bouyer 		aprint_normal("%s: device disabled (at %s)\n",
    189   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname,
    190   1.1   bouyer 		   (csr & PCI_COMMAND_IO_ENABLE) == 0 ?
    191   1.1   bouyer 		   "device" : "bridge");
    192   1.1   bouyer 		return 0;
    193   1.1   bouyer 	}
    194   1.1   bouyer 	return 1;
    195   1.1   bouyer }
    196   1.1   bouyer 
    197   1.1   bouyer void
    198   1.1   bouyer pciide_mapregs_compat(pa, cp, compatchan, cmdsizep, ctlsizep)
    199   1.1   bouyer 	struct pci_attach_args *pa;
    200   1.1   bouyer 	struct pciide_channel *cp;
    201   1.1   bouyer 	int compatchan;
    202   1.1   bouyer 	bus_size_t *cmdsizep, *ctlsizep;
    203   1.1   bouyer {
    204   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    205   1.7  thorpej 	struct wdc_channel *wdc_cp = &cp->wdc_channel;
    206   1.3     fvdl 	int i;
    207   1.1   bouyer 
    208   1.1   bouyer 	cp->compat = 1;
    209   1.1   bouyer 	*cmdsizep = PCIIDE_COMPAT_CMD_SIZE;
    210   1.1   bouyer 	*ctlsizep = PCIIDE_COMPAT_CTL_SIZE;
    211   1.1   bouyer 
    212   1.1   bouyer 	wdc_cp->cmd_iot = pa->pa_iot;
    213   1.1   bouyer 	if (bus_space_map(wdc_cp->cmd_iot, PCIIDE_COMPAT_CMD_BASE(compatchan),
    214   1.3     fvdl 	    PCIIDE_COMPAT_CMD_SIZE, 0, &wdc_cp->cmd_baseioh) != 0) {
    215   1.1   bouyer 		aprint_error("%s: couldn't map %s channel cmd regs\n",
    216   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    217   1.1   bouyer 		goto bad;
    218   1.1   bouyer 	}
    219   1.1   bouyer 
    220   1.1   bouyer 	wdc_cp->ctl_iot = pa->pa_iot;
    221   1.1   bouyer 	if (bus_space_map(wdc_cp->ctl_iot, PCIIDE_COMPAT_CTL_BASE(compatchan),
    222   1.1   bouyer 	    PCIIDE_COMPAT_CTL_SIZE, 0, &wdc_cp->ctl_ioh) != 0) {
    223   1.1   bouyer 		aprint_error("%s: couldn't map %s channel ctl regs\n",
    224   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    225   1.3     fvdl 		bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_baseioh,
    226   1.1   bouyer 		    PCIIDE_COMPAT_CMD_SIZE);
    227   1.1   bouyer 		goto bad;
    228   1.1   bouyer 	}
    229   1.1   bouyer 
    230   1.3     fvdl 	for (i = 0; i < WDC_NREG; i++) {
    231   1.3     fvdl 		if (bus_space_subregion(wdc_cp->cmd_iot, wdc_cp->cmd_baseioh, i,
    232   1.3     fvdl 		    i == 0 ? 4 : 1, &wdc_cp->cmd_iohs[i]) != 0) {
    233   1.3     fvdl 			aprint_error("%s: couldn't subregion %s channel "
    234   1.3     fvdl 				     "cmd regs\n",
    235   1.3     fvdl 			    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    236   1.3     fvdl 			goto bad;
    237   1.3     fvdl 		}
    238   1.3     fvdl 	}
    239  1.11  thorpej 	wdc_init_shadow_regs(wdc_cp);
    240   1.1   bouyer 	wdc_cp->data32iot = wdc_cp->cmd_iot;
    241   1.3     fvdl 	wdc_cp->data32ioh = wdc_cp->cmd_iohs[0];
    242   1.1   bouyer 	return;
    243   1.1   bouyer 
    244   1.1   bouyer bad:
    245   1.1   bouyer 	cp->wdc_channel.ch_flags |= WDCF_DISABLED;
    246   1.1   bouyer 	return;
    247   1.1   bouyer }
    248   1.1   bouyer 
    249   1.1   bouyer void
    250   1.1   bouyer pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep, pci_intr)
    251   1.1   bouyer 	struct pci_attach_args * pa;
    252   1.1   bouyer 	struct pciide_channel *cp;
    253   1.1   bouyer 	bus_size_t *cmdsizep, *ctlsizep;
    254   1.1   bouyer 	int (*pci_intr) __P((void *));
    255   1.1   bouyer {
    256   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    257   1.7  thorpej 	struct wdc_channel *wdc_cp = &cp->wdc_channel;
    258   1.1   bouyer 	const char *intrstr;
    259   1.1   bouyer 	pci_intr_handle_t intrhandle;
    260   1.3     fvdl 	int i;
    261   1.1   bouyer 
    262   1.1   bouyer 	cp->compat = 0;
    263   1.1   bouyer 
    264   1.1   bouyer 	if (sc->sc_pci_ih == NULL) {
    265   1.1   bouyer 		if (pci_intr_map(pa, &intrhandle) != 0) {
    266   1.1   bouyer 			aprint_error("%s: couldn't map native-PCI interrupt\n",
    267   1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname);
    268   1.1   bouyer 			goto bad;
    269   1.1   bouyer 		}
    270   1.1   bouyer 		intrstr = pci_intr_string(pa->pa_pc, intrhandle);
    271   1.1   bouyer 		sc->sc_pci_ih = pci_intr_establish(pa->pa_pc,
    272   1.1   bouyer 		    intrhandle, IPL_BIO, pci_intr, sc);
    273   1.1   bouyer 		if (sc->sc_pci_ih != NULL) {
    274   1.1   bouyer 			aprint_normal("%s: using %s for native-PCI interrupt\n",
    275   1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname,
    276   1.1   bouyer 			    intrstr ? intrstr : "unknown interrupt");
    277   1.1   bouyer 		} else {
    278   1.1   bouyer 			aprint_error(
    279   1.1   bouyer 			    "%s: couldn't establish native-PCI interrupt",
    280   1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname);
    281   1.1   bouyer 			if (intrstr != NULL)
    282   1.1   bouyer 				aprint_normal(" at %s", intrstr);
    283   1.1   bouyer 			aprint_normal("\n");
    284   1.1   bouyer 			goto bad;
    285   1.1   bouyer 		}
    286   1.1   bouyer 	}
    287   1.1   bouyer 	cp->ih = sc->sc_pci_ih;
    288   1.8  thorpej 	if (pci_mapreg_map(pa, PCIIDE_REG_CMD_BASE(wdc_cp->ch_channel),
    289   1.1   bouyer 	    PCI_MAPREG_TYPE_IO, 0,
    290   1.3     fvdl 	    &wdc_cp->cmd_iot, &wdc_cp->cmd_baseioh, NULL, cmdsizep) != 0) {
    291   1.1   bouyer 		aprint_error("%s: couldn't map %s channel cmd regs\n",
    292   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    293   1.1   bouyer 		goto bad;
    294   1.1   bouyer 	}
    295   1.1   bouyer 
    296   1.8  thorpej 	if (pci_mapreg_map(pa, PCIIDE_REG_CTL_BASE(wdc_cp->ch_channel),
    297   1.1   bouyer 	    PCI_MAPREG_TYPE_IO, 0,
    298   1.1   bouyer 	    &wdc_cp->ctl_iot, &cp->ctl_baseioh, NULL, ctlsizep) != 0) {
    299   1.1   bouyer 		aprint_error("%s: couldn't map %s channel ctl regs\n",
    300   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    301   1.3     fvdl 		bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_baseioh,
    302   1.3     fvdl 		    *cmdsizep);
    303   1.1   bouyer 		goto bad;
    304   1.1   bouyer 	}
    305   1.1   bouyer 	/*
    306   1.1   bouyer 	 * In native mode, 4 bytes of I/O space are mapped for the control
    307   1.1   bouyer 	 * register, the control register is at offset 2. Pass the generic
    308   1.1   bouyer 	 * code a handle for only one byte at the right offset.
    309   1.1   bouyer 	 */
    310   1.1   bouyer 	if (bus_space_subregion(wdc_cp->ctl_iot, cp->ctl_baseioh, 2, 1,
    311   1.1   bouyer 	    &wdc_cp->ctl_ioh) != 0) {
    312   1.1   bouyer 		aprint_error("%s: unable to subregion %s channel ctl regs\n",
    313   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    314   1.3     fvdl 		bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_baseioh,
    315   1.3     fvdl 		     *cmdsizep);
    316   1.1   bouyer 		bus_space_unmap(wdc_cp->cmd_iot, cp->ctl_baseioh, *ctlsizep);
    317   1.1   bouyer 		goto bad;
    318   1.1   bouyer 	}
    319   1.1   bouyer 
    320   1.3     fvdl 	for (i = 0; i < WDC_NREG; i++) {
    321   1.3     fvdl 		if (bus_space_subregion(wdc_cp->cmd_iot, wdc_cp->cmd_baseioh, i,
    322   1.3     fvdl 		    i == 0 ? 4 : 1, &wdc_cp->cmd_iohs[i]) != 0) {
    323   1.3     fvdl 			aprint_error("%s: couldn't subregion %s channel "
    324   1.3     fvdl 				     "cmd regs\n",
    325   1.3     fvdl 			    sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    326   1.3     fvdl 			goto bad;
    327   1.3     fvdl 		}
    328   1.3     fvdl 	}
    329  1.11  thorpej 	wdc_init_shadow_regs(wdc_cp);
    330   1.1   bouyer 	wdc_cp->data32iot = wdc_cp->cmd_iot;
    331   1.3     fvdl 	wdc_cp->data32ioh = wdc_cp->cmd_iohs[0];
    332   1.1   bouyer 	return;
    333   1.1   bouyer 
    334   1.1   bouyer bad:
    335   1.1   bouyer 	cp->wdc_channel.ch_flags |= WDCF_DISABLED;
    336   1.1   bouyer 	return;
    337   1.1   bouyer }
    338   1.1   bouyer 
    339   1.1   bouyer void
    340   1.1   bouyer pciide_mapreg_dma(sc, pa)
    341   1.1   bouyer 	struct pciide_softc *sc;
    342   1.1   bouyer 	struct pci_attach_args *pa;
    343   1.1   bouyer {
    344   1.1   bouyer 	pcireg_t maptype;
    345   1.1   bouyer 	bus_addr_t addr;
    346   1.3     fvdl 	struct pciide_channel *pc;
    347   1.3     fvdl 	int reg, chan;
    348   1.3     fvdl 	bus_size_t size;
    349   1.1   bouyer 
    350   1.1   bouyer 	/*
    351   1.1   bouyer 	 * Map DMA registers
    352   1.1   bouyer 	 *
    353   1.1   bouyer 	 * Note that sc_dma_ok is the right variable to test to see if
    354   1.1   bouyer 	 * DMA can be done.  If the interface doesn't support DMA,
    355   1.1   bouyer 	 * sc_dma_ok will never be non-zero.  If the DMA regs couldn't
    356   1.1   bouyer 	 * be mapped, it'll be zero.  I.e., sc_dma_ok will only be
    357   1.1   bouyer 	 * non-zero if the interface supports DMA and the registers
    358   1.1   bouyer 	 * could be mapped.
    359   1.1   bouyer 	 *
    360   1.1   bouyer 	 * XXX Note that despite the fact that the Bus Master IDE specs
    361   1.1   bouyer 	 * XXX say that "The bus master IDE function uses 16 bytes of IO
    362   1.1   bouyer 	 * XXX space," some controllers (at least the United
    363   1.1   bouyer 	 * XXX Microelectronics UM8886BF) place it in memory space.
    364   1.1   bouyer 	 */
    365   1.1   bouyer 	maptype = pci_mapreg_type(pa->pa_pc, pa->pa_tag,
    366   1.1   bouyer 	    PCIIDE_REG_BUS_MASTER_DMA);
    367   1.1   bouyer 
    368   1.1   bouyer 	switch (maptype) {
    369   1.1   bouyer 	case PCI_MAPREG_TYPE_IO:
    370   1.1   bouyer 		sc->sc_dma_ok = (pci_mapreg_info(pa->pa_pc, pa->pa_tag,
    371   1.1   bouyer 		    PCIIDE_REG_BUS_MASTER_DMA, PCI_MAPREG_TYPE_IO,
    372   1.1   bouyer 		    &addr, NULL, NULL) == 0);
    373   1.1   bouyer 		if (sc->sc_dma_ok == 0) {
    374   1.1   bouyer 			aprint_normal(
    375   1.1   bouyer 			    ", but unused (couldn't query registers)");
    376   1.1   bouyer 			break;
    377   1.1   bouyer 		}
    378   1.1   bouyer 		if ((sc->sc_pp->ide_flags & IDE_16BIT_IOSPACE)
    379   1.1   bouyer 		    && addr >= 0x10000) {
    380   1.1   bouyer 			sc->sc_dma_ok = 0;
    381   1.1   bouyer 			aprint_normal(
    382   1.1   bouyer 			    ", but unused (registers at unsafe address "
    383   1.1   bouyer 			    "%#lx)", (unsigned long)addr);
    384   1.1   bouyer 			break;
    385   1.1   bouyer 		}
    386   1.1   bouyer 		/* FALLTHROUGH */
    387   1.1   bouyer 
    388   1.1   bouyer 	case PCI_MAPREG_MEM_TYPE_32BIT:
    389   1.1   bouyer 		sc->sc_dma_ok = (pci_mapreg_map(pa,
    390   1.1   bouyer 		    PCIIDE_REG_BUS_MASTER_DMA, maptype, 0,
    391   1.1   bouyer 		    &sc->sc_dma_iot, &sc->sc_dma_ioh, NULL, NULL) == 0);
    392   1.1   bouyer 		sc->sc_dmat = pa->pa_dmat;
    393   1.1   bouyer 		if (sc->sc_dma_ok == 0) {
    394   1.1   bouyer 			aprint_normal(", but unused (couldn't map registers)");
    395   1.1   bouyer 		} else {
    396   1.1   bouyer 			sc->sc_wdcdev.dma_arg = sc;
    397   1.1   bouyer 			sc->sc_wdcdev.dma_init = pciide_dma_init;
    398   1.1   bouyer 			sc->sc_wdcdev.dma_start = pciide_dma_start;
    399   1.1   bouyer 			sc->sc_wdcdev.dma_finish = pciide_dma_finish;
    400   1.1   bouyer 		}
    401   1.1   bouyer 
    402   1.1   bouyer 		if (sc->sc_wdcdev.sc_dev.dv_cfdata->cf_flags &
    403   1.1   bouyer 		    PCIIDE_OPTIONS_NODMA) {
    404   1.1   bouyer 			aprint_normal(
    405   1.1   bouyer 			    ", but unused (forced off by config file)");
    406   1.1   bouyer 			sc->sc_dma_ok = 0;
    407   1.1   bouyer 		}
    408   1.1   bouyer 		break;
    409   1.1   bouyer 
    410   1.1   bouyer 	default:
    411   1.1   bouyer 		sc->sc_dma_ok = 0;
    412   1.1   bouyer 		aprint_normal(
    413   1.1   bouyer 		    ", but unsupported register maptype (0x%x)", maptype);
    414   1.1   bouyer 	}
    415   1.3     fvdl 
    416  1.12   bouyer 	if (sc->sc_dma_ok == 0)
    417  1.12   bouyer 		return;
    418  1.12   bouyer 
    419   1.3     fvdl 	/*
    420   1.3     fvdl 	 * Set up the default handles for the DMA registers.
    421   1.3     fvdl 	 * Just reserve 32 bits for each handle, unless space
    422   1.3     fvdl 	 * doesn't permit it.
    423   1.3     fvdl 	 */
    424   1.3     fvdl 	for (chan = 0; chan < PCIIDE_NUM_CHANNELS; chan++) {
    425   1.3     fvdl 		pc = &sc->pciide_channels[chan];
    426   1.3     fvdl 		for (reg = 0; reg < IDEDMA_NREGS; reg++) {
    427   1.3     fvdl 			size = 4;
    428   1.3     fvdl 			if (size > (IDEDMA_SCH_OFFSET - reg))
    429   1.3     fvdl 				size = IDEDMA_SCH_OFFSET - reg;
    430   1.3     fvdl 			if (bus_space_subregion(sc->sc_dma_iot, sc->sc_dma_ioh,
    431   1.3     fvdl 			    IDEDMA_SCH_OFFSET * chan + reg, size,
    432   1.3     fvdl 			    &pc->dma_iohs[reg]) != 0) {
    433   1.3     fvdl 				sc->sc_dma_ok = 0;
    434   1.3     fvdl 				aprint_normal(", but can't subregion offset %d "
    435   1.3     fvdl 					      "size %lu", reg, (u_long)size);
    436   1.3     fvdl 				return;
    437   1.3     fvdl 			}
    438   1.3     fvdl 		}
    439   1.3     fvdl 	}
    440   1.1   bouyer }
    441   1.1   bouyer 
    442   1.1   bouyer int
    443   1.1   bouyer pciide_compat_intr(arg)
    444   1.1   bouyer 	void *arg;
    445   1.1   bouyer {
    446   1.1   bouyer 	struct pciide_channel *cp = arg;
    447   1.1   bouyer 
    448   1.1   bouyer #ifdef DIAGNOSTIC
    449   1.1   bouyer 	/* should only be called for a compat channel */
    450   1.1   bouyer 	if (cp->compat == 0)
    451   1.1   bouyer 		panic("pciide compat intr called for non-compat chan %p", cp);
    452   1.1   bouyer #endif
    453   1.1   bouyer 	return (wdcintr(&cp->wdc_channel));
    454   1.1   bouyer }
    455   1.1   bouyer 
    456   1.1   bouyer int
    457   1.1   bouyer pciide_pci_intr(arg)
    458   1.1   bouyer 	void *arg;
    459   1.1   bouyer {
    460   1.1   bouyer 	struct pciide_softc *sc = arg;
    461   1.1   bouyer 	struct pciide_channel *cp;
    462   1.7  thorpej 	struct wdc_channel *wdc_cp;
    463   1.1   bouyer 	int i, rv, crv;
    464   1.1   bouyer 
    465   1.1   bouyer 	rv = 0;
    466   1.1   bouyer 	for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
    467   1.1   bouyer 		cp = &sc->pciide_channels[i];
    468   1.1   bouyer 		wdc_cp = &cp->wdc_channel;
    469   1.1   bouyer 
    470   1.1   bouyer 		/* If a compat channel skip. */
    471   1.1   bouyer 		if (cp->compat)
    472   1.1   bouyer 			continue;
    473   1.1   bouyer 		/* if this channel not waiting for intr, skip */
    474   1.1   bouyer 		if ((wdc_cp->ch_flags & WDCF_IRQ_WAIT) == 0)
    475   1.1   bouyer 			continue;
    476   1.1   bouyer 
    477   1.1   bouyer 		crv = wdcintr(wdc_cp);
    478   1.1   bouyer 		if (crv == 0)
    479   1.1   bouyer 			;		/* leave rv alone */
    480   1.1   bouyer 		else if (crv == 1)
    481   1.1   bouyer 			rv = 1;		/* claim the intr */
    482   1.1   bouyer 		else if (rv == 0)	/* crv should be -1 in this case */
    483   1.1   bouyer 			rv = crv;	/* if we've done no better, take it */
    484   1.1   bouyer 	}
    485   1.1   bouyer 	return (rv);
    486   1.1   bouyer }
    487   1.1   bouyer 
    488   1.1   bouyer void
    489   1.1   bouyer pciide_channel_dma_setup(cp)
    490   1.1   bouyer 	struct pciide_channel *cp;
    491   1.1   bouyer {
    492   1.1   bouyer 	int drive;
    493   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    494   1.1   bouyer 	struct ata_drive_datas *drvp;
    495   1.1   bouyer 
    496   1.1   bouyer 	for (drive = 0; drive < 2; drive++) {
    497   1.1   bouyer 		drvp = &cp->wdc_channel.ch_drive[drive];
    498   1.1   bouyer 		/* If no drive, skip */
    499   1.1   bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    500   1.1   bouyer 			continue;
    501   1.1   bouyer 		/* setup DMA if needed */
    502   1.1   bouyer 		if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
    503   1.1   bouyer 		    (drvp->drive_flags & DRIVE_UDMA) == 0) ||
    504   1.1   bouyer 		    sc->sc_dma_ok == 0) {
    505   1.1   bouyer 			drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
    506   1.1   bouyer 			continue;
    507   1.1   bouyer 		}
    508   1.8  thorpej 		if (pciide_dma_table_setup(sc, cp->wdc_channel.ch_channel,
    509   1.8  thorpej 					   drive) != 0) {
    510   1.1   bouyer 			/* Abort DMA setup */
    511   1.1   bouyer 			drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
    512   1.1   bouyer 			continue;
    513   1.1   bouyer 		}
    514   1.1   bouyer 	}
    515   1.1   bouyer }
    516   1.1   bouyer 
    517   1.1   bouyer int
    518   1.1   bouyer pciide_dma_table_setup(sc, channel, drive)
    519   1.1   bouyer 	struct pciide_softc *sc;
    520   1.1   bouyer 	int channel, drive;
    521   1.1   bouyer {
    522   1.1   bouyer 	bus_dma_segment_t seg;
    523   1.1   bouyer 	int error, rseg;
    524   1.1   bouyer 	const bus_size_t dma_table_size =
    525   1.1   bouyer 	    sizeof(struct idedma_table) * NIDEDMA_TABLES;
    526   1.1   bouyer 	struct pciide_dma_maps *dma_maps =
    527   1.1   bouyer 	    &sc->pciide_channels[channel].dma_maps[drive];
    528   1.1   bouyer 
    529   1.1   bouyer 	/* If table was already allocated, just return */
    530   1.1   bouyer 	if (dma_maps->dma_table)
    531   1.1   bouyer 		return 0;
    532   1.1   bouyer 
    533   1.1   bouyer 	/* Allocate memory for the DMA tables and map it */
    534   1.1   bouyer 	if ((error = bus_dmamem_alloc(sc->sc_dmat, dma_table_size,
    535   1.1   bouyer 	    IDEDMA_TBL_ALIGN, IDEDMA_TBL_ALIGN, &seg, 1, &rseg,
    536   1.1   bouyer 	    BUS_DMA_NOWAIT)) != 0) {
    537   1.1   bouyer 		aprint_error(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    538   1.1   bouyer 		    "allocate", drive, error);
    539   1.1   bouyer 		return error;
    540   1.1   bouyer 	}
    541   1.1   bouyer 	if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
    542   1.1   bouyer 	    dma_table_size,
    543   1.1   bouyer 	    (caddr_t *)&dma_maps->dma_table,
    544   1.1   bouyer 	    BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
    545   1.1   bouyer 		aprint_error(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    546   1.1   bouyer 		    "map", drive, error);
    547   1.1   bouyer 		return error;
    548   1.1   bouyer 	}
    549   1.1   bouyer 	WDCDEBUG_PRINT(("pciide_dma_table_setup: table at %p len %lu, "
    550   1.1   bouyer 	    "phy 0x%lx\n", dma_maps->dma_table, (u_long)dma_table_size,
    551   1.1   bouyer 	    (unsigned long)seg.ds_addr), DEBUG_PROBE);
    552   1.1   bouyer 	/* Create and load table DMA map for this disk */
    553   1.1   bouyer 	if ((error = bus_dmamap_create(sc->sc_dmat, dma_table_size,
    554   1.1   bouyer 	    1, dma_table_size, IDEDMA_TBL_ALIGN, BUS_DMA_NOWAIT,
    555   1.1   bouyer 	    &dma_maps->dmamap_table)) != 0) {
    556   1.1   bouyer 		aprint_error(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    557   1.1   bouyer 		    "create", drive, error);
    558   1.1   bouyer 		return error;
    559   1.1   bouyer 	}
    560   1.1   bouyer 	if ((error = bus_dmamap_load(sc->sc_dmat,
    561   1.1   bouyer 	    dma_maps->dmamap_table,
    562   1.1   bouyer 	    dma_maps->dma_table,
    563   1.1   bouyer 	    dma_table_size, NULL, BUS_DMA_NOWAIT)) != 0) {
    564   1.1   bouyer 		aprint_error(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    565   1.1   bouyer 		    "load", drive, error);
    566   1.1   bouyer 		return error;
    567   1.1   bouyer 	}
    568   1.1   bouyer 	WDCDEBUG_PRINT(("pciide_dma_table_setup: phy addr of table 0x%lx\n",
    569   1.1   bouyer 	    (unsigned long)dma_maps->dmamap_table->dm_segs[0].ds_addr),
    570   1.1   bouyer 	    DEBUG_PROBE);
    571   1.1   bouyer 	/* Create a xfer DMA map for this drive */
    572   1.1   bouyer 	if ((error = bus_dmamap_create(sc->sc_dmat, IDEDMA_BYTE_COUNT_MAX,
    573   1.1   bouyer 	    NIDEDMA_TABLES, sc->sc_dma_maxsegsz, sc->sc_dma_boundary,
    574   1.1   bouyer 	    BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
    575   1.1   bouyer 	    &dma_maps->dmamap_xfer)) != 0) {
    576   1.1   bouyer 		aprint_error(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    577   1.1   bouyer 		    "create xfer", drive, error);
    578   1.1   bouyer 		return error;
    579   1.1   bouyer 	}
    580   1.1   bouyer 	return 0;
    581   1.1   bouyer }
    582   1.1   bouyer 
    583   1.1   bouyer int
    584   1.1   bouyer pciide_dma_init(v, channel, drive, databuf, datalen, flags)
    585   1.1   bouyer 	void *v;
    586   1.1   bouyer 	int channel, drive;
    587   1.1   bouyer 	void *databuf;
    588   1.1   bouyer 	size_t datalen;
    589   1.1   bouyer 	int flags;
    590   1.1   bouyer {
    591   1.1   bouyer 	struct pciide_softc *sc = v;
    592   1.1   bouyer 	int error, seg;
    593   1.3     fvdl 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    594   1.3     fvdl 	struct pciide_dma_maps *dma_maps = &cp->dma_maps[drive];
    595   1.1   bouyer 
    596   1.1   bouyer 	error = bus_dmamap_load(sc->sc_dmat,
    597   1.1   bouyer 	    dma_maps->dmamap_xfer,
    598   1.1   bouyer 	    databuf, datalen, NULL, BUS_DMA_NOWAIT | BUS_DMA_STREAMING |
    599   1.1   bouyer 	    ((flags & WDC_DMA_READ) ? BUS_DMA_READ : BUS_DMA_WRITE));
    600   1.1   bouyer 	if (error) {
    601   1.1   bouyer 		printf(dmaerrfmt, sc->sc_wdcdev.sc_dev.dv_xname, channel,
    602   1.1   bouyer 		    "load xfer", drive, error);
    603   1.1   bouyer 		return error;
    604   1.1   bouyer 	}
    605   1.1   bouyer 
    606   1.1   bouyer 	bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
    607   1.1   bouyer 	    dma_maps->dmamap_xfer->dm_mapsize,
    608   1.1   bouyer 	    (flags & WDC_DMA_READ) ?
    609   1.1   bouyer 	    BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
    610   1.1   bouyer 
    611   1.1   bouyer 	for (seg = 0; seg < dma_maps->dmamap_xfer->dm_nsegs; seg++) {
    612   1.1   bouyer #ifdef DIAGNOSTIC
    613   1.1   bouyer 		/* A segment must not cross a 64k boundary */
    614   1.1   bouyer 		{
    615   1.1   bouyer 		u_long phys = dma_maps->dmamap_xfer->dm_segs[seg].ds_addr;
    616   1.1   bouyer 		u_long len = dma_maps->dmamap_xfer->dm_segs[seg].ds_len;
    617   1.1   bouyer 		if ((phys & ~IDEDMA_BYTE_COUNT_MASK) !=
    618   1.1   bouyer 		    ((phys + len - 1) & ~IDEDMA_BYTE_COUNT_MASK)) {
    619   1.1   bouyer 			printf("pciide_dma: segment %d physical addr 0x%lx"
    620   1.1   bouyer 			    " len 0x%lx not properly aligned\n",
    621   1.1   bouyer 			    seg, phys, len);
    622   1.1   bouyer 			panic("pciide_dma: buf align");
    623   1.1   bouyer 		}
    624   1.1   bouyer 		}
    625   1.1   bouyer #endif
    626   1.1   bouyer 		dma_maps->dma_table[seg].base_addr =
    627   1.1   bouyer 		    htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_addr);
    628   1.1   bouyer 		dma_maps->dma_table[seg].byte_count =
    629   1.1   bouyer 		    htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_len &
    630   1.1   bouyer 		    IDEDMA_BYTE_COUNT_MASK);
    631   1.1   bouyer 		WDCDEBUG_PRINT(("\t seg %d len %d addr 0x%x\n",
    632   1.1   bouyer 		   seg, le32toh(dma_maps->dma_table[seg].byte_count),
    633   1.1   bouyer 		   le32toh(dma_maps->dma_table[seg].base_addr)), DEBUG_DMA);
    634   1.1   bouyer 
    635   1.1   bouyer 	}
    636   1.1   bouyer 	dma_maps->dma_table[dma_maps->dmamap_xfer->dm_nsegs -1].byte_count |=
    637   1.1   bouyer 	    htole32(IDEDMA_BYTE_COUNT_EOT);
    638   1.1   bouyer 
    639   1.1   bouyer 	bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_table, 0,
    640   1.1   bouyer 	    dma_maps->dmamap_table->dm_mapsize,
    641   1.1   bouyer 	    BUS_DMASYNC_PREWRITE);
    642   1.1   bouyer 
    643   1.1   bouyer 	/* Maps are ready. Start DMA function */
    644   1.1   bouyer #ifdef DIAGNOSTIC
    645   1.1   bouyer 	if (dma_maps->dmamap_table->dm_segs[0].ds_addr & ~IDEDMA_TBL_MASK) {
    646   1.1   bouyer 		printf("pciide_dma_init: addr 0x%lx not properly aligned\n",
    647   1.1   bouyer 		    (u_long)dma_maps->dmamap_table->dm_segs[0].ds_addr);
    648   1.1   bouyer 		panic("pciide_dma_init: table align");
    649   1.1   bouyer 	}
    650   1.1   bouyer #endif
    651   1.1   bouyer 
    652   1.1   bouyer 	/* Clear status bits */
    653   1.3     fvdl 	bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    654   1.3     fvdl 	    bus_space_read_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0));
    655   1.1   bouyer 	/* Write table addr */
    656   1.3     fvdl 	bus_space_write_4(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_TBL], 0,
    657   1.1   bouyer 	    dma_maps->dmamap_table->dm_segs[0].ds_addr);
    658   1.1   bouyer 	/* set read/write */
    659   1.3     fvdl 	bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    660   1.5  thorpej 	    ((flags & WDC_DMA_READ) ? IDEDMA_CMD_WRITE : 0) | cp->idedma_cmd);
    661   1.1   bouyer 	/* remember flags */
    662   1.1   bouyer 	dma_maps->dma_flags = flags;
    663   1.1   bouyer 	return 0;
    664   1.1   bouyer }
    665   1.1   bouyer 
    666   1.1   bouyer void
    667   1.1   bouyer pciide_dma_start(v, channel, drive)
    668   1.1   bouyer 	void *v;
    669   1.1   bouyer 	int channel, drive;
    670   1.1   bouyer {
    671   1.1   bouyer 	struct pciide_softc *sc = v;
    672   1.3     fvdl 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    673   1.1   bouyer 
    674   1.1   bouyer 	WDCDEBUG_PRINT(("pciide_dma_start\n"),DEBUG_XFERS);
    675   1.3     fvdl 	bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    676   1.3     fvdl 	    bus_space_read_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0)
    677   1.3     fvdl 		| IDEDMA_CMD_START);
    678   1.1   bouyer }
    679   1.1   bouyer 
    680   1.1   bouyer int
    681   1.1   bouyer pciide_dma_finish(v, channel, drive, force)
    682   1.1   bouyer 	void *v;
    683   1.1   bouyer 	int channel, drive;
    684   1.1   bouyer 	int force;
    685   1.1   bouyer {
    686   1.1   bouyer 	struct pciide_softc *sc = v;
    687   1.1   bouyer 	u_int8_t status;
    688   1.1   bouyer 	int error = 0;
    689   1.3     fvdl 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    690   1.3     fvdl 	struct pciide_dma_maps *dma_maps = &cp->dma_maps[drive];
    691   1.1   bouyer 
    692   1.3     fvdl 	status = bus_space_read_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0);
    693   1.1   bouyer 	WDCDEBUG_PRINT(("pciide_dma_finish: status 0x%x\n", status),
    694   1.1   bouyer 	    DEBUG_XFERS);
    695   1.1   bouyer 
    696  1.14   bouyer 	if (force == WDC_DMAEND_END && (status & IDEDMA_CTL_INTR) == 0)
    697   1.1   bouyer 		return WDC_DMAST_NOIRQ;
    698   1.1   bouyer 
    699   1.1   bouyer 	/* stop DMA channel */
    700   1.3     fvdl 	bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0,
    701   1.3     fvdl 	    bus_space_read_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CMD], 0)
    702   1.3     fvdl 		& ~IDEDMA_CMD_START);
    703   1.1   bouyer 
    704   1.1   bouyer 	/* Unload the map of the data buffer */
    705   1.1   bouyer 	bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
    706   1.1   bouyer 	    dma_maps->dmamap_xfer->dm_mapsize,
    707   1.1   bouyer 	    (dma_maps->dma_flags & WDC_DMA_READ) ?
    708   1.1   bouyer 	    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
    709   1.1   bouyer 	bus_dmamap_unload(sc->sc_dmat, dma_maps->dmamap_xfer);
    710   1.1   bouyer 
    711  1.14   bouyer 	if ((status & IDEDMA_CTL_ERR) != 0 && force != WDC_DMAEND_ABRT_QUIET) {
    712   1.1   bouyer 		printf("%s:%d:%d: bus-master DMA error: status=0x%x\n",
    713   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname, channel, drive, status);
    714   1.1   bouyer 		error |= WDC_DMAST_ERR;
    715   1.1   bouyer 	}
    716   1.1   bouyer 
    717  1.14   bouyer 	if ((status & IDEDMA_CTL_INTR) == 0 && force != WDC_DMAEND_ABRT_QUIET) {
    718   1.1   bouyer 		printf("%s:%d:%d: bus-master DMA error: missing interrupt, "
    719   1.1   bouyer 		    "status=0x%x\n", sc->sc_wdcdev.sc_dev.dv_xname, channel,
    720   1.1   bouyer 		    drive, status);
    721   1.1   bouyer 		error |= WDC_DMAST_NOIRQ;
    722   1.1   bouyer 	}
    723   1.1   bouyer 
    724  1.14   bouyer 	if ((status & IDEDMA_CTL_ACT) != 0 && force != WDC_DMAEND_ABRT_QUIET) {
    725   1.1   bouyer 		/* data underrun, may be a valid condition for ATAPI */
    726   1.1   bouyer 		error |= WDC_DMAST_UNDER;
    727   1.1   bouyer 	}
    728   1.1   bouyer 	return error;
    729   1.1   bouyer }
    730   1.1   bouyer 
    731   1.1   bouyer void
    732   1.1   bouyer pciide_irqack(chp)
    733   1.7  thorpej 	struct wdc_channel *chp;
    734   1.1   bouyer {
    735   1.1   bouyer 	struct pciide_channel *cp = (struct pciide_channel*)chp;
    736   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    737   1.1   bouyer 
    738   1.1   bouyer 	/* clear status bits in IDE DMA registers */
    739   1.3     fvdl 	bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
    740   1.3     fvdl 	    bus_space_read_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0));
    741   1.1   bouyer }
    742   1.1   bouyer 
    743   1.1   bouyer /* some common code used by several chip_map */
    744   1.1   bouyer int
    745   1.1   bouyer pciide_chansetup(sc, channel, interface)
    746   1.1   bouyer 	struct pciide_softc *sc;
    747   1.1   bouyer 	int channel;
    748   1.1   bouyer 	pcireg_t interface;
    749   1.1   bouyer {
    750   1.1   bouyer 	struct pciide_channel *cp = &sc->pciide_channels[channel];
    751   1.1   bouyer 	sc->wdc_chanarray[channel] = &cp->wdc_channel;
    752   1.1   bouyer 	cp->name = PCIIDE_CHANNEL_NAME(channel);
    753   1.8  thorpej 	cp->wdc_channel.ch_channel = channel;
    754   1.8  thorpej 	cp->wdc_channel.ch_wdc = &sc->sc_wdcdev;
    755   1.1   bouyer 	cp->wdc_channel.ch_queue =
    756   1.6  thorpej 	    malloc(sizeof(struct ata_queue), M_DEVBUF, M_NOWAIT);
    757   1.1   bouyer 	if (cp->wdc_channel.ch_queue == NULL) {
    758   1.1   bouyer 		aprint_error("%s %s channel: "
    759   1.1   bouyer 		    "can't allocate memory for command queue",
    760   1.1   bouyer 		sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    761   1.1   bouyer 		return 0;
    762   1.1   bouyer 	}
    763   1.1   bouyer 	aprint_normal("%s: %s channel %s to %s mode\n",
    764   1.1   bouyer 	    sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
    765   1.1   bouyer 	    (interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
    766   1.1   bouyer 	    "configured" : "wired",
    767   1.1   bouyer 	    (interface & PCIIDE_INTERFACE_PCI(channel)) ?
    768   1.1   bouyer 	    "native-PCI" : "compatibility");
    769   1.1   bouyer 	return 1;
    770   1.1   bouyer }
    771   1.1   bouyer 
    772   1.1   bouyer /* some common code used by several chip channel_map */
    773   1.1   bouyer void
    774   1.1   bouyer pciide_mapchan(pa, cp, interface, cmdsizep, ctlsizep, pci_intr)
    775   1.1   bouyer 	struct pci_attach_args *pa;
    776   1.1   bouyer 	struct pciide_channel *cp;
    777   1.1   bouyer 	pcireg_t interface;
    778   1.1   bouyer 	bus_size_t *cmdsizep, *ctlsizep;
    779   1.1   bouyer 	int (*pci_intr) __P((void *));
    780   1.1   bouyer {
    781   1.7  thorpej 	struct wdc_channel *wdc_cp = &cp->wdc_channel;
    782   1.1   bouyer 
    783   1.8  thorpej 	if (interface & PCIIDE_INTERFACE_PCI(wdc_cp->ch_channel))
    784   1.1   bouyer 		pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep, pci_intr);
    785  1.13   bouyer 	else {
    786   1.8  thorpej 		pciide_mapregs_compat(pa, cp, wdc_cp->ch_channel, cmdsizep,
    787   1.1   bouyer 		    ctlsizep);
    788  1.13   bouyer 		if ((cp->wdc_channel.ch_flags & WDCF_DISABLED) == 0)
    789  1.13   bouyer 			pciide_map_compat_intr(pa, cp, wdc_cp->ch_channel);
    790  1.13   bouyer 	}
    791   1.1   bouyer 	wdcattach(wdc_cp);
    792   1.1   bouyer }
    793   1.1   bouyer 
    794   1.1   bouyer /*
    795   1.1   bouyer  * generic code to map the compat intr.
    796   1.1   bouyer  */
    797   1.1   bouyer void
    798   1.1   bouyer pciide_map_compat_intr(pa, cp, compatchan)
    799   1.1   bouyer 	struct pci_attach_args *pa;
    800   1.1   bouyer 	struct pciide_channel *cp;
    801   1.1   bouyer 	int compatchan;
    802   1.1   bouyer {
    803   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
    804   1.1   bouyer 
    805   1.1   bouyer #ifdef __HAVE_PCIIDE_MACHDEP_COMPAT_INTR_ESTABLISH
    806   1.1   bouyer 	cp->ih = pciide_machdep_compat_intr_establish(&sc->sc_wdcdev.sc_dev,
    807   1.1   bouyer 	    pa, compatchan, pciide_compat_intr, cp);
    808   1.1   bouyer 	if (cp->ih == NULL) {
    809   1.1   bouyer #endif
    810   1.1   bouyer 		aprint_error("%s: no compatibility interrupt for use by %s "
    811   1.1   bouyer 		    "channel\n", sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
    812   1.1   bouyer 		cp->wdc_channel.ch_flags |= WDCF_DISABLED;
    813   1.1   bouyer #ifdef __HAVE_PCIIDE_MACHDEP_COMPAT_INTR_ESTABLISH
    814   1.1   bouyer 	}
    815   1.1   bouyer #endif
    816   1.1   bouyer }
    817   1.1   bouyer 
    818   1.1   bouyer void
    819   1.1   bouyer default_chip_map(sc, pa)
    820   1.1   bouyer 	struct pciide_softc *sc;
    821   1.1   bouyer 	struct pci_attach_args *pa;
    822   1.1   bouyer {
    823   1.1   bouyer 	struct pciide_channel *cp;
    824   1.1   bouyer 	pcireg_t interface = PCI_INTERFACE(pa->pa_class);
    825   1.1   bouyer 	pcireg_t csr;
    826   1.1   bouyer 	int channel, drive;
    827   1.1   bouyer 	struct ata_drive_datas *drvp;
    828   1.1   bouyer 	u_int8_t idedma_ctl;
    829   1.1   bouyer 	bus_size_t cmdsize, ctlsize;
    830   1.1   bouyer 	char *failreason;
    831   1.1   bouyer 
    832   1.1   bouyer 	if (pciide_chipen(sc, pa) == 0)
    833   1.1   bouyer 		return;
    834   1.1   bouyer 
    835   1.1   bouyer 	if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
    836   1.1   bouyer 		aprint_normal("%s: bus-master DMA support present",
    837   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname);
    838   1.1   bouyer 		if (sc->sc_pp == &default_product_desc &&
    839   1.1   bouyer 		    (sc->sc_wdcdev.sc_dev.dv_cfdata->cf_flags &
    840   1.1   bouyer 		    PCIIDE_OPTIONS_DMA) == 0) {
    841   1.1   bouyer 			aprint_normal(", but unused (no driver support)");
    842   1.1   bouyer 			sc->sc_dma_ok = 0;
    843   1.1   bouyer 		} else {
    844   1.1   bouyer 			pciide_mapreg_dma(sc, pa);
    845   1.1   bouyer 			if (sc->sc_dma_ok != 0)
    846   1.1   bouyer 				aprint_normal(", used without full driver "
    847   1.1   bouyer 				    "support");
    848   1.1   bouyer 		}
    849   1.1   bouyer 	} else {
    850   1.1   bouyer 		aprint_normal("%s: hardware does not support DMA",
    851   1.1   bouyer 		    sc->sc_wdcdev.sc_dev.dv_xname);
    852   1.1   bouyer 		sc->sc_dma_ok = 0;
    853   1.1   bouyer 	}
    854   1.1   bouyer 	aprint_normal("\n");
    855   1.1   bouyer 	if (sc->sc_dma_ok) {
    856  1.15  thorpej 		sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA;
    857   1.1   bouyer 		sc->sc_wdcdev.irqack = pciide_irqack;
    858   1.1   bouyer 	}
    859   1.1   bouyer 	sc->sc_wdcdev.PIO_cap = 0;
    860   1.1   bouyer 	sc->sc_wdcdev.DMA_cap = 0;
    861   1.1   bouyer 
    862   1.1   bouyer 	sc->sc_wdcdev.channels = sc->wdc_chanarray;
    863   1.1   bouyer 	sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
    864   1.1   bouyer 	sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16;
    865   1.1   bouyer 
    866   1.1   bouyer 	for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
    867   1.1   bouyer 		cp = &sc->pciide_channels[channel];
    868   1.1   bouyer 		if (pciide_chansetup(sc, channel, interface) == 0)
    869   1.1   bouyer 			continue;
    870  1.10   bouyer 		if (interface & PCIIDE_INTERFACE_PCI(channel))
    871  1.10   bouyer 			pciide_mapregs_native(pa, cp, &cmdsize, &ctlsize,
    872  1.10   bouyer 			    pciide_pci_intr);
    873  1.10   bouyer 		else
    874  1.10   bouyer 			pciide_mapregs_compat(pa, cp,
    875  1.10   bouyer 			    cp->wdc_channel.ch_channel, &cmdsize, &ctlsize);
    876   1.1   bouyer 		if (cp->wdc_channel.ch_flags & WDCF_DISABLED)
    877   1.1   bouyer 			continue;
    878   1.1   bouyer 		/*
    879   1.1   bouyer 		 * Check to see if something appears to be there.
    880   1.1   bouyer 		 */
    881   1.1   bouyer 		failreason = NULL;
    882   1.1   bouyer 		/*
    883   1.1   bouyer 		 * In native mode, always enable the controller. It's
    884   1.1   bouyer 		 * not possible to have an ISA board using the same address
    885   1.1   bouyer 		 * anyway.
    886   1.1   bouyer 		 */
    887  1.13   bouyer 		if (interface & PCIIDE_INTERFACE_PCI(channel)) {
    888  1.13   bouyer 			wdcattach(&cp->wdc_channel);
    889  1.13   bouyer 			continue;
    890  1.13   bouyer 		}
    891   1.1   bouyer 		if (!wdcprobe(&cp->wdc_channel)) {
    892   1.1   bouyer 			failreason = "not responding; disabled or no drives?";
    893   1.1   bouyer 			goto next;
    894   1.1   bouyer 		}
    895   1.1   bouyer 		/*
    896   1.1   bouyer 		 * Now, make sure it's actually attributable to this PCI IDE
    897   1.1   bouyer 		 * channel by trying to access the channel again while the
    898   1.1   bouyer 		 * PCI IDE controller's I/O space is disabled.  (If the
    899   1.1   bouyer 		 * channel no longer appears to be there, it belongs to
    900   1.1   bouyer 		 * this controller.)  YUCK!
    901   1.1   bouyer 		 */
    902   1.1   bouyer 		csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
    903   1.1   bouyer 		    PCI_COMMAND_STATUS_REG);
    904   1.1   bouyer 		pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG,
    905   1.1   bouyer 		    csr & ~PCI_COMMAND_IO_ENABLE);
    906   1.1   bouyer 		if (wdcprobe(&cp->wdc_channel))
    907   1.1   bouyer 			failreason = "other hardware responding at addresses";
    908   1.1   bouyer 		pci_conf_write(sc->sc_pc, sc->sc_tag,
    909   1.1   bouyer 		    PCI_COMMAND_STATUS_REG, csr);
    910   1.1   bouyer next:
    911   1.1   bouyer 		if (failreason) {
    912   1.1   bouyer 			aprint_error("%s: %s channel ignored (%s)\n",
    913   1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
    914   1.1   bouyer 			    failreason);
    915   1.1   bouyer 			cp->wdc_channel.ch_flags |= WDCF_DISABLED;
    916   1.2   bouyer 			bus_space_unmap(cp->wdc_channel.cmd_iot,
    917   1.3     fvdl 			    cp->wdc_channel.cmd_baseioh, cmdsize);
    918   1.2   bouyer 			bus_space_unmap(cp->wdc_channel.ctl_iot,
    919   1.2   bouyer 			    cp->wdc_channel.ctl_ioh, ctlsize);
    920  1.10   bouyer 		} else {
    921  1.13   bouyer 			pciide_map_compat_intr(pa, cp,
    922  1.13   bouyer 			    cp->wdc_channel.ch_channel);
    923  1.10   bouyer 			wdcattach(&cp->wdc_channel);
    924   1.1   bouyer 		}
    925   1.1   bouyer 	}
    926   1.1   bouyer 
    927   1.1   bouyer 	if (sc->sc_dma_ok == 0)
    928   1.1   bouyer 		return;
    929   1.1   bouyer 
    930   1.1   bouyer 	/* Allocate DMA maps */
    931   1.1   bouyer 	for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
    932   1.1   bouyer 		idedma_ctl = 0;
    933   1.1   bouyer 		cp = &sc->pciide_channels[channel];
    934   1.1   bouyer 		for (drive = 0; drive < 2; drive++) {
    935   1.1   bouyer 			drvp = &cp->wdc_channel.ch_drive[drive];
    936   1.1   bouyer 			/* If no drive, skip */
    937   1.1   bouyer 			if ((drvp->drive_flags & DRIVE) == 0)
    938   1.1   bouyer 				continue;
    939   1.1   bouyer 			if ((drvp->drive_flags & DRIVE_DMA) == 0)
    940   1.1   bouyer 				continue;
    941   1.1   bouyer 			if (pciide_dma_table_setup(sc, channel, drive) != 0) {
    942   1.1   bouyer 				/* Abort DMA setup */
    943   1.1   bouyer 				aprint_error(
    944   1.1   bouyer 				    "%s:%d:%d: can't allocate DMA maps, "
    945   1.1   bouyer 				    "using PIO transfers\n",
    946   1.1   bouyer 				    sc->sc_wdcdev.sc_dev.dv_xname,
    947   1.1   bouyer 				    channel, drive);
    948   1.1   bouyer 				drvp->drive_flags &= ~DRIVE_DMA;
    949   1.1   bouyer 			}
    950   1.1   bouyer 			aprint_normal("%s:%d:%d: using DMA data transfers\n",
    951   1.1   bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname,
    952   1.1   bouyer 			    channel, drive);
    953   1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    954   1.1   bouyer 		}
    955   1.1   bouyer 		if (idedma_ctl != 0) {
    956   1.1   bouyer 			/* Add software bits in status register */
    957   1.3     fvdl 			bus_space_write_1(sc->sc_dma_iot,
    958   1.3     fvdl 			    cp->dma_iohs[IDEDMA_CTL], 0, idedma_ctl);
    959   1.1   bouyer 		}
    960   1.1   bouyer 	}
    961   1.1   bouyer }
    962   1.1   bouyer 
    963   1.1   bouyer void
    964   1.1   bouyer sata_setup_channel(chp)
    965   1.7  thorpej 	struct wdc_channel *chp;
    966   1.1   bouyer {
    967   1.1   bouyer 	struct ata_drive_datas *drvp;
    968   1.1   bouyer 	int drive;
    969   1.1   bouyer 	u_int32_t idedma_ctl;
    970   1.1   bouyer 	struct pciide_channel *cp = (struct pciide_channel*)chp;
    971   1.8  thorpej 	struct pciide_softc *sc = (struct pciide_softc*)cp->wdc_channel.ch_wdc;
    972   1.1   bouyer 
    973   1.1   bouyer 	/* setup DMA if needed */
    974   1.1   bouyer 	pciide_channel_dma_setup(cp);
    975   1.1   bouyer 
    976   1.1   bouyer 	idedma_ctl = 0;
    977   1.1   bouyer 
    978   1.1   bouyer 	for (drive = 0; drive < 2; drive++) {
    979   1.1   bouyer 		drvp = &chp->ch_drive[drive];
    980   1.1   bouyer 		/* If no drive, skip */
    981   1.1   bouyer 		if ((drvp->drive_flags & DRIVE) == 0)
    982   1.1   bouyer 			continue;
    983   1.1   bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    984   1.1   bouyer 			/* use Ultra/DMA */
    985   1.1   bouyer 			drvp->drive_flags &= ~DRIVE_DMA;
    986   1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    987   1.1   bouyer 		} else if (drvp->drive_flags & DRIVE_DMA) {
    988   1.1   bouyer 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
    989   1.1   bouyer 		}
    990   1.1   bouyer 	}
    991   1.1   bouyer 
    992   1.1   bouyer 	/*
    993   1.1   bouyer 	 * Nothing to do to setup modes; it is meaningless in S-ATA
    994   1.1   bouyer 	 * (but many S-ATA drives still want to get the SET_FEATURE
    995   1.1   bouyer 	 * command).
    996   1.1   bouyer 	 */
    997   1.1   bouyer 	if (idedma_ctl != 0) {
    998   1.1   bouyer 		/* Add software bits in status register */
    999   1.3     fvdl 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
   1000   1.1   bouyer 		    idedma_ctl);
   1001   1.1   bouyer 	}
   1002   1.1   bouyer }
   1003