mscp_disk.c revision 1.54.2.1 1 1.54.2.1 ad /* $NetBSD: mscp_disk.c,v 1.54.2.1 2007/08/19 19:24:30 ad Exp $ */
2 1.1 ragge /*
3 1.1 ragge * Copyright (c) 1988 Regents of the University of California.
4 1.1 ragge * All rights reserved.
5 1.1 ragge *
6 1.1 ragge * This code is derived from software contributed to Berkeley by
7 1.1 ragge * Chris Torek.
8 1.1 ragge *
9 1.1 ragge * Redistribution and use in source and binary forms, with or without
10 1.1 ragge * modification, are permitted provided that the following conditions
11 1.1 ragge * are met:
12 1.1 ragge * 1. Redistributions of source code must retain the above copyright
13 1.1 ragge * notice, this list of conditions and the following disclaimer.
14 1.1 ragge * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 ragge * notice, this list of conditions and the following disclaimer in the
16 1.1 ragge * documentation and/or other materials provided with the distribution.
17 1.42 agc * 3. Neither the name of the University nor the names of its contributors
18 1.42 agc * may be used to endorse or promote products derived from this software
19 1.42 agc * without specific prior written permission.
20 1.42 agc *
21 1.42 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.42 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.42 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.42 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.42 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.42 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.42 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.42 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.42 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.42 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.42 agc * SUCH DAMAGE.
32 1.42 agc *
33 1.42 agc * @(#)uda.c 7.32 (Berkeley) 2/13/91
34 1.42 agc */
35 1.42 agc
36 1.42 agc /*
37 1.42 agc * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
38 1.42 agc *
39 1.42 agc * This code is derived from software contributed to Berkeley by
40 1.42 agc * Chris Torek.
41 1.42 agc *
42 1.42 agc * Redistribution and use in source and binary forms, with or without
43 1.42 agc * modification, are permitted provided that the following conditions
44 1.42 agc * are met:
45 1.42 agc * 1. Redistributions of source code must retain the above copyright
46 1.42 agc * notice, this list of conditions and the following disclaimer.
47 1.42 agc * 2. Redistributions in binary form must reproduce the above copyright
48 1.42 agc * notice, this list of conditions and the following disclaimer in the
49 1.42 agc * documentation and/or other materials provided with the distribution.
50 1.1 ragge * 3. All advertising materials mentioning features or use of this software
51 1.1 ragge * must display the following acknowledgement:
52 1.1 ragge * This product includes software developed by the University of
53 1.1 ragge * California, Berkeley and its contributors.
54 1.1 ragge * 4. Neither the name of the University nor the names of its contributors
55 1.1 ragge * may be used to endorse or promote products derived from this software
56 1.1 ragge * without specific prior written permission.
57 1.1 ragge *
58 1.1 ragge * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 ragge * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 ragge * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 ragge * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 ragge * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 ragge * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 ragge * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 ragge * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 ragge * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 ragge * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 ragge * SUCH DAMAGE.
69 1.1 ragge *
70 1.1 ragge * @(#)uda.c 7.32 (Berkeley) 2/13/91
71 1.1 ragge */
72 1.1 ragge
73 1.1 ragge /*
74 1.1 ragge * RA disk device driver
75 1.17 ragge * RX MSCP floppy disk device driver
76 1.1 ragge */
77 1.1 ragge
78 1.1 ragge /*
79 1.1 ragge * TODO
80 1.1 ragge * write bad block forwarding code
81 1.1 ragge */
82 1.30 lukem
83 1.30 lukem #include <sys/cdefs.h>
84 1.54.2.1 ad __KERNEL_RCSID(0, "$NetBSD: mscp_disk.c,v 1.54.2.1 2007/08/19 19:24:30 ad Exp $");
85 1.1 ragge
86 1.1 ragge #include <sys/param.h>
87 1.1 ragge #include <sys/buf.h>
88 1.44 he #include <sys/bufq.h>
89 1.1 ragge #include <sys/device.h>
90 1.2 ragge #include <sys/disk.h>
91 1.1 ragge #include <sys/disklabel.h>
92 1.2 ragge #include <sys/ioctl.h>
93 1.1 ragge #include <sys/stat.h>
94 1.2 ragge #include <sys/fcntl.h>
95 1.17 ragge #include <sys/reboot.h>
96 1.2 ragge #include <sys/proc.h>
97 1.2 ragge #include <sys/systm.h>
98 1.33 gehenna #include <sys/conf.h>
99 1.17 ragge
100 1.18 ragge #include <ufs/ufs/dinode.h>
101 1.17 ragge #include <ufs/ffs/fs.h>
102 1.10 ragge
103 1.21 ragge #include <machine/bus.h>
104 1.10 ragge #include <machine/cpu.h>
105 1.1 ragge
106 1.21 ragge #include <dev/mscp/mscp.h>
107 1.21 ragge #include <dev/mscp/mscpreg.h>
108 1.21 ragge #include <dev/mscp/mscpvar.h>
109 1.1 ragge
110 1.14 jtk #include "locators.h"
111 1.17 ragge #include "ioconf.h"
112 1.17 ragge #include "ra.h"
113 1.17 ragge
114 1.1 ragge /*
115 1.1 ragge * Drive status, per drive
116 1.1 ragge */
117 1.1 ragge struct ra_softc {
118 1.1 ragge struct device ra_dev; /* Autoconf struct */
119 1.1 ragge struct disk ra_disk;
120 1.1 ragge int ra_state; /* open/closed state */
121 1.1 ragge u_long ra_mediaid; /* media id */
122 1.1 ragge int ra_hwunit; /* Hardware unit number */
123 1.1 ragge int ra_havelabel; /* true if we have a label */
124 1.1 ragge int ra_wlabel; /* label sector is currently writable */
125 1.1 ragge };
126 1.1 ragge
127 1.17 ragge #define rx_softc ra_softc
128 1.17 ragge
129 1.46 perry void rxattach(struct device *, struct device *, void *);
130 1.46 perry int rx_putonline(struct rx_softc *);
131 1.46 perry void rrmakelabel(struct disklabel *, long);
132 1.17 ragge
133 1.17 ragge #if NRA
134 1.17 ragge
135 1.46 perry int ramatch(struct device *, struct cfdata *, void *);
136 1.46 perry void raattach(struct device *, struct device *, void *);
137 1.46 perry int ra_putonline(struct ra_softc *);
138 1.2 ragge
139 1.35 thorpej CFATTACH_DECL(ra, sizeof(struct ra_softc),
140 1.36 thorpej ramatch, rxattach, NULL, NULL);
141 1.15 thorpej
142 1.33 gehenna dev_type_open(raopen);
143 1.33 gehenna dev_type_close(raclose);
144 1.33 gehenna dev_type_read(raread);
145 1.33 gehenna dev_type_write(rawrite);
146 1.33 gehenna dev_type_ioctl(raioctl);
147 1.33 gehenna dev_type_strategy(rastrategy);
148 1.33 gehenna dev_type_dump(radump);
149 1.33 gehenna dev_type_size(rasize);
150 1.33 gehenna
151 1.33 gehenna const struct bdevsw ra_bdevsw = {
152 1.33 gehenna raopen, raclose, rastrategy, raioctl, radump, rasize, D_DISK
153 1.33 gehenna };
154 1.33 gehenna
155 1.33 gehenna const struct cdevsw ra_cdevsw = {
156 1.33 gehenna raopen, raclose, raread, rawrite, raioctl,
157 1.37 jdolecek nostop, notty, nopoll, nommap, nokqfilter, D_DISK
158 1.33 gehenna };
159 1.33 gehenna
160 1.43 thorpej static struct dkdriver radkdriver = {
161 1.43 thorpej rastrategy, minphys
162 1.43 thorpej };
163 1.43 thorpej
164 1.1 ragge /*
165 1.1 ragge * More driver definitions, for generic MSCP code.
166 1.1 ragge */
167 1.1 ragge
168 1.1 ragge int
169 1.16 ragge ramatch(parent, cf, aux)
170 1.1 ragge struct device *parent;
171 1.16 ragge struct cfdata *cf;
172 1.16 ragge void *aux;
173 1.1 ragge {
174 1.2 ragge struct drive_attach_args *da = aux;
175 1.2 ragge struct mscp *mp = da->da_mp;
176 1.1 ragge
177 1.2 ragge if ((da->da_typ & MSCPBUS_DISK) == 0)
178 1.2 ragge return 0;
179 1.14 jtk if (cf->cf_loc[MSCPBUSCF_DRIVE] != MSCPBUSCF_DRIVE_DEFAULT &&
180 1.14 jtk cf->cf_loc[MSCPBUSCF_DRIVE] != mp->mscp_unit)
181 1.1 ragge return 0;
182 1.17 ragge /*
183 1.17 ragge * Check if this disk is a floppy; then don't configure it.
184 1.17 ragge * Seems to be a safe way to test it per Chris Torek.
185 1.17 ragge */
186 1.17 ragge if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) == 'X' - '@')
187 1.17 ragge return 0;
188 1.1 ragge return 1;
189 1.1 ragge }
190 1.1 ragge
191 1.47 perry /*
192 1.1 ragge * (Try to) put the drive online. This is done the first time the
193 1.1 ragge * drive is opened, or if it har fallen offline.
194 1.1 ragge */
195 1.1 ragge int
196 1.1 ragge ra_putonline(ra)
197 1.1 ragge struct ra_softc *ra;
198 1.1 ragge {
199 1.1 ragge struct disklabel *dl;
200 1.40 dsl const char *msg;
201 1.33 gehenna int maj;
202 1.1 ragge
203 1.17 ragge if (rx_putonline(ra) != MSCP_DONE)
204 1.1 ragge return MSCP_FAILED;
205 1.1 ragge
206 1.17 ragge dl = ra->ra_disk.dk_label;
207 1.1 ragge
208 1.17 ragge ra->ra_state = DK_RDLABEL;
209 1.5 christos printf("%s", ra->ra_dev.dv_xname);
210 1.33 gehenna maj = cdevsw_lookup_major(&ra_cdevsw);
211 1.51 thorpej if ((msg = readdisklabel(MAKEDISKDEV(maj, device_unit(&ra->ra_dev),
212 1.17 ragge RAW_PART), rastrategy, dl, NULL)) != NULL)
213 1.5 christos printf(": %s", msg);
214 1.17 ragge else {
215 1.1 ragge ra->ra_havelabel = 1;
216 1.17 ragge ra->ra_state = DK_OPEN;
217 1.17 ragge }
218 1.1 ragge
219 1.5 christos printf(": size %d sectors\n", dl->d_secperunit);
220 1.1 ragge
221 1.1 ragge return MSCP_DONE;
222 1.1 ragge }
223 1.17 ragge
224 1.1 ragge /*
225 1.1 ragge * Open a drive.
226 1.1 ragge */
227 1.1 ragge /*ARGSUSED*/
228 1.1 ragge int
229 1.49 christos raopen(dev, flag, fmt, l)
230 1.1 ragge dev_t dev;
231 1.1 ragge int flag, fmt;
232 1.49 christos struct lwp *l;
233 1.1 ragge {
234 1.23 augustss struct ra_softc *ra;
235 1.43 thorpej int error, part, unit, mask;
236 1.1 ragge /*
237 1.1 ragge * Make sure this is a reasonable open request.
238 1.1 ragge */
239 1.17 ragge unit = DISKUNIT(dev);
240 1.1 ragge if (unit >= ra_cd.cd_ndevs)
241 1.1 ragge return ENXIO;
242 1.1 ragge ra = ra_cd.cd_devs[unit];
243 1.1 ragge if (ra == 0)
244 1.1 ragge return ENXIO;
245 1.1 ragge
246 1.43 thorpej part = DISKPART(dev);
247 1.43 thorpej
248 1.43 thorpej if ((error = lockmgr(&ra->ra_disk.dk_openlock, LK_EXCLUSIVE,
249 1.43 thorpej NULL)) != 0)
250 1.43 thorpej return (error);
251 1.43 thorpej
252 1.43 thorpej /*
253 1.43 thorpej * If there are wedges, and this is not RAW_PART, then we
254 1.43 thorpej * need to fail.
255 1.43 thorpej */
256 1.43 thorpej if (ra->ra_disk.dk_nwedges != 0 && part != RAW_PART) {
257 1.43 thorpej error = EBUSY;
258 1.43 thorpej goto bad1;
259 1.43 thorpej }
260 1.43 thorpej
261 1.1 ragge /*
262 1.1 ragge * If this is the first open; we must first try to put
263 1.1 ragge * the disk online (and read the label).
264 1.1 ragge */
265 1.43 thorpej if (ra->ra_state == DK_CLOSED) {
266 1.43 thorpej if (ra_putonline(ra) == MSCP_FAILED) {
267 1.43 thorpej error = ENXIO;
268 1.43 thorpej goto bad1;
269 1.43 thorpej }
270 1.43 thorpej }
271 1.1 ragge
272 1.11 ragge /* If the disk has no label; allow writing everywhere */
273 1.11 ragge if (ra->ra_havelabel == 0)
274 1.11 ragge ra->ra_wlabel = 1;
275 1.11 ragge
276 1.43 thorpej if (part >= ra->ra_disk.dk_label->d_npartitions) {
277 1.43 thorpej error = ENXIO;
278 1.43 thorpej goto bad1;
279 1.43 thorpej }
280 1.1 ragge
281 1.1 ragge /*
282 1.1 ragge * Wait for the state to settle
283 1.1 ragge */
284 1.1 ragge #if notyet
285 1.17 ragge while (ra->ra_state != DK_OPEN)
286 1.54 christos if ((error = tsleep((void *)ra, (PZERO + 1) | PCATCH,
287 1.1 ragge devopn, 0))) {
288 1.1 ragge splx(s);
289 1.1 ragge return (error);
290 1.1 ragge }
291 1.1 ragge #endif
292 1.1 ragge
293 1.1 ragge mask = 1 << part;
294 1.1 ragge
295 1.1 ragge switch (fmt) {
296 1.1 ragge case S_IFCHR:
297 1.1 ragge ra->ra_disk.dk_copenmask |= mask;
298 1.1 ragge break;
299 1.1 ragge case S_IFBLK:
300 1.1 ragge ra->ra_disk.dk_bopenmask |= mask;
301 1.1 ragge break;
302 1.1 ragge }
303 1.1 ragge ra->ra_disk.dk_openmask |= mask;
304 1.43 thorpej (void) lockmgr(&ra->ra_disk.dk_openlock, LK_RELEASE, NULL);
305 1.1 ragge return 0;
306 1.43 thorpej
307 1.43 thorpej bad1:
308 1.43 thorpej (void) lockmgr(&ra->ra_disk.dk_openlock, LK_RELEASE, NULL);
309 1.43 thorpej return (error);
310 1.1 ragge }
311 1.1 ragge
312 1.1 ragge /* ARGSUSED */
313 1.1 ragge int
314 1.49 christos raclose(dev, flags, fmt, l)
315 1.1 ragge dev_t dev;
316 1.1 ragge int flags, fmt;
317 1.49 christos struct lwp *l;
318 1.1 ragge {
319 1.23 augustss int unit = DISKUNIT(dev);
320 1.23 augustss struct ra_softc *ra = ra_cd.cd_devs[unit];
321 1.43 thorpej int error, mask = (1 << DISKPART(dev));
322 1.43 thorpej
323 1.43 thorpej if ((error = lockmgr(&ra->ra_disk.dk_openlock, LK_EXCLUSIVE,
324 1.43 thorpej NULL)) != 0)
325 1.43 thorpej return (error);
326 1.1 ragge
327 1.1 ragge switch (fmt) {
328 1.1 ragge case S_IFCHR:
329 1.1 ragge ra->ra_disk.dk_copenmask &= ~mask;
330 1.1 ragge break;
331 1.1 ragge case S_IFBLK:
332 1.1 ragge ra->ra_disk.dk_bopenmask &= ~mask;
333 1.1 ragge break;
334 1.1 ragge }
335 1.1 ragge ra->ra_disk.dk_openmask =
336 1.1 ragge ra->ra_disk.dk_copenmask | ra->ra_disk.dk_bopenmask;
337 1.1 ragge
338 1.1 ragge /*
339 1.1 ragge * Should wait for I/O to complete on this partition even if
340 1.1 ragge * others are open, but wait for work on blkflush().
341 1.1 ragge */
342 1.11 ragge #if notyet
343 1.1 ragge if (ra->ra_openpart == 0) {
344 1.29 thorpej s = spluba();
345 1.48 yamt while (BUFQ_PEEK(udautab[unit]) != NULL)
346 1.25 thorpej (void) tsleep(&udautab[unit], PZERO - 1,
347 1.25 thorpej "raclose", 0);
348 1.1 ragge splx(s);
349 1.1 ragge ra->ra_state = CLOSED;
350 1.1 ragge ra->ra_wlabel = 0;
351 1.1 ragge }
352 1.1 ragge #endif
353 1.43 thorpej (void) lockmgr(&ra->ra_disk.dk_openlock, LK_RELEASE, NULL);
354 1.1 ragge return (0);
355 1.1 ragge }
356 1.1 ragge
357 1.1 ragge /*
358 1.1 ragge * Queue a transfer request, and if possible, hand it to the controller.
359 1.1 ragge */
360 1.1 ragge void
361 1.1 ragge rastrategy(bp)
362 1.23 augustss struct buf *bp;
363 1.1 ragge {
364 1.23 augustss int unit;
365 1.23 augustss struct ra_softc *ra;
366 1.32 ragge int b;
367 1.32 ragge
368 1.1 ragge /*
369 1.1 ragge * Make sure this is a reasonable drive to use.
370 1.1 ragge */
371 1.17 ragge unit = DISKUNIT(bp->b_dev);
372 1.1 ragge if (unit > ra_cd.cd_ndevs || (ra = ra_cd.cd_devs[unit]) == NULL) {
373 1.1 ragge bp->b_error = ENXIO;
374 1.11 ragge goto done;
375 1.1 ragge }
376 1.1 ragge /*
377 1.1 ragge * If drive is open `raw' or reading label, let it at it.
378 1.1 ragge */
379 1.17 ragge if (ra->ra_state == DK_RDLABEL) {
380 1.32 ragge /* Make some statistics... /bqt */
381 1.32 ragge b = splbio();
382 1.32 ragge disk_busy(&ra->ra_disk);
383 1.32 ragge splx(b);
384 1.50 thorpej mscp_strategy(bp, device_parent(&ra->ra_dev));
385 1.1 ragge return;
386 1.1 ragge }
387 1.17 ragge
388 1.17 ragge /* If disk is not online, try to put it online */
389 1.17 ragge if (ra->ra_state == DK_CLOSED)
390 1.17 ragge if (ra_putonline(ra) == MSCP_FAILED) {
391 1.17 ragge bp->b_error = EIO;
392 1.17 ragge goto done;
393 1.17 ragge }
394 1.1 ragge
395 1.1 ragge /*
396 1.1 ragge * Determine the size of the transfer, and make sure it is
397 1.1 ragge * within the boundaries of the partition.
398 1.1 ragge */
399 1.41 thorpej if (bounds_check_with_label(&ra->ra_disk, bp, ra->ra_wlabel) <= 0)
400 1.17 ragge goto done;
401 1.1 ragge
402 1.12 ragge /* Make some statistics... /bqt */
403 1.32 ragge b = splbio();
404 1.32 ragge disk_busy(&ra->ra_disk);
405 1.32 ragge splx(b);
406 1.50 thorpej mscp_strategy(bp, device_parent(&ra->ra_dev));
407 1.1 ragge return;
408 1.1 ragge
409 1.7 ragge done:
410 1.1 ragge biodone(bp);
411 1.1 ragge }
412 1.1 ragge
413 1.1 ragge int
414 1.33 gehenna raread(dev, uio, flags)
415 1.17 ragge dev_t dev;
416 1.17 ragge struct uio *uio;
417 1.33 gehenna int flags;
418 1.1 ragge {
419 1.1 ragge
420 1.17 ragge return (physio(rastrategy, NULL, dev, B_READ, minphys, uio));
421 1.1 ragge }
422 1.1 ragge
423 1.1 ragge int
424 1.33 gehenna rawrite(dev, uio, flags)
425 1.17 ragge dev_t dev;
426 1.17 ragge struct uio *uio;
427 1.33 gehenna int flags;
428 1.1 ragge {
429 1.1 ragge
430 1.17 ragge return (physio(rastrategy, NULL, dev, B_WRITE, minphys, uio));
431 1.1 ragge }
432 1.1 ragge
433 1.1 ragge /*
434 1.1 ragge * I/O controls.
435 1.1 ragge */
436 1.1 ragge int
437 1.49 christos raioctl(dev, cmd, data, flag, l)
438 1.1 ragge dev_t dev;
439 1.33 gehenna u_long cmd;
440 1.54 christos void *data;
441 1.1 ragge int flag;
442 1.49 christos struct lwp *l;
443 1.1 ragge {
444 1.23 augustss int unit = DISKUNIT(dev);
445 1.23 augustss struct disklabel *lp, *tp;
446 1.23 augustss struct ra_softc *ra = ra_cd.cd_devs[unit];
447 1.1 ragge int error = 0;
448 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
449 1.26 fvdl struct disklabel newlabel;
450 1.26 fvdl #endif
451 1.1 ragge
452 1.1 ragge lp = ra->ra_disk.dk_label;
453 1.1 ragge
454 1.1 ragge switch (cmd) {
455 1.1 ragge
456 1.1 ragge case DIOCGDINFO:
457 1.1 ragge bcopy(lp, data, sizeof (struct disklabel));
458 1.1 ragge break;
459 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
460 1.26 fvdl case ODIOCGDINFO:
461 1.26 fvdl bcopy(lp, &newlabel, sizeof disklabel);
462 1.26 fvdl if (newlabel.d_npartitions > OLDMAXPARTITIONS)
463 1.27 fvdl return ENOTTY;
464 1.26 fvdl bcopy(&newlabel, data, sizeof (struct olddisklabel));
465 1.26 fvdl break;
466 1.26 fvdl #endif
467 1.1 ragge
468 1.1 ragge case DIOCGPART:
469 1.1 ragge ((struct partinfo *)data)->disklab = lp;
470 1.1 ragge ((struct partinfo *)data)->part =
471 1.17 ragge &lp->d_partitions[DISKPART(dev)];
472 1.1 ragge break;
473 1.1 ragge
474 1.11 ragge case DIOCWDINFO:
475 1.1 ragge case DIOCSDINFO:
476 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
477 1.26 fvdl case ODIOCWDINFO:
478 1.26 fvdl case ODIOCSDINFO:
479 1.26 fvdl if (cmd == ODIOCSDINFO || xfer == ODIOCWDINFO) {
480 1.26 fvdl memset(&newlabel, 0, sizeof newlabel);
481 1.26 fvdl memcpy(&newlabel, data, sizeof (struct olddisklabel));
482 1.26 fvdl tp = &newlabel;
483 1.26 fvdl } else
484 1.26 fvdl #endif
485 1.26 fvdl tp = (struct disklabel *)data;
486 1.26 fvdl
487 1.1 ragge if ((flag & FWRITE) == 0)
488 1.1 ragge error = EBADF;
489 1.11 ragge else {
490 1.43 thorpej if ((error = lockmgr(&ra->ra_disk.dk_openlock,
491 1.43 thorpej LK_EXCLUSIVE, NULL)) != 0)
492 1.43 thorpej break;
493 1.26 fvdl error = setdisklabel(lp, tp, 0, 0);
494 1.26 fvdl if ((error == 0) && (cmd == DIOCWDINFO
495 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
496 1.26 fvdl || cmd == ODIOCWDINFO
497 1.26 fvdl #else
498 1.26 fvdl )) {
499 1.26 fvdl #endif
500 1.11 ragge ra->ra_wlabel = 1;
501 1.11 ragge error = writedisklabel(dev, rastrategy, lp,0);
502 1.11 ragge ra->ra_wlabel = 0;
503 1.11 ragge }
504 1.43 thorpej (void) lockmgr(&ra->ra_disk.dk_openlock,
505 1.43 thorpej LK_RELEASE, NULL);
506 1.11 ragge }
507 1.1 ragge break;
508 1.1 ragge
509 1.1 ragge case DIOCWLABEL:
510 1.1 ragge if ((flag & FWRITE) == 0)
511 1.1 ragge error = EBADF;
512 1.1 ragge else
513 1.1 ragge ra->ra_wlabel = 1;
514 1.1 ragge break;
515 1.1 ragge
516 1.17 ragge case DIOCGDEFLABEL:
517 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
518 1.26 fvdl case ODIOCGDEFLABEL:
519 1.26 fvdl if (cmd == ODIOCGDEFLABEL)
520 1.26 fvdl tp = &newlabel;
521 1.26 fvdl else
522 1.26 fvdl #else
523 1.18 ragge tp = (struct disklabel *)data;
524 1.26 fvdl #endif
525 1.26 fvdl bzero(tp, sizeof(struct disklabel));
526 1.18 ragge tp->d_secsize = lp->d_secsize;
527 1.18 ragge tp->d_nsectors = lp->d_nsectors;
528 1.18 ragge tp->d_ntracks = lp->d_ntracks;
529 1.18 ragge tp->d_ncylinders = lp->d_ncylinders;
530 1.18 ragge tp->d_secpercyl = lp->d_secpercyl;
531 1.18 ragge tp->d_secperunit = lp->d_secperunit;
532 1.18 ragge tp->d_type = DTYPE_MSCP;
533 1.18 ragge tp->d_rpm = 3600;
534 1.18 ragge rrmakelabel(tp, ra->ra_mediaid);
535 1.26 fvdl #ifdef __HAVE_OLD_DISKLABEL
536 1.26 fvdl if (cmd == ODIOCGDEFLABEL) {
537 1.26 fvdl if (tp->d_npartitions > OLDMAXPARTITIONS)
538 1.27 fvdl return ENOTTY;
539 1.26 fvdl memcpy(data, tp, sizeof (struct olddisklabel));
540 1.26 fvdl }
541 1.26 fvdl #endif
542 1.18 ragge break;
543 1.18 ragge
544 1.43 thorpej case DIOCAWEDGE:
545 1.43 thorpej {
546 1.43 thorpej struct dkwedge_info *dkw = (void *) data;
547 1.43 thorpej
548 1.43 thorpej if ((flag & FWRITE) == 0)
549 1.43 thorpej return (EBADF);
550 1.43 thorpej
551 1.43 thorpej /* If the ioctl happens here, the parent is us. */
552 1.43 thorpej strcpy(dkw->dkw_parent, ra->ra_dev.dv_xname);
553 1.43 thorpej return (dkwedge_add(dkw));
554 1.43 thorpej }
555 1.47 perry
556 1.43 thorpej case DIOCDWEDGE:
557 1.43 thorpej {
558 1.43 thorpej struct dkwedge_info *dkw = (void *) data;
559 1.43 thorpej
560 1.43 thorpej if ((flag & FWRITE) == 0)
561 1.43 thorpej return (EBADF);
562 1.43 thorpej
563 1.43 thorpej /* If the ioctl happens here, the parent is us. */
564 1.43 thorpej strcpy(dkw->dkw_parent, ra->ra_dev.dv_xname);
565 1.43 thorpej return (dkwedge_del(dkw));
566 1.43 thorpej }
567 1.47 perry
568 1.43 thorpej case DIOCLWEDGES:
569 1.43 thorpej {
570 1.43 thorpej struct dkwedge_list *dkwl = (void *) data;
571 1.43 thorpej
572 1.49 christos return (dkwedge_list(&ra->ra_disk, dkwl, l));
573 1.43 thorpej }
574 1.43 thorpej
575 1.1 ragge default:
576 1.1 ragge error = ENOTTY;
577 1.1 ragge break;
578 1.1 ragge }
579 1.1 ragge return (error);
580 1.1 ragge }
581 1.1 ragge
582 1.1 ragge
583 1.1 ragge int
584 1.1 ragge radump(dev, blkno, va, size)
585 1.1 ragge dev_t dev;
586 1.17 ragge daddr_t blkno;
587 1.54 christos void *va;
588 1.1 ragge size_t size;
589 1.1 ragge {
590 1.17 ragge return ENXIO;
591 1.1 ragge }
592 1.1 ragge
593 1.1 ragge /*
594 1.1 ragge * Return the size of a partition, if known, or -1 if not.
595 1.1 ragge */
596 1.1 ragge int
597 1.1 ragge rasize(dev)
598 1.1 ragge dev_t dev;
599 1.1 ragge {
600 1.23 augustss int unit = DISKUNIT(dev);
601 1.1 ragge struct ra_softc *ra;
602 1.1 ragge
603 1.1 ragge if (unit >= ra_cd.cd_ndevs || ra_cd.cd_devs[unit] == 0)
604 1.1 ragge return -1;
605 1.1 ragge
606 1.1 ragge ra = ra_cd.cd_devs[unit];
607 1.1 ragge
608 1.17 ragge if (ra->ra_state == DK_CLOSED)
609 1.1 ragge if (ra_putonline(ra) == MSCP_FAILED)
610 1.17 ragge return -1;
611 1.1 ragge
612 1.17 ragge return ra->ra_disk.dk_label->d_partitions[DISKPART(dev)].p_size *
613 1.13 thorpej (ra->ra_disk.dk_label->d_secsize / DEV_BSIZE);
614 1.17 ragge }
615 1.17 ragge
616 1.17 ragge #endif /* NRA */
617 1.17 ragge
618 1.17 ragge #if NRX
619 1.17 ragge
620 1.46 perry int rxmatch(struct device *, struct cfdata *, void *);
621 1.17 ragge
622 1.35 thorpej CFATTACH_DECL(rx, sizeof(struct rx_softc),
623 1.36 thorpej rxmatch, rxattach, NULL, NULL);
624 1.17 ragge
625 1.33 gehenna dev_type_open(rxopen);
626 1.33 gehenna dev_type_read(rxread);
627 1.33 gehenna dev_type_write(rxwrite);
628 1.33 gehenna dev_type_ioctl(rxioctl);
629 1.33 gehenna dev_type_strategy(rxstrategy);
630 1.33 gehenna dev_type_dump(rxdump);
631 1.33 gehenna dev_type_size(rxsize);
632 1.33 gehenna
633 1.33 gehenna const struct bdevsw rx_bdevsw = {
634 1.33 gehenna rxopen, nullclose, rxstrategy, rxioctl, rxdump, rxsize, D_DISK
635 1.33 gehenna };
636 1.33 gehenna
637 1.33 gehenna const struct cdevsw rx_cdevsw = {
638 1.33 gehenna rxopen, nullclose, rxread, rxwrite, rxioctl,
639 1.37 jdolecek nostop, notty, nopoll, nommap, nokqfilter, D_DISK
640 1.33 gehenna };
641 1.33 gehenna
642 1.43 thorpej static struct dkdriver rxdkdriver = {
643 1.43 thorpej rxstrategy, minphys
644 1.43 thorpej };
645 1.43 thorpej
646 1.17 ragge /*
647 1.17 ragge * More driver definitions, for generic MSCP code.
648 1.17 ragge */
649 1.17 ragge
650 1.17 ragge int
651 1.17 ragge rxmatch(parent, cf, aux)
652 1.17 ragge struct device *parent;
653 1.17 ragge struct cfdata *cf;
654 1.17 ragge void *aux;
655 1.17 ragge {
656 1.17 ragge struct drive_attach_args *da = aux;
657 1.17 ragge struct mscp *mp = da->da_mp;
658 1.17 ragge
659 1.17 ragge if ((da->da_typ & MSCPBUS_DISK) == 0)
660 1.17 ragge return 0;
661 1.17 ragge if (cf->cf_loc[MSCPBUSCF_DRIVE] != MSCPBUSCF_DRIVE_DEFAULT &&
662 1.17 ragge cf->cf_loc[MSCPBUSCF_DRIVE] != mp->mscp_unit)
663 1.17 ragge return 0;
664 1.17 ragge /*
665 1.17 ragge * Check if this disk is a floppy; then configure it.
666 1.17 ragge * Seems to be a safe way to test it per Chris Torek.
667 1.17 ragge */
668 1.17 ragge if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) == 'X' - '@')
669 1.17 ragge return 1;
670 1.17 ragge return 0;
671 1.17 ragge }
672 1.17 ragge
673 1.17 ragge #endif /* NRX */
674 1.17 ragge
675 1.17 ragge /*
676 1.17 ragge * The attach routine only checks and prints drive type.
677 1.17 ragge * Bringing the disk online is done when the disk is accessed
678 1.47 perry * the first time.
679 1.17 ragge */
680 1.17 ragge void
681 1.17 ragge rxattach(parent, self, aux)
682 1.17 ragge struct device *parent, *self;
683 1.47 perry void *aux;
684 1.17 ragge {
685 1.53 thorpej struct rx_softc *rx = device_private(self);
686 1.17 ragge struct drive_attach_args *da = aux;
687 1.17 ragge struct mscp *mp = da->da_mp;
688 1.17 ragge struct mscp_softc *mi = (void *)parent;
689 1.17 ragge struct disklabel *dl;
690 1.17 ragge
691 1.17 ragge rx->ra_mediaid = mp->mscp_guse.guse_mediaid;
692 1.17 ragge rx->ra_state = DK_CLOSED;
693 1.17 ragge rx->ra_hwunit = mp->mscp_unit;
694 1.17 ragge mi->mi_dp[mp->mscp_unit] = self;
695 1.17 ragge
696 1.17 ragge rx->ra_disk.dk_name = rx->ra_dev.dv_xname;
697 1.43 thorpej #if NRX
698 1.43 thorpej if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) == 'X' - '@')
699 1.43 thorpej rx->ra_disk.dk_driver = &rxdkdriver;
700 1.43 thorpej #endif
701 1.43 thorpej #if NRA
702 1.43 thorpej if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) != 'X' - '@')
703 1.43 thorpej rx->ra_disk.dk_driver = &radkdriver;
704 1.43 thorpej #endif
705 1.17 ragge disk_attach((struct disk *)&rx->ra_disk);
706 1.17 ragge
707 1.17 ragge /* Fill in what we know. The actual size is gotten later */
708 1.17 ragge dl = rx->ra_disk.dk_label;
709 1.17 ragge
710 1.17 ragge dl->d_secsize = DEV_BSIZE;
711 1.17 ragge dl->d_nsectors = mp->mscp_guse.guse_nspt;
712 1.19 ragge dl->d_ntracks = mp->mscp_guse.guse_ngpc * mp->mscp_guse.guse_group;
713 1.17 ragge dl->d_secpercyl = dl->d_nsectors * dl->d_ntracks;
714 1.17 ragge disk_printtype(mp->mscp_unit, mp->mscp_guse.guse_mediaid);
715 1.19 ragge #ifdef DEBUG
716 1.19 ragge printf("%s: nspt %d group %d ngpc %d rct %d nrpt %d nrct %d\n",
717 1.19 ragge self->dv_xname, mp->mscp_guse.guse_nspt, mp->mscp_guse.guse_group,
718 1.19 ragge mp->mscp_guse.guse_ngpc, mp->mscp_guse.guse_rctsize,
719 1.19 ragge mp->mscp_guse.guse_nrpt, mp->mscp_guse.guse_nrct);
720 1.19 ragge #endif
721 1.43 thorpej if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) != 'X' - '@') {
722 1.43 thorpej /*
723 1.43 thorpej * XXX We should try to discover wedges here, but
724 1.43 thorpej * XXX that would mean being able to do I/O. Should
725 1.43 thorpej * XXX use config_defer() here.
726 1.43 thorpej */
727 1.43 thorpej }
728 1.17 ragge }
729 1.17 ragge
730 1.47 perry /*
731 1.17 ragge * (Try to) put the drive online. This is done the first time the
732 1.17 ragge * drive is opened, or if it har fallen offline.
733 1.17 ragge */
734 1.17 ragge int
735 1.17 ragge rx_putonline(rx)
736 1.17 ragge struct rx_softc *rx;
737 1.17 ragge {
738 1.17 ragge struct mscp *mp;
739 1.50 thorpej struct mscp_softc *mi =
740 1.50 thorpej (struct mscp_softc *)device_parent(&rx->ra_dev);
741 1.17 ragge volatile int i;
742 1.17 ragge
743 1.17 ragge rx->ra_state = DK_CLOSED;
744 1.17 ragge mp = mscp_getcp(mi, MSCP_WAIT);
745 1.17 ragge mp->mscp_opcode = M_OP_ONLINE;
746 1.17 ragge mp->mscp_unit = rx->ra_hwunit;
747 1.17 ragge mp->mscp_cmdref = 1;
748 1.17 ragge *mp->mscp_addr |= MSCP_OWN | MSCP_INT;
749 1.17 ragge
750 1.17 ragge /* Poll away */
751 1.21 ragge i = bus_space_read_2(mi->mi_iot, mi->mi_iph, 0);
752 1.52 thorpej if (tsleep(&rx->ra_state, PRIBIO, "rxonline", 100*100))
753 1.17 ragge rx->ra_state = DK_CLOSED;
754 1.17 ragge
755 1.17 ragge if (rx->ra_state == DK_CLOSED)
756 1.17 ragge return MSCP_FAILED;
757 1.17 ragge
758 1.17 ragge return MSCP_DONE;
759 1.17 ragge }
760 1.17 ragge
761 1.17 ragge #if NRX
762 1.17 ragge
763 1.17 ragge /*
764 1.17 ragge * Open a drive.
765 1.17 ragge */
766 1.17 ragge /*ARGSUSED*/
767 1.17 ragge int
768 1.49 christos rxopen(dev, flag, fmt, l)
769 1.17 ragge dev_t dev;
770 1.17 ragge int flag, fmt;
771 1.49 christos struct lwp *l;
772 1.17 ragge {
773 1.23 augustss struct rx_softc *rx;
774 1.17 ragge int unit;
775 1.17 ragge
776 1.17 ragge /*
777 1.17 ragge * Make sure this is a reasonable open request.
778 1.17 ragge */
779 1.17 ragge unit = DISKUNIT(dev);
780 1.17 ragge if (unit >= rx_cd.cd_ndevs)
781 1.17 ragge return ENXIO;
782 1.17 ragge rx = rx_cd.cd_devs[unit];
783 1.17 ragge if (rx == 0)
784 1.17 ragge return ENXIO;
785 1.17 ragge
786 1.17 ragge /*
787 1.17 ragge * If this is the first open; we must first try to put
788 1.17 ragge * the disk online (and read the label).
789 1.17 ragge */
790 1.17 ragge if (rx->ra_state == DK_CLOSED)
791 1.17 ragge if (rx_putonline(rx) == MSCP_FAILED)
792 1.17 ragge return ENXIO;
793 1.17 ragge
794 1.17 ragge return 0;
795 1.17 ragge }
796 1.17 ragge
797 1.17 ragge /*
798 1.17 ragge * Queue a transfer request, and if possible, hand it to the controller.
799 1.17 ragge *
800 1.17 ragge * This routine is broken into two so that the internal version
801 1.17 ragge * udastrat1() can be called by the (nonexistent, as yet) bad block
802 1.17 ragge * revectoring routine.
803 1.17 ragge */
804 1.17 ragge void
805 1.17 ragge rxstrategy(bp)
806 1.23 augustss struct buf *bp;
807 1.17 ragge {
808 1.23 augustss int unit;
809 1.23 augustss struct rx_softc *rx;
810 1.32 ragge int b;
811 1.17 ragge
812 1.17 ragge /*
813 1.17 ragge * Make sure this is a reasonable drive to use.
814 1.17 ragge */
815 1.17 ragge unit = DISKUNIT(bp->b_dev);
816 1.17 ragge if (unit > rx_cd.cd_ndevs || (rx = rx_cd.cd_devs[unit]) == NULL) {
817 1.17 ragge bp->b_error = ENXIO;
818 1.17 ragge goto done;
819 1.17 ragge }
820 1.17 ragge
821 1.17 ragge /* If disk is not online, try to put it online */
822 1.17 ragge if (rx->ra_state == DK_CLOSED)
823 1.17 ragge if (rx_putonline(rx) == MSCP_FAILED) {
824 1.17 ragge bp->b_error = EIO;
825 1.17 ragge goto done;
826 1.17 ragge }
827 1.17 ragge
828 1.17 ragge /*
829 1.17 ragge * Determine the size of the transfer, and make sure it is
830 1.17 ragge * within the boundaries of the partition.
831 1.17 ragge */
832 1.17 ragge if (bp->b_blkno >= rx->ra_disk.dk_label->d_secperunit) {
833 1.17 ragge bp->b_resid = bp->b_bcount;
834 1.17 ragge goto done;
835 1.17 ragge }
836 1.17 ragge
837 1.17 ragge /* Make some statistics... /bqt */
838 1.32 ragge b = splbio();
839 1.32 ragge disk_busy(&rx->ra_disk);
840 1.32 ragge splx(b);
841 1.50 thorpej mscp_strategy(bp, device_parent(&rx->ra_dev));
842 1.17 ragge return;
843 1.17 ragge
844 1.17 ragge done:
845 1.17 ragge biodone(bp);
846 1.17 ragge }
847 1.17 ragge
848 1.17 ragge int
849 1.33 gehenna rxread(dev, uio, flag)
850 1.17 ragge dev_t dev;
851 1.17 ragge struct uio *uio;
852 1.33 gehenna int flag;
853 1.17 ragge {
854 1.17 ragge
855 1.17 ragge return (physio(rxstrategy, NULL, dev, B_READ, minphys, uio));
856 1.17 ragge }
857 1.17 ragge
858 1.17 ragge int
859 1.33 gehenna rxwrite(dev, uio, flag)
860 1.17 ragge dev_t dev;
861 1.17 ragge struct uio *uio;
862 1.33 gehenna int flag;
863 1.17 ragge {
864 1.17 ragge
865 1.17 ragge return (physio(rxstrategy, NULL, dev, B_WRITE, minphys, uio));
866 1.17 ragge }
867 1.17 ragge
868 1.17 ragge /*
869 1.17 ragge * I/O controls.
870 1.17 ragge */
871 1.17 ragge int
872 1.49 christos rxioctl(dev, cmd, data, flag, l)
873 1.17 ragge dev_t dev;
874 1.33 gehenna u_long cmd;
875 1.54 christos void *data;
876 1.17 ragge int flag;
877 1.49 christos struct lwp *l;
878 1.17 ragge {
879 1.23 augustss int unit = DISKUNIT(dev);
880 1.23 augustss struct disklabel *lp;
881 1.23 augustss struct rx_softc *rx = rx_cd.cd_devs[unit];
882 1.17 ragge int error = 0;
883 1.17 ragge
884 1.17 ragge lp = rx->ra_disk.dk_label;
885 1.17 ragge
886 1.17 ragge switch (cmd) {
887 1.17 ragge
888 1.17 ragge case DIOCGDINFO:
889 1.17 ragge bcopy(lp, data, sizeof (struct disklabel));
890 1.17 ragge break;
891 1.17 ragge
892 1.17 ragge case DIOCGPART:
893 1.17 ragge ((struct partinfo *)data)->disklab = lp;
894 1.17 ragge ((struct partinfo *)data)->part =
895 1.17 ragge &lp->d_partitions[DISKPART(dev)];
896 1.17 ragge break;
897 1.17 ragge
898 1.17 ragge
899 1.17 ragge case DIOCWDINFO:
900 1.17 ragge case DIOCSDINFO:
901 1.17 ragge case DIOCWLABEL:
902 1.17 ragge break;
903 1.17 ragge
904 1.17 ragge default:
905 1.17 ragge error = ENOTTY;
906 1.17 ragge break;
907 1.17 ragge }
908 1.17 ragge return (error);
909 1.17 ragge }
910 1.17 ragge
911 1.17 ragge int
912 1.17 ragge rxdump(dev, blkno, va, size)
913 1.17 ragge dev_t dev;
914 1.17 ragge daddr_t blkno;
915 1.54 christos void *va;
916 1.17 ragge size_t size;
917 1.17 ragge {
918 1.17 ragge
919 1.17 ragge /* Not likely. */
920 1.17 ragge return ENXIO;
921 1.17 ragge }
922 1.17 ragge
923 1.17 ragge int
924 1.17 ragge rxsize(dev)
925 1.17 ragge dev_t dev;
926 1.17 ragge {
927 1.17 ragge
928 1.17 ragge return -1;
929 1.17 ragge }
930 1.17 ragge
931 1.17 ragge #endif /* NRX */
932 1.17 ragge
933 1.46 perry void rrdgram(struct device *, struct mscp *, struct mscp_softc *);
934 1.46 perry void rriodone(struct device *, struct buf *);
935 1.46 perry int rronline(struct device *, struct mscp *);
936 1.46 perry int rrgotstatus(struct device *, struct mscp *);
937 1.46 perry void rrreplace(struct device *, struct mscp *);
938 1.46 perry int rrioerror(struct device *, struct mscp *, struct buf *);
939 1.46 perry void rrfillin(struct buf *, struct mscp *);
940 1.46 perry void rrbb(struct device *, struct mscp *, struct buf *);
941 1.17 ragge
942 1.17 ragge
943 1.17 ragge struct mscp_device ra_device = {
944 1.17 ragge rrdgram,
945 1.17 ragge rriodone,
946 1.17 ragge rronline,
947 1.17 ragge rrgotstatus,
948 1.17 ragge rrreplace,
949 1.17 ragge rrioerror,
950 1.17 ragge rrbb,
951 1.17 ragge rrfillin,
952 1.17 ragge };
953 1.17 ragge
954 1.17 ragge /*
955 1.17 ragge * Handle an error datagram.
956 1.17 ragge * This can come from an unconfigured drive as well.
957 1.47 perry */
958 1.47 perry void
959 1.17 ragge rrdgram(usc, mp, mi)
960 1.17 ragge struct device *usc;
961 1.47 perry struct mscp *mp;
962 1.17 ragge struct mscp_softc *mi;
963 1.47 perry {
964 1.17 ragge if (mscp_decodeerror(usc == NULL?"unconf disk" : usc->dv_xname, mp, mi))
965 1.47 perry return;
966 1.17 ragge /*
967 1.17 ragge * SDI status information bytes 10 and 11 are the microprocessor
968 1.17 ragge * error code and front panel code respectively. These vary per
969 1.17 ragge * drive type and are printed purely for field service information.
970 1.17 ragge */
971 1.47 perry if (mp->mscp_format == M_FM_SDI)
972 1.17 ragge printf("\tsdi uproc error code 0x%x, front panel code 0x%x\n",
973 1.17 ragge mp->mscp_erd.erd_sdistat[10],
974 1.17 ragge mp->mscp_erd.erd_sdistat[11]);
975 1.17 ragge }
976 1.17 ragge
977 1.47 perry void
978 1.17 ragge rriodone(usc, bp)
979 1.17 ragge struct device *usc;
980 1.17 ragge struct buf *bp;
981 1.17 ragge {
982 1.32 ragge struct ra_softc *ra;
983 1.32 ragge int unit;
984 1.32 ragge
985 1.32 ragge /* We assume that this is a reasonable drive. ra_strategy should
986 1.32 ragge already have verified it. Thus, no checks here... /bqt */
987 1.32 ragge unit = DISKUNIT(bp->b_dev);
988 1.45 matt #if NRA
989 1.45 matt if (cdevsw_lookup(bp->b_dev) == &ra_cdevsw)
990 1.45 matt ra = ra_cd.cd_devs[unit];
991 1.45 matt else
992 1.45 matt #endif
993 1.45 matt #if NRX
994 1.45 matt if (cdevsw_lookup(bp->b_dev) == &rx_cdevsw)
995 1.45 matt ra = rx_cd.cd_devs[unit];
996 1.45 matt else
997 1.45 matt #endif
998 1.45 matt panic("rriodone: unexpected major %d unit %d",
999 1.45 matt major(bp->b_dev), unit);
1000 1.38 mrg disk_unbusy(&ra->ra_disk, bp->b_bcount, (bp->b_flags & B_READ));
1001 1.17 ragge
1002 1.17 ragge biodone(bp);
1003 1.17 ragge }
1004 1.17 ragge
1005 1.17 ragge /*
1006 1.17 ragge * A drive came on line. Check its type and size. Return DONE if
1007 1.17 ragge * we think the drive is truly on line. In any case, awaken anyone
1008 1.17 ragge * sleeping on the drive on-line-ness.
1009 1.17 ragge */
1010 1.17 ragge int
1011 1.17 ragge rronline(usc, mp)
1012 1.17 ragge struct device *usc;
1013 1.17 ragge struct mscp *mp;
1014 1.17 ragge {
1015 1.17 ragge struct rx_softc *rx = (struct rx_softc *)usc;
1016 1.17 ragge struct disklabel *dl;
1017 1.17 ragge
1018 1.54 christos wakeup((void *)&rx->ra_state);
1019 1.17 ragge if ((mp->mscp_status & M_ST_MASK) != M_ST_SUCCESS) {
1020 1.17 ragge printf("%s: attempt to bring on line failed: ", usc->dv_xname);
1021 1.17 ragge mscp_printevent(mp);
1022 1.17 ragge return (MSCP_FAILED);
1023 1.17 ragge }
1024 1.17 ragge
1025 1.17 ragge rx->ra_state = DK_OPEN;
1026 1.47 perry
1027 1.17 ragge dl = rx->ra_disk.dk_label;
1028 1.17 ragge dl->d_secperunit = (daddr_t)mp->mscp_onle.onle_unitsize;
1029 1.17 ragge
1030 1.17 ragge if (dl->d_secpercyl) {
1031 1.17 ragge dl->d_ncylinders = dl->d_secperunit/dl->d_secpercyl;
1032 1.17 ragge dl->d_type = DTYPE_MSCP;
1033 1.17 ragge dl->d_rpm = 3600;
1034 1.17 ragge } else {
1035 1.17 ragge dl->d_type = DTYPE_FLOPPY;
1036 1.17 ragge dl->d_rpm = 300;
1037 1.17 ragge }
1038 1.17 ragge rrmakelabel(dl, rx->ra_mediaid);
1039 1.17 ragge
1040 1.17 ragge return (MSCP_DONE);
1041 1.17 ragge }
1042 1.17 ragge
1043 1.17 ragge void
1044 1.17 ragge rrmakelabel(dl, type)
1045 1.17 ragge struct disklabel *dl;
1046 1.17 ragge long type;
1047 1.17 ragge {
1048 1.17 ragge int n, p = 0;
1049 1.17 ragge
1050 1.17 ragge dl->d_bbsize = BBSIZE;
1051 1.39 he dl->d_sbsize = SBLOCKSIZE;
1052 1.17 ragge
1053 1.17 ragge /* Create the disk name for disklabel. Phew... */
1054 1.17 ragge dl->d_typename[p++] = MSCP_MID_CHAR(2, type);
1055 1.17 ragge dl->d_typename[p++] = MSCP_MID_CHAR(1, type);
1056 1.17 ragge if (MSCP_MID_ECH(0, type))
1057 1.17 ragge dl->d_typename[p++] = MSCP_MID_CHAR(0, type);
1058 1.17 ragge n = MSCP_MID_NUM(type);
1059 1.17 ragge if (n > 99) {
1060 1.17 ragge dl->d_typename[p++] = '1';
1061 1.17 ragge n -= 100;
1062 1.17 ragge }
1063 1.17 ragge if (n > 9) {
1064 1.17 ragge dl->d_typename[p++] = (n / 10) + '0';
1065 1.17 ragge n %= 10;
1066 1.17 ragge }
1067 1.17 ragge dl->d_typename[p++] = n + '0';
1068 1.17 ragge dl->d_typename[p] = 0;
1069 1.17 ragge dl->d_npartitions = MAXPARTITIONS;
1070 1.17 ragge dl->d_partitions[0].p_size = dl->d_partitions[2].p_size =
1071 1.17 ragge dl->d_secperunit;
1072 1.17 ragge dl->d_partitions[0].p_offset = dl->d_partitions[2].p_offset = 0;
1073 1.17 ragge dl->d_interleave = dl->d_headswitch = 1;
1074 1.17 ragge dl->d_magic = dl->d_magic2 = DISKMAGIC;
1075 1.17 ragge dl->d_checksum = dkcksum(dl);
1076 1.17 ragge }
1077 1.17 ragge
1078 1.47 perry /*
1079 1.17 ragge * We got some (configured) unit's status. Return DONE if it succeeded.
1080 1.17 ragge */
1081 1.17 ragge int
1082 1.17 ragge rrgotstatus(usc, mp)
1083 1.23 augustss struct device *usc;
1084 1.23 augustss struct mscp *mp;
1085 1.47 perry {
1086 1.17 ragge if ((mp->mscp_status & M_ST_MASK) != M_ST_SUCCESS) {
1087 1.17 ragge printf("%s: attempt to get status failed: ", usc->dv_xname);
1088 1.17 ragge mscp_printevent(mp);
1089 1.17 ragge return (MSCP_FAILED);
1090 1.17 ragge }
1091 1.17 ragge /* record for (future) bad block forwarding and whatever else */
1092 1.17 ragge #ifdef notyet
1093 1.17 ragge uda_rasave(ui->ui_unit, mp, 1);
1094 1.17 ragge #endif
1095 1.17 ragge return (MSCP_DONE);
1096 1.17 ragge }
1097 1.17 ragge
1098 1.47 perry /*
1099 1.17 ragge * A replace operation finished.
1100 1.17 ragge */
1101 1.17 ragge /*ARGSUSED*/
1102 1.47 perry void
1103 1.17 ragge rrreplace(usc, mp)
1104 1.17 ragge struct device *usc;
1105 1.17 ragge struct mscp *mp;
1106 1.17 ragge {
1107 1.17 ragge
1108 1.17 ragge panic("udareplace");
1109 1.17 ragge }
1110 1.17 ragge
1111 1.17 ragge /*
1112 1.17 ragge * A transfer failed. We get a chance to fix or restart it.
1113 1.17 ragge * Need to write the bad block forwaring code first....
1114 1.17 ragge */
1115 1.17 ragge /*ARGSUSED*/
1116 1.47 perry int
1117 1.17 ragge rrioerror(usc, mp, bp)
1118 1.23 augustss struct device *usc;
1119 1.23 augustss struct mscp *mp;
1120 1.17 ragge struct buf *bp;
1121 1.17 ragge {
1122 1.17 ragge struct ra_softc *ra = (void *)usc;
1123 1.17 ragge int code = mp->mscp_event;
1124 1.17 ragge
1125 1.17 ragge switch (code & M_ST_MASK) {
1126 1.17 ragge /* The unit has fallen offline. Try to figure out why. */
1127 1.17 ragge case M_ST_OFFLINE:
1128 1.17 ragge bp->b_error = EIO;
1129 1.17 ragge ra->ra_state = DK_CLOSED;
1130 1.17 ragge if (code & M_OFFLINE_UNMOUNTED)
1131 1.17 ragge printf("%s: not mounted/spun down\n", usc->dv_xname);
1132 1.17 ragge if (code & M_OFFLINE_DUPLICATE)
1133 1.17 ragge printf("%s: duplicate unit number!!!\n", usc->dv_xname);
1134 1.17 ragge return MSCP_DONE;
1135 1.17 ragge
1136 1.17 ragge case M_ST_AVAILABLE:
1137 1.17 ragge ra->ra_state = DK_CLOSED; /* Force another online */
1138 1.17 ragge return MSCP_DONE;
1139 1.17 ragge
1140 1.17 ragge default:
1141 1.17 ragge printf("%s:", usc->dv_xname);
1142 1.17 ragge break;
1143 1.17 ragge }
1144 1.17 ragge return (MSCP_FAILED);
1145 1.17 ragge }
1146 1.17 ragge
1147 1.17 ragge /*
1148 1.17 ragge * Fill in disk addresses in a mscp packet waiting for transfer.
1149 1.17 ragge */
1150 1.17 ragge void
1151 1.17 ragge rrfillin(bp, mp)
1152 1.17 ragge struct buf *bp;
1153 1.17 ragge struct mscp *mp;
1154 1.17 ragge {
1155 1.17 ragge struct rx_softc *rx = 0; /* Wall */
1156 1.17 ragge struct disklabel *lp;
1157 1.17 ragge int unit = DISKUNIT(bp->b_dev);
1158 1.17 ragge int part = DISKPART(bp->b_dev);
1159 1.17 ragge
1160 1.17 ragge #if NRA
1161 1.33 gehenna if (cdevsw_lookup(bp->b_dev) == &ra_cdevsw)
1162 1.17 ragge rx = ra_cd.cd_devs[unit];
1163 1.17 ragge #endif
1164 1.17 ragge #if NRX
1165 1.33 gehenna if (cdevsw_lookup(bp->b_dev) == &rx_cdevsw)
1166 1.17 ragge rx = rx_cd.cd_devs[unit];
1167 1.17 ragge #endif
1168 1.17 ragge lp = rx->ra_disk.dk_label;
1169 1.17 ragge
1170 1.17 ragge mp->mscp_seq.seq_lbn = lp->d_partitions[part].p_offset + bp->b_blkno;
1171 1.17 ragge mp->mscp_unit = rx->ra_hwunit;
1172 1.17 ragge mp->mscp_seq.seq_bytecount = bp->b_bcount;
1173 1.17 ragge }
1174 1.17 ragge
1175 1.17 ragge /*
1176 1.17 ragge * A bad block related operation finished.
1177 1.17 ragge */
1178 1.17 ragge /*ARGSUSED*/
1179 1.17 ragge void
1180 1.17 ragge rrbb(usc, mp, bp)
1181 1.17 ragge struct device *usc;
1182 1.17 ragge struct mscp *mp;
1183 1.17 ragge struct buf *bp;
1184 1.17 ragge {
1185 1.17 ragge
1186 1.17 ragge panic("udabb");
1187 1.1 ragge }
1188