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
use core::fmt;
use core::marker::PhantomData;
#[derive(Debug, Copy, Clone)]
#[non_exhaustive]
pub enum CardCapacity {
StandardCapacity,
HighCapacity,
}
impl Default for CardCapacity {
fn default() -> Self {
CardCapacity::StandardCapacity
}
}
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[allow(missing_docs)]
pub enum BusWidth {
#[non_exhaustive]
Unknown,
One = 1,
Four = 4,
Eight = 8,
}
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum BlockSize {
#[non_exhaustive]
B1 = 0,
B2 = 1,
B4 = 2,
B8 = 3,
B16 = 4,
B32 = 5,
B64 = 6,
B128 = 7,
B256 = 8,
B512 = 9,
B1024 = 10,
B2048 = 11,
B4096 = 12,
B8192 = 13,
B16kB = 14,
Unknown = 15,
}
#[derive(Eq, PartialEq, Copy, Clone, Debug)]
#[allow(dead_code)]
pub enum CurrentState {
Ready = 1,
Identification = 2,
Standby = 3,
Transfer = 4,
Sending = 5,
Receiving = 6,
Programming = 7,
Disconnected = 8,
BusTest = 9,
Sleep = 10,
Error = 128,
}
impl From<u8> for CurrentState {
fn from(n: u8) -> Self {
match n {
1 => Self::Ready,
2 => Self::Identification,
3 => Self::Standby,
4 => Self::Transfer,
5 => Self::Sending,
6 => Self::Receiving,
7 => Self::Programming,
8 => Self::Disconnected,
9 => Self::BusTest,
10 => Self::Sleep,
_ => Self::Error,
}
}
}
#[derive(Copy, Clone, Eq, PartialEq)]
#[allow(non_camel_case_types)]
pub enum CurrentConsumption {
I_0mA,
I_1mA,
I_5mA,
I_10mA,
I_25mA,
I_35mA,
I_45mA,
I_60mA,
I_80mA,
I_100mA,
I_200mA,
}
impl From<&CurrentConsumption> for u32 {
fn from(i: &CurrentConsumption) -> u32 {
match i {
CurrentConsumption::I_0mA => 0,
CurrentConsumption::I_1mA => 1,
CurrentConsumption::I_5mA => 5,
CurrentConsumption::I_10mA => 10,
CurrentConsumption::I_25mA => 25,
CurrentConsumption::I_35mA => 35,
CurrentConsumption::I_45mA => 45,
CurrentConsumption::I_60mA => 60,
CurrentConsumption::I_80mA => 80,
CurrentConsumption::I_100mA => 100,
CurrentConsumption::I_200mA => 200,
}
}
}
impl CurrentConsumption {
fn from_minimum_reg(reg: u128) -> CurrentConsumption {
match reg & 0x7 {
0 => CurrentConsumption::I_0mA,
1 => CurrentConsumption::I_1mA,
2 => CurrentConsumption::I_5mA,
3 => CurrentConsumption::I_10mA,
4 => CurrentConsumption::I_25mA,
5 => CurrentConsumption::I_35mA,
6 => CurrentConsumption::I_60mA,
_ => CurrentConsumption::I_100mA,
}
}
fn from_maximum_reg(reg: u128) -> CurrentConsumption {
match reg & 0x7 {
0 => CurrentConsumption::I_1mA,
1 => CurrentConsumption::I_5mA,
2 => CurrentConsumption::I_10mA,
3 => CurrentConsumption::I_25mA,
4 => CurrentConsumption::I_35mA,
5 => CurrentConsumption::I_45mA,
6 => CurrentConsumption::I_80mA,
_ => CurrentConsumption::I_200mA,
}
}
}
impl fmt::Debug for CurrentConsumption {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let ma: u32 = self.into();
write!(f, "{} mA", ma)
}
}
#[derive(Clone, Copy, Default)]
pub struct OCR<Ext>(pub(crate) u32, PhantomData<Ext>);
impl<Ext> From<u32> for OCR<Ext> {
fn from(word: u32) -> Self {
Self(word, PhantomData)
}
}
impl<Ext> OCR<Ext> {
pub fn is_busy(&self) -> bool {
self.0 & 0x8000_0000 == 0
}
}
#[derive(Clone, Copy, Default)]
pub struct CID<Ext> {
pub(crate) inner: u128,
pub(crate) bytes: [u8; 16],
ext: PhantomData<Ext>,
}
impl<Ext> From<u128> for CID<Ext> {
fn from(inner: u128) -> Self {
Self {
inner,
bytes: inner.to_be_bytes(),
ext: PhantomData,
}
}
}
impl<Ext> From<[u32; 4]> for CID<Ext> {
fn from(words: [u32; 4]) -> Self {
let inner = ((words[3] as u128) << 96)
| ((words[2] as u128) << 64)
| ((words[1] as u128) << 32)
| words[0] as u128;
inner.into()
}
}
impl<Ext> CID<Ext> {
pub fn manufacturer_id(&self) -> u8 {
self.bytes[0]
}
#[allow(unused)]
fn crc7(&self) -> u8 {
(self.bytes[15] >> 1) & 0x7F
}
}
#[derive(Clone, Copy, Default)]
pub struct CSD<Ext>(pub(crate) u128, PhantomData<Ext>);
impl<Ext> From<u128> for CSD<Ext> {
fn from(inner: u128) -> Self {
Self(inner, PhantomData)
}
}
impl<Ext> From<[u32; 4]> for CSD<Ext> {
fn from(words: [u32; 4]) -> Self {
let inner = ((words[3] as u128) << 96)
| ((words[2] as u128) << 64)
| ((words[1] as u128) << 32)
| words[0] as u128;
inner.into()
}
}
impl<Ext> CSD<Ext> {
pub fn version(&self) -> u8 {
(self.0 >> 126) as u8 & 3
}
pub fn transfer_rate(&self) -> u8 {
(self.0 >> 96) as u8
}
pub fn block_length(&self) -> BlockSize {
match (self.0 >> 80) & 0xF {
0 => BlockSize::B1,
1 => BlockSize::B2,
2 => BlockSize::B4,
3 => BlockSize::B8,
4 => BlockSize::B16,
5 => BlockSize::B32,
6 => BlockSize::B64,
7 => BlockSize::B128,
8 => BlockSize::B256,
9 => BlockSize::B512,
10 => BlockSize::B1024,
11 => BlockSize::B2048,
12 => BlockSize::B4096,
13 => BlockSize::B8192,
14 => BlockSize::B16kB,
_ => BlockSize::Unknown,
}
}
pub fn read_current_minimum_vdd(&self) -> CurrentConsumption {
CurrentConsumption::from_minimum_reg((self.0 >> 59) & 0x7)
}
pub fn write_current_minimum_vdd(&self) -> CurrentConsumption {
CurrentConsumption::from_minimum_reg((self.0 >> 56) & 0x7)
}
pub fn read_current_maximum_vdd(&self) -> CurrentConsumption {
CurrentConsumption::from_maximum_reg((self.0 >> 53) & 0x7)
}
pub fn write_current_maximum_vdd(&self) -> CurrentConsumption {
CurrentConsumption::from_maximum_reg((self.0 >> 50) & 0x7)
}
}
#[derive(Clone, Copy)]
pub struct CardStatus<Ext>(pub(crate) u32, PhantomData<Ext>);
impl<Ext> From<u32> for CardStatus<Ext> {
fn from(word: u32) -> Self {
Self(word, PhantomData)
}
}
impl<Ext> CardStatus<Ext> {
pub fn out_of_range(&self) -> bool {
self.0 & 0x8000_0000 != 0
}
pub fn address_error(&self) -> bool {
self.0 & 0x4000_0000 != 0
}
pub fn block_len_error(&self) -> bool {
self.0 & 0x2000_0000 != 0
}
pub fn erase_seq_error(&self) -> bool {
self.0 & 0x1000_0000 != 0
}
pub fn erase_param(&self) -> bool {
self.0 & 0x800_0000 != 0
}
pub fn wp_violation(&self) -> bool {
self.0 & 0x400_0000 != 0
}
pub fn card_is_locked(&self) -> bool {
self.0 & 0x200_0000 != 0
}
pub fn lock_unlock_failed(&self) -> bool {
self.0 & 0x100_0000 != 0
}
pub fn com_crc_error(&self) -> bool {
self.0 & 0x80_0000 != 0
}
pub fn illegal_command(&self) -> bool {
self.0 & 0x40_0000 != 0
}
pub fn card_ecc_failed(&self) -> bool {
self.0 & 0x20_0000 != 0
}
pub fn cc_error(&self) -> bool {
self.0 & 0x10_0000 != 0
}
pub fn error(&self) -> bool {
self.0 & 0x8_0000 != 0
}
pub fn csd_overwrite(&self) -> bool {
self.0 & 0x1_0000 != 0
}
pub fn wp_erase_skip(&self) -> bool {
self.0 & 0x8000 != 0
}
pub fn erase_reset(&self) -> bool {
self.0 & 0x2000 != 0
}
pub fn state(&self) -> CurrentState {
CurrentState::from(((self.0 >> 9) & 0xF) as u8)
}
pub fn ready_for_data(&self) -> bool {
self.0 & 0x100 != 0
}
pub fn app_cmd(&self) -> bool {
self.0 & 0x20 != 0
}
}
#[derive(Debug, Copy, Clone, Default)]
pub struct RCA<Ext>(pub(crate) u32, PhantomData<Ext>);
impl<Ext> From<u32> for RCA<Ext> {
fn from(word: u32) -> Self {
Self(word, PhantomData)
}
}
impl<Ext> RCA<Ext> {
pub fn address(&self) -> u16 {
(self.0 >> 16) as u16
}
}