wdc.c revision 1.64 1 1.64 bouyer /* $NetBSD: wdc.c,v 1.64 1999/03/29 08:32:02 bouyer Exp $ */
2 1.31 bouyer
3 1.31 bouyer
4 1.31 bouyer /*
5 1.31 bouyer * Copyright (c) 1998 Manuel Bouyer. All rights reserved.
6 1.31 bouyer *
7 1.31 bouyer * Redistribution and use in source and binary forms, with or without
8 1.31 bouyer * modification, are permitted provided that the following conditions
9 1.31 bouyer * are met:
10 1.31 bouyer * 1. Redistributions of source code must retain the above copyright
11 1.31 bouyer * notice, this list of conditions and the following disclaimer.
12 1.31 bouyer * 2. Redistributions in binary form must reproduce the above copyright
13 1.31 bouyer * notice, this list of conditions and the following disclaimer in the
14 1.31 bouyer * documentation and/or other materials provided with the distribution.
15 1.31 bouyer * 3. All advertising materials mentioning features or use of this software
16 1.31 bouyer * must display the following acknowledgement:
17 1.31 bouyer * This product includes software developed by Manuel Bouyer.
18 1.31 bouyer * 4. The name of the author may not be used to endorse or promote products
19 1.31 bouyer * derived from this software without specific prior written permission.
20 1.31 bouyer *
21 1.31 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.31 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.31 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.31 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.31 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.31 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.31 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.31 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.31 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.31 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.31 bouyer */
32 1.2 bouyer
33 1.27 mycroft /*-
34 1.27 mycroft * Copyright (c) 1998 The NetBSD Foundation, Inc.
35 1.27 mycroft * All rights reserved.
36 1.2 bouyer *
37 1.27 mycroft * This code is derived from software contributed to The NetBSD Foundation
38 1.27 mycroft * by Charles M. Hannum, by Onno van der Linden and by Manuel Bouyer.
39 1.12 cgd *
40 1.2 bouyer * Redistribution and use in source and binary forms, with or without
41 1.2 bouyer * modification, are permitted provided that the following conditions
42 1.2 bouyer * are met:
43 1.2 bouyer * 1. Redistributions of source code must retain the above copyright
44 1.2 bouyer * notice, this list of conditions and the following disclaimer.
45 1.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
46 1.2 bouyer * notice, this list of conditions and the following disclaimer in the
47 1.2 bouyer * documentation and/or other materials provided with the distribution.
48 1.2 bouyer * 3. All advertising materials mentioning features or use of this software
49 1.2 bouyer * must display the following acknowledgement:
50 1.27 mycroft * This product includes software developed by the NetBSD
51 1.27 mycroft * Foundation, Inc. and its contributors.
52 1.27 mycroft * 4. Neither the name of The NetBSD Foundation nor the names of its
53 1.27 mycroft * contributors may be used to endorse or promote products derived
54 1.27 mycroft * from this software without specific prior written permission.
55 1.2 bouyer *
56 1.27 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
57 1.27 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
58 1.27 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
59 1.27 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
60 1.27 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
61 1.27 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
62 1.27 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
63 1.27 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
64 1.27 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
65 1.27 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
66 1.27 mycroft * POSSIBILITY OF SUCH DAMAGE.
67 1.2 bouyer */
68 1.2 bouyer
69 1.12 cgd /*
70 1.12 cgd * CODE UNTESTED IN THE CURRENT REVISION:
71 1.31 bouyer *
72 1.12 cgd */
73 1.12 cgd
74 1.59 hubertf #ifndef WDCDEBUG
75 1.31 bouyer #define WDCDEBUG
76 1.59 hubertf #endif /* WDCDEBUG */
77 1.31 bouyer
78 1.2 bouyer #include <sys/param.h>
79 1.2 bouyer #include <sys/systm.h>
80 1.2 bouyer #include <sys/kernel.h>
81 1.2 bouyer #include <sys/conf.h>
82 1.2 bouyer #include <sys/buf.h>
83 1.31 bouyer #include <sys/device.h>
84 1.2 bouyer #include <sys/malloc.h>
85 1.2 bouyer #include <sys/syslog.h>
86 1.2 bouyer #include <sys/proc.h>
87 1.2 bouyer
88 1.2 bouyer #include <vm/vm.h>
89 1.2 bouyer
90 1.2 bouyer #include <machine/intr.h>
91 1.2 bouyer #include <machine/bus.h>
92 1.2 bouyer
93 1.17 sakamoto #ifndef __BUS_SPACE_HAS_STREAM_METHODS
94 1.31 bouyer #define bus_space_write_multi_stream_2 bus_space_write_multi_2
95 1.31 bouyer #define bus_space_write_multi_stream_4 bus_space_write_multi_4
96 1.31 bouyer #define bus_space_read_multi_stream_2 bus_space_read_multi_2
97 1.31 bouyer #define bus_space_read_multi_stream_4 bus_space_read_multi_4
98 1.17 sakamoto #endif /* __BUS_SPACE_HAS_STREAM_METHODS */
99 1.16 sakamoto
100 1.31 bouyer #include <dev/ata/atavar.h>
101 1.31 bouyer #include <dev/ata/atareg.h>
102 1.12 cgd #include <dev/ic/wdcreg.h>
103 1.12 cgd #include <dev/ic/wdcvar.h>
104 1.31 bouyer
105 1.2 bouyer #include "atapibus.h"
106 1.2 bouyer
107 1.31 bouyer #define WDCDELAY 100 /* 100 microseconds */
108 1.31 bouyer #define WDCNDELAY_RST (WDC_RESET_WAIT * 1000 / WDCDELAY)
109 1.2 bouyer #if 0
110 1.31 bouyer /* If you enable this, it will report any delays more than WDCDELAY * N long. */
111 1.2 bouyer #define WDCNDELAY_DEBUG 50
112 1.2 bouyer #endif
113 1.2 bouyer
114 1.2 bouyer LIST_HEAD(xfer_free_list, wdc_xfer) xfer_free_list;
115 1.2 bouyer
116 1.31 bouyer static void __wdcerror __P((struct channel_softc*, char *));
117 1.31 bouyer static int __wdcwait_reset __P((struct channel_softc *, int));
118 1.31 bouyer void __wdccommand_done __P((struct channel_softc *, struct wdc_xfer *));
119 1.31 bouyer void __wdccommand_start __P((struct channel_softc *, struct wdc_xfer *));
120 1.31 bouyer int __wdccommand_intr __P((struct channel_softc *, struct wdc_xfer *));
121 1.31 bouyer int wdprint __P((void *, const char *));
122 1.31 bouyer
123 1.31 bouyer
124 1.31 bouyer #define DEBUG_INTR 0x01
125 1.31 bouyer #define DEBUG_XFERS 0x02
126 1.31 bouyer #define DEBUG_STATUS 0x04
127 1.31 bouyer #define DEBUG_FUNCS 0x08
128 1.31 bouyer #define DEBUG_PROBE 0x10
129 1.31 bouyer #ifdef WDCDEBUG
130 1.32 bouyer int wdcdebug_mask = 0;
131 1.31 bouyer int wdc_nxfer = 0;
132 1.31 bouyer #define WDCDEBUG_PRINT(args, level) if (wdcdebug_mask & (level)) printf args
133 1.2 bouyer #else
134 1.31 bouyer #define WDCDEBUG_PRINT(args, level)
135 1.2 bouyer #endif
136 1.2 bouyer
137 1.31 bouyer int
138 1.31 bouyer wdprint(aux, pnp)
139 1.31 bouyer void *aux;
140 1.31 bouyer const char *pnp;
141 1.31 bouyer {
142 1.31 bouyer struct ata_atapi_attach *aa_link = aux;
143 1.31 bouyer if (pnp)
144 1.31 bouyer printf("drive at %s", pnp);
145 1.31 bouyer printf(" channel %d drive %d", aa_link->aa_channel,
146 1.31 bouyer aa_link->aa_drv_data->drive);
147 1.31 bouyer return (UNCONF);
148 1.31 bouyer }
149 1.2 bouyer
150 1.31 bouyer int
151 1.31 bouyer atapi_print(aux, pnp)
152 1.31 bouyer void *aux;
153 1.31 bouyer const char *pnp;
154 1.31 bouyer {
155 1.31 bouyer struct ata_atapi_attach *aa_link = aux;
156 1.31 bouyer if (pnp)
157 1.31 bouyer printf("atapibus at %s", pnp);
158 1.31 bouyer printf(" channel %d", aa_link->aa_channel);
159 1.31 bouyer return (UNCONF);
160 1.31 bouyer }
161 1.31 bouyer
162 1.31 bouyer /* Test to see controller with at last one attached drive is there.
163 1.31 bouyer * Returns a bit for each possible drive found (0x01 for drive 0,
164 1.31 bouyer * 0x02 for drive 1).
165 1.31 bouyer * Logic:
166 1.31 bouyer * - If a status register is at 0xff, assume there is no drive here
167 1.31 bouyer * (ISA has pull-up resistors). If no drive at all -> return.
168 1.31 bouyer * - reset the controller, wait for it to complete (may take up to 31s !).
169 1.31 bouyer * If timeout -> return.
170 1.31 bouyer * - test ATA/ATAPI signatures. If at last one drive found -> return.
171 1.31 bouyer * - try an ATA command on the master.
172 1.12 cgd */
173 1.31 bouyer
174 1.2 bouyer int
175 1.31 bouyer wdcprobe(chp)
176 1.31 bouyer struct channel_softc *chp;
177 1.12 cgd {
178 1.31 bouyer u_int8_t st0, st1, sc, sn, cl, ch;
179 1.31 bouyer u_int8_t ret_value = 0x03;
180 1.31 bouyer u_int8_t drive;
181 1.31 bouyer
182 1.31 bouyer /*
183 1.31 bouyer * Sanity check to see if the wdc channel responds at all.
184 1.31 bouyer */
185 1.31 bouyer
186 1.43 kenh if (chp->wdc == NULL ||
187 1.43 kenh (chp->wdc->cap & WDC_CAPABILITY_NO_EXTRA_RESETS) == 0) {
188 1.43 kenh bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
189 1.43 kenh WDSD_IBM);
190 1.43 kenh delay(1);
191 1.43 kenh st0 = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
192 1.43 kenh bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
193 1.43 kenh WDSD_IBM | 0x10);
194 1.43 kenh delay(1);
195 1.43 kenh st1 = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
196 1.43 kenh
197 1.43 kenh WDCDEBUG_PRINT(("%s:%d: before reset, st0=0x%x, st1=0x%x\n",
198 1.43 kenh chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe",
199 1.43 kenh chp->channel, st0, st1), DEBUG_PROBE);
200 1.43 kenh
201 1.43 kenh if (st0 == 0xff)
202 1.43 kenh ret_value &= ~0x01;
203 1.43 kenh if (st1 == 0xff)
204 1.43 kenh ret_value &= ~0x02;
205 1.43 kenh if (ret_value == 0)
206 1.43 kenh return 0;
207 1.43 kenh }
208 1.42 thorpej
209 1.31 bouyer /* assert SRST, wait for reset to complete */
210 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
211 1.31 bouyer WDSD_IBM);
212 1.31 bouyer delay(1);
213 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
214 1.31 bouyer WDCTL_RST | WDCTL_IDS);
215 1.31 bouyer DELAY(1000);
216 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
217 1.31 bouyer WDCTL_IDS);
218 1.31 bouyer delay(1000);
219 1.31 bouyer (void) bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error);
220 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr, WDCTL_4BIT);
221 1.31 bouyer delay(1);
222 1.31 bouyer
223 1.31 bouyer ret_value = __wdcwait_reset(chp, ret_value);
224 1.31 bouyer WDCDEBUG_PRINT(("%s:%d: after reset, ret_value=0x%d\n",
225 1.31 bouyer chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe", chp->channel,
226 1.31 bouyer ret_value), DEBUG_PROBE);
227 1.26 drochner
228 1.31 bouyer /* if reset failed, there's nothing here */
229 1.31 bouyer if (ret_value == 0)
230 1.31 bouyer return 0;
231 1.2 bouyer
232 1.31 bouyer /*
233 1.31 bouyer * Test presence of drives. First test register signatures looking for
234 1.31 bouyer * ATAPI devices , then rescan and try an ATA command, in case it's an
235 1.31 bouyer * old drive.
236 1.31 bouyer * Fill in drive_flags accordingly
237 1.31 bouyer */
238 1.31 bouyer for (drive = 0; drive < 2; drive++) {
239 1.31 bouyer if ((ret_value & (0x01 << drive)) == 0)
240 1.31 bouyer continue;
241 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
242 1.31 bouyer WDSD_IBM | (drive << 4));
243 1.31 bouyer delay(1);
244 1.31 bouyer /* Save registers contents */
245 1.31 bouyer sc = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_seccnt);
246 1.31 bouyer sn = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_sector);
247 1.31 bouyer cl = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_lo);
248 1.31 bouyer ch = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_hi);
249 1.31 bouyer
250 1.31 bouyer WDCDEBUG_PRINT(("%s:%d:%d: after reset, sc=0x%x sn=0x%x "
251 1.31 bouyer "cl=0x%x ch=0x%x\n",
252 1.31 bouyer chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe",
253 1.31 bouyer chp->channel, drive, sc, sn, cl, ch), DEBUG_PROBE);
254 1.57 bouyer /*
255 1.57 bouyer * sc is supposted to be 0x1 for ATAPI but at last one drive
256 1.57 bouyer * set it to 0x0.
257 1.57 bouyer */
258 1.57 bouyer if ((sc == 0x00 || sc == 0x01) && sn == 0x01 &&
259 1.57 bouyer cl == 0x14 && ch == 0xeb) {
260 1.31 bouyer chp->ch_drive[drive].drive_flags |= DRIVE_ATAPI;
261 1.62 bouyer } else if (sc == 0x01 && sn == 0x01 &&
262 1.62 bouyer cl == 0x00 && ch == 0x00) {
263 1.62 bouyer chp->ch_drive[drive].drive_flags |= DRIVE_ATA;
264 1.31 bouyer }
265 1.31 bouyer }
266 1.62 bouyer /*
267 1.62 bouyer * Maybe there's an old device, try to detect it if we didn't
268 1.62 bouyer * find a ATA or ATAPI device.
269 1.62 bouyer */
270 1.62 bouyer if ((chp->ch_drive[0].drive_flags & DRIVE) != 0 ||
271 1.62 bouyer (chp->ch_drive[1].drive_flags & DRIVE) != 0)
272 1.62 bouyer return (ret_value);
273 1.31 bouyer for (drive = 0; drive < 2; drive++) {
274 1.62 bouyer if ((ret_value & (0x01 << drive)) == 0)
275 1.31 bouyer continue;
276 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
277 1.31 bouyer WDSD_IBM | (drive << 4));
278 1.31 bouyer delay(1);
279 1.2 bouyer /*
280 1.31 bouyer * Test registers writability (Error register not writable,
281 1.31 bouyer * but cyllo is), then try an ATA command.
282 1.2 bouyer */
283 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_error, 0x58);
284 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_lo, 0xa5);
285 1.31 bouyer if (bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error) ==
286 1.31 bouyer 0x58 ||
287 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_lo) !=
288 1.31 bouyer 0xa5) {
289 1.31 bouyer WDCDEBUG_PRINT(("%s:%d:%d: register writability "
290 1.31 bouyer "failed\n",
291 1.31 bouyer chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe",
292 1.31 bouyer chp->channel, drive), DEBUG_PROBE);
293 1.31 bouyer ret_value &= ~(0x01 << drive);
294 1.31 bouyer continue;
295 1.31 bouyer }
296 1.31 bouyer if (wait_for_ready(chp, 10000) != 0) {
297 1.31 bouyer WDCDEBUG_PRINT(("%s:%d:%d: not ready\n",
298 1.31 bouyer chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe",
299 1.31 bouyer chp->channel, drive), DEBUG_PROBE);
300 1.31 bouyer ret_value &= ~(0x01 << drive);
301 1.31 bouyer continue;
302 1.31 bouyer }
303 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_command,
304 1.62 bouyer WDCC_RECAL);
305 1.31 bouyer if (wait_for_ready(chp, 10000) == 0) {
306 1.31 bouyer chp->ch_drive[drive].drive_flags |=
307 1.62 bouyer DRIVE_OLD;
308 1.7 bouyer } else {
309 1.62 bouyer WDCDEBUG_PRINT(("%s:%d:%d: WDCC_RECAL failed\n",
310 1.31 bouyer chp->wdc ? chp->wdc->sc_dev.dv_xname : "wdcprobe",
311 1.31 bouyer chp->channel, drive), DEBUG_PROBE);
312 1.31 bouyer ret_value &= ~(0x01 << drive);
313 1.2 bouyer }
314 1.7 bouyer }
315 1.31 bouyer return (ret_value);
316 1.31 bouyer }
317 1.31 bouyer
318 1.31 bouyer void
319 1.31 bouyer wdcattach(chp)
320 1.31 bouyer struct channel_softc *chp;
321 1.31 bouyer {
322 1.44 thorpej int channel_flags, ctrl_flags, i, error;
323 1.31 bouyer struct ata_atapi_attach aa_link;
324 1.62 bouyer struct ataparams params;
325 1.62 bouyer static int inited = 0;
326 1.31 bouyer
327 1.44 thorpej if ((error = wdc_addref(chp)) != 0) {
328 1.44 thorpej printf("%s: unable to enable controller\n",
329 1.44 thorpej chp->wdc->sc_dev.dv_xname);
330 1.44 thorpej return;
331 1.44 thorpej }
332 1.44 thorpej
333 1.44 thorpej if (wdcprobe(chp) == 0) {
334 1.44 thorpej /* If no drives, abort attach here. */
335 1.44 thorpej wdc_delref(chp);
336 1.44 thorpej return;
337 1.44 thorpej }
338 1.31 bouyer
339 1.62 bouyer /* init list only once */
340 1.62 bouyer if (inited == 0) {
341 1.62 bouyer LIST_INIT(&xfer_free_list);
342 1.62 bouyer inited++;
343 1.62 bouyer }
344 1.31 bouyer TAILQ_INIT(&chp->ch_queue->sc_xfer);
345 1.62 bouyer
346 1.62 bouyer for (i = 0; i < 2; i++) {
347 1.62 bouyer chp->ch_drive[i].chnl_softc = chp;
348 1.62 bouyer chp->ch_drive[i].drive = i;
349 1.62 bouyer /* If controller can't do 16bit flag the drives as 32bit */
350 1.62 bouyer if ((chp->wdc->cap &
351 1.62 bouyer (WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32)) ==
352 1.62 bouyer WDC_CAPABILITY_DATA32)
353 1.62 bouyer chp->ch_drive[i].drive_flags |= DRIVE_CAP32;
354 1.62 bouyer
355 1.62 bouyer /* Issue a IDENTIFY command, to try to detect slave ghost */
356 1.62 bouyer if (ata_get_params(&chp->ch_drive[i], AT_POLL, ¶ms) !=
357 1.62 bouyer CMD_OK) {
358 1.62 bouyer chp->ch_drive[i].drive_flags &=
359 1.62 bouyer ~(DRIVE_ATA | DRIVE_ATAPI);
360 1.62 bouyer }
361 1.62 bouyer }
362 1.31 bouyer ctrl_flags = chp->wdc->sc_dev.dv_cfdata->cf_flags;
363 1.31 bouyer channel_flags = (ctrl_flags >> (NBBY * chp->channel)) & 0xff;
364 1.31 bouyer
365 1.31 bouyer WDCDEBUG_PRINT(("wdcattach: ch_drive_flags 0x%x 0x%x\n",
366 1.31 bouyer chp->ch_drive[0].drive_flags, chp->ch_drive[1].drive_flags),
367 1.31 bouyer DEBUG_PROBE);
368 1.12 cgd
369 1.12 cgd /*
370 1.31 bouyer * Attach an ATAPI bus, if needed.
371 1.12 cgd */
372 1.31 bouyer if ((chp->ch_drive[0].drive_flags & DRIVE_ATAPI) ||
373 1.31 bouyer (chp->ch_drive[1].drive_flags & DRIVE_ATAPI)) {
374 1.31 bouyer #if NATAPIBUS > 0
375 1.31 bouyer wdc_atapibus_attach(chp);
376 1.31 bouyer #else
377 1.31 bouyer /*
378 1.31 bouyer * Fills in a fake aa_link and call config_found, so that
379 1.31 bouyer * the config machinery will print
380 1.31 bouyer * "atapibus at xxx not configured"
381 1.31 bouyer */
382 1.31 bouyer memset(&aa_link, 0, sizeof(struct ata_atapi_attach));
383 1.31 bouyer aa_link.aa_type = T_ATAPI;
384 1.31 bouyer aa_link.aa_channel = chp->channel;
385 1.31 bouyer aa_link.aa_openings = 1;
386 1.31 bouyer aa_link.aa_drv_data = 0;
387 1.31 bouyer aa_link.aa_bus_private = NULL;
388 1.31 bouyer (void)config_found(&chp->wdc->sc_dev, (void *)&aa_link,
389 1.31 bouyer atapi_print);
390 1.31 bouyer #endif
391 1.31 bouyer }
392 1.31 bouyer
393 1.31 bouyer for (i = 0; i < 2; i++) {
394 1.31 bouyer if ((chp->ch_drive[i].drive_flags & DRIVE_ATA) == 0) {
395 1.31 bouyer continue;
396 1.31 bouyer }
397 1.31 bouyer memset(&aa_link, 0, sizeof(struct ata_atapi_attach));
398 1.31 bouyer aa_link.aa_type = T_ATA;
399 1.31 bouyer aa_link.aa_channel = chp->channel;
400 1.31 bouyer aa_link.aa_openings = 1;
401 1.31 bouyer aa_link.aa_drv_data = &chp->ch_drive[i];
402 1.31 bouyer if (config_found(&chp->wdc->sc_dev, (void *)&aa_link, wdprint))
403 1.31 bouyer wdc_probe_caps(&chp->ch_drive[i]);
404 1.32 bouyer }
405 1.32 bouyer
406 1.32 bouyer /*
407 1.32 bouyer * reset drive_flags for unnatached devices, reset state for attached
408 1.32 bouyer * ones
409 1.32 bouyer */
410 1.32 bouyer for (i = 0; i < 2; i++) {
411 1.32 bouyer if (chp->ch_drive[i].drv_softc == NULL)
412 1.32 bouyer chp->ch_drive[i].drive_flags = 0;
413 1.32 bouyer else
414 1.32 bouyer chp->ch_drive[i].state = 0;
415 1.2 bouyer }
416 1.12 cgd
417 1.12 cgd /*
418 1.31 bouyer * Reset channel. The probe, with some combinations of ATA/ATAPI
419 1.31 bouyer * devices keep it in a mostly working, but strange state (with busy
420 1.31 bouyer * led on)
421 1.12 cgd */
422 1.31 bouyer if ((chp->wdc->cap & WDC_CAPABILITY_NO_EXTRA_RESETS) == 0) {
423 1.31 bouyer wdcreset(chp, VERBOSE);
424 1.31 bouyer /*
425 1.31 bouyer * Read status registers to avoid spurious interrupts.
426 1.31 bouyer */
427 1.31 bouyer for (i = 1; i >= 0; i--) {
428 1.31 bouyer if (chp->ch_drive[i].drive_flags & DRIVE) {
429 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh,
430 1.31 bouyer wd_sdh, WDSD_IBM | (i << 4));
431 1.31 bouyer if (wait_for_unbusy(chp, 10000) < 0)
432 1.31 bouyer printf("%s:%d:%d: device busy\n",
433 1.31 bouyer chp->wdc->sc_dev.dv_xname,
434 1.31 bouyer chp->channel, i);
435 1.31 bouyer }
436 1.31 bouyer }
437 1.31 bouyer }
438 1.44 thorpej wdc_delref(chp);
439 1.31 bouyer }
440 1.31 bouyer
441 1.31 bouyer /*
442 1.31 bouyer * Start I/O on a controller, for the given channel.
443 1.31 bouyer * The first xfer may be not for our channel if the channel queues
444 1.31 bouyer * are shared.
445 1.31 bouyer */
446 1.31 bouyer void
447 1.45 drochner wdcstart(chp)
448 1.45 drochner struct channel_softc *chp;
449 1.31 bouyer {
450 1.31 bouyer struct wdc_xfer *xfer;
451 1.38 bouyer
452 1.38 bouyer #ifdef WDC_DIAGNOSTIC
453 1.38 bouyer int spl1, spl2;
454 1.38 bouyer
455 1.38 bouyer spl1 = splbio();
456 1.38 bouyer spl2 = splbio();
457 1.38 bouyer if (spl2 != spl1) {
458 1.38 bouyer printf("wdcstart: not at splbio()\n");
459 1.38 bouyer panic("wdcstart");
460 1.38 bouyer }
461 1.38 bouyer splx(spl2);
462 1.38 bouyer splx(spl1);
463 1.38 bouyer #endif /* WDC_DIAGNOSTIC */
464 1.12 cgd
465 1.31 bouyer /* is there a xfer ? */
466 1.45 drochner if ((xfer = chp->ch_queue->sc_xfer.tqh_first) == NULL)
467 1.31 bouyer return;
468 1.47 bouyer
469 1.47 bouyer /* adjust chp, in case we have a shared queue */
470 1.49 bouyer chp = xfer->chp;
471 1.47 bouyer
472 1.31 bouyer if ((chp->ch_flags & WDCF_ACTIVE) != 0 ) {
473 1.31 bouyer return; /* channel aleady active */
474 1.31 bouyer }
475 1.31 bouyer #ifdef DIAGNOSTIC
476 1.31 bouyer if ((chp->ch_flags & WDCF_IRQ_WAIT) != 0)
477 1.31 bouyer panic("wdcstart: channel waiting for irq\n");
478 1.31 bouyer #endif
479 1.45 drochner if (chp->wdc->cap & WDC_CAPABILITY_HWLOCK)
480 1.45 drochner if (!(*chp->wdc->claim_hw)(chp, 0))
481 1.31 bouyer return;
482 1.12 cgd
483 1.31 bouyer WDCDEBUG_PRINT(("wdcstart: xfer %p channel %d drive %d\n", xfer,
484 1.49 bouyer chp->channel, xfer->drive), DEBUG_XFERS);
485 1.31 bouyer chp->ch_flags |= WDCF_ACTIVE;
486 1.37 bouyer if (chp->ch_drive[xfer->drive].drive_flags & DRIVE_RESET) {
487 1.37 bouyer chp->ch_drive[xfer->drive].drive_flags &= ~DRIVE_RESET;
488 1.37 bouyer chp->ch_drive[xfer->drive].state = 0;
489 1.37 bouyer }
490 1.31 bouyer xfer->c_start(chp, xfer);
491 1.31 bouyer }
492 1.2 bouyer
493 1.31 bouyer /* restart an interrupted I/O */
494 1.31 bouyer void
495 1.31 bouyer wdcrestart(v)
496 1.31 bouyer void *v;
497 1.31 bouyer {
498 1.31 bouyer struct channel_softc *chp = v;
499 1.31 bouyer int s;
500 1.2 bouyer
501 1.31 bouyer s = splbio();
502 1.45 drochner wdcstart(chp);
503 1.31 bouyer splx(s);
504 1.2 bouyer }
505 1.31 bouyer
506 1.2 bouyer
507 1.31 bouyer /*
508 1.31 bouyer * Interrupt routine for the controller. Acknowledge the interrupt, check for
509 1.31 bouyer * errors on the current operation, mark it done if necessary, and start the
510 1.31 bouyer * next request. Also check for a partially done transfer, and continue with
511 1.31 bouyer * the next chunk if so.
512 1.31 bouyer */
513 1.12 cgd int
514 1.31 bouyer wdcintr(arg)
515 1.31 bouyer void *arg;
516 1.12 cgd {
517 1.31 bouyer struct channel_softc *chp = arg;
518 1.31 bouyer struct wdc_xfer *xfer;
519 1.12 cgd
520 1.31 bouyer if ((chp->ch_flags & WDCF_IRQ_WAIT) == 0) {
521 1.31 bouyer #if 0
522 1.31 bouyer /* Clear the pending interrupt and abort. */
523 1.31 bouyer u_int8_t s =
524 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
525 1.31 bouyer #ifdef WDCDEBUG
526 1.31 bouyer u_int8_t e =
527 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error);
528 1.31 bouyer u_int8_t i =
529 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_seccnt);
530 1.31 bouyer #else
531 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error);
532 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_seccnt);
533 1.31 bouyer #endif
534 1.12 cgd
535 1.31 bouyer WDCDEBUG_PRINT(("wdcintr: inactive controller, "
536 1.31 bouyer "punting st=%02x er=%02x irr=%02x\n", s, e, i), DEBUG_INTR);
537 1.31 bouyer
538 1.31 bouyer if (s & WDCS_DRQ) {
539 1.31 bouyer int len;
540 1.31 bouyer len = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
541 1.31 bouyer wd_cyl_lo) + 256 * bus_space_read_1(chp->cmd_iot,
542 1.31 bouyer chp->cmd_ioh, wd_cyl_hi);
543 1.31 bouyer WDCDEBUG_PRINT(("wdcintr: clearing up %d bytes\n",
544 1.31 bouyer len), DEBUG_INTR);
545 1.31 bouyer wdcbit_bucket (chp, len);
546 1.31 bouyer }
547 1.31 bouyer #else
548 1.31 bouyer WDCDEBUG_PRINT(("wdcintr: inactive controller\n"), DEBUG_INTR);
549 1.31 bouyer #endif
550 1.31 bouyer return 0;
551 1.31 bouyer }
552 1.12 cgd
553 1.31 bouyer WDCDEBUG_PRINT(("wdcintr\n"), DEBUG_INTR);
554 1.31 bouyer untimeout(wdctimeout, chp);
555 1.31 bouyer chp->ch_flags &= ~WDCF_IRQ_WAIT;
556 1.31 bouyer xfer = chp->ch_queue->sc_xfer.tqh_first;
557 1.31 bouyer return xfer->c_intr(chp, xfer);
558 1.12 cgd }
559 1.12 cgd
560 1.31 bouyer /* Put all disk in RESET state */
561 1.31 bouyer void wdc_reset_channel(drvp)
562 1.31 bouyer struct ata_drive_datas *drvp;
563 1.2 bouyer {
564 1.31 bouyer struct channel_softc *chp = drvp->chnl_softc;
565 1.2 bouyer int drive;
566 1.34 bouyer WDCDEBUG_PRINT(("ata_reset_channel %s:%d for drive %d\n",
567 1.34 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, drvp->drive),
568 1.34 bouyer DEBUG_FUNCS);
569 1.31 bouyer (void) wdcreset(chp, VERBOSE);
570 1.31 bouyer for (drive = 0; drive < 2; drive++) {
571 1.31 bouyer chp->ch_drive[drive].state = 0;
572 1.12 cgd }
573 1.31 bouyer }
574 1.12 cgd
575 1.31 bouyer int
576 1.31 bouyer wdcreset(chp, verb)
577 1.31 bouyer struct channel_softc *chp;
578 1.31 bouyer int verb;
579 1.31 bouyer {
580 1.31 bouyer int drv_mask1, drv_mask2;
581 1.2 bouyer
582 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
583 1.31 bouyer WDSD_IBM); /* master */
584 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
585 1.31 bouyer WDCTL_RST | WDCTL_IDS);
586 1.31 bouyer delay(1000);
587 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
588 1.31 bouyer WDCTL_IDS);
589 1.31 bouyer delay(1000);
590 1.31 bouyer (void) bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_error);
591 1.31 bouyer bus_space_write_1(chp->ctl_iot, chp->ctl_ioh, wd_aux_ctlr,
592 1.31 bouyer WDCTL_4BIT);
593 1.2 bouyer
594 1.31 bouyer drv_mask1 = (chp->ch_drive[0].drive_flags & DRIVE) ? 0x01:0x00;
595 1.31 bouyer drv_mask1 |= (chp->ch_drive[1].drive_flags & DRIVE) ? 0x02:0x00;
596 1.31 bouyer drv_mask2 = __wdcwait_reset(chp, drv_mask1);
597 1.31 bouyer if (verb && drv_mask2 != drv_mask1) {
598 1.31 bouyer printf("%s channel %d: reset failed for",
599 1.31 bouyer chp->wdc->sc_dev.dv_xname, chp->channel);
600 1.31 bouyer if ((drv_mask1 & 0x01) != 0 && (drv_mask2 & 0x01) == 0)
601 1.31 bouyer printf(" drive 0");
602 1.31 bouyer if ((drv_mask1 & 0x02) != 0 && (drv_mask2 & 0x02) == 0)
603 1.31 bouyer printf(" drive 1");
604 1.31 bouyer printf("\n");
605 1.31 bouyer }
606 1.31 bouyer return (drv_mask1 != drv_mask2) ? 1 : 0;
607 1.31 bouyer }
608 1.31 bouyer
609 1.31 bouyer static int
610 1.31 bouyer __wdcwait_reset(chp, drv_mask)
611 1.31 bouyer struct channel_softc *chp;
612 1.31 bouyer int drv_mask;
613 1.31 bouyer {
614 1.31 bouyer int timeout;
615 1.31 bouyer u_int8_t st0, st1;
616 1.31 bouyer /* wait for BSY to deassert */
617 1.31 bouyer for (timeout = 0; timeout < WDCNDELAY_RST;timeout++) {
618 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
619 1.31 bouyer WDSD_IBM); /* master */
620 1.31 bouyer delay(1);
621 1.31 bouyer st0 = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
622 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
623 1.31 bouyer WDSD_IBM | 0x10); /* slave */
624 1.31 bouyer delay(1);
625 1.31 bouyer st1 = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
626 1.31 bouyer
627 1.31 bouyer if ((drv_mask & 0x01) == 0) {
628 1.31 bouyer /* no master */
629 1.31 bouyer if ((drv_mask & 0x02) != 0 && (st1 & WDCS_BSY) == 0) {
630 1.31 bouyer /* No master, slave is ready, it's done */
631 1.31 bouyer return drv_mask;
632 1.31 bouyer }
633 1.31 bouyer } else if ((drv_mask & 0x02) == 0) {
634 1.31 bouyer /* no slave */
635 1.31 bouyer if ((drv_mask & 0x01) != 0 && (st0 & WDCS_BSY) == 0) {
636 1.31 bouyer /* No slave, master is ready, it's done */
637 1.31 bouyer return drv_mask;
638 1.31 bouyer }
639 1.2 bouyer } else {
640 1.31 bouyer /* Wait for both master and slave to be ready */
641 1.31 bouyer if ((st0 & WDCS_BSY) == 0 && (st1 & WDCS_BSY) == 0) {
642 1.31 bouyer return drv_mask;
643 1.2 bouyer }
644 1.2 bouyer }
645 1.31 bouyer delay(WDCDELAY);
646 1.2 bouyer }
647 1.31 bouyer /* Reset timed out. Maybe it's because drv_mask was not rigth */
648 1.31 bouyer if (st0 & WDCS_BSY)
649 1.31 bouyer drv_mask &= ~0x01;
650 1.31 bouyer if (st1 & WDCS_BSY)
651 1.31 bouyer drv_mask &= ~0x02;
652 1.31 bouyer return drv_mask;
653 1.2 bouyer }
654 1.2 bouyer
655 1.2 bouyer /*
656 1.31 bouyer * Wait for a drive to be !BSY, and have mask in its status register.
657 1.31 bouyer * return -1 for a timeout after "timeout" ms.
658 1.2 bouyer */
659 1.31 bouyer int
660 1.31 bouyer wdcwait(chp, mask, bits, timeout)
661 1.31 bouyer struct channel_softc *chp;
662 1.31 bouyer int mask, bits, timeout;
663 1.2 bouyer {
664 1.31 bouyer u_char status;
665 1.31 bouyer int time = 0;
666 1.31 bouyer #ifdef WDCNDELAY_DEBUG
667 1.31 bouyer extern int cold;
668 1.31 bouyer #endif
669 1.60 abs
670 1.60 abs WDCDEBUG_PRINT(("wdcwait %s:%d\n", chp->wdc ?chp->wdc->sc_dev.dv_xname
671 1.60 abs :"none", chp->channel), DEBUG_STATUS);
672 1.31 bouyer chp->ch_error = 0;
673 1.31 bouyer
674 1.31 bouyer timeout = timeout * 1000 / WDCDELAY; /* delay uses microseconds */
675 1.2 bouyer
676 1.31 bouyer for (;;) {
677 1.31 bouyer chp->ch_status = status =
678 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_status);
679 1.31 bouyer if ((status & WDCS_BSY) == 0 && (status & mask) == bits)
680 1.31 bouyer break;
681 1.31 bouyer if (++time > timeout) {
682 1.31 bouyer WDCDEBUG_PRINT(("wdcwait: timeout, status %x "
683 1.31 bouyer "error %x\n", status,
684 1.31 bouyer bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
685 1.31 bouyer wd_error)),
686 1.31 bouyer DEBUG_STATUS);
687 1.31 bouyer return -1;
688 1.31 bouyer }
689 1.31 bouyer delay(WDCDELAY);
690 1.2 bouyer }
691 1.31 bouyer if (status & WDCS_ERR)
692 1.31 bouyer chp->ch_error = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
693 1.31 bouyer wd_error);
694 1.31 bouyer #ifdef WDCNDELAY_DEBUG
695 1.31 bouyer /* After autoconfig, there should be no long delays. */
696 1.31 bouyer if (!cold && time > WDCNDELAY_DEBUG) {
697 1.31 bouyer struct wdc_xfer *xfer = chp->ch_queue->sc_xfer.tqh_first;
698 1.31 bouyer if (xfer == NULL)
699 1.31 bouyer printf("%s channel %d: warning: busy-wait took %dus\n",
700 1.31 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
701 1.31 bouyer WDCDELAY * time);
702 1.31 bouyer else
703 1.31 bouyer printf("%s:%d:%d: warning: busy-wait took %dus\n",
704 1.49 bouyer chp->wdc->sc_dev.dv_xname, chp->channel,
705 1.31 bouyer xfer->drive,
706 1.31 bouyer WDCDELAY * time);
707 1.2 bouyer }
708 1.2 bouyer #endif
709 1.31 bouyer return 0;
710 1.2 bouyer }
711 1.2 bouyer
712 1.31 bouyer void
713 1.31 bouyer wdctimeout(arg)
714 1.31 bouyer void *arg;
715 1.2 bouyer {
716 1.31 bouyer struct channel_softc *chp = (struct channel_softc *)arg;
717 1.31 bouyer struct wdc_xfer *xfer = chp->ch_queue->sc_xfer.tqh_first;
718 1.31 bouyer int s;
719 1.2 bouyer
720 1.31 bouyer WDCDEBUG_PRINT(("wdctimeout\n"), DEBUG_FUNCS);
721 1.31 bouyer
722 1.31 bouyer s = splbio();
723 1.31 bouyer if ((chp->ch_flags & WDCF_IRQ_WAIT) != 0) {
724 1.31 bouyer __wdcerror(chp, "lost interrupt");
725 1.31 bouyer printf("\ttype: %s\n", (xfer->c_flags & C_ATAPI) ?
726 1.31 bouyer "atapi":"ata");
727 1.31 bouyer printf("\tc_bcount: %d\n", xfer->c_bcount);
728 1.31 bouyer printf("\tc_skip: %d\n", xfer->c_skip);
729 1.31 bouyer /*
730 1.31 bouyer * Call the interrupt routine. If we just missed and interrupt,
731 1.31 bouyer * it will do what's needed. Else, it will take the needed
732 1.31 bouyer * action (reset the device).
733 1.31 bouyer */
734 1.31 bouyer xfer->c_flags |= C_TIMEOU;
735 1.31 bouyer chp->ch_flags &= ~WDCF_IRQ_WAIT;
736 1.31 bouyer xfer->c_intr(chp, xfer);
737 1.31 bouyer } else
738 1.31 bouyer __wdcerror(chp, "missing untimeout");
739 1.31 bouyer splx(s);
740 1.2 bouyer }
741 1.2 bouyer
742 1.31 bouyer /*
743 1.31 bouyer * Probe drive's capabilites, for use by the controller later
744 1.31 bouyer * Assumes drvp points to an existing drive.
745 1.31 bouyer * XXX this should be a controller-indep function
746 1.31 bouyer */
747 1.2 bouyer void
748 1.31 bouyer wdc_probe_caps(drvp)
749 1.31 bouyer struct ata_drive_datas *drvp;
750 1.2 bouyer {
751 1.31 bouyer struct ataparams params, params2;
752 1.31 bouyer struct channel_softc *chp = drvp->chnl_softc;
753 1.31 bouyer struct device *drv_dev = drvp->drv_softc;
754 1.31 bouyer struct wdc_softc *wdc = chp->wdc;
755 1.31 bouyer int i, printed;
756 1.31 bouyer char *sep = "";
757 1.48 bouyer int cf_flags;
758 1.31 bouyer
759 1.31 bouyer if (ata_get_params(drvp, AT_POLL, ¶ms) != CMD_OK) {
760 1.31 bouyer /* IDENTIFY failed. Can't tell more about the device */
761 1.2 bouyer return;
762 1.2 bouyer }
763 1.31 bouyer if ((wdc->cap & (WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32)) ==
764 1.31 bouyer (WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32)) {
765 1.2 bouyer /*
766 1.39 bouyer * Controller claims 16 and 32 bit transfers.
767 1.39 bouyer * Re-do an IDENTIFY with 32-bit transfers,
768 1.31 bouyer * and compare results.
769 1.2 bouyer */
770 1.31 bouyer drvp->drive_flags |= DRIVE_CAP32;
771 1.31 bouyer ata_get_params(drvp, AT_POLL, ¶ms2);
772 1.31 bouyer if (memcmp(¶ms, ¶ms2, sizeof(struct ataparams)) != 0) {
773 1.31 bouyer /* Not good. fall back to 16bits */
774 1.31 bouyer drvp->drive_flags &= ~DRIVE_CAP32;
775 1.31 bouyer } else {
776 1.55 bouyer printf("%s: 32-bits data port", drv_dev->dv_xname);
777 1.2 bouyer }
778 1.2 bouyer }
779 1.55 bouyer #if 0 /* Some ultra-DMA drives claims to only support ATA-3. sigh */
780 1.55 bouyer if (params.atap_ata_major > 0x01 &&
781 1.55 bouyer params.atap_ata_major != 0xffff) {
782 1.55 bouyer for (i = 14; i > 0; i--) {
783 1.55 bouyer if (params.atap_ata_major & (1 << i)) {
784 1.55 bouyer if ((drvp->drive_flags & DRIVE_CAP32) == 0)
785 1.55 bouyer printf("%s: ", drv_dev->dv_xname);
786 1.55 bouyer else
787 1.55 bouyer printf(", ");
788 1.55 bouyer printf("ATA version %d\n", i);
789 1.55 bouyer drvp->ata_vers = i;
790 1.55 bouyer break;
791 1.55 bouyer }
792 1.55 bouyer }
793 1.58 bouyer } else
794 1.55 bouyer #endif
795 1.58 bouyer if (drvp->drive_flags & DRIVE_CAP32)
796 1.55 bouyer printf("\n");
797 1.2 bouyer
798 1.31 bouyer /* An ATAPI device is at last PIO mode 3 */
799 1.31 bouyer if (drvp->drive_flags & DRIVE_ATAPI)
800 1.31 bouyer drvp->PIO_mode = 3;
801 1.2 bouyer
802 1.2 bouyer /*
803 1.31 bouyer * It's not in the specs, but it seems that some drive
804 1.31 bouyer * returns 0xffff in atap_extensions when this field is invalid
805 1.2 bouyer */
806 1.31 bouyer if (params.atap_extensions != 0xffff &&
807 1.31 bouyer (params.atap_extensions & WDC_EXT_MODES)) {
808 1.31 bouyer printed = 0;
809 1.31 bouyer /*
810 1.31 bouyer * XXX some drives report something wrong here (they claim to
811 1.31 bouyer * support PIO mode 8 !). As mode is coded on 3 bits in
812 1.31 bouyer * SET FEATURE, limit it to 7 (so limit i to 4).
813 1.39 bouyer * If higther mode than 7 is found, abort.
814 1.31 bouyer */
815 1.39 bouyer for (i = 7; i >= 0; i--) {
816 1.31 bouyer if ((params.atap_piomode_supp & (1 << i)) == 0)
817 1.31 bouyer continue;
818 1.39 bouyer if (i > 4)
819 1.39 bouyer return;
820 1.31 bouyer /*
821 1.31 bouyer * See if mode is accepted.
822 1.31 bouyer * If the controller can't set its PIO mode,
823 1.31 bouyer * assume the defaults are good, so don't try
824 1.31 bouyer * to set it
825 1.31 bouyer */
826 1.31 bouyer if ((wdc->cap & WDC_CAPABILITY_MODE) != 0)
827 1.31 bouyer if (ata_set_mode(drvp, 0x08 | (i + 3),
828 1.31 bouyer AT_POLL) != CMD_OK)
829 1.2 bouyer continue;
830 1.31 bouyer if (!printed) {
831 1.39 bouyer printf("%s: drive supports PIO mode %d",
832 1.39 bouyer drv_dev->dv_xname, i + 3);
833 1.31 bouyer sep = ",";
834 1.31 bouyer printed = 1;
835 1.31 bouyer }
836 1.31 bouyer /*
837 1.31 bouyer * If controller's driver can't set its PIO mode,
838 1.31 bouyer * get the highter one for the drive.
839 1.31 bouyer */
840 1.31 bouyer if ((wdc->cap & WDC_CAPABILITY_MODE) == 0 ||
841 1.52 bouyer wdc->PIO_cap >= i + 3) {
842 1.31 bouyer drvp->PIO_mode = i + 3;
843 1.48 bouyer drvp->PIO_cap = i + 3;
844 1.2 bouyer break;
845 1.2 bouyer }
846 1.2 bouyer }
847 1.31 bouyer if (!printed) {
848 1.31 bouyer /*
849 1.31 bouyer * We didn't find a valid PIO mode.
850 1.31 bouyer * Assume the values returned for DMA are buggy too
851 1.31 bouyer */
852 1.31 bouyer return;
853 1.2 bouyer }
854 1.35 bouyer drvp->drive_flags |= DRIVE_MODE;
855 1.31 bouyer printed = 0;
856 1.31 bouyer for (i = 7; i >= 0; i--) {
857 1.31 bouyer if ((params.atap_dmamode_supp & (1 << i)) == 0)
858 1.31 bouyer continue;
859 1.31 bouyer if ((wdc->cap & WDC_CAPABILITY_DMA) &&
860 1.31 bouyer (wdc->cap & WDC_CAPABILITY_MODE))
861 1.31 bouyer if (ata_set_mode(drvp, 0x20 | i, AT_POLL)
862 1.31 bouyer != CMD_OK)
863 1.31 bouyer continue;
864 1.31 bouyer if (!printed) {
865 1.31 bouyer printf("%s DMA mode %d", sep, i);
866 1.31 bouyer sep = ",";
867 1.31 bouyer printed = 1;
868 1.31 bouyer }
869 1.31 bouyer if (wdc->cap & WDC_CAPABILITY_DMA) {
870 1.31 bouyer if ((wdc->cap & WDC_CAPABILITY_MODE) &&
871 1.52 bouyer wdc->DMA_cap < i)
872 1.31 bouyer continue;
873 1.31 bouyer drvp->DMA_mode = i;
874 1.48 bouyer drvp->DMA_cap = i;
875 1.31 bouyer drvp->drive_flags |= DRIVE_DMA;
876 1.31 bouyer }
877 1.2 bouyer break;
878 1.2 bouyer }
879 1.31 bouyer if (params.atap_extensions & WDC_EXT_UDMA_MODES) {
880 1.31 bouyer for (i = 7; i >= 0; i--) {
881 1.31 bouyer if ((params.atap_udmamode_supp & (1 << i))
882 1.31 bouyer == 0)
883 1.31 bouyer continue;
884 1.31 bouyer if ((wdc->cap & WDC_CAPABILITY_MODE) &&
885 1.31 bouyer (wdc->cap & WDC_CAPABILITY_UDMA))
886 1.31 bouyer if (ata_set_mode(drvp, 0x40 | i,
887 1.31 bouyer AT_POLL) != CMD_OK)
888 1.31 bouyer continue;
889 1.51 bouyer printf("%s Ultra-DMA mode %d", sep, i);
890 1.31 bouyer sep = ",";
891 1.31 bouyer if (wdc->cap & WDC_CAPABILITY_UDMA) {
892 1.50 bouyer if ((wdc->cap & WDC_CAPABILITY_MODE) &&
893 1.52 bouyer wdc->UDMA_cap < i)
894 1.50 bouyer continue;
895 1.31 bouyer drvp->UDMA_mode = i;
896 1.48 bouyer drvp->UDMA_cap = i;
897 1.31 bouyer drvp->drive_flags |= DRIVE_UDMA;
898 1.31 bouyer }
899 1.31 bouyer break;
900 1.31 bouyer }
901 1.31 bouyer }
902 1.31 bouyer printf("\n");
903 1.55 bouyer }
904 1.55 bouyer
905 1.55 bouyer /* Try to guess ATA version here, if it didn't get reported */
906 1.55 bouyer if (drvp->ata_vers == 0) {
907 1.55 bouyer if (drvp->drive_flags & DRIVE_UDMA)
908 1.55 bouyer drvp->ata_vers = 4; /* should be at last ATA-4 */
909 1.55 bouyer else if (drvp->PIO_cap > 2)
910 1.55 bouyer drvp->ata_vers = 2; /* should be at last ATA-2 */
911 1.48 bouyer }
912 1.48 bouyer cf_flags = drv_dev->dv_cfdata->cf_flags;
913 1.48 bouyer if (cf_flags & ATA_CONFIG_PIO_SET) {
914 1.48 bouyer drvp->PIO_mode =
915 1.48 bouyer (cf_flags & ATA_CONFIG_PIO_MODES) >> ATA_CONFIG_PIO_OFF;
916 1.48 bouyer drvp->drive_flags |= DRIVE_MODE;
917 1.48 bouyer }
918 1.48 bouyer if ((wdc->cap & WDC_CAPABILITY_DMA) == 0) {
919 1.48 bouyer /* don't care about DMA modes */
920 1.48 bouyer return;
921 1.48 bouyer }
922 1.48 bouyer if (cf_flags & ATA_CONFIG_DMA_SET) {
923 1.48 bouyer if ((cf_flags & ATA_CONFIG_DMA_MODES) ==
924 1.48 bouyer ATA_CONFIG_DMA_DISABLE) {
925 1.48 bouyer drvp->drive_flags &= ~DRIVE_DMA;
926 1.48 bouyer } else {
927 1.48 bouyer drvp->DMA_mode = (cf_flags & ATA_CONFIG_DMA_MODES) >>
928 1.48 bouyer ATA_CONFIG_DMA_OFF;
929 1.48 bouyer drvp->drive_flags |= DRIVE_DMA | DRIVE_MODE;
930 1.48 bouyer }
931 1.48 bouyer }
932 1.48 bouyer if (cf_flags & ATA_CONFIG_UDMA_SET) {
933 1.48 bouyer if ((cf_flags & ATA_CONFIG_UDMA_MODES) ==
934 1.48 bouyer ATA_CONFIG_UDMA_DISABLE) {
935 1.48 bouyer drvp->drive_flags &= ~DRIVE_UDMA;
936 1.48 bouyer } else {
937 1.48 bouyer drvp->UDMA_mode = (cf_flags & ATA_CONFIG_UDMA_MODES) >>
938 1.48 bouyer ATA_CONFIG_UDMA_OFF;
939 1.48 bouyer drvp->drive_flags |= DRIVE_UDMA | DRIVE_MODE;
940 1.48 bouyer }
941 1.2 bouyer }
942 1.54 bouyer }
943 1.54 bouyer
944 1.54 bouyer /*
945 1.56 bouyer * downgrade the transfer mode of a drive after an error. return 1 if
946 1.54 bouyer * downgrade was possible, 0 otherwise.
947 1.54 bouyer */
948 1.54 bouyer int
949 1.54 bouyer wdc_downgrade_mode(drvp)
950 1.54 bouyer struct ata_drive_datas *drvp;
951 1.54 bouyer {
952 1.54 bouyer struct channel_softc *chp = drvp->chnl_softc;
953 1.54 bouyer struct device *drv_dev = drvp->drv_softc;
954 1.54 bouyer struct wdc_softc *wdc = chp->wdc;
955 1.54 bouyer int cf_flags = drv_dev->dv_cfdata->cf_flags;
956 1.54 bouyer
957 1.54 bouyer /* if drive or controller don't know its mode, we can't do much */
958 1.54 bouyer if ((drvp->drive_flags & DRIVE_MODE) == 0 ||
959 1.54 bouyer (wdc->cap & WDC_CAPABILITY_MODE) == 0)
960 1.54 bouyer return 0;
961 1.54 bouyer /* current drive mode was set by a config flag, let it this way */
962 1.54 bouyer if ((cf_flags & ATA_CONFIG_PIO_SET) ||
963 1.54 bouyer (cf_flags & ATA_CONFIG_DMA_SET) ||
964 1.54 bouyer (cf_flags & ATA_CONFIG_UDMA_SET))
965 1.54 bouyer return 0;
966 1.54 bouyer
967 1.61 bouyer /*
968 1.61 bouyer * If we were using ultra-DMA, don't downgrade to multiword DMA
969 1.61 bouyer * if we noticed a CRC error. It has been noticed that CRC errors
970 1.61 bouyer * in ultra-DMA lead to silent data corruption in multiword DMA.
971 1.61 bouyer * Data corruption is less likely to occur in PIO mode.
972 1.61 bouyer */
973 1.61 bouyer
974 1.61 bouyer if ((drvp->drive_flags & DRIVE_UDMA) &&
975 1.61 bouyer (drvp->drive_flags & DRIVE_DMAERR) == 0) {
976 1.54 bouyer drvp->drive_flags &= ~DRIVE_UDMA;
977 1.54 bouyer drvp->drive_flags |= DRIVE_DMA;
978 1.54 bouyer drvp->DMA_mode = drvp->DMA_cap;
979 1.56 bouyer printf("%s: transfer error, downgrading to DMA mode %d\n",
980 1.54 bouyer drv_dev->dv_xname, drvp->DMA_mode);
981 1.61 bouyer } else if (drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) {
982 1.61 bouyer drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
983 1.54 bouyer drvp->PIO_mode = drvp->PIO_cap;
984 1.56 bouyer printf("%s: transfer error, downgrading to PIO mode %d\n",
985 1.54 bouyer drv_dev->dv_xname, drvp->PIO_mode);
986 1.54 bouyer } else /* already using PIO, can't downgrade */
987 1.54 bouyer return 0;
988 1.54 bouyer
989 1.54 bouyer wdc->set_modes(chp);
990 1.54 bouyer /* reset the channel, which will shedule all drives for setup */
991 1.54 bouyer wdc_reset_channel(drvp);
992 1.54 bouyer return 1;
993 1.2 bouyer }
994 1.2 bouyer
995 1.2 bouyer int
996 1.31 bouyer wdc_exec_command(drvp, wdc_c)
997 1.31 bouyer struct ata_drive_datas *drvp;
998 1.31 bouyer struct wdc_command *wdc_c;
999 1.31 bouyer {
1000 1.31 bouyer struct channel_softc *chp = drvp->chnl_softc;
1001 1.2 bouyer struct wdc_xfer *xfer;
1002 1.31 bouyer int s, ret;
1003 1.2 bouyer
1004 1.34 bouyer WDCDEBUG_PRINT(("wdc_exec_command %s:%d:%d\n",
1005 1.34 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, drvp->drive),
1006 1.34 bouyer DEBUG_FUNCS);
1007 1.2 bouyer
1008 1.31 bouyer /* set up an xfer and queue. Wait for completion */
1009 1.31 bouyer xfer = wdc_get_xfer(wdc_c->flags & AT_WAIT ? WDC_CANSLEEP :
1010 1.31 bouyer WDC_NOSLEEP);
1011 1.31 bouyer if (xfer == NULL) {
1012 1.31 bouyer return WDC_TRY_AGAIN;
1013 1.31 bouyer }
1014 1.2 bouyer
1015 1.31 bouyer if (wdc_c->flags & AT_POLL)
1016 1.31 bouyer xfer->c_flags |= C_POLL;
1017 1.31 bouyer xfer->drive = drvp->drive;
1018 1.31 bouyer xfer->databuf = wdc_c->data;
1019 1.31 bouyer xfer->c_bcount = wdc_c->bcount;
1020 1.31 bouyer xfer->cmd = wdc_c;
1021 1.31 bouyer xfer->c_start = __wdccommand_start;
1022 1.31 bouyer xfer->c_intr = __wdccommand_intr;
1023 1.2 bouyer
1024 1.31 bouyer s = splbio();
1025 1.31 bouyer wdc_exec_xfer(chp, xfer);
1026 1.31 bouyer #ifdef DIAGNOSTIC
1027 1.31 bouyer if ((wdc_c->flags & AT_POLL) != 0 &&
1028 1.31 bouyer (wdc_c->flags & AT_DONE) == 0)
1029 1.31 bouyer panic("wdc_exec_command: polled command not done\n");
1030 1.2 bouyer #endif
1031 1.31 bouyer if (wdc_c->flags & AT_DONE) {
1032 1.31 bouyer ret = WDC_COMPLETE;
1033 1.31 bouyer } else {
1034 1.31 bouyer if (wdc_c->flags & AT_WAIT) {
1035 1.31 bouyer tsleep(wdc_c, PRIBIO, "wdccmd", 0);
1036 1.31 bouyer ret = WDC_COMPLETE;
1037 1.31 bouyer } else {
1038 1.31 bouyer ret = WDC_QUEUED;
1039 1.2 bouyer }
1040 1.2 bouyer }
1041 1.31 bouyer splx(s);
1042 1.31 bouyer return ret;
1043 1.2 bouyer }
1044 1.2 bouyer
1045 1.2 bouyer void
1046 1.31 bouyer __wdccommand_start(chp, xfer)
1047 1.31 bouyer struct channel_softc *chp;
1048 1.2 bouyer struct wdc_xfer *xfer;
1049 1.31 bouyer {
1050 1.31 bouyer int drive = xfer->drive;
1051 1.31 bouyer struct wdc_command *wdc_c = xfer->cmd;
1052 1.31 bouyer
1053 1.34 bouyer WDCDEBUG_PRINT(("__wdccommand_start %s:%d:%d\n",
1054 1.34 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive),
1055 1.34 bouyer DEBUG_FUNCS);
1056 1.31 bouyer
1057 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
1058 1.31 bouyer WDSD_IBM | (drive << 4));
1059 1.31 bouyer if (wdcwait(chp, wdc_c->r_st_bmask, wdc_c->r_st_bmask,
1060 1.31 bouyer wdc_c->timeout) != 0) {
1061 1.31 bouyer wdc_c->flags |= AT_TIMEOU;
1062 1.31 bouyer __wdccommand_done(chp, xfer);
1063 1.53 bouyer return;
1064 1.31 bouyer }
1065 1.31 bouyer wdccommand(chp, drive, wdc_c->r_command, wdc_c->r_cyl, wdc_c->r_head,
1066 1.31 bouyer wdc_c->r_sector, wdc_c->r_count, wdc_c->r_precomp);
1067 1.31 bouyer if ((wdc_c->flags & AT_POLL) == 0) {
1068 1.31 bouyer chp->ch_flags |= WDCF_IRQ_WAIT; /* wait for interrupt */
1069 1.31 bouyer timeout(wdctimeout, chp, wdc_c->timeout / 1000 * hz);
1070 1.31 bouyer return;
1071 1.2 bouyer }
1072 1.2 bouyer /*
1073 1.31 bouyer * Polled command. Wait for drive ready or drq. Done in intr().
1074 1.31 bouyer * Wait for at last 400ns for status bit to be valid.
1075 1.2 bouyer */
1076 1.31 bouyer delay(10);
1077 1.63 bouyer __wdccommand_intr(chp, xfer);
1078 1.2 bouyer }
1079 1.2 bouyer
1080 1.2 bouyer int
1081 1.31 bouyer __wdccommand_intr(chp, xfer)
1082 1.31 bouyer struct channel_softc *chp;
1083 1.31 bouyer struct wdc_xfer *xfer;
1084 1.2 bouyer {
1085 1.31 bouyer struct wdc_command *wdc_c = xfer->cmd;
1086 1.31 bouyer int bcount = wdc_c->bcount;
1087 1.31 bouyer char *data = wdc_c->data;
1088 1.31 bouyer
1089 1.34 bouyer WDCDEBUG_PRINT(("__wdccommand_intr %s:%d:%d\n",
1090 1.34 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive), DEBUG_INTR);
1091 1.31 bouyer if (wdcwait(chp, wdc_c->r_st_pmask, wdc_c->r_st_pmask,
1092 1.63 bouyer (wdc_c->flags & AT_POLL) ? wdc_c->timeout : 0)) {
1093 1.64 bouyer if ((xfer->c_flags & C_TIMEOU) == 0 &&
1094 1.64 bouyer (wdc_c->flags & AT_POLL) == 0)
1095 1.63 bouyer return 0; /* IRQ was not for us */
1096 1.63 bouyer wdc_c->flags |= AT_TIMEOU;
1097 1.31 bouyer __wdccommand_done(chp, xfer);
1098 1.2 bouyer return 1;
1099 1.2 bouyer }
1100 1.31 bouyer if (wdc_c->flags & AT_READ) {
1101 1.31 bouyer if (chp->ch_drive[xfer->drive].drive_flags & DRIVE_CAP32) {
1102 1.31 bouyer bus_space_read_multi_4(chp->data32iot, chp->data32ioh,
1103 1.31 bouyer 0, (u_int32_t*)data, bcount >> 2);
1104 1.31 bouyer data += bcount & 0xfffffffc;
1105 1.31 bouyer bcount = bcount & 0x03;
1106 1.31 bouyer }
1107 1.31 bouyer if (bcount > 0)
1108 1.31 bouyer bus_space_read_multi_2(chp->cmd_iot, chp->cmd_ioh,
1109 1.31 bouyer wd_data, (u_int16_t *)data, bcount >> 1);
1110 1.31 bouyer } else if (wdc_c->flags & AT_WRITE) {
1111 1.31 bouyer if (chp->ch_drive[xfer->drive].drive_flags & DRIVE_CAP32) {
1112 1.31 bouyer bus_space_write_multi_4(chp->data32iot, chp->data32ioh,
1113 1.31 bouyer 0, (u_int32_t*)data, bcount >> 2);
1114 1.31 bouyer data += bcount & 0xfffffffc;
1115 1.31 bouyer bcount = bcount & 0x03;
1116 1.31 bouyer }
1117 1.31 bouyer if (bcount > 0)
1118 1.31 bouyer bus_space_write_multi_2(chp->cmd_iot, chp->cmd_ioh,
1119 1.31 bouyer wd_data, (u_int16_t *)data, bcount >> 1);
1120 1.2 bouyer }
1121 1.31 bouyer __wdccommand_done(chp, xfer);
1122 1.31 bouyer return 1;
1123 1.2 bouyer }
1124 1.2 bouyer
1125 1.2 bouyer void
1126 1.31 bouyer __wdccommand_done(chp, xfer)
1127 1.31 bouyer struct channel_softc *chp;
1128 1.31 bouyer struct wdc_xfer *xfer;
1129 1.2 bouyer {
1130 1.31 bouyer int needdone = xfer->c_flags & C_NEEDDONE;
1131 1.31 bouyer struct wdc_command *wdc_c = xfer->cmd;
1132 1.2 bouyer
1133 1.34 bouyer WDCDEBUG_PRINT(("__wdccommand_done %s:%d:%d\n",
1134 1.34 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, xfer->drive), DEBUG_FUNCS);
1135 1.31 bouyer if (chp->ch_status & WDCS_DWF)
1136 1.31 bouyer wdc_c->flags |= AT_DF;
1137 1.31 bouyer if (chp->ch_status & WDCS_ERR) {
1138 1.31 bouyer wdc_c->flags |= AT_ERROR;
1139 1.31 bouyer wdc_c->r_error = chp->ch_error;
1140 1.31 bouyer }
1141 1.31 bouyer wdc_c->flags |= AT_DONE;
1142 1.46 kenh if (wdc_c->flags & AT_READREG && (wdc_c->flags & (AT_ERROR | AT_DF))
1143 1.46 kenh == 0) {
1144 1.46 kenh wdc_c->r_head = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1145 1.46 kenh wd_sdh);
1146 1.46 kenh wdc_c->r_cyl = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1147 1.46 kenh wd_cyl_hi) << 8;
1148 1.46 kenh wdc_c->r_cyl |= bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1149 1.46 kenh wd_cyl_lo);
1150 1.46 kenh wdc_c->r_sector = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1151 1.46 kenh wd_sector);
1152 1.46 kenh wdc_c->r_count = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1153 1.46 kenh wd_seccnt);
1154 1.46 kenh wdc_c->r_error = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1155 1.46 kenh wd_error);
1156 1.46 kenh wdc_c->r_precomp = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
1157 1.46 kenh wd_precomp);
1158 1.46 kenh }
1159 1.31 bouyer wdc_free_xfer(chp, xfer);
1160 1.31 bouyer if (needdone) {
1161 1.31 bouyer if (wdc_c->flags & AT_WAIT)
1162 1.31 bouyer wakeup(wdc_c);
1163 1.31 bouyer else
1164 1.31 bouyer wdc_c->callback(wdc_c->callback_arg);
1165 1.2 bouyer }
1166 1.45 drochner wdcstart(chp);
1167 1.31 bouyer return;
1168 1.2 bouyer }
1169 1.2 bouyer
1170 1.2 bouyer /*
1171 1.31 bouyer * Send a command. The drive should be ready.
1172 1.2 bouyer * Assumes interrupts are blocked.
1173 1.2 bouyer */
1174 1.31 bouyer void
1175 1.31 bouyer wdccommand(chp, drive, command, cylin, head, sector, count, precomp)
1176 1.31 bouyer struct channel_softc *chp;
1177 1.31 bouyer u_int8_t drive;
1178 1.31 bouyer u_int8_t command;
1179 1.31 bouyer u_int16_t cylin;
1180 1.31 bouyer u_int8_t head, sector, count, precomp;
1181 1.31 bouyer {
1182 1.31 bouyer WDCDEBUG_PRINT(("wdccommand %s:%d:%d: command=0x%x cylin=%d head=%d "
1183 1.31 bouyer "sector=%d count=%d precomp=%d\n", chp->wdc->sc_dev.dv_xname,
1184 1.31 bouyer chp->channel, drive, command, cylin, head, sector, count, precomp),
1185 1.31 bouyer DEBUG_FUNCS);
1186 1.31 bouyer
1187 1.31 bouyer /* Select drive, head, and addressing mode. */
1188 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
1189 1.31 bouyer WDSD_IBM | (drive << 4) | head);
1190 1.31 bouyer /* Load parameters. wd_features(ATA/ATAPI) = wd_precomp(ST506) */
1191 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_precomp,
1192 1.31 bouyer precomp);
1193 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_lo, cylin);
1194 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_cyl_hi, cylin >> 8);
1195 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sector, sector);
1196 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_seccnt, count);
1197 1.2 bouyer
1198 1.31 bouyer /* Send command. */
1199 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_command, command);
1200 1.31 bouyer return;
1201 1.2 bouyer }
1202 1.2 bouyer
1203 1.2 bouyer /*
1204 1.31 bouyer * Simplified version of wdccommand(). Unbusy/ready/drq must be
1205 1.31 bouyer * tested by the caller.
1206 1.2 bouyer */
1207 1.31 bouyer void
1208 1.31 bouyer wdccommandshort(chp, drive, command)
1209 1.31 bouyer struct channel_softc *chp;
1210 1.31 bouyer int drive;
1211 1.31 bouyer int command;
1212 1.2 bouyer {
1213 1.2 bouyer
1214 1.31 bouyer WDCDEBUG_PRINT(("wdccommandshort %s:%d:%d command 0x%x\n",
1215 1.31 bouyer chp->wdc->sc_dev.dv_xname, chp->channel, drive, command),
1216 1.31 bouyer DEBUG_FUNCS);
1217 1.2 bouyer
1218 1.31 bouyer /* Select drive. */
1219 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_sdh,
1220 1.31 bouyer WDSD_IBM | (drive << 4));
1221 1.2 bouyer
1222 1.31 bouyer bus_space_write_1(chp->cmd_iot, chp->cmd_ioh, wd_command, command);
1223 1.31 bouyer }
1224 1.2 bouyer
1225 1.31 bouyer /* Add a command to the queue and start controller. Must be called at splbio */
1226 1.2 bouyer
1227 1.2 bouyer void
1228 1.31 bouyer wdc_exec_xfer(chp, xfer)
1229 1.31 bouyer struct channel_softc *chp;
1230 1.2 bouyer struct wdc_xfer *xfer;
1231 1.2 bouyer {
1232 1.33 bouyer WDCDEBUG_PRINT(("wdc_exec_xfer %p channel %d drive %d\n", xfer,
1233 1.33 bouyer chp->channel, xfer->drive), DEBUG_XFERS);
1234 1.2 bouyer
1235 1.31 bouyer /* complete xfer setup */
1236 1.49 bouyer xfer->chp = chp;
1237 1.2 bouyer
1238 1.31 bouyer /*
1239 1.31 bouyer * If we are a polled command, and the list is not empty,
1240 1.31 bouyer * we are doing a dump. Drop the list to allow the polled command
1241 1.31 bouyer * to complete, we're going to reboot soon anyway.
1242 1.31 bouyer */
1243 1.31 bouyer if ((xfer->c_flags & C_POLL) != 0 &&
1244 1.31 bouyer chp->ch_queue->sc_xfer.tqh_first != NULL) {
1245 1.31 bouyer TAILQ_INIT(&chp->ch_queue->sc_xfer);
1246 1.31 bouyer }
1247 1.2 bouyer /* insert at the end of command list */
1248 1.31 bouyer TAILQ_INSERT_TAIL(&chp->ch_queue->sc_xfer,xfer , c_xferchain);
1249 1.31 bouyer WDCDEBUG_PRINT(("wdcstart from wdc_exec_xfer, flags 0x%x\n",
1250 1.33 bouyer chp->ch_flags), DEBUG_XFERS);
1251 1.45 drochner wdcstart(chp);
1252 1.2 bouyer xfer->c_flags |= C_NEEDDONE; /* we can now call upper level done() */
1253 1.31 bouyer }
1254 1.2 bouyer
1255 1.2 bouyer struct wdc_xfer *
1256 1.2 bouyer wdc_get_xfer(flags)
1257 1.2 bouyer int flags;
1258 1.2 bouyer {
1259 1.2 bouyer struct wdc_xfer *xfer;
1260 1.2 bouyer int s;
1261 1.2 bouyer
1262 1.2 bouyer s = splbio();
1263 1.2 bouyer if ((xfer = xfer_free_list.lh_first) != NULL) {
1264 1.2 bouyer LIST_REMOVE(xfer, free_list);
1265 1.2 bouyer splx(s);
1266 1.2 bouyer #ifdef DIAGNOSTIC
1267 1.2 bouyer if ((xfer->c_flags & C_INUSE) != 0)
1268 1.2 bouyer panic("wdc_get_xfer: xfer already in use\n");
1269 1.2 bouyer #endif
1270 1.2 bouyer } else {
1271 1.2 bouyer splx(s);
1272 1.31 bouyer WDCDEBUG_PRINT(("wdc:making xfer %d\n",wdc_nxfer), DEBUG_XFERS);
1273 1.2 bouyer xfer = malloc(sizeof(*xfer), M_DEVBUF,
1274 1.31 bouyer ((flags & WDC_NOSLEEP) != 0 ? M_NOWAIT : M_WAITOK));
1275 1.2 bouyer if (xfer == NULL)
1276 1.2 bouyer return 0;
1277 1.2 bouyer #ifdef DIAGNOSTIC
1278 1.2 bouyer xfer->c_flags &= ~C_INUSE;
1279 1.2 bouyer #endif
1280 1.31 bouyer #ifdef WDCDEBUG
1281 1.2 bouyer wdc_nxfer++;
1282 1.2 bouyer #endif
1283 1.2 bouyer }
1284 1.2 bouyer #ifdef DIAGNOSTIC
1285 1.2 bouyer if ((xfer->c_flags & C_INUSE) != 0)
1286 1.2 bouyer panic("wdc_get_xfer: xfer already in use\n");
1287 1.2 bouyer #endif
1288 1.31 bouyer memset(xfer, 0, sizeof(struct wdc_xfer));
1289 1.2 bouyer xfer->c_flags = C_INUSE;
1290 1.2 bouyer return xfer;
1291 1.2 bouyer }
1292 1.2 bouyer
1293 1.2 bouyer void
1294 1.31 bouyer wdc_free_xfer(chp, xfer)
1295 1.31 bouyer struct channel_softc *chp;
1296 1.2 bouyer struct wdc_xfer *xfer;
1297 1.2 bouyer {
1298 1.31 bouyer struct wdc_softc *wdc = chp->wdc;
1299 1.2 bouyer int s;
1300 1.2 bouyer
1301 1.31 bouyer if (wdc->cap & WDC_CAPABILITY_HWLOCK)
1302 1.31 bouyer (*wdc->free_hw)(chp);
1303 1.2 bouyer s = splbio();
1304 1.31 bouyer chp->ch_flags &= ~WDCF_ACTIVE;
1305 1.31 bouyer TAILQ_REMOVE(&chp->ch_queue->sc_xfer, xfer, c_xferchain);
1306 1.2 bouyer xfer->c_flags &= ~C_INUSE;
1307 1.2 bouyer LIST_INSERT_HEAD(&xfer_free_list, xfer, free_list);
1308 1.2 bouyer splx(s);
1309 1.2 bouyer }
1310 1.2 bouyer
1311 1.31 bouyer static void
1312 1.31 bouyer __wdcerror(chp, msg)
1313 1.31 bouyer struct channel_softc *chp;
1314 1.2 bouyer char *msg;
1315 1.2 bouyer {
1316 1.31 bouyer struct wdc_xfer *xfer = chp->ch_queue->sc_xfer.tqh_first;
1317 1.2 bouyer if (xfer == NULL)
1318 1.31 bouyer printf("%s:%d: %s\n", chp->wdc->sc_dev.dv_xname, chp->channel,
1319 1.31 bouyer msg);
1320 1.2 bouyer else
1321 1.31 bouyer printf("%s:%d:%d: %s\n", chp->wdc->sc_dev.dv_xname,
1322 1.49 bouyer chp->channel, xfer->drive, msg);
1323 1.2 bouyer }
1324 1.2 bouyer
1325 1.2 bouyer /*
1326 1.2 bouyer * the bit bucket
1327 1.2 bouyer */
1328 1.2 bouyer void
1329 1.31 bouyer wdcbit_bucket(chp, size)
1330 1.31 bouyer struct channel_softc *chp;
1331 1.2 bouyer int size;
1332 1.2 bouyer {
1333 1.2 bouyer
1334 1.12 cgd for (; size >= 2; size -= 2)
1335 1.31 bouyer (void)bus_space_read_2(chp->cmd_iot, chp->cmd_ioh, wd_data);
1336 1.12 cgd if (size)
1337 1.31 bouyer (void)bus_space_read_1(chp->cmd_iot, chp->cmd_ioh, wd_data);
1338 1.44 thorpej }
1339 1.44 thorpej
1340 1.44 thorpej int
1341 1.44 thorpej wdc_addref(chp)
1342 1.44 thorpej struct channel_softc *chp;
1343 1.44 thorpej {
1344 1.44 thorpej struct wdc_softc *wdc = chp->wdc;
1345 1.44 thorpej struct scsipi_adapter *adapter = &wdc->sc_atapi_adapter;
1346 1.44 thorpej int s, error = 0;
1347 1.44 thorpej
1348 1.44 thorpej s = splbio();
1349 1.44 thorpej if (adapter->scsipi_refcnt++ == 0 &&
1350 1.44 thorpej adapter->scsipi_enable != NULL) {
1351 1.44 thorpej error = (*adapter->scsipi_enable)(wdc, 1);
1352 1.44 thorpej if (error)
1353 1.44 thorpej adapter->scsipi_refcnt--;
1354 1.44 thorpej }
1355 1.44 thorpej splx(s);
1356 1.44 thorpej return (error);
1357 1.44 thorpej }
1358 1.44 thorpej
1359 1.44 thorpej void
1360 1.44 thorpej wdc_delref(chp)
1361 1.44 thorpej struct channel_softc *chp;
1362 1.44 thorpej {
1363 1.44 thorpej struct wdc_softc *wdc = chp->wdc;
1364 1.44 thorpej struct scsipi_adapter *adapter = &wdc->sc_atapi_adapter;
1365 1.44 thorpej int s;
1366 1.44 thorpej
1367 1.44 thorpej s = splbio();
1368 1.44 thorpej if (adapter->scsipi_refcnt-- == 1 &&
1369 1.44 thorpej adapter->scsipi_enable != NULL)
1370 1.44 thorpej (void) (*adapter->scsipi_enable)(wdc, 0);
1371 1.44 thorpej splx(s);
1372 1.2 bouyer }
1373