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
mod tys;
use crate::dev::pci::virtio::{PciTransport, VirtIoDevice, VirtIoFeaturesCommon};
use crate::dev::pci::PciDeviceHeader;
use tys::*;
mmio! {
pub VirtIoBlockCfg:
capacity @ 0 => RW, u64;
size_max @ 8 => RW, u32;
seg_max @ 12 => RW, u32;
geometry_cylinders @ 16 => RW, u16;
geometry_heads @ 18 => RW, u8;
geometry_sectors @ 19 => RW, u8;
blk_size @ 20 => RW, u16;
topology_physical_block_exp @ 22 => RW, u8;
topology_alignment_offset @ 23 => RW, u8;
topology_min_io_size @ 24 => RW, u16;
topology_opt_io_size @ 26 => RW, u32;
writeback @ 28 => RW, u8;
max_discard_sectors @ 32 => RW, u32;
max_discard_seg @ 36 => RW, u32;
discard_sector_alignment @ 40 => RW, u32;
max_write_zeros_sectors @ 44 => RW, u32;
max_write_zeros_seg @ 48 => RW, u32;
write_zeros_may_unmap @ 52 => RW, u8;
}
pub struct VirtIoBlock {
dev: VirtIoDevice<VirtIoBlockCfg, 1>,
block_size: usize,
block_count: usize,
}
impl VirtIoBlock {
pub fn from_pci(pci: PciDeviceHeader) -> Result<Self, ()> {
if let PciDeviceHeader::Type0(pci) = pci {
let conf = PciTransport::new(pci, VirtIoBlockCfg::new_from_mmio_area);
let (block_size, block_count) = (
conf.blk_size().read() as usize,
conf.capacity().read() as usize,
);
Ok(Self {
dev: VirtIoDevice::from_transport(conf),
block_size,
block_count,
})
} else {
Err(())
}
}
pub fn init(&self) -> Result<(), ()> {
self.dev.init(
VirtIoFeaturesCommon::empty(),
VirtIoFeaturesBlock::all(),
|dev, _comm_feat, _dev_feat| {
dev.configure_queue(0, |scope| {
let queue_max_size = scope.queue_size();
scope.queue_builder().set_size(queue_max_size)?.register()
})
},
)
}
#[inline]
pub fn block_cnt(&self) -> usize {
self.block_count
}
#[inline]
pub fn block_size(&self) -> usize {
self.block_size
}
pub fn read_bios(&self, bios: &mut dyn Iterator<Item = (usize, &mut [u8])>) -> Result<(), ()> {
let (mut virtq, mut req, mut resp) = (
self.dev.get_queue(0).unwrap(),
VirtIoBlockReq {
type_: VirtIoBlockType::In,
sector: 0,
__reserved: 0,
},
VirtIoBlockResp::default(),
);
let mut bios = bios.peekable();
while let Some((ofs, buf)) = bios.next() {
let ofs_sector = if ofs % self.block_size == 0 && buf.len() % self.block_size == 0 {
ofs / self.block_size
} else {
return Err(());
};
let mut remain = virtq.size() - 3;
let mut tx = virtq.sgl_builder();
let mut expected = ofs + buf.len();
req.sector = ofs_sector as u64;
tx.push(&req);
tx.push_mut(buf);
while let Some((ofs, _)) = bios.peek() {
if remain != 0 && *ofs == expected {
let (_, buf) = bios.next().unwrap();
expected += buf.len();
remain -= 1;
tx.push_mut(buf);
} else {
break;
}
}
tx.push_mut(&mut resp);
tx.finish();
if !matches!(resp, VirtIoBlockResp::Ok) {
return Err(());
}
}
Ok(())
}
pub fn write_bios(&self, bios: &mut dyn Iterator<Item = (usize, &[u8])>) -> Result<(), ()> {
let (mut virtq, mut req, mut resp) = (
self.dev.get_queue(0).unwrap(),
VirtIoBlockReq {
type_: VirtIoBlockType::Out,
sector: 0,
__reserved: 0,
},
VirtIoBlockResp::default(),
);
let mut bios = bios.peekable();
while let Some((ofs, buf)) = bios.next() {
let ofs_sector = if ofs % self.block_size == 0 && buf.len() % self.block_size == 0 {
ofs / self.block_size
} else {
return Err(());
};
let mut remain = virtq.size() - 3;
let mut tx = virtq.sgl_builder();
let mut expected = ofs + buf.len();
req.sector = ofs_sector as u64;
tx.push(&req);
tx.push(buf);
while let Some((ofs, _)) = bios.peek() {
if remain != 0 && *ofs == expected {
let (_, buf) = bios.next().unwrap();
expected += buf.len();
remain -= 1;
tx.push(buf);
} else {
break;
}
}
tx.push_mut(&mut resp);
tx.finish();
if !matches!(resp, VirtIoBlockResp::Ok) {
return Err(());
}
}
Ok(())
}
}