Home | History | Annotate | Line # | Download | only in scsipi
atapi_wdc.c revision 1.40
      1  1.40    bouyer /*	$NetBSD: atapi_wdc.c,v 1.40 2001/04/25 17:53:38 bouyer Exp $	*/
      2   1.2    bouyer 
      3   1.2    bouyer /*
      4   1.2    bouyer  * Copyright (c) 1998 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  * 3. All advertising materials mentioning features or use of this software
     15   1.2    bouyer  *    must display the following acknowledgement:
     16   1.2    bouyer  *	This product includes software developed by the University of
     17   1.2    bouyer  *	California, Berkeley and its contributors.
     18   1.2    bouyer  * 4. Neither the name of the University nor the names of its contributors
     19   1.2    bouyer  *    may be used to endorse or promote products derived from this software
     20   1.2    bouyer  *    without specific prior written permission.
     21   1.2    bouyer  *
     22  1.35    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.35    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.35    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.35    bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.35    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.35    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.35    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.35    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.35    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.35    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32   1.2    bouyer  *
     33   1.2    bouyer  */
     34   1.2    bouyer 
     35  1.18   hubertf #ifndef WDCDEBUG
     36   1.2    bouyer #define WDCDEBUG
     37  1.18   hubertf #endif /* WDCDEBUG */
     38   1.2    bouyer 
     39   1.2    bouyer #include <sys/param.h>
     40   1.2    bouyer #include <sys/systm.h>
     41   1.2    bouyer #include <sys/kernel.h>
     42   1.2    bouyer #include <sys/file.h>
     43   1.2    bouyer #include <sys/stat.h>
     44   1.2    bouyer #include <sys/buf.h>
     45   1.2    bouyer #include <sys/malloc.h>
     46   1.2    bouyer #include <sys/device.h>
     47   1.2    bouyer #include <sys/syslog.h>
     48   1.2    bouyer #include <sys/proc.h>
     49  1.39   mycroft #include <sys/dvdio.h>
     50   1.2    bouyer 
     51   1.2    bouyer #include <machine/intr.h>
     52   1.2    bouyer #include <machine/bus.h>
     53   1.2    bouyer 
     54   1.2    bouyer #ifndef __BUS_SPACE_HAS_STREAM_METHODS
     55   1.2    bouyer #define    bus_space_write_multi_stream_2    bus_space_write_multi_2
     56   1.2    bouyer #define    bus_space_write_multi_stream_4    bus_space_write_multi_4
     57   1.2    bouyer #define    bus_space_read_multi_stream_2    bus_space_read_multi_2
     58   1.2    bouyer #define    bus_space_read_multi_stream_4    bus_space_read_multi_4
     59   1.2    bouyer #endif /* __BUS_SPACE_HAS_STREAM_METHODS */
     60   1.2    bouyer 
     61   1.2    bouyer #include <dev/ata/atareg.h>
     62   1.2    bouyer #include <dev/ata/atavar.h>
     63   1.2    bouyer #include <dev/ic/wdcreg.h>
     64   1.2    bouyer #include <dev/ic/wdcvar.h>
     65   1.2    bouyer 
     66  1.40    bouyer #include <dev/scsipi/scsi_all.h> /* for SCSI status */
     67  1.40    bouyer 
     68   1.2    bouyer #define DEBUG_INTR   0x01
     69   1.2    bouyer #define DEBUG_XFERS  0x02
     70   1.2    bouyer #define DEBUG_STATUS 0x04
     71   1.2    bouyer #define DEBUG_FUNCS  0x08
     72   1.2    bouyer #define DEBUG_PROBE  0x10
     73   1.2    bouyer #ifdef WDCDEBUG
     74   1.3    bouyer int wdcdebug_atapi_mask = 0;
     75   1.2    bouyer #define WDCDEBUG_PRINT(args, level) \
     76   1.2    bouyer 	if (wdcdebug_atapi_mask & (level)) \
     77   1.2    bouyer 		printf args
     78   1.2    bouyer #else
     79   1.2    bouyer #define WDCDEBUG_PRINT(args, level)
     80   1.2    bouyer #endif
     81   1.2    bouyer 
     82   1.2    bouyer #define ATAPI_DELAY 10	/* 10 ms, this is used only before sending a cmd */
     83  1.40    bouyer int   wdc_atapi_get_params __P((struct scsipi_channel *, int, int,
     84  1.40    bouyer 				struct ataparams *));
     85  1.40    bouyer void  wdc_atapi_probe_device __P((struct atapibus_softc *, int));
     86   1.2    bouyer void  wdc_atapi_minphys  __P((struct buf *bp));
     87   1.2    bouyer void  wdc_atapi_start	__P((struct channel_softc *,struct wdc_xfer *));
     88  1.20    bouyer int   wdc_atapi_intr	 __P((struct channel_softc *, struct wdc_xfer *, int));
     89  1.28     enami void  wdc_atapi_kill_xfer __P((struct channel_softc *, struct wdc_xfer *));
     90  1.20    bouyer int   wdc_atapi_ctrl	 __P((struct channel_softc *, struct wdc_xfer *, int));
     91   1.2    bouyer void  wdc_atapi_done	 __P((struct channel_softc *, struct wdc_xfer *));
     92   1.2    bouyer void  wdc_atapi_reset	 __P((struct channel_softc *, struct wdc_xfer *));
     93  1.40    bouyer void  wdc_atapi_scsipi_request __P((struct scsipi_channel *,
     94  1.40    bouyer 	scsipi_adapter_req_t, void *));
     95  1.40    bouyer void  wdc_atapi_kill_pending __P((struct scsipi_periph *));
     96   1.2    bouyer 
     97   1.2    bouyer #define MAX_SIZE MAXPHYS
     98   1.2    bouyer 
     99  1.40    bouyer const struct scsipi_bustype wdc_atapi_bustype = {
    100  1.40    bouyer 	SCSIPI_BUSTYPE_ATAPI,
    101  1.40    bouyer 	atapi_scsipi_cmd,
    102  1.40    bouyer 	atapi_interpret_sense,
    103  1.40    bouyer 	atapi_print_addr,
    104  1.40    bouyer 	wdc_atapi_kill_pending,
    105  1.40    bouyer };
    106  1.40    bouyer 
    107   1.2    bouyer void
    108   1.2    bouyer wdc_atapibus_attach(chp)
    109   1.2    bouyer 	struct channel_softc *chp;
    110   1.2    bouyer {
    111   1.2    bouyer 	struct wdc_softc *wdc = chp->wdc;
    112  1.40    bouyer 	struct scsipi_adapter *adapt = &wdc->sc_atapi_adapter._generic;
    113  1.40    bouyer 	struct scsipi_channel *chan = &chp->ch_atapi_channel;
    114  1.40    bouyer 	struct ata_atapi_attach aa;
    115   1.2    bouyer 
    116   1.9   thorpej 	/*
    117  1.40    bouyer 	 * Fill in the scsipi_adapter.
    118   1.9   thorpej 	 */
    119  1.40    bouyer 	memset(adapt, 0, sizeof(*adapt));
    120  1.40    bouyer 	adapt->adapt_dev = &wdc->sc_dev;
    121  1.40    bouyer 	adapt->adapt_nchannels = wdc->nchannels;
    122  1.40    bouyer 	adapt->adapt_request = wdc_atapi_scsipi_request;
    123  1.40    bouyer 	adapt->adapt_minphys = wdc_atapi_minphys;
    124  1.40    bouyer 	wdc->sc_atapi_adapter.atapi_probe_device = wdc_atapi_probe_device;
    125  1.40    bouyer 
    126  1.40    bouyer 	/*
    127  1.40    bouyer 	 * Fill in the scsipi_channel.
    128  1.40    bouyer 	 */
    129  1.40    bouyer 	memset(chan, 0, sizeof(*chan));
    130  1.40    bouyer 	chan->chan_adapter = adapt;
    131  1.40    bouyer 	chan->chan_bustype = &wdc_atapi_bustype;
    132  1.40    bouyer 	chan->chan_channel = chp->channel;
    133  1.40    bouyer 	chan->chan_flags = SCSIPI_CHAN_OPENINGS;
    134  1.40    bouyer 	chan->chan_openings = 1;
    135  1.40    bouyer 	chan->chan_max_periph = 1;
    136  1.40    bouyer 	chan->chan_ntargets = 2;
    137  1.40    bouyer 	chan->chan_nluns = 1;
    138  1.40    bouyer 
    139  1.40    bouyer 	memset(&aa, 0, sizeof(aa));
    140  1.40    bouyer 	aa.aa_type = T_ATAPI;
    141  1.40    bouyer 	aa.aa_channel = chan->chan_channel;
    142  1.40    bouyer 	aa.aa_openings = chan->chan_openings;
    143  1.40    bouyer 	aa.aa_drv_data = chp->ch_drive; /* pass the whole array */
    144  1.40    bouyer 	aa.aa_bus_private = chan;
    145  1.40    bouyer 	chp->atapibus = config_found(&wdc->sc_dev, &aa, atapiprint);
    146   1.2    bouyer }
    147   1.2    bouyer 
    148   1.2    bouyer void
    149  1.40    bouyer wdc_atapi_minphys(bp)
    150  1.40    bouyer 	struct buf *bp;
    151   1.2    bouyer {
    152  1.40    bouyer 
    153  1.40    bouyer 	if (bp->b_bcount > MAX_SIZE)
    154   1.2    bouyer 		bp->b_bcount = MAX_SIZE;
    155   1.2    bouyer 	minphys(bp);
    156   1.2    bouyer }
    157   1.2    bouyer 
    158  1.28     enami /*
    159  1.40    bouyer  * Kill off all pending xfers for a periph.
    160  1.28     enami  *
    161  1.28     enami  * Must be called at splbio().
    162  1.28     enami  */
    163  1.28     enami void
    164  1.40    bouyer wdc_atapi_kill_pending(periph)
    165  1.40    bouyer 	struct scsipi_periph *periph;
    166  1.28     enami {
    167  1.40    bouyer 	struct wdc_softc *wdc =
    168  1.40    bouyer 	    (void *)periph->periph_channel->chan_adapter->adapt_dev;
    169  1.28     enami 	struct channel_softc *chp =
    170  1.40    bouyer 	    wdc->channels[periph->periph_channel->chan_channel];
    171  1.28     enami 
    172  1.28     enami 	wdc_kill_pending(chp);
    173  1.28     enami }
    174  1.28     enami 
    175  1.28     enami void
    176  1.28     enami wdc_atapi_kill_xfer(chp, xfer)
    177  1.28     enami 	struct channel_softc *chp;
    178  1.28     enami 	struct wdc_xfer *xfer;
    179  1.28     enami {
    180  1.28     enami 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    181  1.28     enami 
    182  1.32   thorpej 	callout_stop(&chp->ch_callout);
    183  1.28     enami 	/* remove this command from xfer queue */
    184  1.28     enami 	wdc_free_xfer(chp, xfer);
    185  1.28     enami 	sc_xfer->error = XS_DRIVER_STUFFUP;
    186  1.28     enami 	scsipi_done(sc_xfer);
    187  1.28     enami }
    188  1.28     enami 
    189   1.2    bouyer int
    190  1.40    bouyer wdc_atapi_get_params(chan, drive, flags, id)
    191  1.40    bouyer 	struct scsipi_channel *chan;
    192  1.40    bouyer 	int drive, flags;
    193   1.2    bouyer 	struct ataparams *id;
    194   1.2    bouyer {
    195  1.40    bouyer 	struct wdc_softc *wdc = (void *)chan->chan_adapter->adapt_dev;
    196  1.40    bouyer 	struct channel_softc *chp = wdc->channels[chan->chan_channel];
    197   1.2    bouyer 	struct wdc_command wdc_c;
    198   1.2    bouyer 
    199   1.2    bouyer 	/* if no ATAPI device detected at wdc attach time, skip */
    200   1.2    bouyer 	/*
    201   1.2    bouyer 	 * XXX this will break scsireprobe if this is of any interest for
    202   1.2    bouyer 	 * ATAPI devices one day.
    203   1.2    bouyer 	 */
    204   1.2    bouyer 	if ((chp->ch_drive[drive].drive_flags & DRIVE_ATAPI) == 0) {
    205   1.2    bouyer 		WDCDEBUG_PRINT(("wdc_atapi_get_params: drive %d not present\n",
    206   1.2    bouyer 		    drive), DEBUG_PROBE);
    207   1.2    bouyer 		return -1;
    208   1.2    bouyer 	}
    209   1.2    bouyer 	memset(&wdc_c, 0, sizeof(struct wdc_command));
    210   1.2    bouyer 	wdc_c.r_command = ATAPI_SOFT_RESET;
    211   1.2    bouyer 	wdc_c.r_st_bmask = 0;
    212   1.2    bouyer 	wdc_c.r_st_pmask = 0;
    213   1.2    bouyer 	wdc_c.flags = AT_POLL;
    214   1.2    bouyer 	wdc_c.timeout = WDC_RESET_WAIT;
    215   1.2    bouyer 	if (wdc_exec_command(&chp->ch_drive[drive], &wdc_c) != WDC_COMPLETE) {
    216   1.2    bouyer 		printf("wdc_atapi_get_params: ATAPI_SOFT_RESET failed for"
    217   1.2    bouyer 		    " drive %s:%d:%d: driver failed\n",
    218   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel, drive);
    219   1.2    bouyer 		panic("wdc_atapi_get_params");
    220   1.2    bouyer 	}
    221   1.2    bouyer 	if (wdc_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
    222   1.2    bouyer 		WDCDEBUG_PRINT(("wdc_atapi_get_params: ATAPI_SOFT_RESET "
    223   1.2    bouyer 		    "failed for drive %s:%d:%d: error 0x%x\n",
    224   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel, drive,
    225   1.2    bouyer 		    wdc_c.r_error), DEBUG_PROBE);
    226   1.2    bouyer 		return -1;
    227   1.2    bouyer 	}
    228   1.2    bouyer 	chp->ch_drive[drive].state = 0;
    229   1.2    bouyer 
    230   1.2    bouyer 	bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
    231   1.2    bouyer 
    232   1.2    bouyer 	/* Some ATAPI devices need a bit more time after software reset. */
    233   1.2    bouyer 	delay(5000);
    234   1.2    bouyer 	if (ata_get_params(&chp->ch_drive[drive], AT_POLL, id) != 0) {
    235   1.2    bouyer 		WDCDEBUG_PRINT(("wdc_atapi_get_params: ATAPI_IDENTIFY_DEVICE "
    236   1.2    bouyer 		    "failed for drive %s:%d:%d: error 0x%x\n",
    237   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel, drive,
    238   1.2    bouyer 		    wdc_c.r_error), DEBUG_PROBE);
    239   1.2    bouyer 		return -1;
    240   1.2    bouyer 	}
    241  1.40    bouyer 	return 0;
    242   1.2    bouyer }
    243   1.2    bouyer 
    244  1.33    bouyer void
    245  1.40    bouyer wdc_atapi_probe_device(sc, target)
    246  1.40    bouyer 	struct atapibus_softc *sc;
    247  1.33    bouyer 	int target;
    248  1.33    bouyer {
    249  1.40    bouyer 	struct scsipi_channel *chan = sc->sc_channel;
    250  1.40    bouyer 	struct scsipi_periph *periph;
    251  1.33    bouyer 	struct ataparams ids;
    252  1.33    bouyer 	struct ataparams *id = &ids;
    253  1.40    bouyer 	struct ata_drive_datas *drvp = &sc->sc_drvs[target];
    254  1.40    bouyer 	struct scsipibus_attach_args sa;
    255  1.33    bouyer 	char serial_number[21], model[41], firmware_revision[9];
    256  1.33    bouyer 
    257  1.40    bouyer 	/* skip if already attached */
    258  1.40    bouyer 	if (scsipi_lookup_periph(chan, target, 0) != NULL)
    259  1.33    bouyer 		return;
    260  1.40    bouyer 
    261  1.40    bouyer 	if (wdc_atapi_get_params(chan, target,
    262  1.40    bouyer 	    XS_CTL_POLL|XS_CTL_NOSLEEP, id) == 0) {
    263  1.33    bouyer #ifdef ATAPI_DEBUG_PROBE
    264  1.33    bouyer 		printf("%s drive %d: cmdsz 0x%x drqtype 0x%x\n",
    265  1.40    bouyer 		    sc->sc_dev.dv_xname, target,
    266  1.33    bouyer 		    id->atap_config & ATAPI_CFG_CMD_MASK,
    267  1.33    bouyer 		    id->atap_config & ATAPI_CFG_DRQ_MASK);
    268  1.33    bouyer #endif
    269  1.40    bouyer 		periph = scsipi_alloc_periph(M_NOWAIT);
    270  1.40    bouyer 		if (periph == NULL) {
    271  1.40    bouyer 			printf("%s: unable to allocate periph for drive %d\n",
    272  1.40    bouyer 			    sc->sc_dev.dv_xname, target);
    273  1.40    bouyer 			return;
    274  1.33    bouyer 		}
    275  1.40    bouyer 		periph->periph_dev = NULL;
    276  1.40    bouyer 		periph->periph_channel = chan;
    277  1.40    bouyer 		periph->periph_switch = &atapi_probe_periphsw;
    278  1.40    bouyer 		periph->periph_target = target;
    279  1.40    bouyer 		periph->periph_lun = 0;
    280  1.40    bouyer 
    281  1.40    bouyer #ifdef SCSIPI_DEBUG
    282  1.40    bouyer 		if (SCSIPI_DEBUG_TYPE == SCSIPI_BUSTYPE_ATAPI &&
    283  1.40    bouyer 		    SCSIPI_DEBUG_TARGET == target)
    284  1.40    bouyer 			periph->periph_dbflags |= SCSIPI_DEBUG_FLAGS;
    285  1.40    bouyer #endif
    286  1.40    bouyer 		periph->periph_type = ATAPI_CFG_TYPE(id->atap_config);
    287  1.40    bouyer 		if (id->atap_config & ATAPI_CFG_REMOV)
    288  1.40    bouyer 			periph->periph_flags |= PERIPH_REMOVABLE;
    289  1.40    bouyer 
    290  1.40    bouyer 		sa.sa_periph = periph;
    291  1.40    bouyer 		sa.sa_inqbuf.type =  ATAPI_CFG_TYPE(id->atap_config);
    292  1.40    bouyer 		sa.sa_inqbuf.removable = id->atap_config & ATAPI_CFG_REMOV ?
    293  1.40    bouyer 		    T_REMOV : T_FIXED;
    294  1.33    bouyer 		scsipi_strvis(model, 40, id->atap_model, 40);
    295  1.40    bouyer 		scsipi_strvis(serial_number, 20, id->atap_serial, 20);
    296  1.33    bouyer 		scsipi_strvis(firmware_revision, 8, id->atap_revision, 8);
    297  1.33    bouyer 		sa.sa_inqbuf.vendor = model;
    298  1.33    bouyer 		sa.sa_inqbuf.product = serial_number;
    299  1.33    bouyer 		sa.sa_inqbuf.revision = firmware_revision;
    300  1.40    bouyer 
    301  1.40    bouyer 		/*
    302  1.40    bouyer 		 * Determine the operating mode capabilities of the device.
    303  1.40    bouyer 		 */
    304  1.40    bouyer 		if ((id->atap_config & ATAPI_CFG_CMD_MASK) == ATAPI_CFG_CMD_16)
    305  1.40    bouyer 			periph->periph_cap |= PERIPH_CAP_CMD16;
    306  1.40    bouyer 		/* XXX This is gross. */
    307  1.40    bouyer 		periph->periph_cap |= (id->atap_config & ATAPI_CFG_DRQ_MASK);
    308  1.40    bouyer 
    309  1.40    bouyer 		drvp->drv_softc = atapi_probe_device(sc, target, periph, &sa);
    310  1.40    bouyer 
    311  1.40    bouyer 		if (drvp->drv_softc)
    312  1.33    bouyer 			wdc_probe_caps(drvp);
    313  1.33    bouyer 	}
    314  1.33    bouyer }
    315  1.33    bouyer 
    316  1.40    bouyer void
    317  1.40    bouyer wdc_atapi_scsipi_request(chan, req, arg)
    318  1.40    bouyer 	struct scsipi_channel *chan;
    319  1.40    bouyer 	scsipi_adapter_req_t req;
    320  1.40    bouyer 	void *arg;
    321  1.40    bouyer {
    322  1.40    bouyer 	struct scsipi_adapter *adapt = chan->chan_adapter;
    323  1.40    bouyer 	struct scsipi_periph *periph;
    324   1.2    bouyer 	struct scsipi_xfer *sc_xfer;
    325  1.40    bouyer 	struct wdc_softc *wdc = (void *)adapt->adapt_dev;
    326   1.2    bouyer 	struct wdc_xfer *xfer;
    327  1.40    bouyer 	int channel = chan->chan_channel;
    328  1.40    bouyer 	int drive, s;
    329  1.40    bouyer 
    330  1.40    bouyer 	switch (req) {
    331  1.40    bouyer 	case ADAPTER_REQ_RUN_XFER:
    332  1.40    bouyer 		sc_xfer = arg;
    333  1.40    bouyer 		periph = sc_xfer->xs_periph;
    334  1.40    bouyer 		drive = periph->periph_target;
    335  1.40    bouyer 
    336  1.40    bouyer 		WDCDEBUG_PRINT(("wdc_atapi_scsipi_request %s:%d:%d\n",
    337  1.40    bouyer 		    wdc->sc_dev.dv_xname, channel, drive), DEBUG_XFERS);
    338  1.40    bouyer 		if ((wdc->sc_dev.dv_flags & DVF_ACTIVE) == 0) {
    339  1.40    bouyer 			sc_xfer->error = XS_DRIVER_STUFFUP;
    340  1.40    bouyer 			scsipi_done(sc_xfer);
    341  1.40    bouyer 			return;
    342  1.40    bouyer 		}
    343  1.40    bouyer 
    344  1.40    bouyer 		xfer = wdc_get_xfer(WDC_NOSLEEP);
    345  1.40    bouyer 		if (xfer == NULL) {
    346  1.40    bouyer 			sc_xfer->error = XS_RESOURCE_SHORTAGE;
    347  1.40    bouyer 			scsipi_done(sc_xfer);
    348  1.40    bouyer 			return;
    349  1.40    bouyer 		}
    350  1.40    bouyer 
    351  1.40    bouyer 		if (sc_xfer->xs_control & XS_CTL_POLL)
    352  1.40    bouyer 			xfer->c_flags |= C_POLL;
    353  1.40    bouyer 		xfer->drive = drive;
    354  1.40    bouyer 		xfer->c_flags |= C_ATAPI;
    355  1.40    bouyer 		if (sc_xfer->cmd->opcode == GPCMD_REPORT_KEY ||
    356  1.40    bouyer 		    sc_xfer->cmd->opcode == GPCMD_SEND_KEY ||
    357  1.40    bouyer 		    sc_xfer->cmd->opcode == GPCMD_READ_DVD_STRUCTURE) {
    358  1.40    bouyer 			/*
    359  1.40    bouyer 			 * DVD authentication commands must always be done in
    360  1.40    bouyer 			 * PIO mode.
    361  1.40    bouyer 			 */
    362  1.40    bouyer 			xfer->c_flags |= C_FORCEPIO;
    363  1.40    bouyer 		}
    364  1.40    bouyer 		xfer->cmd = sc_xfer;
    365  1.40    bouyer 		xfer->databuf = sc_xfer->data;
    366  1.40    bouyer 		xfer->c_bcount = sc_xfer->datalen;
    367  1.40    bouyer 		xfer->c_start = wdc_atapi_start;
    368  1.40    bouyer 		xfer->c_intr = wdc_atapi_intr;
    369  1.40    bouyer 		xfer->c_kill_xfer = wdc_atapi_kill_xfer;
    370  1.40    bouyer 		s = splbio();
    371  1.40    bouyer 		wdc_exec_xfer(wdc->channels[channel], xfer);
    372   1.2    bouyer #ifdef DIAGNOSTIC
    373  1.40    bouyer 		if ((sc_xfer->xs_control & XS_CTL_POLL) != 0 &&
    374  1.40    bouyer 		    (sc_xfer->xs_status & XS_STS_DONE) == 0)
    375  1.40    bouyer 			panic("wdc_atapi_scsipi_request: polled command "
    376  1.40    bouyer 			    "not done");
    377   1.2    bouyer #endif
    378  1.40    bouyer 		splx(s);
    379  1.40    bouyer 		return;
    380  1.40    bouyer 
    381  1.40    bouyer 	default:
    382  1.40    bouyer 		/* Not supported, nothing to do. */
    383  1.40    bouyer 	}
    384   1.2    bouyer }
    385   1.2    bouyer 
    386   1.2    bouyer void
    387   1.2    bouyer wdc_atapi_start(chp, xfer)
    388   1.2    bouyer 	struct channel_softc *chp;
    389   1.2    bouyer 	struct wdc_xfer *xfer;
    390   1.2    bouyer {
    391   1.2    bouyer 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    392   1.2    bouyer 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
    393   1.2    bouyer 
    394   1.5    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_start %s:%d:%d, scsi flags 0x%x \n",
    395   1.5    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, drvp->drive,
    396  1.27   thorpej 	    sc_xfer->xs_control), DEBUG_XFERS);
    397  1.19    bouyer 	/* Adjust C_DMA, it may have changed if we are requesting sense */
    398  1.19    bouyer 	if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
    399  1.40    bouyer 	    sc_xfer->datalen > 0 && !(xfer->c_flags & C_FORCEPIO)) {
    400  1.30    bouyer 		if (drvp->n_xfers <= NXFER)
    401  1.30    bouyer 			drvp->n_xfers++;
    402  1.19    bouyer 		xfer->c_flags |= C_DMA;
    403  1.30    bouyer 	} else {
    404  1.19    bouyer 		xfer->c_flags &= ~C_DMA;
    405  1.30    bouyer 	}
    406  1.24    bouyer 	/* start timeout machinery */
    407  1.27   thorpej 	if ((sc_xfer->xs_control & XS_CTL_POLL) == 0)
    408  1.32   thorpej 		callout_reset(&chp->ch_callout, sc_xfer->timeout * hz / 1000,
    409  1.32   thorpej 		    wdctimeout, chp);
    410   1.2    bouyer 	/* Do control operations specially. */
    411   1.2    bouyer 	if (drvp->state < READY) {
    412  1.33    bouyer 		if (drvp->state != RESET) {
    413   1.2    bouyer 			printf("%s:%d:%d: bad state %d in wdc_atapi_start\n",
    414   1.2    bouyer 			    chp->wdc->sc_dev.dv_xname, chp->channel,
    415   1.2    bouyer 			    xfer->drive, drvp->state);
    416   1.2    bouyer 			panic("wdc_atapi_start: bad state");
    417   1.2    bouyer 		}
    418  1.33    bouyer 		drvp->state = PIOMODE;
    419  1.20    bouyer 		wdc_atapi_ctrl(chp, xfer, 0);
    420   1.2    bouyer 		return;
    421   1.2    bouyer 	}
    422   1.2    bouyer 	bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
    423   1.2    bouyer 	    WDSD_IBM | (xfer->drive << 4));
    424   1.2    bouyer 	if (wait_for_unbusy(chp, ATAPI_DELAY) < 0) {
    425   1.2    bouyer 		printf("wdc_atapi_start: not ready, st = %02x\n",
    426   1.2    bouyer 		    chp->ch_status);
    427   1.3    bouyer 		sc_xfer->error = XS_TIMEOUT;
    428   1.2    bouyer 		wdc_atapi_reset(chp, xfer);
    429   1.2    bouyer 		return;
    430   1.2    bouyer 	}
    431   1.2    bouyer 
    432   1.2    bouyer 	/*
    433   1.2    bouyer 	 * Even with WDCS_ERR, the device should accept a command packet
    434   1.2    bouyer 	 * Limit length to what can be stuffed into the cylinder register
    435   1.2    bouyer 	 * (16 bits).  Some CD-ROMs seem to interpret '0' as 65536,
    436   1.2    bouyer 	 * but not all devices do that and it's not obvious from the
    437   1.2    bouyer 	 * ATAPI spec that that behaviour should be expected.  If more
    438   1.2    bouyer 	 * data is necessary, multiple data transfer phases will be done.
    439   1.2    bouyer 	 */
    440   1.5    bouyer 
    441   1.2    bouyer 	wdccommand(chp, xfer->drive, ATAPI_PKT_CMD,
    442  1.29    bouyer 	    xfer->c_bcount <= 0xffff ? xfer->c_bcount : 0xffff,
    443   1.2    bouyer 	    0, 0, 0,
    444   1.2    bouyer 	    (xfer->c_flags & C_DMA) ? ATAPI_PKT_CMD_FTRE_DMA : 0);
    445   1.2    bouyer 
    446   1.2    bouyer 	/*
    447   1.2    bouyer 	 * If there is no interrupt for CMD input, busy-wait for it (done in
    448   1.2    bouyer 	 * the interrupt routine. If it is a polled command, call the interrupt
    449   1.2    bouyer 	 * routine until command is done.
    450   1.2    bouyer 	 */
    451  1.40    bouyer 	if ((sc_xfer->xs_periph->periph_cap & ATAPI_CFG_DRQ_MASK) !=
    452  1.27   thorpej 	    ATAPI_CFG_IRQ_DRQ || (sc_xfer->xs_control & XS_CTL_POLL)) {
    453   1.2    bouyer 		/* Wait for at last 400ns for status bit to be valid */
    454  1.20    bouyer 		DELAY(1);
    455  1.40    bouyer 		if (chp->ch_flags & WDCF_DMA_WAIT) {
    456  1.40    bouyer 			wdc_dmawait(chp, xfer, sc_xfer->timeout);
    457  1.40    bouyer 			chp->ch_flags &= ~WDCF_DMA_WAIT;
    458  1.40    bouyer 		}
    459  1.20    bouyer 		wdc_atapi_intr(chp, xfer, 0);
    460  1.21    bouyer 	} else {
    461  1.21    bouyer 		chp->ch_flags |= WDCF_IRQ_WAIT;
    462   1.2    bouyer 	}
    463  1.27   thorpej 	if (sc_xfer->xs_control & XS_CTL_POLL) {
    464  1.27   thorpej 		while ((sc_xfer->xs_status & XS_STS_DONE) == 0) {
    465   1.2    bouyer 			/* Wait for at last 400ns for status bit to be valid */
    466  1.20    bouyer 			DELAY(1);
    467  1.20    bouyer 			wdc_atapi_intr(chp, xfer, 0);
    468   1.2    bouyer 		}
    469   1.2    bouyer 	}
    470   1.2    bouyer }
    471   1.2    bouyer 
    472   1.2    bouyer int
    473  1.20    bouyer wdc_atapi_intr(chp, xfer, irq)
    474   1.2    bouyer 	struct channel_softc *chp;
    475   1.2    bouyer 	struct wdc_xfer *xfer;
    476  1.20    bouyer 	int irq;
    477   1.2    bouyer {
    478   1.2    bouyer 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    479   1.2    bouyer 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
    480   1.2    bouyer 	int len, phase, i, retries=0;
    481  1.33    bouyer 	int ire;
    482   1.2    bouyer 	int dma_flags = 0;
    483   1.8    bouyer 	void *cmd;
    484   1.2    bouyer 
    485   1.5    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_intr %s:%d:%d\n",
    486   1.5    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, drvp->drive), DEBUG_INTR);
    487   1.2    bouyer 
    488   1.2    bouyer 	/* Is it not a transfer, but a control operation? */
    489   1.2    bouyer 	if (drvp->state < READY) {
    490   1.2    bouyer 		printf("%s:%d:%d: bad state %d in wdc_atapi_intr\n",
    491   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
    492   1.2    bouyer 		    drvp->state);
    493   1.2    bouyer 		panic("wdc_atapi_intr: bad state\n");
    494   1.2    bouyer 	}
    495  1.24    bouyer 	/*
    496  1.24    bouyer 	 * If we missed an interrupt in a PIO transfer, reset and restart.
    497  1.24    bouyer 	 * Don't try to continue transfer, we may have missed cycles.
    498  1.24    bouyer 	 */
    499  1.24    bouyer 	if ((xfer->c_flags & (C_TIMEOU | C_DMA)) == C_TIMEOU) {
    500  1.24    bouyer 		sc_xfer->error = XS_TIMEOUT;
    501  1.24    bouyer 		wdc_atapi_reset(chp, xfer);
    502  1.25    bouyer 		return 1;
    503  1.24    bouyer 	}
    504  1.24    bouyer 
    505   1.2    bouyer 	/* Ack interrupt done in wait_for_unbusy */
    506   1.2    bouyer 	bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
    507   1.2    bouyer 	    WDSD_IBM | (xfer->drive << 4));
    508  1.19    bouyer 	if (wait_for_unbusy(chp,
    509  1.20    bouyer 	    (irq == 0) ? sc_xfer->timeout : 0) != 0) {
    510  1.20    bouyer 		if (irq && (xfer->c_flags & C_TIMEOU) == 0)
    511  1.19    bouyer 			return 0; /* IRQ was not for us */
    512  1.16    bouyer 		printf("%s:%d:%d: device timeout, c_bcount=%d, c_skip=%d\n",
    513   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
    514   1.2    bouyer 		    xfer->c_bcount, xfer->c_skip);
    515  1.33    bouyer 		if (xfer->c_flags & C_DMA) {
    516  1.30    bouyer 			ata_dmaerr(drvp);
    517  1.33    bouyer 		}
    518   1.3    bouyer 		sc_xfer->error = XS_TIMEOUT;
    519   1.2    bouyer 		wdc_atapi_reset(chp, xfer);
    520   1.2    bouyer 		return 1;
    521   1.2    bouyer 	}
    522  1.36    bouyer 	if (chp->wdc->cap & WDC_CAPABILITY_IRQACK)
    523  1.36    bouyer 		chp->wdc->irqack(chp);
    524  1.36    bouyer 
    525  1.19    bouyer 	/* If we missed an IRQ and were using DMA, flag it as a DMA error */
    526  1.33    bouyer 	if ((xfer->c_flags & C_TIMEOU) && (xfer->c_flags & C_DMA)) {
    527  1.30    bouyer 		ata_dmaerr(drvp);
    528  1.33    bouyer 	}
    529   1.8    bouyer 	/*
    530   1.8    bouyer 	 * if the request sense command was aborted, report the short sense
    531   1.8    bouyer 	 * previously recorded, else continue normal processing
    532   1.8    bouyer 	 */
    533   1.8    bouyer 
    534  1.33    bouyer 	if (xfer->c_flags & C_DMA)
    535  1.40    bouyer 		dma_flags = (sc_xfer->xs_control & XS_CTL_DATA_IN)
    536  1.40    bouyer 		    ?  WDC_DMA_READ : 0;
    537   1.2    bouyer again:
    538   1.2    bouyer 	len = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_lo) +
    539   1.2    bouyer 	    256 * bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_hi);
    540   1.2    bouyer 	ire = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_ireason);
    541   1.2    bouyer 	phase = (ire & (WDCI_CMD | WDCI_IN)) | (chp->ch_status & WDCS_DRQ);
    542   1.2    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_intr: c_bcount %d len %d st 0x%x err 0x%x "
    543   1.2    bouyer 	    "ire 0x%x :", xfer->c_bcount,
    544   1.2    bouyer 	    len, chp->ch_status, chp->ch_error, ire), DEBUG_INTR);
    545   1.2    bouyer 
    546   1.2    bouyer 	switch (phase) {
    547   1.2    bouyer 	case PHASE_CMDOUT:
    548  1.40    bouyer 		cmd  = sc_xfer->cmd;
    549   1.2    bouyer 		WDCDEBUG_PRINT(("PHASE_CMDOUT\n"), DEBUG_INTR);
    550   1.2    bouyer 		/* Init the DMA channel if necessary */
    551   1.2    bouyer 		if (xfer->c_flags & C_DMA) {
    552   1.2    bouyer 			if ((*chp->wdc->dma_init)(chp->wdc->dma_arg,
    553   1.2    bouyer 			    chp->channel, xfer->drive,
    554   1.8    bouyer 			    xfer->databuf, xfer->c_bcount, dma_flags) != 0) {
    555   1.2    bouyer 				sc_xfer->error = XS_DRIVER_STUFFUP;
    556   1.2    bouyer 				break;
    557   1.2    bouyer 			}
    558   1.2    bouyer 		}
    559   1.2    bouyer 		/* send packet command */
    560   1.2    bouyer 		/* Commands are 12 or 16 bytes long. It's 32-bit aligned */
    561   1.2    bouyer 		if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM)) {
    562   1.2    bouyer 			if (drvp->drive_flags & DRIVE_CAP32) {
    563   1.2    bouyer 				bus_space_write_multi_4(chp->data32iot,
    564   1.2    bouyer 				    chp->data32ioh, 0,
    565   1.8    bouyer 				    (u_int32_t *)cmd,
    566   1.2    bouyer 				    sc_xfer->cmdlen >> 2);
    567   1.2    bouyer 			} else {
    568   1.2    bouyer 				bus_space_write_multi_2(chp->cmd_iot,
    569   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    570   1.8    bouyer 				    (u_int16_t *)cmd,
    571   1.2    bouyer 				    sc_xfer->cmdlen >> 1);
    572   1.2    bouyer 			}
    573   1.2    bouyer 		} else {
    574   1.2    bouyer 			if (drvp->drive_flags & DRIVE_CAP32) {
    575   1.2    bouyer 				bus_space_write_multi_stream_4(chp->data32iot,
    576   1.2    bouyer 				    chp->data32ioh, 0,
    577   1.8    bouyer 				    (u_int32_t *)cmd,
    578   1.2    bouyer 				    sc_xfer->cmdlen >> 2);
    579   1.2    bouyer 			} else {
    580   1.2    bouyer 				bus_space_write_multi_stream_2(chp->cmd_iot,
    581   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    582   1.8    bouyer 				    (u_int16_t *)cmd,
    583   1.2    bouyer 				    sc_xfer->cmdlen >> 1);
    584   1.2    bouyer 			}
    585   1.2    bouyer 		}
    586   1.2    bouyer 		/* Start the DMA channel if necessary */
    587   1.2    bouyer 		if (xfer->c_flags & C_DMA) {
    588   1.2    bouyer 			(*chp->wdc->dma_start)(chp->wdc->dma_arg,
    589  1.33    bouyer 			    chp->channel, xfer->drive);
    590  1.33    bouyer 			chp->ch_flags |= WDCF_DMA_WAIT;
    591   1.2    bouyer 		}
    592   1.2    bouyer 
    593  1.27   thorpej 		if ((sc_xfer->xs_control & XS_CTL_POLL) == 0) {
    594   1.2    bouyer 			chp->ch_flags |= WDCF_IRQ_WAIT;
    595   1.2    bouyer 		}
    596   1.2    bouyer 		return 1;
    597   1.2    bouyer 
    598   1.2    bouyer 	 case PHASE_DATAOUT:
    599   1.2    bouyer 		/* write data */
    600   1.2    bouyer 		WDCDEBUG_PRINT(("PHASE_DATAOUT\n"), DEBUG_INTR);
    601  1.27   thorpej 		if ((sc_xfer->xs_control & XS_CTL_DATA_OUT) == 0 ||
    602   1.2    bouyer 		    (xfer->c_flags & C_DMA) != 0) {
    603  1.15    bouyer 			printf("wdc_atapi_intr: bad data phase DATAOUT\n");
    604   1.2    bouyer 			if (xfer->c_flags & C_DMA) {
    605  1.30    bouyer 				ata_dmaerr(drvp);
    606   1.2    bouyer 			}
    607   1.3    bouyer 			sc_xfer->error = XS_TIMEOUT;
    608   1.2    bouyer 			wdc_atapi_reset(chp, xfer);
    609   1.2    bouyer 			return 1;
    610   1.2    bouyer 		}
    611   1.2    bouyer 		if (xfer->c_bcount < len) {
    612   1.2    bouyer 			printf("wdc_atapi_intr: warning: write only "
    613   1.2    bouyer 			    "%d of %d requested bytes\n", xfer->c_bcount, len);
    614   1.2    bouyer 			if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM)) {
    615   1.2    bouyer 				bus_space_write_multi_2(chp->cmd_iot,
    616   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    617  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    618  1.14   thorpej 				                  xfer->c_skip),
    619   1.2    bouyer 				    xfer->c_bcount >> 1);
    620   1.2    bouyer 			} else {
    621   1.2    bouyer 				bus_space_write_multi_stream_2(chp->cmd_iot,
    622   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    623  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    624  1.14   thorpej 				                  xfer->c_skip),
    625   1.2    bouyer 				    xfer->c_bcount >> 1);
    626   1.2    bouyer 			}
    627   1.2    bouyer 			for (i = xfer->c_bcount; i < len; i += 2)
    628   1.2    bouyer 				bus_space_write_2(chp->cmd_iot, chp->cmd_ioh,
    629   1.2    bouyer 				    wd_data, 0);
    630   1.2    bouyer 			xfer->c_skip += xfer->c_bcount;
    631   1.2    bouyer 			xfer->c_bcount = 0;
    632   1.2    bouyer 		} else {
    633   1.2    bouyer 			if (drvp->drive_flags & DRIVE_CAP32) {
    634   1.2    bouyer 			    if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM))
    635   1.2    bouyer 				bus_space_write_multi_4(chp->data32iot,
    636   1.2    bouyer 				    chp->data32ioh, 0,
    637  1.14   thorpej 				    (u_int32_t *)((char *)xfer->databuf +
    638  1.14   thorpej 				                  xfer->c_skip),
    639  1.13  augustss 				    len >> 2);
    640   1.2    bouyer 			    else
    641  1.12    bouyer 				bus_space_write_multi_stream_4(chp->data32iot,
    642  1.12    bouyer 				    chp->data32ioh, wd_data,
    643  1.14   thorpej 				    (u_int32_t *)((char *)xfer->databuf +
    644  1.14   thorpej 				                  xfer->c_skip),
    645  1.13  augustss 				    len >> 2);
    646   1.2    bouyer 
    647   1.2    bouyer 			    xfer->c_skip += len & 0xfffffffc;
    648   1.2    bouyer 			    xfer->c_bcount -= len & 0xfffffffc;
    649   1.2    bouyer 			    len = len & 0x03;
    650   1.2    bouyer 			}
    651   1.2    bouyer 			if (len > 0) {
    652   1.2    bouyer 			    if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM))
    653   1.2    bouyer 				bus_space_write_multi_2(chp->cmd_iot,
    654   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    655  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    656  1.14   thorpej 				                  xfer->c_skip),
    657  1.13  augustss 				    len >> 1);
    658   1.2    bouyer 			    else
    659   1.2    bouyer 				bus_space_write_multi_stream_2(chp->cmd_iot,
    660   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    661  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    662  1.14   thorpej 				                  xfer->c_skip),
    663  1.13  augustss 				    len >> 1);
    664   1.2    bouyer 			    xfer->c_skip += len;
    665   1.2    bouyer 			    xfer->c_bcount -= len;
    666   1.2    bouyer 			}
    667   1.2    bouyer 		}
    668  1.27   thorpej 		if ((sc_xfer->xs_control & XS_CTL_POLL) == 0) {
    669   1.2    bouyer 			chp->ch_flags |= WDCF_IRQ_WAIT;
    670   1.2    bouyer 		}
    671   1.2    bouyer 		return 1;
    672   1.2    bouyer 
    673   1.2    bouyer 	case PHASE_DATAIN:
    674   1.2    bouyer 		/* Read data */
    675   1.2    bouyer 		WDCDEBUG_PRINT(("PHASE_DATAIN\n"), DEBUG_INTR);
    676  1.40    bouyer 		if ((sc_xfer->xs_control & XS_CTL_DATA_IN) == 0 ||
    677   1.2    bouyer 		    (xfer->c_flags & C_DMA) != 0) {
    678  1.15    bouyer 			printf("wdc_atapi_intr: bad data phase DATAIN\n");
    679   1.2    bouyer 			if (xfer->c_flags & C_DMA) {
    680  1.30    bouyer 				ata_dmaerr(drvp);
    681   1.2    bouyer 			}
    682   1.3    bouyer 			sc_xfer->error = XS_TIMEOUT;
    683   1.2    bouyer 			wdc_atapi_reset(chp, xfer);
    684   1.2    bouyer 			return 1;
    685   1.2    bouyer 		}
    686   1.2    bouyer 		if (xfer->c_bcount < len) {
    687   1.2    bouyer 			printf("wdc_atapi_intr: warning: reading only "
    688   1.2    bouyer 			    "%d of %d bytes\n", xfer->c_bcount, len);
    689   1.2    bouyer 			if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM)) {
    690   1.2    bouyer 			    bus_space_read_multi_2(chp->cmd_iot,
    691   1.2    bouyer 			    chp->cmd_ioh, wd_data,
    692  1.14   thorpej 			    (u_int16_t *)((char *)xfer->databuf +
    693  1.14   thorpej 			                  xfer->c_skip),
    694  1.13  augustss 			    xfer->c_bcount >> 1);
    695   1.2    bouyer 			} else {
    696   1.2    bouyer 			    bus_space_read_multi_stream_2(chp->cmd_iot,
    697   1.2    bouyer 			    chp->cmd_ioh, wd_data,
    698  1.14   thorpej 			    (u_int16_t *)((char *)xfer->databuf +
    699  1.14   thorpej 			                  xfer->c_skip),
    700  1.13  augustss 			    xfer->c_bcount >> 1);
    701   1.2    bouyer 			}
    702   1.2    bouyer 			wdcbit_bucket(chp, len - xfer->c_bcount);
    703   1.2    bouyer 			xfer->c_skip += xfer->c_bcount;
    704   1.2    bouyer 			xfer->c_bcount = 0;
    705   1.2    bouyer 		} else {
    706   1.2    bouyer 			if (drvp->drive_flags & DRIVE_CAP32) {
    707   1.2    bouyer 			    if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM))
    708   1.2    bouyer 				bus_space_read_multi_4(chp->data32iot,
    709   1.2    bouyer 				    chp->data32ioh, 0,
    710  1.14   thorpej 				    (u_int32_t *)((char *)xfer->databuf +
    711  1.14   thorpej 				                  xfer->c_skip),
    712  1.13  augustss 				    len >> 2);
    713   1.2    bouyer 			    else
    714  1.12    bouyer 				bus_space_read_multi_stream_4(chp->data32iot,
    715  1.12    bouyer 				    chp->data32ioh, wd_data,
    716  1.14   thorpej 				    (u_int32_t *)((char *)xfer->databuf +
    717  1.14   thorpej 				                  xfer->c_skip),
    718  1.13  augustss 				    len >> 2);
    719   1.2    bouyer 
    720   1.2    bouyer 			    xfer->c_skip += len & 0xfffffffc;
    721   1.2    bouyer 			    xfer->c_bcount -= len & 0xfffffffc;
    722   1.2    bouyer 			    len = len & 0x03;
    723   1.2    bouyer 			}
    724   1.2    bouyer 			if (len > 0) {
    725   1.2    bouyer 			    if ((chp->wdc->cap & WDC_CAPABILITY_ATAPI_NOSTREAM))
    726   1.2    bouyer 				bus_space_read_multi_2(chp->cmd_iot,
    727   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    728  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    729  1.14   thorpej 				                  xfer->c_skip),
    730  1.13  augustss 				    len >> 1);
    731   1.2    bouyer 			    else
    732   1.2    bouyer 				bus_space_read_multi_stream_2(chp->cmd_iot,
    733   1.2    bouyer 				    chp->cmd_ioh, wd_data,
    734  1.14   thorpej 				    (u_int16_t *)((char *)xfer->databuf +
    735  1.14   thorpej 				                  xfer->c_skip),
    736  1.13  augustss 				    len >> 1);
    737   1.2    bouyer 			    xfer->c_skip += len;
    738   1.2    bouyer 			    xfer->c_bcount -=len;
    739   1.2    bouyer 			}
    740   1.2    bouyer 		}
    741  1.27   thorpej 		if ((sc_xfer->xs_control & XS_CTL_POLL) == 0) {
    742   1.2    bouyer 			chp->ch_flags |= WDCF_IRQ_WAIT;
    743   1.2    bouyer 		}
    744   1.2    bouyer 		return 1;
    745   1.2    bouyer 
    746   1.2    bouyer 	case PHASE_ABORTED:
    747   1.2    bouyer 	case PHASE_COMPLETED:
    748   1.2    bouyer 		WDCDEBUG_PRINT(("PHASE_COMPLETED\n"), DEBUG_INTR);
    749   1.2    bouyer 		/* turn off DMA channel */
    750   1.2    bouyer 		if (xfer->c_flags & C_DMA) {
    751  1.40    bouyer 			xfer->c_bcount -= sc_xfer->datalen;
    752  1.40    bouyer 		}
    753  1.40    bouyer 		sc_xfer->resid = xfer->c_bcount;
    754  1.40    bouyer 		if (chp->ch_status & WDCS_ERR) {
    755  1.40    bouyer 			/* save the short sense */
    756  1.40    bouyer 			sc_xfer->error = XS_SHORTSENSE;
    757  1.40    bouyer 			sc_xfer->sense.atapi_sense = chp->ch_error;
    758  1.40    bouyer 			if ((sc_xfer->xs_periph->periph_quirks &
    759  1.40    bouyer 			    PQUIRK_NOSENSE) == 0) {
    760  1.40    bouyer 				/* ask scsipi to send a REQUEST_SENSE */
    761  1.40    bouyer 				sc_xfer->error = XS_BUSY;
    762  1.40    bouyer 				sc_xfer->status = SCSI_CHECK;
    763  1.33    bouyer 			} else if (chp->wdc->dma_status &
    764  1.33    bouyer 			    (WDC_DMAST_NOIRQ | WDC_DMAST_ERR)) {
    765  1.30    bouyer 				ata_dmaerr(drvp);
    766  1.16    bouyer 				sc_xfer->error = XS_RESET;
    767  1.16    bouyer 				wdc_atapi_reset(chp, xfer);
    768  1.16    bouyer 				return (1);
    769   1.8    bouyer 			}
    770   1.2    bouyer 		}
    771   1.7    bouyer 		if (xfer->c_bcount != 0) {
    772   1.7    bouyer 			WDCDEBUG_PRINT(("wdc_atapi_intr: bcount value is "
    773   1.7    bouyer 			    "%d after io\n", xfer->c_bcount), DEBUG_XFERS);
    774   1.7    bouyer 		}
    775   1.2    bouyer #ifdef DIAGNOSTIC
    776   1.7    bouyer 		if (xfer->c_bcount < 0) {
    777   1.2    bouyer 			printf("wdc_atapi_intr warning: bcount value "
    778   1.2    bouyer 			    "is %d after io\n", xfer->c_bcount);
    779   1.2    bouyer 		}
    780   1.2    bouyer #endif
    781   1.2    bouyer 		break;
    782   1.2    bouyer 
    783   1.2    bouyer 	default:
    784   1.2    bouyer 		if (++retries<500) {
    785   1.2    bouyer 			DELAY(100);
    786   1.2    bouyer 			chp->ch_status = bus_space_read_1(chp->cmd_iot,
    787   1.2    bouyer 			    chp->cmd_ioh, wd_status);
    788   1.2    bouyer 			chp->ch_error = bus_space_read_1(chp->cmd_iot,
    789   1.2    bouyer 			    chp->cmd_ioh, wd_error);
    790   1.2    bouyer 			goto again;
    791   1.2    bouyer 		}
    792   1.2    bouyer 		printf("wdc_atapi_intr: unknown phase 0x%x\n", phase);
    793   1.2    bouyer 		if (chp->ch_status & WDCS_ERR) {
    794   1.8    bouyer 			sc_xfer->error = XS_SHORTSENSE;
    795   1.2    bouyer 			sc_xfer->sense.atapi_sense = chp->ch_error;
    796   1.2    bouyer 		} else {
    797  1.33    bouyer 			if (xfer->c_flags & C_DMA) {
    798  1.30    bouyer 				ata_dmaerr(drvp);
    799  1.33    bouyer 			}
    800  1.16    bouyer 			sc_xfer->error = XS_RESET;
    801  1.16    bouyer 			wdc_atapi_reset(chp, xfer);
    802  1.16    bouyer 			return (1);
    803   1.2    bouyer 		}
    804   1.2    bouyer 	}
    805   1.2    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_intr: wdc_atapi_done() (end), error 0x%x "
    806   1.2    bouyer 	    "sense 0x%x\n", sc_xfer->error, sc_xfer->sense.atapi_sense),
    807   1.2    bouyer 	    DEBUG_INTR);
    808   1.2    bouyer 	wdc_atapi_done(chp, xfer);
    809   1.2    bouyer 	return (1);
    810   1.2    bouyer }
    811   1.2    bouyer 
    812   1.2    bouyer int
    813  1.20    bouyer wdc_atapi_ctrl(chp, xfer, irq)
    814   1.2    bouyer 	struct channel_softc *chp;
    815   1.2    bouyer 	struct wdc_xfer *xfer;
    816  1.20    bouyer 	int irq;
    817   1.2    bouyer {
    818   1.2    bouyer 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    819   1.2    bouyer 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
    820   1.2    bouyer 	char *errstring = NULL;
    821  1.20    bouyer 	int delay = (irq == 0) ? ATAPI_DELAY : 0;
    822   1.2    bouyer 
    823   1.2    bouyer 	/* Ack interrupt done in wait_for_unbusy */
    824   1.2    bouyer again:
    825   1.5    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_ctrl %s:%d:%d state %d\n",
    826   1.5    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, drvp->drive, drvp->state),
    827   1.4    bouyer 	    DEBUG_INTR | DEBUG_FUNCS);
    828   1.2    bouyer 	bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
    829   1.2    bouyer 	    WDSD_IBM | (xfer->drive << 4));
    830   1.2    bouyer 	switch (drvp->state) {
    831   1.2    bouyer 	case PIOMODE:
    832   1.2    bouyer 		/* Don't try to set mode if controller can't be adjusted */
    833   1.2    bouyer 		if ((chp->wdc->cap & WDC_CAPABILITY_MODE) == 0)
    834   1.2    bouyer 			goto ready;
    835   1.6    bouyer 		/* Also don't try if the drive didn't report its mode */
    836   1.6    bouyer 		if ((drvp->drive_flags & DRIVE_MODE) == 0)
    837  1.38    bouyer 			goto ready;
    838   1.2    bouyer 		wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    839   1.2    bouyer 		    0x08 | drvp->PIO_mode, WDSF_SET_MODE);
    840   1.2    bouyer 		drvp->state = PIOMODE_WAIT;
    841   1.2    bouyer 		break;
    842   1.2    bouyer 	case PIOMODE_WAIT:
    843   1.2    bouyer 		errstring = "piomode";
    844  1.19    bouyer 		if (wait_for_unbusy(chp, delay))
    845   1.2    bouyer 			goto timeout;
    846  1.36    bouyer 		if (chp->wdc->cap & WDC_CAPABILITY_IRQACK)
    847  1.36    bouyer 			chp->wdc->irqack(chp);
    848  1.22    bouyer 		if (chp->ch_status & WDCS_ERR) {
    849  1.38    bouyer 			if (chp->ch_error == WDCE_ABRT) {
    850  1.38    bouyer 				/*
    851  1.38    bouyer 				 * some ATAPI drives rejects pio settings.
    852  1.38    bouyer 				 * all we can do here is fall back to PIO 0
    853  1.38    bouyer 				 */
    854  1.38    bouyer 				drvp->drive_flags &= ~DRIVE_MODE;
    855  1.38    bouyer 				drvp->drive_flags &= ~(DRIVE_DMA|DRIVE_UDMA);
    856  1.38    bouyer 				drvp->PIO_mode = 0;
    857  1.38    bouyer 				drvp->DMA_mode = 0;
    858  1.38    bouyer 				printf("%s:%d:%d: pio setting rejected, "
    859  1.38    bouyer 				    "falling back to PIO mode 0\n",
    860  1.38    bouyer 				    chp->wdc->sc_dev.dv_xname,
    861  1.38    bouyer 				    chp->channel, xfer->drive);
    862  1.38    bouyer 				chp->wdc->set_modes(chp);
    863  1.38    bouyer 				goto ready;
    864  1.22    bouyer 			}
    865  1.38    bouyer 			goto error;
    866  1.22    bouyer 		}
    867   1.2    bouyer 	/* fall through */
    868   1.2    bouyer 
    869   1.2    bouyer 	case DMAMODE:
    870   1.2    bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    871   1.2    bouyer 			wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    872   1.2    bouyer 			    0x40 | drvp->UDMA_mode, WDSF_SET_MODE);
    873   1.2    bouyer 		} else if (drvp->drive_flags & DRIVE_DMA) {
    874   1.2    bouyer 			wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
    875   1.2    bouyer 			    0x20 | drvp->DMA_mode, WDSF_SET_MODE);
    876   1.2    bouyer 		} else {
    877   1.2    bouyer 			goto ready;
    878   1.2    bouyer 		}
    879   1.2    bouyer 		drvp->state = DMAMODE_WAIT;
    880   1.2    bouyer 		break;
    881   1.2    bouyer 	case DMAMODE_WAIT:
    882   1.2    bouyer 		errstring = "dmamode";
    883  1.19    bouyer 		if (wait_for_unbusy(chp, delay))
    884   1.2    bouyer 			goto timeout;
    885  1.36    bouyer 		if (chp->wdc->cap & WDC_CAPABILITY_IRQACK)
    886  1.36    bouyer 			chp->wdc->irqack(chp);
    887   1.2    bouyer 		if (chp->ch_status & WDCS_ERR)
    888   1.2    bouyer 			goto error;
    889   1.2    bouyer 	/* fall through */
    890   1.2    bouyer 
    891   1.2    bouyer 	case READY:
    892   1.2    bouyer 	ready:
    893   1.2    bouyer 		drvp->state = READY;
    894   1.2    bouyer 		xfer->c_intr = wdc_atapi_intr;
    895  1.32   thorpej 		callout_stop(&chp->ch_callout);
    896   1.2    bouyer 		wdc_atapi_start(chp, xfer);
    897   1.2    bouyer 		return 1;
    898   1.2    bouyer 	}
    899  1.27   thorpej 	if ((sc_xfer->xs_control & XS_CTL_POLL) == 0) {
    900   1.2    bouyer 		chp->ch_flags |= WDCF_IRQ_WAIT;
    901   1.2    bouyer 		xfer->c_intr = wdc_atapi_ctrl;
    902   1.2    bouyer 	} else {
    903   1.2    bouyer 		goto again;
    904   1.2    bouyer 	}
    905   1.2    bouyer 	return 1;
    906   1.2    bouyer 
    907   1.2    bouyer timeout:
    908  1.20    bouyer 	if (irq && (xfer->c_flags & C_TIMEOU) == 0) {
    909   1.2    bouyer 		return 0; /* IRQ was not for us */
    910   1.2    bouyer 	}
    911   1.2    bouyer 	printf("%s:%d:%d: %s timed out\n",
    912   1.2    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive, errstring);
    913   1.3    bouyer 	sc_xfer->error = XS_TIMEOUT;
    914   1.2    bouyer 	wdc_atapi_reset(chp, xfer);
    915   1.2    bouyer 	return 1;
    916   1.2    bouyer error:
    917   1.2    bouyer 	printf("%s:%d:%d: %s ",
    918   1.2    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
    919   1.2    bouyer 	    errstring);
    920   1.3    bouyer 	printf("error (0x%x)\n", chp->ch_error);
    921   1.8    bouyer 	sc_xfer->error = XS_SHORTSENSE;
    922   1.2    bouyer 	sc_xfer->sense.atapi_sense = chp->ch_error;
    923   1.3    bouyer 	wdc_atapi_reset(chp, xfer);
    924   1.2    bouyer 	return 1;
    925   1.2    bouyer }
    926   1.2    bouyer 
    927   1.2    bouyer void
    928   1.2    bouyer wdc_atapi_done(chp, xfer)
    929   1.2    bouyer 	struct channel_softc *chp;
    930   1.2    bouyer 	struct wdc_xfer *xfer;
    931   1.2    bouyer {
    932   1.2    bouyer 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    933   1.2    bouyer 
    934   1.5    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_done %s:%d:%d: flags 0x%x\n",
    935   1.5    bouyer 	    chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
    936   1.5    bouyer 	    (u_int)xfer->c_flags), DEBUG_XFERS);
    937  1.32   thorpej 	callout_stop(&chp->ch_callout);
    938   1.2    bouyer 	/* remove this command from xfer queue */
    939   1.2    bouyer 	wdc_free_xfer(chp, xfer);
    940  1.40    bouyer 
    941  1.25    bouyer 	WDCDEBUG_PRINT(("wdc_atapi_done: scsipi_done\n"), DEBUG_XFERS);
    942  1.25    bouyer 	scsipi_done(sc_xfer);
    943   1.2    bouyer 	WDCDEBUG_PRINT(("wdcstart from wdc_atapi_done, flags 0x%x\n",
    944   1.4    bouyer 	    chp->ch_flags), DEBUG_XFERS);
    945  1.10  drochner 	wdcstart(chp);
    946   1.2    bouyer }
    947   1.2    bouyer 
    948   1.2    bouyer void
    949   1.2    bouyer wdc_atapi_reset(chp, xfer)
    950   1.2    bouyer 	struct channel_softc *chp;
    951   1.2    bouyer 	struct wdc_xfer *xfer;
    952   1.2    bouyer {
    953   1.2    bouyer 	struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
    954   1.2    bouyer 	struct scsipi_xfer *sc_xfer = xfer->cmd;
    955   1.2    bouyer 
    956   1.2    bouyer 	wdccommandshort(chp, xfer->drive, ATAPI_SOFT_RESET);
    957   1.2    bouyer 	drvp->state = 0;
    958   1.2    bouyer 	if (wait_for_unbusy(chp, WDC_RESET_WAIT) != 0) {
    959   1.2    bouyer 		printf("%s:%d:%d: reset failed\n",
    960   1.2    bouyer 		    chp->wdc->sc_dev.dv_xname, chp->channel,
    961   1.2    bouyer 		    xfer->drive);
    962   1.2    bouyer 		sc_xfer->error = XS_SELTIMEOUT;
    963   1.2    bouyer 	}
    964   1.2    bouyer 	wdc_atapi_done(chp, xfer);
    965   1.2    bouyer 	return;
    966   1.2    bouyer }
    967