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
use base_address::{BaseAddress, Dynamic, Static};
use core::marker::PhantomData;
use volatile_register::RW;
use super::GPIO;
#[repr(C)]
pub struct RegisterBlock {
_reserved0: [u32; 12],
pub port: [Port; 6],
_reserved1: [u32; 52],
pub eint: [Eint; 6],
_reserved2: [u32; 24],
pub pio_pow: PioPow,
}
#[repr(C)]
pub struct Port {
pub cfg: [RW<u32>; 4],
pub dat: RW<u32>,
pub drv: [RW<u32>; 4],
pub pull: [RW<u32>; 2],
_reserved0: [u32; 1],
}
#[repr(C)]
pub struct Eint {
pub cfg: [RW<u32>; 4],
pub ctl: RW<u32>,
pub status: RW<u32>,
pub deb: RW<u32>,
_reserved0: [u32; 1],
}
#[repr(C)]
pub struct PioPow {
pub mod_sel: RW<u32>,
pub ms_ctl: RW<u32>,
pub val: RW<u32>,
_reserved0: [u32; 1],
pub vol_sel_ctl: RW<u32>,
}
impl<const B: usize> GPIO<Static<B>> {
#[inline]
pub const unsafe fn steal_static() -> GPIO<Static<B>> {
GPIO { base: Static::<B> }
}
}
impl GPIO<Dynamic> {
#[inline]
pub unsafe fn steal_dynamic(base: *const ()) -> GPIO<Dynamic> {
GPIO {
base: Dynamic::new(base as usize),
}
}
}
impl<A: BaseAddress> GPIO<A> {
#[inline]
pub fn set_mode<const P: char, const N: u8, OldM, NewM>(
&self,
pin: Pin<A, P, N, OldM>,
) -> Pin<A, P, N, NewM>
where
OldM: PinMode,
NewM: PinMode,
{
let Pin { base, .. } = pin;
let (port_idx, cfg_reg_idx, cfg_field_idx) = port_cfg_index(P, N);
let mask = !(0xF << cfg_field_idx);
let value = (NewM::VALUE as u32) << cfg_field_idx;
let cfg_reg = &self.port[port_idx].cfg[cfg_reg_idx];
unsafe { cfg_reg.modify(|cfg| (cfg & mask) | value) };
Pin {
base,
_mode: PhantomData,
}
}
}
const fn port_cfg_index(p: char, n: u8) -> (usize, usize, u8) {
assert!(p as usize >= b'B' as usize && p as usize <= b'G' as usize);
assert!(n <= 31);
let port_idx = p as usize - b'B' as usize;
let cfg_reg_idx = (n >> 3) as usize;
let cfg_field_idx = (n & 0b111) << 2;
(port_idx, cfg_reg_idx, cfg_field_idx)
}
pub struct Pin<A: BaseAddress, const P: char, const N: u8, M> {
base: A,
_mode: PhantomData<M>,
}
impl<A: BaseAddress, const P: char, const N: u8, M: PinMode> Pin<A, P, N, M> {
#[inline]
pub fn into_disabled(self) -> Pin<A, P, N, Disabled> {
unsafe { &*self.gpio() }.set_mode(self)
}
#[inline]
pub fn into_input(self) -> Pin<A, P, N, Input> {
unsafe { &*self.gpio() }.set_mode(self)
}
#[inline]
pub fn into_output(self) -> Pin<A, P, N, Output> {
unsafe { &*self.gpio() }.set_mode(self)
}
#[inline]
pub fn into_eint(self) -> Pin<A, P, N, EintMode> {
unsafe { &*self.gpio() }.set_mode(self)
}
#[inline]
pub fn into_function<const F: u8>(self) -> Pin<A, P, N, Function<F>> {
unsafe { &*self.gpio() }.set_mode(self)
}
#[inline(always)]
fn gpio(&self) -> *const GPIO<A> {
self.base.ptr() as *const GPIO<A>
}
}
pub enum Event {
PositiveEdge,
NegativeEdge,
HighLevel,
LowLevel,
BothEdges,
}
pub trait EintPin {
fn listen(&mut self, event: Event);
fn enable_interrupt(&mut self);
fn disable_interrupt(&mut self);
fn clear_interrupt_pending_bit(&mut self);
fn check_interrupt(&mut self) -> bool;
}
impl<A: BaseAddress, const P: char, const N: u8> EintPin for Pin<A, P, N, EintMode> {
#[inline]
fn listen(&mut self, event: Event) {
let event_id = match event {
Event::PositiveEdge => 0,
Event::NegativeEdge => 1,
Event::HighLevel => 2,
Event::LowLevel => 3,
Event::BothEdges => 4,
};
let (port_idx, cfg_reg_idx, cfg_field_idx) = port_cfg_index(P, N);
let mask = !(0xF << cfg_field_idx);
let value = event_id << cfg_field_idx;
let cfg_reg = &unsafe { &*self.gpio() }.eint[port_idx].cfg[cfg_reg_idx];
unsafe { cfg_reg.modify(|cfg| (cfg & mask) | value) };
}
#[inline]
fn enable_interrupt(&mut self) {
unsafe {
(&*self.gpio()).eint[port_index(P)]
.ctl
.modify(|value| value | (1 << N))
}
}
#[inline]
fn disable_interrupt(&mut self) {
unsafe {
(&*self.gpio()).eint[port_index(P)]
.ctl
.modify(|value| value & !(1 << N))
}
}
#[inline]
fn clear_interrupt_pending_bit(&mut self) {
unsafe { (&*self.gpio()).eint[port_index(P)].status.write(1 << N) }
}
#[inline]
fn check_interrupt(&mut self) -> bool {
unsafe { &*self.gpio() }.eint[port_index(P)].status.read() & (1 << N) != 0
}
}
#[allow(unused)]
macro_rules! impl_gpio_pins {
($($px: ident:($P: expr, $N: expr, $M: ty);)+) => {
pub struct Pins<A: base_address::BaseAddress> {
$(
pub $px: $crate::gpio::Pin<A, $P, $N, $M>,
)+
}
};
}
impl<A: BaseAddress, const P: char, const N: u8> embedded_hal::digital::ErrorType
for Pin<A, P, N, Input>
{
type Error = core::convert::Infallible;
}
impl<A: BaseAddress, const P: char, const N: u8> embedded_hal::digital::InputPin
for Pin<A, P, N, Input>
{
#[inline]
fn is_high(&self) -> Result<bool, Self::Error> {
Ok(unsafe { &*self.gpio() }.port[port_index(P)].dat.read() & (1 << N) != 0)
}
#[inline]
fn is_low(&self) -> Result<bool, Self::Error> {
Ok(unsafe { &*self.gpio() }.port[port_index(P)].dat.read() & (1 << N) == 0)
}
}
impl<A: BaseAddress, const P: char, const N: u8> embedded_hal::digital::ErrorType
for Pin<A, P, N, Output>
{
type Error = core::convert::Infallible;
}
impl<A: BaseAddress, const P: char, const N: u8> embedded_hal::digital::OutputPin
for Pin<A, P, N, Output>
{
#[inline]
fn set_low(&mut self) -> Result<(), Self::Error> {
unsafe {
(&*self.gpio()).port[port_index(P)]
.dat
.modify(|value| value & !(1 << N))
};
Ok(())
}
#[inline]
fn set_high(&mut self) -> Result<(), Self::Error> {
unsafe {
(&*self.gpio()).port[port_index(P)]
.dat
.modify(|value| value | (1 << N))
};
Ok(())
}
}
impl<A: BaseAddress, const P: char, const N: u8> embedded_hal::digital::StatefulOutputPin
for Pin<A, P, N, Output>
{
#[inline]
fn is_set_high(&self) -> Result<bool, Self::Error> {
Ok(unsafe { &*self.gpio() }.port[port_index(P)].dat.read() & (1 << N) != 0)
}
#[inline]
fn is_set_low(&self) -> Result<bool, Self::Error> {
Ok(unsafe { &*self.gpio() }.port[port_index(P)].dat.read() & (1 << N) == 0)
}
}
const fn port_index(p: char) -> usize {
assert!(p as usize >= b'B' as usize && p as usize <= b'G' as usize);
p as usize - b'B' as usize
}
pub struct Input;
pub struct Output;
pub struct Function<const N: u8>;
pub struct EintMode;
pub struct Disabled;
pub trait PinMode {
const VALUE: u8;
}
impl PinMode for Input {
const VALUE: u8 = 0;
}
impl PinMode for Output {
const VALUE: u8 = 1;
}
impl<const N: u8> PinMode for Function<N> {
const VALUE: u8 = N;
}
impl PinMode for EintMode {
const VALUE: u8 = 14;
}
impl PinMode for Disabled {
const VALUE: u8 = 15;
}
#[cfg(test)]
mod tests {
use super::{Eint, PioPow, Port, RegisterBlock};
use memoffset::offset_of;
#[test]
fn offset_gpio() {
assert_eq!(offset_of!(RegisterBlock, port), 0x30);
assert_eq!(offset_of!(RegisterBlock, eint), 0x220);
assert_eq!(offset_of!(RegisterBlock, pio_pow), 0x340);
}
#[test]
fn offset_port() {
assert_eq!(offset_of!(Port, cfg), 0x00);
assert_eq!(offset_of!(Port, dat), 0x10);
assert_eq!(offset_of!(Port, drv), 0x14);
assert_eq!(offset_of!(Port, pull), 0x24);
}
#[test]
fn offset_eint() {
assert_eq!(offset_of!(Eint, cfg), 0x00);
assert_eq!(offset_of!(Eint, ctl), 0x10);
assert_eq!(offset_of!(Eint, status), 0x14);
assert_eq!(offset_of!(Eint, deb), 0x18);
}
#[test]
fn offset_pio_pow() {
assert_eq!(offset_of!(PioPow, mod_sel), 0x00);
assert_eq!(offset_of!(PioPow, ms_ctl), 0x04);
assert_eq!(offset_of!(PioPow, val), 0x08);
assert_eq!(offset_of!(PioPow, vol_sel_ctl), 0x10);
}
}