xd.c revision 1.79 1 /* $NetBSD: xd.c,v 1.79 2009/03/14 15:36:21 dsl Exp $ */
2
3 /*
4 *
5 * Copyright (c) 1995 Charles D. Cranor
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by Charles D. Cranor.
19 * 4. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34 /*
35 *
36 * x d . c x y l o g i c s 7 5 3 / 7 0 5 3 v m e / s m d d r i v e r
37 *
38 * author: Chuck Cranor <chuck (at) ccrc.wustl.edu>
39 * started: 27-Feb-95
40 * references: [1] Xylogics Model 753 User's Manual
41 * part number: 166-753-001, Revision B, May 21, 1988.
42 * "Your Partner For Performance"
43 * [2] other NetBSD disk device drivers
44 *
45 * Special thanks go to Scott E. Campbell of Xylogics, Inc. for taking
46 * the time to answer some of my questions about the 753/7053.
47 *
48 * note: the 753 and the 7053 are programmed the same way, but are
49 * different sizes. the 753 is a 6U VME card, while the 7053 is a 9U
50 * VME card (found in many VME based suns).
51 */
52
53 #include <sys/cdefs.h>
54 __KERNEL_RCSID(0, "$NetBSD: xd.c,v 1.79 2009/03/14 15:36:21 dsl Exp $");
55
56 #undef XDC_DEBUG /* full debug */
57 #define XDC_DIAG /* extra sanity checks */
58 #if defined(DIAGNOSTIC) && !defined(XDC_DIAG)
59 #define XDC_DIAG /* link in with master DIAG option */
60 #endif
61
62 #include <sys/param.h>
63 #include <sys/proc.h>
64 #include <sys/systm.h>
65 #include <sys/kernel.h>
66 #include <sys/file.h>
67 #include <sys/stat.h>
68 #include <sys/ioctl.h>
69 #include <sys/buf.h>
70 #include <sys/bufq.h>
71 #include <sys/uio.h>
72 #include <sys/malloc.h>
73 #include <sys/device.h>
74 #include <sys/disklabel.h>
75 #include <sys/disk.h>
76 #include <sys/syslog.h>
77 #include <sys/dkbad.h>
78 #include <sys/conf.h>
79 #include <sys/kauth.h>
80
81 #include <sys/bus.h>
82 #include <sys/intr.h>
83
84 #if defined(__sparc__) || defined(sun3)
85 #include <dev/sun/disklabel.h>
86 #endif
87
88 #include <dev/vme/vmereg.h>
89 #include <dev/vme/vmevar.h>
90
91 #include <dev/vme/xdreg.h>
92 #include <dev/vme/xdvar.h>
93 #include <dev/vme/xio.h>
94
95 #include "locators.h"
96
97 /*
98 * macros
99 */
100
101 /*
102 * XDC_TWAIT: add iorq "N" to tail of SC's wait queue
103 */
104 #define XDC_TWAIT(SC, N) { \
105 (SC)->waitq[(SC)->waitend] = (N); \
106 (SC)->waitend = ((SC)->waitend + 1) % XDC_MAXIOPB; \
107 (SC)->nwait++; \
108 }
109
110 /*
111 * XDC_HWAIT: add iorq "N" to head of SC's wait queue
112 */
113 #define XDC_HWAIT(SC, N) { \
114 (SC)->waithead = ((SC)->waithead == 0) ? \
115 (XDC_MAXIOPB - 1) : ((SC)->waithead - 1); \
116 (SC)->waitq[(SC)->waithead] = (N); \
117 (SC)->nwait++; \
118 }
119
120 /*
121 * XDC_GET_WAITER: gets the first request waiting on the waitq
122 * and removes it (so it can be submitted)
123 */
124 #define XDC_GET_WAITER(XDCSC, RQ) { \
125 (RQ) = (XDCSC)->waitq[(XDCSC)->waithead]; \
126 (XDCSC)->waithead = ((XDCSC)->waithead + 1) % XDC_MAXIOPB; \
127 xdcsc->nwait--; \
128 }
129
130 /*
131 * XDC_FREE: add iorq "N" to SC's free list
132 */
133 #define XDC_FREE(SC, N) { \
134 (SC)->freereq[(SC)->nfree++] = (N); \
135 (SC)->reqs[N].mode = 0; \
136 if ((SC)->nfree == 1) wakeup(&(SC)->nfree); \
137 }
138
139
140 /*
141 * XDC_RQALLOC: allocate an iorq off the free list (assume nfree > 0).
142 */
143 #define XDC_RQALLOC(XDCSC) (XDCSC)->freereq[--((XDCSC)->nfree)]
144
145 /*
146 * XDC_GO: start iopb ADDR (DVMA addr in a u_long) on XDC
147 */
148 #define XDC_GO(XDC, ADDR) { \
149 (XDC)->xdc_iopbaddr0 = ((ADDR) & 0xff); \
150 (ADDR) = ((ADDR) >> 8); \
151 (XDC)->xdc_iopbaddr1 = ((ADDR) & 0xff); \
152 (ADDR) = ((ADDR) >> 8); \
153 (XDC)->xdc_iopbaddr2 = ((ADDR) & 0xff); \
154 (ADDR) = ((ADDR) >> 8); \
155 (XDC)->xdc_iopbaddr3 = (ADDR); \
156 (XDC)->xdc_iopbamod = XDC_ADDRMOD; \
157 (XDC)->xdc_csr = XDC_ADDIOPB; /* go! */ \
158 }
159
160 /*
161 * XDC_WAIT: wait for XDC's csr "BITS" to come on in "TIME".
162 * LCV is a counter. If it goes to zero then we timed out.
163 */
164 #define XDC_WAIT(XDC, LCV, TIME, BITS) { \
165 (LCV) = (TIME); \
166 while ((LCV) > 0) { \
167 if ((XDC)->xdc_csr & (BITS)) break; \
168 (LCV) = (LCV) - 1; \
169 DELAY(1); \
170 } \
171 }
172
173 /*
174 * XDC_DONE: don't need IORQ, get error code and free (done after xdc_cmd)
175 */
176 #define XDC_DONE(SC,RQ,ER) { \
177 if ((RQ) == XD_ERR_FAIL) { \
178 (ER) = (RQ); \
179 } else { \
180 if ((SC)->ndone-- == XDC_SUBWAITLIM) \
181 wakeup(&(SC)->ndone); \
182 (ER) = (SC)->reqs[RQ].errnum; \
183 XDC_FREE((SC), (RQ)); \
184 } \
185 }
186
187 /*
188 * XDC_ADVANCE: advance iorq's pointers by a number of sectors
189 */
190 #define XDC_ADVANCE(IORQ, N) { \
191 if (N) { \
192 (IORQ)->sectcnt -= (N); \
193 (IORQ)->blockno += (N); \
194 (IORQ)->dbuf += ((N)*XDFM_BPS); \
195 } \
196 }
197
198 /*
199 * note - addresses you can sleep on:
200 * [1] & of xd_softc's "state" (waiting for a chance to attach a drive)
201 * [2] & of xdc_softc's "nfree" (waiting for a free iorq/iopb)
202 * [3] & of xdc_softc's "ndone" (waiting for number of done iorq/iopb's
203 * to drop below XDC_SUBWAITLIM)
204 * [4] & an iorq (waiting for an XD_SUB_WAIT iorq to finish)
205 */
206
207
208 /*
209 * function prototypes
210 * "xdc_*" functions are internal, all others are external interfaces
211 */
212
213 extern int pil_to_vme[]; /* from obio.c */
214
215 /* internals */
216 int xdc_cmd(struct xdc_softc *, int, int, int, int, int, char *, int);
217 const char *xdc_e2str(int);
218 int xdc_error(struct xdc_softc *, struct xd_iorq *,
219 struct xd_iopb *, int, int);
220 int xdc_ioctlcmd(struct xd_softc *, dev_t dev, struct xd_iocmd *);
221 void xdc_perror(struct xd_iorq *, struct xd_iopb *, int);
222 int xdc_piodriver(struct xdc_softc *, int, int);
223 int xdc_remove_iorq(struct xdc_softc *);
224 int xdc_reset(struct xdc_softc *, int, int, int, struct xd_softc *);
225 inline void xdc_rqinit(struct xd_iorq *, struct xdc_softc *,
226 struct xd_softc *, int, u_long, int,
227 void *, struct buf *);
228 void xdc_rqtopb(struct xd_iorq *, struct xd_iopb *, int, int);
229 void xdc_start(struct xdc_softc *, int);
230 int xdc_startbuf(struct xdc_softc *, struct xd_softc *, struct buf *);
231 int xdc_submit_iorq(struct xdc_softc *, int, int);
232 void xdc_tick(void *);
233 void xdc_xdreset(struct xdc_softc *, struct xd_softc *);
234 int xd_dmamem_alloc(bus_dma_tag_t, bus_dmamap_t, bus_dma_segment_t *,
235 int *, bus_size_t, void **, bus_addr_t *);
236 void xd_dmamem_free(bus_dma_tag_t, bus_dmamap_t, bus_dma_segment_t *,
237 int, bus_size_t, void *);
238
239
240 /* machine interrupt hook */
241 int xdcintr(void *);
242
243 /* autoconf */
244 int xdcmatch(struct device *, struct cfdata *, void *);
245 void xdcattach(struct device *, struct device *, void *);
246 int xdmatch(struct device *, struct cfdata *, void *);
247 void xdattach(struct device *, struct device *, void *);
248 static int xdc_probe(void *, bus_space_tag_t, bus_space_handle_t);
249
250 static void xddummystrat(struct buf *);
251 int xdgetdisklabel(struct xd_softc *, void *);
252
253 /* XXX - think about this more.. xd_machdep? */
254 void xdc_md_setup(void);
255 int XDC_DELAY;
256
257 #if defined(__sparc__)
258 #include <sparc/sparc/vaddrs.h>
259 #include <sparc/sparc/cpuvar.h>
260 void xdc_md_setup()
261 {
262 if (CPU_ISSUN4 && cpuinfo.cpu_type == CPUTYP_4_300)
263 XDC_DELAY = XDC_DELAY_4_300;
264 else
265 XDC_DELAY = XDC_DELAY_SPARC;
266 }
267 #elif defined(sun3)
268 void xdc_md_setup()
269 {
270 XDC_DELAY = XDC_DELAY_SUN3;
271 }
272 #else
273 void xdc_md_setup()
274 {
275 XDC_DELAY = 0;
276 }
277 #endif
278
279 /*
280 * cfattach's: device driver interface to autoconfig
281 */
282
283 CFATTACH_DECL(xdc, sizeof(struct xdc_softc),
284 xdcmatch, xdcattach, NULL, NULL);
285
286 CFATTACH_DECL(xd, sizeof(struct xd_softc),
287 xdmatch, xdattach, NULL, NULL);
288
289 extern struct cfdriver xd_cd;
290
291 dev_type_open(xdopen);
292 dev_type_close(xdclose);
293 dev_type_read(xdread);
294 dev_type_write(xdwrite);
295 dev_type_ioctl(xdioctl);
296 dev_type_strategy(xdstrategy);
297 dev_type_dump(xddump);
298 dev_type_size(xdsize);
299
300 const struct bdevsw xd_bdevsw = {
301 xdopen, xdclose, xdstrategy, xdioctl, xddump, xdsize, D_DISK
302 };
303
304 const struct cdevsw xd_cdevsw = {
305 xdopen, xdclose, xdread, xdwrite, xdioctl,
306 nostop, notty, nopoll, nommap, nokqfilter, D_DISK
307 };
308
309 struct xdc_attach_args { /* this is the "aux" args to xdattach */
310 int driveno; /* unit number */
311 int fullmode; /* submit mode */
312 int booting; /* are we booting or not? */
313 };
314
315 /*
316 * dkdriver
317 */
318
319 struct dkdriver xddkdriver = {xdstrategy};
320
321 /*
322 * start: disk label fix code (XXX)
323 */
324
325 static void *xd_labeldata;
326
327 static void
328 xddummystrat(struct buf *bp)
329 {
330 if (bp->b_bcount != XDFM_BPS)
331 panic("xddummystrat");
332 bcopy(xd_labeldata, bp->b_data, XDFM_BPS);
333 bp->b_oflags |= BO_DONE;
334 bp->b_cflags &= ~BC_BUSY;
335 }
336
337 int
338 xdgetdisklabel(struct xd_softc *xd, void *b)
339 {
340 const char *err;
341 #if defined(__sparc__) || defined(sun3)
342 struct sun_disklabel *sdl;
343 #endif
344
345 /* We already have the label data in `b'; setup for dummy strategy */
346 xd_labeldata = b;
347
348 /* Required parameter for readdisklabel() */
349 xd->sc_dk.dk_label->d_secsize = XDFM_BPS;
350
351 err = readdisklabel(MAKEDISKDEV(0, device_unit(&xd->sc_dev), RAW_PART),
352 xddummystrat,
353 xd->sc_dk.dk_label, xd->sc_dk.dk_cpulabel);
354 if (err) {
355 aprint_error_dev(&xd->sc_dev, "%s\n", err);
356 return(XD_ERR_FAIL);
357 }
358
359 #if defined(__sparc__) || defined(sun3)
360 /* Ok, we have the label; fill in `pcyl' if there's SunOS magic */
361 sdl = (struct sun_disklabel *)xd->sc_dk.dk_cpulabel->cd_block;
362 if (sdl->sl_magic == SUN_DKMAGIC) {
363 xd->pcyl = sdl->sl_pcylinders;
364 } else
365 #endif
366 {
367 printf("%s: WARNING: no `pcyl' in disk label.\n",
368 device_xname(&xd->sc_dev));
369 xd->pcyl = xd->sc_dk.dk_label->d_ncylinders +
370 xd->sc_dk.dk_label->d_acylinders;
371 printf("%s: WARNING: guessing pcyl=%d (ncyl+acyl)\n",
372 device_xname(&xd->sc_dev), xd->pcyl);
373 }
374
375 xd->ncyl = xd->sc_dk.dk_label->d_ncylinders;
376 xd->acyl = xd->sc_dk.dk_label->d_acylinders;
377 xd->nhead = xd->sc_dk.dk_label->d_ntracks;
378 xd->nsect = xd->sc_dk.dk_label->d_nsectors;
379 xd->sectpercyl = xd->nhead * xd->nsect;
380 xd->sc_dk.dk_label->d_secsize = XDFM_BPS; /* not handled by
381 * sun->bsd */
382 return(XD_ERR_AOK);
383 }
384
385 /*
386 * end: disk label fix code (XXX)
387 */
388
389 /*
390 * Shorthand for allocating, mapping and loading a DMA buffer
391 */
392 int
393 xd_dmamem_alloc(bus_dma_tag_t tag, bus_dmamap_t map, bus_dma_segment_t *seg, int *nsegp, bus_size_t len, void * *kvap, bus_addr_t *dmap)
394 {
395 int nseg;
396 int error;
397
398 if ((error = bus_dmamem_alloc(tag, len, 0, 0,
399 seg, 1, &nseg, BUS_DMA_NOWAIT)) != 0) {
400 return (error);
401 }
402
403 if ((error = bus_dmamem_map(tag, seg, nseg,
404 len, kvap,
405 BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
406 bus_dmamem_free(tag, seg, nseg);
407 return (error);
408 }
409
410 if ((error = bus_dmamap_load(tag, map,
411 *kvap, len, NULL,
412 BUS_DMA_NOWAIT)) != 0) {
413 bus_dmamem_unmap(tag, *kvap, len);
414 bus_dmamem_free(tag, seg, nseg);
415 return (error);
416 }
417
418 *dmap = map->dm_segs[0].ds_addr;
419 *nsegp = nseg;
420 return (0);
421 }
422
423 void
424 xd_dmamem_free(bus_dma_tag_t tag, bus_dmamap_t map, bus_dma_segment_t *seg, int nseg, bus_size_t len, void * kva)
425 {
426
427 bus_dmamap_unload(tag, map);
428 bus_dmamem_unmap(tag, kva, len);
429 bus_dmamem_free(tag, seg, nseg);
430 }
431
432
433 /*
434 * a u t o c o n f i g f u n c t i o n s
435 */
436
437 /*
438 * xdcmatch: determine if xdc is present or not. we do a
439 * soft reset to detect the xdc.
440 */
441
442 int
443 xdc_probe(void *arg, bus_space_tag_t tag, bus_space_handle_t handle)
444 {
445 struct xdc *xdc = (void *)handle; /* XXX */
446 int del = 0;
447
448 xdc->xdc_csr = XDC_RESET;
449 XDC_WAIT(xdc, del, XDC_RESETUSEC, XDC_RESET);
450 return (del > 0 ? 0 : EIO);
451 }
452
453 int xdcmatch(parent, cf, aux)
454 struct device *parent;
455 struct cfdata *cf;
456 void *aux;
457 {
458 struct vme_attach_args *va = aux;
459 vme_chipset_tag_t ct = va->va_vct;
460 vme_am_t mod;
461 int error;
462
463 mod = VME_AM_A16 | VME_AM_MBO | VME_AM_SUPER | VME_AM_DATA;
464 if (vme_space_alloc(ct, va->r[0].offset, sizeof(struct xdc), mod))
465 return (0);
466
467 error = vme_probe(ct, va->r[0].offset, sizeof(struct xdc),
468 mod, VME_D32, xdc_probe, 0);
469 vme_space_free(va->va_vct, va->r[0].offset, sizeof(struct xdc), mod);
470
471 return (error == 0);
472 }
473
474 /*
475 * xdcattach: attach controller
476 */
477 void
478 xdcattach(parent, self, aux)
479 struct device *parent, *self;
480 void *aux;
481
482 {
483 struct vme_attach_args *va = aux;
484 vme_chipset_tag_t ct = va->va_vct;
485 bus_space_tag_t bt;
486 bus_space_handle_t bh;
487 vme_intr_handle_t ih;
488 vme_am_t mod;
489 struct xdc_softc *xdc = device_private(self);
490 struct xdc_attach_args xa;
491 int lcv, rqno, error;
492 struct xd_iopb_ctrl *ctl;
493 bus_dma_segment_t seg;
494 int rseg;
495 vme_mapresc_t resc;
496 bus_addr_t busaddr;
497
498 xdc_md_setup();
499
500 /* get addressing and intr level stuff from autoconfig and load it
501 * into our xdc_softc. */
502
503 xdc->dmatag = va->va_bdt;
504 mod = VME_AM_A16 | VME_AM_MBO | VME_AM_SUPER | VME_AM_DATA;
505
506 if (vme_space_alloc(ct, va->r[0].offset, sizeof(struct xdc), mod))
507 panic("xdc: vme alloc");
508
509 if (vme_space_map(ct, va->r[0].offset, sizeof(struct xdc),
510 mod, VME_D32, 0, &bt, &bh, &resc) != 0)
511 panic("xdc: vme_map");
512
513 xdc->xdc = (struct xdc *) bh; /* XXX */
514 xdc->ipl = va->ilevel;
515 xdc->vector = va->ivector;
516
517 for (lcv = 0; lcv < XDC_MAXDEV; lcv++)
518 xdc->sc_drives[lcv] = (struct xd_softc *) 0;
519
520 /*
521 * allocate and zero buffers
522 *
523 * note: we simplify the code by allocating the max number of iopbs and
524 * iorq's up front. thus, we avoid linked lists and the costs
525 * associated with them in exchange for wasting a little memory.
526 */
527
528 /* Get DMA handle for misc. transfers */
529 if ((error = vme_dmamap_create(
530 ct, /* VME chip tag */
531 MAXPHYS, /* size */
532 VME_AM_A24, /* address modifier */
533 VME_D32, /* data size */
534 0, /* swap */
535 1, /* nsegments */
536 MAXPHYS, /* maxsegsz */
537 0, /* boundary */
538 BUS_DMA_NOWAIT,
539 &xdc->auxmap)) != 0) {
540
541 aprint_error_dev(&xdc->sc_dev, "DMA buffer map create error %d\n",
542 error);
543 return;
544 }
545
546
547 /* Get DMA handle for mapping iorq descriptors */
548 if ((error = vme_dmamap_create(
549 ct, /* VME chip tag */
550 XDC_MAXIOPB * sizeof(struct xd_iopb),
551 VME_AM_A24, /* address modifier */
552 VME_D32, /* data size */
553 0, /* swap */
554 1, /* nsegments */
555 XDC_MAXIOPB * sizeof(struct xd_iopb),
556 0, /* boundary */
557 BUS_DMA_NOWAIT,
558 &xdc->iopmap)) != 0) {
559
560 aprint_error_dev(&xdc->sc_dev, "DMA buffer map create error %d\n",
561 error);
562 return;
563 }
564
565 /* Get DMA buffer for iorq descriptors */
566 if ((error = xd_dmamem_alloc(xdc->dmatag, xdc->iopmap, &seg, &rseg,
567 XDC_MAXIOPB * sizeof(struct xd_iopb),
568 (void **)&xdc->iopbase,
569 &busaddr)) != 0) {
570 aprint_error_dev(&xdc->sc_dev, "DMA buffer alloc error %d\n",
571 error);
572 return;
573 }
574 xdc->dvmaiopb = (struct xd_iopb *)(u_long)BUS_ADDR_PADDR(busaddr);
575
576 bzero(xdc->iopbase, XDC_MAXIOPB * sizeof(struct xd_iopb));
577
578 xdc->reqs = (struct xd_iorq *)
579 malloc(XDC_MAXIOPB * sizeof(struct xd_iorq),
580 M_DEVBUF, M_NOWAIT|M_ZERO);
581 if (xdc->reqs == NULL)
582 panic("xdc malloc");
583
584 /* init free list, iorq to iopb pointers, and non-zero fields in the
585 * iopb which never change. */
586
587 for (lcv = 0; lcv < XDC_MAXIOPB; lcv++) {
588 xdc->reqs[lcv].iopb = &xdc->iopbase[lcv];
589 xdc->reqs[lcv].dmaiopb = &xdc->dvmaiopb[lcv];
590 xdc->freereq[lcv] = lcv;
591 xdc->iopbase[lcv].fixd = 1; /* always the same */
592 xdc->iopbase[lcv].naddrmod = XDC_ADDRMOD; /* always the same */
593 xdc->iopbase[lcv].intr_vec = xdc->vector; /* always the same */
594
595 if ((error = vme_dmamap_create(
596 ct, /* VME chip tag */
597 MAXPHYS, /* size */
598 VME_AM_A24, /* address modifier */
599 VME_D32, /* data size */
600 0, /* swap */
601 1, /* nsegments */
602 MAXPHYS, /* maxsegsz */
603 0, /* boundary */
604 BUS_DMA_NOWAIT,
605 &xdc->reqs[lcv].dmamap)) != 0) {
606
607 aprint_error_dev(&xdc->sc_dev, "DMA buffer map create error %d\n",
608 error);
609 return;
610 }
611 }
612 xdc->nfree = XDC_MAXIOPB;
613 xdc->nrun = 0;
614 xdc->waithead = xdc->waitend = xdc->nwait = 0;
615 xdc->ndone = 0;
616
617 /* init queue of waiting bufs */
618
619 bufq_alloc(&xdc->sc_wq, "fcfs", 0);
620 callout_init(&xdc->sc_tick_ch, 0);
621
622 /*
623 * section 7 of the manual tells us how to init the controller:
624 * - read controller parameters (6/0)
625 * - write controller parameters (5/0)
626 */
627
628 /* read controller parameters and insure we have a 753/7053 */
629
630 rqno = xdc_cmd(xdc, XDCMD_RDP, XDFUN_CTL, 0, 0, 0, 0, XD_SUB_POLL);
631 if (rqno == XD_ERR_FAIL) {
632 printf(": couldn't read controller params\n");
633 return; /* shouldn't ever happen */
634 }
635 ctl = (struct xd_iopb_ctrl *) &xdc->iopbase[rqno];
636 if (ctl->ctype != XDCT_753) {
637 if (xdc->reqs[rqno].errnum)
638 printf(": %s: ", xdc_e2str(xdc->reqs[rqno].errnum));
639 printf(": doesn't identify as a 753/7053\n");
640 XDC_DONE(xdc, rqno, error);
641 return;
642 }
643 printf(": Xylogics 753/7053, PROM=0x%x.%02x.%02x\n",
644 ctl->eprom_partno, ctl->eprom_lvl, ctl->eprom_rev);
645 XDC_DONE(xdc, rqno, error);
646
647 /* now write controller parameters (xdc_cmd sets all params for us) */
648
649 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_CTL, 0, 0, 0, 0, XD_SUB_POLL);
650 XDC_DONE(xdc, rqno, error);
651 if (error) {
652 aprint_error_dev(&xdc->sc_dev, "controller config error: %s\n",
653 xdc_e2str(error));
654 return;
655 }
656
657 /* link in interrupt with higher level software */
658 vme_intr_map(ct, va->ilevel, va->ivector, &ih);
659 vme_intr_establish(ct, ih, IPL_BIO, xdcintr, xdc);
660 evcnt_attach_dynamic(&xdc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
661 device_xname(&xdc->sc_dev), "intr");
662
663
664 /* now we must look for disks using autoconfig */
665 xa.fullmode = XD_SUB_POLL;
666 xa.booting = 1;
667
668 for (xa.driveno = 0; xa.driveno < XDC_MAXDEV; xa.driveno++)
669 (void) config_found(self, (void *) &xa, NULL);
670
671 /* start the watchdog clock */
672 callout_reset(&xdc->sc_tick_ch, XDC_TICKCNT, xdc_tick, xdc);
673
674 }
675
676 /*
677 * xdmatch: probe for disk.
678 *
679 * note: we almost always say disk is present. this allows us to
680 * spin up and configure a disk after the system is booted (we can
681 * call xdattach!).
682 */
683 int
684 xdmatch(struct device *parent, struct cfdata *cf, void *aux)
685 {
686 struct xdc_attach_args *xa = aux;
687
688 /* looking for autoconf wildcard or exact match */
689
690 if (cf->cf_loc[XDCCF_DRIVE] != XDCCF_DRIVE_DEFAULT &&
691 cf->cf_loc[XDCCF_DRIVE] != xa->driveno)
692 return 0;
693
694 return 1;
695
696 }
697
698 /*
699 * xdattach: attach a disk. this can be called from autoconf and also
700 * from xdopen/xdstrategy.
701 */
702 void
703 xdattach(parent, self, aux)
704 struct device *parent, *self;
705 void *aux;
706
707 {
708 struct xd_softc *xd = device_private(self);
709 struct xdc_softc *xdc = device_private(parent);
710 struct xdc_attach_args *xa = aux;
711 int rqno, spt = 0, mb, blk, lcv, fmode, s = 0, newstate;
712 struct xd_iopb_drive *driopb;
713 struct dkbad *dkb;
714 int rseg, error;
715 bus_dma_segment_t seg;
716 bus_addr_t busaddr;
717 void * dmaddr;
718 char * buf;
719
720 /*
721 * Always re-initialize the disk structure. We want statistics
722 * to start with a clean slate.
723 */
724 bzero(&xd->sc_dk, sizeof(xd->sc_dk));
725
726 /* if booting, init the xd_softc */
727
728 if (xa->booting) {
729 xd->state = XD_DRIVE_UNKNOWN; /* to start */
730 xd->flags = 0;
731 xd->parent = xdc;
732 }
733 xd->xd_drive = xa->driveno;
734 fmode = xa->fullmode;
735 xdc->sc_drives[xa->driveno] = xd;
736
737 /* if not booting, make sure we are the only process in the attach for
738 * this drive. if locked out, sleep on it. */
739
740 if (!xa->booting) {
741 s = splbio();
742 while (xd->state == XD_DRIVE_ATTACHING) {
743 if (tsleep(&xd->state, PRIBIO, "xdattach", 0)) {
744 splx(s);
745 return;
746 }
747 }
748 printf("%s at %s",
749 device_xname(&xd->sc_dev), device_xname(&xd->parent->sc_dev));
750 }
751
752 /* we now have control */
753 xd->state = XD_DRIVE_ATTACHING;
754 newstate = XD_DRIVE_UNKNOWN;
755
756 buf = NULL;
757 if ((error = xd_dmamem_alloc(xdc->dmatag, xdc->auxmap, &seg, &rseg,
758 XDFM_BPS,
759 (void **)&buf,
760 &busaddr)) != 0) {
761 aprint_error_dev(&xdc->sc_dev, "DMA buffer alloc error %d\n",
762 error);
763 return;
764 }
765 dmaddr = (void *)(u_long)BUS_ADDR_PADDR(busaddr);
766
767 /* first try and reset the drive */
768
769 rqno = xdc_cmd(xdc, XDCMD_RST, 0, xd->xd_drive, 0, 0, 0, fmode);
770 XDC_DONE(xdc, rqno, error);
771 if (error == XD_ERR_NRDY) {
772 printf(" drive %d: off-line\n", xa->driveno);
773 goto done;
774 }
775 if (error) {
776 printf(": ERROR 0x%02x (%s)\n", error, xdc_e2str(error));
777 goto done;
778 }
779 printf(" drive %d: ready\n", xa->driveno);
780
781 /* now set format parameters */
782
783 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_FMT, xd->xd_drive, 0, 0, 0, fmode);
784 XDC_DONE(xdc, rqno, error);
785 if (error) {
786 aprint_error_dev(&xd->sc_dev, "write format parameters failed: %s\n",
787 xdc_e2str(error));
788 goto done;
789 }
790
791 /* get drive parameters */
792 rqno = xdc_cmd(xdc, XDCMD_RDP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
793 if (rqno != XD_ERR_FAIL) {
794 driopb = (struct xd_iopb_drive *) &xdc->iopbase[rqno];
795 spt = driopb->sectpertrk;
796 }
797 XDC_DONE(xdc, rqno, error);
798 if (error) {
799 aprint_error_dev(&xd->sc_dev, "read drive parameters failed: %s\n",
800 xdc_e2str(error));
801 goto done;
802 }
803
804 /*
805 * now set drive parameters (to semi-bogus values) so we can read the
806 * disk label.
807 */
808 xd->pcyl = xd->ncyl = 1;
809 xd->acyl = 0;
810 xd->nhead = 1;
811 xd->nsect = 1;
812 xd->sectpercyl = 1;
813 for (lcv = 0; lcv < 126; lcv++) /* init empty bad144 table */
814 xd->dkb.bt_bad[lcv].bt_cyl = xd->dkb.bt_bad[lcv].bt_trksec = 0xffff;
815 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
816 XDC_DONE(xdc, rqno, error);
817 if (error) {
818 aprint_error_dev(&xd->sc_dev, "write drive parameters failed: %s\n",
819 xdc_e2str(error));
820 goto done;
821 }
822
823 /* read disk label */
824 rqno = xdc_cmd(xdc, XDCMD_RD, 0, xd->xd_drive, 0, 1, dmaddr, fmode);
825 XDC_DONE(xdc, rqno, error);
826 if (error) {
827 aprint_error_dev(&xd->sc_dev, "reading disk label failed: %s\n",
828 xdc_e2str(error));
829 goto done;
830 }
831 newstate = XD_DRIVE_NOLABEL;
832
833 xd->hw_spt = spt;
834 /* Attach the disk: must be before getdisklabel to malloc label */
835 disk_init(&xd->sc_dk, device_xname(&xd->sc_dev), &xddkdriver);
836 disk_attach(&xd->sc_dk);
837
838 if (xdgetdisklabel(xd, buf) != XD_ERR_AOK)
839 goto done;
840
841 /* inform the user of what is up */
842 printf("%s: <%s>, pcyl %d, hw_spt %d\n", device_xname(&xd->sc_dev),
843 buf, xd->pcyl, spt);
844 mb = xd->ncyl * (xd->nhead * xd->nsect) / (1048576 / XDFM_BPS);
845 printf("%s: %dMB, %d cyl, %d head, %d sec, %d bytes/sec\n",
846 device_xname(&xd->sc_dev), mb, xd->ncyl, xd->nhead, xd->nsect,
847 XDFM_BPS);
848
849 /* now set the real drive parameters! */
850
851 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
852 XDC_DONE(xdc, rqno, error);
853 if (error) {
854 aprint_error_dev(&xd->sc_dev, "write real drive parameters failed: %s\n",
855 xdc_e2str(error));
856 goto done;
857 }
858 newstate = XD_DRIVE_ONLINE;
859
860 /*
861 * read bad144 table. this table resides on the first sector of the
862 * last track of the disk (i.e. second cyl of "acyl" area).
863 */
864
865 blk = (xd->ncyl + xd->acyl - 1) * (xd->nhead * xd->nsect) + /* last cyl */
866 (xd->nhead - 1) * xd->nsect; /* last head */
867 rqno = xdc_cmd(xdc, XDCMD_RD, 0, xd->xd_drive, blk, 1, dmaddr, fmode);
868 XDC_DONE(xdc, rqno, error);
869 if (error) {
870 aprint_error_dev(&xd->sc_dev, "reading bad144 failed: %s\n",
871 xdc_e2str(error));
872 goto done;
873 }
874
875 /* check dkbad for sanity */
876 dkb = (struct dkbad *) buf;
877 for (lcv = 0; lcv < 126; lcv++) {
878 if ((dkb->bt_bad[lcv].bt_cyl == 0xffff ||
879 dkb->bt_bad[lcv].bt_cyl == 0) &&
880 dkb->bt_bad[lcv].bt_trksec == 0xffff)
881 continue; /* blank */
882 if (dkb->bt_bad[lcv].bt_cyl >= xd->ncyl)
883 break;
884 if ((dkb->bt_bad[lcv].bt_trksec >> 8) >= xd->nhead)
885 break;
886 if ((dkb->bt_bad[lcv].bt_trksec & 0xff) >= xd->nsect)
887 break;
888 }
889 if (lcv != 126) {
890 aprint_error_dev(&xd->sc_dev, "warning: invalid bad144 sector!\n");
891 } else {
892 bcopy(buf, &xd->dkb, XDFM_BPS);
893 }
894
895 done:
896 if (buf != NULL) {
897 xd_dmamem_free(xdc->dmatag, xdc->auxmap,
898 &seg, rseg, XDFM_BPS, buf);
899 }
900
901 xd->state = newstate;
902 if (!xa->booting) {
903 wakeup(&xd->state);
904 splx(s);
905 }
906 }
907
908 /*
909 * end of autoconfig functions
910 */
911
912 /*
913 * { b , c } d e v s w f u n c t i o n s
914 */
915
916 /*
917 * xdclose: close device
918 */
919 int
920 xdclose(dev, flag, fmt, l)
921 dev_t dev;
922 int flag, fmt;
923 struct lwp *l;
924 {
925 struct xd_softc *xd = device_lookup_private(&xd_cd, DISKUNIT(dev));
926 int part = DISKPART(dev);
927
928 /* clear mask bits */
929
930 switch (fmt) {
931 case S_IFCHR:
932 xd->sc_dk.dk_copenmask &= ~(1 << part);
933 break;
934 case S_IFBLK:
935 xd->sc_dk.dk_bopenmask &= ~(1 << part);
936 break;
937 }
938 xd->sc_dk.dk_openmask = xd->sc_dk.dk_copenmask | xd->sc_dk.dk_bopenmask;
939
940 return 0;
941 }
942
943 /*
944 * xddump: crash dump system
945 */
946 int
947 xddump(dev_t dev, daddr_t blkno, void *va, size_t size)
948 {
949 int unit, part;
950 struct xd_softc *xd;
951
952 unit = DISKUNIT(dev);
953 part = DISKPART(dev);
954
955 xd = device_lookup_private(&xd_cd, unit);
956 if (!xd)
957 return ENXIO;
958
959 printf("%s%c: crash dump not supported (yet)\n", device_xname(&xd->sc_dev),
960 'a' + part);
961
962 return ENXIO;
963
964 /* outline: globals: "dumplo" == sector number of partition to start
965 * dump at (convert to physical sector with partition table)
966 * "dumpsize" == size of dump in clicks "physmem" == size of physical
967 * memory (clicks, ctob() to get bytes) (normal case: dumpsize ==
968 * physmem)
969 *
970 * dump a copy of physical memory to the dump device starting at sector
971 * "dumplo" in the swap partition (make sure > 0). map in pages as
972 * we go. use polled I/O.
973 *
974 * XXX how to handle NON_CONTIG? */
975
976 }
977
978 static enum kauth_device_req
979 xd_getkauthreq(u_char cmd)
980 {
981 enum kauth_device_req req;
982
983 switch (cmd) {
984 case XDCMD_WR:
985 case XDCMD_XWR:
986 req = KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_WRITE;
987 break;
988
989 case XDCMD_RD:
990 req = KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_READ;
991 break;
992
993 case XDCMD_RDP:
994 case XDCMD_XRD:
995 req = KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_READCONF;
996 break;
997
998 case XDCMD_WRP:
999 case XDCMD_RST:
1000 req = KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_WRITECONF;
1001 break;
1002
1003 case XDCMD_NOP:
1004 case XDCMD_SK:
1005 case XDCMD_TST:
1006 default:
1007 req = 0;
1008 break;
1009 }
1010
1011 return (req);
1012 }
1013
1014 /*
1015 * xdioctl: ioctls on XD drives. based on ioctl's of other netbsd disks.
1016 */
1017 int
1018 xdioctl(dev, command, addr, flag, l)
1019 dev_t dev;
1020 u_long command;
1021 void *addr;
1022 int flag;
1023 struct lwp *l;
1024
1025 {
1026 struct xd_softc *xd;
1027 struct xd_iocmd *xio;
1028 int error, s, unit;
1029 #ifdef __HAVE_OLD_DISKLABEL
1030 struct disklabel newlabel;
1031 #endif
1032 struct disklabel *lp;
1033
1034 unit = DISKUNIT(dev);
1035
1036 if ((xd = device_lookup_private(&xd_cd, unit)) == NULL)
1037 return (ENXIO);
1038
1039 /* switch on ioctl type */
1040
1041 switch (command) {
1042 case DIOCSBAD: /* set bad144 info */
1043 if ((flag & FWRITE) == 0)
1044 return EBADF;
1045 s = splbio();
1046 bcopy(addr, &xd->dkb, sizeof(xd->dkb));
1047 splx(s);
1048 return 0;
1049
1050 case DIOCGDINFO: /* get disk label */
1051 bcopy(xd->sc_dk.dk_label, addr, sizeof(struct disklabel));
1052 return 0;
1053 #ifdef __HAVE_OLD_DISKLABEL
1054 case ODIOCGDINFO:
1055 newlabel = *(xd->sc_dk.dk_label);
1056 if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1057 return ENOTTY;
1058 memcpy(addr, &newlabel, sizeof (struct olddisklabel));
1059 return 0;
1060 #endif
1061
1062 case DIOCGPART: /* get partition info */
1063 ((struct partinfo *) addr)->disklab = xd->sc_dk.dk_label;
1064 ((struct partinfo *) addr)->part =
1065 &xd->sc_dk.dk_label->d_partitions[DISKPART(dev)];
1066 return 0;
1067
1068 case DIOCSDINFO: /* set disk label */
1069 #ifdef __HAVE_OLD_DISKLABEL
1070 case ODIOCSDINFO:
1071 if (command == ODIOCSDINFO) {
1072 memset(&newlabel, 0, sizeof newlabel);
1073 memcpy(&newlabel, addr, sizeof (struct olddisklabel));
1074 lp = &newlabel;
1075 } else
1076 #endif
1077 lp = (struct disklabel *)addr;
1078
1079 if ((flag & FWRITE) == 0)
1080 return EBADF;
1081 error = setdisklabel(xd->sc_dk.dk_label,
1082 lp, /* xd->sc_dk.dk_openmask : */ 0,
1083 xd->sc_dk.dk_cpulabel);
1084 if (error == 0) {
1085 if (xd->state == XD_DRIVE_NOLABEL)
1086 xd->state = XD_DRIVE_ONLINE;
1087 }
1088 return error;
1089
1090 case DIOCWLABEL: /* change write status of disk label */
1091 if ((flag & FWRITE) == 0)
1092 return EBADF;
1093 if (*(int *) addr)
1094 xd->flags |= XD_WLABEL;
1095 else
1096 xd->flags &= ~XD_WLABEL;
1097 return 0;
1098
1099 case DIOCWDINFO: /* write disk label */
1100 #ifdef __HAVE_OLD_DISKLABEL
1101 case ODIOCWDINFO:
1102 if (command == ODIOCWDINFO) {
1103 memset(&newlabel, 0, sizeof newlabel);
1104 memcpy(&newlabel, addr, sizeof (struct olddisklabel));
1105 lp = &newlabel;
1106 } else
1107 #endif
1108 lp = (struct disklabel *)addr;
1109
1110 if ((flag & FWRITE) == 0)
1111 return EBADF;
1112 error = setdisklabel(xd->sc_dk.dk_label,
1113 lp, /* xd->sc_dk.dk_openmask : */ 0,
1114 xd->sc_dk.dk_cpulabel);
1115 if (error == 0) {
1116 if (xd->state == XD_DRIVE_NOLABEL)
1117 xd->state = XD_DRIVE_ONLINE;
1118
1119 /* Simulate opening partition 0 so write succeeds. */
1120 xd->sc_dk.dk_openmask |= (1 << 0);
1121 error = writedisklabel(MAKEDISKDEV(major(dev),
1122 DISKUNIT(dev), RAW_PART),
1123 xdstrategy, xd->sc_dk.dk_label,
1124 xd->sc_dk.dk_cpulabel);
1125 xd->sc_dk.dk_openmask =
1126 xd->sc_dk.dk_copenmask | xd->sc_dk.dk_bopenmask;
1127 }
1128 return error;
1129
1130 case DIOSXDCMD: {
1131 enum kauth_device_req req;
1132
1133 xio = (struct xd_iocmd *) addr;
1134 req = xd_getkauthreq(xio->cmd);
1135 if ((error = kauth_authorize_device_passthru(l->l_cred,
1136 dev, req, xio)) != 0)
1137 return (error);
1138 return (xdc_ioctlcmd(xd, dev, xio));
1139 }
1140
1141 default:
1142 return ENOTTY;
1143 }
1144 }
1145 /*
1146 * xdopen: open drive
1147 */
1148
1149 int
1150 xdopen(dev, flag, fmt, l)
1151 dev_t dev;
1152 int flag, fmt;
1153 struct lwp *l;
1154 {
1155 int unit, part;
1156 struct xd_softc *xd;
1157 struct xdc_attach_args xa;
1158
1159 /* first, could it be a valid target? */
1160
1161 unit = DISKUNIT(dev);
1162 if ((xd = device_lookup_private(&xd_cd, unit)) == NULL)
1163 return (ENXIO);
1164 part = DISKPART(dev);
1165
1166 /* do we need to attach the drive? */
1167
1168 if (xd->state == XD_DRIVE_UNKNOWN) {
1169 xa.driveno = xd->xd_drive;
1170 xa.fullmode = XD_SUB_WAIT;
1171 xa.booting = 0;
1172 xdattach((struct device *) xd->parent, (struct device *) xd, &xa);
1173 if (xd->state == XD_DRIVE_UNKNOWN) {
1174 return (EIO);
1175 }
1176 }
1177 /* check for partition */
1178
1179 if (part != RAW_PART &&
1180 (part >= xd->sc_dk.dk_label->d_npartitions ||
1181 xd->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
1182 return (ENXIO);
1183 }
1184 /* set open masks */
1185
1186 switch (fmt) {
1187 case S_IFCHR:
1188 xd->sc_dk.dk_copenmask |= (1 << part);
1189 break;
1190 case S_IFBLK:
1191 xd->sc_dk.dk_bopenmask |= (1 << part);
1192 break;
1193 }
1194 xd->sc_dk.dk_openmask = xd->sc_dk.dk_copenmask | xd->sc_dk.dk_bopenmask;
1195
1196 return 0;
1197 }
1198
1199 int
1200 xdread(dev_t dev, struct uio *uio, int flags)
1201 {
1202
1203 return (physio(xdstrategy, NULL, dev, B_READ, minphys, uio));
1204 }
1205
1206 int
1207 xdwrite(dev_t dev, struct uio *uio, int flags)
1208 {
1209
1210 return (physio(xdstrategy, NULL, dev, B_WRITE, minphys, uio));
1211 }
1212
1213
1214 /*
1215 * xdsize: return size of a partition for a dump
1216 */
1217
1218 int
1219 xdsize(dev)
1220 dev_t dev;
1221
1222 {
1223 struct xd_softc *xdsc;
1224 int unit, part, size, omask;
1225
1226 /* valid unit? */
1227 unit = DISKUNIT(dev);
1228 if ((xdsc = device_lookup_private(&xd_cd, unit)) == NULL)
1229 return (-1);
1230
1231 part = DISKPART(dev);
1232 omask = xdsc->sc_dk.dk_openmask & (1 << part);
1233
1234 if (omask == 0 && xdopen(dev, 0, S_IFBLK, NULL) != 0)
1235 return (-1);
1236
1237 /* do it */
1238 if (xdsc->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
1239 size = -1; /* only give valid size for swap partitions */
1240 else
1241 size = xdsc->sc_dk.dk_label->d_partitions[part].p_size *
1242 (xdsc->sc_dk.dk_label->d_secsize / DEV_BSIZE);
1243 if (omask == 0 && xdclose(dev, 0, S_IFBLK, NULL) != 0)
1244 return (-1);
1245 return (size);
1246 }
1247 /*
1248 * xdstrategy: buffering system interface to xd.
1249 */
1250
1251 void
1252 xdstrategy(bp)
1253 struct buf *bp;
1254
1255 {
1256 struct xd_softc *xd;
1257 struct xdc_softc *parent;
1258 int s, unit;
1259 struct xdc_attach_args xa;
1260
1261 unit = DISKUNIT(bp->b_dev);
1262
1263 /* check for live device */
1264
1265 if (!(xd = device_lookup_private(&xd_cd, unit)) ||
1266 bp->b_blkno < 0 ||
1267 (bp->b_bcount % xd->sc_dk.dk_label->d_secsize) != 0) {
1268 bp->b_error = EINVAL;
1269 goto done;
1270 }
1271 /* do we need to attach the drive? */
1272
1273 if (xd->state == XD_DRIVE_UNKNOWN) {
1274 xa.driveno = xd->xd_drive;
1275 xa.fullmode = XD_SUB_WAIT;
1276 xa.booting = 0;
1277 xdattach((struct device *)xd->parent, (struct device *)xd, &xa);
1278 if (xd->state == XD_DRIVE_UNKNOWN) {
1279 bp->b_error = EIO;
1280 goto done;
1281 }
1282 }
1283 if (xd->state != XD_DRIVE_ONLINE && DISKPART(bp->b_dev) != RAW_PART) {
1284 /* no I/O to unlabeled disks, unless raw partition */
1285 bp->b_error = EIO;
1286 goto done;
1287 }
1288 /* short circuit zero length request */
1289
1290 if (bp->b_bcount == 0)
1291 goto done;
1292
1293 /* check bounds with label (disksubr.c). Determine the size of the
1294 * transfer, and make sure it is within the boundaries of the
1295 * partition. Adjust transfer if needed, and signal errors or early
1296 * completion. */
1297
1298 if (bounds_check_with_label(&xd->sc_dk, bp,
1299 (xd->flags & XD_WLABEL) != 0) <= 0)
1300 goto done;
1301
1302 /*
1303 * now we know we have a valid buf structure that we need to do I/O
1304 * on.
1305 *
1306 * note that we don't disksort because the controller has a sorting
1307 * algorithm built into the hardware.
1308 */
1309
1310 s = splbio(); /* protect the queues */
1311
1312 /* first, give jobs in front of us a chance */
1313 parent = xd->parent;
1314 while (parent->nfree > 0 && bufq_peek(parent->sc_wq) != NULL)
1315 if (xdc_startbuf(parent, NULL, NULL) != XD_ERR_AOK)
1316 break;
1317
1318 /* if there are no free iorq's, then we just queue and return. the
1319 * buffs will get picked up later by xdcintr().
1320 */
1321
1322 if (parent->nfree == 0) {
1323 bufq_put(parent->sc_wq, bp);
1324 splx(s);
1325 return;
1326 }
1327
1328 /* now we have free iopb's and we are at splbio... start 'em up */
1329 if (xdc_startbuf(parent, xd, bp) != XD_ERR_AOK) {
1330 return;
1331 }
1332
1333 /* done! */
1334
1335 splx(s);
1336 return;
1337
1338 done: /* tells upper layers we are done with this
1339 * buf */
1340 bp->b_resid = bp->b_bcount;
1341 biodone(bp);
1342 }
1343 /*
1344 * end of {b,c}devsw functions
1345 */
1346
1347 /*
1348 * i n t e r r u p t f u n c t i o n
1349 *
1350 * xdcintr: hardware interrupt.
1351 */
1352 int
1353 xdcintr(v)
1354 void *v;
1355
1356 {
1357 struct xdc_softc *xdcsc = v;
1358
1359 /* kick the event counter */
1360
1361 xdcsc->sc_intrcnt.ev_count++;
1362
1363 /* remove as many done IOPBs as possible */
1364
1365 xdc_remove_iorq(xdcsc);
1366
1367 /* start any iorq's already waiting */
1368
1369 xdc_start(xdcsc, XDC_MAXIOPB);
1370
1371 /* fill up any remaining iorq's with queue'd buffers */
1372
1373 while (xdcsc->nfree > 0 && bufq_peek(xdcsc->sc_wq) != NULL)
1374 if (xdc_startbuf(xdcsc, NULL, NULL) != XD_ERR_AOK)
1375 break;
1376
1377 return (1);
1378 }
1379 /*
1380 * end of interrupt function
1381 */
1382
1383 /*
1384 * i n t e r n a l f u n c t i o n s
1385 */
1386
1387 /*
1388 * xdc_rqinit: fill out the fields of an I/O request
1389 */
1390
1391 inline void
1392 xdc_rqinit(struct xd_iorq *rq, struct xdc_softc *xdc, struct xd_softc *xd, int md, u_long blk, int cnt, void *db, struct buf *bp)
1393 {
1394 rq->xdc = xdc;
1395 rq->xd = xd;
1396 rq->ttl = XDC_MAXTTL + 10;
1397 rq->mode = md;
1398 rq->tries = rq->errnum = rq->lasterror = 0;
1399 rq->blockno = blk;
1400 rq->sectcnt = cnt;
1401 rq->dbuf = db;
1402 rq->buf = bp;
1403 }
1404 /*
1405 * xdc_rqtopb: load up an IOPB based on an iorq
1406 */
1407
1408 void
1409 xdc_rqtopb(iorq, iopb, cmd, subfun)
1410 struct xd_iorq *iorq;
1411 struct xd_iopb *iopb;
1412 int cmd, subfun;
1413
1414 {
1415 u_long block, dp;
1416
1417 /* standard stuff */
1418
1419 iopb->errs = iopb->done = 0;
1420 iopb->comm = cmd;
1421 iopb->errnum = iopb->status = 0;
1422 iopb->subfun = subfun;
1423 if (iorq->xd)
1424 iopb->unit = iorq->xd->xd_drive;
1425 else
1426 iopb->unit = 0;
1427
1428 /* check for alternate IOPB format */
1429
1430 if (cmd == XDCMD_WRP) {
1431 switch (subfun) {
1432 case XDFUN_CTL:{
1433 struct xd_iopb_ctrl *ctrl =
1434 (struct xd_iopb_ctrl *) iopb;
1435 iopb->lll = 0;
1436 iopb->intl = (XD_STATE(iorq->mode) == XD_SUB_POLL)
1437 ? 0
1438 : iorq->xdc->ipl;
1439 ctrl->param_a = XDPA_TMOD | XDPA_DACF;
1440 ctrl->param_b = XDPB_ROR | XDPB_TDT_3_2USEC;
1441 ctrl->param_c = XDPC_OVS | XDPC_COP | XDPC_ASR |
1442 XDPC_RBC | XDPC_ECC2;
1443 ctrl->throttle = XDC_THROTTLE;
1444 ctrl->delay = XDC_DELAY;
1445 break;
1446 }
1447 case XDFUN_DRV:{
1448 struct xd_iopb_drive *drv =
1449 (struct xd_iopb_drive *)iopb;
1450 /* we assume that the disk label has the right
1451 * info */
1452 if (XD_STATE(iorq->mode) == XD_SUB_POLL)
1453 drv->dparam_ipl = (XDC_DPARAM << 3);
1454 else
1455 drv->dparam_ipl = (XDC_DPARAM << 3) |
1456 iorq->xdc->ipl;
1457 drv->maxsect = iorq->xd->nsect - 1;
1458 drv->maxsector = drv->maxsect;
1459 /* note: maxsector != maxsect only if you are
1460 * doing cyl sparing */
1461 drv->headoff = 0;
1462 drv->maxcyl = iorq->xd->pcyl - 1;
1463 drv->maxhead = iorq->xd->nhead - 1;
1464 break;
1465 }
1466 case XDFUN_FMT:{
1467 struct xd_iopb_format *form =
1468 (struct xd_iopb_format *) iopb;
1469 if (XD_STATE(iorq->mode) == XD_SUB_POLL)
1470 form->interleave_ipl = (XDC_INTERLEAVE << 3);
1471 else
1472 form->interleave_ipl = (XDC_INTERLEAVE << 3) |
1473 iorq->xdc->ipl;
1474 form->field1 = XDFM_FIELD1;
1475 form->field2 = XDFM_FIELD2;
1476 form->field3 = XDFM_FIELD3;
1477 form->field4 = XDFM_FIELD4;
1478 form->bytespersec = XDFM_BPS;
1479 form->field6 = XDFM_FIELD6;
1480 form->field7 = XDFM_FIELD7;
1481 break;
1482 }
1483 }
1484 } else {
1485
1486 /* normal IOPB case (harmless to RDP command) */
1487
1488 iopb->lll = 0;
1489 iopb->intl = (XD_STATE(iorq->mode) == XD_SUB_POLL)
1490 ? 0
1491 : iorq->xdc->ipl;
1492 iopb->sectcnt = iorq->sectcnt;
1493 block = iorq->blockno;
1494 if (iorq->xd == NULL || block == 0) {
1495 iopb->sectno = iopb->headno = iopb->cylno = 0;
1496 } else {
1497 iopb->sectno = block % iorq->xd->nsect;
1498 block = block / iorq->xd->nsect;
1499 iopb->headno = block % iorq->xd->nhead;
1500 block = block / iorq->xd->nhead;
1501 iopb->cylno = block;
1502 }
1503 dp = (u_long) iorq->dbuf;
1504 dp = iopb->daddr = (iorq->dbuf == NULL) ? 0 : dp;
1505 iopb->addrmod = ((dp + (XDFM_BPS * iorq->sectcnt)) > 0x1000000)
1506 ? XDC_ADDRMOD32
1507 : XDC_ADDRMOD;
1508 }
1509 }
1510
1511 /*
1512 * xdc_cmd: front end for POLL'd and WAIT'd commands. Returns rqno.
1513 * If you've already got an IORQ, you can call submit directly (currently
1514 * there is no need to do this). NORM requests are handled separately.
1515 */
1516 int
1517 xdc_cmd(xdcsc, cmd, subfn, unit, block, scnt, dptr, fullmode)
1518 struct xdc_softc *xdcsc;
1519 int cmd, subfn, unit, block, scnt;
1520 char *dptr;
1521 int fullmode;
1522
1523 {
1524 int rqno, submode = XD_STATE(fullmode), retry;
1525 struct xd_iorq *iorq;
1526 struct xd_iopb *iopb;
1527
1528 /* get iorq/iopb */
1529 switch (submode) {
1530 case XD_SUB_POLL:
1531 while (xdcsc->nfree == 0) {
1532 if (xdc_piodriver(xdcsc, 0, 1) != XD_ERR_AOK)
1533 return (XD_ERR_FAIL);
1534 }
1535 break;
1536 case XD_SUB_WAIT:
1537 retry = 1;
1538 while (retry) {
1539 while (xdcsc->nfree == 0) {
1540 if (tsleep(&xdcsc->nfree, PRIBIO, "xdnfree", 0))
1541 return (XD_ERR_FAIL);
1542 }
1543 while (xdcsc->ndone > XDC_SUBWAITLIM) {
1544 if (tsleep(&xdcsc->ndone, PRIBIO, "xdsubwait", 0))
1545 return (XD_ERR_FAIL);
1546 }
1547 if (xdcsc->nfree)
1548 retry = 0; /* got it */
1549 }
1550 break;
1551 default:
1552 return (XD_ERR_FAIL); /* illegal */
1553 }
1554 if (xdcsc->nfree == 0)
1555 panic("xdcmd nfree");
1556 rqno = XDC_RQALLOC(xdcsc);
1557 iorq = &xdcsc->reqs[rqno];
1558 iopb = iorq->iopb;
1559
1560
1561 /* init iorq/iopb */
1562
1563 xdc_rqinit(iorq, xdcsc,
1564 (unit == XDC_NOUNIT) ? NULL : xdcsc->sc_drives[unit],
1565 fullmode, block, scnt, dptr, NULL);
1566
1567 /* load IOPB from iorq */
1568
1569 xdc_rqtopb(iorq, iopb, cmd, subfn);
1570
1571 /* submit it for processing */
1572
1573 xdc_submit_iorq(xdcsc, rqno, fullmode); /* error code will be in iorq */
1574
1575 return (rqno);
1576 }
1577 /*
1578 * xdc_startbuf
1579 * start a buffer running, assumes nfree > 0
1580 */
1581
1582 int
1583 xdc_startbuf(xdcsc, xdsc, bp)
1584 struct xdc_softc *xdcsc;
1585 struct xd_softc *xdsc;
1586 struct buf *bp;
1587
1588 {
1589 int rqno, partno;
1590 struct xd_iorq *iorq;
1591 struct xd_iopb *iopb;
1592 u_long block;
1593 /* void *dbuf;*/
1594 int error;
1595
1596 if (!xdcsc->nfree)
1597 panic("xdc_startbuf free");
1598 rqno = XDC_RQALLOC(xdcsc);
1599 iorq = &xdcsc->reqs[rqno];
1600 iopb = iorq->iopb;
1601
1602 /* get buf */
1603
1604 if (bp == NULL) {
1605 bp = bufq_get(xdcsc->sc_wq);
1606 if (bp == NULL)
1607 panic("xdc_startbuf bp");
1608 xdsc = xdcsc->sc_drives[DISKUNIT(bp->b_dev)];
1609 }
1610 partno = DISKPART(bp->b_dev);
1611 #ifdef XDC_DEBUG
1612 printf("xdc_startbuf: %s%c: %s block %d\n", device_xname(&xdsc->sc_dev),
1613 'a' + partno, (bp->b_flags & B_READ) ? "read" : "write", bp->b_blkno);
1614 printf("xdc_startbuf: b_bcount %d, b_data 0x%x\n",
1615 bp->b_bcount, bp->b_data);
1616 #endif
1617
1618 /*
1619 * load request. we have to calculate the correct block number based
1620 * on partition info.
1621 *
1622 * note that iorq points to the buffer as mapped into DVMA space,
1623 * where as the bp->b_data points to its non-DVMA mapping.
1624 */
1625
1626 block = bp->b_blkno + ((partno == RAW_PART) ? 0 :
1627 xdsc->sc_dk.dk_label->d_partitions[partno].p_offset);
1628
1629 error = bus_dmamap_load(xdcsc->dmatag, iorq->dmamap,
1630 bp->b_data, bp->b_bcount, 0, BUS_DMA_NOWAIT);
1631 if (error != 0) {
1632 aprint_error_dev(&xdcsc->sc_dev, "warning: cannot load DMA map\n");
1633 XDC_FREE(xdcsc, rqno);
1634 bufq_put(xdcsc->sc_wq, bp);
1635 return (XD_ERR_FAIL); /* XXX: need some sort of
1636 * call-back scheme here? */
1637 }
1638 bus_dmamap_sync(xdcsc->dmatag, iorq->dmamap, 0,
1639 iorq->dmamap->dm_mapsize, (bp->b_flags & B_READ)
1640 ? BUS_DMASYNC_PREREAD
1641 : BUS_DMASYNC_PREWRITE);
1642
1643 /* init iorq and load iopb from it */
1644 xdc_rqinit(iorq, xdcsc, xdsc, XD_SUB_NORM | XD_MODE_VERBO, block,
1645 bp->b_bcount / XDFM_BPS,
1646 (void *)(u_long)iorq->dmamap->dm_segs[0].ds_addr,
1647 bp);
1648
1649 xdc_rqtopb(iorq, iopb, (bp->b_flags & B_READ) ? XDCMD_RD : XDCMD_WR, 0);
1650
1651 /* Instrumentation. */
1652 disk_busy(&xdsc->sc_dk);
1653
1654 /* now submit [note that xdc_submit_iorq can never fail on NORM reqs] */
1655
1656 xdc_submit_iorq(xdcsc, rqno, XD_SUB_NORM);
1657 return (XD_ERR_AOK);
1658 }
1659
1660
1661 /*
1662 * xdc_submit_iorq: submit an iorq for processing. returns XD_ERR_AOK
1663 * if ok. if it fail returns an error code. type is XD_SUB_*.
1664 *
1665 * note: caller frees iorq in all cases except NORM
1666 *
1667 * return value:
1668 * NORM: XD_AOK (req pending), XD_FAIL (couldn't submit request)
1669 * WAIT: XD_AOK (success), <error-code> (failed)
1670 * POLL: <same as WAIT>
1671 * NOQ : <same as NORM>
1672 *
1673 * there are three sources for i/o requests:
1674 * [1] xdstrategy: normal block I/O, using "struct buf" system.
1675 * [2] autoconfig/crash dump: these are polled I/O requests, no interrupts.
1676 * [3] open/ioctl: these are I/O requests done in the context of a process,
1677 * and the process should block until they are done.
1678 *
1679 * software state is stored in the iorq structure. each iorq has an
1680 * iopb structure. the hardware understands the iopb structure.
1681 * every command must go through an iopb. a 7053 can only handle
1682 * XDC_MAXIOPB (31) active iopbs at one time. iopbs are allocated in
1683 * DVMA space at boot up time. what happens if we run out of iopb's?
1684 * for i/o type [1], the buffers are queued at the "buff" layer and
1685 * picked up later by the interrupt routine. for case [2] the
1686 * programmed i/o driver is called with a special flag that says
1687 * return when one iopb is free. for case [3] the process can sleep
1688 * on the iorq free list until some iopbs are available.
1689 */
1690
1691
1692 int
1693 xdc_submit_iorq(xdcsc, iorqno, type)
1694 struct xdc_softc *xdcsc;
1695 int iorqno;
1696 int type;
1697
1698 {
1699 u_long iopbaddr;
1700 struct xd_iorq *iorq = &xdcsc->reqs[iorqno];
1701
1702 #ifdef XDC_DEBUG
1703 printf("xdc_submit_iorq(%s, no=%d, type=%d)\n", device_xname(&xdcsc->sc_dev),
1704 iorqno, type);
1705 #endif
1706
1707 /* first check and see if controller is busy */
1708 if (xdcsc->xdc->xdc_csr & XDC_ADDING) {
1709 #ifdef XDC_DEBUG
1710 printf("xdc_submit_iorq: XDC not ready (ADDING)\n");
1711 #endif
1712 if (type == XD_SUB_NOQ)
1713 return (XD_ERR_FAIL); /* failed */
1714 XDC_TWAIT(xdcsc, iorqno); /* put at end of waitq */
1715 switch (type) {
1716 case XD_SUB_NORM:
1717 return XD_ERR_AOK; /* success */
1718 case XD_SUB_WAIT:
1719 while (iorq->iopb->done == 0) {
1720 (void) tsleep(iorq, PRIBIO, "xdciorq", 0);
1721 }
1722 return (iorq->errnum);
1723 case XD_SUB_POLL:
1724 return (xdc_piodriver(xdcsc, iorqno, 0));
1725 default:
1726 panic("xdc_submit_iorq adding");
1727 }
1728 }
1729 #ifdef XDC_DEBUG
1730 {
1731 u_char *rio = (u_char *) iorq->iopb;
1732 int sz = sizeof(struct xd_iopb), lcv;
1733 printf("%s: aio #%d [",
1734 device_xname(&xdcsc->sc_dev), iorq - xdcsc->reqs);
1735 for (lcv = 0; lcv < sz; lcv++)
1736 printf(" %02x", rio[lcv]);
1737 printf("]\n");
1738 }
1739 #endif /* XDC_DEBUG */
1740
1741 /* controller not busy, start command */
1742 iopbaddr = (u_long) iorq->dmaiopb;
1743 XDC_GO(xdcsc->xdc, iopbaddr); /* go! */
1744 xdcsc->nrun++;
1745 /* command now running, wrap it up */
1746 switch (type) {
1747 case XD_SUB_NORM:
1748 case XD_SUB_NOQ:
1749 return (XD_ERR_AOK); /* success */
1750 case XD_SUB_WAIT:
1751 while (iorq->iopb->done == 0) {
1752 (void) tsleep(iorq, PRIBIO, "xdciorq", 0);
1753 }
1754 return (iorq->errnum);
1755 case XD_SUB_POLL:
1756 return (xdc_piodriver(xdcsc, iorqno, 0));
1757 default:
1758 panic("xdc_submit_iorq wrap up");
1759 }
1760 panic("xdc_submit_iorq");
1761 return 0; /* not reached */
1762 }
1763
1764
1765 /*
1766 * xdc_piodriver
1767 *
1768 * programmed i/o driver. this function takes over the computer
1769 * and drains off all i/o requests. it returns the status of the iorq
1770 * the caller is interesting in. if freeone is true, then it returns
1771 * when there is a free iorq.
1772 */
1773 int
1774 xdc_piodriver(xdcsc, iorqno, freeone)
1775 struct xdc_softc *xdcsc;
1776 int iorqno;
1777 int freeone;
1778
1779 {
1780 int nreset = 0;
1781 int retval = 0;
1782 u_long count;
1783 struct xdc *xdc = xdcsc->xdc;
1784 #ifdef XDC_DEBUG
1785 printf("xdc_piodriver(%s, %d, freeone=%d)\n", device_xname(&xdcsc->sc_dev),
1786 iorqno, freeone);
1787 #endif
1788
1789 while (xdcsc->nwait || xdcsc->nrun) {
1790 #ifdef XDC_DEBUG
1791 printf("xdc_piodriver: wait=%d, run=%d\n",
1792 xdcsc->nwait, xdcsc->nrun);
1793 #endif
1794 XDC_WAIT(xdc, count, XDC_MAXTIME, (XDC_REMIOPB | XDC_F_ERROR));
1795 #ifdef XDC_DEBUG
1796 printf("xdc_piodriver: done wait with count = %d\n", count);
1797 #endif
1798 /* we expect some progress soon */
1799 if (count == 0 && nreset >= 2) {
1800 xdc_reset(xdcsc, 0, XD_RSET_ALL, XD_ERR_FAIL, 0);
1801 #ifdef XDC_DEBUG
1802 printf("xdc_piodriver: timeout\n");
1803 #endif
1804 return (XD_ERR_FAIL);
1805 }
1806 if (count == 0) {
1807 if (xdc_reset(xdcsc, 0,
1808 (nreset++ == 0) ? XD_RSET_NONE : iorqno,
1809 XD_ERR_FAIL,
1810 0) == XD_ERR_FAIL)
1811 return (XD_ERR_FAIL); /* flushes all but POLL
1812 * requests, resets */
1813 continue;
1814 }
1815 xdc_remove_iorq(xdcsc); /* could resubmit request */
1816 if (freeone) {
1817 if (xdcsc->nrun < XDC_MAXIOPB) {
1818 #ifdef XDC_DEBUG
1819 printf("xdc_piodriver: done: one free\n");
1820 #endif
1821 return (XD_ERR_AOK);
1822 }
1823 continue; /* don't xdc_start */
1824 }
1825 xdc_start(xdcsc, XDC_MAXIOPB);
1826 }
1827
1828 /* get return value */
1829
1830 retval = xdcsc->reqs[iorqno].errnum;
1831
1832 #ifdef XDC_DEBUG
1833 printf("xdc_piodriver: done, retval = 0x%x (%s)\n",
1834 xdcsc->reqs[iorqno].errnum, xdc_e2str(xdcsc->reqs[iorqno].errnum));
1835 #endif
1836
1837 /* now that we've drained everything, start up any bufs that have
1838 * queued */
1839
1840 while (xdcsc->nfree > 0 && bufq_peek(xdcsc->sc_wq) != NULL)
1841 if (xdc_startbuf(xdcsc, NULL, NULL) != XD_ERR_AOK)
1842 break;
1843
1844 return (retval);
1845 }
1846
1847 /*
1848 * xdc_reset: reset one drive. NOTE: assumes xdc was just reset.
1849 * we steal iopb[0] for this, but we put it back when we are done.
1850 */
1851 void
1852 xdc_xdreset(xdcsc, xdsc)
1853 struct xdc_softc *xdcsc;
1854 struct xd_softc *xdsc;
1855
1856 {
1857 struct xd_iopb tmpiopb;
1858 u_long addr;
1859 int del;
1860 bcopy(xdcsc->iopbase, &tmpiopb, sizeof(tmpiopb));
1861 bzero(xdcsc->iopbase, sizeof(tmpiopb));
1862 xdcsc->iopbase->comm = XDCMD_RST;
1863 xdcsc->iopbase->unit = xdsc->xd_drive;
1864 addr = (u_long) xdcsc->dvmaiopb;
1865 XDC_GO(xdcsc->xdc, addr); /* go! */
1866 XDC_WAIT(xdcsc->xdc, del, XDC_RESETUSEC, XDC_REMIOPB);
1867 if (del <= 0 || xdcsc->iopbase->errs) {
1868 printf("%s: off-line: %s\n", device_xname(&xdcsc->sc_dev),
1869 xdc_e2str(xdcsc->iopbase->errnum));
1870 xdcsc->xdc->xdc_csr = XDC_RESET;
1871 XDC_WAIT(xdcsc->xdc, del, XDC_RESETUSEC, XDC_RESET);
1872 if (del <= 0)
1873 panic("xdc_reset");
1874 } else {
1875 xdcsc->xdc->xdc_csr = XDC_CLRRIO; /* clear RIO */
1876 }
1877 bcopy(&tmpiopb, xdcsc->iopbase, sizeof(tmpiopb));
1878 }
1879
1880
1881 /*
1882 * xdc_reset: reset everything: requests are marked as errors except
1883 * a polled request (which is resubmitted)
1884 */
1885 int
1886 xdc_reset(xdcsc, quiet, blastmode, error, xdsc)
1887 struct xdc_softc *xdcsc;
1888 int quiet, blastmode, error;
1889 struct xd_softc *xdsc;
1890
1891 {
1892 int del = 0, lcv, retval = XD_ERR_AOK;
1893 int oldfree = xdcsc->nfree;
1894
1895 /* soft reset hardware */
1896
1897 if (!quiet)
1898 printf("%s: soft reset\n", device_xname(&xdcsc->sc_dev));
1899 xdcsc->xdc->xdc_csr = XDC_RESET;
1900 XDC_WAIT(xdcsc->xdc, del, XDC_RESETUSEC, XDC_RESET);
1901 if (del <= 0) {
1902 blastmode = XD_RSET_ALL; /* dead, flush all requests */
1903 retval = XD_ERR_FAIL;
1904 }
1905 if (xdsc)
1906 xdc_xdreset(xdcsc, xdsc);
1907
1908 /* fix queues based on "blast-mode" */
1909
1910 for (lcv = 0; lcv < XDC_MAXIOPB; lcv++) {
1911 register struct xd_iorq *iorq = &xdcsc->reqs[lcv];
1912
1913 if (XD_STATE(iorq->mode) != XD_SUB_POLL &&
1914 XD_STATE(iorq->mode) != XD_SUB_WAIT &&
1915 XD_STATE(iorq->mode) != XD_SUB_NORM)
1916 /* is it active? */
1917 continue;
1918
1919 xdcsc->nrun--; /* it isn't running any more */
1920 if (blastmode == XD_RSET_ALL || blastmode != lcv) {
1921 /* failed */
1922 iorq->errnum = error;
1923 xdcsc->iopbase[lcv].done = xdcsc->iopbase[lcv].errs = 1;
1924 switch (XD_STATE(xdcsc->reqs[lcv].mode)) {
1925 case XD_SUB_NORM:
1926 iorq->buf->b_error = EIO;
1927 iorq->buf->b_resid =
1928 iorq->sectcnt * XDFM_BPS;
1929
1930 bus_dmamap_sync(xdcsc->dmatag, iorq->dmamap, 0,
1931 iorq->dmamap->dm_mapsize,
1932 (iorq->buf->b_flags & B_READ)
1933 ? BUS_DMASYNC_POSTREAD
1934 : BUS_DMASYNC_POSTWRITE);
1935
1936 bus_dmamap_unload(xdcsc->dmatag, iorq->dmamap);
1937
1938 disk_unbusy(&xdcsc->reqs[lcv].xd->sc_dk,
1939 (xdcsc->reqs[lcv].buf->b_bcount -
1940 xdcsc->reqs[lcv].buf->b_resid),
1941 (iorq->buf->b_flags & B_READ));
1942 biodone(iorq->buf);
1943 XDC_FREE(xdcsc, lcv); /* add to free list */
1944 break;
1945 case XD_SUB_WAIT:
1946 wakeup(iorq);
1947 case XD_SUB_POLL:
1948 xdcsc->ndone++;
1949 iorq->mode =
1950 XD_NEWSTATE(iorq->mode, XD_SUB_DONE);
1951 break;
1952 }
1953
1954 } else {
1955
1956 /* resubmit, put at front of wait queue */
1957 XDC_HWAIT(xdcsc, lcv);
1958 }
1959 }
1960
1961 /*
1962 * now, if stuff is waiting, start it.
1963 * since we just reset it should go
1964 */
1965 xdc_start(xdcsc, XDC_MAXIOPB);
1966
1967 /* ok, we did it */
1968 if (oldfree == 0 && xdcsc->nfree)
1969 wakeup(&xdcsc->nfree);
1970
1971 #ifdef XDC_DIAG
1972 del = xdcsc->nwait + xdcsc->nrun + xdcsc->nfree + xdcsc->ndone;
1973 if (del != XDC_MAXIOPB)
1974 printf("%s: diag: xdc_reset miscount (%d should be %d)!\n",
1975 device_xname(&xdcsc->sc_dev), del, XDC_MAXIOPB);
1976 else
1977 if (xdcsc->ndone > XDC_MAXIOPB - XDC_SUBWAITLIM)
1978 printf("%s: diag: lots of done jobs (%d)\n",
1979 device_xname(&xdcsc->sc_dev), xdcsc->ndone);
1980 #endif
1981 printf("RESET DONE\n");
1982 return (retval);
1983 }
1984 /*
1985 * xdc_start: start all waiting buffers
1986 */
1987
1988 void
1989 xdc_start(xdcsc, maxio)
1990 struct xdc_softc *xdcsc;
1991 int maxio;
1992
1993 {
1994 int rqno;
1995 while (maxio && xdcsc->nwait &&
1996 (xdcsc->xdc->xdc_csr & XDC_ADDING) == 0) {
1997 XDC_GET_WAITER(xdcsc, rqno); /* note: rqno is an "out"
1998 * param */
1999 if (xdc_submit_iorq(xdcsc, rqno, XD_SUB_NOQ) != XD_ERR_AOK)
2000 panic("xdc_start"); /* should never happen */
2001 maxio--;
2002 }
2003 }
2004 /*
2005 * xdc_remove_iorq: remove "done" IOPB's.
2006 */
2007
2008 int
2009 xdc_remove_iorq(xdcsc)
2010 struct xdc_softc *xdcsc;
2011
2012 {
2013 int errnum, rqno, comm, errs;
2014 struct xdc *xdc = xdcsc->xdc;
2015 struct xd_iopb *iopb;
2016 struct xd_iorq *iorq;
2017 struct buf *bp;
2018
2019 if (xdc->xdc_csr & XDC_F_ERROR) {
2020 /*
2021 * FATAL ERROR: should never happen under normal use. This
2022 * error is so bad, you can't even tell which IOPB is bad, so
2023 * we dump them all.
2024 */
2025 errnum = xdc->xdc_f_err;
2026 aprint_error_dev(&xdcsc->sc_dev, "fatal error 0x%02x: %s\n",
2027 errnum, xdc_e2str(errnum));
2028 if (xdc_reset(xdcsc, 0, XD_RSET_ALL, errnum, 0) != XD_ERR_AOK) {
2029 aprint_error_dev(&xdcsc->sc_dev, "soft reset failed!\n");
2030 panic("xdc_remove_iorq: controller DEAD");
2031 }
2032 return (XD_ERR_AOK);
2033 }
2034
2035 /*
2036 * get iopb that is done
2037 *
2038 * hmm... I used to read the address of the done IOPB off the VME
2039 * registers and calculate the rqno directly from that. that worked
2040 * until I started putting a load on the controller. when loaded, i
2041 * would get interrupts but neither the REMIOPB or F_ERROR bits would
2042 * be set, even after DELAY'ing a while! later on the timeout
2043 * routine would detect IOPBs that were marked "running" but their
2044 * "done" bit was set. rather than dealing directly with this
2045 * problem, it is just easier to look at all running IOPB's for the
2046 * done bit.
2047 */
2048 if (xdc->xdc_csr & XDC_REMIOPB) {
2049 xdc->xdc_csr = XDC_CLRRIO;
2050 }
2051
2052 for (rqno = 0; rqno < XDC_MAXIOPB; rqno++) {
2053 iorq = &xdcsc->reqs[rqno];
2054 if (iorq->mode == 0 || XD_STATE(iorq->mode) == XD_SUB_DONE)
2055 continue; /* free, or done */
2056 iopb = &xdcsc->iopbase[rqno];
2057 if (iopb->done == 0)
2058 continue; /* not done yet */
2059
2060 #ifdef XDC_DEBUG
2061 {
2062 u_char *rio = (u_char *) iopb;
2063 int sz = sizeof(struct xd_iopb), lcv;
2064 printf("%s: rio #%d [", device_xname(&xdcsc->sc_dev), rqno);
2065 for (lcv = 0; lcv < sz; lcv++)
2066 printf(" %02x", rio[lcv]);
2067 printf("]\n");
2068 }
2069 #endif /* XDC_DEBUG */
2070
2071 xdcsc->nrun--;
2072
2073 comm = iopb->comm;
2074 errs = iopb->errs;
2075
2076 if (errs)
2077 iorq->errnum = iopb->errnum;
2078 else
2079 iorq->errnum = 0;
2080
2081 /* handle non-fatal errors */
2082
2083 if (errs &&
2084 xdc_error(xdcsc, iorq, iopb, rqno, comm) == XD_ERR_AOK)
2085 continue; /* AOK: we resubmitted it */
2086
2087
2088 /* this iorq is now done (hasn't been restarted or anything) */
2089
2090 if ((iorq->mode & XD_MODE_VERBO) && iorq->lasterror)
2091 xdc_perror(iorq, iopb, 0);
2092
2093 /* now, if read/write check to make sure we got all the data
2094 * we needed. (this may not be the case if we got an error in
2095 * the middle of a multisector request). */
2096
2097 if ((iorq->mode & XD_MODE_B144) != 0 && errs == 0 &&
2098 (comm == XDCMD_RD || comm == XDCMD_WR)) {
2099 /* we just successfully processed a bad144 sector
2100 * note: if we are in bad 144 mode, the pointers have
2101 * been advanced already (see above) and are pointing
2102 * at the bad144 sector. to exit bad144 mode, we
2103 * must advance the pointers 1 sector and issue a new
2104 * request if there are still sectors left to process
2105 *
2106 */
2107 XDC_ADVANCE(iorq, 1); /* advance 1 sector */
2108
2109 /* exit b144 mode */
2110 iorq->mode = iorq->mode & (~XD_MODE_B144);
2111
2112 if (iorq->sectcnt) { /* more to go! */
2113 iorq->lasterror = iorq->errnum = iopb->errnum = 0;
2114 iopb->errs = iopb->done = 0;
2115 iorq->tries = 0;
2116 iopb->sectcnt = iorq->sectcnt;
2117 iopb->cylno = iorq->blockno /
2118 iorq->xd->sectpercyl;
2119 iopb->headno =
2120 (iorq->blockno / iorq->xd->nhead) %
2121 iorq->xd->nhead;
2122 iopb->sectno = iorq->blockno % XDFM_BPS;
2123 iopb->daddr = (u_long) iorq->dbuf;
2124 XDC_HWAIT(xdcsc, rqno);
2125 xdc_start(xdcsc, 1); /* resubmit */
2126 continue;
2127 }
2128 }
2129 /* final cleanup, totally done with this request */
2130
2131 switch (XD_STATE(iorq->mode)) {
2132 case XD_SUB_NORM:
2133 bp = iorq->buf;
2134 if (errs) {
2135 bp->b_error = EIO;
2136 bp->b_resid = iorq->sectcnt * XDFM_BPS;
2137 } else {
2138 bp->b_resid = 0; /* done */
2139 }
2140 bus_dmamap_sync(xdcsc->dmatag, iorq->dmamap, 0,
2141 iorq->dmamap->dm_mapsize,
2142 (bp->b_flags & B_READ)
2143 ? BUS_DMASYNC_POSTREAD
2144 : BUS_DMASYNC_POSTWRITE);
2145 bus_dmamap_unload(xdcsc->dmatag, iorq->dmamap);
2146
2147 disk_unbusy(&iorq->xd->sc_dk,
2148 (bp->b_bcount - bp->b_resid),
2149 (bp->b_flags & B_READ));
2150 XDC_FREE(xdcsc, rqno);
2151 biodone(bp);
2152 break;
2153 case XD_SUB_WAIT:
2154 iorq->mode = XD_NEWSTATE(iorq->mode, XD_SUB_DONE);
2155 xdcsc->ndone++;
2156 wakeup(iorq);
2157 break;
2158 case XD_SUB_POLL:
2159 iorq->mode = XD_NEWSTATE(iorq->mode, XD_SUB_DONE);
2160 xdcsc->ndone++;
2161 break;
2162 }
2163 }
2164
2165 return (XD_ERR_AOK);
2166 }
2167
2168 /*
2169 * xdc_perror: print error.
2170 * - if still_trying is true: we got an error, retried and got a
2171 * different error. in that case lasterror is the old error,
2172 * and errnum is the new one.
2173 * - if still_trying is not true, then if we ever had an error it
2174 * is in lasterror. also, if iorq->errnum == 0, then we recovered
2175 * from that error (otherwise iorq->errnum == iorq->lasterror).
2176 */
2177 void
2178 xdc_perror(iorq, iopb, still_trying)
2179 struct xd_iorq *iorq;
2180 struct xd_iopb *iopb;
2181 int still_trying;
2182
2183 {
2184
2185 int error = iorq->lasterror;
2186
2187 printf("%s", (iorq->xd) ? device_xname(&iorq->xd->sc_dev)
2188 : device_xname(&iorq->xdc->sc_dev));
2189 if (iorq->buf)
2190 printf("%c: ", 'a' + (char)DISKPART(iorq->buf->b_dev));
2191 if (iopb->comm == XDCMD_RD || iopb->comm == XDCMD_WR)
2192 printf("%s %d/%d/%d: ",
2193 (iopb->comm == XDCMD_RD) ? "read" : "write",
2194 iopb->cylno, iopb->headno, iopb->sectno);
2195 printf("%s", xdc_e2str(error));
2196
2197 if (still_trying)
2198 printf(" [still trying, new error=%s]", xdc_e2str(iorq->errnum));
2199 else
2200 if (iorq->errnum == 0)
2201 printf(" [recovered in %d tries]", iorq->tries);
2202
2203 printf("\n");
2204 }
2205
2206 /*
2207 * xdc_error: non-fatal error encountered... recover.
2208 * return AOK if resubmitted, return FAIL if this iopb is done
2209 */
2210 int
2211 xdc_error(xdcsc, iorq, iopb, rqno, comm)
2212 struct xdc_softc *xdcsc;
2213 struct xd_iorq *iorq;
2214 struct xd_iopb *iopb;
2215 int rqno, comm;
2216
2217 {
2218 int errnum = iorq->errnum;
2219 int erract = errnum & XD_ERA_MASK;
2220 int oldmode, advance;
2221 #ifdef __sparc__
2222 int i;
2223 #endif
2224
2225 if (erract == XD_ERA_RSET) { /* some errors require a reset */
2226 oldmode = iorq->mode;
2227 iorq->mode = XD_SUB_DONE | (~XD_SUB_MASK & oldmode);
2228 xdcsc->ndone++;
2229 /* make xdc_start ignore us */
2230 xdc_reset(xdcsc, 1, XD_RSET_NONE, errnum, iorq->xd);
2231 iorq->mode = oldmode;
2232 xdcsc->ndone--;
2233 }
2234 /* check for read/write to a sector in bad144 table if bad: redirect
2235 * request to bad144 area */
2236
2237 if ((comm == XDCMD_RD || comm == XDCMD_WR) &&
2238 (iorq->mode & XD_MODE_B144) == 0) {
2239 advance = iorq->sectcnt - iopb->sectcnt;
2240 XDC_ADVANCE(iorq, advance);
2241 #ifdef __sparc__
2242 if ((i = isbad(&iorq->xd->dkb, iorq->blockno / iorq->xd->sectpercyl,
2243 (iorq->blockno / iorq->xd->nsect) % iorq->xd->nhead,
2244 iorq->blockno % iorq->xd->nsect)) != -1) {
2245 iorq->mode |= XD_MODE_B144; /* enter bad144 mode &
2246 * redirect */
2247 iopb->errnum = iopb->done = iopb->errs = 0;
2248 iopb->sectcnt = 1;
2249 iopb->cylno = (iorq->xd->ncyl + iorq->xd->acyl) - 2;
2250 /* second to last acyl */
2251 i = iorq->xd->sectpercyl - 1 - i; /* follow bad144
2252 * standard */
2253 iopb->headno = i / iorq->xd->nhead;
2254 iopb->sectno = i % iorq->xd->nhead;
2255 XDC_HWAIT(xdcsc, rqno);
2256 xdc_start(xdcsc, 1); /* resubmit */
2257 return (XD_ERR_AOK); /* recovered! */
2258 }
2259 #endif
2260 }
2261
2262 /*
2263 * it isn't a bad144 sector, must be real error! see if we can retry
2264 * it?
2265 */
2266 if ((iorq->mode & XD_MODE_VERBO) && iorq->lasterror)
2267 xdc_perror(iorq, iopb, 1); /* inform of error state
2268 * change */
2269 iorq->lasterror = errnum;
2270
2271 if ((erract == XD_ERA_RSET || erract == XD_ERA_HARD)
2272 && iorq->tries < XDC_MAXTRIES) { /* retry? */
2273 iorq->tries++;
2274 iorq->errnum = iopb->errnum = iopb->done = iopb->errs = 0;
2275 XDC_HWAIT(xdcsc, rqno);
2276 xdc_start(xdcsc, 1); /* restart */
2277 return (XD_ERR_AOK); /* recovered! */
2278 }
2279
2280 /* failed to recover from this error */
2281 return (XD_ERR_FAIL);
2282 }
2283
2284 /*
2285 * xdc_tick: make sure xd is still alive and ticking (err, kicking).
2286 */
2287 void
2288 xdc_tick(arg)
2289 void *arg;
2290
2291 {
2292 struct xdc_softc *xdcsc = arg;
2293 int lcv, s, reset = 0;
2294 #ifdef XDC_DIAG
2295 int nwait, nrun, nfree, ndone, whd = 0;
2296 u_char fqc[XDC_MAXIOPB], wqc[XDC_MAXIOPB], mark[XDC_MAXIOPB];
2297 s = splbio();
2298 nwait = xdcsc->nwait;
2299 nrun = xdcsc->nrun;
2300 nfree = xdcsc->nfree;
2301 ndone = xdcsc->ndone;
2302 bcopy(xdcsc->waitq, wqc, sizeof(wqc));
2303 bcopy(xdcsc->freereq, fqc, sizeof(fqc));
2304 splx(s);
2305 if (nwait + nrun + nfree + ndone != XDC_MAXIOPB) {
2306 printf("%s: diag: IOPB miscount (got w/f/r/d %d/%d/%d/%d, wanted %d)\n",
2307 device_xname(&xdcsc->sc_dev), nwait, nfree, nrun, ndone,
2308 XDC_MAXIOPB);
2309 bzero(mark, sizeof(mark));
2310 printf("FREE: ");
2311 for (lcv = nfree; lcv > 0; lcv--) {
2312 printf("%d ", fqc[lcv - 1]);
2313 mark[fqc[lcv - 1]] = 1;
2314 }
2315 printf("\nWAIT: ");
2316 lcv = nwait;
2317 while (lcv > 0) {
2318 printf("%d ", wqc[whd]);
2319 mark[wqc[whd]] = 1;
2320 whd = (whd + 1) % XDC_MAXIOPB;
2321 lcv--;
2322 }
2323 printf("\n");
2324 for (lcv = 0; lcv < XDC_MAXIOPB; lcv++) {
2325 if (mark[lcv] == 0)
2326 printf("MARK: running %d: mode %d done %d errs %d errnum 0x%x ttl %d buf %p\n",
2327 lcv, xdcsc->reqs[lcv].mode,
2328 xdcsc->iopbase[lcv].done,
2329 xdcsc->iopbase[lcv].errs,
2330 xdcsc->iopbase[lcv].errnum,
2331 xdcsc->reqs[lcv].ttl, xdcsc->reqs[lcv].buf);
2332 }
2333 } else
2334 if (ndone > XDC_MAXIOPB - XDC_SUBWAITLIM)
2335 printf("%s: diag: lots of done jobs (%d)\n",
2336 device_xname(&xdcsc->sc_dev), ndone);
2337
2338 #endif
2339 #ifdef XDC_DEBUG
2340 printf("%s: tick: csr 0x%x, w/f/r/d %d/%d/%d/%d\n",
2341 device_xname(&xdcsc->sc_dev),
2342 xdcsc->xdc->xdc_csr, xdcsc->nwait, xdcsc->nfree, xdcsc->nrun,
2343 xdcsc->ndone);
2344 for (lcv = 0; lcv < XDC_MAXIOPB; lcv++) {
2345 if (xdcsc->reqs[lcv].mode)
2346 printf("running %d: mode %d done %d errs %d errnum 0x%x\n",
2347 lcv,
2348 xdcsc->reqs[lcv].mode, xdcsc->iopbase[lcv].done,
2349 xdcsc->iopbase[lcv].errs, xdcsc->iopbase[lcv].errnum);
2350 }
2351 #endif
2352
2353 /* reduce ttl for each request if one goes to zero, reset xdc */
2354 s = splbio();
2355 for (lcv = 0; lcv < XDC_MAXIOPB; lcv++) {
2356 if (xdcsc->reqs[lcv].mode == 0 ||
2357 XD_STATE(xdcsc->reqs[lcv].mode) == XD_SUB_DONE)
2358 continue;
2359 xdcsc->reqs[lcv].ttl--;
2360 if (xdcsc->reqs[lcv].ttl == 0)
2361 reset = 1;
2362 }
2363 if (reset) {
2364 printf("%s: watchdog timeout\n", device_xname(&xdcsc->sc_dev));
2365 xdc_reset(xdcsc, 0, XD_RSET_NONE, XD_ERR_FAIL, NULL);
2366 }
2367 splx(s);
2368
2369 /* until next time */
2370
2371 callout_reset(&xdcsc->sc_tick_ch, XDC_TICKCNT, xdc_tick, xdcsc);
2372 }
2373
2374 /*
2375 * xdc_ioctlcmd: this function provides a user level interface to the
2376 * controller via ioctl. this allows "format" programs to be written
2377 * in user code, and is also useful for some debugging. we return
2378 * an error code. called at user priority.
2379 */
2380 int
2381 xdc_ioctlcmd(xd, dev, xio)
2382 struct xd_softc *xd;
2383 dev_t dev;
2384 struct xd_iocmd *xio;
2385
2386 {
2387 int s, rqno, dummy;
2388 char *dvmabuf = NULL, *buf = NULL;
2389 struct xdc_softc *xdcsc;
2390 int rseg, error;
2391 bus_dma_segment_t seg;
2392
2393 /* check sanity of requested command */
2394
2395 switch (xio->cmd) {
2396
2397 case XDCMD_NOP: /* no op: everything should be zero */
2398 if (xio->subfn || xio->dptr || xio->dlen ||
2399 xio->block || xio->sectcnt)
2400 return (EINVAL);
2401 break;
2402
2403 case XDCMD_RD: /* read / write sectors (up to XD_IOCMD_MAXS) */
2404 case XDCMD_WR:
2405 if (xio->subfn || xio->sectcnt > XD_IOCMD_MAXS ||
2406 xio->sectcnt * XDFM_BPS != xio->dlen || xio->dptr == NULL)
2407 return (EINVAL);
2408 break;
2409
2410 case XDCMD_SK: /* seek: doesn't seem useful to export this */
2411 return (EINVAL);
2412
2413 case XDCMD_WRP: /* write parameters */
2414 return (EINVAL);/* not useful, except maybe drive
2415 * parameters... but drive parameters should
2416 * go via disklabel changes */
2417
2418 case XDCMD_RDP: /* read parameters */
2419 if (xio->subfn != XDFUN_DRV ||
2420 xio->dlen || xio->block || xio->dptr)
2421 return (EINVAL); /* allow read drive params to
2422 * get hw_spt */
2423 xio->sectcnt = xd->hw_spt; /* we already know the answer */
2424 return (0);
2425 break;
2426
2427 case XDCMD_XRD: /* extended read/write */
2428 case XDCMD_XWR:
2429
2430 switch (xio->subfn) {
2431
2432 case XDFUN_THD:/* track headers */
2433 if (xio->sectcnt != xd->hw_spt ||
2434 (xio->block % xd->nsect) != 0 ||
2435 xio->dlen != XD_IOCMD_HSZ * xd->hw_spt ||
2436 xio->dptr == NULL)
2437 return (EINVAL);
2438 xio->sectcnt = 0;
2439 break;
2440
2441 case XDFUN_FMT:/* NOTE: also XDFUN_VFY */
2442 if (xio->cmd == XDCMD_XRD)
2443 return (EINVAL); /* no XDFUN_VFY */
2444 if (xio->sectcnt || xio->dlen ||
2445 (xio->block % xd->nsect) != 0 || xio->dptr)
2446 return (EINVAL);
2447 break;
2448
2449 case XDFUN_HDR:/* header, header verify, data, data ECC */
2450 return (EINVAL); /* not yet */
2451
2452 case XDFUN_DM: /* defect map */
2453 case XDFUN_DMX:/* defect map (alternate location) */
2454 if (xio->sectcnt || xio->dlen != XD_IOCMD_DMSZ ||
2455 (xio->block % xd->nsect) != 0 || xio->dptr == NULL)
2456 return (EINVAL);
2457 break;
2458
2459 default:
2460 return (EINVAL);
2461 }
2462 break;
2463
2464 case XDCMD_TST: /* diagnostics */
2465 return (EINVAL);
2466
2467 default:
2468 return (EINVAL);/* ??? */
2469 }
2470
2471 xdcsc = xd->parent;
2472
2473 /* create DVMA buffer for request if needed */
2474 if (xio->dlen) {
2475 bus_addr_t busbuf;
2476
2477 if ((error = xd_dmamem_alloc(xdcsc->dmatag, xdcsc->auxmap,
2478 &seg, &rseg,
2479 xio->dlen, (void **)&buf,
2480 &busbuf)) != 0) {
2481 return (error);
2482 }
2483 dvmabuf = (void *)(u_long)BUS_ADDR_PADDR(busbuf);
2484
2485 if (xio->cmd == XDCMD_WR || xio->cmd == XDCMD_XWR) {
2486 if ((error = copyin(xio->dptr, buf, xio->dlen)) != 0) {
2487 bus_dmamem_unmap(xdcsc->dmatag, buf, xio->dlen);
2488 bus_dmamem_free(xdcsc->dmatag, &seg, rseg);
2489 return (error);
2490 }
2491 }
2492 }
2493
2494 /* do it! */
2495
2496 error = 0;
2497 s = splbio();
2498 rqno = xdc_cmd(xdcsc, xio->cmd, xio->subfn, xd->xd_drive, xio->block,
2499 xio->sectcnt, dvmabuf, XD_SUB_WAIT);
2500 if (rqno == XD_ERR_FAIL) {
2501 error = EIO;
2502 goto done;
2503 }
2504 xio->errnum = xdcsc->reqs[rqno].errnum;
2505 xio->tries = xdcsc->reqs[rqno].tries;
2506 XDC_DONE(xdcsc, rqno, dummy);
2507
2508 if (xio->cmd == XDCMD_RD || xio->cmd == XDCMD_XRD)
2509 error = copyout(buf, xio->dptr, xio->dlen);
2510
2511 done:
2512 splx(s);
2513 if (dvmabuf) {
2514 xd_dmamem_free(xdcsc->dmatag, xdcsc->auxmap, &seg, rseg,
2515 xio->dlen, buf);
2516 }
2517 return (error);
2518 }
2519
2520 /*
2521 * xdc_e2str: convert error code number into an error string
2522 */
2523 const char *
2524 xdc_e2str(int no)
2525 {
2526 switch (no) {
2527 case XD_ERR_FAIL:
2528 return ("Software fatal error");
2529 case XD_ERR_AOK:
2530 return ("Successful completion");
2531 case XD_ERR_ICYL:
2532 return ("Illegal cylinder address");
2533 case XD_ERR_IHD:
2534 return ("Illegal head address");
2535 case XD_ERR_ISEC:
2536 return ("Illgal sector address");
2537 case XD_ERR_CZER:
2538 return ("Count zero");
2539 case XD_ERR_UIMP:
2540 return ("Unimplemented command");
2541 case XD_ERR_IF1:
2542 return ("Illegal field length 1");
2543 case XD_ERR_IF2:
2544 return ("Illegal field length 2");
2545 case XD_ERR_IF3:
2546 return ("Illegal field length 3");
2547 case XD_ERR_IF4:
2548 return ("Illegal field length 4");
2549 case XD_ERR_IF5:
2550 return ("Illegal field length 5");
2551 case XD_ERR_IF6:
2552 return ("Illegal field length 6");
2553 case XD_ERR_IF7:
2554 return ("Illegal field length 7");
2555 case XD_ERR_ISG:
2556 return ("Illegal scatter/gather length");
2557 case XD_ERR_ISPT:
2558 return ("Not enough sectors per track");
2559 case XD_ERR_ALGN:
2560 return ("Next IOPB address alignment error");
2561 case XD_ERR_SGAL:
2562 return ("Scatter/gather address alignment error");
2563 case XD_ERR_SGEC:
2564 return ("Scatter/gather with auto-ECC");
2565 case XD_ERR_SECC:
2566 return ("Soft ECC corrected");
2567 case XD_ERR_SIGN:
2568 return ("ECC ignored");
2569 case XD_ERR_ASEK:
2570 return ("Auto-seek retry recovered");
2571 case XD_ERR_RTRY:
2572 return ("Soft retry recovered");
2573 case XD_ERR_HECC:
2574 return ("Hard data ECC");
2575 case XD_ERR_NHDR:
2576 return ("Header not found");
2577 case XD_ERR_NRDY:
2578 return ("Drive not ready");
2579 case XD_ERR_TOUT:
2580 return ("Operation timeout");
2581 case XD_ERR_VTIM:
2582 return ("VMEDMA timeout");
2583 case XD_ERR_DSEQ:
2584 return ("Disk sequencer error");
2585 case XD_ERR_HDEC:
2586 return ("Header ECC error");
2587 case XD_ERR_RVFY:
2588 return ("Read verify");
2589 case XD_ERR_VFER:
2590 return ("Fatail VMEDMA error");
2591 case XD_ERR_VBUS:
2592 return ("VMEbus error");
2593 case XD_ERR_DFLT:
2594 return ("Drive faulted");
2595 case XD_ERR_HECY:
2596 return ("Header error/cyliner");
2597 case XD_ERR_HEHD:
2598 return ("Header error/head");
2599 case XD_ERR_NOCY:
2600 return ("Drive not on-cylinder");
2601 case XD_ERR_SEEK:
2602 return ("Seek error");
2603 case XD_ERR_ILSS:
2604 return ("Illegal sector size");
2605 case XD_ERR_SEC:
2606 return ("Soft ECC");
2607 case XD_ERR_WPER:
2608 return ("Write-protect error");
2609 case XD_ERR_IRAM:
2610 return ("IRAM self test failure");
2611 case XD_ERR_MT3:
2612 return ("Maintenance test 3 failure (DSKCEL RAM)");
2613 case XD_ERR_MT4:
2614 return ("Maintenance test 4 failure (header shift reg)");
2615 case XD_ERR_MT5:
2616 return ("Maintenance test 5 failure (VMEDMA regs)");
2617 case XD_ERR_MT6:
2618 return ("Maintenance test 6 failure (REGCEL chip)");
2619 case XD_ERR_MT7:
2620 return ("Maintenance test 7 failure (buffer parity)");
2621 case XD_ERR_MT8:
2622 return ("Maintenance test 8 failure (disk FIFO)");
2623 case XD_ERR_IOCK:
2624 return ("IOPB checksum miscompare");
2625 case XD_ERR_IODM:
2626 return ("IOPB DMA fatal");
2627 case XD_ERR_IOAL:
2628 return ("IOPB address alignment error");
2629 case XD_ERR_FIRM:
2630 return ("Firmware error");
2631 case XD_ERR_MMOD:
2632 return ("Illegal maintenance mode test number");
2633 case XD_ERR_ACFL:
2634 return ("ACFAIL asserted");
2635 default:
2636 return ("Unknown error");
2637 }
2638 }
2639