Home | History | Annotate | Line # | Download | only in ata
ata_wdc.c revision 1.109.2.3
      1  1.109.2.3  pgoyette /*	$NetBSD: ata_wdc.c,v 1.109.2.3 2018/11/26 01:52:30 pgoyette Exp $	*/
      2        1.2    bouyer 
      3        1.2    bouyer /*
      4       1.41    bouyer  * Copyright (c) 1998, 2001, 2003 Manuel Bouyer.
      5        1.2    bouyer  *
      6        1.2    bouyer  * Redistribution and use in source and binary forms, with or without
      7        1.2    bouyer  * modification, are permitted provided that the following conditions
      8        1.2    bouyer  * are met:
      9        1.2    bouyer  * 1. Redistributions of source code must retain the above copyright
     10        1.2    bouyer  *    notice, this list of conditions and the following disclaimer.
     11        1.2    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12        1.2    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13        1.2    bouyer  *    documentation and/or other materials provided with the distribution.
     14        1.2    bouyer  *
     15       1.27    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16       1.27    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17       1.27    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18       1.79     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19       1.27    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20       1.27    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21       1.27    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22       1.27    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23       1.27    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24       1.27    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25        1.2    bouyer  */
     26        1.2    bouyer 
     27        1.2    bouyer /*-
     28       1.57   mycroft  * Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
     29        1.2    bouyer  * All rights reserved.
     30        1.2    bouyer  *
     31        1.2    bouyer  * This code is derived from software contributed to The NetBSD Foundation
     32        1.2    bouyer  * by Charles M. Hannum, by Onno van der Linden and by Manuel Bouyer.
     33        1.2    bouyer  *
     34        1.2    bouyer  * Redistribution and use in source and binary forms, with or without
     35        1.2    bouyer  * modification, are permitted provided that the following conditions
     36        1.2    bouyer  * are met:
     37        1.2    bouyer  * 1. Redistributions of source code must retain the above copyright
     38        1.2    bouyer  *    notice, this list of conditions and the following disclaimer.
     39        1.2    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     40        1.2    bouyer  *    notice, this list of conditions and the following disclaimer in the
     41        1.2    bouyer  *    documentation and/or other materials provided with the distribution.
     42        1.2    bouyer  *
     43        1.2    bouyer  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     44        1.2    bouyer  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     45        1.2    bouyer  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     46        1.2    bouyer  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     47        1.2    bouyer  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     48        1.2    bouyer  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     49        1.2    bouyer  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     50        1.2    bouyer  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     51        1.2    bouyer  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     52        1.2    bouyer  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     53        1.2    bouyer  * POSSIBILITY OF SUCH DAMAGE.
     54        1.2    bouyer  */
     55       1.31     lukem 
     56       1.31     lukem #include <sys/cdefs.h>
     57  1.109.2.3  pgoyette __KERNEL_RCSID(0, "$NetBSD: ata_wdc.c,v 1.109.2.3 2018/11/26 01:52:30 pgoyette Exp $");
     58        1.2    bouyer 
     59       1.86    dyoung #include "opt_ata.h"
     60       1.94    bouyer #include "opt_wdc.h"
     61        1.2    bouyer 
     62        1.2    bouyer #include <sys/param.h>
     63        1.2    bouyer #include <sys/systm.h>
     64        1.2    bouyer #include <sys/kernel.h>
     65        1.2    bouyer #include <sys/file.h>
     66        1.2    bouyer #include <sys/stat.h>
     67        1.2    bouyer #include <sys/buf.h>
     68       1.76      yamt #include <sys/bufq.h>
     69        1.2    bouyer #include <sys/device.h>
     70        1.2    bouyer #include <sys/disklabel.h>
     71        1.2    bouyer #include <sys/syslog.h>
     72        1.2    bouyer #include <sys/proc.h>
     73        1.2    bouyer 
     74       1.87        ad #include <sys/intr.h>
     75       1.87        ad #include <sys/bus.h>
     76        1.2    bouyer #ifndef __BUS_SPACE_HAS_STREAM_METHODS
     77        1.2    bouyer #define    bus_space_write_multi_stream_2    bus_space_write_multi_2
     78        1.2    bouyer #define    bus_space_write_multi_stream_4    bus_space_write_multi_4
     79        1.2    bouyer #define    bus_space_read_multi_stream_2    bus_space_read_multi_2
     80        1.2    bouyer #define    bus_space_read_multi_stream_4    bus_space_read_multi_4
     81        1.2    bouyer #endif /* __BUS_SPACE_HAS_STREAM_METHODS */
     82        1.2    bouyer 
     83       1.84     itohy #include <dev/ata/ataconf.h>
     84        1.2    bouyer #include <dev/ata/atareg.h>
     85        1.2    bouyer #include <dev/ata/atavar.h>
     86        1.2    bouyer #include <dev/ic/wdcreg.h>
     87        1.2    bouyer #include <dev/ic/wdcvar.h>
     88        1.2    bouyer 
     89        1.2    bouyer #define DEBUG_INTR   0x01
     90        1.2    bouyer #define DEBUG_XFERS  0x02
     91        1.2    bouyer #define DEBUG_STATUS 0x04
     92        1.2    bouyer #define DEBUG_FUNCS  0x08
     93        1.2    bouyer #define DEBUG_PROBE  0x10
     94       1.71   thorpej #ifdef ATADEBUG
     95       1.41    bouyer extern int wdcdebug_wd_mask; /* inited in wd.c */
     96       1.71   thorpej #define ATADEBUG_PRINT(args, level) \
     97        1.2    bouyer 	if (wdcdebug_wd_mask & (level)) \
     98        1.2    bouyer 		printf args
     99        1.2    bouyer #else
    100       1.71   thorpej #define ATADEBUG_PRINT(args, level)
    101        1.2    bouyer #endif
    102        1.2    bouyer 
    103       1.17    bouyer #define ATA_DELAY 10000 /* 10s for a drive I/O */
    104        1.2    bouyer 
    105      1.106  jdolecek static int	wdc_ata_bio(struct ata_drive_datas*, struct ata_xfer *);
    106      1.106  jdolecek static int	wdc_ata_bio_start(struct ata_channel *,struct ata_xfer *);
    107      1.106  jdolecek static int	_wdc_ata_bio_start(struct ata_channel *,struct ata_xfer *);
    108      1.106  jdolecek static void	wdc_ata_bio_poll(struct ata_channel *,struct ata_xfer *);
    109       1.72   thorpej static int	wdc_ata_bio_intr(struct ata_channel *, struct ata_xfer *,
    110       1.45   thorpej 				 int);
    111       1.72   thorpej static void	wdc_ata_bio_kill_xfer(struct ata_channel *,
    112       1.58    bouyer 				      struct ata_xfer *, int);
    113       1.79     perry static void	wdc_ata_bio_done(struct ata_channel *, struct ata_xfer *);
    114      1.106  jdolecek static int	wdc_ata_err(struct ata_drive_datas *, struct ata_bio *, int);
    115        1.2    bouyer #define WDC_ATA_NOERR 0x00 /* Drive doesn't report an error */
    116        1.2    bouyer #define WDC_ATA_RECOV 0x01 /* There was a recovered error */
    117        1.2    bouyer #define WDC_ATA_ERR   0x02 /* Drive reports an error */
    118       1.45   thorpej static int	wdc_ata_addref(struct ata_drive_datas *);
    119       1.45   thorpej static void	wdc_ata_delref(struct ata_drive_datas *);
    120       1.32    bouyer 
    121       1.32    bouyer const struct ata_bustype wdc_ata_bustype = {
    122       1.32    bouyer 	SCSIPI_BUSTYPE_ATA,
    123       1.32    bouyer 	wdc_ata_bio,
    124       1.59    bouyer 	wdc_reset_drive,
    125       1.74   thorpej 	wdc_reset_channel,
    126       1.32    bouyer 	wdc_exec_command,
    127       1.32    bouyer 	ata_get_params,
    128       1.32    bouyer 	wdc_ata_addref,
    129       1.32    bouyer 	wdc_ata_delref,
    130       1.66   thorpej 	ata_kill_pending,
    131  1.109.2.3  pgoyette 	NULL,
    132  1.109.2.3  pgoyette };
    133  1.109.2.3  pgoyette 
    134  1.109.2.3  pgoyette static const struct ata_xfer_ops wdc_bio_xfer_ops = {
    135  1.109.2.3  pgoyette 	.c_start = wdc_ata_bio_start,
    136  1.109.2.3  pgoyette 	.c_poll = wdc_ata_bio_poll,
    137  1.109.2.3  pgoyette 	.c_abort = wdc_ata_bio_done,
    138  1.109.2.3  pgoyette 	.c_intr = wdc_ata_bio_intr,
    139  1.109.2.3  pgoyette 	.c_kill_xfer = wdc_ata_bio_kill_xfer
    140       1.32    bouyer };
    141       1.32    bouyer 
    142        1.2    bouyer /*
    143       1.64   thorpej  * Handle block I/O operation. Return ATACMD_COMPLETE, ATACMD_QUEUED, or
    144       1.64   thorpej  * ATACMD_TRY_AGAIN. Must be called at splbio().
    145        1.2    bouyer  */
    146       1.45   thorpej static int
    147      1.106  jdolecek wdc_ata_bio(struct ata_drive_datas *drvp, struct ata_xfer *xfer)
    148        1.2    bouyer {
    149       1.72   thorpej 	struct ata_channel *chp = drvp->chnl_softc;
    150       1.73   thorpej 	struct atac_softc *atac = chp->ch_atac;
    151      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    152        1.2    bouyer 
    153       1.73   thorpej 	if (atac->atac_cap & ATAC_CAP_NOIRQ)
    154       1.30     bjh21 		ata_bio->flags |= ATA_POLL;
    155        1.2    bouyer 	if (ata_bio->flags & ATA_POLL)
    156        1.2    bouyer 		xfer->c_flags |= C_POLL;
    157       1.85     itohy #if NATA_DMA
    158      1.101    bouyer 	if ((drvp->drive_flags & (ATA_DRIVE_DMA | ATA_DRIVE_UDMA)) &&
    159        1.2    bouyer 	    (ata_bio->flags & ATA_SINGLE) == 0)
    160        1.2    bouyer 		xfer->c_flags |= C_DMA;
    161       1.85     itohy #endif
    162       1.85     itohy #if NATA_DMA && NATA_PIOBM
    163       1.85     itohy 	else
    164       1.85     itohy #endif
    165       1.84     itohy #if NATA_PIOBM
    166       1.85     itohy 	if (atac->atac_cap & ATAC_CAP_PIOBM)
    167       1.84     itohy 		xfer->c_flags |= C_PIOBM;
    168       1.84     itohy #endif
    169       1.48   thorpej 	xfer->c_drive = drvp->drive;
    170       1.48   thorpej 	xfer->c_databuf = ata_bio->databuf;
    171        1.2    bouyer 	xfer->c_bcount = ata_bio->bcount;
    172  1.109.2.3  pgoyette 	xfer->ops = &wdc_bio_xfer_ops;
    173       1.68   thorpej 	ata_exec_xfer(chp, xfer);
    174       1.64   thorpej 	return (ata_bio->flags & ATA_ITSDONE) ? ATACMD_COMPLETE : ATACMD_QUEUED;
    175        1.2    bouyer }
    176        1.2    bouyer 
    177      1.106  jdolecek static int
    178       1.72   thorpej wdc_ata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
    179        1.2    bouyer {
    180       1.73   thorpej 	struct atac_softc *atac = chp->ch_atac;
    181       1.73   thorpej 	struct wdc_softc *wdc = CHAN_TO_WDC(chp);
    182       1.72   thorpej 	struct wdc_regs *wdr = &wdc->regs[chp->ch_channel];
    183      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    184       1.48   thorpej 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->c_drive];
    185      1.106  jdolecek 	int wait_flags, tfd;
    186       1.80  christos 	const char *errstring;
    187       1.94    bouyer #ifdef WDC_NO_IDS
    188       1.94    bouyer 	wait_flags = AT_POLL;
    189       1.94    bouyer #else
    190       1.95  christos 	wait_flags = (xfer->c_flags & C_POLL) ? AT_POLL : 0;
    191       1.94    bouyer #endif
    192       1.41    bouyer 
    193      1.101    bouyer 	ATADEBUG_PRINT(("wdc_ata_bio_start %s:%d:%d state %d drive_flags 0x%x "
    194      1.101    bouyer 	    "c_flags 0x%x ch_flags 0x%x\n",
    195      1.101    bouyer 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive,
    196      1.101    bouyer 	    drvp->state, drvp->drive_flags, xfer->c_flags, chp->ch_flags),
    197       1.20    bouyer 	    DEBUG_XFERS);
    198       1.20    bouyer 
    199      1.106  jdolecek 	ata_channel_lock_owned(chp);
    200      1.106  jdolecek 
    201       1.41    bouyer 	/* Do control operations specially. */
    202       1.41    bouyer 	if (__predict_false(drvp->state < READY)) {
    203       1.41    bouyer 		/*
    204       1.41    bouyer 		 * Actually, we want to be careful not to mess with the control
    205       1.41    bouyer 		 * state if the device is currently busy, but we can assume
    206       1.41    bouyer 		 * that we never get to this point if that's the case.
    207       1.41    bouyer 		 */
    208       1.81     peter 		/* If it's not a polled command, we need the kernel thread */
    209       1.91    bouyer 		if ((xfer->c_flags & C_POLL) == 0 &&
    210       1.91    bouyer 		    (chp->ch_flags & ATACH_TH_RUN) == 0) {
    211      1.106  jdolecek 			return ATASTART_TH;
    212       1.41    bouyer 		}
    213       1.41    bouyer 		/*
    214       1.41    bouyer 		 * disable interrupts, all commands here should be quick
    215       1.93       snj 		 * enough to be able to poll, and we don't go here that often
    216       1.41    bouyer 		 */
    217      1.102   rkujawa 		if (! (wdc->cap & WDC_CAPABILITY_NO_AUXCTL))
    218      1.102   rkujawa 			bus_space_write_1(wdr->ctl_iot, wdr->ctl_ioh,
    219      1.102   rkujawa 			    wd_aux_ctlr, WDCTL_4BIT | WDCTL_IDS);
    220       1.70   thorpej 		if (wdc->select)
    221       1.51   thorpej 			wdc->select(chp, xfer->c_drive);
    222       1.72   thorpej 		bus_space_write_1(wdr->cmd_iot, wdr->cmd_iohs[wd_sdh], 0,
    223       1.48   thorpej 		    WDSD_IBM | (xfer->c_drive << 4));
    224       1.53      fvdl 		DELAY(10);
    225       1.41    bouyer 		errstring = "wait";
    226      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    227      1.106  jdolecek 		    &tfd))
    228       1.41    bouyer 			goto ctrltimeout;
    229       1.48   thorpej 		wdccommandshort(chp, xfer->c_drive, WDCC_RECAL);
    230       1.41    bouyer 		/* Wait for at last 400ns for status bit to be valid */
    231       1.41    bouyer 		DELAY(1);
    232       1.41    bouyer 		errstring = "recal";
    233      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    234      1.106  jdolecek 		    &tfd))
    235       1.41    bouyer 			goto ctrltimeout;
    236      1.106  jdolecek 		if (ATACH_ST(tfd) & (WDCS_ERR | WDCS_DWF))
    237       1.41    bouyer 			goto ctrlerror;
    238       1.41    bouyer 		/* Don't try to set modes if controller can't be adjusted */
    239       1.73   thorpej 		if (atac->atac_set_modes == NULL)
    240       1.41    bouyer 			goto geometry;
    241       1.41    bouyer 		/* Also don't try if the drive didn't report its mode */
    242      1.101    bouyer 		if ((drvp->drive_flags & ATA_DRIVE_MODE) == 0)
    243       1.41    bouyer 			goto geometry;
    244       1.41    bouyer 		wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    245       1.41    bouyer 		    0x08 | drvp->PIO_mode, WDSF_SET_MODE);
    246       1.41    bouyer 		errstring = "piomode";
    247      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    248      1.106  jdolecek 		    &tfd))
    249       1.41    bouyer 			goto ctrltimeout;
    250      1.106  jdolecek 		if (ATACH_ST(tfd) & (WDCS_ERR | WDCS_DWF))
    251       1.41    bouyer 			goto ctrlerror;
    252       1.85     itohy #if NATA_DMA
    253       1.85     itohy #if NATA_UDMA
    254      1.101    bouyer 		if (drvp->drive_flags & ATA_DRIVE_UDMA) {
    255       1.41    bouyer 			wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    256       1.41    bouyer 			    0x40 | drvp->UDMA_mode, WDSF_SET_MODE);
    257       1.85     itohy 		} else
    258       1.85     itohy #endif
    259      1.101    bouyer 		if (drvp->drive_flags & ATA_DRIVE_DMA) {
    260       1.41    bouyer 			wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    261       1.41    bouyer 			    0x20 | drvp->DMA_mode, WDSF_SET_MODE);
    262       1.41    bouyer 		} else {
    263       1.41    bouyer 			goto geometry;
    264       1.79     perry 		}
    265       1.41    bouyer 		errstring = "dmamode";
    266      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    267      1.106  jdolecek 		    &tfd))
    268       1.41    bouyer 			goto ctrltimeout;
    269      1.106  jdolecek 		if (ATACH_ST(tfd) & (WDCS_ERR | WDCS_DWF))
    270       1.41    bouyer 			goto ctrlerror;
    271       1.85     itohy #endif	/* NATA_DMA */
    272       1.41    bouyer geometry:
    273       1.41    bouyer 		if (ata_bio->flags & ATA_LBA)
    274       1.41    bouyer 			goto multimode;
    275       1.48   thorpej 		wdccommand(chp, xfer->c_drive, WDCC_IDP,
    276      1.106  jdolecek 		    drvp->lp->d_ncylinders,
    277      1.106  jdolecek 		    drvp->lp->d_ntracks - 1, 0, drvp->lp->d_nsectors,
    278      1.106  jdolecek 		    (drvp->lp->d_type == DKTYPE_ST506) ?
    279      1.106  jdolecek 			drvp->lp->d_precompcyl / 4 : 0);
    280       1.41    bouyer 		errstring = "geometry";
    281      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    282      1.106  jdolecek 		    &tfd))
    283       1.41    bouyer 			goto ctrltimeout;
    284      1.106  jdolecek 		if (ATACH_ST(tfd) & (WDCS_ERR | WDCS_DWF))
    285       1.41    bouyer 			goto ctrlerror;
    286       1.41    bouyer multimode:
    287      1.106  jdolecek 		if (drvp->multi == 1)
    288       1.41    bouyer 			goto ready;
    289       1.48   thorpej 		wdccommand(chp, xfer->c_drive, WDCC_SETMULTI, 0, 0, 0,
    290      1.106  jdolecek 		    drvp->multi, 0);
    291       1.41    bouyer 		errstring = "setmulti";
    292      1.106  jdolecek 		if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY, wait_flags,
    293      1.106  jdolecek 		    &tfd))
    294       1.41    bouyer 			goto ctrltimeout;
    295      1.106  jdolecek 		if (ATACH_ST(tfd) & (WDCS_ERR | WDCS_DWF))
    296       1.41    bouyer 			goto ctrlerror;
    297       1.41    bouyer ready:
    298       1.41    bouyer 		drvp->state = READY;
    299       1.41    bouyer 		/*
    300       1.41    bouyer 		 * The drive is usable now
    301       1.41    bouyer 		 */
    302      1.102   rkujawa 		if (! (wdc->cap & WDC_CAPABILITY_NO_AUXCTL))
    303      1.102   rkujawa 			bus_space_write_1(wdr->ctl_iot, wdr->ctl_ioh,
    304      1.102   rkujawa 			    wd_aux_ctlr, WDCTL_4BIT);
    305       1.54    bouyer 		delay(10); /* some drives need a little delay here */
    306       1.41    bouyer 	}
    307       1.41    bouyer 
    308      1.106  jdolecek 	return _wdc_ata_bio_start(chp, xfer);
    309       1.41    bouyer ctrltimeout:
    310       1.41    bouyer 	printf("%s:%d:%d: %s timed out\n",
    311       1.88      cube 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive,
    312       1.51   thorpej 	    errstring);
    313       1.41    bouyer 	ata_bio->error = TIMEOUT;
    314       1.41    bouyer 	goto ctrldone;
    315       1.41    bouyer ctrlerror:
    316       1.41    bouyer 	printf("%s:%d:%d: %s ",
    317       1.88      cube 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive,
    318       1.41    bouyer 	    errstring);
    319      1.106  jdolecek 	if (ATACH_ST(tfd) & WDCS_DWF) {
    320       1.41    bouyer 		printf("drive fault\n");
    321       1.41    bouyer 		ata_bio->error = ERR_DF;
    322       1.41    bouyer 	} else {
    323      1.106  jdolecek 		ata_bio->r_error = ATACH_ERR(tfd);
    324       1.41    bouyer 		ata_bio->error = ERROR;
    325      1.106  jdolecek 		printf("error (%x)\n", ata_bio->r_error);
    326       1.41    bouyer 	}
    327       1.41    bouyer ctrldone:
    328       1.41    bouyer 	drvp->state = 0;
    329      1.102   rkujawa 
    330      1.102   rkujawa 	if (! (wdc->cap & WDC_CAPABILITY_NO_AUXCTL))
    331      1.102   rkujawa 		bus_space_write_1(wdr->ctl_iot, wdr->ctl_ioh, wd_aux_ctlr,
    332      1.102   rkujawa 		    WDCTL_4BIT);
    333      1.106  jdolecek 	return ATASTART_ABORT;
    334       1.20    bouyer }
    335       1.20    bouyer 
    336      1.106  jdolecek static int
    337       1.72   thorpej _wdc_ata_bio_start(struct ata_channel *chp, struct ata_xfer *xfer)
    338       1.20    bouyer {
    339       1.73   thorpej 	struct atac_softc *atac = chp->ch_atac;
    340       1.73   thorpej 	struct wdc_softc *wdc = CHAN_TO_WDC(chp);
    341       1.72   thorpej 	struct wdc_regs *wdr = &wdc->regs[chp->ch_channel];
    342      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    343       1.48   thorpej 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->c_drive];
    344       1.51   thorpej 	int wait_flags = (xfer->c_flags & C_POLL) ? AT_POLL : 0;
    345      1.104      matt 	uint16_t cyl;
    346      1.104      matt 	uint8_t head, sect, cmd = 0;
    347      1.106  jdolecek 	int nblks, tfd;
    348       1.85     itohy #if NATA_DMA || NATA_PIOBM
    349       1.85     itohy 	int error, dma_flags = 0;
    350       1.85     itohy #endif
    351        1.2    bouyer 
    352       1.71   thorpej 	ATADEBUG_PRINT(("_wdc_ata_bio_start %s:%d:%d\n",
    353       1.88      cube 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive),
    354       1.20    bouyer 	    DEBUG_INTR | DEBUG_XFERS);
    355        1.2    bouyer 
    356       1.85     itohy #if NATA_DMA || NATA_PIOBM
    357       1.84     itohy 	if (xfer->c_flags & (C_DMA | C_PIOBM)) {
    358       1.85     itohy #if NATA_DMA
    359       1.23    bouyer 		if (drvp->n_xfers <= NXFER)
    360       1.23    bouyer 			drvp->n_xfers++;
    361       1.85     itohy #endif
    362        1.2    bouyer 		dma_flags = (ata_bio->flags & ATA_READ) ?  WDC_DMA_READ : 0;
    363       1.39  nakayama 		if (ata_bio->flags & ATA_LBA48)
    364       1.39  nakayama 			dma_flags |= WDC_DMA_LBA48;
    365        1.2    bouyer 	}
    366       1.85     itohy #endif
    367        1.2    bouyer 	/*
    368        1.2    bouyer 	 *
    369        1.2    bouyer 	 * When starting a multi-sector transfer, or doing single-sector
    370        1.2    bouyer 	 * transfers...
    371        1.2    bouyer 	 */
    372        1.2    bouyer 	if (xfer->c_skip == 0 || (ata_bio->flags & ATA_SINGLE) != 0) {
    373        1.2    bouyer 		if (ata_bio->flags & ATA_SINGLE)
    374        1.2    bouyer 			nblks = 1;
    375       1.79     perry 		else
    376      1.106  jdolecek 			nblks = xfer->c_bcount / drvp->lp->d_secsize;
    377        1.2    bouyer 		/* Check for bad sectors and adjust transfer, if necessary. */
    378      1.106  jdolecek 		if ((drvp->lp->d_flags & D_BADSECT) != 0) {
    379        1.2    bouyer 			long blkdiff;
    380        1.2    bouyer 			int i;
    381      1.106  jdolecek 			for (i = 0; (blkdiff = drvp->badsect[i]) != -1;
    382        1.2    bouyer 			    i++) {
    383        1.2    bouyer 				blkdiff -= ata_bio->blkno;
    384        1.2    bouyer 				if (blkdiff < 0)
    385        1.2    bouyer 					continue;
    386        1.2    bouyer 				if (blkdiff == 0) {
    387        1.2    bouyer 					/* Replace current block of transfer. */
    388        1.2    bouyer 					ata_bio->blkno =
    389      1.106  jdolecek 					    drvp->lp->d_secperunit -
    390      1.106  jdolecek 					    drvp->lp->d_nsectors - i - 1;
    391        1.2    bouyer 				}
    392        1.2    bouyer 				if (blkdiff < nblks) {
    393        1.2    bouyer 					/* Bad block inside transfer. */
    394        1.2    bouyer 					ata_bio->flags |= ATA_SINGLE;
    395        1.2    bouyer 					nblks = 1;
    396        1.2    bouyer 				}
    397        1.2    bouyer 				break;
    398        1.2    bouyer 			}
    399        1.2    bouyer 		/* Transfer is okay now. */
    400        1.2    bouyer 		}
    401       1.34  christos 		if (ata_bio->flags & ATA_LBA48) {
    402       1.34  christos 			sect = 0;
    403       1.34  christos 			cyl =  0;
    404       1.34  christos 			head = 0;
    405       1.34  christos 		} else if (ata_bio->flags & ATA_LBA) {
    406        1.2    bouyer 			sect = (ata_bio->blkno >> 0) & 0xff;
    407        1.2    bouyer 			cyl = (ata_bio->blkno >> 8) & 0xffff;
    408        1.2    bouyer 			head = (ata_bio->blkno >> 24) & 0x0f;
    409        1.2    bouyer 			head |= WDSD_LBA;
    410        1.2    bouyer 		} else {
    411        1.2    bouyer 			int blkno = ata_bio->blkno;
    412      1.106  jdolecek 			sect = blkno % drvp->lp->d_nsectors;
    413        1.2    bouyer 			sect++;    /* Sectors begin with 1, not 0. */
    414      1.106  jdolecek 			blkno /= drvp->lp->d_nsectors;
    415      1.106  jdolecek 			head = blkno % drvp->lp->d_ntracks;
    416      1.106  jdolecek 			blkno /= drvp->lp->d_ntracks;
    417        1.2    bouyer 			cyl = blkno;
    418        1.2    bouyer 			head |= WDSD_CHS;
    419        1.2    bouyer 		}
    420       1.85     itohy #if NATA_DMA
    421        1.2    bouyer 		if (xfer->c_flags & C_DMA) {
    422      1.106  jdolecek 			uint16_t count = nblks, features = 0;
    423      1.106  jdolecek 
    424        1.2    bouyer 			ata_bio->nblks = nblks;
    425        1.2    bouyer 			ata_bio->nbytes = xfer->c_bcount;
    426        1.2    bouyer 			cmd = (ata_bio->flags & ATA_READ) ?
    427        1.2    bouyer 			    WDCC_READDMA : WDCC_WRITEDMA;
    428        1.2    bouyer 	    		/* Init the DMA channel. */
    429       1.82   thorpej 			error = (*wdc->dma_init)(wdc->dma_arg,
    430       1.51   thorpej 			    chp->ch_channel, xfer->c_drive,
    431       1.79     perry 			    (char *)xfer->c_databuf + xfer->c_skip,
    432       1.82   thorpej 			    ata_bio->nbytes, dma_flags);
    433       1.82   thorpej 			if (error) {
    434       1.82   thorpej 				if (error == EINVAL) {
    435       1.82   thorpej 					/*
    436       1.82   thorpej 					 * We can't do DMA on this transfer
    437       1.82   thorpej 					 * for some reason.  Fall back to
    438       1.82   thorpej 					 * PIO.
    439       1.82   thorpej 					 */
    440       1.82   thorpej 					xfer->c_flags &= ~C_DMA;
    441       1.82   thorpej 					error = 0;
    442       1.82   thorpej 					goto do_pio;
    443       1.82   thorpej 				}
    444        1.2    bouyer 				ata_bio->error = ERR_DMA;
    445        1.2    bouyer 				ata_bio->r_error = 0;
    446      1.106  jdolecek 				return ATASTART_ABORT;
    447        1.2    bouyer 			}
    448        1.2    bouyer 			/* Initiate command */
    449       1.70   thorpej 			if (wdc->select)
    450       1.51   thorpej 				wdc->select(chp, xfer->c_drive);
    451       1.72   thorpej 			bus_space_write_1(wdr->cmd_iot, wdr->cmd_iohs[wd_sdh],
    452       1.48   thorpej 			    0, WDSD_IBM | (xfer->c_drive << 4));
    453      1.106  jdolecek 			switch(wdc_wait_for_ready(chp, ATA_DELAY, wait_flags,
    454      1.106  jdolecek 			    &tfd)) {
    455       1.41    bouyer 			case WDCWAIT_OK:
    456       1.79     perry 				break;
    457       1.41    bouyer 			case WDCWAIT_TOUT:
    458        1.2    bouyer 				goto timeout;
    459       1.41    bouyer 			case WDCWAIT_THR:
    460      1.106  jdolecek 				return ATASTART_TH;
    461       1.41    bouyer 			}
    462  1.109.2.1  pgoyette 			/* start the DMA channel before */
    463  1.109.2.1  pgoyette 			if ((chp->ch_flags & ATACH_DMA_BEFORE_CMD) != 0)
    464  1.109.2.1  pgoyette 				(*wdc->dma_start)(wdc->dma_arg,
    465  1.109.2.1  pgoyette 				    chp->ch_channel, xfer->c_drive);
    466       1.34  christos 			if (ata_bio->flags & ATA_LBA48) {
    467      1.106  jdolecek 			    uint8_t device = WDSD_LBA;
    468      1.106  jdolecek 			    cmd = atacmd_to48(cmd);
    469      1.106  jdolecek 
    470      1.106  jdolecek 			    atacmd_toncq(xfer, &cmd, &count, &features,
    471      1.106  jdolecek 			        &device);
    472      1.106  jdolecek 
    473      1.106  jdolecek 			    wdccommandext(chp, xfer->c_drive, cmd,
    474      1.106  jdolecek 				ata_bio->blkno, count, features, device);
    475       1.34  christos 			} else {
    476       1.48   thorpej 			    wdccommand(chp, xfer->c_drive, cmd, cyl,
    477      1.106  jdolecek 				head, sect, count, features);
    478       1.34  christos 			}
    479  1.109.2.1  pgoyette 			/* start the DMA channel after */
    480  1.109.2.1  pgoyette 			if ((chp->ch_flags & ATACH_DMA_BEFORE_CMD) == 0)
    481  1.109.2.1  pgoyette 				(*wdc->dma_start)(wdc->dma_arg,
    482  1.109.2.1  pgoyette 				    chp->ch_channel, xfer->c_drive);
    483       1.72   thorpej 			chp->ch_flags |= ATACH_DMA_WAIT;
    484       1.41    bouyer 			/* start timeout machinery */
    485       1.41    bouyer 			if ((xfer->c_flags & C_POLL) == 0)
    486  1.109.2.3  pgoyette 				callout_reset(&chp->c_timo_callout,
    487  1.109.2.3  pgoyette 				    ATA_DELAY / 1000 * hz, wdctimeout, chp);
    488        1.2    bouyer 			/* wait for irq */
    489        1.2    bouyer 			goto intr;
    490        1.2    bouyer 		} /* else not DMA */
    491       1.82   thorpej  do_pio:
    492       1.85     itohy #endif	/* NATA_DMA */
    493       1.84     itohy #if NATA_PIOBM
    494       1.84     itohy 		if ((xfer->c_flags & C_PIOBM) && xfer->c_skip == 0) {
    495       1.84     itohy 			if (ata_bio->flags & ATA_POLL) {
    496       1.84     itohy 				/* XXX not supported yet --- fall back to PIO */
    497       1.84     itohy 				xfer->c_flags &= ~C_PIOBM;
    498       1.84     itohy 			} else {
    499       1.84     itohy 				/* Init the DMA channel. */
    500       1.84     itohy 				error = (*wdc->dma_init)(wdc->dma_arg,
    501       1.84     itohy 				    chp->ch_channel, xfer->c_drive,
    502       1.84     itohy 				    (char *)xfer->c_databuf + xfer->c_skip,
    503       1.84     itohy 				    xfer->c_bcount,
    504       1.84     itohy 				    dma_flags | WDC_DMA_PIOBM_ATA);
    505       1.84     itohy 				if (error) {
    506       1.84     itohy 					if (error == EINVAL) {
    507       1.84     itohy 						/*
    508       1.84     itohy 						 * We can't do DMA on this
    509       1.84     itohy 						 * transfer for some reason.
    510       1.84     itohy 						 * Fall back to PIO.
    511       1.84     itohy 						 */
    512       1.84     itohy 						xfer->c_flags &= ~C_PIOBM;
    513       1.84     itohy 						error = 0;
    514       1.84     itohy 					} else {
    515       1.84     itohy 						ata_bio->error = ERR_DMA;
    516       1.84     itohy 						ata_bio->r_error = 0;
    517      1.106  jdolecek 						return ATASTART_ABORT;
    518       1.84     itohy 					}
    519       1.84     itohy 				}
    520       1.84     itohy 			}
    521       1.84     itohy 		}
    522       1.84     itohy #endif
    523  1.109.2.2  pgoyette 		ata_bio->nblks = uimin(nblks, drvp->multi);
    524      1.106  jdolecek 		ata_bio->nbytes = ata_bio->nblks * drvp->lp->d_secsize;
    525       1.56   mycroft 		KASSERT(nblks == 1 || (ata_bio->flags & ATA_SINGLE) == 0);
    526       1.56   mycroft 		if (ata_bio->nblks > 1) {
    527        1.2    bouyer 			cmd = (ata_bio->flags & ATA_READ) ?
    528        1.2    bouyer 			    WDCC_READMULTI : WDCC_WRITEMULTI;
    529        1.2    bouyer 		} else {
    530        1.2    bouyer 			cmd = (ata_bio->flags & ATA_READ) ?
    531        1.2    bouyer 			    WDCC_READ : WDCC_WRITE;
    532        1.2    bouyer 		}
    533        1.2    bouyer 		/* Initiate command! */
    534       1.70   thorpej 		if (wdc->select)
    535       1.51   thorpej 			wdc->select(chp, xfer->c_drive);
    536       1.72   thorpej 		bus_space_write_1(wdr->cmd_iot, wdr->cmd_iohs[wd_sdh], 0,
    537       1.48   thorpej 		    WDSD_IBM | (xfer->c_drive << 4));
    538      1.106  jdolecek 		switch(wdc_wait_for_ready(chp, ATA_DELAY, wait_flags, &tfd)) {
    539       1.41    bouyer 		case WDCWAIT_OK:
    540       1.41    bouyer 			break;
    541       1.41    bouyer 		case WDCWAIT_TOUT:
    542        1.2    bouyer 			goto timeout;
    543       1.41    bouyer 		case WDCWAIT_THR:
    544      1.106  jdolecek 			return ATASTART_TH;
    545       1.41    bouyer 		}
    546       1.34  christos 		if (ata_bio->flags & ATA_LBA48) {
    547       1.75   thorpej 		    wdccommandext(chp, xfer->c_drive, atacmd_to48(cmd),
    548      1.103  jakllsch 			ata_bio->blkno, nblks, 0, WDSD_LBA);
    549       1.34  christos 		} else {
    550       1.48   thorpej 		    wdccommand(chp, xfer->c_drive, cmd, cyl,
    551       1.34  christos 			head, sect, nblks,
    552      1.106  jdolecek 			(drvp->lp->d_type == DKTYPE_ST506) ?
    553      1.106  jdolecek 			drvp->lp->d_precompcyl / 4 : 0);
    554       1.34  christos 		}
    555       1.41    bouyer 		/* start timeout machinery */
    556       1.41    bouyer 		if ((xfer->c_flags & C_POLL) == 0)
    557  1.109.2.3  pgoyette 			callout_reset(&chp->c_timo_callout,
    558  1.109.2.3  pgoyette 			    ATA_DELAY / 1000 * hz, wdctimeout, chp);
    559        1.2    bouyer 	} else if (ata_bio->nblks > 1) {
    560        1.2    bouyer 		/* The number of blocks in the last stretch may be smaller. */
    561      1.106  jdolecek 		nblks = xfer->c_bcount / drvp->lp->d_secsize;
    562        1.2    bouyer 		if (ata_bio->nblks > nblks) {
    563        1.2    bouyer 		ata_bio->nblks = nblks;
    564        1.2    bouyer 		ata_bio->nbytes = xfer->c_bcount;
    565        1.2    bouyer 		}
    566        1.2    bouyer 	}
    567        1.2    bouyer 	/* If this was a write and not using DMA, push the data. */
    568        1.2    bouyer 	if ((ata_bio->flags & ATA_READ) == 0) {
    569       1.41    bouyer 		/*
    570       1.41    bouyer 		 * we have to busy-wait here, we can't rely on running in
    571       1.41    bouyer 		 * thread context.
    572       1.41    bouyer 		 */
    573      1.106  jdolecek 		if (wdc_wait_for_drq(chp, ATA_DELAY, AT_POLL, &tfd) != 0) {
    574        1.2    bouyer 			printf("%s:%d:%d: timeout waiting for DRQ, "
    575        1.2    bouyer 			    "st=0x%02x, err=0x%02x\n",
    576       1.88      cube 			    device_xname(atac->atac_dev), chp->ch_channel,
    577      1.106  jdolecek 			    xfer->c_drive,
    578      1.106  jdolecek 			    ATACH_ST(tfd), ATACH_ERR(tfd));
    579      1.106  jdolecek 			if (wdc_ata_err(drvp, ata_bio, tfd) != WDC_ATA_ERR)
    580        1.2    bouyer 				ata_bio->error = TIMEOUT;
    581      1.106  jdolecek 			return ATASTART_ABORT;
    582        1.2    bouyer 		}
    583      1.106  jdolecek 		if (wdc_ata_err(drvp, ata_bio, tfd) == WDC_ATA_ERR) {
    584      1.106  jdolecek 			return ATASTART_ABORT;
    585        1.2    bouyer 		}
    586       1.84     itohy #if NATA_PIOBM
    587       1.84     itohy 		if (xfer->c_flags & C_PIOBM) {
    588       1.84     itohy 			/* start the busmastering PIO */
    589       1.84     itohy 			(*wdc->piobm_start)(wdc->dma_arg,
    590       1.84     itohy 			    chp->ch_channel, xfer->c_drive,
    591       1.84     itohy 			    xfer->c_skip, ata_bio->nbytes, 0);
    592       1.84     itohy 			chp->ch_flags |= ATACH_DMA_WAIT;
    593       1.84     itohy 		} else
    594       1.84     itohy #endif
    595       1.84     itohy 
    596       1.63   mycroft 		wdc->dataout_pio(chp, drvp->drive_flags,
    597       1.62   mycroft 		    (char *)xfer->c_databuf + xfer->c_skip, ata_bio->nbytes);
    598        1.2    bouyer 	}
    599        1.2    bouyer 
    600       1.85     itohy #if NATA_DMA
    601       1.85     itohy intr:
    602       1.85     itohy #endif
    603       1.85     itohy 	/* Wait for IRQ (either real or polled) */
    604      1.109  jdolecek 	if ((ata_bio->flags & ATA_POLL) == 0) {
    605      1.109  jdolecek 		chp->ch_flags |= ATACH_IRQ_WAIT;
    606      1.109  jdolecek 		return ATASTART_STARTED;
    607      1.109  jdolecek 	} else {
    608      1.109  jdolecek 		return ATASTART_POLL;
    609      1.109  jdolecek 	}
    610      1.106  jdolecek 
    611        1.2    bouyer timeout:
    612        1.2    bouyer 	printf("%s:%d:%d: not ready, st=0x%02x, err=0x%02x\n",
    613       1.88      cube 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive,
    614      1.106  jdolecek 	    ATACH_ST(tfd), ATACH_ERR(tfd));
    615      1.106  jdolecek 	if (wdc_ata_err(drvp, ata_bio, tfd) != WDC_ATA_ERR)
    616        1.2    bouyer 		ata_bio->error = TIMEOUT;
    617      1.106  jdolecek 	return ATASTART_ABORT;
    618      1.106  jdolecek }
    619      1.106  jdolecek 
    620      1.106  jdolecek static void
    621      1.106  jdolecek wdc_ata_bio_poll(struct ata_channel *chp, struct ata_xfer *xfer)
    622      1.106  jdolecek {
    623      1.106  jdolecek 	/* Wait for at last 400ns for status bit to be valid */
    624      1.106  jdolecek 	delay(1);
    625      1.106  jdolecek #if NATA_DMA
    626      1.106  jdolecek 	if (chp->ch_flags & ATACH_DMA_WAIT) {
    627      1.106  jdolecek 		wdc_dmawait(chp, xfer, ATA_DELAY);
    628      1.106  jdolecek 		chp->ch_flags &= ~ATACH_DMA_WAIT;
    629      1.106  jdolecek 	}
    630      1.106  jdolecek #endif
    631      1.106  jdolecek 	wdc_ata_bio_intr(chp, xfer, 0);
    632        1.2    bouyer }
    633        1.2    bouyer 
    634       1.45   thorpej static int
    635      1.108  jdolecek wdc_ata_bio_intr(struct ata_channel *chp, struct ata_xfer *xfer, int irq)
    636        1.2    bouyer {
    637       1.73   thorpej 	struct atac_softc *atac = chp->ch_atac;
    638       1.73   thorpej 	struct wdc_softc *wdc = CHAN_TO_WDC(chp);
    639      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    640       1.48   thorpej 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->c_drive];
    641      1.106  jdolecek 	int drv_err, tfd;
    642        1.2    bouyer 
    643       1.71   thorpej 	ATADEBUG_PRINT(("wdc_ata_bio_intr %s:%d:%d\n",
    644       1.88      cube 	    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive),
    645        1.2    bouyer 	    DEBUG_INTR | DEBUG_XFERS);
    646        1.2    bouyer 
    647      1.106  jdolecek 	ata_channel_lock(chp);
    648        1.2    bouyer 
    649        1.2    bouyer 	/* Is it not a transfer, but a control operation? */
    650        1.2    bouyer 	if (drvp->state < READY) {
    651        1.2    bouyer 		printf("%s:%d:%d: bad state %d in wdc_ata_bio_intr\n",
    652       1.88      cube 		    device_xname(atac->atac_dev), chp->ch_channel, xfer->c_drive,
    653        1.2    bouyer 		    drvp->state);
    654       1.38    provos 		panic("wdc_ata_bio_intr: bad state");
    655        1.2    bouyer 	}
    656        1.2    bouyer 
    657       1.20    bouyer 	/*
    658       1.20    bouyer 	 * if we missed an interrupt in a PIO transfer, reset and restart.
    659       1.20    bouyer 	 * Don't try to continue transfer, we may have missed cycles.
    660       1.20    bouyer 	 */
    661       1.20    bouyer 	if ((xfer->c_flags & (C_TIMEOU | C_DMA)) == C_TIMEOU) {
    662       1.20    bouyer 		ata_bio->error = TIMEOUT;
    663      1.107  christos 		goto err;
    664       1.20    bouyer 	}
    665       1.20    bouyer 
    666       1.84     itohy #if NATA_PIOBM
    667       1.84     itohy 	/* Transfer-done interrupt for busmastering PIO read */
    668       1.84     itohy 	if ((xfer->c_flags & C_PIOBM) && (chp->ch_flags & ATACH_PIOBM_WAIT)) {
    669       1.84     itohy 		chp->ch_flags &= ~ATACH_PIOBM_WAIT;
    670       1.84     itohy 		goto end;
    671       1.84     itohy 	}
    672       1.84     itohy #endif
    673       1.84     itohy 
    674       1.49   thorpej 	/* Ack interrupt done by wdc_wait_for_unbusy */
    675      1.108  jdolecek 	if (wdc_wait_for_unbusy(chp,
    676      1.108  jdolecek 	    (irq == 0) ? ATA_DELAY : 0, AT_POLL, &tfd) < 0) {
    677      1.108  jdolecek 		if (irq && (xfer->c_flags & C_TIMEOU) == 0) {
    678      1.106  jdolecek 			ata_channel_unlock(chp);
    679       1.18    bouyer 			return 0; /* IRQ was not for us */
    680      1.106  jdolecek 		}
    681        1.2    bouyer 		printf("%s:%d:%d: device timeout, c_bcount=%d, c_skip%d\n",
    682      1.107  christos 		    device_xname(atac->atac_dev), chp->ch_channel,
    683      1.107  christos 		    xfer->c_drive, xfer->c_bcount, xfer->c_skip);
    684        1.2    bouyer 		ata_bio->error = TIMEOUT;
    685      1.107  christos 		goto err;
    686        1.2    bouyer 	}
    687       1.70   thorpej 	if (wdc->irqack)
    688       1.51   thorpej 		wdc->irqack(chp);
    689       1.79     perry 
    690      1.106  jdolecek 	drv_err = wdc_ata_err(drvp, ata_bio, tfd);
    691        1.2    bouyer 
    692       1.85     itohy #if NATA_DMA
    693        1.2    bouyer 	/* If we were using DMA, Turn off the DMA channel and check for error */
    694        1.2    bouyer 	if (xfer->c_flags & C_DMA) {
    695        1.2    bouyer 		if (ata_bio->flags & ATA_POLL) {
    696        1.2    bouyer 			/*
    697       1.13    bouyer 			 * IDE drives deassert WDCS_BSY before transfer is
    698        1.2    bouyer 			 * complete when using DMA. Polling for DRQ to deassert
    699       1.37       wiz 			 * is not enough DRQ is not required to be
    700        1.7    bouyer 			 * asserted for DMA transfers, so poll for DRDY.
    701        1.2    bouyer 			 */
    702        1.2    bouyer 			if (wdcwait(chp, WDCS_DRDY | WDCS_DRQ, WDCS_DRDY,
    703      1.106  jdolecek 			    ATA_DELAY, ATA_POLL, &tfd) == WDCWAIT_TOUT) {
    704        1.7    bouyer 				printf("%s:%d:%d: polled transfer timed out "
    705       1.88      cube 				    "(st=0x%x)\n",
    706       1.88      cube 				    device_xname(atac->atac_dev),
    707       1.51   thorpej 				    chp->ch_channel, xfer->c_drive,
    708      1.106  jdolecek 				    ATACH_ST(tfd));
    709        1.2    bouyer 				ata_bio->error = TIMEOUT;
    710       1.10    bouyer 				drv_err = WDC_ATA_ERR;
    711       1.10    bouyer 			}
    712       1.10    bouyer 		}
    713       1.51   thorpej 		if (wdc->dma_status != 0) {
    714       1.10    bouyer 			if (drv_err != WDC_ATA_ERR) {
    715       1.10    bouyer 				ata_bio->error = ERR_DMA;
    716       1.10    bouyer 				drv_err = WDC_ATA_ERR;
    717        1.2    bouyer 			}
    718        1.2    bouyer 		}
    719      1.106  jdolecek 		if (ATACH_ST(tfd) & WDCS_DRQ) {
    720        1.2    bouyer 			if (drv_err != WDC_ATA_ERR) {
    721        1.2    bouyer 				printf("%s:%d:%d: intr with DRQ (st=0x%x)\n",
    722       1.88      cube 				    device_xname(atac->atac_dev),
    723       1.88      cube 				    chp->ch_channel,
    724      1.106  jdolecek 				    xfer->c_drive, ATACH_ST(tfd));
    725        1.2    bouyer 				ata_bio->error = TIMEOUT;
    726        1.2    bouyer 				drv_err = WDC_ATA_ERR;
    727        1.2    bouyer 			}
    728        1.2    bouyer 		}
    729       1.77    bouyer 		if (drv_err != WDC_ATA_ERR)
    730       1.77    bouyer 			goto end;
    731      1.106  jdolecek 		if (ata_bio->r_error & WDCE_CRC || ata_bio->error == ERR_DMA) {
    732      1.107  christos 			ata_dmaerr(drvp,
    733      1.107  christos 			    (xfer->c_flags & C_POLL) ? AT_POLL : 0);
    734      1.106  jdolecek 			goto err;
    735      1.106  jdolecek 		}
    736        1.2    bouyer 	}
    737       1.85     itohy #endif	/* NATA_DMA */
    738        1.2    bouyer 
    739        1.2    bouyer 	/* if we had an error, end */
    740      1.107  christos 	if (drv_err == WDC_ATA_ERR)
    741      1.107  christos 		goto err;
    742        1.2    bouyer 
    743        1.2    bouyer 	/* If this was a read and not using DMA, fetch the data. */
    744        1.2    bouyer 	if ((ata_bio->flags & ATA_READ) != 0) {
    745      1.106  jdolecek 		if ((ATACH_ST(tfd) & WDCS_DRQ) != WDCS_DRQ) {
    746        1.2    bouyer 			printf("%s:%d:%d: read intr before drq\n",
    747       1.88      cube 			    device_xname(atac->atac_dev), chp->ch_channel,
    748       1.48   thorpej 			    xfer->c_drive);
    749        1.2    bouyer 			ata_bio->error = TIMEOUT;
    750      1.107  christos 			goto err;
    751        1.2    bouyer 		}
    752       1.84     itohy #if NATA_PIOBM
    753       1.84     itohy 		if (xfer->c_flags & C_PIOBM) {
    754       1.84     itohy 			/* start the busmastering PIO */
    755       1.84     itohy 			(*wdc->piobm_start)(wdc->dma_arg,
    756       1.84     itohy 			    chp->ch_channel, xfer->c_drive,
    757       1.84     itohy 			    xfer->c_skip, ata_bio->nbytes,
    758       1.84     itohy 			    WDC_PIOBM_XFER_IRQ);
    759      1.106  jdolecek 			chp->ch_flags |= ATACH_DMA_WAIT | ATACH_PIOBM_WAIT;
    760      1.106  jdolecek 			ata_channel_unlock(chp);
    761       1.84     itohy 			return 1;
    762      1.107  christos 		}
    763       1.84     itohy #endif
    764       1.63   mycroft 		wdc->datain_pio(chp, drvp->drive_flags,
    765       1.62   mycroft 		    (char *)xfer->c_databuf + xfer->c_skip, ata_bio->nbytes);
    766        1.2    bouyer 	}
    767        1.2    bouyer 
    768       1.85     itohy #if NATA_DMA || NATA_PIOBM
    769        1.2    bouyer end:
    770       1.85     itohy #endif
    771        1.2    bouyer 	ata_bio->blkno += ata_bio->nblks;
    772        1.2    bouyer 	ata_bio->blkdone += ata_bio->nblks;
    773        1.2    bouyer 	xfer->c_skip += ata_bio->nbytes;
    774        1.2    bouyer 	xfer->c_bcount -= ata_bio->nbytes;
    775      1.106  jdolecek 
    776        1.2    bouyer 	/* See if this transfer is complete. */
    777        1.2    bouyer 	if (xfer->c_bcount > 0) {
    778        1.2    bouyer 		if ((ata_bio->flags & ATA_POLL) == 0) {
    779        1.2    bouyer 			/* Start the next operation */
    780      1.106  jdolecek 			ata_xfer_start(xfer);
    781        1.2    bouyer 		} else {
    782       1.20    bouyer 			/* Let _wdc_ata_bio_start do the loop */
    783        1.2    bouyer 		}
    784      1.106  jdolecek 		ata_channel_unlock(chp);
    785      1.107  christos 		return 1;
    786        1.2    bouyer 	}
    787      1.107  christos 
    788      1.107  christos 	/* Done with this transfer */
    789      1.107  christos 	ata_bio->error = NOERROR;
    790      1.107  christos err:	ata_channel_unlock(chp);
    791      1.107  christos 	wdc_ata_bio_done(chp, xfer);
    792        1.2    bouyer 	return 1;
    793       1.22     enami }
    794       1.22     enami 
    795       1.45   thorpej static void
    796       1.72   thorpej wdc_ata_bio_kill_xfer(struct ata_channel *chp, struct ata_xfer *xfer,
    797       1.58    bouyer     int reason)
    798       1.22     enami {
    799      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    800       1.48   thorpej 	int drive = xfer->c_drive;
    801      1.106  jdolecek 	bool deactivate = true;
    802       1.22     enami 
    803       1.22     enami 	ata_bio->flags |= ATA_ITSDONE;
    804       1.58    bouyer 	switch (reason) {
    805      1.106  jdolecek 	case KILL_GONE_INACTIVE:
    806      1.106  jdolecek 		deactivate = false;
    807      1.106  jdolecek 		/* FALLTHROUGH */
    808       1.58    bouyer 	case KILL_GONE:
    809       1.58    bouyer 		ata_bio->error = ERR_NODEV;
    810       1.58    bouyer 		break;
    811       1.58    bouyer 	case KILL_RESET:
    812       1.58    bouyer 		ata_bio->error = ERR_RESET;
    813       1.58    bouyer 		break;
    814       1.58    bouyer 	default:
    815       1.58    bouyer 		printf("wdc_ata_bio_kill_xfer: unknown reason %d\n",
    816       1.58    bouyer 		    reason);
    817       1.58    bouyer 		panic("wdc_ata_bio_kill_xfer");
    818       1.58    bouyer 	}
    819       1.22     enami 	ata_bio->r_error = WDCE_ABRT;
    820      1.106  jdolecek 
    821      1.106  jdolecek 	if (deactivate)
    822      1.106  jdolecek 		ata_deactivate_xfer(chp, xfer);
    823      1.106  jdolecek 
    824      1.101    bouyer 	ATADEBUG_PRINT(("wdc_ata_bio_kill_xfer: drv_done\n"), DEBUG_XFERS);
    825      1.106  jdolecek 	(*chp->ch_drive[drive].drv_done)(chp->ch_drive[drive].drv_softc, xfer);
    826        1.2    bouyer }
    827        1.2    bouyer 
    828       1.45   thorpej static void
    829       1.72   thorpej wdc_ata_bio_done(struct ata_channel *chp, struct ata_xfer *xfer)
    830        1.2    bouyer {
    831      1.106  jdolecek 	struct ata_bio *ata_bio = &xfer->c_bio;
    832       1.48   thorpej 	int drive = xfer->c_drive;
    833        1.2    bouyer 
    834       1.71   thorpej 	ATADEBUG_PRINT(("wdc_ata_bio_done %s:%d:%d: flags 0x%x\n",
    835       1.88      cube 	    device_xname(chp->ch_atac->atac_dev), chp->ch_channel,
    836       1.88      cube 	    xfer->c_drive, (u_int)xfer->c_flags),
    837        1.4    bouyer 	    DEBUG_XFERS);
    838       1.10    bouyer 
    839      1.106  jdolecek 	if (ata_waitdrain_xfer_check(chp, xfer))
    840      1.106  jdolecek 		return;
    841        1.2    bouyer 
    842        1.2    bouyer 	/* feed back residual bcount to our caller */
    843        1.2    bouyer 	ata_bio->bcount = xfer->c_bcount;
    844        1.2    bouyer 
    845       1.60    bouyer 	/* mark controller inactive and free xfer */
    846      1.106  jdolecek 	ata_deactivate_xfer(chp, xfer);
    847        1.2    bouyer 
    848        1.2    bouyer 	ata_bio->flags |= ATA_ITSDONE;
    849       1.71   thorpej 	ATADEBUG_PRINT(("wdc_ata_done: drv_done\n"), DEBUG_XFERS);
    850      1.106  jdolecek 	(*chp->ch_drive[drive].drv_done)(chp->ch_drive[drive].drv_softc, xfer);
    851       1.71   thorpej 	ATADEBUG_PRINT(("atastart from wdc_ata_done, flags 0x%x\n",
    852        1.4    bouyer 	    chp->ch_flags), DEBUG_XFERS);
    853       1.69   thorpej 	atastart(chp);
    854        1.2    bouyer }
    855        1.2    bouyer 
    856       1.45   thorpej static int
    857      1.106  jdolecek wdc_ata_err(struct ata_drive_datas *drvp, struct ata_bio *ata_bio, int tfd)
    858        1.2    bouyer {
    859        1.2    bouyer 	ata_bio->error = 0;
    860      1.106  jdolecek 	if (ATACH_ST(tfd) & WDCS_BSY) {
    861        1.2    bouyer 		ata_bio->error = TIMEOUT;
    862        1.2    bouyer 		return WDC_ATA_ERR;
    863        1.2    bouyer 	}
    864        1.2    bouyer 
    865      1.106  jdolecek 	if (ATACH_ST(tfd) & WDCS_DWF) {
    866        1.2    bouyer 		ata_bio->error = ERR_DF;
    867        1.2    bouyer 		return WDC_ATA_ERR;
    868        1.2    bouyer 	}
    869        1.2    bouyer 
    870      1.106  jdolecek 	if (ATACH_ST(tfd) & WDCS_ERR) {
    871        1.2    bouyer 		ata_bio->error = ERROR;
    872      1.106  jdolecek 		ata_bio->r_error = ATACH_ERR(tfd);
    873        1.2    bouyer 		if (ata_bio->r_error & (WDCE_BBK | WDCE_UNC | WDCE_IDNF |
    874        1.2    bouyer 		    WDCE_ABRT | WDCE_TK0NF | WDCE_AMNF))
    875        1.2    bouyer 			return WDC_ATA_ERR;
    876        1.2    bouyer 		return WDC_ATA_NOERR;
    877        1.2    bouyer 	}
    878        1.2    bouyer 
    879      1.106  jdolecek 	if (ATACH_ST(tfd) & WDCS_CORR)
    880        1.2    bouyer 		ata_bio->flags |= ATA_CORR;
    881        1.2    bouyer 	return WDC_ATA_NOERR;
    882        1.8   thorpej }
    883        1.8   thorpej 
    884       1.45   thorpej static int
    885       1.44   thorpej wdc_ata_addref(struct ata_drive_datas *drvp)
    886        1.8   thorpej {
    887       1.72   thorpej 	struct ata_channel *chp = drvp->chnl_softc;
    888        1.8   thorpej 
    889       1.67   thorpej 	return (ata_addref(chp));
    890        1.8   thorpej }
    891        1.8   thorpej 
    892       1.45   thorpej static void
    893       1.44   thorpej wdc_ata_delref(struct ata_drive_datas *drvp)
    894        1.8   thorpej {
    895       1.72   thorpej 	struct ata_channel *chp = drvp->chnl_softc;
    896        1.8   thorpej 
    897       1.67   thorpej 	ata_delref(chp);
    898        1.2    bouyer }
    899