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
pub use crate::common::*;
#[derive(Clone, Copy, Default)]
pub struct SD;
use core::{fmt, str};
#[non_exhaustive]
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum SDSpecVersion {
V1_0,
V1_10,
V2,
V3,
V4,
V5,
V6,
V7,
Unknown,
}
#[derive(Clone, Copy, Default)]
pub struct SCR(pub u64);
impl From<[u32; 2]> for SCR {
fn from(words: [u32; 2]) -> Self {
Self(((words[1] as u64) << 32) | words[0] as u64)
}
}
impl SCR {
pub fn version(&self) -> SDSpecVersion {
let spec = (self.0 >> 56) & 0xF;
let spec3 = (self.0 >> 47) & 1;
let spec4 = (self.0 >> 42) & 1;
let specx = (self.0 >> 38) & 0xF;
match (spec, spec3, spec4, specx) {
(0, 0, 0, 0) => SDSpecVersion::V1_0,
(1, 0, 0, 0) => SDSpecVersion::V1_10,
(2, 0, 0, 0) => SDSpecVersion::V2,
(2, 1, 0, 0) => SDSpecVersion::V3,
(2, 1, 1, 0) => SDSpecVersion::V4,
(2, 1, _, 1) => SDSpecVersion::V5,
(2, 1, _, 2) => SDSpecVersion::V6,
(2, 1, _, 3) => SDSpecVersion::V7,
_ => SDSpecVersion::Unknown,
}
}
pub fn bus_widths(&self) -> u8 {
((self.0 >> 48) as u8) & 0xF
}
pub fn bus_width_one(&self) -> bool {
(self.0 >> 48) & 1 != 0
}
pub fn bus_width_four(&self) -> bool {
(self.0 >> 50) & 1 != 0
}
}
impl core::fmt::Debug for SCR {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("SCR: SD CARD Configuration Register")
.field("Version", &self.version())
.field("1-bit width", &self.bus_width_one())
.field("4-bit width", &self.bus_width_four())
.finish()
}
}
impl OCR<SD> {
pub fn voltage_window_mv(&self) -> Option<(u16, u16)> {
let mut window = (self.0 >> 15) & 0x1FF;
let mut min = 2_700;
while window & 1 == 0 && window != 0 {
min += 100;
window >>= 1;
}
let mut max = min;
while window != 0 {
max += 100;
window >>= 1;
}
if max == min {
None
} else {
Some((min, max))
}
}
pub fn v18_allowed(&self) -> bool {
self.0 & 0x0100_0000 != 0
}
pub fn over_2tb(&self) -> bool {
self.0 & 0x0800_0000 != 0
}
pub fn uhs2_card_status(&self) -> bool {
self.0 & 0x2000_0000 != 0
}
pub fn high_capacity(&self) -> bool {
self.0 & 0x4000_0000 != 0
}
}
impl fmt::Debug for OCR<SD> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("OCR: Operation Conditions Register")
.field(
"Voltage Window (mV)",
&self.voltage_window_mv().unwrap_or((0, 0)),
)
.field("S18A (UHS-I only)", &self.v18_allowed())
.field("Over 2TB flag (SDUC only)", &self.over_2tb())
.field("UHS-II Card", &self.uhs2_card_status())
.field(
"Card Capacity Status (CSS)",
&if self.high_capacity() {
"SDHC/SDXC/SDUC"
} else {
"SDSC"
},
)
.field("Busy", &self.is_busy())
.finish()
}
}
impl CID<SD> {
pub fn oem_id(&self) -> &str {
str::from_utf8(&self.bytes[1..3]).unwrap_or(&"<ERR>")
}
pub fn product_name(&self) -> &str {
str::from_utf8(&self.bytes[3..8]).unwrap_or(&"<ERR>")
}
pub fn product_revision(&self) -> u8 {
self.bytes[8]
}
pub fn serial(&self) -> u32 {
(self.inner >> 24) as u32
}
pub fn manufacturing_date(&self) -> (u8, u16) {
(
(self.inner >> 8) as u8 & 0xF,
((self.inner >> 12) as u16 & 0xFF) + 2000,
)
}
}
impl fmt::Debug for CID<SD> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("CID: Card Identification")
.field("Manufacturer ID", &self.manufacturer_id())
.field("OEM ID", &self.oem_id())
.field("Product Name", &self.product_name())
.field("Product Revision", &self.product_revision())
.field("Product Serial Number", &self.serial())
.field("Manufacturing Date", &self.manufacturing_date())
.finish()
}
}
impl CSD<SD> {
pub fn block_count(&self) -> u64 {
match self.version() {
0 => {
let c_size: u16 = ((self.0 >> 62) as u16) & 0xFFF;
let c_size_mult: u8 = ((self.0 >> 47) as u8) & 7;
((c_size + 1) as u64) * ((1 << (c_size_mult + 2)) as u64)
}
1 => {
(((self.0 >> 48) as u64 & 0x3F_FFFF) + 1) * 1024
}
2 => {
(((self.0 >> 48) as u64 & 0xFFF_FFFF) + 1) * 1024
}
_ => 0,
}
}
pub fn card_size(&self) -> u64 {
let block_size_bytes = 1 << self.block_length() as u64;
self.block_count() * block_size_bytes
}
pub fn erase_size_blocks(&self) -> u32 {
if (self.0 >> 46) & 1 == 1 {
1
} else {
let sector_size_tens = (self.0 >> 43) & 0x7;
let sector_size_units = (self.0 >> 39) & 0xF;
(sector_size_tens as u32 * 10) + (sector_size_units as u32)
}
}
}
impl fmt::Debug for CSD<SD> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("CSD: Card Specific Data")
.field("Transfer Rate", &self.transfer_rate())
.field("Block Count", &self.block_count())
.field("Card Size (bytes)", &self.card_size())
.field("Read I (@min VDD)", &self.read_current_minimum_vdd())
.field("Write I (@min VDD)", &self.write_current_minimum_vdd())
.field("Read I (@max VDD)", &self.read_current_maximum_vdd())
.field("Write I (@max VDD)", &self.write_current_maximum_vdd())
.field("Erase Size (Blocks)", &self.erase_size_blocks())
.finish()
}
}
impl CardStatus<SD> {
pub fn ecc_disabled(&self) -> bool {
self.0 & 0x4000 != 0
}
pub fn fx_event(&self) -> bool {
self.0 & 0x40 != 0
}
pub fn ake_seq_error(&self) -> bool {
self.0 & 0x8 != 0
}
}
impl fmt::Debug for CardStatus<SD> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Card Status")
.field("Out of range error", &self.out_of_range())
.field("Address error", &self.address_error())
.field("Block len error", &self.block_len_error())
.field("Erase seq error", &self.erase_seq_error())
.field("Erase param error", &self.erase_param())
.field("Write protect error", &self.wp_violation())
.field("Card locked", &self.card_is_locked())
.field("Password lock unlock error", &self.lock_unlock_failed())
.field(
"Crc check for the previous command failed",
&self.com_crc_error(),
)
.field("Illegal command", &self.illegal_command())
.field("Card internal ecc failed", &self.card_ecc_failed())
.field("Internal card controller error", &self.cc_error())
.field("General Error", &self.error())
.field("Csd error", &self.csd_overwrite())
.field("Write protect error", &self.wp_erase_skip())
.field("Command ecc disabled", &self.ecc_disabled())
.field("Erase sequence cleared", &self.erase_reset())
.field("Card state", &self.state())
.field("Buffer empty", &self.ready_for_data())
.field("Extension event", &self.fx_event())
.field("Card expects app cmd", &self.app_cmd())
.field("Auth process error", &self.ake_seq_error())
.finish()
}
}
#[derive(Clone, Copy, Default)]
pub struct SDStatus {
inner: [u32; 16],
}
impl From<[u32; 16]> for SDStatus {
fn from(inner: [u32; 16]) -> Self {
Self { inner }
}
}
impl SDStatus {
pub fn bus_width(&self) -> BusWidth {
match (self.inner[15] >> 30) & 3 {
0 => BusWidth::One,
2 => BusWidth::Four,
_ => BusWidth::Unknown,
}
}
pub fn secure_mode(&self) -> bool {
self.inner[15] & 0x2000_0000 != 0
}
pub fn sd_memory_card_type(&self) -> u16 {
self.inner[15] as u16
}
pub fn protected_area_size(&self) -> u32 {
self.inner[14]
}
pub fn speed_class(&self) -> u8 {
(self.inner[13] >> 24) as u8
}
pub fn move_performance(&self) -> u8 {
(self.inner[13] >> 16) as u8
}
pub fn allocation_unit_size(&self) -> u8 {
(self.inner[13] >> 12) as u8 & 0xF
}
pub fn erase_size(&self) -> u16 {
(self.inner[13] & 0xFF) as u16 | ((self.inner[12] >> 24) & 0xFF) as u16
}
pub fn erase_timeout(&self) -> u8 {
(self.inner[12] >> 18) as u8 & 0x3F
}
pub fn video_speed_class(&self) -> u8 {
(self.inner[11] & 0xFF) as u8
}
pub fn app_perf_class(&self) -> u8 {
(self.inner[9] >> 16) as u8 & 0xF
}
pub fn discard_support(&self) -> bool {
self.inner[8] & 0x0200_0000 != 0
}
}
impl fmt::Debug for SDStatus {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SD Status")
.field("Bus Width", &self.bus_width())
.field("Secured Mode", &self.secure_mode())
.field("SD Memory Card Type", &self.sd_memory_card_type())
.field("Protected Area Size (B)", &self.protected_area_size())
.field("Speed Class", &self.speed_class())
.field("Video Speed Class", &self.video_speed_class())
.field("Application Performance Class", &self.app_perf_class())
.field("Move Performance (MB/s)", &self.move_performance())
.field("AU Size", &self.allocation_unit_size())
.field("Erase Size (units of AU)", &self.erase_size())
.field("Erase Timeout (s)", &self.erase_timeout())
.field("Discard Support", &self.discard_support())
.finish()
}
}
#[derive(Copy, Clone, Default)]
pub struct CIC(u32);
impl From<u32> for CIC {
fn from(word: u32) -> Self {
Self(word)
}
}
impl CIC {
pub fn voltage_accepted(&self) -> u8 {
(self.0 >> 8) as u8
}
pub fn pattern(&self) -> u8 {
self.0 as u8
}
}
impl RCA<SD> {
pub fn status(&self) -> u16 {
self.0 as u16
}
}