Home | History | Annotate | Line # | Download | only in ic
ninjaata32.c revision 1.8.8.2
      1  1.8.8.2      matt /*	ninjaata32.c,v 1.8.8.1 2007/11/06 23:26:58 matt Exp	*/
      2      1.1     itohy 
      3      1.1     itohy /*
      4      1.1     itohy  * Copyright (c) 2006 ITOH Yasufumi <itohy (at) NetBSD.org>.
      5      1.1     itohy  * All rights reserved.
      6      1.1     itohy  *
      7      1.1     itohy  * Redistribution and use in source and binary forms, with or without
      8      1.1     itohy  * modification, are permitted provided that the following conditions
      9      1.1     itohy  * are met:
     10      1.1     itohy  * 1. Redistributions of source code must retain the above copyright
     11      1.1     itohy  *    notice, this list of conditions and the following disclaimer.
     12      1.1     itohy  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1     itohy  *    notice, this list of conditions and the following disclaimer in the
     14      1.1     itohy  *    documentation and/or other materials provided with the distribution.
     15      1.1     itohy  *
     16      1.1     itohy  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS''
     17      1.1     itohy  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     18      1.1     itohy  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19      1.1     itohy  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS
     20      1.1     itohy  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21      1.1     itohy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22      1.1     itohy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23      1.1     itohy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24      1.1     itohy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25      1.1     itohy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     26      1.1     itohy  * THE POSSIBILITY OF SUCH DAMAGE.
     27      1.1     itohy  */
     28      1.1     itohy 
     29      1.1     itohy #include <sys/cdefs.h>
     30  1.8.8.2      matt __KERNEL_RCSID(0, "ninjaata32.c,v 1.8.8.1 2007/11/06 23:26:58 matt Exp");
     31      1.1     itohy 
     32      1.1     itohy #include <sys/param.h>
     33      1.1     itohy #include <sys/kernel.h>
     34      1.1     itohy #include <sys/device.h>
     35      1.8        ad #include <sys/proc.h>
     36      1.1     itohy 
     37  1.8.8.1      matt #include <sys/bus.h>
     38  1.8.8.1      matt #include <sys/intr.h>
     39      1.1     itohy 
     40      1.1     itohy #include <uvm/uvm_extern.h>
     41      1.1     itohy 
     42      1.1     itohy #include <dev/ata/atavar.h>
     43      1.1     itohy #include <dev/ic/wdcreg.h>
     44      1.1     itohy #include <dev/ic/wdcvar.h>
     45      1.1     itohy 
     46      1.1     itohy #include <dev/ic/ninjaata32reg.h>
     47      1.1     itohy #include <dev/ic/ninjaata32var.h>
     48      1.1     itohy 
     49      1.1     itohy #ifdef NJATA32_DEBUG
     50      1.1     itohy #define DPRINTF(x)	printf x
     51      1.1     itohy #else
     52      1.1     itohy #define DPRINTF(x)
     53      1.1     itohy #endif
     54      1.1     itohy 
     55      1.1     itohy static void	njata32_init(struct njata32_softc *, int nosleep);
     56      1.1     itohy static void	njata32_irqack(struct ata_channel *);
     57      1.1     itohy static void	njata32_clearirq(struct ata_channel *, int);
     58      1.1     itohy static void	njata32_setup_channel(struct ata_channel *);
     59      1.1     itohy static int	njata32_dma_init(void *, int channel, int drive,
     60      1.1     itohy 		    void *databuf, size_t datalen, int flags);
     61      1.1     itohy static void	njata32_piobm_start(void *, int channel, int drive, int skip,
     62      1.1     itohy 		    int xferlen, int flags);
     63      1.1     itohy static int	njata32_dma_finish(void *, int channel, int drive, int force);
     64      1.1     itohy static void	njata32_piobm_done(void *, int channel, int drive);
     65      1.1     itohy 
     66      1.1     itohy #if 0	/* ATA DMA is currently unused */
     67      1.1     itohy static const uint8_t njata32_timing_dma[NJATA32_MODE_MAX_DMA + 1] = {
     68      1.1     itohy 	NJATA32_TIMING_DMA0, NJATA32_TIMING_DMA1, NJATA32_TIMING_DMA2
     69      1.1     itohy };
     70      1.1     itohy #endif
     71      1.1     itohy static const uint8_t njata32_timing_pio[NJATA32_MODE_MAX_PIO + 1] = {
     72      1.1     itohy 	NJATA32_TIMING_PIO0, NJATA32_TIMING_PIO1, NJATA32_TIMING_PIO2,
     73      1.1     itohy 	NJATA32_TIMING_PIO3, NJATA32_TIMING_PIO4
     74      1.1     itohy };
     75      1.1     itohy 
     76      1.1     itohy static void
     77  1.8.8.2      matt njata32_init(struct njata32_softc *sc, int nosleep)
     78      1.1     itohy {
     79      1.1     itohy 
     80      1.1     itohy 	/* disable interrupts */
     81      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
     82      1.1     itohy 	    NJATA32_REG_IRQ_SELECT, 0);
     83      1.1     itohy 
     84      1.1     itohy 	/* bus reset */
     85      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_AS,
     86      1.1     itohy 	    NJATA32_AS_WAIT0 | NJATA32_AS_BUS_RESET);
     87      1.1     itohy 	if (nosleep)
     88      1.1     itohy 		delay(50000);
     89      1.1     itohy 	else
     90      1.1     itohy 		tsleep(sc, PRIBIO, "njaini", mstohz(50));
     91      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_AS,
     92      1.1     itohy 	    NJATA32_AS_WAIT0);
     93      1.1     itohy 
     94      1.1     itohy 	/* initial transfer speed */
     95      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
     96      1.2     itohy 	    NJATA32_REG_TIMING, NJATA32_TIMING_PIO0 + sc->sc_atawait);
     97      1.1     itohy 
     98      1.1     itohy 	/* setup busmaster mode */
     99      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_IOBM,
    100      1.1     itohy 	    NJATA32_IOBM_DEFAULT);
    101      1.1     itohy 
    102      1.1     itohy 	/* enable interrupts */
    103      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    104      1.1     itohy 	    NJATA32_REG_IRQ_SELECT, NJATA32_IRQ_XFER | NJATA32_IRQ_DEV);
    105      1.1     itohy }
    106      1.1     itohy 
    107      1.1     itohy void
    108  1.8.8.2      matt njata32_attach(struct njata32_softc *sc)
    109      1.1     itohy {
    110      1.1     itohy 	bus_addr_t dmaaddr;
    111      1.1     itohy 	int i, devno, error;
    112      1.1     itohy 	struct wdc_regs *wdr;
    113      1.1     itohy 
    114      1.1     itohy 	/*
    115      1.1     itohy 	 * allocate DMA resource
    116      1.1     itohy 	 */
    117      1.1     itohy 	if ((error = bus_dmamem_alloc(sc->sc_dmat,
    118      1.1     itohy 	    sizeof(struct njata32_dma_page), PAGE_SIZE, 0,
    119      1.1     itohy 	    &sc->sc_sgt_seg, 1, &sc->sc_sgt_nsegs, BUS_DMA_NOWAIT)) != 0) {
    120  1.8.8.2      matt 		aprint_error("%s: unable to allocate sgt page, error = %d\n",
    121      1.1     itohy 		    NJATA32NAME(sc), error);
    122      1.1     itohy 		return;
    123      1.1     itohy 	}
    124      1.1     itohy 	if ((error = bus_dmamem_map(sc->sc_dmat, &sc->sc_sgt_seg,
    125      1.1     itohy 	    sc->sc_sgt_nsegs, sizeof(struct njata32_dma_page),
    126      1.7  christos 	    (void **)&sc->sc_sgtpg,
    127      1.1     itohy 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) {
    128  1.8.8.2      matt 		aprint_error("%s: unable to map sgt page, error = %d\n",
    129      1.1     itohy 		    NJATA32NAME(sc), error);
    130      1.1     itohy 		goto fail1;
    131      1.1     itohy 	}
    132      1.1     itohy 	if ((error = bus_dmamap_create(sc->sc_dmat,
    133      1.1     itohy 	    sizeof(struct njata32_dma_page), 1,
    134      1.1     itohy 	    sizeof(struct njata32_dma_page), 0, BUS_DMA_NOWAIT,
    135      1.1     itohy 	    &sc->sc_dmamap_sgt)) != 0) {
    136  1.8.8.2      matt 		aprint_error("%s: unable to create sgt DMA map, error = %d\n",
    137      1.1     itohy 		    NJATA32NAME(sc), error);
    138      1.1     itohy 		goto fail2;
    139      1.1     itohy 	}
    140      1.1     itohy 	if ((error = bus_dmamap_load(sc->sc_dmat, sc->sc_dmamap_sgt,
    141      1.1     itohy 	    sc->sc_sgtpg, sizeof(struct njata32_dma_page),
    142      1.1     itohy 	    NULL, BUS_DMA_NOWAIT)) != 0) {
    143  1.8.8.2      matt 		aprint_error("%s: unable to load sgt DMA map, error = %d\n",
    144      1.1     itohy 		    NJATA32NAME(sc), error);
    145      1.1     itohy 		goto fail3;
    146      1.1     itohy 	}
    147      1.1     itohy 
    148      1.1     itohy 	dmaaddr = sc->sc_dmamap_sgt->dm_segs[0].ds_addr;
    149      1.1     itohy 
    150      1.1     itohy 	for (devno = 0; devno < NJATA32_NUM_DEV; devno++) {
    151      1.1     itohy 		sc->sc_dev[devno].d_sgt = sc->sc_sgtpg->dp_sg[devno];
    152      1.1     itohy 		sc->sc_dev[devno].d_sgt_dma = dmaaddr +
    153      1.1     itohy 		    offsetof(struct njata32_dma_page, dp_sg[devno]);
    154      1.1     itohy 
    155      1.1     itohy 		error = bus_dmamap_create(sc->sc_dmat,
    156      1.1     itohy 		    NJATA32_MAX_XFER,		/* max total map size */
    157      1.1     itohy 		    NJATA32_NUM_SG,		/* max number of segments */
    158      1.1     itohy 		    NJATA32_SGT_MAXSEGLEN,	/* max size of a segment */
    159      1.1     itohy 		    0,				/* boundary */
    160      1.1     itohy 		    BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
    161      1.1     itohy 		    &sc->sc_dev[devno].d_dmamap_xfer);
    162      1.1     itohy 		if (error) {
    163  1.8.8.2      matt 			aprint_error("%s: failed to create DMA map "
    164  1.8.8.2      matt 			    "(error = %d)\n", NJATA32NAME(sc), error);
    165      1.1     itohy 			goto fail4;
    166      1.1     itohy 		}
    167      1.1     itohy 	}
    168      1.1     itohy 
    169      1.1     itohy 	/* device properties */
    170      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_cap =
    171      1.1     itohy 	    ATAC_CAP_DATA16 | ATAC_CAP_DATA32 | ATAC_CAP_PIOBM;
    172      1.1     itohy 	sc->sc_wdcdev.irqack = njata32_irqack;
    173      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_channels = sc->sc_wdc_chanarray;
    174      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_nchannels = NJATA32_NCHAN;	/* 1 */
    175      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_pio_cap = NJATA32_MODE_MAX_PIO;
    176      1.1     itohy #if 0	/* ATA DMA is currently unused */
    177      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_dma_cap = NJATA32_MODE_MAX_DMA;
    178      1.1     itohy #endif
    179      1.1     itohy 	sc->sc_wdcdev.sc_atac.atac_set_modes = njata32_setup_channel;
    180      1.1     itohy 
    181      1.1     itohy 	/* DMA control functions */
    182      1.1     itohy 	sc->sc_wdcdev.dma_arg = sc;
    183      1.1     itohy 	sc->sc_wdcdev.dma_init = njata32_dma_init;
    184      1.1     itohy 	sc->sc_wdcdev.piobm_start = njata32_piobm_start;
    185      1.1     itohy 	sc->sc_wdcdev.dma_finish = njata32_dma_finish;
    186      1.1     itohy 	sc->sc_wdcdev.piobm_done = njata32_piobm_done;
    187      1.1     itohy 
    188      1.1     itohy 	sc->sc_wdcdev.cap |= WDC_CAPABILITY_NO_EXTRA_RESETS;
    189      1.1     itohy 
    190      1.1     itohy 	sc->sc_wdcdev.regs = wdr = &sc->sc_wdc_regs;
    191      1.1     itohy 
    192      1.1     itohy 	/* only one channel */
    193      1.1     itohy 	sc->sc_wdc_chanarray[0] = &sc->sc_ch[0].ch_ata_channel;
    194      1.1     itohy 	sc->sc_ch[0].ch_ata_channel.ch_channel = 0;
    195      1.1     itohy 	sc->sc_ch[0].ch_ata_channel.ch_atac = &sc->sc_wdcdev.sc_atac;
    196      1.1     itohy 	sc->sc_ch[0].ch_ata_channel.ch_queue = &sc->sc_wdc_chqueue;
    197      1.1     itohy 	sc->sc_ch[0].ch_ata_channel.ch_ndrive = 2; /* max number of drives */
    198      1.1     itohy 
    199      1.1     itohy 	/* map ATA registers */
    200      1.1     itohy 	for (i = 0; i < WDC_NREG; i++) {
    201      1.1     itohy 		if (bus_space_subregion(NJATA32_REGT(sc), NJATA32_REGH(sc),
    202      1.1     itohy 		    NJATA32_OFFSET_WDCREGS + i,
    203      1.1     itohy 		    i == wd_data ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
    204      1.1     itohy 			aprint_error("%s: couldn't subregion cmd regs\n",
    205      1.1     itohy 			    NJATA32NAME(sc));
    206      1.1     itohy 			goto fail4;
    207      1.1     itohy 		}
    208      1.1     itohy 	}
    209      1.1     itohy 	wdc_init_shadow_regs(&sc->sc_ch[0].ch_ata_channel);
    210      1.1     itohy 	wdr->data32iot = NJATA32_REGT(sc);
    211      1.1     itohy 	wdr->data32ioh = wdr->cmd_iohs[wd_data];
    212      1.1     itohy 
    213      1.1     itohy 	/* map ATA ctl reg */
    214      1.1     itohy 	wdr->ctl_iot = NJATA32_REGT(sc);
    215      1.1     itohy 	if (bus_space_subregion(NJATA32_REGT(sc), NJATA32_REGH(sc),
    216      1.1     itohy 	    NJATA32_REG_WD_ALTSTATUS, 1, &wdr->ctl_ioh) != 0) {
    217      1.1     itohy 		aprint_error("%s: couldn't subregion ctl regs\n",
    218      1.1     itohy 		    NJATA32NAME(sc));
    219      1.1     itohy 		goto fail4;
    220      1.1     itohy 	}
    221      1.1     itohy 
    222      1.1     itohy 	sc->sc_flags |= NJATA32_CMDPG_MAPPED;
    223      1.1     itohy 
    224      1.1     itohy 	/* use flags value as busmaster wait */
    225      1.2     itohy 	if ((sc->sc_atawait =
    226  1.8.8.2      matt 	    (uint8_t)device_cfdata(sc->sc_wdcdev.sc_atac.atac_dev)->cf_flags))
    227      1.2     itohy 		aprint_normal("%s: ATA wait = %#x\n",
    228      1.2     itohy 		    NJATA32NAME(sc), sc->sc_atawait);
    229      1.1     itohy 
    230      1.1     itohy 	njata32_init(sc, cold);
    231      1.1     itohy 
    232      1.1     itohy 	wdcattach(&sc->sc_ch[0].ch_ata_channel);
    233      1.1     itohy 
    234      1.1     itohy 	return;
    235      1.1     itohy 
    236      1.1     itohy 	/*
    237      1.1     itohy 	 * cleanup
    238      1.1     itohy 	 */
    239      1.1     itohy fail4:	while (--devno >= 0) {
    240      1.1     itohy 		bus_dmamap_destroy(sc->sc_dmat,
    241      1.1     itohy 		    sc->sc_dev[devno].d_dmamap_xfer);
    242      1.1     itohy 	}
    243      1.1     itohy 	bus_dmamap_unload(sc->sc_dmat, sc->sc_dmamap_sgt);
    244      1.1     itohy fail3:	bus_dmamap_destroy(sc->sc_dmat, sc->sc_dmamap_sgt);
    245      1.7  christos fail2:	bus_dmamem_unmap(sc->sc_dmat, (void *)sc->sc_sgtpg,
    246      1.1     itohy 	    sizeof(struct njata32_dma_page));
    247      1.1     itohy fail1:	bus_dmamem_free(sc->sc_dmat, &sc->sc_sgt_seg, sc->sc_sgt_nsegs);
    248      1.1     itohy }
    249      1.1     itohy 
    250      1.1     itohy int
    251  1.8.8.2      matt njata32_detach(struct njata32_softc *sc, int flags)
    252      1.1     itohy {
    253      1.1     itohy 	int rv, devno;
    254      1.1     itohy 
    255      1.1     itohy 	if (sc->sc_flags & NJATA32_CMDPG_MAPPED) {
    256  1.8.8.2      matt 		if ((rv = wdcdetach(sc->sc_wdcdev.sc_atac.atac_dev, flags)))
    257      1.1     itohy 			return rv;
    258      1.1     itohy 
    259      1.1     itohy 		/* free DMA resource */
    260      1.1     itohy 		for (devno = 0; devno < NJATA32_NUM_DEV; devno++) {
    261      1.1     itohy 			bus_dmamap_destroy(sc->sc_dmat,
    262      1.1     itohy 			    sc->sc_dev[devno].d_dmamap_xfer);
    263      1.1     itohy 		}
    264      1.1     itohy 		bus_dmamap_unload(sc->sc_dmat, sc->sc_dmamap_sgt);
    265      1.1     itohy 		bus_dmamap_destroy(sc->sc_dmat, sc->sc_dmamap_sgt);
    266      1.7  christos 		bus_dmamem_unmap(sc->sc_dmat, (void *)sc->sc_sgtpg,
    267      1.1     itohy 		    sizeof(struct njata32_dma_page));
    268      1.1     itohy 		bus_dmamem_free(sc->sc_dmat, &sc->sc_sgt_seg, sc->sc_sgt_nsegs);
    269      1.1     itohy 	}
    270      1.1     itohy 
    271      1.1     itohy 	return 0;
    272      1.1     itohy }
    273      1.1     itohy 
    274      1.1     itohy static void
    275  1.8.8.2      matt njata32_irqack(struct ata_channel *chp)
    276      1.1     itohy {
    277      1.1     itohy 	struct njata32_softc *sc = (void *)chp->ch_atac;
    278      1.1     itohy 
    279      1.1     itohy 	/* disable busmaster */
    280      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    281      1.2     itohy 	    NJATA32_REG_BM, NJATA32_BM_WAIT0);
    282      1.1     itohy }
    283      1.1     itohy 
    284      1.1     itohy static void
    285  1.8.8.2      matt njata32_clearirq(struct ata_channel *chp, int irq)
    286      1.1     itohy {
    287      1.1     itohy 	struct njata32_softc *sc = (void *)chp->ch_atac;
    288      1.1     itohy 
    289  1.8.8.2      matt 	aprint_error("%s: unhandled intr: irq %#x, bm %#x, ",
    290      1.1     itohy 	    NJATA32NAME(sc), irq,
    291      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    292      1.1     itohy 		NJATA32_REG_BM));
    293      1.1     itohy 
    294      1.1     itohy 	/* disable busmaster */
    295      1.1     itohy 	njata32_irqack(chp);
    296      1.1     itohy 
    297      1.1     itohy 	/* clear device interrupt */
    298  1.8.8.2      matt 	aprint_normal("err %#x, seccnt %#x, cyl %#x, sdh %#x, ",
    299      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    300      1.1     itohy 		NJATA32_REG_WD_ERROR),
    301      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    302      1.1     itohy 		NJATA32_REG_WD_SECCNT),
    303      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    304      1.1     itohy 		NJATA32_REG_WD_CYL_LO) |
    305      1.1     itohy 	    (bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    306      1.1     itohy 		NJATA32_REG_WD_CYL_HI) << 8),
    307      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    308      1.1     itohy 		NJATA32_REG_WD_SDH));
    309  1.8.8.2      matt 	aprint_normal("status %#x\n",
    310      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    311      1.1     itohy 	    NJATA32_REG_WD_STATUS));
    312      1.1     itohy }
    313      1.1     itohy 
    314      1.1     itohy static void
    315  1.8.8.2      matt njata32_setup_channel(struct ata_channel *chp)
    316      1.1     itohy {
    317      1.1     itohy 	struct njata32_softc *sc = (void *)chp->ch_atac;
    318      1.1     itohy 	struct ata_drive_datas *drvp;
    319      1.1     itohy 	int drive;
    320      1.1     itohy 	uint8_t mode;
    321      1.1     itohy 
    322      1.1     itohy 	KASSERT(chp->ch_ndrive != 0);
    323      1.1     itohy 
    324      1.1     itohy 	sc->sc_timing_pio = 0;
    325      1.1     itohy #if 0	/* ATA DMA is currently unused */
    326      1.1     itohy 	sc->sc_timing_dma = 0;
    327      1.1     itohy #endif
    328      1.1     itohy 
    329      1.1     itohy 	for (drive = 0; drive < chp->ch_ndrive; drive++) {
    330      1.1     itohy 		drvp = &chp->ch_drive[drive];
    331      1.1     itohy 		if ((drvp->drive_flags & DRIVE) == 0)
    332      1.1     itohy 			continue;	/* no drive */
    333      1.1     itohy 
    334      1.1     itohy #if 0	/* ATA DMA is currently unused */
    335      1.1     itohy 		if ((drvp->drive_flags & DRIVE_DMA) != 0) {
    336      1.1     itohy 			/*
    337      1.1     itohy 			 * Multiword DMA
    338      1.1     itohy 			 */
    339      1.1     itohy 			if ((mode = drvp->DMA_mode) > NJATA32_MODE_MAX_DMA)
    340      1.1     itohy 				mode = NJATA32_MODE_MAX_DMA;
    341      1.1     itohy 			if (sc->sc_timing_dma < njata32_timing_dma[mode])
    342      1.1     itohy 				sc->sc_timing_dma = njata32_timing_dma[mode];
    343      1.1     itohy 		}
    344      1.1     itohy #endif
    345      1.1     itohy 		/*
    346      1.1     itohy 		 * PIO
    347      1.1     itohy 		 */
    348      1.1     itohy 		if ((mode = drvp->PIO_mode) > NJATA32_MODE_MAX_PIO)
    349      1.1     itohy 			mode = NJATA32_MODE_MAX_PIO;
    350      1.1     itohy 		if (sc->sc_timing_pio < njata32_timing_pio[mode])
    351      1.1     itohy 			sc->sc_timing_pio = njata32_timing_pio[mode];
    352      1.1     itohy 	}
    353      1.1     itohy 
    354      1.2     itohy 	sc->sc_timing_pio += sc->sc_atawait;
    355      1.2     itohy 
    356      1.1     itohy 	/* set timing for PIO */
    357      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    358      1.1     itohy 	    NJATA32_REG_TIMING, sc->sc_timing_pio);
    359      1.1     itohy }
    360      1.1     itohy 
    361      1.1     itohy /*
    362      1.1     itohy  * map DMA buffer
    363      1.1     itohy  */
    364      1.1     itohy int
    365      1.5  christos njata32_dma_init(void *v, int channel, int drive, void *databuf,
    366      1.4    dogcow 		 size_t datalen, int flags)
    367      1.1     itohy {
    368      1.1     itohy 	struct njata32_softc *sc = v;
    369      1.1     itohy 	int error;
    370      1.1     itohy 	struct njata32_device *dev = &sc->sc_dev[drive];
    371      1.1     itohy 
    372      1.1     itohy 	KASSERT(channel == 0);
    373      1.1     itohy 	KASSERT((dev->d_flags & NJATA32_DEV_DMA_MAPPED) == 0);
    374      1.1     itohy 	KASSERT((dev->d_flags & NJATA32_DEV_DMA_STARTED) == 0);
    375      1.1     itohy 
    376      1.1     itohy 	KASSERT(flags & (WDC_DMA_PIOBM_ATA | WDC_DMA_PIOBM_ATAPI));
    377      1.1     itohy 
    378      1.1     itohy 	/* use PIO for short transfer */
    379      1.1     itohy 	if (datalen < 64 /* needs tune */) {
    380      1.1     itohy 		DPRINTF(("%s: njata32_dma_init: short transfer (%u)\n",
    381      1.1     itohy 		    NJATA32NAME(sc), (unsigned)datalen));
    382      1.1     itohy 		bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    383      1.1     itohy 		    NJATA32_REG_TIMING, sc->sc_timing_pio);
    384      1.1     itohy 		return EINVAL;
    385      1.1     itohy 	}
    386      1.1     itohy 
    387      1.1     itohy 	/* use PIO for unaligned transfer (word alignment seems OK) */
    388      1.1     itohy 	if (((uintptr_t)databuf & 1) || (datalen & 1)) {
    389      1.1     itohy 		DPRINTF(("%s: njata32_dma_init: unaligned: buf %p, len %u\n",
    390      1.1     itohy 		    NJATA32NAME(sc), databuf, (unsigned)datalen));
    391      1.1     itohy 		return EINVAL;
    392      1.1     itohy 	}
    393      1.1     itohy 
    394      1.1     itohy 	DPRINTF(("%s: njata32_dma_init: %s: databuf %p, datalen %u\n",
    395      1.1     itohy 	    NJATA32NAME(sc), (flags & WDC_DMA_READ) ? "read" : "write",
    396      1.1     itohy 	    databuf, (unsigned)datalen));
    397      1.1     itohy 
    398      1.1     itohy 	error = bus_dmamap_load(sc->sc_dmat, dev->d_dmamap_xfer,
    399      1.1     itohy 	    databuf, datalen, NULL, BUS_DMA_NOWAIT | BUS_DMA_STREAMING |
    400      1.1     itohy 	    ((flags & WDC_DMA_READ) ? BUS_DMA_READ : BUS_DMA_WRITE));
    401      1.1     itohy 	if (error) {
    402      1.1     itohy 		printf("%s: load xfer failed, error %d\n",
    403      1.1     itohy 		    NJATA32NAME(sc), error);
    404      1.1     itohy 		return error;
    405      1.1     itohy 	}
    406      1.1     itohy 
    407      1.1     itohy 	bus_dmamap_sync(sc->sc_dmat, dev->d_dmamap_xfer, 0,
    408      1.1     itohy 	    dev->d_dmamap_xfer->dm_mapsize,
    409      1.1     itohy 	    (flags & WDC_DMA_READ) ?
    410      1.1     itohy 		BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
    411      1.1     itohy 
    412      1.1     itohy 	dev->d_flags =
    413      1.1     itohy 	    ((flags & WDC_DMA_READ) ? NJATA32_DEV_DMA_READ : 0) |
    414      1.1     itohy 	    ((flags & WDC_DMA_PIOBM_ATAPI) ? NJATA32_DEV_DMA_ATAPI : 0) |
    415      1.1     itohy 	    NJATA32_DEV_DMA_MAPPED;
    416      1.1     itohy 
    417      1.1     itohy 	return 0;
    418      1.1     itohy }
    419      1.1     itohy 
    420      1.1     itohy /*
    421      1.1     itohy  * start DMA
    422      1.1     itohy  *
    423      1.1     itohy  * top:  databuf + skip
    424      1.1     itohy  * size: xferlen
    425      1.1     itohy  */
    426      1.1     itohy void
    427      1.5  christos njata32_piobm_start(void *v, int channel, int drive,
    428      1.4    dogcow 		    int skip, int xferlen, int flags)
    429      1.1     itohy {
    430      1.1     itohy 	struct njata32_softc *sc = v;
    431      1.1     itohy 	struct njata32_device *dev = &sc->sc_dev[drive];
    432      1.1     itohy 	int i, nsegs, seglen;
    433      1.1     itohy 	uint8_t bmreg;
    434      1.1     itohy 
    435      1.1     itohy 	DPRINTF(("%s: njata32_piobm_start: ch%d, dv%d, skip %d, xferlen %d\n",
    436      1.1     itohy 	    NJATA32NAME(sc), channel, drive, skip, xferlen));
    437      1.1     itohy 
    438      1.1     itohy 	KASSERT(channel == 0);
    439      1.1     itohy 	KASSERT(dev->d_flags & NJATA32_DEV_DMA_MAPPED);
    440      1.1     itohy 	KASSERT((dev->d_flags & NJATA32_DEV_DMA_STARTED) == 0);
    441      1.1     itohy 
    442      1.1     itohy 	/*
    443      1.1     itohy 	 * create scatter/gather table
    444      1.1     itohy 	 * XXX this code may be slow
    445      1.1     itohy 	 */
    446      1.1     itohy 	for (i = nsegs = 0;
    447      1.1     itohy 	    i < dev->d_dmamap_xfer->dm_nsegs && xferlen > 0; i++) {
    448      1.1     itohy 		if (dev->d_dmamap_xfer->dm_segs[i].ds_len <= skip) {
    449      1.1     itohy 			skip -= dev->d_dmamap_xfer->dm_segs[i].ds_len;
    450      1.1     itohy 			continue;
    451      1.1     itohy 		}
    452      1.1     itohy 
    453      1.1     itohy 		seglen = dev->d_dmamap_xfer->dm_segs[i].ds_len - skip;
    454      1.1     itohy 		if (seglen > xferlen)
    455      1.1     itohy 			seglen = xferlen;
    456      1.1     itohy 
    457      1.1     itohy 		dev->d_sgt[nsegs].sg_addr =
    458      1.1     itohy 		    htole32(dev->d_dmamap_xfer->dm_segs[i].ds_addr + skip);
    459      1.1     itohy 		dev->d_sgt[nsegs].sg_len = htole32(seglen);
    460      1.1     itohy 
    461      1.1     itohy 		xferlen -= seglen;
    462      1.1     itohy 		nsegs++;
    463      1.1     itohy 		skip = 0;
    464      1.1     itohy 	}
    465      1.1     itohy 	sc->sc_piobm_nsegs = nsegs;
    466      1.1     itohy 	/* end mark */
    467      1.1     itohy 	dev->d_sgt[nsegs - 1].sg_len |= htole32(NJATA32_SGT_ENDMARK);
    468      1.1     itohy 
    469      1.1     itohy #ifdef DIAGNOSTIC
    470      1.1     itohy 	if (xferlen)
    471      1.1     itohy 		panic("%s: njata32_piobm_start: xferlen residue %d\n",
    472      1.1     itohy 		    NJATA32NAME(sc), xferlen);
    473      1.1     itohy #endif
    474      1.1     itohy 
    475      1.1     itohy 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap_sgt,
    476      1.1     itohy 	    (char *)dev->d_sgt - (char *)sc->sc_sgtpg,
    477      1.1     itohy 	    sizeof(struct njata32_sgtable) * nsegs,
    478      1.1     itohy 	    BUS_DMASYNC_PREWRITE);
    479      1.1     itohy 
    480      1.1     itohy 	/* set timing for PIO */
    481      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    482      1.1     itohy 	    NJATA32_REG_TIMING, sc->sc_timing_pio);
    483      1.1     itohy 
    484      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_IOBM,
    485      1.1     itohy 	    NJATA32_IOBM_DEFAULT);
    486      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_AS,
    487      1.1     itohy 	    NJATA32_AS_WAIT0);
    488      1.1     itohy 
    489      1.1     itohy 	/*
    490      1.1     itohy 	 * interrupt configuration
    491      1.1     itohy 	 */
    492      1.1     itohy 	if ((dev->d_flags & (NJATA32_DEV_DMA_READ | NJATA32_DEV_DMA_ATAPI)) ==
    493      1.1     itohy 	    NJATA32_DEV_DMA_READ) {
    494      1.1     itohy 		/*
    495      1.1     itohy 		 * ATA piobm read is executed while device interrupt is active,
    496      1.1     itohy 		 * so disable device interrupt here
    497      1.1     itohy 		 */
    498      1.1     itohy 		bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    499      1.1     itohy 		    NJATA32_REG_IRQ_SELECT, NJATA32_IRQ_XFER);
    500      1.1     itohy 	}
    501      1.1     itohy 
    502      1.1     itohy 	/* enable scatter/gather busmaster transfer */
    503      1.2     itohy 	bmreg = NJATA32_BM_EN | NJATA32_BM_SG | NJATA32_BM_WAIT0 |
    504      1.1     itohy 	    ((dev->d_flags & NJATA32_DEV_DMA_READ) ? NJATA32_BM_RD : 0);
    505      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_BM,
    506      1.1     itohy 	    bmreg);
    507      1.1     itohy 
    508      1.1     itohy 	/* load scatter/gather table */
    509      1.1     itohy 	bus_space_write_4(NJATA32_REGT(sc), NJATA32_REGH(sc),
    510      1.1     itohy 	    NJATA32_REG_DMAADDR, dev->d_sgt_dma);
    511      1.1     itohy 	bus_space_write_4(NJATA32_REGT(sc), NJATA32_REGH(sc),
    512      1.1     itohy 	    NJATA32_REG_DMALENGTH, sizeof(struct njata32_sgtable) * nsegs);
    513      1.1     itohy 
    514      1.1     itohy 	/* start transfer */
    515      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_BM,
    516      1.1     itohy 	    (bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    517      1.1     itohy 		NJATA32_REG_BM)
    518      1.1     itohy 	     & ~(NJATA32_BM_RD|NJATA32_BM_SG|NJATA32_BM_WAIT_MASK)) |
    519      1.1     itohy 	    bmreg | NJATA32_BM_GO);
    520      1.1     itohy 
    521      1.1     itohy 	sc->sc_devflags = dev->d_flags;
    522      1.1     itohy 	if (flags & WDC_PIOBM_XFER_IRQ)
    523      1.1     itohy 		sc->sc_devflags |= NJATA32_DEV_XFER_INTR;
    524      1.1     itohy #ifdef DIAGNOSTIC
    525      1.1     itohy 	dev->d_flags |= NJATA32_DEV_DMA_STARTED;
    526      1.1     itohy #endif
    527      1.1     itohy }
    528      1.1     itohy 
    529      1.1     itohy /*
    530      1.1     itohy  * end of DMA
    531      1.1     itohy  */
    532      1.1     itohy int
    533      1.5  christos njata32_dma_finish(void *v, int channel, int drive,
    534      1.4    dogcow 		   int force)
    535      1.1     itohy {
    536      1.1     itohy 	struct njata32_softc *sc = v;
    537      1.6     itohy 	struct njata32_device *dev = &sc->sc_dev[drive];
    538      1.1     itohy 	int bm;
    539      1.1     itohy 	int error = 0;
    540      1.1     itohy 
    541      1.1     itohy 	DPRINTF(("%s: njata32_dma_finish: bm = %#x\n", NJATA32NAME(sc),
    542      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    543      1.1     itohy 		NJATA32_REG_BM)));
    544      1.1     itohy 
    545      1.1     itohy 	KASSERT(channel == 0);
    546      1.6     itohy 	KASSERT(dev->d_flags & NJATA32_DEV_DMA_MAPPED);
    547      1.6     itohy 	KASSERT(dev->d_flags & NJATA32_DEV_DMA_STARTED);
    548      1.1     itohy 
    549      1.1     itohy 	bm = bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    550      1.1     itohy 	    NJATA32_REG_BM);
    551      1.1     itohy 
    552      1.1     itohy #ifdef NJATA32_DEBUG
    553      1.1     itohy 	printf("%s: irq %#x, bm %#x, 18 %#x, 1c %#x\n", NJATA32NAME(sc),
    554      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    555      1.1     itohy 		NJATA32_REG_IRQ_STAT),
    556      1.1     itohy 	    bm,
    557      1.1     itohy 	    bus_space_read_4(NJATA32_REGT(sc), NJATA32_REGH(sc), 0x18),
    558      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc), 0x1c));
    559      1.1     itohy #endif
    560      1.1     itohy 
    561      1.6     itohy 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap_sgt,
    562      1.6     itohy 	    (char *)dev->d_sgt - (char *)sc->sc_sgtpg,
    563      1.6     itohy 	    sizeof(struct njata32_sgtable) * sc->sc_piobm_nsegs,
    564      1.6     itohy 	    BUS_DMASYNC_POSTWRITE);
    565      1.6     itohy 
    566      1.1     itohy 	/* check if DMA is active */
    567      1.1     itohy 	if (bm & NJATA32_BM_GO) {
    568      1.1     itohy 		error = WDC_DMAST_NOIRQ;
    569      1.1     itohy 
    570      1.1     itohy 		switch (force) {
    571      1.1     itohy 		case WDC_DMAEND_END:
    572      1.1     itohy 			return error;
    573      1.1     itohy 
    574      1.1     itohy 		case WDC_DMAEND_ABRT:
    575      1.1     itohy 			printf("%s: aborting DMA\n", NJATA32NAME(sc));
    576      1.1     itohy 			break;
    577      1.1     itohy 		}
    578      1.1     itohy 	}
    579      1.1     itohy 
    580      1.1     itohy 	/*
    581      1.1     itohy 	 * ???
    582      1.1     itohy 	 * For unknown reason, PIOBM transfer sometimes fails in the middle,
    583      1.1     itohy 	 * in which case the bit #7 of BM register becomes 0.
    584      1.1     itohy 	 * Increasing the wait value seems to improve the situation.
    585      1.2     itohy 	 *
    586      1.2     itohy 	 * XXX
    587      1.2     itohy 	 * PIO transfer may also fail, but it seems it can't be detected.
    588      1.1     itohy 	 */
    589      1.1     itohy 	if ((bm & NJATA32_BM_DONE) == 0) {
    590      1.1     itohy 		error |= WDC_DMAST_ERR;
    591      1.1     itohy 		printf("%s: busmaster error", NJATA32NAME(sc));
    592      1.2     itohy 		if (sc->sc_atawait < 0x11) {
    593      1.2     itohy 			if ((sc->sc_atawait & 0xf) == 0)
    594      1.2     itohy 				sc->sc_atawait++;
    595      1.2     itohy 			else
    596      1.2     itohy 				sc->sc_atawait += 0x10;
    597      1.2     itohy 			printf(", new ATA wait = %#x", sc->sc_atawait);
    598      1.2     itohy 			njata32_setup_channel(&sc->sc_ch[0].ch_ata_channel);
    599      1.1     itohy 		}
    600      1.1     itohy 		printf("\n");
    601      1.1     itohy 	}
    602      1.1     itohy 
    603      1.1     itohy 	/* stop command */
    604      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_AS,
    605      1.1     itohy 	    NJATA32_AS_WAIT0);
    606      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc), NJATA32_REG_BM,
    607      1.2     itohy 	    NJATA32_BM_WAIT0);
    608      1.1     itohy 
    609      1.1     itohy 	/* set timing for PIO */
    610      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    611      1.1     itohy 	    NJATA32_REG_TIMING, sc->sc_timing_pio);
    612      1.1     itohy 
    613      1.1     itohy 	/*
    614      1.1     itohy 	 * reenable device interrupt in case it was disabled for
    615      1.1     itohy 	 * this transfer
    616      1.1     itohy 	 */
    617      1.1     itohy 	bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    618      1.1     itohy 	    NJATA32_REG_IRQ_SELECT, NJATA32_IRQ_XFER | NJATA32_IRQ_DEV);
    619      1.1     itohy 
    620      1.1     itohy #if 1	/* should be? */
    621      1.1     itohy 	if ((sc->sc_devflags & NJATA32_DEV_GOT_XFER_INTR) == 0)
    622      1.1     itohy 		error |= WDC_DMAST_ERR;
    623      1.1     itohy #endif
    624      1.1     itohy 	sc->sc_devflags = 0;
    625      1.1     itohy 
    626      1.1     itohy #ifdef DIAGNOSTIC
    627      1.6     itohy 	dev->d_flags &= ~NJATA32_DEV_DMA_STARTED;
    628      1.1     itohy #endif
    629      1.1     itohy 
    630      1.1     itohy 	return error;
    631      1.1     itohy }
    632      1.1     itohy 
    633      1.1     itohy /*
    634      1.1     itohy  * unmap DMA buffer
    635      1.1     itohy  */
    636      1.1     itohy void
    637      1.5  christos njata32_piobm_done(void *v, int channel, int drive)
    638      1.1     itohy {
    639      1.1     itohy 	struct njata32_softc *sc = v;
    640      1.1     itohy 	struct njata32_device *dev = &sc->sc_dev[drive];
    641      1.1     itohy 
    642      1.1     itohy 	DPRINTF(("%s: njata32_piobm_done: ch%d dv%d\n",
    643      1.1     itohy 	    NJATA32NAME(sc), channel, drive));
    644      1.1     itohy 
    645      1.1     itohy 	KASSERT(channel == 0);
    646      1.1     itohy 	KASSERT(dev->d_flags & NJATA32_DEV_DMA_MAPPED);
    647      1.1     itohy 	KASSERT((dev->d_flags & NJATA32_DEV_DMA_STARTED) == 0);
    648      1.1     itohy 
    649      1.1     itohy 	/* unload dma map */
    650      1.1     itohy 	bus_dmamap_sync(sc->sc_dmat, dev->d_dmamap_xfer,
    651      1.1     itohy 	    0, dev->d_dmamap_xfer->dm_mapsize,
    652      1.1     itohy 	    (dev->d_flags & NJATA32_DEV_DMA_READ) ?
    653      1.1     itohy 		BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
    654      1.1     itohy 
    655      1.1     itohy 	bus_dmamap_unload(sc->sc_dmat, dev->d_dmamap_xfer);
    656      1.1     itohy 	dev->d_flags &= ~NJATA32_DEV_DMA_MAPPED;
    657      1.1     itohy }
    658      1.1     itohy 
    659      1.1     itohy int
    660      1.1     itohy njata32_intr(arg)
    661      1.1     itohy 	void *arg;
    662      1.1     itohy {
    663      1.1     itohy 	struct njata32_softc *sc = arg;
    664      1.1     itohy 	struct ata_channel *chp;
    665      1.1     itohy 	int irq;
    666      1.1     itohy 
    667      1.1     itohy 	irq = bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    668      1.1     itohy 	    NJATA32_REG_IRQ_STAT);
    669      1.1     itohy 	if ((irq & (NJATA32_IRQ_XFER | NJATA32_IRQ_DEV)) == 0)
    670      1.1     itohy 		return 0;	/* not mine */
    671      1.1     itohy 
    672      1.1     itohy 	DPRINTF(("%s: njata32_intr: irq = %#x, altstatus = %#x\n",
    673      1.1     itohy 	    NJATA32NAME(sc), irq,
    674      1.1     itohy 	    bus_space_read_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    675      1.1     itohy 		NJATA32_REG_WD_ALTSTATUS)));
    676      1.1     itohy 
    677      1.1     itohy 	chp = &sc->sc_ch[0].ch_ata_channel;
    678      1.1     itohy 
    679      1.1     itohy 	if (irq & NJATA32_IRQ_XFER)
    680      1.1     itohy 		sc->sc_devflags |= NJATA32_DEV_GOT_XFER_INTR;
    681      1.1     itohy 
    682      1.1     itohy 	if ((irq & (NJATA32_IRQ_XFER | NJATA32_IRQ_DEV)) == NJATA32_IRQ_XFER &&
    683      1.1     itohy 	    (sc->sc_devflags & NJATA32_DEV_XFER_INTR) == 0) {
    684      1.1     itohy 		/*
    685      1.1     itohy 		 * transfer done, wait for device interrupt
    686      1.1     itohy 		 */
    687      1.1     itohy 		bus_space_write_1(NJATA32_REGT(sc), NJATA32_REGH(sc),
    688      1.2     itohy 		    NJATA32_REG_BM, NJATA32_BM_WAIT0);
    689      1.1     itohy 		return 1;
    690      1.1     itohy 	}
    691      1.1     itohy 
    692      1.1     itohy 	/*
    693      1.1     itohy 	 * If both transfer done interrupt and device interrupt are
    694      1.1     itohy 	 * active for ATAPI transfer, call wdcintr() twice.
    695      1.1     itohy 	 */
    696      1.1     itohy 	if ((sc->sc_devflags & NJATA32_DEV_DMA_ATAPI) &&
    697      1.1     itohy 	    (irq & (NJATA32_IRQ_XFER | NJATA32_IRQ_DEV)) ==
    698      1.1     itohy 		(NJATA32_IRQ_XFER | NJATA32_IRQ_DEV) &&
    699      1.1     itohy 	    (sc->sc_devflags & NJATA32_DEV_XFER_INTR)) {
    700      1.1     itohy 		if (wdcintr(chp) == 0) {
    701      1.1     itohy 			njata32_clearirq(&sc->sc_ch[0].ch_ata_channel, irq);
    702      1.1     itohy 		}
    703      1.1     itohy 	}
    704      1.1     itohy 
    705      1.1     itohy 	if (wdcintr(chp) == 0) {
    706      1.1     itohy 		njata32_clearirq(&sc->sc_ch[0].ch_ata_channel, irq);
    707      1.1     itohy 	}
    708      1.1     itohy 
    709      1.1     itohy 	return 1;
    710      1.1     itohy }
    711