1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
|
/* $OpenBSD: mscp_disk.c,v 1.38 2011/11/01 20:52:17 miod Exp $ */
/* $NetBSD: mscp_disk.c,v 1.30 2001/11/13 07:38:28 lukem Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
* Copyright (c) 1988 Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)uda.c 7.32 (Berkeley) 2/13/91
*/
/*
* RA disk device driver
* RX MSCP floppy disk device driver
*/
/*
* TODO
* write bad block forwarding code
*/
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/device.h>
#include <sys/disk.h>
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/dkio.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <sys/reboot.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <ufs/ufs/dinode.h>
#include <ufs/ffs/fs.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <arch/vax/mscp/mscp.h>
#include <arch/vax/mscp/mscpreg.h>
#include <arch/vax/mscp/mscpvar.h>
#include "ra.h"
struct cfdriver ra_cd = {
NULL, "ra", DV_DISK
};
struct cfdriver rx_cd = {
NULL, "rx", DV_DISK
};
#define RAMAJOR 9 /* RA major device number XXX */
/*
* Drive status, per drive
*/
struct ra_softc {
struct device ra_dev; /* autoconf struct */
struct disk ra_disk;
struct mscpv_guse ra_guse; /* status information */
u_long ra_unitsize; /* unit size in sectors */
int ra_state; /* open/closed state */
int ra_hwunit; /* Hardware unit number */
};
#define rx_softc ra_softc
void rxattach(struct device *, struct device *, void *);
int rx_putonline(struct rx_softc *);
#if NRA
int ramatch(struct device *, struct cfdata *, void *);
int raread(dev_t, struct uio *);
int rawrite(dev_t, struct uio *);
int ra_putonline(struct ra_softc *);
int ragetdisklabel(dev_t, struct ra_softc *, struct disklabel *, int);
bdev_decl(ra);
const struct cfattach ra_ca = {
sizeof(struct ra_softc), (cfmatch_t)ramatch, rxattach
};
/*
* More driver definitions, for generic MSCP code.
*/
int
ramatch(struct device *parent, struct cfdata *cf, void *aux)
{
struct drive_attach_args *da = aux;
struct mscp *mp = da->da_mp;
if ((da->da_typ & MSCPBUS_DISK) == 0)
return 0;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != mp->mscp_unit)
return 0;
/*
* Check if this disk is a floppy; then don't configure it.
* Seems to be a safe way to test it per Chris Torek.
*/
if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) == 'X' - '@')
return 0;
return 1;
}
/*
* Read the label from the drive.
*/
int
ragetdisklabel(dev_t dev, struct ra_softc *ra, struct disklabel *lp,
int spoofonly)
{
int n, p = 0;
bzero(lp, sizeof(struct disklabel));
lp->d_secsize = DEV_BSIZE;
lp->d_nsectors = ra->ra_guse.guse_nspt;
lp->d_ntracks = ra->ra_guse.guse_ngpc * ra->ra_guse.guse_group;
lp->d_secpercyl = lp->d_nsectors * lp->d_ntracks;
DL_SETDSIZE(lp, ra->ra_unitsize); /* XXX might be zero */
if (lp->d_secpercyl) {
lp->d_ncylinders = ra->ra_unitsize / lp->d_secpercyl;
lp->d_type = DTYPE_MSCP;
} else {
lp->d_type = DTYPE_FLOPPY;
}
lp->d_bbsize = BBSIZE;
lp->d_sbsize = SBSIZE;
/* Create the disk name for disklabel. Phew... */
lp->d_typename[p++] = MSCP_MID_CHAR(2, ra->ra_guse.guse_mediaid);
lp->d_typename[p++] = MSCP_MID_CHAR(1, ra->ra_guse.guse_mediaid);
if (MSCP_MID_ECH(0, ra->ra_guse.guse_mediaid))
lp->d_typename[p++] =
MSCP_MID_CHAR(0, ra->ra_guse.guse_mediaid);
n = MSCP_MID_NUM(ra->ra_guse.guse_mediaid);
if (n > 99) {
lp->d_typename[p++] = '1';
n -= 100;
}
if (n > 9) {
lp->d_typename[p++] = (n / 10) + '0';
n %= 10;
}
lp->d_typename[p++] = n + '0';
lp->d_typename[p] = 0;
lp->d_version = 1;
lp->d_magic = lp->d_magic2 = DISKMAGIC;
lp->d_checksum = dkcksum(lp);
return readdisklabel(DISKLABELDEV(dev), rastrategy, lp, spoofonly);
}
/*
* (Try to) put the drive online. This is done the first time the
* drive is opened, or if it has fallen offline.
*/
int
ra_putonline(struct ra_softc *ra)
{
struct disklabel *dl;
int rc;
ra->ra_state = DK_RDLABEL;
if (rx_putonline(ra) != MSCP_DONE)
return MSCP_FAILED;
dl = ra->ra_disk.dk_label;
rc = ragetdisklabel(MAKEDISKDEV(RAMAJOR, ra->ra_dev.dv_unit, RAW_PART),
ra, dl, 0);
if (rc != EIO)
ra->ra_state = DK_OPEN;
printf("%s: %luMB, %lu bytes/sector, %lld sectors\n",
ra->ra_dev.dv_xname,
ra->ra_unitsize / (1048576 / dl->d_secsize),
dl->d_secsize, ra->ra_unitsize);
return MSCP_DONE;
}
/*
* Open a drive.
*/
/*ARGSUSED*/
int
raopen(dev_t dev, int flag, int fmt, struct proc *p)
{
struct ra_softc *ra;
int part, unit, mask;
/*
* Make sure this is a reasonable open request.
*/
unit = DISKUNIT(dev);
if (unit >= ra_cd.cd_ndevs)
return ENXIO;
ra = ra_cd.cd_devs[unit];
if (ra == 0)
return ENXIO;
/*
* If this is the first open; we must first try to put
* the disk online (and read the label).
*/
if (ra->ra_state == DK_CLOSED)
if (ra_putonline(ra) == MSCP_FAILED)
return ENXIO;
part = DISKPART(dev);
if (part >= ra->ra_disk.dk_label->d_npartitions)
return ENXIO;
/*
* Wait for the state to settle
*/
#if notyet
while (ra->ra_state != DK_OPEN)
if ((error = tsleep((caddr_t)ra, (PZERO + 1) | PCATCH,
"devopen", 0))) {
splx(s);
return (error);
}
#endif
mask = 1 << part;
switch (fmt) {
case S_IFCHR:
ra->ra_disk.dk_copenmask |= mask;
break;
case S_IFBLK:
ra->ra_disk.dk_bopenmask |= mask;
break;
}
ra->ra_disk.dk_openmask |= mask;
return 0;
}
/* ARGSUSED */
int
raclose(dev_t dev, int flags, int fmt, struct proc *p)
{
int unit = DISKUNIT(dev);
struct ra_softc *ra = ra_cd.cd_devs[unit];
int mask = (1 << DISKPART(dev));
switch (fmt) {
case S_IFCHR:
ra->ra_disk.dk_copenmask &= ~mask;
break;
case S_IFBLK:
ra->ra_disk.dk_bopenmask &= ~mask;
break;
}
ra->ra_disk.dk_openmask =
ra->ra_disk.dk_copenmask | ra->ra_disk.dk_bopenmask;
/*
* Should wait for I/O to complete on this partition even if
* others are open, but wait for work on blkflush().
*/
#if notyet
if (ra->ra_openpart == 0) {
s = spluba();
while (BUFQ_FIRST(&udautab[unit]) != NULL)
(void) tsleep(&udautab[unit], PZERO - 1,
"raclose", 0);
splx(s);
ra->ra_state = DK_CLOSED;
}
#endif
return (0);
}
/*
* Queue a transfer request, and if possible, hand it to the controller.
*/
void
rastrategy(struct buf *bp)
{
int unit;
struct ra_softc *ra;
int s;
/*
* Make sure this is a reasonable drive to use.
*/
unit = DISKUNIT(bp->b_dev);
if (unit >= ra_cd.cd_ndevs || (ra = ra_cd.cd_devs[unit]) == NULL) {
bp->b_error = ENXIO;
goto bad;
}
/*
* If drive is open `raw' or reading label, let it at it.
*/
if (ra->ra_state == DK_RDLABEL) {
s = splbio();
disk_busy(&ra->ra_disk);
splx(s);
mscp_strategy(bp, ra->ra_dev.dv_parent);
return;
}
/* If disk is not online, try to put it online */
if (ra->ra_state == DK_CLOSED)
if (ra_putonline(ra) == MSCP_FAILED) {
bp->b_error = EIO;
goto bad;
}
/* Validate the request. */
if (bounds_check_with_label(bp, ra->ra_disk.dk_label) == -1)
goto done;
/* Make some statistics... /bqt */
s = splbio();
disk_busy(&ra->ra_disk);
splx(s);
mscp_strategy(bp, ra->ra_dev.dv_parent);
return;
bad:
bp->b_flags |= B_ERROR;
bp->b_resid = bp->b_bcount;
done:
s = splbio();
biodone(bp);
splx(s);
}
int
raread(dev_t dev, struct uio *uio)
{
return (physio(rastrategy, dev, B_READ, minphys, uio));
}
int
rawrite(dev_t dev, struct uio *uio)
{
return (physio(rastrategy, dev, B_WRITE, minphys, uio));
}
/*
* I/O controls.
*/
int
raioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
{
int unit = DISKUNIT(dev);
struct disklabel *lp, *tp;
struct ra_softc *ra = ra_cd.cd_devs[unit];
int error = 0;
lp = ra->ra_disk.dk_label;
switch (cmd) {
case DIOCGPDINFO:
ragetdisklabel(dev, ra, (struct disklabel *)data, 1);
break;
case DIOCGDINFO:
bcopy(lp, data, sizeof (struct disklabel));
break;
case DIOCGPART:
((struct partinfo *)data)->disklab = lp;
((struct partinfo *)data)->part =
&lp->d_partitions[DISKPART(dev)];
break;
case DIOCWDINFO:
case DIOCSDINFO:
tp = (struct disklabel *)data;
if ((flag & FWRITE) == 0)
error = EBADF;
else {
error = setdisklabel(lp, tp, 0);
if (error == 0 && cmd == DIOCWDINFO) {
error = writedisklabel(dev, rastrategy, lp);
}
}
break;
default:
error = ENOTTY;
break;
}
return (error);
}
int
radump(dev_t dev, daddr64_t blkno, caddr_t va, size_t size)
{
return ENXIO;
}
/*
* Return the size of a partition, if known, or -1 if not.
*/
daddr64_t
rasize(dev_t dev)
{
int unit = DISKUNIT(dev), part = DISKPART(dev);
struct ra_softc *ra;
struct disklabel *lp;
if (unit >= ra_cd.cd_ndevs || ra_cd.cd_devs[unit] == NULL)
return -1;
ra = ra_cd.cd_devs[unit];
if (ra->ra_state == DK_CLOSED)
if (ra_putonline(ra) == MSCP_FAILED)
return -1;
lp = ra->ra_disk.dk_label;
if (part >= lp->d_npartitions ||
lp->d_partitions[part].p_fstype != FS_SWAP)
return -1;
else
return DL_GETPSIZE(&lp->d_partitions[part]) *
(lp->d_secsize / DEV_BSIZE);
}
#endif /* NRA */
#if NRX
int rxmatch(struct device *, struct cfdata *, void *);
int rxopen(dev_t, int, int, struct proc *);
int rxclose(dev_t, int, int, struct proc *);
void rxstrategy(struct buf *);
int rxread(dev_t, struct uio *);
int rxwrite(dev_t, struct uio *);
int rxioctl(dev_t, int, caddr_t, int, struct proc *);
int rxdump(dev_t, daddr64_t, caddr_t, size_t);
daddr64_t rxsize(dev_t);
const struct cfattach rx_ca = {
sizeof(struct rx_softc), (cfmatch_t)rxmatch, rxattach
};
/*
* More driver definitions, for generic MSCP code.
*/
int
rxmatch(struct device *parent, struct cfdata *cf, void *aux)
{
struct drive_attach_args *da = aux;
struct mscp *mp = da->da_mp;
if ((da->da_typ & MSCPBUS_DISK) == 0)
return 0;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != mp->mscp_unit)
return 0;
/*
* Check if this disk is a floppy; then configure it.
* Seems to be a safe way to test it per Chris Torek.
*/
if (MSCP_MID_ECH(1, mp->mscp_guse.guse_mediaid) == 'X' - '@')
return 1;
return 0;
}
#endif /* NRX */
/*
* The attach routine only checks and prints drive type.
* Bringing the disk online is done when the disk is accessed
* the first time.
*/
void
rxattach(struct device *parent, struct device *self, void *aux)
{
struct rx_softc *rx = (void *)self;
struct drive_attach_args *da = aux;
struct mscp *mp = da->da_mp;
struct mscp_softc *mi = (void *)parent;
bcopy(&mp->mscp_guse, &rx->ra_guse, sizeof(struct mscpv_guse));
rx->ra_state = DK_CLOSED;
rx->ra_hwunit = mp->mscp_unit;
mi->mi_dp[mp->mscp_unit] = self;
rx->ra_disk.dk_name = rx->ra_dev.dv_xname;
disk_attach(&rx->ra_dev, &rx->ra_disk);
disk_printtype(mp->mscp_unit, mp->mscp_guse.guse_mediaid);
#ifdef DEBUG
printf("%s: nspt %d group %d ngpc %d rct %d nrpt %d nrct %d\n",
self->dv_xname, mp->mscp_guse.guse_nspt, mp->mscp_guse.guse_group,
mp->mscp_guse.guse_ngpc, mp->mscp_guse.guse_rctsize,
mp->mscp_guse.guse_nrpt, mp->mscp_guse.guse_nrct);
#endif
}
/*
* (Try to) put the drive online. This is done the first time the
* drive is opened, or if it has fallen offline.
*/
int
rx_putonline(struct rx_softc *rx)
{
struct mscp *mp;
struct mscp_softc *mi = (struct mscp_softc *)rx->ra_dev.dv_parent;
volatile int i;
/* caller may be in DK_RDLABEL state */
if (rx->ra_state == DK_OPEN)
rx->ra_state = DK_CLOSED;
mp = mscp_getcp(mi, MSCP_WAIT);
mp->mscp_opcode = M_OP_ONLINE;
mp->mscp_unit = rx->ra_hwunit;
mp->mscp_cmdref = 1;
*mp->mscp_addr |= MSCP_OWN | MSCP_INT;
DELAY(10000); /* XXX SIMH needs this. */
/* Poll away */
i = bus_space_read_2(mi->mi_iot, mi->mi_iph, 0);
if (tsleep(&rx->ra_dev.dv_unit, PRIBIO, "rxonline", 100*100) != 0) {
rx->ra_state = DK_CLOSED;
return MSCP_FAILED;
}
return MSCP_DONE;
}
#if NRX
/*
* Open a drive.
*/
/*ARGSUSED*/
int
rxopen(dev_t dev, int flag, int fmt, struct proc *p)
{
struct rx_softc *rx;
int unit;
/*
* Make sure this is a reasonable open request.
*/
unit = DISKUNIT(dev);
if (unit >= rx_cd.cd_ndevs)
return ENXIO;
rx = rx_cd.cd_devs[unit];
if (rx == 0)
return ENXIO;
/*
* If this is the first open; we must first try to put
* the disk online (and read the label).
*/
if (rx->ra_state == DK_CLOSED)
if (rx_putonline(rx) == MSCP_FAILED)
return ENXIO;
return 0;
}
/* ARGSUSED */
int
rxclose(dev_t dev, int flags, int fmt, struct proc *p)
{
return (0);
}
/*
* Queue a transfer request, and if possible, hand it to the controller.
*
* This routine is broken into two so that the internal version
* udastrat1() can be called by the (nonexistent, as yet) bad block
* revectoring routine.
*/
void
rxstrategy(struct buf *bp)
{
int unit;
struct rx_softc *rx;
int s;
/*
* Make sure this is a reasonable drive to use.
*/
unit = DISKUNIT(bp->b_dev);
if (unit >= rx_cd.cd_ndevs || (rx = rx_cd.cd_devs[unit]) == NULL) {
bp->b_error = ENXIO;
bp->b_flags |= B_ERROR;
goto done;
}
/* If disk is not online, try to put it online */
if (rx->ra_state == DK_CLOSED)
if (rx_putonline(rx) == MSCP_FAILED) {
bp->b_flags |= B_ERROR;
bp->b_error = EIO;
goto done;
}
/*
* Determine the size of the transfer, and make sure it is
* within the boundaries of the partition.
*/
if (bp->b_blkno >= DL_GETDSIZE(rx->ra_disk.dk_label)) {
bp->b_resid = bp->b_bcount;
goto done;
}
/* Make some statistics... /bqt */
s = splbio();
disk_busy(&rx->ra_disk);
splx(s);
mscp_strategy(bp, rx->ra_dev.dv_parent);
return;
done:
s = splbio();
biodone(bp);
splx(s);
}
int
rxread(dev_t dev, struct uio *uio)
{
return (physio(rxstrategy, dev, B_READ, minphys, uio));
}
int
rxwrite(dev_t dev, struct uio *uio)
{
return (physio(rxstrategy, dev, B_WRITE, minphys, uio));
}
/*
* I/O controls.
*/
int
rxioctl(dev_t dev, int cmd, caddr_t data, int flag, struct proc *p)
{
int unit = DISKUNIT(dev);
struct disklabel *lp;
struct rx_softc *rx = rx_cd.cd_devs[unit];
int error = 0;
lp = rx->ra_disk.dk_label;
switch (cmd) {
case DIOCGDINFO:
case DIOCGPDINFO: /* no separate 'physical' info available. */
bcopy(lp, data, sizeof (struct disklabel));
break;
case DIOCGPART:
((struct partinfo *)data)->disklab = lp;
((struct partinfo *)data)->part =
&lp->d_partitions[DISKPART(dev)];
break;
case DIOCWDINFO:
case DIOCSDINFO:
break;
default:
error = ENOTTY;
break;
}
return (error);
}
int
rxdump(dev_t dev, daddr64_t blkno, caddr_t va, size_t size)
{
/* Not likely. */
return ENXIO;
}
daddr64_t
rxsize(dev_t dev)
{
return -1;
}
#endif /* NRX */
void rrdgram(struct device *, struct mscp *, struct mscp_softc *);
void rriodone(struct device *, struct buf *);
int rronline(struct device *, struct mscp *);
int rrgotstatus(struct device *, struct mscp *);
void rrreplace(struct device *, struct mscp *);
int rrioerror(struct device *, struct mscp *, struct buf *);
void rrfillin(struct buf *, struct mscp *);
void rrbb(struct device *, struct mscp *, struct buf *);
struct mscp_device ra_device = {
rrdgram,
rriodone,
rronline,
rrgotstatus,
rrreplace,
rrioerror,
rrbb,
rrfillin,
};
/*
* Handle an error datagram.
* This can come from an unconfigured drive as well.
*/
void
rrdgram(struct device *usc, struct mscp *mp, struct mscp_softc *mi)
{
if (mscp_decodeerror(usc == NULL?"unconf disk" : usc->dv_xname, mp, mi))
return;
/*
* SDI status information bytes 10 and 11 are the microprocessor
* error code and front panel code respectively. These vary per
* drive type and are printed purely for field service information.
*/
if (mp->mscp_format == M_FM_SDI)
printf("\tsdi uproc error code 0x%x, front panel code 0x%x\n",
mp->mscp_erd.erd_sdistat[10],
mp->mscp_erd.erd_sdistat[11]);
}
void
rriodone(struct device *usc, struct buf *bp)
{
int s;
struct rx_softc *rx = NULL; /* Wall */
int unit = DISKUNIT(bp->b_dev);
#if NRA
if (major(bp->b_dev) == RAMAJOR)
rx = ra_cd.cd_devs[unit];
#endif
#if NRX
if (major(bp->b_dev) != RAMAJOR)
rx = rx_cd.cd_devs[unit];
#endif
s = splbio();
disk_unbusy(&rx->ra_disk, bp->b_bcount - bp->b_resid,
bp->b_flags & B_READ);
biodone(bp);
splx(s);
}
/*
* A drive came on line. Check its type and size. Return DONE if
* we think the drive is truly on line. In any case, awaken anyone
* sleeping on the drive on-line-ness.
*/
int
rronline(struct device *usc, struct mscp *mp)
{
struct rx_softc *rx = (struct rx_softc *)usc;
wakeup((caddr_t)&usc->dv_unit);
if ((mp->mscp_status & M_ST_MASK) != M_ST_SUCCESS) {
printf("%s: attempt to bring on line failed: ", usc->dv_xname);
mscp_printevent(mp);
return (MSCP_FAILED);
}
rx->ra_state = DK_OPEN;
rx->ra_unitsize = mp->mscp_onle.onle_unitsize;
return (MSCP_DONE);
}
/*
* We got some (configured) unit's status. Return DONE if it succeeded.
*/
int
rrgotstatus(struct device *usc, struct mscp *mp)
{
if ((mp->mscp_status & M_ST_MASK) != M_ST_SUCCESS) {
printf("%s: attempt to get status failed: ", usc->dv_xname);
mscp_printevent(mp);
return (MSCP_FAILED);
}
/* record for (future) bad block forwarding and whatever else */
#ifdef notyet
uda_rasave(ui->ui_unit, mp, 1);
#endif
return (MSCP_DONE);
}
/*
* A replace operation finished.
*/
/*ARGSUSED*/
void
rrreplace(struct device *usc, struct mscp *mp)
{
panic("udareplace");
}
/*
* A transfer failed. We get a chance to fix or restart it.
* Need to write the bad block forwaring code first....
*/
/*ARGSUSED*/
int
rrioerror(struct device *usc, struct mscp *mp, struct buf *bp)
{
struct ra_softc *ra = (void *)usc;
int code = mp->mscp_event;
switch (code & M_ST_MASK) {
/* The unit has fallen offline. Try to figure out why. */
case M_ST_OFFLINE:
bp->b_flags |= B_ERROR;
bp->b_error = EIO;
ra->ra_state = DK_CLOSED;
if (code & M_OFFLINE_UNMOUNTED)
printf("%s: not mounted/spun down\n", usc->dv_xname);
if (code & M_OFFLINE_DUPLICATE)
printf("%s: duplicate unit number!!!\n", usc->dv_xname);
return MSCP_DONE;
case M_ST_AVAILABLE:
ra->ra_state = DK_CLOSED; /* Force another online */
return MSCP_DONE;
default:
printf("%s:", usc->dv_xname);
break;
}
return (MSCP_FAILED);
}
/*
* Fill in disk addresses in a mscp packet waiting for transfer.
*/
void
rrfillin(struct buf *bp, struct mscp *mp)
{
struct rx_softc *rx = 0; /* Wall */
struct disklabel *lp;
int unit = DISKUNIT(bp->b_dev);
int part = DISKPART(bp->b_dev);
#if NRA
if (major(bp->b_dev) == RAMAJOR)
rx = ra_cd.cd_devs[unit];
#endif
#if NRX
if (major(bp->b_dev) != RAMAJOR)
rx = rx_cd.cd_devs[unit];
#endif
lp = rx->ra_disk.dk_label;
mp->mscp_seq.seq_lbn = DL_GETPOFFSET(&lp->d_partitions[part]) + bp->b_blkno;
mp->mscp_unit = rx->ra_hwunit;
mp->mscp_seq.seq_bytecount = bp->b_bcount;
}
/*
* A bad block related operation finished.
*/
/*ARGSUSED*/
void
rrbb(struct device *usc, struct mscp *mp, struct buf *bp)
{
panic("udabb");
}
|