embassy/embassy-rp/src/spi.rs

358 lines
10 KiB
Rust
Raw Normal View History

2022-07-09 00:32:55 +02:00
use embassy_embedded_hal::SetConfig;
2022-07-03 23:54:01 +02:00
use embassy_hal_common::{unborrow, Unborrowed};
2022-06-12 22:15:44 +02:00
pub use embedded_hal_02::spi::{Phase, Polarity};
2021-06-25 06:23:46 +02:00
2021-06-25 18:17:59 +02:00
use crate::gpio::sealed::Pin as _;
2022-02-12 01:34:41 +01:00
use crate::gpio::{AnyPin, Pin as GpioPin};
2022-06-12 22:15:44 +02:00
use crate::{pac, peripherals, Unborrow};
2022-02-15 17:28:48 +01:00
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[non_exhaustive]
pub enum Error {
// No errors for now
}
2021-06-30 23:43:40 +02:00
2021-06-25 06:23:46 +02:00
#[non_exhaustive]
pub struct Config {
pub frequency: u32,
2022-02-15 17:28:48 +01:00
pub phase: Phase,
pub polarity: Polarity,
2021-06-25 06:23:46 +02:00
}
impl Default for Config {
fn default() -> Self {
Self {
frequency: 1_000_000,
2022-02-15 17:28:48 +01:00
phase: Phase::CaptureOnFirstTransition,
polarity: Polarity::IdleLow,
2021-06-25 06:23:46 +02:00
}
}
}
pub struct Spi<'d, T: Instance> {
2022-07-03 23:54:01 +02:00
inner: Unborrowed<'d, T>,
2021-06-25 06:23:46 +02:00
}
2021-07-12 02:45:59 +02:00
fn div_roundup(a: u32, b: u32) -> u32 {
(a + b - 1) / b
}
fn calc_prescs(freq: u32) -> (u8, u8) {
let clk_peri = crate::clocks::clk_peri_freq();
// final SPI frequency: spi_freq = clk_peri / presc / postdiv
// presc must be in 2..=254, and must be even
// postdiv must be in 1..=256
// divide extra by 2, so we get rid of the "presc must be even" requirement
let ratio = div_roundup(clk_peri, freq * 2);
if ratio > 127 * 256 {
panic!("Requested too low SPI frequency");
}
let presc = div_roundup(ratio, 256);
2022-06-12 22:15:44 +02:00
let postdiv = if presc == 1 { ratio } else { div_roundup(ratio, presc) };
2021-07-12 02:45:59 +02:00
((presc * 2) as u8, (postdiv - 1) as u8)
}
2021-06-25 06:23:46 +02:00
impl<'d, T: Instance> Spi<'d, T> {
pub fn new(
2022-02-10 16:06:42 +01:00
inner: impl Unborrow<Target = T> + 'd,
2022-07-03 23:54:01 +02:00
clk: impl Unborrow<Target = impl ClkPin<T> + 'd> + 'd,
mosi: impl Unborrow<Target = impl MosiPin<T> + 'd> + 'd,
miso: impl Unborrow<Target = impl MisoPin<T> + 'd> + 'd,
2021-06-25 06:23:46 +02:00
config: Config,
) -> Self {
2022-07-03 23:54:01 +02:00
unborrow_and_degrade!(clk, mosi, miso);
Self::new_inner(inner, Some(clk), Some(mosi), Some(miso), None, config)
2022-02-12 01:34:41 +01:00
}
pub fn new_txonly(
inner: impl Unborrow<Target = T> + 'd,
2022-07-03 23:54:01 +02:00
clk: impl Unborrow<Target = impl ClkPin<T> + 'd> + 'd,
mosi: impl Unborrow<Target = impl MosiPin<T> + 'd> + 'd,
2022-02-12 01:34:41 +01:00
config: Config,
) -> Self {
2022-07-03 23:54:01 +02:00
unborrow_and_degrade!(clk, mosi);
Self::new_inner(inner, Some(clk), Some(mosi), None, None, config)
2022-02-12 01:34:41 +01:00
}
pub fn new_rxonly(
inner: impl Unborrow<Target = T> + 'd,
2022-07-03 23:54:01 +02:00
clk: impl Unborrow<Target = impl ClkPin<T> + 'd> + 'd,
miso: impl Unborrow<Target = impl MisoPin<T> + 'd> + 'd,
2022-02-12 01:34:41 +01:00
config: Config,
) -> Self {
2022-07-03 23:54:01 +02:00
unborrow_and_degrade!(clk, miso);
Self::new_inner(inner, Some(clk), None, Some(miso), None, config)
2022-02-12 01:34:41 +01:00
}
fn new_inner(
inner: impl Unborrow<Target = T> + 'd,
2022-07-03 23:54:01 +02:00
clk: Option<Unborrowed<'d, AnyPin>>,
mosi: Option<Unborrowed<'d, AnyPin>>,
miso: Option<Unborrowed<'d, AnyPin>>,
cs: Option<Unborrowed<'d, AnyPin>>,
2022-02-12 01:34:41 +01:00
config: Config,
) -> Self {
unborrow!(inner);
2021-06-25 06:23:46 +02:00
unsafe {
let p = inner.regs();
2021-07-12 02:45:59 +02:00
let (presc, postdiv) = calc_prescs(config.frequency);
2021-06-25 06:23:46 +02:00
2021-07-12 02:45:59 +02:00
p.cpsr().write(|w| w.set_cpsdvsr(presc));
2021-06-25 06:23:46 +02:00
p.cr0().write(|w| {
w.set_dss(0b0111); // 8bit
2022-02-15 17:28:48 +01:00
w.set_spo(config.polarity == Polarity::IdleHigh);
w.set_sph(config.phase == Phase::CaptureOnSecondTransition);
2021-07-12 02:45:59 +02:00
w.set_scr(postdiv);
2021-06-25 06:23:46 +02:00
});
p.cr1().write(|w| {
w.set_sse(true); // enable
});
2022-02-12 01:34:41 +01:00
if let Some(pin) = &clk {
2021-06-25 18:17:59 +02:00
pin.io().ctrl().write(|w| w.set_funcsel(1));
}
2022-02-12 01:34:41 +01:00
if let Some(pin) = &mosi {
2021-06-25 18:17:59 +02:00
pin.io().ctrl().write(|w| w.set_funcsel(1));
}
2022-02-12 01:34:41 +01:00
if let Some(pin) = &miso {
2021-06-25 18:17:59 +02:00
pin.io().ctrl().write(|w| w.set_funcsel(1));
}
2022-02-12 01:34:41 +01:00
if let Some(pin) = &cs {
2021-06-25 18:17:59 +02:00
pin.io().ctrl().write(|w| w.set_funcsel(1));
}
2021-06-25 06:23:46 +02:00
}
2022-07-03 23:54:01 +02:00
Self { inner }
2021-06-25 06:23:46 +02:00
}
2022-02-15 17:28:48 +01:00
pub fn blocking_write(&mut self, data: &[u8]) -> Result<(), Error> {
2021-06-25 06:23:46 +02:00
unsafe {
let p = self.inner.regs();
for &b in data {
while !p.sr().read().tnf() {}
p.dr().write(|w| w.set_data(b as _));
while !p.sr().read().rne() {}
let _ = p.dr().read();
2021-06-25 06:23:46 +02:00
}
}
2022-02-15 17:28:48 +01:00
self.flush()?;
Ok(())
2021-06-25 06:23:46 +02:00
}
2022-02-15 17:28:48 +01:00
pub fn blocking_transfer_in_place(&mut self, data: &mut [u8]) -> Result<(), Error> {
2021-06-30 23:43:22 +02:00
unsafe {
let p = self.inner.regs();
for b in data {
while !p.sr().read().tnf() {}
p.dr().write(|w| w.set_data(*b as _));
while !p.sr().read().rne() {}
*b = p.dr().read().data() as u8;
}
}
2022-02-15 17:28:48 +01:00
self.flush()?;
Ok(())
}
pub fn blocking_read(&mut self, data: &mut [u8]) -> Result<(), Error> {
unsafe {
let p = self.inner.regs();
for b in data {
while !p.sr().read().tnf() {}
p.dr().write(|w| w.set_data(0));
while !p.sr().read().rne() {}
*b = p.dr().read().data() as u8;
}
}
self.flush()?;
Ok(())
}
pub fn blocking_transfer(&mut self, read: &mut [u8], write: &[u8]) -> Result<(), Error> {
unsafe {
let p = self.inner.regs();
let len = read.len().max(write.len());
for i in 0..len {
let wb = write.get(i).copied().unwrap_or(0);
while !p.sr().read().tnf() {}
p.dr().write(|w| w.set_data(wb as _));
while !p.sr().read().rne() {}
let rb = p.dr().read().data() as u8;
if let Some(r) = read.get_mut(i) {
*r = rb;
}
}
}
self.flush()?;
Ok(())
2021-06-30 23:43:22 +02:00
}
2022-02-15 17:28:48 +01:00
pub fn flush(&mut self) -> Result<(), Error> {
2021-06-25 06:23:46 +02:00
unsafe {
let p = self.inner.regs();
while p.sr().read().bsy() {}
}
2022-02-15 17:28:48 +01:00
Ok(())
2021-06-25 06:23:46 +02:00
}
2021-07-12 02:45:59 +02:00
pub fn set_frequency(&mut self, freq: u32) {
let (presc, postdiv) = calc_prescs(freq);
let p = self.inner.regs();
unsafe {
// disable
p.cr1().write(|w| w.set_sse(false));
// change stuff
2021-07-12 02:45:59 +02:00
p.cpsr().write(|w| w.set_cpsdvsr(presc));
p.cr0().modify(|w| {
w.set_scr(postdiv);
});
// enable
p.cr1().write(|w| w.set_sse(true));
2021-07-12 02:45:59 +02:00
}
}
2021-06-25 06:23:46 +02:00
}
mod sealed {
use super::*;
pub trait Instance {
fn regs(&self) -> pac::spi::Spi;
}
}
pub trait Instance: sealed::Instance {}
macro_rules! impl_instance {
($type:ident, $irq:ident) => {
impl sealed::Instance for peripherals::$type {
fn regs(&self) -> pac::spi::Spi {
pac::$type
}
}
impl Instance for peripherals::$type {}
};
}
impl_instance!(SPI0, Spi0);
impl_instance!(SPI1, Spi1);
2022-02-12 01:34:41 +01:00
pub trait ClkPin<T: Instance>: GpioPin {}
pub trait CsPin<T: Instance>: GpioPin {}
pub trait MosiPin<T: Instance>: GpioPin {}
pub trait MisoPin<T: Instance>: GpioPin {}
2021-06-25 06:23:46 +02:00
macro_rules! impl_pin {
($pin:ident, $instance:ident, $function:ident) => {
impl $function<peripherals::$instance> for peripherals::$pin {}
};
}
impl_pin!(PIN_0, SPI0, MisoPin);
impl_pin!(PIN_1, SPI0, CsPin);
impl_pin!(PIN_2, SPI0, ClkPin);
impl_pin!(PIN_3, SPI0, MosiPin);
impl_pin!(PIN_4, SPI0, MisoPin);
impl_pin!(PIN_5, SPI0, CsPin);
impl_pin!(PIN_6, SPI0, ClkPin);
impl_pin!(PIN_7, SPI0, MosiPin);
impl_pin!(PIN_8, SPI1, MisoPin);
impl_pin!(PIN_9, SPI1, CsPin);
impl_pin!(PIN_10, SPI1, ClkPin);
impl_pin!(PIN_11, SPI1, MosiPin);
impl_pin!(PIN_12, SPI1, MisoPin);
impl_pin!(PIN_13, SPI1, CsPin);
impl_pin!(PIN_14, SPI1, ClkPin);
impl_pin!(PIN_15, SPI1, MosiPin);
impl_pin!(PIN_16, SPI0, MisoPin);
impl_pin!(PIN_17, SPI0, CsPin);
impl_pin!(PIN_18, SPI0, ClkPin);
impl_pin!(PIN_19, SPI0, MosiPin);
2022-02-15 17:28:48 +01:00
// ====================
mod eh02 {
use super::*;
impl<'d, T: Instance> embedded_hal_02::blocking::spi::Transfer<u8> for Spi<'d, T> {
type Error = Error;
fn transfer<'w>(&mut self, words: &'w mut [u8]) -> Result<&'w [u8], Self::Error> {
self.blocking_transfer_in_place(words)?;
Ok(words)
}
}
impl<'d, T: Instance> embedded_hal_02::blocking::spi::Write<u8> for Spi<'d, T> {
type Error = Error;
fn write(&mut self, words: &[u8]) -> Result<(), Self::Error> {
self.blocking_write(words)
}
}
}
#[cfg(feature = "unstable-traits")]
mod eh1 {
use super::*;
impl embedded_hal_1::spi::Error for Error {
fn kind(&self) -> embedded_hal_1::spi::ErrorKind {
match *self {}
}
}
impl<'d, T: Instance> embedded_hal_1::spi::ErrorType for Spi<'d, T> {
type Error = Error;
}
impl<'d, T: Instance> embedded_hal_1::spi::blocking::SpiBusFlush for Spi<'d, T> {
fn flush(&mut self) -> Result<(), Self::Error> {
Ok(())
2022-02-15 17:28:48 +01:00
}
}
2022-02-15 17:28:48 +01:00
impl<'d, T: Instance> embedded_hal_1::spi::blocking::SpiBusRead<u8> for Spi<'d, T> {
fn read(&mut self, words: &mut [u8]) -> Result<(), Self::Error> {
self.blocking_transfer(words, &[])
2022-02-15 17:28:48 +01:00
}
}
impl<'d, T: Instance> embedded_hal_1::spi::blocking::SpiBusWrite<u8> for Spi<'d, T> {
2022-02-15 17:28:48 +01:00
fn write(&mut self, words: &[u8]) -> Result<(), Self::Error> {
self.blocking_write(words)
}
}
impl<'d, T: Instance> embedded_hal_1::spi::blocking::SpiBus<u8> for Spi<'d, T> {
2022-02-15 17:28:48 +01:00
fn transfer(&mut self, read: &mut [u8], write: &[u8]) -> Result<(), Self::Error> {
self.blocking_transfer(read, write)
}
fn transfer_in_place(&mut self, words: &mut [u8]) -> Result<(), Self::Error> {
self.blocking_transfer_in_place(words)
}
}
}
2022-07-09 00:32:55 +02:00
impl<'d, T: Instance> SetConfig for Spi<'d, T> {
type Config = Config;
fn set_config(&mut self, config: &Self::Config) {
let p = self.inner.regs();
let (presc, postdiv) = calc_prescs(config.frequency);
unsafe {
p.cpsr().write(|w| w.set_cpsdvsr(presc));
p.cr0().write(|w| {
w.set_dss(0b0111); // 8bit
w.set_spo(config.polarity == Polarity::IdleHigh);
w.set_sph(config.phase == Phase::CaptureOnSecondTransition);
w.set_scr(postdiv);
});
}
}
}