feat: ✨ Improve GPIO implementation
* Add locking * Implement Pin control via locked GPIO
This commit is contained in:
parent
134d7c530f
commit
cfa9b61429
|
@ -7,10 +7,12 @@
|
||||||
|
|
||||||
use {
|
use {
|
||||||
crate::{
|
crate::{
|
||||||
|
memory::{Address, Virtual},
|
||||||
platform::{
|
platform::{
|
||||||
device_driver::{common::MMIODerefWrapper, IRQNumber},
|
device_driver::{common::MMIODerefWrapper, IRQNumber},
|
||||||
BcmHost,
|
BcmHost,
|
||||||
},
|
},
|
||||||
|
synchronization::{interface::Mutex, IRQSafeNullLock},
|
||||||
time,
|
time,
|
||||||
},
|
},
|
||||||
core::{marker::PhantomData, time::Duration},
|
core::{marker::PhantomData, time::Duration},
|
||||||
|
@ -94,37 +96,22 @@ register_structs! {
|
||||||
// Hide RegisterBlock from public api.
|
// Hide RegisterBlock from public api.
|
||||||
type Registers = MMIODerefWrapper<RegisterBlock>;
|
type Registers = MMIODerefWrapper<RegisterBlock>;
|
||||||
|
|
||||||
/// Public interface to the GPIO MMIO area
|
struct GPIOInner {
|
||||||
pub struct GPIO {
|
|
||||||
registers: Registers,
|
registers: Registers,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const GPIO_BASE: usize = BcmHost::get_peripheral_address() + 0x20_0000;
|
/// Public interface to the GPIO MMIO area
|
||||||
|
pub struct GPIO {
|
||||||
impl crate::drivers::interface::DeviceDriver for GPIO {
|
inner: IRQSafeNullLock<GPIOInner>,
|
||||||
type IRQNumberType = IRQNumber;
|
|
||||||
|
|
||||||
fn compatible(&self) -> &'static str {
|
|
||||||
Self::COMPATIBLE
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GPIO {
|
impl GPIOInner {
|
||||||
pub const COMPATIBLE: &'static str = "BCM GPIO";
|
pub const unsafe fn new(mmio_base_addr: Address<Virtual>) -> Self {
|
||||||
|
Self {
|
||||||
/// # Safety
|
registers: Registers::new(mmio_base_addr),
|
||||||
///
|
|
||||||
/// Unsafe, duh!
|
|
||||||
pub const unsafe fn new(base_addr: usize) -> GPIO {
|
|
||||||
GPIO {
|
|
||||||
registers: Registers::new(base_addr),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_pin(&self, pin: usize) -> Pin<Uninitialized> {
|
|
||||||
unsafe { Pin::new(pin, self.registers.base_addr) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "rpi3")]
|
#[cfg(feature = "rpi3")]
|
||||||
pub fn power_off(&self) {
|
pub fn power_off(&self) {
|
||||||
// power off gpio pins (but not VCC pins)
|
// power off gpio pins (but not VCC pins)
|
||||||
|
@ -153,6 +140,95 @@ impl GPIO {
|
||||||
pub fn power_off(&self) {
|
pub fn power_off(&self) {
|
||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "rpi3")]
|
||||||
|
pub fn set_pull_up_down(&self, pin: usize, pull: PullUpDown) {
|
||||||
|
let bank = pin / 32;
|
||||||
|
let off = pin % 32;
|
||||||
|
|
||||||
|
self.registers.PullUpDown.set(0);
|
||||||
|
|
||||||
|
// The Linux 2837 GPIO driver waits 1 µs between the steps.
|
||||||
|
const DELAY: Duration = Duration::from_micros(1);
|
||||||
|
|
||||||
|
time::time_manager().spin_for(DELAY);
|
||||||
|
|
||||||
|
self.registers.PullUpDownEnableClock[bank].modify(FieldValue::<u32, ()>::new(
|
||||||
|
0b1,
|
||||||
|
off,
|
||||||
|
(pull == PullUpDown::Up).into(),
|
||||||
|
));
|
||||||
|
|
||||||
|
time::time_manager().spin_for(DELAY);
|
||||||
|
|
||||||
|
self.registers.PullUpDown.set(0);
|
||||||
|
self.registers.PullUpDownEnableClock[bank].set(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "rpi4")]
|
||||||
|
pub fn set_pull_up_down(&self, pin: usize, pull: PullUpDown) {
|
||||||
|
let bank = pin / 16;
|
||||||
|
let off = pin % 16;
|
||||||
|
|
||||||
|
self.registers.PullUpDownControl[bank].modify(FieldValue::<u32, ()>::new(
|
||||||
|
0b11,
|
||||||
|
off * 2,
|
||||||
|
pull.into(),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn to_alt(&self, pin: usize, function: Function) {
|
||||||
|
let bank = pin / 10;
|
||||||
|
let off = pin % 10;
|
||||||
|
|
||||||
|
self.registers.FunctionSelect[bank].modify(FieldValue::<u32, ()>::new(
|
||||||
|
0b111,
|
||||||
|
off * 3,
|
||||||
|
function.into(),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_pin(&mut self, pin: usize) {
|
||||||
|
// Guarantees: pin number is between [0; 53] by construction.
|
||||||
|
let bank = pin / 32;
|
||||||
|
let shift = pin % 32;
|
||||||
|
self.registers.SetPin[bank].set(1 << shift);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn clear_pin(&mut self, pin: usize) {
|
||||||
|
// Guarantees: pin number is between [0; 53] by construction.
|
||||||
|
let bank = pin / 32;
|
||||||
|
let shift = pin % 32;
|
||||||
|
self.registers.ClearPin[bank].set(1 << shift);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_level(&self, pin: usize) -> Level {
|
||||||
|
// Guarantees: pin number is between [0; 53] by construction.
|
||||||
|
let bank = pin / 32;
|
||||||
|
let off = pin % 32;
|
||||||
|
self.registers.PinLevel[bank].matches_all(FieldValue::<u32, ()>::new(1, off, 1))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GPIO {
|
||||||
|
pub const COMPATIBLE: &'static str = "BCM GPIO";
|
||||||
|
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// Unsafe, duh!
|
||||||
|
pub const unsafe fn new(mmio_base_addr: Address<Virtual>) -> Self {
|
||||||
|
Self {
|
||||||
|
inner: IRQSafeNullLock::new(GPIOInner::new(mmio_base_addr)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_pin(&self, pin: usize) -> Pin<Uninitialized> {
|
||||||
|
unsafe { Pin::new(pin, &self.inner) } // todo: expose only inner to avoid unlocked access
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn power_off(&self) {
|
||||||
|
self.inner.lock(|inner| inner.power_off());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// An alternative GPIO function.
|
/// An alternative GPIO function.
|
||||||
|
@ -196,74 +272,47 @@ impl ::core::convert::From<PullUpDown> for u32 {
|
||||||
/// structure starts in the `Uninitialized` state and must be transitioned into
|
/// structure starts in the `Uninitialized` state and must be transitioned into
|
||||||
/// one of `Input`, `Output`, or `Alt` via the `into_input`, `into_output`, and
|
/// one of `Input`, `Output`, or `Alt` via the `into_input`, `into_output`, and
|
||||||
/// `into_alt` methods before it can be used.
|
/// `into_alt` methods before it can be used.
|
||||||
pub struct Pin<State> {
|
pub struct Pin<'outer, State> {
|
||||||
pin: usize,
|
pin: usize,
|
||||||
registers: Registers,
|
inner: &'outer IRQSafeNullLock<GPIOInner>,
|
||||||
_state: PhantomData<State>,
|
_state: PhantomData<State>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<State> Pin<State> {
|
impl<'outer, State> Pin<'outer, State> {
|
||||||
/// Transitions `self` to state `NewState`, consuming `self` and returning a new
|
/// Transitions `self` to state `NewState`, consuming `self` and returning a new
|
||||||
/// `Pin` instance in state `NewState`. This method should _never_ be exposed to
|
/// `Pin` instance in state `NewState`. This method should _never_ be exposed to
|
||||||
/// the public!
|
/// the public!
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
fn transition<NewState>(self) -> Pin<NewState> {
|
fn transition<NewState>(self) -> Pin<'outer, NewState> {
|
||||||
Pin {
|
Pin {
|
||||||
pin: self.pin,
|
pin: self.pin,
|
||||||
registers: self.registers,
|
inner: self.inner,
|
||||||
_state: PhantomData,
|
_state: PhantomData,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "rpi3")]
|
|
||||||
pub fn set_pull_up_down(&self, pull: PullUpDown) {
|
pub fn set_pull_up_down(&self, pull: PullUpDown) {
|
||||||
let bank = self.pin / 32;
|
self.inner
|
||||||
let off = self.pin % 32;
|
.lock(|inner| inner.set_pull_up_down(self.pin, pull))
|
||||||
|
|
||||||
self.registers.PullUpDown.set(0);
|
|
||||||
|
|
||||||
// The Linux 2837 GPIO driver waits 1 µs between the steps.
|
|
||||||
const DELAY: Duration = Duration::from_micros(1);
|
|
||||||
|
|
||||||
time::time_manager().spin_for(DELAY);
|
|
||||||
|
|
||||||
self.registers.PullUpDownEnableClock[bank].modify(FieldValue::<u32, ()>::new(
|
|
||||||
0b1,
|
|
||||||
off,
|
|
||||||
(pull == PullUpDown::Up).into(),
|
|
||||||
));
|
|
||||||
|
|
||||||
time::time_manager().spin_for(DELAY);
|
|
||||||
|
|
||||||
self.registers.PullUpDown.set(0);
|
|
||||||
self.registers.PullUpDownEnableClock[bank].set(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "rpi4")]
|
|
||||||
pub fn set_pull_up_down(&self, pull: PullUpDown) {
|
|
||||||
let bank = self.pin / 16;
|
|
||||||
let off = self.pin % 16;
|
|
||||||
self.registers.PullUpDownControl[bank].modify(FieldValue::<u32, ()>::new(
|
|
||||||
0b11,
|
|
||||||
off * 2,
|
|
||||||
pull.into(),
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Pin<Uninitialized> {
|
impl<'outer> Pin<'outer, Uninitialized> {
|
||||||
/// Returns a new GPIO `Pin` structure for pin number `pin`.
|
/// Returns a new GPIO `Pin` structure for pin number `pin`.
|
||||||
///
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
///
|
///
|
||||||
/// Panics if `pin` > `53`.
|
/// Panics if `pin` > `53`.
|
||||||
unsafe fn new(pin: usize, base_addr: usize) -> Pin<Uninitialized> {
|
unsafe fn new(
|
||||||
|
pin: usize,
|
||||||
|
inner: &'outer IRQSafeNullLock<GPIOInner>,
|
||||||
|
) -> Pin<'outer, Uninitialized> {
|
||||||
if pin > 53 {
|
if pin > 53 {
|
||||||
panic!("gpio::Pin::new(): pin {} exceeds maximum of 53", pin);
|
panic!("gpio::Pin::new(): pin {pin} exceeds maximum of 53");
|
||||||
}
|
}
|
||||||
|
|
||||||
Pin {
|
Pin {
|
||||||
registers: Registers::new(base_addr),
|
inner,
|
||||||
pin,
|
pin,
|
||||||
_state: PhantomData,
|
_state: PhantomData,
|
||||||
}
|
}
|
||||||
|
@ -271,61 +320,62 @@ impl Pin<Uninitialized> {
|
||||||
|
|
||||||
/// Enables the alternative function `function` for `self`. Consumes self
|
/// Enables the alternative function `function` for `self`. Consumes self
|
||||||
/// and returns a `Pin` structure in the `Alt` state.
|
/// and returns a `Pin` structure in the `Alt` state.
|
||||||
pub fn into_alt(self, function: Function) -> Pin<Alt> {
|
pub fn into_alt(self, function: Function) -> Pin<'outer, Alt> {
|
||||||
let bank = self.pin / 10;
|
self.inner.lock(|inner| inner.to_alt(self.pin, function));
|
||||||
let off = self.pin % 10;
|
|
||||||
self.registers.FunctionSelect[bank].modify(FieldValue::<u32, ()>::new(
|
|
||||||
0b111,
|
|
||||||
off * 3,
|
|
||||||
function.into(),
|
|
||||||
));
|
|
||||||
self.transition()
|
self.transition()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets this pin to be an _output_ pin. Consumes self and returns a `Pin`
|
/// Sets this pin to be an _output_ pin. Consumes self and returns a `Pin`
|
||||||
/// structure in the `Output` state.
|
/// structure in the `Output` state.
|
||||||
pub fn into_output(self) -> Pin<Output> {
|
pub fn into_output(self) -> Pin<'outer, Output> {
|
||||||
self.into_alt(Function::Output).transition()
|
self.into_alt(Function::Output).transition()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets this pin to be an _input_ pin. Consumes self and returns a `Pin`
|
/// Sets this pin to be an _input_ pin. Consumes self and returns a `Pin`
|
||||||
/// structure in the `Input` state.
|
/// structure in the `Input` state.
|
||||||
pub fn into_input(self) -> Pin<Input> {
|
pub fn into_input(self) -> Pin<'outer, Input> {
|
||||||
self.into_alt(Function::Input).transition()
|
self.into_alt(Function::Input).transition()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Pin<Output> {
|
impl<'outer> Pin<'outer, Output> {
|
||||||
/// Sets (turns on) this pin.
|
/// Sets (turns on) this pin.
|
||||||
pub fn set(&mut self) {
|
pub fn set(&mut self) {
|
||||||
// Guarantees: pin number is between [0; 53] by construction.
|
self.inner.lock(|inner| inner.set_pin(self.pin));
|
||||||
let bank = self.pin / 32;
|
|
||||||
let shift = self.pin % 32;
|
|
||||||
self.registers.SetPin[bank].set(1 << shift);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Clears (turns off) this pin.
|
/// Clears (turns off) this pin.
|
||||||
pub fn clear(&mut self) {
|
pub fn clear(&mut self) {
|
||||||
// Guarantees: pin number is between [0; 53] by construction.
|
self.inner.lock(|inner| inner.clear_pin(self.pin));
|
||||||
let bank = self.pin / 32;
|
|
||||||
let shift = self.pin % 32;
|
|
||||||
self.registers.ClearPin[bank].set(1 << shift);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type Level = bool;
|
pub type Level = bool;
|
||||||
|
|
||||||
impl Pin<Input> {
|
impl<'outer> Pin<'outer, Input> {
|
||||||
/// Reads the pin's value. Returns `true` if the level is high and `false`
|
/// Reads the pin's value. Returns `true` if the level is high and `false`
|
||||||
/// if the level is low.
|
/// if the level is low.
|
||||||
pub fn level(&self) -> Level {
|
pub fn level(&self) -> Level {
|
||||||
// Guarantees: pin number is between [0; 53] by construction.
|
self.inner.lock(|inner| inner.get_level(self.pin))
|
||||||
let bank = self.pin / 32;
|
|
||||||
let off = self.pin % 32;
|
|
||||||
self.registers.PinLevel[bank].matches_all(FieldValue::<u32, ()>::new(1, off, 1))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
// OS Interface Code
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
impl crate::drivers::interface::DeviceDriver for GPIO {
|
||||||
|
type IRQNumberType = IRQNumber;
|
||||||
|
|
||||||
|
fn compatible(&self) -> &'static str {
|
||||||
|
Self::COMPATIBLE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
// Testing
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
@ -333,7 +383,8 @@ mod tests {
|
||||||
#[test_case]
|
#[test_case]
|
||||||
fn test_pin_transitions() {
|
fn test_pin_transitions() {
|
||||||
let mut reg = [0u32; 40];
|
let mut reg = [0u32; 40];
|
||||||
let gpio = unsafe { GPIO::new(&mut reg as *mut _ as usize) };
|
let mmio_base_addr = Address::<Virtual>::new(&mut reg as *mut _ as usize);
|
||||||
|
let gpio = unsafe { GPIO::new(mmio_base_addr) };
|
||||||
|
|
||||||
let _out = gpio.get_pin(1).into_output();
|
let _out = gpio.get_pin(1).into_output();
|
||||||
assert_eq!(reg[0], 0b001_000);
|
assert_eq!(reg[0], 0b001_000);
|
||||||
|
@ -346,7 +397,8 @@ mod tests {
|
||||||
#[test_case]
|
#[test_case]
|
||||||
fn test_pin_outputs() {
|
fn test_pin_outputs() {
|
||||||
let mut reg = [0u32; 40];
|
let mut reg = [0u32; 40];
|
||||||
let gpio = unsafe { GPIO::new(&mut reg as *mut _ as usize) };
|
let mmio_base_addr = Address::<Virtual>::new(&mut reg as *mut _ as usize);
|
||||||
|
let gpio = unsafe { GPIO::new(mmio_base_addr) };
|
||||||
|
|
||||||
let pin = gpio.get_pin(1);
|
let pin = gpio.get_pin(1);
|
||||||
let mut out = pin.into_output();
|
let mut out = pin.into_output();
|
||||||
|
@ -366,7 +418,8 @@ mod tests {
|
||||||
#[test_case]
|
#[test_case]
|
||||||
fn test_pin_inputs() {
|
fn test_pin_inputs() {
|
||||||
let mut reg = [0u32; 40];
|
let mut reg = [0u32; 40];
|
||||||
let gpio = unsafe { GPIO::new(&mut reg as *mut _ as usize) };
|
let mmio_base_addr = Address::<Virtual>::new(&mut reg as *mut _ as usize);
|
||||||
|
let gpio = unsafe { GPIO::new(mmio_base_addr) };
|
||||||
|
|
||||||
let pin = gpio.get_pin(1);
|
let pin = gpio.get_pin(1);
|
||||||
let inp = pin.into_input();
|
let inp = pin.into_input();
|
||||||
|
|
Loading…
Reference in New Issue