forked from oasis-tcs/virtio-spec
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcl-cs-1.3_1.2.tex
More file actions
13921 lines (8840 loc) · 428 KB
/
cl-cs-1.3_1.2.tex
File metadata and controls
13921 lines (8840 loc) · 428 KB
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
06d4996 & 16 Aug 2013 & rusty & { Initial conversion of 0.9.5 draft spec into text.
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@1} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9d60335 & 16 Aug 2013 & rusty & { Reworked spec into non-PCI order.
Issue: \url{https://tools.oasis-open.org/issues/browse/VIRTIO-1}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@2} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
49f2dca & 16 Aug 2013 & rusty & { 2.1.4 Virtqueues: Clarify vring_size() when VIRTIO_RING_F_EVENT_INDEX.
Ported from draft commit eb9fc84d0d3c46438aaab190e2401a9e5409a052.
Reported-by: Stefan Fritsch <sf@sfritsch.de>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@3} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
88a9bcb & 16 Aug 2013 & rusty & { 2.5 Device Types: add reservation for rproc serial (11).
Ported from draft commit 5306b0cfe750604643c157ed870b04c426924bb4.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@4} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
93e42c5 & 16 Aug 2013 & rusty & { 2.7 virtio_ring.h: make it compile, update, and add avail/used helpers.
Ported from draft, commit 76f5840ce1ca56b211c974f24e86a91bd8ef2d07
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@5} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
e0ed235 & 16 Aug 2013 & rusty & { 2.6 Reserved Feature Bits: fix count.
Ported from draft, commit b0037d5d207dba8a66cb7616608164a3f46a8971
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@6} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9761928 & 16 Aug 2013 & rusty & { 2.4.2.2 MMIO Device Layout: clarity enhancement.
Outcome of discussion with Amos Kong.
Ported from draft, commit 38c8600ef2e33d672449f517598239bc682673c9.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@7} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
01d6f20 & 16 Aug 2013 & rusty & { 2.5.1.5 Device Operation: add missing semicolon.
Ported from draft, commit 3c482cf453d36d7c7f81d6a5be260551243e01d4.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@8} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
c000eee & 16 Aug 2013 & rusty & { 2.5 Device Types: reserve 12 for virtio CAIF.
Ported from draft, commit fcb1075753e285b3629301ea075ca0522e29a97b.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@9} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
2d4fa5d & 16 Aug 2013 & rusty & { Make references to "descriptor chains" explicit.
Ported from draft, commit 7a3a665b778039786fade0093df7cc60ebc6cdb1.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@10} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
f74524e & 16 Aug 2013 & rusty & { 2.5.5.6 Device Operation: VIRTIO_BALLOON_F_MUST_TELL_HOST is negotiated
Make that clear: it was not the original intention, but no implementation
actually requires this feature, and making it compulsory has unintended
consequences (it is unlike any other feature).
Ported from draft, commit ed6dd6e5b4c4c01084ff1638b754ad823d0b80f8.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@11} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
4a831c1 & 16 Aug 2013 & rusty & { 2.1.4.2 Message Framing: Document header framing requirement.
Ported from draft, commits 7e74459bb966ccbaad9e4bf361d1178b7f400b79,
8e47520c64c87473f910b55817ba95b0e4113c13 and part of
835628846cc04efe660e505552d06eb945277d3b.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@12} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
69fbbac & 16 Aug 2013 & rusty & { 2.6 Reserved Feature Bits: document bit 30 as used by qemu.
Partial port of draft commit 835628846cc04efe660e505552d06eb945277d3b.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@13} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
6c9d2f4 & 16 Aug 2013 & rusty & { As submitted to virtio-comment list: \url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00009.html}
(Edited into plain text)
From: Dmitry Fleytman <dfleytma@redhat.com>
Virtio-net driver currently negotiates network offloads
on startup via features mechanism and have no ability to
disable and re-enable offloads later.
This patch introduced a new control command that allows
to configure device network offloads state dynamically.
The patch also introduces a new feature flag
VIRTIO_NET_F_CTRL_GUEST_OFFLOADS.
Signed-off-by: Dmitry Fleytman <dfleytma@redhat.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@14} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
75fe4e4 & 19 Aug 2013 & rusty & { Rename to conform to OASIS Naming Directives.
\url{http://docs.oasis-open.org/specGuidelines/ndr/namingDirectives.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@15} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
e17291d & 29 Aug 2013 & mstsirkin & { virtio: fix feature bit thinko
32 Feature bits means 0 to 31, not 32.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@16} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
b03b3a8 & 29 Aug 2013 & mstsirkin & { formatting fixes
for consistency, make sure the following
formatting rules hold:
- each subchapter number ends with dot
- each subchapter title is followed by a line of dashes
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@17} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
acd8e68 & 29 Aug 2013 & mstsirkin & { formatting: more fixups
Fix up formatting for cross-references
e.g. (see X.Y.Z. Foo Bar) to match section names.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@18} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
c278158 & 29 Aug 2013 & mstsirkin & { formatting: put cross-references in "", fix FIXME
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@19} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
98776ec & 29 Aug 2013 & mstsirkin & { minor: rename section
Section in PCI part of spec talks about interrupts,
not used buffers (that's generic).
Also tweak formatting.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@20} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
66ccc72 & 29 Aug 2013 & mstsirkin & { format: remove trailing whitespace
no reason to have it
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@21} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
48d04a5 & 29 Aug 2013 & mstsirkin & { formatting: fix numbering
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@22} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
288a081 & 29 Aug 2013 & mstsirkin & { fix-numbers: perl script to fix up numbering
A handy script I used to fix it up the numbering.
It can make mistakes, so check before you commit!
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@23} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
4c087bd & 29 Aug 2013 & mstsirkin & { formatting: fix up section and footnote numbering
automatically done by script.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@24} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
a2ec438 & 30 Aug 2013 & mstsirkin & { add .exrc
set text width correctly automatically for vim users
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@25} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
7734132 & 30 Aug 2013 & mstsirkin & { formatting: fix more xrefs
Text had some xrefs in the form [sub:text].
These point nowhere, find the target making most
sense and make them point there.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@26} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
1ecf60e & 30 Aug 2013 & mstsirkin & { formatting: fix xref to virtio_ring.h
Text simply had a stub *XREF* text, make it
point at the actual section.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@27} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
2f58637 & 30 Aug 2013 & mstsirkin & { formatting: fix two xrefs
Fix incorrect section number in one xref, fill in
actual targets for another.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@28} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
7c748b4 & 03 Sep 2013 & rusty & { 2.5.6.6.3: unify event structs From: Paolo Bonzini <pbonzini@redhat.com>
All currently defined event structs have the same fields. Simplify the
driver by enforcing this also for future structs.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
See: \url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00031.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@29} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9ef9ca8 & 03 Sep 2013 & rusty & { 2.5.6.6.3: add configuration change event
This adds an event for changes to LUN parameters, for example capacity. These
are reported in virtio-blk via configuration changes, and we want a similar
functionality in virtio-scsi too.
There is no list of supported parameter changes, instead we just refer to
the list of sense codes in the SCSI specification.
This event will usually be serviced in one of three ways: 1) call an OS
service to revalidate the disk, either always or only for some specific
sense codes; 2) somehow pass the sense directly to the upper-level driver;
3) inject a TEST UNIT READY command into the upper-level device, so that
the OS will see the unit attention code and react. Of course a mix of
the three is also possible, depending on how the driver writer prefers
to have his layering violations served.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
See: \url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00032.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@30} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
1c403ad & 04 Sep 2013 & rusty & { 2.4.2.2 Define all MMIO registers as little endian
Port of draft commit 88f37f9ec178b664213b77211fec03687b87958b.
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@31} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
5fe30e0 & 11 Sep 2013 & rusty & { VIRTIO_F_VERSION_1: indentifying legacy devices.
Most of this text is taken directly from Michael Tsirkin's proposal,
separated from the PCI-specific parts, and given an explicit feature name.
See minutes: \url{https://lists.oasis-open.org/archives/virtio/201309/msg00041.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@32} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
148d17d & 11 Sep 2013 & rusty & { 2.5 Reserve device ID 0 (zero) as invalid
See minutes: \url{https://lists.oasis-open.org/archives/virtio/201309/msg00041.html}
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@33} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
5d15cc4 & 18 Sep 2013 & mstsirkin & { transitional: minor clarification
It's useful to have a common term that includes
transitional drivers running on legacy devices
and legacy drivers running on transitional devices.
The wording "using legacy interface" seems to
describe this well, let's make this
explicit.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@34} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
e83ad8c & 25 Sep 2013 & rusty & { Any layout is allowed (deprecate VIRTIO_F_ANY_LAYOUT)
As per issue virtio-10, approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@35} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
cfcac7f & 25 Sep 2013 & rusty & { Remove VIRTIO_F_NOTIFY_ON_EMPTY
As per \url{http://tools.oasis-open.org/issues/browse/VIRTIO-13}
(Includes le8 -> u8 fix)
Approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@36} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
fbed1a2 & 25 Sep 2013 & rusty & { 2.4.1.3: Remove VIRTIO_NET_F_GSO
As per VIRTIO-17, approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@37} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
943f199 & 25 Sep 2013 & rusty & { Relegate the VIRTIO_BLK_F_SCSI feature to legacy
As per issue virtio-18, approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@38} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
8ec4977 & 25 Sep 2013 & rusty & { 2.4.2.3: Remove VIRTIO_BLK_F_BARRIER.
As per VIRTIO-19, approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@39} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
5e19006 & 25 Sep 2013 & rusty & { 2.4.2.5: Remove ioprio field.
Leave a reserved field in there for alignment.
See: \url{https://tools.oasis-open.org/issues/browse/VIRTIO-20}
Approved OASIS meeting 2013-09-24.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@40} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9d70a91 & 25 Sep 2013 & rusty & { 2.3.3 Add virtio-ccw spec.
Ported from draft commit cdbad68fd1ccb8b99b3853836e2b38e0bf74361b.
Issue VIRTIO-29, approved OASIS meeting 2013-09-24.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@41} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
fbf60ea & 25 Sep 2013 & rusty & { 2.3.3 virtio-ccw: Add secondary indicators.
Ported from draft commit e945661b40bcfd29efc35dfa73465bcc960bd20b.
Issue VIRTIO-29, approved OASIS meeting 2013-09-24.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@42} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
3e6f11b & 25 Sep 2013 & rusty & { 2.3.3.2 virtio-ccw clarifications.
Ported from draft commit 67843fe9745e96c10e148f00ba0aa64397c64f06.
Issue VIRTIO-29, approved OASIS meeting 2013-09-24.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@43} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
f44fda4 & 25 Sep 2013 & rusty & { virtio-ccw: document GPR4/GPR2 cookie values
virtio-ccw on kvm can use a cookie value passed to guest
to optimize channel/VQ lookups.
Document this.
VIRTIO-29, approved OASIS meeting 2013-09-24.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@44} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
80a202a & 30 Sep 2013 & mstsirkin & { pci: new configuration layout
- split data path, common config and device specific config
- support for new VQ layout
Resolves issue VIRTIO-21
Approved OASIS meeting 2013-09-24.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@45} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
bec2c19 & 30 Sep 2013 & mstsirkin & { pci: new layout: driver must not write to bits>63
Since we never offer feature bits >63, driver must
not ack them.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@46} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
f954854 & 30 Sep 2013 & mstsirkin & { pci: new layout: move footnote
Legacy footnotes belong directly within text.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@47} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
2c75849 & 30 Sep 2013 & mstsirkin & { pci: remove requirement for revision ID to be 0
While spec previously required revision to be 0 exactly
it turned out not to be an efficient means to
disable legacy drivers - we had to resort to changing
device ID instead.
So let's free up this field making it available for
device makers for hardware versioning.
Resolves VIRTIO-22
Approved OASIS meeting 2013-09-24.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@48} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
1a0b2c6 & 30 Sep 2013 & mstsirkin & { virtqueue: flexible layout, size, alignment
Transports can now lay out available/used/descriptor
regions in a flexible way.
This is useful for embedded systems to save memory,
and for large systems to reduce the need for
physically-contigious memory.
However, this does not add a way to actually program this
in any of the transports, so it's not useful by
itself, separate follow-up patches will add a way to
program this for transports.
Resolves issue: VIRTIO-23
Approved OASIS meeting 2013-09-24.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@49} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
f654bea & 04 Oct 2013 & rusty & { Legacy Interfaces: A Note on Virtqueue Layout: Remove dup paragraph.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@50} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
edeffd1 & 04 Oct 2013 & rusty & { 2.1: Add ccw to forward references.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@51} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
6df98f7 & 04 Oct 2013 & rusty & { Copy linear layout to CCW, MMIO sections.
Revision r49 "virtqueue: flexible layout, size, alignment" moved the linear
assumption into the legacy section. We also need it in the per-transport
sections until (if?) those two transports go non-linear.
Just copied the paragraph, with variable names changed to match the particular
transport field nomenclature.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@52} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
305bbae & 04 Oct 2013 & rusty & { 2.3.1.2.5: emphasize that PCI device-specific config byte-accessible legacy only
This clarification taken from a larger patch by MST:
\url{http://markmail.org/search/?q=subject\%3A\%22[PATCH]\%20configuration\%20space\%20endian-ness\%22+list\%3A\%22org.oasis-open.lists.virtio\%22\#query:subject\%3A\%22[PATCH]\%20configuration\%20space\%20endian-ness\%22\%20list\%3A\%22org.oasis-open.lists.virtio\%22+page:1+mid:6k3im4t3csdukbzm+state:results}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@53} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9a67087 & 04 Oct 2013 & rusty & { net \& block: Make Device configuration layout a separate section.
Formatting conversion error: other devices are OK.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@54} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
470aa92 & 04 Oct 2013 & rusty & { net: revert accidental u16->le16 config change.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@55} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
968eac4 & 04 Oct 2013 & rusty & { Remove comment about > 24 feature bits.
We have that on every transport now.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@56} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
eada3cb & 09 Oct 2013 & hornet & { 2.3.2 MMIO: Reformatting the text
* cleaned up indentation
* replaced all non-ASCII characters with equivalents
* fixed paragraphs numbering
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@57} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
c90c93d & 09 Oct 2013 & hornet & { 2.1.2. Feature Bits: Fixed typo
s/resered/reserved
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@58} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
fce0e55 & 09 Oct 2013 & hornet & { 2.1.2.1 Legacy Interface: Fixed typo
s/accomodates/accommodates
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@59} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
c5f79f5 & 10 Oct 2013 & mstsirkin & { initialization: add extra device status handshake
2.2.1: FEATURES_OK.
Based on MST's ideas, but a bit simpler.
Resolves issue: VIRTIO-30.
Approved OASIS meeting 2013-10-08.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@60} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
3fe5804 & 14 Oct 2013 & rusty & { 2.5.2.3: Add block topology.
From: Paolo Bonzini <pbonzini@redhat.com>
Current QEMU and Linux drivers can export queue parameters via the
virtio-blk configuration space. Document this, since the next patch
will have to add another configuration field after these.
Approved at 2013-10-08 Meeting: \url{https://lists.oasis-open.org/archives/virtio/201310/msg00087.html}
See: \url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00028.html}
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
Conflicts:
virtio-v1.0-wd01-part1-specification.txt
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@61} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
9a42c29 & 14 Oct 2013 & rusty & { virtio_blk: deprecate flush.
This is partially a port of Paolo Bonzini <pbonzini@redhat.com>'s
WCE spec changes, but puts them in the legacy section. It reserves
the writeback field for compatibility.
Flush is now required.
Approved at 2013-10-08 meeting: \url{https://lists.oasis-open.org/archives/virtio/201310/msg00087.html}
See: \url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00078.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@62} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
a70adf9 & 14 Oct 2013 & rusty & { 2.5.2.3: document topology fields
From: Paolo Bonzini <pbonzini@redhat.com>
This completes the changes from yesterday.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Approved at 2013-10-08 meeting: \url{https://lists.oasis-open.org/archives/virtio/201310/msg00087.html}
See:\url{https://lists.oasis-open.org/archives/virtio-comment/201308/msg00030.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@63} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
ce8f873 & 14 Oct 2013 & rusty & { VIRTIO-15: Simplify indirect descriptors.
You get a single table, no multiple tables (no driver does this, but devices
are supposed to support it anyway)
As per issue virtio-15
Approved at meeting 2013-10-08: \url{https://lists.oasis-open.org/archives/virtio/201310/msg00087.html}
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@64} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
a29c58e & 15 Oct 2013 & cornelia.huck & { virtio-ccw: clarify sense id operation
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@65} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
5542f33 & 15 Oct 2013 & hornet & { 2.3.2 MMIO: Reformatting the text, cont.
Further indentation clean-up and non-ASCII characters hunt.
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@66} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
0ef4832 & 29 Oct 2013 & hornet & { 2.3.2 MMIO: Upgrade registers layout to version 2
This patch addresses VIRTIO-44:
* Clarifies MagicValue content
* Bumps up the Version value to 2
* Removes paged-based addressing and replaces it
with 64 bit addresses
* Replaces implicit queue organisation (based
on alignment size) with explicit desc/avail/used
addreses (based on original MST's patch, see
VIRTIO-41)
* Introduces explicit protocol for queue
enabling (based on original MST's idea)
and disabling
* Defines driver's reaction to an invalid
device ID (0x0).
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@67} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
4a88c5a & 29 Oct 2013 & hornet & { 2.3.2 MMIO: Add config space version register
... to allow synchronisation between the guest and the host.
Based on Rusty's original patch, see VIRTIO-35.
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@68} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
663e729 & 30 Oct 2013 & rusty & { virtio-ccw: introduce revisions
Provide a new ccw that allows devices and drivers to operate on selected
revision levels.
VIRTIO-42
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@69} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
c04faff & 30 Oct 2013 & rusty & { virtio-ccw: split descriptor/available/used rings (alternate)
Extend vq_info_block so that the addresses for descriptor table,
available ring and used ring may be transmitted independently.
VIRTIO-23
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@70} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
630f485 & 30 Oct 2013 & rusty & { Revert "virtio-ccw: introduce revisions"
This reverts commit 663e7294691c6f76488d26c82a81f0d6d1e27593.
Accidental commit; minutes say we defer.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@71} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
80f2437 & 30 Oct 2013 & cornelia.huck & { virtio-ccw: add adapter interrupt support
Specify a new channel command to set up two-stage indicators as needed
for adapter interrupts and describe how adapter interrupts are used
for notifications.
VIRTIO-43
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@72} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
0806562 & 30 Oct 2013 & cornelia.huck & { virtio-ccw: clarify some channel I/O concepts
Add the documents where channel I/O is generally described to the
normative references and add some further words on command rejects
and length checks.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@73} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
306baac & 31 Oct 2013 & rusty & { Configuration (read) atomicity.
Aka issue VIRTIO-35.
This is solved per transport:
1) PCI: use the 8 bit reserved field.
Assume that if you really change that fast, you'll do it lazily on
config space read.
2) MMIO (already solved by v2 update)
3) CCW: no transport changes.
They always read/write the entire thing. This just shows that
Cornelia is smarter than I am.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: \url{https://tools.oasis-open.org/version-control/svn/virtio@74} 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
} \\
\hline
a009ddd & 31 Oct 2013 & rusty & { configuration space endian-ness
make it all LE and require natural width accesses
resolves VIRTIO-9