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