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
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
|
/* $OpenBSD: vdsk.c,v 1.42 2014/09/16 15:59:35 kettenis Exp $ */
/*
* Copyright (c) 2009, 2011 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/systm.h>
#include <machine/autoconf.h>
#include <machine/hypervisor.h>
#include <uvm/uvm_extern.h>
#include <scsi/scsi_all.h>
#include <scsi/cd.h>
#include <scsi/scsi_disk.h>
#include <scsi/scsiconf.h>
#include <sparc64/dev/cbusvar.h>
#include <sparc64/dev/ldcvar.h>
#include <sparc64/dev/viovar.h>
#ifdef VDSK_DEBUG
#define DPRINTF(x) printf x
#else
#define DPRINTF(x)
#endif
#define VDSK_TX_ENTRIES 32
#define VDSK_RX_ENTRIES 32
struct vd_attr_info {
struct vio_msg_tag tag;
uint8_t xfer_mode;
uint8_t vd_type;
uint8_t vd_mtype;
uint8_t _reserved1;
uint32_t vdisk_block_size;
uint64_t operations;
uint64_t vdisk_size;
uint64_t max_xfer_sz;
uint64_t _reserved2[2];
};
#define VD_DISK_TYPE_SLICE 0x01
#define VD_DISK_TYPE_DISK 0x02
#define VD_MEDIA_TYPE_FIXED 0x01
#define VD_MEDIA_TYPE_CD 0x02
#define VD_MEDIA_TYPE_DVD 0x03
/* vDisk version 1.0. */
#define VD_OP_BREAD 0x01
#define VD_OP_BWRITE 0x02
#define VD_OP_FLUSH 0x03
#define VD_OP_GET_WCE 0x04
#define VD_OP_SET_WCE 0x05
#define VD_OP_GET_VTOC 0x06
#define VD_OP_SET_VTOC 0x07
#define VD_OP_GET_DISKGEOM 0x08
#define VD_OP_SET_DISKGEOM 0x09
#define VD_OP_GET_DEVID 0x0b
#define VD_OP_GET_EFI 0x0c
#define VD_OP_SET_EFI 0x0d
/* vDisk version 1.1 */
#define VD_OP_SCSICMD 0x0a
#define VD_OP_RESET 0x0e
#define VD_OP_GET_ACCESS 0x0f
#define VD_OP_SET_ACCESS 0x10
#define VD_OP_GET_CAPACITY 0x11
struct vd_desc {
struct vio_dring_hdr hdr;
uint64_t req_id;
uint8_t operation;
uint8_t slice;
uint16_t _reserved1;
uint32_t status;
uint64_t offset;
uint64_t size;
uint32_t ncookies;
uint32_t _reserved2;
struct ldc_cookie cookie[MAXPHYS / PAGE_SIZE];
};
#define VD_SLICE_NONE 0xff
struct vdsk_dring {
bus_dmamap_t vd_map;
bus_dma_segment_t vd_seg;
struct vd_desc *vd_desc;
int vd_nentries;
};
struct vdsk_dring *vdsk_dring_alloc(bus_dma_tag_t, int);
void vdsk_dring_free(bus_dma_tag_t, struct vdsk_dring *);
/*
* We support vDisk 1.0 and 1.1.
*/
#define VDSK_MAJOR 1
#define VDSK_MINOR 1
struct vdsk_soft_desc {
int vsd_map_idx[MAXPHYS / PAGE_SIZE];
struct scsi_xfer *vsd_xs;
int vsd_ncookies;
};
struct vdsk_softc {
struct device sc_dv;
bus_space_tag_t sc_bustag;
bus_dma_tag_t sc_dmatag;
void *sc_tx_ih;
void *sc_rx_ih;
struct ldc_conn sc_lc;
uint16_t sc_vio_state;
#define VIO_SND_VER_INFO 0x0001
#define VIO_ACK_VER_INFO 0x0002
#define VIO_SND_ATTR_INFO 0x0004
#define VIO_ACK_ATTR_INFO 0x0008
#define VIO_SND_DRING_REG 0x0010
#define VIO_ACK_DRING_REG 0x0020
#define VIO_SND_RDX 0x0040
#define VIO_ACK_RDX 0x0080
#define VIO_ESTABLISHED 0x00ff
uint16_t sc_major;
uint16_t sc_minor;
uint32_t sc_local_sid;
uint64_t sc_dring_ident;
uint64_t sc_seq_no;
int sc_tx_cnt;
int sc_tx_prod;
int sc_tx_cons;
struct ldc_map *sc_lm;
struct vdsk_dring *sc_vd;
struct vdsk_soft_desc *sc_vsd;
struct scsi_iopool sc_iopool;
struct scsi_adapter sc_switch;
struct scsi_link sc_link;
uint32_t sc_vdisk_block_size;
uint64_t sc_vdisk_size;
uint8_t sc_vd_mtype;
};
int vdsk_match(struct device *, void *, void *);
void vdsk_attach(struct device *, struct device *, void *);
struct cfattach vdsk_ca = {
sizeof(struct vdsk_softc), vdsk_match, vdsk_attach
};
struct cfdriver vdsk_cd = {
NULL, "vdsk", DV_DULL
};
int vdsk_tx_intr(void *);
int vdsk_rx_intr(void *);
void vdsk_rx_data(struct ldc_conn *, struct ldc_pkt *);
void vdsk_rx_vio_ctrl(struct vdsk_softc *, struct vio_msg *);
void vdsk_rx_vio_ver_info(struct vdsk_softc *, struct vio_msg_tag *);
void vdsk_rx_vio_attr_info(struct vdsk_softc *, struct vio_msg_tag *);
void vdsk_rx_vio_dring_reg(struct vdsk_softc *, struct vio_msg_tag *);
void vdsk_rx_vio_rdx(struct vdsk_softc *sc, struct vio_msg_tag *);
void vdsk_rx_vio_data(struct vdsk_softc *sc, struct vio_msg *);
void vdsk_rx_vio_dring_data(struct vdsk_softc *sc, struct vio_msg_tag *);
void vdsk_ldc_reset(struct ldc_conn *);
void vdsk_ldc_start(struct ldc_conn *);
void vdsk_sendmsg(struct vdsk_softc *, void *, size_t);
void vdsk_send_ver_info(struct vdsk_softc *, uint16_t, uint16_t);
void vdsk_send_attr_info(struct vdsk_softc *);
void vdsk_send_dring_reg(struct vdsk_softc *);
void vdsk_send_rdx(struct vdsk_softc *);
void *vdsk_io_get(void *);
void vdsk_io_put(void *, void *);
void vdsk_scsi_cmd(struct scsi_xfer *);
int vdsk_submit_cmd(struct scsi_xfer *);
int vdsk_dev_probe(struct scsi_link *);
void vdsk_dev_free(struct scsi_link *);
void vdsk_scsi_inq(struct scsi_xfer *);
void vdsk_scsi_inquiry(struct scsi_xfer *);
void vdsk_scsi_capacity(struct scsi_xfer *);
void vdsk_scsi_capacity16(struct scsi_xfer *);
void vdsk_scsi_done(struct scsi_xfer *, int);
int
vdsk_match(struct device *parent, void *match, void *aux)
{
struct cbus_attach_args *ca = aux;
if (strcmp(ca->ca_name, "disk") == 0)
return (1);
return (0);
}
void
vdsk_attach(struct device *parent, struct device *self, void *aux)
{
struct vdsk_softc *sc = (struct vdsk_softc *)self;
struct cbus_attach_args *ca = aux;
struct scsibus_attach_args saa;
struct ldc_conn *lc;
uint64_t sysino[2];
int err, s;
int timeout;
sc->sc_bustag = ca->ca_bustag;
sc->sc_dmatag = ca->ca_dmatag;
if (cbus_intr_map(ca->ca_node, ca->ca_tx_ino, &sysino[0]) ||
cbus_intr_map(ca->ca_node, ca->ca_rx_ino, &sysino[1])) {
printf(": can't map interrupt\n");
return;
}
printf(": ivec 0x%llx, 0x%llx", sysino[0], sysino[1]);
/*
* Un-configure queues before registering interrupt handlers,
* such that we dont get any stale LDC packets or events.
*/
hv_ldc_tx_qconf(ca->ca_id, 0, 0);
hv_ldc_rx_qconf(ca->ca_id, 0, 0);
sc->sc_tx_ih = bus_intr_establish(ca->ca_bustag, sysino[0], IPL_BIO,
0, vdsk_tx_intr, sc, sc->sc_dv.dv_xname);
sc->sc_rx_ih = bus_intr_establish(ca->ca_bustag, sysino[1], IPL_BIO,
0, vdsk_rx_intr, sc, sc->sc_dv.dv_xname);
if (sc->sc_tx_ih == NULL || sc->sc_rx_ih == NULL) {
printf(", can't establish interrupt\n");
return;
}
lc = &sc->sc_lc;
lc->lc_id = ca->ca_id;
lc->lc_sc = sc;
lc->lc_reset = vdsk_ldc_reset;
lc->lc_start = vdsk_ldc_start;
lc->lc_rx_data = vdsk_rx_data;
lc->lc_txq = ldc_queue_alloc(sc->sc_dmatag, VDSK_TX_ENTRIES);
if (lc->lc_txq == NULL) {
printf(", can't allocate tx queue\n");
return;
}
lc->lc_rxq = ldc_queue_alloc(sc->sc_dmatag, VDSK_RX_ENTRIES);
if (lc->lc_rxq == NULL) {
printf(", can't allocate rx queue\n");
goto free_txqueue;
}
sc->sc_lm = ldc_map_alloc(sc->sc_dmatag, 2048);
if (sc->sc_lm == NULL) {
printf(", can't allocate LDC mapping table\n");
goto free_rxqueue;
}
err = hv_ldc_set_map_table(lc->lc_id,
sc->sc_lm->lm_map->dm_segs[0].ds_addr, sc->sc_lm->lm_nentries);
if (err != H_EOK) {
printf("hv_ldc_set_map_table %d\n", err);
goto free_map;
}
sc->sc_vd = vdsk_dring_alloc(sc->sc_dmatag, 32);
if (sc->sc_vd == NULL) {
printf(", can't allocate dring\n");
goto free_map;
}
sc->sc_vsd = malloc(32 * sizeof(*sc->sc_vsd), M_DEVBUF, M_NOWAIT);
if (sc->sc_vsd == NULL) {
printf(", can't allocate software ring\n");
goto free_dring;
}
sc->sc_lm->lm_slot[0].entry = sc->sc_vd->vd_map->dm_segs[0].ds_addr;
sc->sc_lm->lm_slot[0].entry &= LDC_MTE_RA_MASK;
sc->sc_lm->lm_slot[0].entry |= LDC_MTE_CPR | LDC_MTE_CPW;
sc->sc_lm->lm_slot[0].entry |= LDC_MTE_R | LDC_MTE_W;
sc->sc_lm->lm_next = 1;
sc->sc_lm->lm_count = 1;
err = hv_ldc_tx_qconf(lc->lc_id,
lc->lc_txq->lq_map->dm_segs[0].ds_addr, lc->lc_txq->lq_nentries);
if (err != H_EOK)
printf("hv_ldc_tx_qconf %d\n", err);
err = hv_ldc_rx_qconf(lc->lc_id,
lc->lc_rxq->lq_map->dm_segs[0].ds_addr, lc->lc_rxq->lq_nentries);
if (err != H_EOK)
printf("hv_ldc_rx_qconf %d\n", err);
cbus_intr_setenabled(sysino[0], INTR_ENABLED);
cbus_intr_setenabled(sysino[1], INTR_ENABLED);
ldc_send_vers(lc);
printf("\n");
/*
* Interrupts aren't enabled during autoconf, so poll for VIO
* peer-to-peer hanshake completion.
*/
s = splbio();
timeout = 1000;
do {
if (vdsk_rx_intr(sc) && sc->sc_vio_state == VIO_ESTABLISHED)
break;
delay(1000);
} while(--timeout > 0);
splx(s);
if (sc->sc_vio_state != VIO_ESTABLISHED)
return;
scsi_iopool_init(&sc->sc_iopool, sc, vdsk_io_get, vdsk_io_put);
sc->sc_switch.scsi_cmd = vdsk_scsi_cmd;
sc->sc_switch.scsi_minphys = scsi_minphys;
sc->sc_switch.dev_probe = vdsk_dev_probe;
sc->sc_switch.dev_free = vdsk_dev_free;
sc->sc_link.adapter = &sc->sc_switch;
sc->sc_link.adapter_softc = self;
sc->sc_link.adapter_buswidth = 2;
sc->sc_link.luns = 1; /* XXX slices should be presented as luns? */
sc->sc_link.adapter_target = 2;
sc->sc_link.openings = sc->sc_vd->vd_nentries - 1;
sc->sc_link.pool = &sc->sc_iopool;
bzero(&saa, sizeof(saa));
saa.saa_sc_link = &sc->sc_link;
config_found(self, &saa, scsiprint);
return;
free_dring:
vdsk_dring_free(sc->sc_dmatag, sc->sc_vd);
free_map:
hv_ldc_set_map_table(lc->lc_id, 0, 0);
ldc_map_free(sc->sc_dmatag, sc->sc_lm);
free_rxqueue:
ldc_queue_free(sc->sc_dmatag, lc->lc_rxq);
free_txqueue:
ldc_queue_free(sc->sc_dmatag, lc->lc_txq);
}
int
vdsk_tx_intr(void *arg)
{
struct vdsk_softc *sc = arg;
struct ldc_conn *lc = &sc->sc_lc;
uint64_t tx_head, tx_tail, tx_state;
hv_ldc_tx_get_state(lc->lc_id, &tx_head, &tx_tail, &tx_state);
if (tx_state != lc->lc_tx_state) {
switch (tx_state) {
case LDC_CHANNEL_DOWN:
DPRINTF(("Tx link down\n"));
break;
case LDC_CHANNEL_UP:
DPRINTF(("Tx link up\n"));
break;
case LDC_CHANNEL_RESET:
DPRINTF(("Tx link reset\n"));
break;
}
lc->lc_tx_state = tx_state;
}
return (1);
}
int
vdsk_rx_intr(void *arg)
{
struct vdsk_softc *sc = arg;
struct ldc_conn *lc = &sc->sc_lc;
uint64_t rx_head, rx_tail, rx_state;
struct ldc_pkt *lp;
int err;
err = hv_ldc_rx_get_state(lc->lc_id, &rx_head, &rx_tail, &rx_state);
if (err == H_EINVAL)
return (0);
if (err != H_EOK) {
printf("hv_ldc_rx_get_state %d\n", err);
return (0);
}
if (rx_state != lc->lc_rx_state) {
sc->sc_vio_state = 0;
lc->lc_tx_seqid = 0;
lc->lc_state = 0;
switch (rx_state) {
case LDC_CHANNEL_DOWN:
DPRINTF(("Rx link down\n"));
break;
case LDC_CHANNEL_UP:
DPRINTF(("Rx link up\n"));
ldc_send_vers(lc);
break;
case LDC_CHANNEL_RESET:
DPRINTF(("Rx link reset\n"));
break;
}
lc->lc_rx_state = rx_state;
hv_ldc_rx_set_qhead(lc->lc_id, rx_tail);
return (1);
}
if (rx_head == rx_tail)
return (0);
lp = (struct ldc_pkt *)(lc->lc_rxq->lq_va + rx_head);
switch (lp->type) {
case LDC_CTRL:
ldc_rx_ctrl(lc, lp);
break;
case LDC_DATA:
ldc_rx_data(lc, lp);
break;
default:
DPRINTF(("%0x02/%0x02/%0x02\n", lp->type, lp->stype,
lp->ctrl));
ldc_reset(lc);
break;
}
if (lc->lc_state == 0)
return (1);
rx_head += sizeof(*lp);
rx_head &= ((lc->lc_rxq->lq_nentries * sizeof(*lp)) - 1);
err = hv_ldc_rx_set_qhead(lc->lc_id, rx_head);
if (err != H_EOK)
printf("%s: hv_ldc_rx_set_qhead %d\n", __func__, err);
return (1);
}
void
vdsk_rx_data(struct ldc_conn *lc, struct ldc_pkt *lp)
{
struct vio_msg *vm = (struct vio_msg *)lp;
switch (vm->type) {
case VIO_TYPE_CTRL:
if ((lp->env & LDC_FRAG_START) == 0 &&
(lp->env & LDC_FRAG_STOP) == 0)
return;
vdsk_rx_vio_ctrl(lc->lc_sc, vm);
break;
case VIO_TYPE_DATA:
if((lp->env & LDC_FRAG_START) == 0)
return;
vdsk_rx_vio_data(lc->lc_sc, vm);
break;
default:
DPRINTF(("Unhandled packet type 0x%02x\n", vm->type));
ldc_reset(lc);
break;
}
}
void
vdsk_rx_vio_ctrl(struct vdsk_softc *sc, struct vio_msg *vm)
{
struct vio_msg_tag *tag = (struct vio_msg_tag *)&vm->type;
switch (tag->stype_env) {
case VIO_VER_INFO:
vdsk_rx_vio_ver_info(sc, tag);
break;
case VIO_ATTR_INFO:
vdsk_rx_vio_attr_info(sc, tag);
break;
case VIO_DRING_REG:
vdsk_rx_vio_dring_reg(sc, tag);
break;
case VIO_RDX:
vdsk_rx_vio_rdx(sc, tag);
break;
default:
DPRINTF(("CTRL/0x%02x/0x%04x\n", tag->stype, tag->stype_env));
break;
}
}
void
vdsk_rx_vio_ver_info(struct vdsk_softc *sc, struct vio_msg_tag *tag)
{
struct vio_ver_info *vi = (struct vio_ver_info *)tag;
switch (vi->tag.stype) {
case VIO_SUBTYPE_INFO:
DPRINTF(("CTRL/INFO/VER_INFO\n"));
break;
case VIO_SUBTYPE_ACK:
DPRINTF(("CTRL/ACK/VER_INFO\n"));
if (!ISSET(sc->sc_vio_state, VIO_SND_VER_INFO)) {
ldc_reset(&sc->sc_lc);
break;
}
sc->sc_major = vi->major;
sc->sc_minor = vi->minor;
sc->sc_vio_state |= VIO_ACK_VER_INFO;
break;
default:
DPRINTF(("CTRL/0x%02x/VER_INFO\n", vi->tag.stype));
break;
}
if (ISSET(sc->sc_vio_state, VIO_ACK_VER_INFO))
vdsk_send_attr_info(sc);
}
void
vdsk_rx_vio_attr_info(struct vdsk_softc *sc, struct vio_msg_tag *tag)
{
struct vd_attr_info *ai = (struct vd_attr_info *)tag;
switch (ai->tag.stype) {
case VIO_SUBTYPE_INFO:
DPRINTF(("CTRL/INFO/ATTR_INFO\n"));
break;
case VIO_SUBTYPE_ACK:
DPRINTF(("CTRL/ACK/ATTR_INFO\n"));
if (!ISSET(sc->sc_vio_state, VIO_SND_ATTR_INFO)) {
ldc_reset(&sc->sc_lc);
break;
}
sc->sc_vdisk_block_size = ai->vdisk_block_size;
sc->sc_vdisk_size = ai->vdisk_size;
if (sc->sc_major > 1 || sc->sc_minor >= 1)
sc->sc_vd_mtype = ai->vd_mtype;
else
sc->sc_vd_mtype = VD_MEDIA_TYPE_FIXED;
sc->sc_vio_state |= VIO_ACK_ATTR_INFO;
break;
default:
DPRINTF(("CTRL/0x%02x/ATTR_INFO\n", ai->tag.stype));
break;
}
if (ISSET(sc->sc_vio_state, VIO_ACK_ATTR_INFO))
vdsk_send_dring_reg(sc);
}
void
vdsk_rx_vio_dring_reg(struct vdsk_softc *sc, struct vio_msg_tag *tag)
{
struct vio_dring_reg *dr = (struct vio_dring_reg *)tag;
switch (dr->tag.stype) {
case VIO_SUBTYPE_INFO:
DPRINTF(("CTRL/INFO/DRING_REG\n"));
break;
case VIO_SUBTYPE_ACK:
DPRINTF(("CTRL/ACK/DRING_REG\n"));
if (!ISSET(sc->sc_vio_state, VIO_SND_DRING_REG)) {
ldc_reset(&sc->sc_lc);
break;
}
sc->sc_dring_ident = dr->dring_ident;
sc->sc_seq_no = 1;
sc->sc_vio_state |= VIO_ACK_DRING_REG;
break;
default:
DPRINTF(("CTRL/0x%02x/DRING_REG\n", dr->tag.stype));
break;
}
if (ISSET(sc->sc_vio_state, VIO_ACK_DRING_REG))
vdsk_send_rdx(sc);
}
void
vdsk_rx_vio_rdx(struct vdsk_softc *sc, struct vio_msg_tag *tag)
{
switch(tag->stype) {
case VIO_SUBTYPE_INFO:
DPRINTF(("CTRL/INFO/RDX\n"));
break;
case VIO_SUBTYPE_ACK:
{
int prod;
DPRINTF(("CTRL/ACK/RDX\n"));
if (!ISSET(sc->sc_vio_state, VIO_SND_RDX)) {
ldc_reset(&sc->sc_lc);
break;
}
sc->sc_vio_state |= VIO_ACK_RDX;
/*
* If this ACK is the result of a reconnect, we may
* have pending I/O that we need to resubmit. We need
* to rebuild the ring descriptors though since the
* vDisk server on the other side may have touched
* them already. So we just clean up the ring and the
* LDC map and resubmit the SCSI commands based on our
* soft descriptors.
*/
prod = sc->sc_tx_prod;
sc->sc_tx_prod = sc->sc_tx_cons;
sc->sc_tx_cnt = 0;
sc->sc_lm->lm_next = 1;
sc->sc_lm->lm_count = 1;
while (sc->sc_tx_prod != prod)
vdsk_submit_cmd(sc->sc_vsd[sc->sc_tx_prod].vsd_xs);
scsi_iopool_run(&sc->sc_iopool);
break;
}
default:
DPRINTF(("CTRL/0x%02x/RDX (VIO)\n", tag->stype));
break;
}
}
void
vdsk_rx_vio_data(struct vdsk_softc *sc, struct vio_msg *vm)
{
struct vio_msg_tag *tag = (struct vio_msg_tag *)&vm->type;
if (sc->sc_vio_state != VIO_ESTABLISHED) {
DPRINTF(("Spurious DATA/0x%02x/0x%04x\n", tag->stype,
tag->stype_env));
return;
}
switch(tag->stype_env) {
case VIO_DRING_DATA:
vdsk_rx_vio_dring_data(sc, tag);
break;
default:
DPRINTF(("DATA/0x%02x/0x%04x\n", tag->stype, tag->stype_env));
break;
}
}
void
vdsk_rx_vio_dring_data(struct vdsk_softc *sc, struct vio_msg_tag *tag)
{
switch(tag->stype) {
case VIO_SUBTYPE_INFO:
DPRINTF(("DATA/INFO/DRING_DATA\n"));
break;
case VIO_SUBTYPE_ACK:
{
struct scsi_xfer *xs;
struct ldc_map *map = sc->sc_lm;
int cons, error;
int cookie, idx;
cons = sc->sc_tx_cons;
while (sc->sc_vd->vd_desc[cons].hdr.dstate == VIO_DESC_DONE) {
xs = sc->sc_vsd[cons].vsd_xs;
cookie = 0;
while (cookie < sc->sc_vsd[cons].vsd_ncookies) {
idx = sc->sc_vsd[cons].vsd_map_idx[cookie++];
map->lm_slot[idx].entry = 0;
map->lm_count--;
}
error = XS_NOERROR;
if (sc->sc_vd->vd_desc[cons].status != 0)
error = XS_DRIVER_STUFFUP;
xs->resid = xs->datalen -
sc->sc_vd->vd_desc[cons].size;
vdsk_scsi_done(xs, error);
sc->sc_vd->vd_desc[cons++].hdr.dstate = VIO_DESC_FREE;
cons &= (sc->sc_vd->vd_nentries - 1);
}
sc->sc_tx_cons = cons;
break;
}
case VIO_SUBTYPE_NACK:
DPRINTF(("DATA/NACK/DRING_DATA\n"));
break;
default:
DPRINTF(("DATA/0x%02x/DRING_DATA\n", tag->stype));
break;
}
}
void
vdsk_ldc_reset(struct ldc_conn *lc)
{
struct vdsk_softc *sc = lc->lc_sc;
sc->sc_vio_state = 0;
}
void
vdsk_ldc_start(struct ldc_conn *lc)
{
struct vdsk_softc *sc = lc->lc_sc;
vdsk_send_ver_info(sc, VDSK_MAJOR, VDSK_MINOR);
}
void
vdsk_sendmsg(struct vdsk_softc *sc, void *msg, size_t len)
{
struct ldc_conn *lc = &sc->sc_lc;
int err;
err = ldc_send_unreliable(lc, msg, len);
if (err)
printf("%s: ldc_send_unreliable: %d\n", __func__, err);
}
void
vdsk_send_ver_info(struct vdsk_softc *sc, uint16_t major, uint16_t minor)
{
struct vio_ver_info vi;
/* Allocate new session ID. */
sc->sc_local_sid = tick();
bzero(&vi, sizeof(vi));
vi.tag.type = VIO_TYPE_CTRL;
vi.tag.stype = VIO_SUBTYPE_INFO;
vi.tag.stype_env = VIO_VER_INFO;
vi.tag.sid = sc->sc_local_sid;
vi.major = major;
vi.minor = minor;
vi.dev_class = VDEV_DISK;
vdsk_sendmsg(sc, &vi, sizeof(vi));
sc->sc_vio_state |= VIO_SND_VER_INFO;
}
void
vdsk_send_attr_info(struct vdsk_softc *sc)
{
struct vd_attr_info ai;
bzero(&ai, sizeof(ai));
ai.tag.type = VIO_TYPE_CTRL;
ai.tag.stype = VIO_SUBTYPE_INFO;
ai.tag.stype_env = VIO_ATTR_INFO;
ai.tag.sid = sc->sc_local_sid;
ai.xfer_mode = VIO_DRING_MODE;
ai.vdisk_block_size = DEV_BSIZE;
ai.max_xfer_sz = MAXPHYS / DEV_BSIZE;
vdsk_sendmsg(sc, &ai, sizeof(ai));
sc->sc_vio_state |= VIO_SND_ATTR_INFO;
}
void
vdsk_send_dring_reg(struct vdsk_softc *sc)
{
struct vio_dring_reg dr;
bzero(&dr, sizeof(dr));
dr.tag.type = VIO_TYPE_CTRL;
dr.tag.stype = VIO_SUBTYPE_INFO;
dr.tag.stype_env = VIO_DRING_REG;
dr.tag.sid = sc->sc_local_sid;
dr.dring_ident = 0;
dr.num_descriptors = sc->sc_vd->vd_nentries;
dr.descriptor_size = sizeof(struct vd_desc);
dr.options = VIO_TX_RING | VIO_RX_RING;
dr.ncookies = 1;
dr.cookie[0].addr = 0;
dr.cookie[0].size = PAGE_SIZE;
vdsk_sendmsg(sc, &dr, sizeof(dr));
sc->sc_vio_state |= VIO_SND_DRING_REG;
};
void
vdsk_send_rdx(struct vdsk_softc *sc)
{
struct vio_rdx rdx;
bzero(&rdx, sizeof(rdx));
rdx.tag.type = VIO_TYPE_CTRL;
rdx.tag.stype = VIO_SUBTYPE_INFO;
rdx.tag.stype_env = VIO_RDX;
rdx.tag.sid = sc->sc_local_sid;
vdsk_sendmsg(sc, &rdx, sizeof(rdx));
sc->sc_vio_state |= VIO_SND_RDX;
}
struct vdsk_dring *
vdsk_dring_alloc(bus_dma_tag_t t, int nentries)
{
struct vdsk_dring *vd;
bus_size_t size;
caddr_t va;
int nsegs;
int i;
vd = malloc(sizeof(struct vdsk_dring), M_DEVBUF, M_NOWAIT);
if (vd == NULL)
return NULL;
size = roundup(nentries * sizeof(struct vd_desc), PAGE_SIZE);
if (bus_dmamap_create(t, size, 1, size, 0,
BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW, &vd->vd_map) != 0)
return (NULL);
if (bus_dmamem_alloc(t, size, PAGE_SIZE, 0, &vd->vd_seg, 1,
&nsegs, BUS_DMA_NOWAIT) != 0)
goto destroy;
if (bus_dmamem_map(t, &vd->vd_seg, 1, size, &va,
BUS_DMA_NOWAIT) != 0)
goto free;
if (bus_dmamap_load(t, vd->vd_map, va, size, NULL,
BUS_DMA_NOWAIT) != 0)
goto unmap;
vd->vd_desc = (struct vd_desc *)va;
vd->vd_nentries = nentries;
bzero(vd->vd_desc, nentries * sizeof(struct vd_desc));
for (i = 0; i < vd->vd_nentries; i++)
vd->vd_desc[i].hdr.dstate = VIO_DESC_FREE;
return (vd);
unmap:
bus_dmamem_unmap(t, va, size);
free:
bus_dmamem_free(t, &vd->vd_seg, 1);
destroy:
bus_dmamap_destroy(t, vd->vd_map);
return (NULL);
}
void
vdsk_dring_free(bus_dma_tag_t t, struct vdsk_dring *vd)
{
bus_size_t size;
size = vd->vd_nentries * sizeof(struct vd_desc);
size = roundup(size, PAGE_SIZE);
bus_dmamap_unload(t, vd->vd_map);
bus_dmamem_unmap(t, (caddr_t)vd->vd_desc, size);
bus_dmamem_free(t, &vd->vd_seg, 1);
bus_dmamap_destroy(t, vd->vd_map);
free(vd, M_DEVBUF, 0);
}
void *
vdsk_io_get(void *xsc)
{
struct vdsk_softc *sc = xsc;
void *rv = sc; /* just has to be !NULL */
int s;
s = splbio();
if (sc->sc_vio_state != VIO_ESTABLISHED ||
sc->sc_tx_cnt >= sc->sc_vd->vd_nentries)
rv = NULL;
else
sc->sc_tx_cnt++;
splx(s);
return (rv);
}
void
vdsk_io_put(void *xsc, void *io)
{
struct vdsk_softc *sc = xsc;
int s;
#ifdef DIAGNOSTIC
if (sc != io)
panic("vsdk_io_put: unexpected io");
#endif
s = splbio();
sc->sc_tx_cnt--;
splx(s);
}
void
vdsk_scsi_cmd(struct scsi_xfer *xs)
{
struct vdsk_softc *sc = xs->sc_link->adapter_softc;
int timeout, s;
int desc;
switch (xs->cmd->opcode) {
case READ_BIG:
case READ_COMMAND:
case READ_12:
case READ_16:
case WRITE_BIG:
case WRITE_COMMAND:
case WRITE_12:
case WRITE_16:
case SYNCHRONIZE_CACHE:
break;
case INQUIRY:
vdsk_scsi_inq(xs);
return;
case READ_CAPACITY:
vdsk_scsi_capacity(xs);
return;
case READ_CAPACITY_16:
vdsk_scsi_capacity16(xs);
return;
case TEST_UNIT_READY:
case START_STOP:
case PREVENT_ALLOW:
vdsk_scsi_done(xs, XS_NOERROR);
return;
default:
printf("%s cmd 0x%02x\n", __func__, xs->cmd->opcode);
case MODE_SENSE:
case MODE_SENSE_BIG:
case REPORT_LUNS:
case READ_TOC:
vdsk_scsi_done(xs, XS_DRIVER_STUFFUP);
return;
}
s = splbio();
desc = vdsk_submit_cmd(xs);
if (!ISSET(xs->flags, SCSI_POLL)) {
splx(s);
return;
}
timeout = 1000;
do {
if (vdsk_rx_intr(sc) &&
sc->sc_vd->vd_desc[desc].status == VIO_DESC_FREE)
break;
delay(1000);
} while(--timeout > 0);
splx(s);
}
int
vdsk_submit_cmd(struct scsi_xfer *xs)
{
struct vdsk_softc *sc = xs->sc_link->adapter_softc;
struct ldc_map *map = sc->sc_lm;
struct vio_dring_msg dm;
struct scsi_rw *rw;
struct scsi_rw_big *rwb;
struct scsi_rw_12 *rw12;
struct scsi_rw_16 *rw16;
u_int64_t lba;
u_int32_t sector_count;
uint8_t operation;
vaddr_t va;
paddr_t pa;
psize_t nbytes;
int len, ncookies;
int desc;
switch (xs->cmd->opcode) {
case READ_BIG:
case READ_COMMAND:
case READ_12:
case READ_16:
operation = VD_OP_BREAD;
break;
case WRITE_BIG:
case WRITE_COMMAND:
case WRITE_12:
case WRITE_16:
operation = VD_OP_BWRITE;
break;
case SYNCHRONIZE_CACHE:
operation = VD_OP_FLUSH;
break;
}
/*
* READ/WRITE/SYNCHRONIZE commands. SYNCHRONIZE CACHE has same
* layout as 10-byte READ/WRITE commands.
*/
if (xs->cmdlen == 6) {
rw = (struct scsi_rw *)xs->cmd;
lba = _3btol(rw->addr) & (SRW_TOPADDR << 16 | 0xffff);
sector_count = rw->length ? rw->length : 0x100;
} else if (xs->cmdlen == 10) {
rwb = (struct scsi_rw_big *)xs->cmd;
lba = _4btol(rwb->addr);
sector_count = _2btol(rwb->length);
} else if (xs->cmdlen == 12) {
rw12 = (struct scsi_rw_12 *)xs->cmd;
lba = _4btol(rw12->addr);
sector_count = _4btol(rw12->length);
} else if (xs->cmdlen == 16) {
rw16 = (struct scsi_rw_16 *)xs->cmd;
lba = _8btol(rw16->addr);
sector_count = _4btol(rw16->length);
}
desc = sc->sc_tx_prod;
ncookies = 0;
len = xs->datalen;
va = (vaddr_t)xs->data;
while (len > 0) {
KASSERT(ncookies < MAXPHYS / PAGE_SIZE);
pmap_extract(pmap_kernel(), va, &pa);
while (map->lm_slot[map->lm_next].entry != 0) {
map->lm_next++;
map->lm_next &= (map->lm_nentries - 1);
}
map->lm_slot[map->lm_next].entry = (pa & LDC_MTE_RA_MASK);
map->lm_slot[map->lm_next].entry |= LDC_MTE_CPR | LDC_MTE_CPW;
map->lm_slot[map->lm_next].entry |= LDC_MTE_IOR | LDC_MTE_IOW;
map->lm_slot[map->lm_next].entry |= LDC_MTE_R | LDC_MTE_W;
map->lm_count++;
nbytes = MIN(len, PAGE_SIZE - (pa & PAGE_MASK));
sc->sc_vd->vd_desc[desc].cookie[ncookies].addr =
map->lm_next << PAGE_SHIFT | (pa & PAGE_MASK);
sc->sc_vd->vd_desc[desc].cookie[ncookies].size = nbytes;
sc->sc_vsd[desc].vsd_map_idx[ncookies] = map->lm_next;
va += nbytes;
len -= nbytes;
ncookies++;
}
sc->sc_vd->vd_desc[desc].hdr.ack = 1;
sc->sc_vd->vd_desc[desc].operation = operation;
sc->sc_vd->vd_desc[desc].slice = VD_SLICE_NONE;
sc->sc_vd->vd_desc[desc].status = 0xffffffff;
sc->sc_vd->vd_desc[desc].offset = lba;
sc->sc_vd->vd_desc[desc].size = xs->datalen;
sc->sc_vd->vd_desc[desc].ncookies = ncookies;
membar(Sync);
sc->sc_vd->vd_desc[desc].hdr.dstate = VIO_DESC_READY;
sc->sc_vsd[desc].vsd_xs = xs;
sc->sc_vsd[desc].vsd_ncookies = ncookies;
sc->sc_tx_prod++;
sc->sc_tx_prod &= (sc->sc_vd->vd_nentries - 1);
bzero(&dm, sizeof(dm));
dm.tag.type = VIO_TYPE_DATA;
dm.tag.stype = VIO_SUBTYPE_INFO;
dm.tag.stype_env = VIO_DRING_DATA;
dm.tag.sid = sc->sc_local_sid;
dm.seq_no = sc->sc_seq_no++;
dm.dring_ident = sc->sc_dring_ident;
dm.start_idx = dm.end_idx = desc;
vdsk_sendmsg(sc, &dm, sizeof(dm));
return desc;
}
void
vdsk_scsi_inq(struct scsi_xfer *xs)
{
struct scsi_inquiry *inq = (struct scsi_inquiry *)xs->cmd;
if (ISSET(inq->flags, SI_EVPD))
vdsk_scsi_done(xs, XS_DRIVER_STUFFUP);
else
vdsk_scsi_inquiry(xs);
}
void
vdsk_scsi_inquiry(struct scsi_xfer *xs)
{
struct vdsk_softc *sc = xs->sc_link->adapter_softc;
struct scsi_inquiry_data inq;
char buf[5];
bzero(&inq, sizeof(inq));
switch (sc->sc_vd_mtype) {
case VD_MEDIA_TYPE_CD:
case VD_MEDIA_TYPE_DVD:
inq.device = T_CDROM;
break;
case VD_MEDIA_TYPE_FIXED:
default:
inq.device = T_DIRECT;
break;
}
inq.version = 0x05; /* SPC-3 */
inq.response_format = 2;
inq.additional_length = 32;
inq.flags |= SID_CmdQue;
bcopy("SUN ", inq.vendor, sizeof(inq.vendor));
bcopy("Virtual Disk ", inq.product, sizeof(inq.product));
snprintf(buf, sizeof(buf), "%u.%u ", sc->sc_major, sc->sc_minor);
bcopy(buf, inq.revision, sizeof(inq.revision));
bcopy(&inq, xs->data, MIN(sizeof(inq), xs->datalen));
vdsk_scsi_done(xs, XS_NOERROR);
}
void
vdsk_scsi_capacity(struct scsi_xfer *xs)
{
struct vdsk_softc *sc = xs->sc_link->adapter_softc;
struct scsi_read_cap_data rcd;
uint64_t capacity;
bzero(&rcd, sizeof(rcd));
capacity = sc->sc_vdisk_size - 1;
if (capacity > 0xffffffff)
capacity = 0xffffffff;
_lto4b(capacity, rcd.addr);
_lto4b(sc->sc_vdisk_block_size, rcd.length);
bcopy(&rcd, xs->data, MIN(sizeof(rcd), xs->datalen));
vdsk_scsi_done(xs, XS_NOERROR);
}
void
vdsk_scsi_capacity16(struct scsi_xfer *xs)
{
struct vdsk_softc *sc = xs->sc_link->adapter_softc;
struct scsi_read_cap_data_16 rcd;
bzero(&rcd, sizeof(rcd));
_lto8b(sc->sc_vdisk_size - 1, rcd.addr);
_lto4b(sc->sc_vdisk_block_size, rcd.length);
bcopy(&rcd, xs->data, MIN(sizeof(rcd), xs->datalen));
vdsk_scsi_done(xs, XS_NOERROR);
}
void
vdsk_scsi_done(struct scsi_xfer *xs, int error)
{
xs->error = error;
scsi_done(xs);
}
int
vdsk_dev_probe(struct scsi_link *link)
{
KASSERT(link->lun == 0);
if (link->target == 0)
return (0);
return (ENODEV);
}
void
vdsk_dev_free(struct scsi_link *link)
{
printf("%s\n", __func__);
}
|