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
use core::fmt;
use core::ptr;
use kernel::common::VolatileCell;
use usbc::common::register::*;
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum Mode {
Host,
Device {
speed: Speed,
config: Option<EndpointConfig>,
state: DeviceState,
},
}
impl Mode {
pub fn device_at_speed(speed: Speed) -> Mode {
Mode::Device {
speed: speed,
config: None,
state: DeviceState::Init,
}
}
}
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum DeviceState {
Init,
CtrlReadIn,
CtrlReadStatus,
CtrlWriteOut,
CtrlWriteStatus,
CtrlWriteStatusWait,
CtrlInDelay,
}
impl ToWord for Mode {
fn to_word(self) -> u32 {
match self {
Mode::Host => 0,
Mode::Device { .. } => 1,
}
}
}
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum Speed {
Full,
Low,
}
impl ToWord for Speed {
fn to_word(self) -> u32 {
match self {
Speed::Full => 0,
Speed::Low => 1,
}
}
}
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum State {
Reset,
Idle(Mode),
Active(Mode),
}
pub type Endpoint = [Bank; 2];
pub const fn new_endpoint() -> Endpoint {
[Bank::new(), Bank::new()]
}
#[repr(C)]
pub struct Bank {
pub addr: VolatileCell<*mut u8>,
pub packet_size: VolatileCell<PacketSize>,
pub ctrl_status: VolatileCell<ControlStatus>,
_pad: u32,
}
impl Bank {
pub const fn new() -> Bank {
Bank {
addr: VolatileCell::new(ptr::null_mut()),
packet_size: VolatileCell::new(PacketSize(0)),
ctrl_status: VolatileCell::new(ControlStatus(0)),
_pad: 0,
}
}
pub fn set_addr(&self, addr: *mut u8) {
self.addr.set(addr);
}
pub fn set_packet_size(&self, size: PacketSize) {
self.packet_size.set(size);
}
}
pub enum BankIndex {
Bank0,
Bank1,
}
impl From<BankIndex> for usize {
fn from(bi: BankIndex) -> usize {
match bi {
BankIndex::Bank0 => 0,
BankIndex::Bank1 => 1,
}
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct PacketSize(u32);
impl PacketSize {
pub fn new(byte_count: u32, multi_packet_size: u32, auto_zlp: bool) -> PacketSize {
PacketSize(
(byte_count & 0x7fff) | ((multi_packet_size & 0x7fff) << 16) | ((if auto_zlp {
1 << 31
} else {
0
})),
)
}
pub fn default() -> PacketSize {
PacketSize::new(0, 0, false)
}
pub fn single(byte_count: u32) -> PacketSize {
PacketSize::new(byte_count, 0, false)
}
pub fn single_with_zlp(byte_count: u32) -> PacketSize {
PacketSize::new(byte_count, 0, true)
}
pub fn byte_count(&self) -> u32 {
self.0 & 0x7fff
}
pub fn multi_packet_size(&self) -> u32 {
(self.0 >> 16) & 0x7fff
}
pub fn auto_zlp(&self) -> bool {
self.0 & (1 << 31) != 0
}
}
impl fmt::Debug for PacketSize {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"PacketSize {:x} {{ byte_count: {}, multi_packet_size: {}, {}auto_zlp }}",
self.0,
self.byte_count(),
self.multi_packet_size(),
bang(self.auto_zlp())
)
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct ControlStatus(u32);
impl ControlStatus {
fn get_status_underflow(&self) -> bool {
self.0 & (1 << 18) != 0
}
fn get_status_overflow(&self) -> bool {
self.0 & (1 << 17) != 0
}
fn get_status_crcerror(&self) -> bool {
self.0 & (1 << 16) != 0
}
}
impl fmt::Debug for ControlStatus {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"ControlStatus {:x} {{ {}underflow {}overflow {}crcerror }}",
self.0,
bang(self.get_status_underflow()),
bang(self.get_status_overflow()),
bang(self.get_status_crcerror())
)
}
}
fn bang(b: bool) -> &'static str {
if b {
""
} else {
"!"
}
}
#[derive(Copy, Clone, PartialEq, Debug)]
#[repr(C)]
pub struct EndpointConfig(u32);
impl EndpointConfig {
pub fn new(
banks: BankCount,
size: EndpointSize,
dir: EndpointDirection,
typ: EndpointType,
redir: EndpointIndex,
) -> EndpointConfig {
EndpointConfig(
((banks as u32) << 2) | ((size as u32) << 4) | ((dir as u32) << 8)
| ((typ as u32) << 11) | (redir.to_word() << 16),
)
}
}
impl From<EndpointConfig> for u32 {
fn from(epc: EndpointConfig) -> u32 {
epc.0
}
}
pub enum BankCount {
Single,
Double,
}
pub enum EndpointSize {
Bytes8,
Bytes16,
Bytes32,
Bytes64,
Bytes128,
Bytes256,
Bytes512,
Bytes1024,
}
pub enum EndpointDirection {
Out,
In,
}
pub enum EndpointType {
Control,
Isochronous,
Bulk,
Interrupt,
}
pub struct EndpointIndex(u32);
impl EndpointIndex {
pub fn new(index: u32) -> EndpointIndex {
EndpointIndex(index & 0xf)
}
}
impl From<EndpointIndex> for usize {
fn from(ei: EndpointIndex) -> usize {
ei.0 as usize
}
}
impl ToWord for EndpointIndex {
fn to_word(self) -> u32 {
self.0
}
}
pub struct HexBuf<'a>(pub &'a [u8]);
impl<'a> fmt::Debug for HexBuf<'a> {
#[allow(unused_must_use)]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "[");
let mut i: usize = 0;
for b in self.0 {
write!(f, "{}{:.02x}", if i > 0 { " " } else { "" }, b);
i += 1;
}
write!(f, "]")
}
}