Move Spi::new and Spi::compute_baud_rate to mod
This commit is contained in:
@ -1,11 +1,15 @@
|
||||
#![macro_use]
|
||||
|
||||
use crate::dma;
|
||||
use crate::gpio::sealed::{AFType, Pin};
|
||||
use crate::gpio::{AnyPin, NoPin, OptionalPin};
|
||||
use crate::pac::spi::vals;
|
||||
use crate::peripherals;
|
||||
use crate::rcc::RccPeripheral;
|
||||
use crate::time::Hertz;
|
||||
use core::marker::PhantomData;
|
||||
use embassy::util::Unborrow;
|
||||
use embassy_hal_common::unborrow;
|
||||
|
||||
#[cfg_attr(spi_v1, path = "v1.rs")]
|
||||
#[cfg_attr(spi_f1, path = "v1.rs")]
|
||||
@ -102,6 +106,190 @@ pub struct Spi<'d, T: Instance, Tx, Rx> {
|
||||
phantom: PhantomData<&'d mut T>,
|
||||
}
|
||||
|
||||
impl<'d, T: Instance, Tx, Rx> Spi<'d, T, Tx, Rx> {
|
||||
pub fn new<F>(
|
||||
_peri: impl Unborrow<Target = T> + 'd,
|
||||
sck: impl Unborrow<Target = impl SckPin<T>>,
|
||||
mosi: impl Unborrow<Target = impl MosiPin<T>>,
|
||||
miso: impl Unborrow<Target = impl MisoPin<T>>,
|
||||
txdma: impl Unborrow<Target = Tx>,
|
||||
rxdma: impl Unborrow<Target = Rx>,
|
||||
freq: F,
|
||||
config: Config,
|
||||
) -> Self
|
||||
where
|
||||
F: Into<Hertz>,
|
||||
{
|
||||
unborrow!(sck, mosi, miso, txdma, rxdma);
|
||||
|
||||
let sck_af = sck.af_num();
|
||||
let mosi_af = mosi.af_num();
|
||||
let miso_af = miso.af_num();
|
||||
let sck = sck.degrade_optional();
|
||||
let mosi = mosi.degrade_optional();
|
||||
let miso = miso.degrade_optional();
|
||||
|
||||
unsafe {
|
||||
sck.as_ref().map(|x| {
|
||||
x.set_as_af(sck_af, AFType::OutputPushPull);
|
||||
#[cfg(any(spi_v2, spi_v3))]
|
||||
x.set_speed(crate::gpio::Speed::VeryHigh);
|
||||
});
|
||||
mosi.as_ref().map(|x| {
|
||||
x.set_as_af(mosi_af, AFType::OutputPushPull);
|
||||
#[cfg(any(spi_v2, spi_v3))]
|
||||
x.set_speed(crate::gpio::Speed::VeryHigh);
|
||||
});
|
||||
miso.as_ref().map(|x| {
|
||||
x.set_as_af(miso_af, AFType::Input);
|
||||
#[cfg(any(spi_v2, spi_v3))]
|
||||
x.set_speed(crate::gpio::Speed::VeryHigh);
|
||||
});
|
||||
}
|
||||
|
||||
let pclk = T::frequency();
|
||||
let br = Self::compute_baud_rate(pclk, freq.into());
|
||||
|
||||
#[cfg(any(spi_v1, spi_f1))]
|
||||
unsafe {
|
||||
T::enable();
|
||||
T::reset();
|
||||
T::regs().cr2().modify(|w| {
|
||||
w.set_ssoe(false);
|
||||
});
|
||||
T::regs().cr1().modify(|w| {
|
||||
w.set_cpha(
|
||||
match config.mode.phase == Phase::CaptureOnSecondTransition {
|
||||
true => vals::Cpha::SECONDEDGE,
|
||||
false => vals::Cpha::FIRSTEDGE,
|
||||
},
|
||||
);
|
||||
w.set_cpol(match config.mode.polarity == Polarity::IdleHigh {
|
||||
true => vals::Cpol::IDLEHIGH,
|
||||
false => vals::Cpol::IDLELOW,
|
||||
});
|
||||
|
||||
w.set_mstr(vals::Mstr::MASTER);
|
||||
w.set_br(vals::Br(br));
|
||||
w.set_spe(true);
|
||||
w.set_lsbfirst(match config.byte_order {
|
||||
ByteOrder::LsbFirst => vals::Lsbfirst::LSBFIRST,
|
||||
ByteOrder::MsbFirst => vals::Lsbfirst::MSBFIRST,
|
||||
});
|
||||
w.set_ssi(true);
|
||||
w.set_ssm(true);
|
||||
w.set_crcen(false);
|
||||
w.set_bidimode(vals::Bidimode::UNIDIRECTIONAL);
|
||||
if mosi.is_none() {
|
||||
w.set_rxonly(vals::Rxonly::OUTPUTDISABLED);
|
||||
}
|
||||
w.set_dff(WordSize::EightBit.dff())
|
||||
});
|
||||
}
|
||||
#[cfg(spi_v2)]
|
||||
unsafe {
|
||||
T::enable();
|
||||
T::reset();
|
||||
T::regs().cr2().modify(|w| {
|
||||
w.set_ssoe(false);
|
||||
});
|
||||
T::regs().cr1().modify(|w| {
|
||||
w.set_cpha(
|
||||
match config.mode.phase == Phase::CaptureOnSecondTransition {
|
||||
true => vals::Cpha::SECONDEDGE,
|
||||
false => vals::Cpha::FIRSTEDGE,
|
||||
},
|
||||
);
|
||||
w.set_cpol(match config.mode.polarity == Polarity::IdleHigh {
|
||||
true => vals::Cpol::IDLEHIGH,
|
||||
false => vals::Cpol::IDLELOW,
|
||||
});
|
||||
|
||||
w.set_mstr(vals::Mstr::MASTER);
|
||||
w.set_br(vals::Br(br));
|
||||
w.set_lsbfirst(match config.byte_order {
|
||||
ByteOrder::LsbFirst => vals::Lsbfirst::LSBFIRST,
|
||||
ByteOrder::MsbFirst => vals::Lsbfirst::MSBFIRST,
|
||||
});
|
||||
w.set_ssi(true);
|
||||
w.set_ssm(true);
|
||||
w.set_crcen(false);
|
||||
w.set_bidimode(vals::Bidimode::UNIDIRECTIONAL);
|
||||
w.set_spe(true);
|
||||
});
|
||||
}
|
||||
#[cfg(spi_v3)]
|
||||
unsafe {
|
||||
T::enable();
|
||||
T::reset();
|
||||
T::regs().ifcr().write(|w| w.0 = 0xffff_ffff);
|
||||
T::regs().cfg2().modify(|w| {
|
||||
//w.set_ssoe(true);
|
||||
w.set_ssoe(false);
|
||||
w.set_cpha(
|
||||
match config.mode.phase == Phase::CaptureOnSecondTransition {
|
||||
true => vals::Cpha::SECONDEDGE,
|
||||
false => vals::Cpha::FIRSTEDGE,
|
||||
},
|
||||
);
|
||||
w.set_cpol(match config.mode.polarity == Polarity::IdleHigh {
|
||||
true => vals::Cpol::IDLEHIGH,
|
||||
false => vals::Cpol::IDLELOW,
|
||||
});
|
||||
w.set_lsbfrst(match config.byte_order {
|
||||
ByteOrder::LsbFirst => vals::Lsbfrst::LSBFIRST,
|
||||
ByteOrder::MsbFirst => vals::Lsbfrst::MSBFIRST,
|
||||
});
|
||||
w.set_ssm(true);
|
||||
w.set_master(vals::Master::MASTER);
|
||||
w.set_comm(vals::Comm::FULLDUPLEX);
|
||||
w.set_ssom(vals::Ssom::ASSERTED);
|
||||
w.set_midi(0);
|
||||
w.set_mssi(0);
|
||||
w.set_afcntr(vals::Afcntr::CONTROLLED);
|
||||
w.set_ssiop(vals::Ssiop::ACTIVEHIGH);
|
||||
});
|
||||
T::regs().cfg1().modify(|w| {
|
||||
w.set_crcen(false);
|
||||
w.set_mbr(vals::Mbr(br));
|
||||
w.set_dsize(WordSize::EightBit.dsize());
|
||||
});
|
||||
T::regs().cr2().modify(|w| {
|
||||
w.set_tsize(0);
|
||||
w.set_tser(0);
|
||||
});
|
||||
T::regs().cr1().modify(|w| {
|
||||
w.set_ssi(false);
|
||||
w.set_spe(true);
|
||||
});
|
||||
}
|
||||
|
||||
Self {
|
||||
sck,
|
||||
mosi,
|
||||
miso,
|
||||
txdma,
|
||||
rxdma,
|
||||
current_word_size: WordSize::EightBit,
|
||||
phantom: PhantomData,
|
||||
}
|
||||
}
|
||||
|
||||
fn compute_baud_rate(clocks: Hertz, freq: Hertz) -> u8 {
|
||||
match clocks.0 / freq.0 {
|
||||
0 => unreachable!(),
|
||||
1..=2 => 0b000,
|
||||
3..=5 => 0b001,
|
||||
6..=11 => 0b010,
|
||||
12..=23 => 0b011,
|
||||
24..=39 => 0b100,
|
||||
40..=95 => 0b101,
|
||||
96..=191 => 0b110,
|
||||
_ => 0b111,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) mod sealed {
|
||||
use super::*;
|
||||
|
||||
|
Reference in New Issue
Block a user