ata_wdc.c revision 1.1.2.10 1 1.1.2.10 bouyer /* $NetBSD: ata_wdc.c,v 1.1.2.10 1998/09/20 13:16:15 bouyer Exp $ */
2 1.1.2.1 bouyer
3 1.1.2.1 bouyer /*
4 1.1.2.1 bouyer * Copyright (c) 1998 Manuel Bouyer.
5 1.1.2.1 bouyer *
6 1.1.2.1 bouyer * Redistribution and use in source and binary forms, with or without
7 1.1.2.1 bouyer * modification, are permitted provided that the following conditions
8 1.1.2.1 bouyer * are met:
9 1.1.2.1 bouyer * 1. Redistributions of source code must retain the above copyright
10 1.1.2.1 bouyer * notice, this list of conditions and the following disclaimer.
11 1.1.2.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
12 1.1.2.1 bouyer * notice, this list of conditions and the following disclaimer in the
13 1.1.2.1 bouyer * documentation and/or other materials provided with the distribution.
14 1.1.2.1 bouyer * 3. All advertising materials mentioning features or use of this software
15 1.1.2.1 bouyer * must display the following acknowledgement:
16 1.1.2.1 bouyer * This product includes software developed by the University of
17 1.1.2.1 bouyer * California, Berkeley and its contributors.
18 1.1.2.1 bouyer * 4. Neither the name of the University nor the names of its contributors
19 1.1.2.1 bouyer * may be used to endorse or promote products derived from this software
20 1.1.2.1 bouyer * without specific prior written permission.
21 1.1.2.1 bouyer *
22 1.1.2.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1.2.1 bouyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1.2.1 bouyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1.2.1 bouyer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1.2.1 bouyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1.2.1 bouyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1.2.1 bouyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1.2.1 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1.2.1 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1.2.1 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1.2.1 bouyer * SUCH DAMAGE.
33 1.1.2.1 bouyer *
34 1.1.2.1 bouyer */
35 1.1.2.1 bouyer
36 1.1.2.9 bouyer /*-
37 1.1.2.9 bouyer * Copyright (c) 1998 The NetBSD Foundation, Inc.
38 1.1.2.9 bouyer * All rights reserved.
39 1.1.2.1 bouyer *
40 1.1.2.9 bouyer * This code is derived from software contributed to The NetBSD Foundation
41 1.1.2.9 bouyer * by Charles M. Hannum, by Onno van der Linden and by Manuel Bouyer.
42 1.1.2.1 bouyer *
43 1.1.2.1 bouyer * Redistribution and use in source and binary forms, with or without
44 1.1.2.1 bouyer * modification, are permitted provided that the following conditions
45 1.1.2.1 bouyer * are met:
46 1.1.2.1 bouyer * 1. Redistributions of source code must retain the above copyright
47 1.1.2.1 bouyer * notice, this list of conditions and the following disclaimer.
48 1.1.2.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
49 1.1.2.1 bouyer * notice, this list of conditions and the following disclaimer in the
50 1.1.2.1 bouyer * documentation and/or other materials provided with the distribution.
51 1.1.2.1 bouyer * 3. All advertising materials mentioning features or use of this software
52 1.1.2.1 bouyer * must display the following acknowledgement:
53 1.1.2.9 bouyer * This product includes software developed by the NetBSD
54 1.1.2.9 bouyer * Foundation, Inc. and its contributors.
55 1.1.2.9 bouyer * 4. Neither the name of The NetBSD Foundation nor the names of its
56 1.1.2.9 bouyer * contributors may be used to endorse or promote products derived
57 1.1.2.9 bouyer * from this software without specific prior written permission.
58 1.1.2.9 bouyer *
59 1.1.2.9 bouyer * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
60 1.1.2.9 bouyer * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
61 1.1.2.9 bouyer * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
62 1.1.2.9 bouyer * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
63 1.1.2.9 bouyer * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
64 1.1.2.9 bouyer * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
65 1.1.2.9 bouyer * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
66 1.1.2.9 bouyer * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
67 1.1.2.9 bouyer * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
68 1.1.2.9 bouyer * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
69 1.1.2.9 bouyer * POSSIBILITY OF SUCH DAMAGE.
70 1.1.2.1 bouyer */
71 1.1.2.1 bouyer
72 1.1.2.1 bouyer #define WDCDEBUG
73 1.1.2.1 bouyer
74 1.1.2.1 bouyer #include <sys/param.h>
75 1.1.2.1 bouyer #include <sys/systm.h>
76 1.1.2.1 bouyer #include <sys/kernel.h>
77 1.1.2.1 bouyer #include <sys/file.h>
78 1.1.2.1 bouyer #include <sys/stat.h>
79 1.1.2.1 bouyer #include <sys/buf.h>
80 1.1.2.1 bouyer #include <sys/malloc.h>
81 1.1.2.1 bouyer #include <sys/device.h>
82 1.1.2.1 bouyer #include <sys/disklabel.h>
83 1.1.2.1 bouyer #include <sys/syslog.h>
84 1.1.2.1 bouyer #include <sys/proc.h>
85 1.1.2.1 bouyer
86 1.1.2.1 bouyer #include <machine/intr.h>
87 1.1.2.1 bouyer #include <machine/bus.h>
88 1.1.2.1 bouyer #ifndef __BUS_SPACE_HAS_STREAM_METHODS
89 1.1.2.1 bouyer #define bus_space_write_multi_stream_2 bus_space_write_multi_2
90 1.1.2.1 bouyer #define bus_space_write_multi_stream_4 bus_space_write_multi_4
91 1.1.2.1 bouyer #define bus_space_read_multi_stream_2 bus_space_read_multi_2
92 1.1.2.1 bouyer #define bus_space_read_multi_stream_4 bus_space_read_multi_4
93 1.1.2.1 bouyer #endif /* __BUS_SPACE_HAS_STREAM_METHODS */
94 1.1.2.1 bouyer
95 1.1.2.1 bouyer #include <dev/ata/atareg.h>
96 1.1.2.1 bouyer #include <dev/ata/atavar.h>
97 1.1.2.1 bouyer #include <dev/ic/wdcreg.h>
98 1.1.2.1 bouyer #include <dev/ic/wdcvar.h>
99 1.1.2.1 bouyer #include <dev/ata/wdvar.h>
100 1.1.2.1 bouyer
101 1.1.2.1 bouyer #define DEBUG_INTR 0x01
102 1.1.2.1 bouyer #define DEBUG_XFERS 0x02
103 1.1.2.1 bouyer #define DEBUG_STATUS 0x04
104 1.1.2.1 bouyer #define DEBUG_FUNCS 0x08
105 1.1.2.1 bouyer #define DEBUG_PROBE 0x10
106 1.1.2.1 bouyer #ifdef WDCDEBUG
107 1.1.2.1 bouyer int wdcdebug_wd_mask = DEBUG_PROBE;
108 1.1.2.1 bouyer #define WDCDEBUG_PRINT(args, level) \
109 1.1.2.1 bouyer if (wdcdebug_wd_mask & (level)) \
110 1.1.2.1 bouyer printf args
111 1.1.2.1 bouyer #else
112 1.1.2.1 bouyer #define WDCDEBUG_PRINT(args, level)
113 1.1.2.1 bouyer #endif
114 1.1.2.1 bouyer
115 1.1.2.8 bouyer #define ATA_DELAY 10000 /* 10s for a drive I/O */
116 1.1.2.8 bouyer
117 1.1.2.1 bouyer void wdc_ata_bio_start __P((struct channel_softc *,struct wdc_xfer *));
118 1.1.2.1 bouyer int wdc_ata_bio_intr __P((struct channel_softc *, struct wdc_xfer *));
119 1.1.2.1 bouyer void wdc_ata_bio_done __P((struct channel_softc *, struct wdc_xfer *));
120 1.1.2.1 bouyer int wdc_ata_ctrl_intr __P((struct channel_softc *, struct wdc_xfer *));
121 1.1.2.8 bouyer int wdc_ata_err __P((struct channel_softc *, struct ata_bio *));
122 1.1.2.8 bouyer #define WDC_ATA_NOERR 0x00 /* Drive doesn't report an error */
123 1.1.2.8 bouyer #define WDC_ATA_RECOV 0x01 /* There was a recovered error */
124 1.1.2.8 bouyer #define WDC_ATA_ERR 0x02 /* Drive reports an error */
125 1.1.2.1 bouyer
126 1.1.2.1 bouyer /*
127 1.1.2.1 bouyer * Handle block I/O operation. Return WDC_COMPLETE, WDC_QUEUED, or
128 1.1.2.1 bouyer * WDC_TRY_AGAIN. Must be called at splio().
129 1.1.2.1 bouyer */
130 1.1.2.1 bouyer int
131 1.1.2.1 bouyer wdc_ata_bio(drvp, ata_bio)
132 1.1.2.1 bouyer struct ata_drive_datas *drvp;
133 1.1.2.1 bouyer struct ata_bio *ata_bio;
134 1.1.2.1 bouyer {
135 1.1.2.1 bouyer struct wdc_xfer *xfer;
136 1.1.2.1 bouyer struct channel_softc *chp = drvp->chnl_softc;
137 1.1.2.1 bouyer
138 1.1.2.8 bouyer xfer = wdc_get_xfer(WDC_NOSLEEP);
139 1.1.2.1 bouyer if (xfer == NULL)
140 1.1.2.1 bouyer return WDC_TRY_AGAIN;
141 1.1.2.8 bouyer if (ata_bio->flags & ATA_POLL)
142 1.1.2.8 bouyer xfer->c_flags |= C_POLL;
143 1.1.2.1 bouyer xfer->cmd = ata_bio;
144 1.1.2.1 bouyer xfer->databuf = ata_bio->databuf;
145 1.1.2.1 bouyer xfer->c_bcount = ata_bio->bcount;
146 1.1.2.1 bouyer xfer->c_start = wdc_ata_bio_start;
147 1.1.2.1 bouyer xfer->c_intr = wdc_ata_bio_intr;
148 1.1.2.1 bouyer wdc_exec_xfer(chp, xfer);
149 1.1.2.1 bouyer return (ata_bio->flags & ATA_ITSDONE) ? WDC_COMPLETE : WDC_QUEUED;
150 1.1.2.1 bouyer }
151 1.1.2.1 bouyer
152 1.1.2.1 bouyer void
153 1.1.2.1 bouyer wdc_ata_bio_start(chp, xfer)
154 1.1.2.1 bouyer struct channel_softc *chp;
155 1.1.2.1 bouyer struct wdc_xfer *xfer;
156 1.1.2.1 bouyer {
157 1.1.2.1 bouyer struct ata_bio *ata_bio = xfer->cmd;
158 1.1.2.1 bouyer struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
159 1.1.2.1 bouyer u_int16_t cyl;
160 1.1.2.1 bouyer u_int8_t head, sect, cmd = 0;
161 1.1.2.1 bouyer int nblks;
162 1.1.2.10 bouyer int dma_flags = 0;
163 1.1.2.1 bouyer
164 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdc_ata_bio_start\n"),
165 1.1.2.1 bouyer DEBUG_FUNCS | DEBUG_XFERS);
166 1.1.2.1 bouyer
167 1.1.2.1 bouyer /* Do control operations specially. */
168 1.1.2.1 bouyer if (drvp->state < READY) {
169 1.1.2.1 bouyer /*
170 1.1.2.1 bouyer * Actually, we want to be careful not to mess with the control
171 1.1.2.1 bouyer * state if the device is currently busy, but we can assume
172 1.1.2.1 bouyer * that we never get to this point if that's the case.
173 1.1.2.1 bouyer */
174 1.1.2.1 bouyer /* at this point, we should only be in RECAL state */
175 1.1.2.1 bouyer if (drvp->state != RECAL) {
176 1.1.2.1 bouyer printf("%s:%d:%d: bad state %d in wdc_ata_bio_start\n",
177 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
178 1.1.2.1 bouyer xfer->drive, drvp->state);
179 1.1.2.1 bouyer panic("wdc_ata_bio_start: bad state");
180 1.1.2.1 bouyer }
181 1.1.2.1 bouyer xfer->c_intr = wdc_ata_ctrl_intr;
182 1.1.2.1 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
183 1.1.2.1 bouyer WDSD_IBM | (xfer->drive << 4));
184 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY) != 0)
185 1.1.2.1 bouyer goto timeout;
186 1.1.2.1 bouyer wdccommandshort(chp, xfer->drive, WDCC_RECAL);
187 1.1.2.1 bouyer drvp->state = RECAL_WAIT;
188 1.1.2.1 bouyer if ((ata_bio->flags & ATA_POLL) == 0) {
189 1.1.2.1 bouyer chp->ch_flags |= WDCF_IRQ_WAIT;
190 1.1.2.8 bouyer timeout(wdctimeout, chp, ATA_DELAY / 1000 * hz);
191 1.1.2.1 bouyer } else {
192 1.1.2.1 bouyer /* Wait for at last 400ns for status bit to be valid */
193 1.1.2.1 bouyer delay(1);
194 1.1.2.1 bouyer wdc_ata_ctrl_intr(chp, xfer);
195 1.1.2.1 bouyer }
196 1.1.2.1 bouyer return;
197 1.1.2.1 bouyer }
198 1.1.2.1 bouyer
199 1.1.2.10 bouyer if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
200 1.1.2.10 bouyer (ata_bio->flags & ATA_SINGLE) == 0) {
201 1.1.2.10 bouyer dma_flags = (ata_bio->flags & ATA_READ) ? WDC_DMA_READ : 0;
202 1.1.2.10 bouyer dma_flags |= (ata_bio->flags & ATA_POLL) ? WDC_DMA_POLL : 0;
203 1.1.2.10 bouyer }
204 1.1.2.1 bouyer again:
205 1.1.2.1 bouyer /*
206 1.1.2.1 bouyer *
207 1.1.2.1 bouyer * When starting a multi-sector transfer, or doing single-sector
208 1.1.2.1 bouyer * transfers...
209 1.1.2.1 bouyer */
210 1.1.2.1 bouyer if (xfer->c_skip == 0 || (ata_bio->flags & ATA_SINGLE) != 0 ||
211 1.1.2.8 bouyer (drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) != 0) {
212 1.1.2.1 bouyer if (ata_bio->flags & ATA_SINGLE)
213 1.1.2.1 bouyer nblks = 1;
214 1.1.2.1 bouyer else
215 1.1.2.1 bouyer nblks = xfer->c_bcount / ata_bio->lp->d_secsize;
216 1.1.2.1 bouyer /* Check for bad sectors and adjust transfer, if necessary. */
217 1.1.2.1 bouyer if ((ata_bio->lp->d_flags & D_BADSECT) != 0) {
218 1.1.2.1 bouyer long blkdiff;
219 1.1.2.1 bouyer int i;
220 1.1.2.1 bouyer for (i = 0; (blkdiff = ata_bio->badsect[i]) != -1;
221 1.1.2.1 bouyer i++) {
222 1.1.2.1 bouyer blkdiff -= ata_bio->blkno;
223 1.1.2.1 bouyer if (blkdiff < 0)
224 1.1.2.1 bouyer continue;
225 1.1.2.1 bouyer if (blkdiff == 0) {
226 1.1.2.1 bouyer /* Replace current block of transfer. */
227 1.1.2.1 bouyer ata_bio->blkno =
228 1.1.2.1 bouyer ata_bio->lp->d_secperunit -
229 1.1.2.1 bouyer ata_bio->lp->d_nsectors - i - 1;
230 1.1.2.1 bouyer }
231 1.1.2.1 bouyer if (blkdiff < nblks) {
232 1.1.2.1 bouyer /* Bad block inside transfer. */
233 1.1.2.1 bouyer ata_bio->flags |= ATA_SINGLE;
234 1.1.2.1 bouyer nblks = 1;
235 1.1.2.1 bouyer }
236 1.1.2.1 bouyer break;
237 1.1.2.1 bouyer }
238 1.1.2.1 bouyer /* Transfer is okay now. */
239 1.1.2.1 bouyer }
240 1.1.2.1 bouyer if (ata_bio->flags & ATA_LBA) {
241 1.1.2.1 bouyer sect = (ata_bio->blkno >> 0) & 0xff;
242 1.1.2.1 bouyer cyl = (ata_bio->blkno >> 8) & 0xffff;
243 1.1.2.1 bouyer head = (ata_bio->blkno >> 24) & 0x0f;
244 1.1.2.1 bouyer head |= WDSD_LBA;
245 1.1.2.1 bouyer } else {
246 1.1.2.1 bouyer int blkno = ata_bio->blkno;
247 1.1.2.1 bouyer sect = blkno % ata_bio->lp->d_nsectors;
248 1.1.2.1 bouyer sect++; /* Sectors begin with 1, not 0. */
249 1.1.2.1 bouyer blkno /= ata_bio->lp->d_nsectors;
250 1.1.2.1 bouyer head = blkno % ata_bio->lp->d_ntracks;
251 1.1.2.1 bouyer blkno /= ata_bio->lp->d_ntracks;
252 1.1.2.1 bouyer cyl = blkno;
253 1.1.2.1 bouyer head |= WDSD_CHS;
254 1.1.2.1 bouyer }
255 1.1.2.4 bouyer if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
256 1.1.2.3 bouyer (ata_bio->flags & ATA_SINGLE) == 0) {
257 1.1.2.1 bouyer ata_bio->nblks = nblks;
258 1.1.2.1 bouyer ata_bio->nbytes = xfer->c_bcount;
259 1.1.2.1 bouyer cmd = (ata_bio->flags & ATA_READ) ?
260 1.1.2.1 bouyer WDCC_READDMA : WDCC_WRITEDMA;
261 1.1.2.1 bouyer nblks = ata_bio->nblks;
262 1.1.2.1 bouyer /* Init the DMA channel. */
263 1.1.2.1 bouyer if ((*chp->wdc->dma_init)(chp->wdc->dma_arg,
264 1.1.2.1 bouyer chp->channel, xfer->drive,
265 1.1.2.1 bouyer xfer->databuf + xfer->c_skip, ata_bio->nbytes,
266 1.1.2.10 bouyer dma_flags) != 0) {
267 1.1.2.8 bouyer ata_bio->error = ERR_DMA;
268 1.1.2.1 bouyer ata_bio->r_error = 0;
269 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
270 1.1.2.1 bouyer return;
271 1.1.2.1 bouyer }
272 1.1.2.1 bouyer /* Initiate command */
273 1.1.2.1 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
274 1.1.2.1 bouyer WDSD_IBM | (xfer->drive << 4));
275 1.1.2.8 bouyer if (wait_for_ready(chp, ATA_DELAY) < 0)
276 1.1.2.1 bouyer goto timeout;
277 1.1.2.1 bouyer wdccommand(chp, xfer->drive, cmd, cyl,
278 1.1.2.1 bouyer head, sect, nblks, 0);
279 1.1.2.1 bouyer /* start the DMA channel */
280 1.1.2.1 bouyer (*chp->wdc->dma_start)(chp->wdc->dma_arg,
281 1.1.2.10 bouyer chp->channel, xfer->drive, dma_flags);
282 1.1.2.1 bouyer /* wait for irq */
283 1.1.2.1 bouyer goto intr;
284 1.1.2.1 bouyer } /* else not DMA */
285 1.1.2.1 bouyer ata_bio->nblks = min(nblks, ata_bio->multi);
286 1.1.2.1 bouyer ata_bio->nbytes = ata_bio->nblks * ata_bio->lp->d_secsize;
287 1.1.2.1 bouyer if (ata_bio->nblks > 1 && (ata_bio->flags & ATA_SINGLE) == 0) {
288 1.1.2.1 bouyer cmd = (ata_bio->flags & ATA_READ) ?
289 1.1.2.1 bouyer WDCC_READMULTI : WDCC_WRITEMULTI;
290 1.1.2.1 bouyer } else {
291 1.1.2.1 bouyer cmd = (ata_bio->flags & ATA_READ) ?
292 1.1.2.1 bouyer WDCC_READ : WDCC_WRITE;
293 1.1.2.1 bouyer }
294 1.1.2.1 bouyer /* Initiate command! */
295 1.1.2.1 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
296 1.1.2.1 bouyer WDSD_IBM | (xfer->drive << 4));
297 1.1.2.8 bouyer if (wait_for_ready(chp, ATA_DELAY) < 0)
298 1.1.2.1 bouyer goto timeout;
299 1.1.2.1 bouyer wdccommand(chp, xfer->drive, cmd, cyl,
300 1.1.2.1 bouyer head, sect, nblks,
301 1.1.2.1 bouyer (ata_bio->lp->d_type == DTYPE_ST506) ?
302 1.1.2.1 bouyer ata_bio->lp->d_precompcyl / 4 : 0);
303 1.1.2.1 bouyer } else if (ata_bio->nblks > 1) {
304 1.1.2.1 bouyer /* The number of blocks in the last stretch may be smaller. */
305 1.1.2.1 bouyer nblks = xfer->c_bcount / ata_bio->lp->d_secsize;
306 1.1.2.1 bouyer if (ata_bio->nblks > nblks) {
307 1.1.2.1 bouyer ata_bio->nblks = nblks;
308 1.1.2.1 bouyer ata_bio->nbytes = xfer->c_bcount;
309 1.1.2.1 bouyer }
310 1.1.2.1 bouyer }
311 1.1.2.1 bouyer /* If this was a write and not using DMA, push the data. */
312 1.1.2.1 bouyer if ((ata_bio->flags & ATA_READ) == 0) {
313 1.1.2.1 bouyer /* Wait for at last 400ns for status bit to be valid */
314 1.1.2.1 bouyer delay(1);
315 1.1.2.8 bouyer if (wait_for_drq(chp, ATA_DELAY) != 0) {
316 1.1.2.1 bouyer printf("%s:%d:%d: timeout waiting for DRQ, "
317 1.1.2.1 bouyer "st=0x%02x, err=0x%02x\n",
318 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
319 1.1.2.1 bouyer xfer->drive, chp->ch_status, chp->ch_error);
320 1.1.2.8 bouyer if (wdc_ata_err(chp, ata_bio) != WDC_ATA_ERR)
321 1.1.2.1 bouyer ata_bio->error = TIMEOUT;
322 1.1.2.8 bouyer wdc_ata_bio_done(chp, xfer);
323 1.1.2.8 bouyer return;
324 1.1.2.8 bouyer }
325 1.1.2.8 bouyer if (wdc_ata_err(chp, ata_bio) == WDC_ATA_ERR) {
326 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
327 1.1.2.1 bouyer return;
328 1.1.2.1 bouyer }
329 1.1.2.7 leo if ((chp->wdc->cap & WDC_CAPABILITY_ATA_NOSTREAM)) {
330 1.1.2.7 leo if (drvp->drive_flags & DRIVE_CAP32) {
331 1.1.2.7 leo bus_space_write_multi_4(chp->cmd_iot,
332 1.1.2.7 leo chp->cmd_ioh, wd_data,
333 1.1.2.7 leo xfer->databuf + xfer->c_skip,
334 1.1.2.7 leo ata_bio->nbytes >> 2);
335 1.1.2.7 leo } else {
336 1.1.2.7 leo bus_space_write_multi_2(chp->cmd_iot,
337 1.1.2.7 leo chp->cmd_ioh, wd_data,
338 1.1.2.7 leo xfer->databuf + xfer->c_skip,
339 1.1.2.7 leo ata_bio->nbytes >> 1);
340 1.1.2.7 leo }
341 1.1.2.1 bouyer } else {
342 1.1.2.7 leo if (drvp->drive_flags & DRIVE_CAP32) {
343 1.1.2.7 leo bus_space_write_multi_stream_4(chp->cmd_iot,
344 1.1.2.7 leo chp->cmd_ioh, wd_data,
345 1.1.2.7 leo xfer->databuf + xfer->c_skip,
346 1.1.2.7 leo ata_bio->nbytes >> 2);
347 1.1.2.7 leo } else {
348 1.1.2.7 leo bus_space_write_multi_stream_2(chp->cmd_iot,
349 1.1.2.7 leo chp->cmd_ioh, wd_data,
350 1.1.2.7 leo xfer->databuf + xfer->c_skip,
351 1.1.2.7 leo ata_bio->nbytes >> 1);
352 1.1.2.7 leo }
353 1.1.2.1 bouyer }
354 1.1.2.1 bouyer }
355 1.1.2.1 bouyer
356 1.1.2.8 bouyer intr: /* Wait for IRQ (either real or polled) */
357 1.1.2.1 bouyer if ((ata_bio->flags & ATA_POLL) == 0) {
358 1.1.2.1 bouyer chp->ch_flags |= WDCF_IRQ_WAIT;
359 1.1.2.8 bouyer timeout(wdctimeout, chp, ATA_DELAY / 1000 * hz);
360 1.1.2.1 bouyer } else {
361 1.1.2.1 bouyer /* Wait for at last 400ns for status bit to be valid */
362 1.1.2.1 bouyer delay(1);
363 1.1.2.1 bouyer wdc_ata_bio_intr(chp, xfer);
364 1.1.2.1 bouyer if ((ata_bio->flags & ATA_ITSDONE) == 0)
365 1.1.2.1 bouyer goto again;
366 1.1.2.1 bouyer }
367 1.1.2.1 bouyer return;
368 1.1.2.1 bouyer timeout:
369 1.1.2.1 bouyer printf("%s:%d:%d: not ready, st=0x%02x, err=0x%02x\n",
370 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
371 1.1.2.1 bouyer chp->ch_status, chp->ch_error);
372 1.1.2.8 bouyer if (wdc_ata_err(chp, ata_bio) != WDC_ATA_ERR)
373 1.1.2.1 bouyer ata_bio->error = TIMEOUT;
374 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
375 1.1.2.1 bouyer return;
376 1.1.2.1 bouyer }
377 1.1.2.1 bouyer
378 1.1.2.1 bouyer int
379 1.1.2.1 bouyer wdc_ata_bio_intr(chp, xfer)
380 1.1.2.1 bouyer struct channel_softc *chp;
381 1.1.2.1 bouyer struct wdc_xfer *xfer;
382 1.1.2.1 bouyer {
383 1.1.2.1 bouyer struct ata_bio *ata_bio = xfer->cmd;
384 1.1.2.1 bouyer struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
385 1.1.2.8 bouyer int drv_err;
386 1.1.2.10 bouyer int dma_flags = 0;
387 1.1.2.1 bouyer
388 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdc_ata_bio_intr\n"), DEBUG_INTR);
389 1.1.2.1 bouyer
390 1.1.2.1 bouyer /* Is it not a transfer, but a control operation? */
391 1.1.2.1 bouyer if (drvp->state < READY) {
392 1.1.2.1 bouyer printf("%s:%d:%d: bad state %d in wdc_ata_bio_intr\n",
393 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
394 1.1.2.1 bouyer drvp->state);
395 1.1.2.1 bouyer panic("wdc_ata_bio_intr: bad state\n");
396 1.1.2.1 bouyer }
397 1.1.2.1 bouyer
398 1.1.2.10 bouyer if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
399 1.1.2.10 bouyer (ata_bio->flags & ATA_SINGLE) == 0) {
400 1.1.2.10 bouyer dma_flags = (ata_bio->flags & ATA_READ) ? WDC_DMA_READ : 0;
401 1.1.2.10 bouyer dma_flags |= (ata_bio->flags & ATA_POLL) ? WDC_DMA_POLL : 0;
402 1.1.2.10 bouyer }
403 1.1.2.10 bouyer
404 1.1.2.1 bouyer /* Ack interrupt done by wait_for_unbusy */
405 1.1.2.8 bouyer if (wait_for_unbusy(chp, ATA_DELAY) < 0) {
406 1.1.2.1 bouyer printf("%s:%d:%d: device timeout, c_bcount=%d, c_skip%d\n",
407 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
408 1.1.2.1 bouyer xfer->c_bcount, xfer->c_skip);
409 1.1.2.1 bouyer /* if we were using DMA, turn off DMA channel */
410 1.1.2.4 bouyer if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
411 1.1.2.3 bouyer (ata_bio->flags & ATA_SINGLE) == 0)
412 1.1.2.1 bouyer (*chp->wdc->dma_finish)(chp->wdc->dma_arg,
413 1.1.2.10 bouyer chp->channel, xfer->drive, dma_flags);
414 1.1.2.1 bouyer ata_bio->error = TIMEOUT;
415 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
416 1.1.2.1 bouyer return 1;
417 1.1.2.1 bouyer }
418 1.1.2.1 bouyer
419 1.1.2.8 bouyer drv_err = wdc_ata_err(chp, ata_bio);
420 1.1.2.1 bouyer
421 1.1.2.1 bouyer /* If we were using DMA, Turn off the DMA channel and check for error */
422 1.1.2.4 bouyer if ((drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) &&
423 1.1.2.3 bouyer (ata_bio->flags & ATA_SINGLE) == 0) {
424 1.1.2.8 bouyer if (ata_bio->flags & ATA_POLL) {
425 1.1.2.8 bouyer /*
426 1.1.2.8 bouyer * IDE drives deassert WDCS_BSY before trasfert is
427 1.1.2.8 bouyer * complete when using DMA. Polling for DRQ to deassert
428 1.1.2.10 bouyer * is not enouth DRQ is not required to be
429 1.1.2.10 bouyer * asserted for DMA transferts, so poll for DRDY.
430 1.1.2.8 bouyer */
431 1.1.2.10 bouyer if (wdcwait(chp, WDCS_DRDY | WDCS_DRQ, WDCS_DRDY,
432 1.1.2.10 bouyer ATA_DELAY) < 0) {
433 1.1.2.10 bouyer printf("%s:%d:%d: polled transfert timed out "
434 1.1.2.10 bouyer "(st=0x%x)\n", chp->wdc->sc_dev.dv_xname,
435 1.1.2.10 bouyer chp->channel, xfer->drive, chp->ch_status);
436 1.1.2.10 bouyer ata_bio->error = TIMEOUT;
437 1.1.2.10 bouyer wdc_ata_bio_done(chp, xfer);
438 1.1.2.10 bouyer return 1;
439 1.1.2.10 bouyer }
440 1.1.2.8 bouyer }
441 1.1.2.1 bouyer if (chp->ch_status & WDCS_DRQ) {
442 1.1.2.8 bouyer printf("%s:%d:%d: intr with DRQ (st=0x%x)\n",
443 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
444 1.1.2.8 bouyer xfer->drive, chp->ch_status);
445 1.1.2.1 bouyer ata_bio->error = TIMEOUT;
446 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
447 1.1.2.3 bouyer return 1;
448 1.1.2.1 bouyer }
449 1.1.2.8 bouyer if ((*chp->wdc->dma_finish)(chp->wdc->dma_arg,
450 1.1.2.10 bouyer chp->channel, xfer->drive, dma_flags) != 0) {
451 1.1.2.8 bouyer if (drv_err != WDC_ATA_ERR) {
452 1.1.2.8 bouyer ata_bio->error = ERR_DMA;
453 1.1.2.8 bouyer drv_err = WDC_ATA_ERR;
454 1.1.2.8 bouyer }
455 1.1.2.8 bouyer }
456 1.1.2.8 bouyer if (drv_err != WDC_ATA_ERR)
457 1.1.2.1 bouyer goto end;
458 1.1.2.8 bouyer
459 1.1.2.8 bouyer }
460 1.1.2.8 bouyer
461 1.1.2.8 bouyer /* if we had an error, end */
462 1.1.2.8 bouyer if (drv_err == WDC_ATA_ERR) {
463 1.1.2.8 bouyer wdc_ata_bio_done(chp, xfer);
464 1.1.2.8 bouyer return 1;
465 1.1.2.1 bouyer }
466 1.1.2.1 bouyer
467 1.1.2.1 bouyer /* If this was a read and not using DMA, fetch the data. */
468 1.1.2.1 bouyer if ((ata_bio->flags & ATA_READ) != 0) {
469 1.1.2.1 bouyer if ((chp->ch_status & (WDCS_DRDY | WDCS_DSC | WDCS_DRQ)) !=
470 1.1.2.1 bouyer (WDCS_DRDY | WDCS_DSC | WDCS_DRQ)) {
471 1.1.2.8 bouyer printf("%s:%d:%d: read intr before drq\n",
472 1.1.2.8 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
473 1.1.2.8 bouyer xfer->drive);
474 1.1.2.8 bouyer ata_bio->error = TIMEOUT;
475 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
476 1.1.2.1 bouyer return 1;
477 1.1.2.1 bouyer }
478 1.1.2.7 leo if ((chp->wdc->cap & WDC_CAPABILITY_ATA_NOSTREAM)) {
479 1.1.2.7 leo if (drvp->drive_flags & DRIVE_CAP32) {
480 1.1.2.7 leo bus_space_read_multi_4(chp->cmd_iot,
481 1.1.2.7 leo chp->cmd_ioh, wd_data,
482 1.1.2.7 leo xfer->databuf + xfer->c_skip,
483 1.1.2.7 leo ata_bio->nbytes >> 2);
484 1.1.2.7 leo } else {
485 1.1.2.7 leo bus_space_read_multi_2(chp->cmd_iot,
486 1.1.2.7 leo chp->cmd_ioh, wd_data,
487 1.1.2.7 leo xfer->databuf + xfer->c_skip,
488 1.1.2.7 leo ata_bio->nbytes >> 1);
489 1.1.2.7 leo }
490 1.1.2.1 bouyer } else {
491 1.1.2.7 leo if (drvp->drive_flags & DRIVE_CAP32) {
492 1.1.2.7 leo bus_space_read_multi_stream_4(chp->cmd_iot,
493 1.1.2.7 leo chp->cmd_ioh, wd_data,
494 1.1.2.7 leo xfer->databuf + xfer->c_skip,
495 1.1.2.7 leo ata_bio->nbytes >> 2);
496 1.1.2.7 leo } else {
497 1.1.2.7 leo bus_space_read_multi_stream_2(chp->cmd_iot,
498 1.1.2.7 leo chp->cmd_ioh, wd_data,
499 1.1.2.7 leo xfer->databuf + xfer->c_skip,
500 1.1.2.7 leo ata_bio->nbytes >> 1);
501 1.1.2.7 leo }
502 1.1.2.1 bouyer }
503 1.1.2.1 bouyer }
504 1.1.2.1 bouyer
505 1.1.2.1 bouyer end:
506 1.1.2.1 bouyer ata_bio->blkno += ata_bio->nblks;
507 1.1.2.8 bouyer ata_bio->blkdone += ata_bio->nblks;
508 1.1.2.1 bouyer xfer->c_skip += ata_bio->nbytes;
509 1.1.2.1 bouyer xfer->c_bcount -= ata_bio->nbytes;
510 1.1.2.1 bouyer /* See if this transfer is complete. */
511 1.1.2.1 bouyer if (xfer->c_bcount > 0) {
512 1.1.2.1 bouyer if ((ata_bio->flags & ATA_POLL) == 0) {
513 1.1.2.1 bouyer /* Start the next operation */
514 1.1.2.1 bouyer wdc_ata_bio_start(chp, xfer);
515 1.1.2.1 bouyer } else {
516 1.1.2.1 bouyer /* Let wdc_ata_bio_start do the loop */
517 1.1.2.1 bouyer return 1;
518 1.1.2.1 bouyer }
519 1.1.2.1 bouyer } else { /* Done with this transfer */
520 1.1.2.1 bouyer ata_bio->error = NOERROR;
521 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
522 1.1.2.1 bouyer }
523 1.1.2.1 bouyer return 1;
524 1.1.2.1 bouyer }
525 1.1.2.1 bouyer
526 1.1.2.1 bouyer void
527 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer)
528 1.1.2.1 bouyer struct channel_softc *chp;
529 1.1.2.1 bouyer struct wdc_xfer *xfer;
530 1.1.2.1 bouyer {
531 1.1.2.1 bouyer struct ata_bio *ata_bio = xfer->cmd;
532 1.1.2.1 bouyer int need_done = xfer->c_flags & C_NEEDDONE;
533 1.1.2.1 bouyer int drive = xfer->drive;
534 1.1.2.1 bouyer
535 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdc_ata_bio_done: flags 0x%x\n", (u_int)xfer->c_flags),
536 1.1.2.1 bouyer DEBUG_FUNCS);
537 1.1.2.1 bouyer
538 1.1.2.8 bouyer /* feed back residual bcount to our caller */
539 1.1.2.8 bouyer ata_bio->bcount = xfer->c_bcount;
540 1.1.2.8 bouyer
541 1.1.2.1 bouyer /* remove this command from xfer queue */
542 1.1.2.1 bouyer wdc_free_xfer(chp, xfer);
543 1.1.2.1 bouyer
544 1.1.2.1 bouyer ata_bio->flags |= ATA_ITSDONE;
545 1.1.2.1 bouyer if (need_done) {
546 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdc_ata_done: wddone\n"), DEBUG_FUNCS);
547 1.1.2.1 bouyer wddone(chp->ch_drive[drive].drv_softc);
548 1.1.2.1 bouyer }
549 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdcstart from wdc_ata_done, flags 0x%x\n",
550 1.1.2.1 bouyer chp->ch_flags), DEBUG_FUNCS);
551 1.1.2.1 bouyer wdcstart(chp->wdc, chp->channel);
552 1.1.2.1 bouyer }
553 1.1.2.1 bouyer
554 1.1.2.1 bouyer /*
555 1.1.2.1 bouyer * Implement operations needed before read/write.
556 1.1.2.1 bouyer */
557 1.1.2.1 bouyer int
558 1.1.2.1 bouyer wdc_ata_ctrl_intr(chp, xfer)
559 1.1.2.1 bouyer struct channel_softc *chp;
560 1.1.2.1 bouyer struct wdc_xfer *xfer;
561 1.1.2.1 bouyer {
562 1.1.2.1 bouyer struct ata_bio *ata_bio = xfer->cmd;
563 1.1.2.1 bouyer struct ata_drive_datas *drvp = &chp->ch_drive[xfer->drive];
564 1.1.2.1 bouyer char *errstring = NULL;
565 1.1.2.1 bouyer WDCDEBUG_PRINT(("wdc_ata_ctrl_intr: state %d\n", drvp->state),
566 1.1.2.1 bouyer DEBUG_FUNCS);
567 1.1.2.1 bouyer
568 1.1.2.1 bouyer again:
569 1.1.2.1 bouyer switch (drvp->state) {
570 1.1.2.1 bouyer case RECAL: /* Should not be in this state here */
571 1.1.2.1 bouyer panic("wdc_ata_ctrl_intr: state==RECAL");
572 1.1.2.1 bouyer break;
573 1.1.2.1 bouyer
574 1.1.2.1 bouyer case RECAL_WAIT:
575 1.1.2.1 bouyer errstring = "recal";
576 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY))
577 1.1.2.1 bouyer goto timeout;
578 1.1.2.1 bouyer if (chp->ch_status & (WDCS_ERR | WDCS_DWF))
579 1.1.2.1 bouyer goto error;
580 1.1.2.1 bouyer /* fall through */
581 1.1.2.1 bouyer
582 1.1.2.1 bouyer case PIOMODE:
583 1.1.2.5 bouyer /* Don't try to set mode if controller can't be adjusted */
584 1.1.2.5 bouyer if ((chp->wdc->cap & WDC_CAPABILITY_PIO) == 0)
585 1.1.2.5 bouyer goto dmamode;
586 1.1.2.2 bouyer /*
587 1.1.2.2 bouyer * if mode is < 3, it is unknown. Assume the defaults are
588 1.1.2.2 bouyer * good.
589 1.1.2.2 bouyer */
590 1.1.2.2 bouyer if (drvp->PIO_mode < 3)
591 1.1.2.1 bouyer goto dmamode;
592 1.1.2.1 bouyer wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
593 1.1.2.1 bouyer 0x08 | drvp->PIO_mode, WDSF_SET_MODE);
594 1.1.2.1 bouyer drvp->state = PIOMODE_WAIT;
595 1.1.2.1 bouyer break;
596 1.1.2.1 bouyer
597 1.1.2.1 bouyer case PIOMODE_WAIT:
598 1.1.2.1 bouyer errstring = "piomode";
599 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY))
600 1.1.2.1 bouyer goto timeout;
601 1.1.2.1 bouyer if (chp->ch_status & (WDCS_ERR | WDCS_DWF))
602 1.1.2.1 bouyer goto error;
603 1.1.2.1 bouyer /* fall through */
604 1.1.2.1 bouyer
605 1.1.2.1 bouyer case DMAMODE:
606 1.1.2.1 bouyer dmamode:
607 1.1.2.1 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
608 1.1.2.1 bouyer wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
609 1.1.2.1 bouyer 0x40 | drvp->UDMA_mode, WDSF_SET_MODE);
610 1.1.2.1 bouyer } else if (drvp->drive_flags & DRIVE_DMA) {
611 1.1.2.1 bouyer wdccommand(chp, drvp->drive, SET_FEATURES, 0, 0, 0,
612 1.1.2.1 bouyer 0x20 | drvp->DMA_mode, WDSF_SET_MODE);
613 1.1.2.1 bouyer } else {
614 1.1.2.1 bouyer goto geometry;
615 1.1.2.1 bouyer }
616 1.1.2.1 bouyer drvp->state = DMAMODE_WAIT;
617 1.1.2.1 bouyer break;
618 1.1.2.1 bouyer case DMAMODE_WAIT:
619 1.1.2.1 bouyer errstring = "dmamode";
620 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY))
621 1.1.2.1 bouyer goto timeout;
622 1.1.2.1 bouyer if (chp->ch_status & (WDCS_ERR | WDCS_DWF))
623 1.1.2.1 bouyer goto error;
624 1.1.2.1 bouyer /* fall through */
625 1.1.2.1 bouyer
626 1.1.2.1 bouyer case GEOMETRY:
627 1.1.2.1 bouyer geometry:
628 1.1.2.1 bouyer if (ata_bio->flags & ATA_LBA)
629 1.1.2.1 bouyer goto multimode;
630 1.1.2.1 bouyer wdccommand(chp, xfer->drive, WDCC_IDP,
631 1.1.2.1 bouyer ata_bio->lp->d_ncylinders,
632 1.1.2.1 bouyer ata_bio->lp->d_ntracks - 1, 0, ata_bio->lp->d_nsectors,
633 1.1.2.1 bouyer (ata_bio->lp->d_type == DTYPE_ST506) ?
634 1.1.2.1 bouyer ata_bio->lp->d_precompcyl / 4 : 0);
635 1.1.2.1 bouyer drvp->state = GEOMETRY_WAIT;
636 1.1.2.1 bouyer break;
637 1.1.2.1 bouyer
638 1.1.2.1 bouyer case GEOMETRY_WAIT:
639 1.1.2.1 bouyer errstring = "geometry";
640 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY))
641 1.1.2.1 bouyer goto timeout;
642 1.1.2.1 bouyer if (chp->ch_status & (WDCS_ERR | WDCS_DWF))
643 1.1.2.1 bouyer goto error;
644 1.1.2.1 bouyer /* fall through */
645 1.1.2.1 bouyer
646 1.1.2.1 bouyer case MULTIMODE:
647 1.1.2.1 bouyer multimode:
648 1.1.2.1 bouyer if (ata_bio->multi == 1)
649 1.1.2.1 bouyer goto ready;
650 1.1.2.1 bouyer wdccommand(chp, xfer->drive, WDCC_SETMULTI, 0, 0, 0,
651 1.1.2.1 bouyer ata_bio->multi, 0);
652 1.1.2.1 bouyer drvp->state = MULTIMODE_WAIT;
653 1.1.2.1 bouyer break;
654 1.1.2.1 bouyer
655 1.1.2.1 bouyer case MULTIMODE_WAIT:
656 1.1.2.1 bouyer errstring = "setmulti";
657 1.1.2.8 bouyer if (wdcwait(chp, WDCS_DRDY, WDCS_DRDY, ATA_DELAY))
658 1.1.2.1 bouyer goto timeout;
659 1.1.2.1 bouyer if (chp->ch_status & (WDCS_ERR | WDCS_DWF))
660 1.1.2.1 bouyer goto error;
661 1.1.2.1 bouyer /* fall through */
662 1.1.2.1 bouyer
663 1.1.2.1 bouyer case READY:
664 1.1.2.1 bouyer ready:
665 1.1.2.1 bouyer drvp->state = READY;
666 1.1.2.1 bouyer /*
667 1.1.2.1 bouyer * The drive is usable now
668 1.1.2.1 bouyer */
669 1.1.2.1 bouyer xfer->c_intr = wdc_ata_bio_intr;
670 1.1.2.1 bouyer wdc_ata_bio_start(chp, xfer);
671 1.1.2.1 bouyer return 1;
672 1.1.2.1 bouyer }
673 1.1.2.1 bouyer
674 1.1.2.1 bouyer if ((ata_bio->flags & ATA_POLL) == 0) {
675 1.1.2.1 bouyer chp->ch_flags |= WDCF_IRQ_WAIT;
676 1.1.2.8 bouyer timeout(wdctimeout, chp, ATA_DELAY / 1000 * hz);
677 1.1.2.1 bouyer } else {
678 1.1.2.1 bouyer goto again;
679 1.1.2.1 bouyer }
680 1.1.2.1 bouyer return 1;
681 1.1.2.1 bouyer
682 1.1.2.1 bouyer timeout:
683 1.1.2.1 bouyer if ((xfer->c_flags & C_TIMEOU) == 0 ) {
684 1.1.2.1 bouyer return 0; /* IRQ was not for us */
685 1.1.2.1 bouyer }
686 1.1.2.1 bouyer printf("%s:%d:%d: %s timed out\n",
687 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive, errstring);
688 1.1.2.1 bouyer ata_bio->error = TIMEOUT;
689 1.1.2.6 bouyer drvp->state = 0;
690 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
691 1.1.2.1 bouyer return 0;
692 1.1.2.1 bouyer error:
693 1.1.2.1 bouyer printf("%s:%d:%d: %s ",
694 1.1.2.1 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive,
695 1.1.2.1 bouyer errstring);
696 1.1.2.1 bouyer if (chp->ch_status & WDCS_DWF) {
697 1.1.2.1 bouyer printf("drive fault\n");
698 1.1.2.1 bouyer ata_bio->error = ERR_DF;
699 1.1.2.1 bouyer } else {
700 1.1.2.1 bouyer printf("error (%x)\n", chp->ch_error);
701 1.1.2.1 bouyer ata_bio->r_error = chp->ch_error;
702 1.1.2.1 bouyer ata_bio->error = ERROR;
703 1.1.2.1 bouyer }
704 1.1.2.6 bouyer drvp->state = 0;
705 1.1.2.1 bouyer wdc_ata_bio_done(chp, xfer);
706 1.1.2.1 bouyer return 1;
707 1.1.2.8 bouyer }
708 1.1.2.8 bouyer
709 1.1.2.8 bouyer int
710 1.1.2.8 bouyer wdc_ata_err(chp, ata_bio)
711 1.1.2.8 bouyer struct channel_softc *chp;
712 1.1.2.8 bouyer struct ata_bio *ata_bio;
713 1.1.2.8 bouyer {
714 1.1.2.8 bouyer ata_bio->error = 0;
715 1.1.2.8 bouyer if (chp->ch_status & WDCS_BSY) {
716 1.1.2.8 bouyer ata_bio->error = TIMEOUT;
717 1.1.2.8 bouyer return WDC_ATA_ERR;
718 1.1.2.8 bouyer }
719 1.1.2.8 bouyer
720 1.1.2.8 bouyer if (chp->ch_status & WDCS_DWF) {
721 1.1.2.8 bouyer ata_bio->error = ERR_DF;
722 1.1.2.8 bouyer return WDC_ATA_ERR;
723 1.1.2.8 bouyer }
724 1.1.2.8 bouyer
725 1.1.2.8 bouyer if (chp->ch_status & WDCS_ERR) {
726 1.1.2.8 bouyer ata_bio->error = ERROR;
727 1.1.2.8 bouyer ata_bio->r_error = chp->ch_error;
728 1.1.2.8 bouyer if (ata_bio->r_error & (WDCE_BBK | WDCE_UNC | WDCE_IDNF |
729 1.1.2.8 bouyer WDCE_ABRT | WDCE_TK0NF | WDCE_AMNF))
730 1.1.2.8 bouyer return WDC_ATA_ERR;
731 1.1.2.8 bouyer return WDC_ATA_NOERR;
732 1.1.2.8 bouyer }
733 1.1.2.8 bouyer
734 1.1.2.8 bouyer if (chp->ch_status & WDCS_CORR)
735 1.1.2.8 bouyer ata_bio->flags |= ATA_CORR;
736 1.1.2.8 bouyer return WDC_ATA_NOERR;
737 1.1.2.1 bouyer }
738