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
//! Memory-mapped registers.

pub use self::alias::*;
pub use self::pointer::*;
pub use self::value::*;

#[macro_use]
pub mod macros;
pub mod alias;
pub mod pointer;
pub mod value;

/// Primitive types representing properties of register types.
pub mod marker {
  /// Thread-unsafe marker.
  pub struct Single;

  /// Thread-safe marker.
  pub struct Atomic;

  /// A value type marker.
  pub struct Value;

  /// A bit-band alias type marker.
  pub struct Alias;
}

/// Types, that can write to distinct bits.
pub trait RawBits<R, T> {
  /// Sets or clears a bit by `offset`.
  ///
  /// # Panics
  ///
  /// If `offset` is greater or equals to `0x20`.
  fn write(&mut self, offset: u32, set: bool) -> &mut Self;

  /// Checks that a bit by `offset` is set.
  ///
  /// # Panics
  ///
  /// If `offset` is greater or equals to `0x20`.
  fn read(&self, offset: u32) -> bool;
}

/// Register delegate.
pub trait Delegate<R, A> {
  /// A corresponding register pointer type.
  type Pointer: RawPointer<R, A>;

  /// An address of the register in the memory.
  const ADDRESS: usize;

  /// Returns a new register pointer.
  fn ptr(&self) -> Self::Pointer {
    unsafe { Self::Pointer::new(Self::ADDRESS) }
  }
}