redox_hwio 0.1.6

Rust Hardware MMIO and PIO
Documentation
// SPDX-License-Identifier: MIT

use core::mem::MaybeUninit;
use core::ops::{BitAnd, BitOr, Not};
use core::ptr;

use super::io::Io;

#[repr(packed)]
pub struct Mmio<T> {
    value: T,
}

#[allow(clippy::new_without_default)]
impl<T> Mmio<T> {
    /// Create a new Mmio without initializing
    #[deprecated]
    #[allow(clippy::uninit_assumed_init)]
    pub fn new() -> Self {
        Mmio {
            value: unsafe { MaybeUninit::uninit().assume_init() }
        }
    }
}

impl<T> Io for Mmio<T> where T: Copy + PartialEq + BitAnd<Output = T> + BitOr<Output = T> + Not<Output = T> {
    type Value = T;

    fn read(&self) -> T {
        let raw = ptr::addr_of!(self.value);
        unsafe { raw.read_volatile() }
    }

    fn write(&mut self, value: T) {
        let raw = ptr::addr_of_mut!(self.value);
        unsafe { raw.write_volatile(value) };
    }
}