wd.c revision 1.146 1 1.146 mycroft /* $NetBSD: wd.c,v 1.146 1996/03/01 04:08:51 mycroft Exp $ */
2 1.100 cgd
3 1.11 deraadt /*
4 1.135 mycroft * Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved.
5 1.119 mycroft *
6 1.119 mycroft * DMA and multi-sector PIO handling are derived from code contributed by
7 1.119 mycroft * Onno van der Linden.
8 1.113 mycroft *
9 1.113 mycroft * Redistribution and use in source and binary forms, with or without
10 1.113 mycroft * modification, are permitted provided that the following conditions
11 1.113 mycroft * are met:
12 1.113 mycroft * 1. Redistributions of source code must retain the above copyright
13 1.113 mycroft * notice, this list of conditions and the following disclaimer.
14 1.113 mycroft * 2. Redistributions in binary form must reproduce the above copyright
15 1.113 mycroft * notice, this list of conditions and the following disclaimer in the
16 1.113 mycroft * documentation and/or other materials provided with the distribution.
17 1.113 mycroft * 3. All advertising materials mentioning features or use of this software
18 1.113 mycroft * must display the following acknowledgement:
19 1.135 mycroft * This product includes software developed by Charles M. Hannum.
20 1.113 mycroft * 4. The name of the author may not be used to endorse or promote products
21 1.113 mycroft * derived from this software without specific prior written permission.
22 1.113 mycroft *
23 1.135 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.135 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.135 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.135 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.135 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.135 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.135 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.135 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.135 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.135 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 cgd */
34 1.1 cgd
35 1.29 mycroft #include <sys/param.h>
36 1.29 mycroft #include <sys/systm.h>
37 1.43 mycroft #include <sys/kernel.h>
38 1.29 mycroft #include <sys/conf.h>
39 1.29 mycroft #include <sys/file.h>
40 1.29 mycroft #include <sys/stat.h>
41 1.29 mycroft #include <sys/ioctl.h>
42 1.29 mycroft #include <sys/buf.h>
43 1.29 mycroft #include <sys/uio.h>
44 1.29 mycroft #include <sys/malloc.h>
45 1.64 mycroft #include <sys/device.h>
46 1.94 mycroft #include <sys/disklabel.h>
47 1.94 mycroft #include <sys/disk.h>
48 1.29 mycroft #include <sys/syslog.h>
49 1.29 mycroft
50 1.29 mycroft #include <vm/vm.h>
51 1.29 mycroft
52 1.29 mycroft #include <machine/cpu.h>
53 1.29 mycroft #include <machine/pio.h>
54 1.29 mycroft
55 1.139 cgd #include <dev/isa/isavar.h>
56 1.146 mycroft #include <dev/isa/isadmavar.h>
57 1.130 cgd #include <dev/isa/wdreg.h>
58 1.1 cgd
59 1.98 mycroft #define WAITTIME (4 * hz) /* time to wait for a completion */
60 1.98 mycroft #define RECOVERYTIME (hz / 2) /* time to recover from an error */
61 1.19 deraadt
62 1.135 mycroft #define WDCDELAY 100
63 1.135 mycroft #define WDCNDELAY 100000 /* delay = 100us; so 10s for a controller state change */
64 1.89 mycroft #if 0
65 1.64 mycroft /* If you enable this, it will report any delays more than 100us * N long. */
66 1.69 mycroft #define WDCNDELAY_DEBUG 10
67 1.51 mycroft #endif
68 1.23 deraadt
69 1.135 mycroft #define WDIORETRIES 5 /* number of retries before giving up */
70 1.1 cgd
71 1.92 cgd #define WDUNIT(dev) DISKUNIT(dev)
72 1.92 cgd #define WDPART(dev) DISKPART(dev)
73 1.92 cgd #define MAKEWDDEV(maj, unit, part) MAKEDISKDEV(maj, unit, part)
74 1.92 cgd
75 1.92 cgd #define WDLABELDEV(dev) (MAKEWDDEV(major(dev), WDUNIT(dev), RAW_PART))
76 1.1 cgd
77 1.64 mycroft struct wd_softc {
78 1.64 mycroft struct device sc_dev;
79 1.144 thorpej struct disk sc_dk;
80 1.9 deraadt
81 1.135 mycroft /* Information about the current transfer: */
82 1.126 mycroft daddr_t sc_blkno; /* starting block number */
83 1.126 mycroft int sc_bcount; /* byte count left */
84 1.126 mycroft int sc_skip; /* bytes already transferred */
85 1.126 mycroft int sc_nblks; /* number of blocks currently transferring */
86 1.129 mycroft int sc_nbytes; /* number of bytes currently transferring */
87 1.126 mycroft
88 1.135 mycroft /* Long-term state: */
89 1.135 mycroft int sc_drive; /* physical unit number */
90 1.135 mycroft int sc_state; /* control state */
91 1.113 mycroft #define RECAL 0 /* recalibrate */
92 1.113 mycroft #define RECAL_WAIT 1 /* done recalibrating */
93 1.113 mycroft #define GEOMETRY 2 /* upload geometry */
94 1.113 mycroft #define GEOMETRY_WAIT 3 /* done uploading geometry */
95 1.113 mycroft #define MULTIMODE 4 /* set multiple mode */
96 1.113 mycroft #define MULTIMODE_WAIT 5 /* done setting multiple mode */
97 1.113 mycroft #define OPEN 6 /* done with open */
98 1.135 mycroft int sc_mode; /* transfer mode */
99 1.113 mycroft #define WDM_PIOSINGLE 0 /* single-sector PIO */
100 1.113 mycroft #define WDM_PIOMULTI 1 /* multi-sector PIO */
101 1.113 mycroft #define WDM_DMA 2 /* DMA */
102 1.135 mycroft int sc_multiple; /* multiple for WDM_PIOMULTI */
103 1.135 mycroft int sc_flags; /* drive characteistics found */
104 1.108 mycroft #define WDF_LOCKED 0x01
105 1.108 mycroft #define WDF_WANTED 0x02
106 1.132 mycroft #define WDF_WLABEL 0x04 /* label is writable */
107 1.132 mycroft #define WDF_LABELLING 0x08 /* writing label */
108 1.135 mycroft /* XXX Nothing resets this yet, but disk change sensing will when ATAPI is
109 1.135 mycroft implemented. */
110 1.135 mycroft #define WDF_LOADED 0x10 /* parameters loaded */
111 1.132 mycroft #define WDF_32BIT 0x20 /* can do 32-bit transfer */
112 1.126 mycroft
113 1.135 mycroft struct wdparams sc_params; /* ESDI/ATA drive parameters */
114 1.126 mycroft daddr_t sc_badsect[127]; /* 126 plus trailing -1 marker */
115 1.126 mycroft
116 1.78 mycroft TAILQ_ENTRY(wd_softc) sc_drivechain;
117 1.64 mycroft struct buf sc_q;
118 1.74 mycroft };
119 1.64 mycroft
120 1.64 mycroft struct wdc_softc {
121 1.64 mycroft struct device sc_dev;
122 1.139 cgd void *sc_ih;
123 1.64 mycroft
124 1.135 mycroft int sc_iobase; /* I/O port base */
125 1.135 mycroft int sc_drq; /* DMA channel */
126 1.125 mycroft
127 1.126 mycroft TAILQ_HEAD(drivehead, wd_softc) sc_drives;
128 1.126 mycroft int sc_flags;
129 1.135 mycroft #define WDCF_ACTIVE 0x01 /* controller is active */
130 1.135 mycroft #define WDCF_SINGLE 0x02 /* sector at a time mode */
131 1.135 mycroft #define WDCF_ERROR 0x04 /* processing a disk error */
132 1.135 mycroft #define WDCF_WANTED 0x08 /* XXX locking for wd_get_parms() */
133 1.135 mycroft int sc_errors; /* errors during current transfer */
134 1.135 mycroft u_char sc_status; /* copy of status register */
135 1.135 mycroft u_char sc_error; /* copy of error register */
136 1.74 mycroft };
137 1.3 deraadt
138 1.102 mycroft int wdcprobe __P((struct device *, void *, void *));
139 1.102 mycroft void wdcattach __P((struct device *, struct device *, void *));
140 1.3 deraadt
141 1.74 mycroft struct cfdriver wdccd = {
142 1.131 cgd NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wdc_softc)
143 1.1 cgd };
144 1.1 cgd
145 1.102 mycroft int wdprobe __P((struct device *, void *, void *));
146 1.102 mycroft void wdattach __P((struct device *, struct device *, void *));
147 1.102 mycroft
148 1.74 mycroft struct cfdriver wdcd = {
149 1.74 mycroft NULL, "wd", wdprobe, wdattach, DV_DISK, sizeof(struct wd_softc)
150 1.65 mycroft };
151 1.108 mycroft
152 1.108 mycroft void wdgetdisklabel __P((struct wd_softc *));
153 1.108 mycroft int wd_get_parms __P((struct wd_softc *));
154 1.108 mycroft void wdstrategy __P((struct buf *));
155 1.108 mycroft void wdstart __P((struct wd_softc *));
156 1.108 mycroft
157 1.102 mycroft struct dkdriver wddkdriver = { wdstrategy };
158 1.65 mycroft
159 1.64 mycroft void wdfinish __P((struct wd_softc *, struct buf *));
160 1.139 cgd int wdcintr __P((void *));
161 1.135 mycroft void wdcstart __P((struct wdc_softc *));
162 1.135 mycroft int wdcommand __P((struct wd_softc *, int, int, int, int, int));
163 1.135 mycroft int wdcommandshort __P((struct wdc_softc *, int, int));
164 1.135 mycroft int wdcontrol __P((struct wd_softc *));
165 1.135 mycroft int wdsetctlr __P((struct wd_softc *));
166 1.64 mycroft static void bad144intern __P((struct wd_softc *));
167 1.135 mycroft int wdcreset __P((struct wdc_softc *));
168 1.135 mycroft void wdcrestart __P((void *arg));
169 1.135 mycroft void wdcunwedge __P((struct wdc_softc *));
170 1.135 mycroft void wdctimeout __P((void *arg));
171 1.135 mycroft void wderror __P((void *, struct buf *, char *));
172 1.64 mycroft int wdcwait __P((struct wdc_softc *, int));
173 1.87 mycroft /* ST506 spec says that if READY or SEEKCMPLT go off, then the read or write
174 1.87 mycroft command is aborted. */
175 1.110 mycroft #define wait_for_drq(d) wdcwait(d, WDCS_DRDY | WDCS_DSC | WDCS_DRQ)
176 1.110 mycroft #define wait_for_ready(d) wdcwait(d, WDCS_DRDY | WDCS_DSC)
177 1.64 mycroft #define wait_for_unbusy(d) wdcwait(d, 0)
178 1.1 cgd
179 1.1 cgd int
180 1.102 mycroft wdcprobe(parent, match, aux)
181 1.102 mycroft struct device *parent;
182 1.102 mycroft void *match, *aux;
183 1.1 cgd {
184 1.102 mycroft struct wdc_softc *wdc = match;
185 1.74 mycroft struct isa_attach_args *ia = aux;
186 1.107 mycroft int iobase;
187 1.1 cgd
188 1.74 mycroft wdc->sc_iobase = iobase = ia->ia_iobase;
189 1.64 mycroft
190 1.64 mycroft /* Check if we have registers that work. */
191 1.135 mycroft outb(iobase+wd_error, 0x5a); /* Error register not writable, */
192 1.135 mycroft outb(iobase+wd_cyl_lo, 0xa5); /* but all of cyllo are. */
193 1.64 mycroft if (inb(iobase+wd_error) == 0x5a || inb(iobase+wd_cyl_lo) != 0xa5)
194 1.64 mycroft return 0;
195 1.3 deraadt
196 1.64 mycroft if (wdcreset(wdc) != 0) {
197 1.64 mycroft delay(500000);
198 1.64 mycroft if (wdcreset(wdc) != 0)
199 1.64 mycroft return 0;
200 1.64 mycroft }
201 1.1 cgd
202 1.135 mycroft /* Select drive 0. */
203 1.105 mycroft outb(iobase+wd_sdh, WDSD_IBM | 0);
204 1.105 mycroft
205 1.105 mycroft /* Wait for controller to become ready. */
206 1.105 mycroft if (wait_for_unbusy(wdc) < 0)
207 1.105 mycroft return 0;
208 1.105 mycroft
209 1.135 mycroft /* Start drive diagnostics. */
210 1.105 mycroft outb(iobase+wd_command, WDCC_DIAGNOSE);
211 1.105 mycroft
212 1.105 mycroft /* Wait for command to complete. */
213 1.121 mycroft if (wait_for_unbusy(wdc) < 0)
214 1.105 mycroft return 0;
215 1.3 deraadt
216 1.74 mycroft ia->ia_iosize = 8;
217 1.74 mycroft ia->ia_msize = 0;
218 1.74 mycroft return 1;
219 1.66 mycroft }
220 1.66 mycroft
221 1.74 mycroft struct wdc_attach_args {
222 1.74 mycroft int wa_drive;
223 1.74 mycroft };
224 1.74 mycroft
225 1.66 mycroft int
226 1.74 mycroft wdprint(aux, wdc)
227 1.74 mycroft void *aux;
228 1.74 mycroft char *wdc;
229 1.74 mycroft {
230 1.74 mycroft struct wdc_attach_args *wa = aux;
231 1.74 mycroft
232 1.74 mycroft if (!wdc)
233 1.74 mycroft printf(" drive %d", wa->wa_drive);
234 1.74 mycroft return QUIET;
235 1.66 mycroft }
236 1.66 mycroft
237 1.74 mycroft void
238 1.74 mycroft wdcattach(parent, self, aux)
239 1.74 mycroft struct device *parent, *self;
240 1.74 mycroft void *aux;
241 1.66 mycroft {
242 1.74 mycroft struct wdc_softc *wdc = (void *)self;
243 1.76 mycroft struct isa_attach_args *ia = aux;
244 1.74 mycroft struct wdc_attach_args wa;
245 1.67 mycroft
246 1.102 mycroft TAILQ_INIT(&wdc->sc_drives);
247 1.113 mycroft wdc->sc_drq = ia->ia_drq;
248 1.102 mycroft
249 1.74 mycroft printf("\n");
250 1.74 mycroft
251 1.143 mycroft wdc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_BIO, wdcintr,
252 1.143 mycroft wdc);
253 1.102 mycroft
254 1.102 mycroft for (wa.wa_drive = 0; wa.wa_drive < 2; wa.wa_drive++)
255 1.102 mycroft (void)config_found(self, (void *)&wa, wdprint);
256 1.1 cgd }
257 1.1 cgd
258 1.1 cgd int
259 1.102 mycroft wdprobe(parent, match, aux)
260 1.102 mycroft struct device *parent;
261 1.102 mycroft void *match, *aux;
262 1.74 mycroft {
263 1.105 mycroft struct wdc_softc *wdc = (void *)parent;
264 1.105 mycroft struct cfdata *cf = match;
265 1.74 mycroft struct wdc_attach_args *wa = aux;
266 1.74 mycroft int drive = wa->wa_drive;
267 1.3 deraadt
268 1.102 mycroft if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != drive)
269 1.11 deraadt return 0;
270 1.3 deraadt
271 1.110 mycroft if (wdcommandshort(wdc, drive, WDCC_RECAL) != 0 ||
272 1.105 mycroft wait_for_ready(wdc) != 0)
273 1.74 mycroft return 0;
274 1.64 mycroft
275 1.74 mycroft return 1;
276 1.74 mycroft }
277 1.64 mycroft
278 1.74 mycroft void
279 1.74 mycroft wdattach(parent, self, aux)
280 1.74 mycroft struct device *parent, *self;
281 1.74 mycroft void *aux;
282 1.74 mycroft {
283 1.74 mycroft struct wd_softc *wd = (void *)self;
284 1.113 mycroft struct wdc_softc *wdc = (void *)parent;
285 1.106 mycroft struct wdc_attach_args *wa = aux;
286 1.74 mycroft int i, blank;
287 1.135 mycroft char buf[41], c, *p, *q;
288 1.56 mycroft
289 1.106 mycroft wd->sc_drive = wa->wa_drive;
290 1.106 mycroft
291 1.144 thorpej /*
292 1.144 thorpej * Initialize and attach the disk structure.
293 1.144 thorpej */
294 1.144 thorpej wd->sc_dk.dk_driver = &wddkdriver;
295 1.144 thorpej wd->sc_dk.dk_name = wd->sc_dev.dv_xname;
296 1.144 thorpej disk_attach(&wd->sc_dk);
297 1.144 thorpej
298 1.108 mycroft wd_get_parms(wd);
299 1.135 mycroft for (blank = 0, p = wd->sc_params.wdp_model, q = buf, i = 0;
300 1.135 mycroft i < sizeof(wd->sc_params.wdp_model); i++) {
301 1.135 mycroft c = *p++;
302 1.135 mycroft if (c == '\0')
303 1.135 mycroft break;
304 1.135 mycroft if (c != ' ') {
305 1.135 mycroft if (blank) {
306 1.135 mycroft *q++ = ' ';
307 1.135 mycroft blank = 0;
308 1.135 mycroft }
309 1.135 mycroft *q++ = c;
310 1.135 mycroft } else
311 1.135 mycroft blank = 1;
312 1.135 mycroft }
313 1.135 mycroft *q++ = '\0';
314 1.135 mycroft
315 1.135 mycroft printf(": %dMB, %d cyl, %d head, %d sec, %d bytes/sec <%s>\n",
316 1.110 mycroft wd->sc_params.wdp_cylinders *
317 1.108 mycroft (wd->sc_params.wdp_heads * wd->sc_params.wdp_sectors) /
318 1.108 mycroft (1048576 / DEV_BSIZE),
319 1.110 mycroft wd->sc_params.wdp_cylinders,
320 1.108 mycroft wd->sc_params.wdp_heads,
321 1.108 mycroft wd->sc_params.wdp_sectors,
322 1.135 mycroft DEV_BSIZE,
323 1.135 mycroft buf);
324 1.113 mycroft
325 1.113 mycroft if ((wd->sc_params.wdp_capabilities & WD_CAP_DMA) != 0 &&
326 1.113 mycroft wdc->sc_drq != DRQUNK) {
327 1.113 mycroft wd->sc_mode = WDM_DMA;
328 1.113 mycroft } else if (wd->sc_params.wdp_maxmulti > 1) {
329 1.113 mycroft wd->sc_mode = WDM_PIOMULTI;
330 1.115 mycroft wd->sc_multiple = min(wd->sc_params.wdp_maxmulti, 16);
331 1.113 mycroft } else {
332 1.113 mycroft wd->sc_mode = WDM_PIOSINGLE;
333 1.113 mycroft wd->sc_multiple = 1;
334 1.113 mycroft }
335 1.113 mycroft
336 1.116 mycroft printf("%s: using", wd->sc_dev.dv_xname);
337 1.113 mycroft if (wd->sc_mode == WDM_DMA)
338 1.116 mycroft printf(" dma transfers,");
339 1.113 mycroft else
340 1.116 mycroft printf(" %d-sector %d-bit pio transfers,",
341 1.115 mycroft wd->sc_multiple, (wd->sc_flags & WDF_32BIT) == 0 ? 16 : 32);
342 1.116 mycroft if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
343 1.116 mycroft printf(" lba addressing\n");
344 1.116 mycroft else
345 1.116 mycroft printf(" chs addressing\n");
346 1.1 cgd }
347 1.1 cgd
348 1.64 mycroft /*
349 1.135 mycroft * Read/write routine for a buffer. Validates the arguments and schedules the
350 1.135 mycroft * transfer. Does not wait for the transfer to complete.
351 1.1 cgd */
352 1.64 mycroft void
353 1.55 mycroft wdstrategy(bp)
354 1.55 mycroft struct buf *bp;
355 1.1 cgd {
356 1.135 mycroft struct wd_softc *wd = wdcd.cd_devs[WDUNIT(bp->b_dev)];
357 1.37 mycroft int s;
358 1.3 deraadt
359 1.135 mycroft /* Valid request? */
360 1.135 mycroft if (bp->b_blkno < 0 ||
361 1.144 thorpej (bp->b_bcount % wd->sc_dk.dk_label->d_secsize) != 0 ||
362 1.144 thorpej (bp->b_bcount / wd->sc_dk.dk_label->d_secsize) >= (1 << NBBY)) {
363 1.1 cgd bp->b_error = EINVAL;
364 1.93 mycroft goto bad;
365 1.1 cgd }
366 1.3 deraadt
367 1.135 mycroft /* If device invalidated (e.g. media change, door open), error. */
368 1.135 mycroft if ((wd->sc_flags & WDF_LOADED) == 0) {
369 1.135 mycroft bp->b_error = EIO;
370 1.135 mycroft goto bad;
371 1.135 mycroft }
372 1.135 mycroft
373 1.93 mycroft /* If it's a null transfer, return immediately. */
374 1.93 mycroft if (bp->b_bcount == 0)
375 1.93 mycroft goto done;
376 1.93 mycroft
377 1.128 mycroft /*
378 1.128 mycroft * Do bounds checking, adjust transfer. if error, process.
379 1.128 mycroft * If end of partition, just return.
380 1.128 mycroft */
381 1.138 mycroft if (WDPART(bp->b_dev) != RAW_PART &&
382 1.144 thorpej bounds_check_with_label(bp, wd->sc_dk.dk_label,
383 1.132 mycroft (wd->sc_flags & (WDF_WLABEL|WDF_LABELLING)) != 0) <= 0)
384 1.128 mycroft goto done;
385 1.3 deraadt
386 1.64 mycroft /* Queue transfer on drive, activate drive and controller if idle. */
387 1.1 cgd s = splbio();
388 1.113 mycroft disksort(&wd->sc_q, bp);
389 1.78 mycroft if (!wd->sc_q.b_active)
390 1.135 mycroft wdstart(wd);
391 1.120 mycroft #if 0
392 1.80 mycroft else {
393 1.80 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
394 1.120 mycroft if ((wdc->sc_flags & (WDCF_ACTIVE|WDCF_ERROR)) == 0) {
395 1.80 mycroft printf("wdstrategy: controller inactive\n");
396 1.80 mycroft wdcstart(wdc);
397 1.80 mycroft }
398 1.78 mycroft }
399 1.78 mycroft #endif
400 1.1 cgd splx(s);
401 1.64 mycroft return;
402 1.3 deraadt
403 1.93 mycroft bad:
404 1.93 mycroft bp->b_flags |= B_ERROR;
405 1.1 cgd done:
406 1.64 mycroft /* Toss transfer; we're done early. */
407 1.135 mycroft bp->b_resid = bp->b_bcount;
408 1.1 cgd biodone(bp);
409 1.1 cgd }
410 1.1 cgd
411 1.1 cgd /*
412 1.135 mycroft * Queue a drive for I/O.
413 1.1 cgd */
414 1.108 mycroft void
415 1.64 mycroft wdstart(wd)
416 1.64 mycroft struct wd_softc *wd;
417 1.1 cgd {
418 1.78 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
419 1.78 mycroft int active = wdc->sc_drives.tqh_first != 0;
420 1.64 mycroft
421 1.64 mycroft /* Link onto controller queue. */
422 1.78 mycroft wd->sc_q.b_active = 1;
423 1.78 mycroft TAILQ_INSERT_TAIL(&wdc->sc_drives, wd, sc_drivechain);
424 1.144 thorpej
425 1.144 thorpej disk_busy(&wd->sc_dk);
426 1.3 deraadt
427 1.78 mycroft /* If controller not already active, start it. */
428 1.78 mycroft if (!active)
429 1.78 mycroft wdcstart(wdc);
430 1.1 cgd }
431 1.1 cgd
432 1.135 mycroft /*
433 1.135 mycroft * Finish an I/O operation. Clean up the drive and controller state, set the
434 1.135 mycroft * residual count, and inform the upper layers that the operation is complete.
435 1.135 mycroft */
436 1.64 mycroft void
437 1.64 mycroft wdfinish(wd, bp)
438 1.64 mycroft struct wd_softc *wd;
439 1.64 mycroft struct buf *bp;
440 1.64 mycroft {
441 1.64 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
442 1.64 mycroft
443 1.69 mycroft wdc->sc_flags &= ~(WDCF_SINGLE | WDCF_ERROR);
444 1.78 mycroft wdc->sc_errors = 0;
445 1.64 mycroft /*
446 1.113 mycroft * Move this drive to the end of the queue to give others a `fair'
447 1.113 mycroft * chance.
448 1.64 mycroft */
449 1.113 mycroft if (wd->sc_drivechain.tqe_next) {
450 1.113 mycroft TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
451 1.113 mycroft if (bp->b_actf) {
452 1.127 mycroft TAILQ_INSERT_TAIL(&wdc->sc_drives, wd, sc_drivechain);
453 1.113 mycroft } else
454 1.113 mycroft wd->sc_q.b_active = 0;
455 1.64 mycroft }
456 1.64 mycroft bp->b_resid = wd->sc_bcount;
457 1.64 mycroft wd->sc_skip = 0;
458 1.64 mycroft wd->sc_q.b_actf = bp->b_actf;
459 1.144 thorpej
460 1.144 thorpej disk_unbusy(&wd->sc_dk, (bp->b_bcount - bp->b_resid));
461 1.144 thorpej
462 1.145 mycroft if (!wd->sc_q.b_actf) {
463 1.145 mycroft TAILQ_REMOVE(&wdc->sc_drives, wd, sc_drivechain);
464 1.145 mycroft wd->sc_q.b_active = 0;
465 1.145 mycroft } else
466 1.145 mycroft disk_busy(&wd->sc_dk);
467 1.145 mycroft
468 1.64 mycroft biodone(bp);
469 1.141 mycroft }
470 1.141 mycroft
471 1.141 mycroft int
472 1.141 mycroft wdread(dev, uio)
473 1.141 mycroft dev_t dev;
474 1.141 mycroft struct uio *uio;
475 1.141 mycroft {
476 1.141 mycroft
477 1.141 mycroft return (physio(wdstrategy, NULL, dev, B_READ, minphys, uio));
478 1.141 mycroft }
479 1.141 mycroft
480 1.141 mycroft int
481 1.141 mycroft wdwrite(dev, uio)
482 1.141 mycroft dev_t dev;
483 1.141 mycroft struct uio *uio;
484 1.141 mycroft {
485 1.141 mycroft
486 1.141 mycroft return (physio(wdstrategy, NULL, dev, B_WRITE, minphys, uio));
487 1.64 mycroft }
488 1.64 mycroft
489 1.1 cgd /*
490 1.135 mycroft * Start I/O on a controller. This does the calculation, and starts a read or
491 1.135 mycroft * write operation. Called to from wdstart() to start a transfer, from
492 1.135 mycroft * wdcintr() to continue a multi-sector transfer or start the next transfer, or
493 1.135 mycroft * wdcrestart() after recovering from an error.
494 1.1 cgd */
495 1.135 mycroft void
496 1.64 mycroft wdcstart(wdc)
497 1.64 mycroft struct wdc_softc *wdc;
498 1.1 cgd {
499 1.135 mycroft struct wd_softc *wd;
500 1.64 mycroft struct buf *bp;
501 1.129 mycroft struct disklabel *lp;
502 1.113 mycroft int nblks;
503 1.64 mycroft
504 1.135 mycroft #ifdef DIAGNOSTIC
505 1.135 mycroft if ((wdc->sc_flags & WDCF_ACTIVE) != 0)
506 1.135 mycroft panic("wdcstart: controller still active");
507 1.135 mycroft #endif
508 1.135 mycroft
509 1.124 mycroft /*
510 1.124 mycroft * XXX
511 1.124 mycroft * This is a kluge. See comments in wd_get_parms().
512 1.124 mycroft */
513 1.124 mycroft if ((wdc->sc_flags & WDCF_WANTED) != 0) {
514 1.124 mycroft wdc->sc_flags &= ~WDCF_WANTED;
515 1.124 mycroft wakeup(wdc);
516 1.124 mycroft return;
517 1.124 mycroft }
518 1.124 mycroft
519 1.1 cgd loop:
520 1.64 mycroft /* Is there a drive for the controller to do a transfer with? */
521 1.78 mycroft wd = wdc->sc_drives.tqh_first;
522 1.78 mycroft if (wd == NULL)
523 1.1 cgd return;
524 1.3 deraadt
525 1.64 mycroft /* Is there a transfer to this drive? If not, deactivate drive. */
526 1.78 mycroft bp = wd->sc_q.b_actf;
527 1.3 deraadt
528 1.78 mycroft if (wdc->sc_errors >= WDIORETRIES) {
529 1.64 mycroft wderror(wd, bp, "hard error");
530 1.64 mycroft bp->b_error = EIO;
531 1.64 mycroft bp->b_flags |= B_ERROR;
532 1.64 mycroft wdfinish(wd, bp);
533 1.64 mycroft goto loop;
534 1.64 mycroft }
535 1.78 mycroft
536 1.69 mycroft /* Do control operations specially. */
537 1.64 mycroft if (wd->sc_state < OPEN) {
538 1.69 mycroft /*
539 1.69 mycroft * Actually, we want to be careful not to mess with the control
540 1.69 mycroft * state if the device is currently busy, but we can assume
541 1.69 mycroft * that we never get to this point if that's the case.
542 1.69 mycroft */
543 1.116 mycroft if (wdcontrol(wd) == 0) {
544 1.116 mycroft /* The drive is busy. Wait. */
545 1.116 mycroft return;
546 1.116 mycroft }
547 1.1 cgd }
548 1.64 mycroft
549 1.64 mycroft /*
550 1.76 mycroft * WDCF_ERROR is set by wdcunwedge() and wdcintr() when an error is
551 1.69 mycroft * encountered. If we are in multi-sector mode, then we switch to
552 1.69 mycroft * single-sector mode and retry the operation from the start.
553 1.64 mycroft */
554 1.69 mycroft if (wdc->sc_flags & WDCF_ERROR) {
555 1.69 mycroft wdc->sc_flags &= ~WDCF_ERROR;
556 1.69 mycroft if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
557 1.69 mycroft wdc->sc_flags |= WDCF_SINGLE;
558 1.113 mycroft wd->sc_skip = 0;
559 1.69 mycroft }
560 1.64 mycroft }
561 1.64 mycroft
562 1.144 thorpej lp = wd->sc_dk.dk_label;
563 1.129 mycroft
564 1.135 mycroft /* When starting a transfer... */
565 1.95 mycroft if (wd->sc_skip == 0) {
566 1.125 mycroft int part = WDPART(bp->b_dev);
567 1.129 mycroft daddr_t blkno;
568 1.125 mycroft
569 1.44 mycroft #ifdef WDDEBUG
570 1.95 mycroft printf("\n%s: wdcstart %s %d@%d; map ", wd->sc_dev.dv_xname,
571 1.37 mycroft (bp->b_flags & B_READ) ? "read" : "write", bp->b_bcount,
572 1.95 mycroft bp->b_blkno);
573 1.95 mycroft #endif
574 1.95 mycroft wd->sc_bcount = bp->b_bcount;
575 1.129 mycroft blkno = bp->b_blkno;
576 1.125 mycroft if (part != RAW_PART)
577 1.129 mycroft blkno += lp->d_partitions[part].p_offset;
578 1.129 mycroft wd->sc_blkno = blkno / (lp->d_secsize / DEV_BSIZE);
579 1.95 mycroft } else {
580 1.95 mycroft #ifdef WDDEBUG
581 1.64 mycroft printf(" %d)%x", wd->sc_skip, inb(wd->sc_iobase+wd_altsts));
582 1.1 cgd #endif
583 1.95 mycroft }
584 1.95 mycroft
585 1.135 mycroft /* When starting a multi-sector transfer, or doing single-sector
586 1.135 mycroft transfers... */
587 1.129 mycroft if (wd->sc_skip == 0 || (wdc->sc_flags & WDCF_SINGLE) != 0 ||
588 1.129 mycroft wd->sc_mode == WDM_DMA) {
589 1.125 mycroft daddr_t blkno = wd->sc_blkno;
590 1.95 mycroft long cylin, head, sector;
591 1.95 mycroft int command;
592 1.95 mycroft
593 1.117 mycroft if ((wdc->sc_flags & WDCF_SINGLE) != 0)
594 1.95 mycroft nblks = 1;
595 1.117 mycroft else if (wd->sc_mode != WDM_DMA)
596 1.129 mycroft nblks = wd->sc_bcount / lp->d_secsize;
597 1.95 mycroft else
598 1.129 mycroft nblks = min(wd->sc_bcount / lp->d_secsize, 8);
599 1.95 mycroft
600 1.117 mycroft /* Check for bad sectors and adjust transfer, if necessary. */
601 1.116 mycroft if ((lp->d_flags & D_BADSECT) != 0
602 1.44 mycroft #ifdef B_FORMAT
603 1.95 mycroft && (bp->b_flags & B_FORMAT) == 0
604 1.3 deraadt #endif
605 1.95 mycroft ) {
606 1.95 mycroft long blkdiff;
607 1.95 mycroft int i;
608 1.95 mycroft
609 1.95 mycroft for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
610 1.95 mycroft blkdiff -= blkno;
611 1.95 mycroft if (blkdiff < 0)
612 1.95 mycroft continue;
613 1.95 mycroft if (blkdiff == 0) {
614 1.95 mycroft /* Replace current block of transfer. */
615 1.95 mycroft blkno =
616 1.95 mycroft lp->d_secperunit - lp->d_nsectors - i - 1;
617 1.113 mycroft }
618 1.113 mycroft if (blkdiff < nblks) {
619 1.95 mycroft /* Bad block inside transfer. */
620 1.113 mycroft wdc->sc_flags |= WDCF_SINGLE;
621 1.113 mycroft nblks = 1;
622 1.95 mycroft }
623 1.113 mycroft break;
624 1.3 deraadt }
625 1.95 mycroft /* Tranfer is okay now. */
626 1.3 deraadt }
627 1.1 cgd
628 1.116 mycroft if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
629 1.116 mycroft sector = (blkno >> 0) & 0xff;
630 1.116 mycroft cylin = (blkno >> 8) & 0xffff;
631 1.117 mycroft head = (blkno >> 24) & 0xf;
632 1.116 mycroft head |= WDSD_LBA;
633 1.116 mycroft } else {
634 1.116 mycroft sector = blkno % lp->d_nsectors;
635 1.116 mycroft sector++; /* Sectors begin with 1, not 0. */
636 1.116 mycroft blkno /= lp->d_nsectors;
637 1.116 mycroft head = blkno % lp->d_ntracks;
638 1.116 mycroft blkno /= lp->d_ntracks;
639 1.116 mycroft cylin = blkno;
640 1.116 mycroft head |= WDSD_CHS;
641 1.116 mycroft }
642 1.51 mycroft
643 1.129 mycroft if (wd->sc_mode == WDM_PIOSINGLE ||
644 1.129 mycroft (wdc->sc_flags & WDCF_SINGLE) != 0)
645 1.129 mycroft wd->sc_nblks = 1;
646 1.129 mycroft else if (wd->sc_mode == WDM_PIOMULTI)
647 1.129 mycroft wd->sc_nblks = min(nblks, wd->sc_multiple);
648 1.129 mycroft else
649 1.129 mycroft wd->sc_nblks = nblks;
650 1.129 mycroft wd->sc_nbytes = wd->sc_nblks * lp->d_secsize;
651 1.129 mycroft
652 1.37 mycroft #ifdef B_FORMAT
653 1.1 cgd if (bp->b_flags & B_FORMAT) {
654 1.60 mycroft sector = lp->d_gap3;
655 1.95 mycroft nblks = lp->d_nsectors;
656 1.60 mycroft command = WDCC_FORMAT;
657 1.95 mycroft } else
658 1.95 mycroft #endif
659 1.113 mycroft switch (wd->sc_mode) {
660 1.113 mycroft case WDM_DMA:
661 1.113 mycroft command = (bp->b_flags & B_READ) ?
662 1.113 mycroft WDCC_READDMA : WDCC_WRITEDMA;
663 1.135 mycroft /* Start the DMA channel and bounce the buffer if
664 1.135 mycroft necessary. */
665 1.146 mycroft isa_dmastart(
666 1.146 mycroft bp->b_flags & B_READ ? DMAMODE_READ : DMAMODE_WRITE,
667 1.125 mycroft bp->b_data + wd->sc_skip,
668 1.129 mycroft wd->sc_nbytes, wdc->sc_drq);
669 1.113 mycroft break;
670 1.113 mycroft case WDM_PIOMULTI:
671 1.113 mycroft command = (bp->b_flags & B_READ) ?
672 1.113 mycroft WDCC_READMULTI : WDCC_WRITEMULTI;
673 1.113 mycroft break;
674 1.113 mycroft case WDM_PIOSINGLE:
675 1.113 mycroft command = (bp->b_flags & B_READ) ?
676 1.113 mycroft WDCC_READ : WDCC_WRITE;
677 1.113 mycroft break;
678 1.113 mycroft }
679 1.3 deraadt
680 1.64 mycroft /* Initiate command! */
681 1.105 mycroft if (wdcommand(wd, command, cylin, head, sector, nblks) != 0) {
682 1.64 mycroft wderror(wd, NULL,
683 1.64 mycroft "wdcstart: timeout waiting for unbusy");
684 1.64 mycroft wdcunwedge(wdc);
685 1.64 mycroft return;
686 1.51 mycroft }
687 1.135 mycroft
688 1.44 mycroft #ifdef WDDEBUG
689 1.37 mycroft printf("sector %d cylin %d head %d addr %x sts %x\n", sector,
690 1.84 mycroft cylin, head, bp->b_data, inb(wd->sc_iobase+wd_altsts));
691 1.1 cgd #endif
692 1.129 mycroft } else if (wd->sc_nblks > 1) {
693 1.135 mycroft /* The number of blocks in the last stretch may be smaller. */
694 1.129 mycroft nblks = wd->sc_bcount / lp->d_secsize;
695 1.129 mycroft if (wd->sc_nblks > nblks) {
696 1.129 mycroft wd->sc_nblks = nblks;
697 1.129 mycroft wd->sc_nbytes = wd->sc_bcount;
698 1.129 mycroft }
699 1.1 cgd }
700 1.78 mycroft
701 1.113 mycroft /* If this was a write and not using DMA, push the data. */
702 1.113 mycroft if (wd->sc_mode != WDM_DMA &&
703 1.135 mycroft (bp->b_flags & (B_READ|B_WRITE)) == B_WRITE) {
704 1.113 mycroft if (wait_for_drq(wdc) < 0) {
705 1.113 mycroft wderror(wd, NULL, "wdcstart: timeout waiting for drq");
706 1.113 mycroft wdcunwedge(wdc);
707 1.113 mycroft return;
708 1.113 mycroft }
709 1.113 mycroft
710 1.135 mycroft /* Push out data. */
711 1.115 mycroft if ((wd->sc_flags & WDF_32BIT) == 0)
712 1.125 mycroft outsw(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
713 1.129 mycroft wd->sc_nbytes >> 1);
714 1.115 mycroft else
715 1.125 mycroft outsl(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
716 1.129 mycroft wd->sc_nbytes >> 2);
717 1.19 deraadt }
718 1.116 mycroft
719 1.116 mycroft wdc->sc_flags |= WDCF_ACTIVE;
720 1.116 mycroft timeout(wdctimeout, wdc, WAITTIME);
721 1.1 cgd }
722 1.1 cgd
723 1.64 mycroft /*
724 1.64 mycroft * Interrupt routine for the controller. Acknowledge the interrupt, check for
725 1.64 mycroft * errors on the current operation, mark it done if necessary, and start the
726 1.64 mycroft * next request. Also check for a partially done transfer, and continue with
727 1.64 mycroft * the next chunk if so.
728 1.1 cgd */
729 1.64 mycroft int
730 1.139 cgd wdcintr(arg)
731 1.139 cgd void *arg;
732 1.1 cgd {
733 1.139 cgd struct wdc_softc *wdc = arg;
734 1.64 mycroft struct wd_softc *wd;
735 1.64 mycroft struct buf *bp;
736 1.59 mycroft
737 1.87 mycroft if ((wdc->sc_flags & WDCF_ACTIVE) == 0) {
738 1.135 mycroft /* Clear the pending interrupt and abort. */
739 1.87 mycroft (void) inb(wdc->sc_iobase+wd_status);
740 1.64 mycroft return 0;
741 1.87 mycroft }
742 1.78 mycroft
743 1.116 mycroft wdc->sc_flags &= ~WDCF_ACTIVE;
744 1.116 mycroft untimeout(wdctimeout, wdc);
745 1.116 mycroft
746 1.78 mycroft wd = wdc->sc_drives.tqh_first;
747 1.78 mycroft bp = wd->sc_q.b_actf;
748 1.78 mycroft
749 1.44 mycroft #ifdef WDDEBUG
750 1.3 deraadt printf("I%d ", ctrlr);
751 1.1 cgd #endif
752 1.13 deraadt
753 1.64 mycroft if (wait_for_unbusy(wdc) < 0) {
754 1.76 mycroft wderror(wd, NULL, "wdcintr: timeout waiting for unbusy");
755 1.64 mycroft wdc->sc_status |= WDCS_ERR; /* XXX */
756 1.27 cgd }
757 1.3 deraadt
758 1.64 mycroft /* Is it not a transfer, but a control operation? */
759 1.64 mycroft if (wd->sc_state < OPEN) {
760 1.116 mycroft if (wdcontrol(wd) == 0) {
761 1.116 mycroft /* The drive is busy. Wait. */
762 1.116 mycroft return 1;
763 1.116 mycroft }
764 1.116 mycroft wdcstart(wdc);
765 1.64 mycroft return 1;
766 1.1 cgd }
767 1.78 mycroft
768 1.135 mycroft /* Turn off the DMA channel and unbounce the buffer. */
769 1.113 mycroft if (wd->sc_mode == WDM_DMA)
770 1.146 mycroft isa_dmadone(bp->b_flags & B_READ ? DMAMODE_READ : DMAMODE_WRITE,
771 1.146 mycroft bp->b_data + wd->sc_skip, wd->sc_nbytes, wdc->sc_drq);
772 1.113 mycroft
773 1.64 mycroft /* Have we an error? */
774 1.96 mycroft if (wdc->sc_status & WDCS_ERR) {
775 1.51 mycroft lose:
776 1.44 mycroft #ifdef WDDEBUG
777 1.76 mycroft wderror(wd, NULL, "wdcintr");
778 1.1 cgd #endif
779 1.69 mycroft if ((wdc->sc_flags & WDCF_SINGLE) == 0) {
780 1.69 mycroft wdc->sc_flags |= WDCF_ERROR;
781 1.64 mycroft goto restart;
782 1.1 cgd }
783 1.96 mycroft
784 1.1 cgd #ifdef B_FORMAT
785 1.96 mycroft if (bp->b_flags & B_FORMAT)
786 1.96 mycroft goto bad;
787 1.1 cgd #endif
788 1.3 deraadt
789 1.96 mycroft if (++wdc->sc_errors < WDIORETRIES)
790 1.96 mycroft goto restart;
791 1.96 mycroft wderror(wd, bp, "hard error");
792 1.96 mycroft
793 1.96 mycroft bad:
794 1.96 mycroft bp->b_error = EIO;
795 1.96 mycroft bp->b_flags |= B_ERROR;
796 1.96 mycroft goto done;
797 1.1 cgd }
798 1.96 mycroft
799 1.113 mycroft /* If this was a read and not using DMA, fetch the data. */
800 1.113 mycroft if (wd->sc_mode != WDM_DMA &&
801 1.135 mycroft (bp->b_flags & (B_READ|B_WRITE)) == B_READ) {
802 1.110 mycroft if ((wdc->sc_status & (WDCS_DRDY | WDCS_DSC | WDCS_DRQ))
803 1.110 mycroft != (WDCS_DRDY | WDCS_DSC | WDCS_DRQ)) {
804 1.87 mycroft wderror(wd, NULL, "wdcintr: read intr before drq");
805 1.64 mycroft wdcunwedge(wdc);
806 1.64 mycroft return 1;
807 1.27 cgd }
808 1.27 cgd
809 1.135 mycroft /* Pull in data. */
810 1.115 mycroft if ((wd->sc_flags & WDF_32BIT) == 0)
811 1.125 mycroft insw(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
812 1.129 mycroft wd->sc_nbytes >> 1);
813 1.115 mycroft else
814 1.125 mycroft insl(wdc->sc_iobase+wd_data, bp->b_data + wd->sc_skip,
815 1.129 mycroft wd->sc_nbytes >> 2);
816 1.64 mycroft }
817 1.64 mycroft
818 1.64 mycroft /* If we encountered any abnormalities, flag it as a soft error. */
819 1.135 mycroft if (wdc->sc_errors > 0 ||
820 1.135 mycroft (wdc->sc_status & WDCS_CORR) != 0) {
821 1.135 mycroft wderror(wd, bp, "soft error (corrected)");
822 1.78 mycroft wdc->sc_errors = 0;
823 1.1 cgd }
824 1.3 deraadt
825 1.135 mycroft /* Adjust pointers for the next block, if any. */
826 1.129 mycroft wd->sc_blkno += wd->sc_nblks;
827 1.129 mycroft wd->sc_skip += wd->sc_nbytes;
828 1.129 mycroft wd->sc_bcount -= wd->sc_nbytes;
829 1.64 mycroft
830 1.135 mycroft /* See if this transfer is complete. */
831 1.64 mycroft if (wd->sc_bcount > 0)
832 1.64 mycroft goto restart;
833 1.64 mycroft
834 1.64 mycroft done:
835 1.64 mycroft /* Done with this transfer, with or without error. */
836 1.64 mycroft wdfinish(wd, bp);
837 1.64 mycroft
838 1.64 mycroft restart:
839 1.135 mycroft /* Start the next operation, if any. */
840 1.64 mycroft wdcstart(wdc);
841 1.1 cgd
842 1.64 mycroft return 1;
843 1.1 cgd }
844 1.1 cgd
845 1.135 mycroft /*
846 1.135 mycroft * Wait interruptibly for an exclusive lock.
847 1.135 mycroft *
848 1.135 mycroft * XXX
849 1.135 mycroft * Several drivers do this; it should be abstracted and made MP-safe.
850 1.135 mycroft */
851 1.132 mycroft int
852 1.135 mycroft wdlock(wd)
853 1.132 mycroft struct wd_softc *wd;
854 1.132 mycroft {
855 1.132 mycroft int error;
856 1.132 mycroft
857 1.132 mycroft while ((wd->sc_flags & WDF_LOCKED) != 0) {
858 1.132 mycroft wd->sc_flags |= WDF_WANTED;
859 1.132 mycroft if ((error = tsleep(wd, PRIBIO | PCATCH, "wdlck", 0)) != 0)
860 1.132 mycroft return error;
861 1.132 mycroft }
862 1.135 mycroft wd->sc_flags |= WDF_LOCKED;
863 1.132 mycroft return 0;
864 1.132 mycroft }
865 1.132 mycroft
866 1.135 mycroft /*
867 1.135 mycroft * Unlock and wake up any waiters.
868 1.135 mycroft */
869 1.132 mycroft void
870 1.132 mycroft wdunlock(wd)
871 1.132 mycroft struct wd_softc *wd;
872 1.132 mycroft {
873 1.132 mycroft
874 1.132 mycroft wd->sc_flags &= ~WDF_LOCKED;
875 1.132 mycroft if ((wd->sc_flags & WDF_WANTED) != 0) {
876 1.132 mycroft wd->sc_flags &= ~WDF_WANTED;
877 1.132 mycroft wakeup(wd);
878 1.132 mycroft }
879 1.132 mycroft }
880 1.132 mycroft
881 1.1 cgd int
882 1.108 mycroft wdopen(dev, flag, fmt)
883 1.55 mycroft dev_t dev;
884 1.93 mycroft int flag, fmt;
885 1.1 cgd {
886 1.135 mycroft struct wd_softc *wd;
887 1.135 mycroft int unit, part;
888 1.109 mycroft int error;
889 1.3 deraadt
890 1.108 mycroft unit = WDUNIT(dev);
891 1.108 mycroft if (unit >= wdcd.cd_ndevs)
892 1.37 mycroft return ENXIO;
893 1.108 mycroft wd = wdcd.cd_devs[unit];
894 1.64 mycroft if (wd == 0)
895 1.37 mycroft return ENXIO;
896 1.3 deraadt
897 1.135 mycroft if (error = wdlock(wd))
898 1.132 mycroft return error;
899 1.3 deraadt
900 1.109 mycroft if (wd->sc_dk.dk_openmask != 0) {
901 1.109 mycroft /*
902 1.109 mycroft * If any partition is open, but the disk has been invalidated,
903 1.109 mycroft * disallow further opens.
904 1.109 mycroft */
905 1.136 mycroft if ((wd->sc_flags & WDF_LOADED) == 0) {
906 1.136 mycroft error = EIO;
907 1.136 mycroft goto bad3;
908 1.136 mycroft }
909 1.109 mycroft } else {
910 1.108 mycroft if ((wd->sc_flags & WDF_LOADED) == 0) {
911 1.108 mycroft wd->sc_flags |= WDF_LOADED;
912 1.108 mycroft
913 1.108 mycroft /* Load the physical device parameters. */
914 1.108 mycroft if (wd_get_parms(wd) != 0) {
915 1.108 mycroft error = ENXIO;
916 1.108 mycroft goto bad2;
917 1.108 mycroft }
918 1.108 mycroft
919 1.108 mycroft /* Load the partition info if not already loaded. */
920 1.108 mycroft wdgetdisklabel(wd);
921 1.108 mycroft }
922 1.135 mycroft }
923 1.108 mycroft
924 1.135 mycroft part = WDPART(dev);
925 1.108 mycroft
926 1.109 mycroft /* Check that the partition exists. */
927 1.93 mycroft if (part != RAW_PART &&
928 1.144 thorpej (part >= wd->sc_dk.dk_label->d_npartitions ||
929 1.144 thorpej wd->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
930 1.93 mycroft error = ENXIO;
931 1.93 mycroft goto bad;
932 1.93 mycroft }
933 1.3 deraadt
934 1.64 mycroft /* Insure only one open at a time. */
935 1.3 deraadt switch (fmt) {
936 1.3 deraadt case S_IFCHR:
937 1.94 mycroft wd->sc_dk.dk_copenmask |= (1 << part);
938 1.3 deraadt break;
939 1.3 deraadt case S_IFBLK:
940 1.94 mycroft wd->sc_dk.dk_bopenmask |= (1 << part);
941 1.3 deraadt break;
942 1.3 deraadt }
943 1.94 mycroft wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
944 1.60 mycroft
945 1.135 mycroft wdunlock(wd);
946 1.37 mycroft return 0;
947 1.93 mycroft
948 1.108 mycroft bad2:
949 1.108 mycroft wd->sc_flags &= ~WDF_LOADED;
950 1.108 mycroft
951 1.93 mycroft bad:
952 1.118 mycroft if (wd->sc_dk.dk_openmask == 0) {
953 1.108 mycroft }
954 1.108 mycroft
955 1.136 mycroft bad3:
956 1.135 mycroft wdunlock(wd);
957 1.93 mycroft return error;
958 1.1 cgd }
959 1.1 cgd
960 1.135 mycroft int
961 1.135 mycroft wdclose(dev, flag, fmt)
962 1.135 mycroft dev_t dev;
963 1.135 mycroft int flag, fmt;
964 1.135 mycroft {
965 1.135 mycroft struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
966 1.135 mycroft int part = WDPART(dev);
967 1.135 mycroft int error;
968 1.135 mycroft
969 1.135 mycroft if (error = wdlock(wd))
970 1.135 mycroft return error;
971 1.135 mycroft
972 1.135 mycroft switch (fmt) {
973 1.135 mycroft case S_IFCHR:
974 1.135 mycroft wd->sc_dk.dk_copenmask &= ~(1 << part);
975 1.135 mycroft break;
976 1.135 mycroft case S_IFBLK:
977 1.135 mycroft wd->sc_dk.dk_bopenmask &= ~(1 << part);
978 1.135 mycroft break;
979 1.135 mycroft }
980 1.135 mycroft wd->sc_dk.dk_openmask = wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
981 1.135 mycroft
982 1.135 mycroft if (wd->sc_dk.dk_openmask == 0) {
983 1.135 mycroft /* XXXX Must wait for I/O to complete! */
984 1.135 mycroft }
985 1.135 mycroft
986 1.135 mycroft wdunlock(wd);
987 1.135 mycroft return 0;
988 1.135 mycroft }
989 1.135 mycroft
990 1.135 mycroft /*
991 1.135 mycroft * Fabricate a default disk label, and try to read the correct one.
992 1.135 mycroft */
993 1.108 mycroft void
994 1.108 mycroft wdgetdisklabel(wd)
995 1.108 mycroft struct wd_softc *wd;
996 1.108 mycroft {
997 1.144 thorpej struct disklabel *lp = wd->sc_dk.dk_label;
998 1.108 mycroft char *errstring;
999 1.108 mycroft
1000 1.142 mycroft bzero(lp, sizeof(struct disklabel));
1001 1.144 thorpej bzero(wd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
1002 1.108 mycroft
1003 1.142 mycroft lp->d_secsize = DEV_BSIZE;
1004 1.142 mycroft lp->d_ntracks = wd->sc_params.wdp_heads;
1005 1.142 mycroft lp->d_nsectors = wd->sc_params.wdp_sectors;
1006 1.142 mycroft lp->d_ncylinders = wd->sc_params.wdp_cylinders;
1007 1.142 mycroft lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1008 1.108 mycroft
1009 1.108 mycroft #if 0
1010 1.142 mycroft strncpy(lp->d_typename, "ST506 disk", 16);
1011 1.142 mycroft lp->d_type = DTYPE_ST506;
1012 1.108 mycroft #endif
1013 1.142 mycroft strncpy(lp->d_packname, wd->sc_params.wdp_model, 16);
1014 1.142 mycroft lp->d_secperunit = lp->d_secpercyl * lp->d_ncylinders;
1015 1.142 mycroft lp->d_rpm = 3600;
1016 1.142 mycroft lp->d_interleave = 1;
1017 1.142 mycroft lp->d_flags = 0;
1018 1.142 mycroft
1019 1.142 mycroft lp->d_partitions[RAW_PART].p_offset = 0;
1020 1.142 mycroft lp->d_partitions[RAW_PART].p_size =
1021 1.142 mycroft lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
1022 1.142 mycroft lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
1023 1.142 mycroft lp->d_npartitions = RAW_PART + 1;
1024 1.142 mycroft
1025 1.142 mycroft lp->d_magic = DISKMAGIC;
1026 1.142 mycroft lp->d_magic2 = DISKMAGIC;
1027 1.142 mycroft lp->d_checksum = dkcksum(lp);
1028 1.108 mycroft
1029 1.113 mycroft wd->sc_badsect[0] = -1;
1030 1.113 mycroft
1031 1.108 mycroft if (wd->sc_state > RECAL)
1032 1.108 mycroft wd->sc_state = RECAL;
1033 1.108 mycroft errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
1034 1.144 thorpej wdstrategy, lp, wd->sc_dk.dk_cpulabel);
1035 1.108 mycroft if (errstring) {
1036 1.108 mycroft /*
1037 1.108 mycroft * This probably happened because the drive's default
1038 1.108 mycroft * geometry doesn't match the DOS geometry. We
1039 1.108 mycroft * assume the DOS geometry is now in the label and try
1040 1.108 mycroft * again. XXX This is a kluge.
1041 1.108 mycroft */
1042 1.108 mycroft if (wd->sc_state > GEOMETRY)
1043 1.108 mycroft wd->sc_state = GEOMETRY;
1044 1.108 mycroft errstring = readdisklabel(MAKEWDDEV(0, wd->sc_dev.dv_unit, RAW_PART),
1045 1.144 thorpej wdstrategy, lp, wd->sc_dk.dk_cpulabel);
1046 1.108 mycroft }
1047 1.108 mycroft if (errstring) {
1048 1.108 mycroft printf("%s: %s\n", wd->sc_dev.dv_xname, errstring);
1049 1.108 mycroft return;
1050 1.108 mycroft }
1051 1.108 mycroft
1052 1.108 mycroft if (wd->sc_state > GEOMETRY)
1053 1.108 mycroft wd->sc_state = GEOMETRY;
1054 1.142 mycroft if ((lp->d_flags & D_BADSECT) != 0)
1055 1.108 mycroft bad144intern(wd);
1056 1.108 mycroft }
1057 1.108 mycroft
1058 1.1 cgd /*
1059 1.135 mycroft * Implement operations needed before read/write.
1060 1.1 cgd * Returns 0 if operation still in progress, 1 if completed.
1061 1.1 cgd */
1062 1.135 mycroft int
1063 1.69 mycroft wdcontrol(wd)
1064 1.69 mycroft struct wd_softc *wd;
1065 1.1 cgd {
1066 1.64 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
1067 1.3 deraadt
1068 1.64 mycroft switch (wd->sc_state) {
1069 1.110 mycroft case RECAL: /* Set SDH, step rate, do recal. */
1070 1.110 mycroft if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0) {
1071 1.113 mycroft wderror(wd, NULL, "wdcontrol: recal failed (1)");
1072 1.113 mycroft goto bad;
1073 1.21 deraadt }
1074 1.69 mycroft wd->sc_state = RECAL_WAIT;
1075 1.116 mycroft break;
1076 1.55 mycroft
1077 1.69 mycroft case RECAL_WAIT:
1078 1.69 mycroft if (wdc->sc_status & WDCS_ERR) {
1079 1.113 mycroft wderror(wd, NULL, "wdcontrol: recal failed (2)");
1080 1.113 mycroft goto bad;
1081 1.1 cgd }
1082 1.69 mycroft /* fall through */
1083 1.69 mycroft case GEOMETRY:
1084 1.116 mycroft if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0)
1085 1.116 mycroft goto multimode;
1086 1.69 mycroft if (wdsetctlr(wd) != 0) {
1087 1.69 mycroft /* Already printed a message. */
1088 1.113 mycroft goto bad;
1089 1.69 mycroft }
1090 1.69 mycroft wd->sc_state = GEOMETRY_WAIT;
1091 1.116 mycroft break;
1092 1.69 mycroft
1093 1.69 mycroft case GEOMETRY_WAIT:
1094 1.69 mycroft if (wdc->sc_status & WDCS_ERR) {
1095 1.69 mycroft wderror(wd, NULL, "wdcontrol: geometry failed");
1096 1.113 mycroft goto bad;
1097 1.113 mycroft }
1098 1.113 mycroft /* fall through */
1099 1.113 mycroft case MULTIMODE:
1100 1.116 mycroft multimode:
1101 1.113 mycroft if (wd->sc_mode != WDM_PIOMULTI)
1102 1.113 mycroft goto open;
1103 1.113 mycroft outb(wdc->sc_iobase+wd_seccnt, wd->sc_multiple);
1104 1.113 mycroft if (wdcommandshort(wdc, wd->sc_drive, WDCC_SETMULTI) != 0) {
1105 1.113 mycroft wderror(wd, NULL, "wdcontrol: setmulti failed (1)");
1106 1.113 mycroft goto bad;
1107 1.69 mycroft }
1108 1.113 mycroft wd->sc_state = MULTIMODE_WAIT;
1109 1.116 mycroft break;
1110 1.69 mycroft
1111 1.113 mycroft case MULTIMODE_WAIT:
1112 1.113 mycroft if (wdc->sc_status & WDCS_ERR) {
1113 1.113 mycroft wderror(wd, NULL, "wdcontrol: setmulti failed (2)");
1114 1.113 mycroft goto bad;
1115 1.113 mycroft }
1116 1.113 mycroft /* fall through */
1117 1.116 mycroft case OPEN:
1118 1.113 mycroft open:
1119 1.78 mycroft wdc->sc_errors = 0;
1120 1.64 mycroft wd->sc_state = OPEN;
1121 1.1 cgd /*
1122 1.63 mycroft * The rest of the initialization can be done by normal means.
1123 1.1 cgd */
1124 1.37 mycroft return 1;
1125 1.113 mycroft
1126 1.113 mycroft bad:
1127 1.113 mycroft wdcunwedge(wdc);
1128 1.113 mycroft return 0;
1129 1.1 cgd }
1130 1.1 cgd
1131 1.116 mycroft wdc->sc_flags |= WDCF_ACTIVE;
1132 1.116 mycroft timeout(wdctimeout, wdc, WAITTIME);
1133 1.116 mycroft return 0;
1134 1.1 cgd }
1135 1.1 cgd
1136 1.1 cgd /*
1137 1.135 mycroft * Wait for the drive to become ready and send a command.
1138 1.135 mycroft * Return -1 if busy for too long or 0 otherwise.
1139 1.64 mycroft * Assumes interrupts are blocked.
1140 1.1 cgd */
1141 1.135 mycroft int
1142 1.105 mycroft wdcommand(wd, command, cylin, head, sector, count)
1143 1.64 mycroft struct wd_softc *wd;
1144 1.105 mycroft int command;
1145 1.60 mycroft int cylin, head, sector, count;
1146 1.3 deraadt {
1147 1.64 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
1148 1.107 mycroft int iobase = wdc->sc_iobase;
1149 1.60 mycroft int stat;
1150 1.3 deraadt
1151 1.116 mycroft /* Select drive, head, and addressing mode. */
1152 1.74 mycroft outb(iobase+wd_sdh, WDSD_IBM | (wd->sc_drive << 4) | head);
1153 1.90 mycroft
1154 1.90 mycroft /* Wait for it to become ready to accept a command. */
1155 1.110 mycroft if (command == WDCC_IDP)
1156 1.64 mycroft stat = wait_for_unbusy(wdc);
1157 1.60 mycroft else
1158 1.110 mycroft stat = wdcwait(wdc, WDCS_DRDY);
1159 1.60 mycroft if (stat < 0)
1160 1.60 mycroft return -1;
1161 1.3 deraadt
1162 1.64 mycroft /* Load parameters. */
1163 1.144 thorpej if (wd->sc_dk.dk_label->d_type == DTYPE_ST506)
1164 1.144 thorpej outb(iobase+wd_precomp, wd->sc_dk.dk_label->d_precompcyl / 4);
1165 1.110 mycroft else
1166 1.110 mycroft outb(iobase+wd_features, 0);
1167 1.64 mycroft outb(iobase+wd_cyl_lo, cylin);
1168 1.64 mycroft outb(iobase+wd_cyl_hi, cylin >> 8);
1169 1.64 mycroft outb(iobase+wd_sector, sector);
1170 1.64 mycroft outb(iobase+wd_seccnt, count);
1171 1.60 mycroft
1172 1.105 mycroft /* Send command. */
1173 1.105 mycroft outb(iobase+wd_command, command);
1174 1.105 mycroft
1175 1.105 mycroft return 0;
1176 1.105 mycroft }
1177 1.105 mycroft
1178 1.135 mycroft /*
1179 1.135 mycroft * Simplified version of wdcommand().
1180 1.135 mycroft */
1181 1.105 mycroft int
1182 1.105 mycroft wdcommandshort(wdc, drive, command)
1183 1.105 mycroft struct wdc_softc *wdc;
1184 1.105 mycroft int drive;
1185 1.105 mycroft int command;
1186 1.105 mycroft {
1187 1.107 mycroft int iobase = wdc->sc_iobase;
1188 1.105 mycroft
1189 1.105 mycroft /* Select drive. */
1190 1.105 mycroft outb(iobase+wd_sdh, WDSD_IBM | (drive << 4));
1191 1.105 mycroft
1192 1.110 mycroft if (wdcwait(wdc, WDCS_DRDY) < 0)
1193 1.105 mycroft return -1;
1194 1.105 mycroft
1195 1.105 mycroft outb(iobase+wd_command, command);
1196 1.40 mycroft
1197 1.64 mycroft return 0;
1198 1.1 cgd }
1199 1.1 cgd
1200 1.1 cgd /*
1201 1.135 mycroft * Tell the drive what geometry to use.
1202 1.1 cgd */
1203 1.135 mycroft int
1204 1.64 mycroft wdsetctlr(wd)
1205 1.64 mycroft struct wd_softc *wd;
1206 1.3 deraadt {
1207 1.64 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
1208 1.63 mycroft
1209 1.44 mycroft #ifdef WDDEBUG
1210 1.112 mycroft printf("wd(%d,%d) C%dH%dS%d\n", wd->sc_dev.dv_unit, wd->sc_drive,
1211 1.144 thorpej wd->sc_dk.dk_label->d_ncylinders, wd->sc_dk.dk_label->d_ntracks,
1212 1.144 thorpej wd->sc_dk.dk_label->d_nsectors);
1213 1.44 mycroft #endif
1214 1.3 deraadt
1215 1.144 thorpej if (wdcommand(wd, WDCC_IDP, wd->sc_dk.dk_label->d_ncylinders,
1216 1.144 thorpej wd->sc_dk.dk_label->d_ntracks - 1, 0,
1217 1.144 thorpej wd->sc_dk.dk_label->d_nsectors) != 0) {
1218 1.105 mycroft wderror(wd, NULL, "wdsetctlr: geometry upload failed");
1219 1.51 mycroft return -1;
1220 1.57 mycroft }
1221 1.69 mycroft
1222 1.60 mycroft return 0;
1223 1.1 cgd }
1224 1.1 cgd
1225 1.1 cgd /*
1226 1.135 mycroft * Get the drive parameters, if ESDI or ATA, or create fake ones for ST506.
1227 1.1 cgd */
1228 1.108 mycroft int
1229 1.108 mycroft wd_get_parms(wd)
1230 1.64 mycroft struct wd_softc *wd;
1231 1.3 deraadt {
1232 1.64 mycroft struct wdc_softc *wdc = (void *)wd->sc_dev.dv_parent;
1233 1.63 mycroft int i;
1234 1.1 cgd char tb[DEV_BSIZE];
1235 1.124 mycroft int s, error;
1236 1.124 mycroft
1237 1.124 mycroft /*
1238 1.124 mycroft * XXX
1239 1.135 mycroft * The locking done here, and the length of time this may keep the rest
1240 1.135 mycroft * of the system suspended, is a kluge. This should be rewritten to
1241 1.135 mycroft * set up a transfer and queue it through wdstart(), but it's called
1242 1.135 mycroft * infrequently enough that this isn't a pressing matter.
1243 1.124 mycroft */
1244 1.124 mycroft
1245 1.124 mycroft s = splbio();
1246 1.124 mycroft
1247 1.124 mycroft while ((wdc->sc_flags & WDCF_ACTIVE) != 0) {
1248 1.124 mycroft wdc->sc_flags |= WDCF_WANTED;
1249 1.124 mycroft if ((error = tsleep(wdc, PRIBIO | PCATCH, "wdprm", 0)) != 0) {
1250 1.124 mycroft splx(s);
1251 1.124 mycroft return error;
1252 1.124 mycroft }
1253 1.124 mycroft }
1254 1.124 mycroft
1255 1.110 mycroft if (wdcommandshort(wdc, wd->sc_drive, WDCC_IDENTIFY) != 0 ||
1256 1.64 mycroft wait_for_drq(wdc) != 0) {
1257 1.60 mycroft /*
1258 1.105 mycroft * We `know' there's a drive here; just assume it's old.
1259 1.135 mycroft * This geometry is only used to read the MBR and print a
1260 1.135 mycroft * (false) attach message.
1261 1.60 mycroft */
1262 1.144 thorpej strncpy(wd->sc_dk.dk_label->d_typename, "ST506",
1263 1.144 thorpej sizeof wd->sc_dk.dk_label->d_typename);
1264 1.144 thorpej wd->sc_dk.dk_label->d_type = DTYPE_ST506;
1265 1.108 mycroft
1266 1.108 mycroft strncpy(wd->sc_params.wdp_model, "unknown",
1267 1.64 mycroft sizeof wd->sc_params.wdp_model);
1268 1.110 mycroft wd->sc_params.wdp_config = WD_CFG_FIXED;
1269 1.110 mycroft wd->sc_params.wdp_cylinders = 1024;
1270 1.108 mycroft wd->sc_params.wdp_heads = 8;
1271 1.108 mycroft wd->sc_params.wdp_sectors = 17;
1272 1.111 mycroft wd->sc_params.wdp_maxmulti = 0;
1273 1.111 mycroft wd->sc_params.wdp_usedmovsd = 0;
1274 1.110 mycroft wd->sc_params.wdp_capabilities = 0;
1275 1.60 mycroft } else {
1276 1.144 thorpej strncpy(wd->sc_dk.dk_label->d_typename, "ESDI/IDE",
1277 1.144 thorpej sizeof wd->sc_dk.dk_label->d_typename);
1278 1.144 thorpej wd->sc_dk.dk_label->d_type = DTYPE_ESDI;
1279 1.124 mycroft
1280 1.135 mycroft /* Read in parameter block. */
1281 1.64 mycroft insw(wdc->sc_iobase+wd_data, tb, sizeof(tb) / sizeof(short));
1282 1.108 mycroft bcopy(tb, &wd->sc_params, sizeof(struct wdparams));
1283 1.13 deraadt
1284 1.64 mycroft /* Shuffle string byte order. */
1285 1.108 mycroft for (i = 0; i < sizeof(wd->sc_params.wdp_model); i += 2) {
1286 1.13 deraadt u_short *p;
1287 1.108 mycroft p = (u_short *)(wd->sc_params.wdp_model + i);
1288 1.13 deraadt *p = ntohs(*p);
1289 1.13 deraadt }
1290 1.8 deraadt }
1291 1.13 deraadt
1292 1.124 mycroft /* Clear any leftover interrupt. */
1293 1.64 mycroft (void) inb(wdc->sc_iobase+wd_status);
1294 1.108 mycroft
1295 1.135 mycroft /* Restart the queue. */
1296 1.124 mycroft wdcstart(wdc);
1297 1.124 mycroft
1298 1.124 mycroft splx(s);
1299 1.108 mycroft return 0;
1300 1.1 cgd }
1301 1.1 cgd
1302 1.1 cgd int
1303 1.132 mycroft wdioctl(dev, cmd, addr, flag, p)
1304 1.55 mycroft dev_t dev;
1305 1.132 mycroft u_long cmd;
1306 1.55 mycroft caddr_t addr;
1307 1.55 mycroft int flag;
1308 1.55 mycroft struct proc *p;
1309 1.1 cgd {
1310 1.108 mycroft struct wd_softc *wd = wdcd.cd_devs[WDUNIT(dev)];
1311 1.54 mycroft int error;
1312 1.3 deraadt
1313 1.108 mycroft if ((wd->sc_flags & WDF_LOADED) == 0)
1314 1.108 mycroft return EIO;
1315 1.108 mycroft
1316 1.132 mycroft switch (cmd) {
1317 1.1 cgd case DIOCSBAD:
1318 1.3 deraadt if ((flag & FWRITE) == 0)
1319 1.54 mycroft return EBADF;
1320 1.144 thorpej wd->sc_dk.dk_cpulabel->bad = *(struct dkbad *)addr;
1321 1.144 thorpej wd->sc_dk.dk_label->d_flags |= D_BADSECT;
1322 1.64 mycroft bad144intern(wd);
1323 1.54 mycroft return 0;
1324 1.1 cgd
1325 1.1 cgd case DIOCGDINFO:
1326 1.144 thorpej *(struct disklabel *)addr = *(wd->sc_dk.dk_label);
1327 1.54 mycroft return 0;
1328 1.3 deraadt
1329 1.3 deraadt case DIOCGPART:
1330 1.144 thorpej ((struct partinfo *)addr)->disklab = wd->sc_dk.dk_label;
1331 1.3 deraadt ((struct partinfo *)addr)->part =
1332 1.144 thorpej &wd->sc_dk.dk_label->d_partitions[WDPART(dev)];
1333 1.54 mycroft return 0;
1334 1.3 deraadt
1335 1.132 mycroft case DIOCWDINFO:
1336 1.3 deraadt case DIOCSDINFO:
1337 1.3 deraadt if ((flag & FWRITE) == 0)
1338 1.54 mycroft return EBADF;
1339 1.132 mycroft
1340 1.135 mycroft if (error = wdlock(wd))
1341 1.132 mycroft return error;
1342 1.135 mycroft wd->sc_flags |= WDF_LABELLING;
1343 1.132 mycroft
1344 1.144 thorpej error = setdisklabel(wd->sc_dk.dk_label,
1345 1.128 mycroft (struct disklabel *)addr, /*wd->sc_dk.dk_openmask : */0,
1346 1.144 thorpej wd->sc_dk.dk_cpulabel);
1347 1.3 deraadt if (error == 0) {
1348 1.69 mycroft if (wd->sc_state > GEOMETRY)
1349 1.69 mycroft wd->sc_state = GEOMETRY;
1350 1.132 mycroft if (cmd == DIOCWDINFO)
1351 1.132 mycroft error = writedisklabel(WDLABELDEV(dev),
1352 1.144 thorpej wdstrategy, wd->sc_dk.dk_label,
1353 1.144 thorpej wd->sc_dk.dk_cpulabel);
1354 1.1 cgd }
1355 1.132 mycroft
1356 1.132 mycroft wd->sc_flags &= ~WDF_LABELLING;
1357 1.132 mycroft wdunlock(wd);
1358 1.54 mycroft return error;
1359 1.3 deraadt
1360 1.44 mycroft case DIOCWLABEL:
1361 1.3 deraadt if ((flag & FWRITE) == 0)
1362 1.54 mycroft return EBADF;
1363 1.93 mycroft if (*(int *)addr)
1364 1.93 mycroft wd->sc_flags |= WDF_WLABEL;
1365 1.93 mycroft else
1366 1.93 mycroft wd->sc_flags &= ~WDF_WLABEL;
1367 1.54 mycroft return 0;
1368 1.3 deraadt
1369 1.1 cgd #ifdef notyet
1370 1.1 cgd case DIOCWFORMAT:
1371 1.1 cgd if ((flag & FWRITE) == 0)
1372 1.54 mycroft return EBADF;
1373 1.54 mycroft {
1374 1.54 mycroft register struct format_op *fop;
1375 1.54 mycroft struct iovec aiov;
1376 1.54 mycroft struct uio auio;
1377 1.3 deraadt
1378 1.54 mycroft fop = (struct format_op *)addr;
1379 1.54 mycroft aiov.iov_base = fop->df_buf;
1380 1.54 mycroft aiov.iov_len = fop->df_count;
1381 1.54 mycroft auio.uio_iov = &aiov;
1382 1.54 mycroft auio.uio_iovcnt = 1;
1383 1.54 mycroft auio.uio_resid = fop->df_count;
1384 1.54 mycroft auio.uio_segflg = 0;
1385 1.54 mycroft auio.uio_offset =
1386 1.144 thorpej fop->df_startblk * wd->sc_dk.dk_label->d_secsize;
1387 1.83 pk auio.uio_procp = p;
1388 1.64 mycroft error = physio(wdformat, NULL, dev, B_WRITE, minphys,
1389 1.64 mycroft &auio);
1390 1.54 mycroft fop->df_count -= auio.uio_resid;
1391 1.64 mycroft fop->df_reg[0] = wdc->sc_status;
1392 1.64 mycroft fop->df_reg[1] = wdc->sc_error;
1393 1.54 mycroft return error;
1394 1.54 mycroft }
1395 1.1 cgd #endif
1396 1.144 thorpej
1397 1.1 cgd default:
1398 1.54 mycroft return ENOTTY;
1399 1.1 cgd }
1400 1.54 mycroft
1401 1.54 mycroft #ifdef DIAGNOSTIC
1402 1.54 mycroft panic("wdioctl: impossible");
1403 1.54 mycroft #endif
1404 1.1 cgd }
1405 1.1 cgd
1406 1.44 mycroft #ifdef B_FORMAT
1407 1.1 cgd int
1408 1.1 cgd wdformat(struct buf *bp)
1409 1.1 cgd {
1410 1.44 mycroft
1411 1.1 cgd bp->b_flags |= B_FORMAT;
1412 1.37 mycroft return wdstrategy(bp);
1413 1.1 cgd }
1414 1.1 cgd #endif
1415 1.1 cgd
1416 1.1 cgd int
1417 1.55 mycroft wdsize(dev)
1418 1.55 mycroft dev_t dev;
1419 1.1 cgd {
1420 1.64 mycroft struct wd_softc *wd;
1421 1.108 mycroft int part;
1422 1.108 mycroft int size;
1423 1.3 deraadt
1424 1.108 mycroft if (wdopen(dev, 0, S_IFBLK) != 0)
1425 1.37 mycroft return -1;
1426 1.108 mycroft wd = wdcd.cd_devs[WDUNIT(dev)];
1427 1.108 mycroft part = WDPART(dev);
1428 1.144 thorpej if (wd->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
1429 1.108 mycroft size = -1;
1430 1.108 mycroft else
1431 1.144 thorpej size = wd->sc_dk.dk_label->d_partitions[part].p_size;
1432 1.108 mycroft if (wdclose(dev, 0, S_IFBLK) != 0)
1433 1.37 mycroft return -1;
1434 1.108 mycroft return size;
1435 1.1 cgd }
1436 1.1 cgd
1437 1.140 cgd
1438 1.140 cgd #ifndef __BDEVSW_DUMP_OLD_TYPE
1439 1.140 cgd /* #define WD_DUMP_NOT_TRUSTED if you just want to watch */
1440 1.140 cgd static int wddoingadump;
1441 1.140 cgd static int wddumprecalibrated;
1442 1.140 cgd
1443 1.64 mycroft /*
1444 1.64 mycroft * Dump core after a system crash.
1445 1.64 mycroft */
1446 1.1 cgd int
1447 1.140 cgd wddump(dev, blkno, va, size)
1448 1.140 cgd dev_t dev;
1449 1.140 cgd daddr_t blkno;
1450 1.140 cgd caddr_t va;
1451 1.140 cgd size_t size;
1452 1.140 cgd {
1453 1.140 cgd struct wd_softc *wd; /* disk unit to do the I/O */
1454 1.140 cgd struct wdc_softc *wdc; /* disk controller to do the I/O */
1455 1.140 cgd struct disklabel *lp; /* disk's disklabel */
1456 1.140 cgd int unit, part;
1457 1.142 mycroft int nblks; /* total number of sectors left to write */
1458 1.140 cgd
1459 1.140 cgd /* Check if recursive dump; if so, punt. */
1460 1.116 mycroft if (wddoingadump)
1461 1.116 mycroft return EFAULT;
1462 1.142 mycroft wddoingadump = 1;
1463 1.140 cgd
1464 1.142 mycroft unit = WDUNIT(dev);
1465 1.142 mycroft if (unit >= wdcd.cd_ndevs)
1466 1.142 mycroft return ENXIO;
1467 1.142 mycroft wd = wdcd.cd_devs[unit];
1468 1.142 mycroft if (wd == 0)
1469 1.142 mycroft return ENXIO;
1470 1.60 mycroft
1471 1.140 cgd part = WDPART(dev);
1472 1.140 cgd
1473 1.140 cgd /* Make sure it was initialized. */
1474 1.140 cgd if (wd->sc_state < OPEN)
1475 1.37 mycroft return ENXIO;
1476 1.140 cgd
1477 1.142 mycroft wdc = (void *)wd->sc_dev.dv_parent;
1478 1.46 mycroft
1479 1.140 cgd /* Convert to disk sectors. Request must be a multiple of size. */
1480 1.144 thorpej lp = wd->sc_dk.dk_label;
1481 1.142 mycroft if ((size % lp->d_secsize) != 0)
1482 1.140 cgd return EFAULT;
1483 1.142 mycroft nblks = size / lp->d_secsize;
1484 1.142 mycroft blkno = blkno / (lp->d_secsize / DEV_BSIZE);
1485 1.116 mycroft
1486 1.64 mycroft /* Check transfer bounds against partition size. */
1487 1.142 mycroft if ((blkno < 0) || ((blkno + nblks) > lp->d_partitions[part].p_size))
1488 1.140 cgd return EINVAL;
1489 1.140 cgd
1490 1.140 cgd /* Offset block number to start of partition. */
1491 1.142 mycroft blkno += lp->d_partitions[part].p_offset;
1492 1.60 mycroft
1493 1.140 cgd /* Recalibrate, if first dump transfer. */
1494 1.140 cgd if (wddumprecalibrated == 0) {
1495 1.140 cgd wddumprecalibrated = 1;
1496 1.140 cgd if (wdcommandshort(wdc, wd->sc_drive, WDCC_RECAL) != 0 ||
1497 1.140 cgd wait_for_ready(wdc) != 0 || wdsetctlr(wd) != 0 ||
1498 1.140 cgd wait_for_ready(wdc) != 0) {
1499 1.140 cgd wderror(wd, NULL, "wddump: recal failed");
1500 1.140 cgd return EIO;
1501 1.140 cgd }
1502 1.63 mycroft }
1503 1.140 cgd
1504 1.142 mycroft while (nblks > 0) {
1505 1.142 mycroft daddr_t xlt_blkno = blkno;
1506 1.116 mycroft long cylin, head, sector;
1507 1.116 mycroft
1508 1.116 mycroft if ((lp->d_flags & D_BADSECT) != 0) {
1509 1.116 mycroft long blkdiff;
1510 1.3 deraadt int i;
1511 1.3 deraadt
1512 1.116 mycroft for (i = 0; (blkdiff = wd->sc_badsect[i]) != -1; i++) {
1513 1.140 cgd blkdiff -= xlt_blkno;
1514 1.116 mycroft if (blkdiff < 0)
1515 1.116 mycroft continue;
1516 1.116 mycroft if (blkdiff == 0) {
1517 1.116 mycroft /* Replace current block of transfer. */
1518 1.140 cgd xlt_blkno = lp->d_secperunit -
1519 1.140 cgd lp->d_nsectors - i - 1;
1520 1.3 deraadt }
1521 1.116 mycroft break;
1522 1.1 cgd }
1523 1.116 mycroft /* Tranfer is okay now. */
1524 1.116 mycroft }
1525 1.116 mycroft
1526 1.116 mycroft if ((wd->sc_params.wdp_capabilities & WD_CAP_LBA) != 0) {
1527 1.140 cgd sector = (xlt_blkno >> 0) & 0xff;
1528 1.140 cgd cylin = (xlt_blkno >> 8) & 0xffff;
1529 1.140 cgd head = (xlt_blkno >> 24) & 0xf;
1530 1.116 mycroft head |= WDSD_LBA;
1531 1.116 mycroft } else {
1532 1.140 cgd sector = xlt_blkno % lp->d_nsectors;
1533 1.116 mycroft sector++; /* Sectors begin with 1, not 0. */
1534 1.140 cgd xlt_blkno /= lp->d_nsectors;
1535 1.140 cgd head = xlt_blkno % lp->d_ntracks;
1536 1.140 cgd xlt_blkno /= lp->d_ntracks;
1537 1.140 cgd cylin = xlt_blkno;
1538 1.116 mycroft head |= WDSD_CHS;
1539 1.3 deraadt }
1540 1.140 cgd
1541 1.140 cgd #ifndef WD_DUMP_NOT_TRUSTED
1542 1.105 mycroft if (wdcommand(wd, WDCC_WRITE, cylin, head, sector, 1) != 0 ||
1543 1.105 mycroft wait_for_drq(wdc) != 0) {
1544 1.105 mycroft wderror(wd, NULL, "wddump: write failed");
1545 1.51 mycroft return EIO;
1546 1.63 mycroft }
1547 1.3 deraadt
1548 1.142 mycroft outsw(wdc->sc_iobase+wd_data, va, lp->d_secsize >> 1);
1549 1.3 deraadt
1550 1.13 deraadt /* Check data request (should be done). */
1551 1.64 mycroft if (wait_for_ready(wdc) != 0) {
1552 1.64 mycroft wderror(wd, NULL, "wddump: timeout waiting for ready");
1553 1.63 mycroft return EIO;
1554 1.63 mycroft }
1555 1.140 cgd #else /* WD_DUMP_NOT_TRUSTED */
1556 1.140 cgd /* Let's just talk about this first... */
1557 1.140 cgd printf("wd%d: dump addr 0x%x, cylin %d, head %d, sector %d\n",
1558 1.140 cgd unit, va, cylin, head, sector);
1559 1.140 cgd delay(500 * 1000); /* half a second */
1560 1.140 cgd #endif
1561 1.1 cgd
1562 1.140 cgd /* update block count */
1563 1.142 mycroft nblks -= 1;
1564 1.142 mycroft blkno += 1;
1565 1.142 mycroft va += lp->d_secsize;
1566 1.1 cgd }
1567 1.142 mycroft
1568 1.140 cgd wddoingadump = 0;
1569 1.140 cgd return 0;
1570 1.140 cgd }
1571 1.140 cgd #else /* __BDEVSW_DUMP_NEW_TYPE */
1572 1.140 cgd int
1573 1.140 cgd wddump(dev, blkno, va, size)
1574 1.140 cgd dev_t dev;
1575 1.140 cgd daddr_t blkno;
1576 1.140 cgd caddr_t va;
1577 1.140 cgd size_t size;
1578 1.140 cgd {
1579 1.116 mycroft
1580 1.140 cgd /* Not implemented. */
1581 1.140 cgd return ENXIO;
1582 1.1 cgd }
1583 1.140 cgd #endif /* __BDEVSW_DUMP_NEW_TYPE */
1584 1.3 deraadt
1585 1.3 deraadt /*
1586 1.3 deraadt * Internalize the bad sector table.
1587 1.3 deraadt */
1588 1.3 deraadt void
1589 1.64 mycroft bad144intern(wd)
1590 1.64 mycroft struct wd_softc *wd;
1591 1.3 deraadt {
1592 1.144 thorpej struct dkbad *bt = &wd->sc_dk.dk_cpulabel->bad;
1593 1.144 thorpej struct disklabel *lp = wd->sc_dk.dk_label;
1594 1.98 mycroft int i = 0;
1595 1.55 mycroft
1596 1.98 mycroft for (; i < 126; i++) {
1597 1.98 mycroft if (bt->bt_bad[i].bt_cyl == 0xffff)
1598 1.55 mycroft break;
1599 1.64 mycroft wd->sc_badsect[i] =
1600 1.98 mycroft bt->bt_bad[i].bt_cyl * lp->d_secpercyl +
1601 1.98 mycroft (bt->bt_bad[i].bt_trksec >> 8) * lp->d_nsectors +
1602 1.98 mycroft (bt->bt_bad[i].bt_trksec & 0xff);
1603 1.3 deraadt }
1604 1.98 mycroft for (; i < 127; i++)
1605 1.98 mycroft wd->sc_badsect[i] = -1;
1606 1.3 deraadt }
1607 1.3 deraadt
1608 1.135 mycroft int
1609 1.64 mycroft wdcreset(wdc)
1610 1.64 mycroft struct wdc_softc *wdc;
1611 1.21 deraadt {
1612 1.107 mycroft int iobase = wdc->sc_iobase;
1613 1.21 deraadt
1614 1.64 mycroft /* Reset the device. */
1615 1.64 mycroft outb(iobase+wd_ctlr, WDCTL_RST | WDCTL_IDS);
1616 1.61 mycroft delay(1000);
1617 1.64 mycroft outb(iobase+wd_ctlr, WDCTL_IDS);
1618 1.61 mycroft delay(1000);
1619 1.64 mycroft (void) inb(iobase+wd_error);
1620 1.64 mycroft outb(iobase+wd_ctlr, WDCTL_4BIT);
1621 1.64 mycroft
1622 1.64 mycroft if (wait_for_unbusy(wdc) < 0) {
1623 1.64 mycroft printf("%s: reset failed\n", wdc->sc_dev.dv_xname);
1624 1.64 mycroft return 1;
1625 1.64 mycroft }
1626 1.64 mycroft
1627 1.64 mycroft return 0;
1628 1.64 mycroft }
1629 1.64 mycroft
1630 1.135 mycroft void
1631 1.81 cgd wdcrestart(arg)
1632 1.81 cgd void *arg;
1633 1.64 mycroft {
1634 1.135 mycroft struct wdc_softc *wdc = arg;
1635 1.98 mycroft int s;
1636 1.64 mycroft
1637 1.98 mycroft s = splbio();
1638 1.64 mycroft wdcstart(wdc);
1639 1.64 mycroft splx(s);
1640 1.64 mycroft }
1641 1.64 mycroft
1642 1.64 mycroft /*
1643 1.64 mycroft * Unwedge the controller after an unexpected error. We do this by resetting
1644 1.64 mycroft * it, marking all drives for recalibration, and stalling the queue for a short
1645 1.64 mycroft * period to give the reset time to finish.
1646 1.64 mycroft * NOTE: We use a timeout here, so this routine must not be called during
1647 1.64 mycroft * autoconfig or dump.
1648 1.64 mycroft */
1649 1.135 mycroft void
1650 1.64 mycroft wdcunwedge(wdc)
1651 1.64 mycroft struct wdc_softc *wdc;
1652 1.64 mycroft {
1653 1.108 mycroft int unit;
1654 1.64 mycroft
1655 1.98 mycroft untimeout(wdctimeout, wdc);
1656 1.64 mycroft (void) wdcreset(wdc);
1657 1.21 deraadt
1658 1.64 mycroft /* Schedule recalibrate for all drives on this controller. */
1659 1.108 mycroft for (unit = 0; unit < wdcd.cd_ndevs; unit++) {
1660 1.108 mycroft struct wd_softc *wd = wdcd.cd_devs[unit];
1661 1.64 mycroft if (!wd || (void *)wd->sc_dev.dv_parent != wdc)
1662 1.64 mycroft continue;
1663 1.69 mycroft if (wd->sc_state > RECAL)
1664 1.69 mycroft wd->sc_state = RECAL;
1665 1.64 mycroft }
1666 1.64 mycroft
1667 1.69 mycroft wdc->sc_flags |= WDCF_ERROR;
1668 1.78 mycroft ++wdc->sc_errors;
1669 1.64 mycroft
1670 1.64 mycroft /* Wake up in a little bit and restart the operation. */
1671 1.82 mycroft timeout(wdcrestart, wdc, RECOVERYTIME);
1672 1.40 mycroft }
1673 1.40 mycroft
1674 1.40 mycroft int
1675 1.64 mycroft wdcwait(wdc, mask)
1676 1.64 mycroft struct wdc_softc *wdc;
1677 1.49 mycroft int mask;
1678 1.40 mycroft {
1679 1.107 mycroft int iobase = wdc->sc_iobase;
1680 1.40 mycroft int timeout = 0;
1681 1.63 mycroft u_char status;
1682 1.87 mycroft extern int cold;
1683 1.40 mycroft
1684 1.40 mycroft for (;;) {
1685 1.87 mycroft wdc->sc_status = status = inb(iobase+wd_status);
1686 1.110 mycroft if ((status & WDCS_BSY) == 0 && (status & mask) == mask)
1687 1.54 mycroft break;
1688 1.40 mycroft if (++timeout > WDCNDELAY)
1689 1.40 mycroft return -1;
1690 1.61 mycroft delay(WDCDELAY);
1691 1.21 deraadt }
1692 1.87 mycroft if (status & WDCS_ERR) {
1693 1.64 mycroft wdc->sc_error = inb(iobase+wd_error);
1694 1.87 mycroft return WDCS_ERR;
1695 1.87 mycroft }
1696 1.23 deraadt #ifdef WDCNDELAY_DEBUG
1697 1.87 mycroft /* After autoconfig, there should be no long delays. */
1698 1.87 mycroft if (!cold && timeout > WDCNDELAY_DEBUG)
1699 1.87 mycroft printf("%s: warning: busy-wait took %dus\n",
1700 1.73 mycroft wdc->sc_dev.dv_xname, WDCDELAY * timeout);
1701 1.23 deraadt #endif
1702 1.87 mycroft return 0;
1703 1.27 cgd }
1704 1.27 cgd
1705 1.135 mycroft void
1706 1.81 cgd wdctimeout(arg)
1707 1.81 cgd void *arg;
1708 1.27 cgd {
1709 1.81 cgd struct wdc_softc *wdc = (struct wdc_softc *)arg;
1710 1.98 mycroft int s;
1711 1.27 cgd
1712 1.98 mycroft s = splbio();
1713 1.120 mycroft if ((wdc->sc_flags & WDCF_ACTIVE) != 0) {
1714 1.145 mycroft struct wd_softc *wd = wdc->sc_drives.tqh_first;
1715 1.145 mycroft struct buf *bp = wd->sc_q.b_actf;
1716 1.145 mycroft
1717 1.120 mycroft wdc->sc_flags &= ~WDCF_ACTIVE;
1718 1.120 mycroft wderror(wdc, NULL, "lost interrupt");
1719 1.145 mycroft printf("%s: lost interrupt: %sing %d@%s:%d\n",
1720 1.145 mycroft wdc->sc_dev.dv_xname,
1721 1.145 mycroft (bp->b_flags & B_READ) ? "read" : "writ",
1722 1.145 mycroft wd->sc_nblks, wd->sc_dev.dv_xname, wd->sc_blkno);
1723 1.120 mycroft wdcunwedge(wdc);
1724 1.120 mycroft } else
1725 1.120 mycroft wderror(wdc, NULL, "missing untimeout");
1726 1.55 mycroft splx(s);
1727 1.63 mycroft }
1728 1.63 mycroft
1729 1.135 mycroft void
1730 1.64 mycroft wderror(dev, bp, msg)
1731 1.64 mycroft void *dev;
1732 1.63 mycroft struct buf *bp;
1733 1.63 mycroft char *msg;
1734 1.63 mycroft {
1735 1.64 mycroft struct wd_softc *wd = dev;
1736 1.64 mycroft struct wdc_softc *wdc = dev;
1737 1.64 mycroft
1738 1.114 mycroft if (bp) {
1739 1.125 mycroft diskerr(bp, "wd", msg, LOG_PRINTF, wd->sc_skip / DEV_BSIZE,
1740 1.144 thorpej wd->sc_dk.dk_label);
1741 1.114 mycroft printf("\n");
1742 1.114 mycroft } else
1743 1.64 mycroft printf("%s: %s: status %b error %b\n", wdc->sc_dev.dv_xname,
1744 1.64 mycroft msg, wdc->sc_status, WDCS_BITS, wdc->sc_error, WDERR_BITS);
1745 1.21 deraadt }
1746