gpiocdev 0.8.0

Access GPIO lines on Linux using the GPIO character device
Documentation
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
// SPDX-FileCopyrightText: 2021 Kent Gibson <warthog618@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

mod config;
pub use self::config::Config;

mod event;
pub use self::event::{EdgeEvent, EdgeKind, InfoChangeEvent, InfoChangeKind};

mod info;
pub use self::info::Info;

mod value;
pub use self::value::{Value, Values};

#[cfg(feature = "uapi_v1")]
use gpiocdev_uapi::v1;
#[cfg(feature = "uapi_v2")]
use gpiocdev_uapi::v2;
#[cfg(feature = "serde")]
use serde_derive::{Deserialize, Serialize};
use std::collections::HashMap;
use std::hash::{BuildHasherDefault, Hasher};

/// An identifier for a line on a particular chip.
///
/// Valid offsets are in the range 0..`num_lines` as reported in the chip [`Info`](super::chip::Info).
pub type Offset = u32;

/// A map from offset to T.
pub type OffsetMap<T> = HashMap<Offset, T, BuildHasherDefault<OffsetHasher>>;

/// A simple identity hasher for maps using Offsets as keys.
#[derive(Default)]
pub struct OffsetHasher(u64);

impl Hasher for OffsetHasher {
    fn finish(&self) -> u64 {
        self.0
    }

    fn write(&mut self, _: &[u8]) {
        panic!("OffsetHasher key must be u32")
    }

    fn write_u32(&mut self, n: u32) {
        self.0 = n.into()
    }
}

/// A collection of line offsets.
pub type Offsets = Vec<Offset>;

/// The direction of a line.
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Direction {
    /// The line is an input.
    #[default]
    Input,

    /// The line is an output.
    Output,
}

#[cfg(feature = "uapi_v1")]
impl From<v1::LineInfoFlags> for Direction {
    fn from(flags: v1::LineInfoFlags) -> Self {
        if flags.contains(v1::LineInfoFlags::OUTPUT) {
            return Direction::Output;
        }
        Direction::Input
    }
}
#[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
impl From<v2::LineFlags> for Direction {
    fn from(flags: v2::LineFlags) -> Self {
        if flags.contains(v2::LineFlags::OUTPUT) {
            return Direction::Output;
        }
        Direction::Input
    }
}

/// The bias settings for a line.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Bias {
    /// The line has pull-up enabled.
    PullUp,

    /// The line has pull-down enabled.
    PullDown,

    /// The line has bias disabled and will float unless externally driven.
    Disabled,
}

#[cfg(feature = "uapi_v1")]
impl TryFrom<v1::LineInfoFlags> for Bias {
    type Error = ();

    fn try_from(flags: v1::LineInfoFlags) -> Result<Self, Self::Error> {
        if flags.contains(v1::LineInfoFlags::BIAS_PULL_UP) {
            return Ok(Bias::PullUp);
        }
        if flags.contains(v1::LineInfoFlags::BIAS_PULL_DOWN) {
            return Ok(Bias::PullDown);
        }
        if flags.contains(v1::LineInfoFlags::BIAS_DISABLED) {
            return Ok(Bias::Disabled);
        }
        Err(())
    }
}
#[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
impl TryFrom<v2::LineFlags> for Bias {
    type Error = ();

    fn try_from(flags: v2::LineFlags) -> Result<Self, Self::Error> {
        if flags.contains(v2::LineFlags::BIAS_PULL_UP) {
            return Ok(Bias::PullUp);
        }
        if flags.contains(v2::LineFlags::BIAS_PULL_DOWN) {
            return Ok(Bias::PullDown);
        }
        if flags.contains(v2::LineFlags::BIAS_DISABLED) {
            return Ok(Bias::Disabled);
        }
        Err(())
    }
}

/// The drive policy settings for an output line.
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Drive {
    /// The line is driven when both active and inactive.
    ///
    /// This is the default if drive is not specified.
    #[default]
    PushPull,

    /// The line is driven when low and set high impedance when high.
    OpenDrain,

    /// The line is driven when high and set high impedance when low.
    OpenSource,
}

#[cfg(feature = "uapi_v1")]
impl TryFrom<v1::LineInfoFlags> for Drive {
    type Error = ();

    fn try_from(flags: v1::LineInfoFlags) -> Result<Self, Self::Error> {
        if flags.contains(v1::LineInfoFlags::OPEN_DRAIN) {
            return Ok(Drive::OpenDrain);
        }
        if flags.contains(v1::LineInfoFlags::OPEN_SOURCE) {
            return Ok(Drive::OpenSource);
        }
        if flags.contains(v1::LineInfoFlags::OUTPUT) {
            return Ok(Drive::PushPull);
        }
        Err(())
    }
}
#[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
impl TryFrom<v2::LineFlags> for Drive {
    type Error = ();

    fn try_from(flags: v2::LineFlags) -> Result<Self, Self::Error> {
        if flags.contains(v2::LineFlags::OPEN_DRAIN) {
            return Ok(Drive::OpenDrain);
        }
        if flags.contains(v2::LineFlags::OPEN_SOURCE) {
            return Ok(Drive::OpenSource);
        }
        if flags.contains(v2::LineFlags::OUTPUT) {
            return Ok(Drive::PushPull);
        }
        Err(())
    }
}

/// The edge detection options for an input line.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum EdgeDetection {
    /// Edge detection is only enabled on rising edges.
    ///
    /// A rising edge means a transition from an inactive state to an active state.
    RisingEdge,

    /// Edge detection is only enabled on falling edges.
    ///
    /// A falling edge means a transition from an active state to an inactive state.
    FallingEdge,

    /// Edge detection is enabled on both rising and falling edges.
    BothEdges,
}
#[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
impl TryFrom<v2::LineFlags> for EdgeDetection {
    type Error = ();

    fn try_from(flags: v2::LineFlags) -> Result<Self, Self::Error> {
        if flags.contains(v2::LineFlags::EDGE_RISING | v2::LineFlags::EDGE_FALLING) {
            return Ok(EdgeDetection::BothEdges);
        }
        if flags.contains(v2::LineFlags::EDGE_RISING) {
            return Ok(EdgeDetection::RisingEdge);
        }
        if flags.contains(v2::LineFlags::EDGE_FALLING) {
            return Ok(EdgeDetection::FallingEdge);
        }
        Err(())
    }
}

/// The available clock sources for [`EdgeEvent`] timestamps.
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum EventClock {
    /// The **CLOCK_MONOTONIC** is used as the source for edge event timestamps.
    ///
    /// This is the default for ABI v2.
    #[default]
    Monotonic,

    /// The **CLOCK_REALTIME** is used as the source for edge event timestamps.
    Realtime,

    /// The hardware timestamp engine provides event timestamps.
    ///
    /// This source requires a Linux kernel 5.19 or later with CONFIG_HTE
    /// enabled and suitable supporting hardware.
    Hte,
}

#[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
impl From<v2::LineFlags> for EventClock {
    fn from(flags: v2::LineFlags) -> Self {
        if flags.contains(v2::LineFlags::EVENT_CLOCK_REALTIME) {
            return EventClock::Realtime;
        }
        if flags.contains(v2::LineFlags::EVENT_CLOCK_HTE) {
            return EventClock::Hte;
        }
        EventClock::Monotonic
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    mod direction {
        use super::*;

        #[test]
        fn default() {
            assert_eq!(Direction::default(), Direction::Input);
        }

        #[test]
        #[cfg(feature = "uapi_v1")]
        fn from_v1_line_info_flags() {
            assert_eq!(
                Direction::from(v1::LineInfoFlags::OUTPUT),
                Direction::Output
            );
            assert_eq!(
                Direction::from(v1::LineInfoFlags::ACTIVE_LOW),
                Direction::Input
            );
        }

        #[test]
        #[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
        fn from_v2_line_flags() {
            assert_eq!(Direction::from(v2::LineFlags::OUTPUT), Direction::Output);
            assert_eq!(Direction::from(v2::LineFlags::INPUT), Direction::Input);
        }
    }

    mod bias {
        use super::*;

        #[test]
        #[cfg(feature = "uapi_v1")]
        fn try_from_v1_line_info_flags() {
            assert_eq!(Bias::try_from(v1::LineInfoFlags::ACTIVE_LOW), Err(()));
            assert_eq!(
                Bias::try_from(v1::LineInfoFlags::BIAS_PULL_DOWN),
                Ok(Bias::PullDown)
            );
            assert_eq!(
                Bias::try_from(v1::LineInfoFlags::BIAS_PULL_UP),
                Ok(Bias::PullUp)
            );
            assert_eq!(
                Bias::try_from(v1::LineInfoFlags::BIAS_DISABLED),
                Ok(Bias::Disabled)
            );
        }

        #[test]
        #[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
        fn from_v2_line_flags() {
            assert_eq!(Bias::try_from(v2::LineFlags::INPUT), Err(()));
            assert_eq!(
                Bias::try_from(v2::LineFlags::BIAS_PULL_DOWN),
                Ok(Bias::PullDown)
            );
            assert_eq!(
                Bias::try_from(v2::LineFlags::BIAS_PULL_UP),
                Ok(Bias::PullUp)
            );
            assert_eq!(
                Bias::try_from(v2::LineFlags::BIAS_DISABLED),
                Ok(Bias::Disabled)
            );
        }
    }

    mod drive {
        use super::*;

        #[test]
        fn default() {
            assert_eq!(Drive::default(), Drive::PushPull);
        }

        #[test]
        #[cfg(feature = "uapi_v1")]
        fn try_from_v1_line_info_flags() {
            assert_eq!(Drive::try_from(v1::LineInfoFlags::ACTIVE_LOW), Err(()));
            assert_eq!(
                Drive::try_from(v1::LineInfoFlags::OUTPUT),
                Ok(Drive::PushPull)
            );
            assert_eq!(
                Drive::try_from(v1::LineInfoFlags::OUTPUT | v1::LineInfoFlags::OPEN_DRAIN),
                Ok(Drive::OpenDrain)
            );
            assert_eq!(
                Drive::try_from(v1::LineInfoFlags::OUTPUT | v1::LineInfoFlags::OPEN_SOURCE),
                Ok(Drive::OpenSource)
            );
        }

        #[test]
        #[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
        fn try_from_v2_line_flags() {
            assert_eq!(Drive::try_from(v2::LineFlags::INPUT), Err(()));
            assert_eq!(Drive::try_from(v2::LineFlags::OUTPUT), Ok(Drive::PushPull));
            assert_eq!(
                Drive::try_from(v2::LineFlags::OUTPUT | v2::LineFlags::OPEN_DRAIN),
                Ok(Drive::OpenDrain)
            );
            assert_eq!(
                Drive::try_from(v2::LineFlags::OUTPUT | v2::LineFlags::OPEN_SOURCE),
                Ok(Drive::OpenSource)
            );
        }
    }

    #[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
    mod edge_detection {
        use super::{v2, EdgeDetection};

        #[test]
        fn try_from_v2_line_flags() {
            assert_eq!(EdgeDetection::try_from(v2::LineFlags::INPUT), Err(()));
            assert_eq!(
                EdgeDetection::try_from(v2::LineFlags::EDGE_RISING),
                Ok(EdgeDetection::RisingEdge)
            );
            assert_eq!(
                EdgeDetection::try_from(v2::LineFlags::EDGE_FALLING),
                Ok(EdgeDetection::FallingEdge)
            );
            assert_eq!(
                EdgeDetection::try_from(v2::LineFlags::EDGE_RISING | v2::LineFlags::EDGE_FALLING),
                Ok(EdgeDetection::BothEdges)
            );
        }
    }

    #[cfg(any(feature = "uapi_v2", not(feature = "uapi_v1")))]
    mod event_clock {
        use super::{v2, EventClock};

        #[test]
        fn default() {
            assert_eq!(EventClock::default(), EventClock::Monotonic);
        }

        #[test]
        fn from_v2_line_flags() {
            assert_eq!(
                EventClock::from(v2::LineFlags::INPUT),
                EventClock::Monotonic
            );
            assert_eq!(
                EventClock::from(v2::LineFlags::EVENT_CLOCK_REALTIME),
                EventClock::Realtime
            );
        }
    }

    mod offset_hasher {
        use super::OffsetHasher;
        use std::hash::Hasher;

        #[test]
        fn write_u32() {
            let mut h = OffsetHasher::default();
            h.write_u32(2042);
            assert_eq!(2042, h.finish());
        }

        #[test]
        #[should_panic]
        fn write() {
            let mut h = OffsetHasher::default();
            h.write(&[42]);
        }

        #[test]
        #[should_panic]
        fn write_u64() {
            let mut h = OffsetHasher::default();
            h.write_u64(2042);
        }

        #[test]
        #[should_panic]
        fn write_u8() {
            let mut h = OffsetHasher::default();
            h.write_u8(42);
        }
    }
}