#![macro_use]
pub mod enums;
use core::marker::PhantomData;
use embassy_embedded_hal::{GetConfig, SetConfig};
use embassy_hal_internal::{Peri, PeripheralType};
pub use enums::*;
use crate::dma::{ChannelAndRequest, word};
use crate::gpio::{AfType, Flex, OutputType, Pull, Speed};
use crate::mode::{Async, Blocking, Mode as PeriMode};
use crate::pac::hspi::Hspi as Regs;
use crate::peripherals;
use crate::rcc::{self, RccPeripheral};
#[derive(Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct Config {
pub fifo_threshold: FIFOThresholdLevel,
pub memory_type: MemoryType, pub device_size: MemorySize,
pub chip_select_high_time: ChipSelectHighTime,
pub free_running_clock: bool,
pub clock_mode: bool,
pub wrap_size: WrapSize,
pub clock_prescaler: u8,
pub sample_shifting: bool,
pub delay_hold_quarter_cycle: bool,
pub chip_select_boundary: u8,
pub delay_block_bypass: bool,
pub max_transfer: u8,
pub refresh: u32,
}
impl Default for Config {
fn default() -> Self {
Self {
fifo_threshold: FIFOThresholdLevel::_16Bytes,
memory_type: MemoryType::Micron,
device_size: MemorySize::Other(0),
chip_select_high_time: ChipSelectHighTime::_5Cycle,
free_running_clock: false,
clock_mode: false,
wrap_size: WrapSize::None,
clock_prescaler: 0,
sample_shifting: false,
delay_hold_quarter_cycle: false,
chip_select_boundary: 0, delay_block_bypass: true,
max_transfer: 0,
refresh: 0,
}
}
}
#[derive(Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct TransferConfig {
pub iwidth: HspiWidth,
pub instruction: Option<u32>,
pub isize: AddressSize,
pub idtr: bool,
pub adwidth: HspiWidth,
pub address: Option<u32>,
pub adsize: AddressSize,
pub addtr: bool,
pub abwidth: HspiWidth,
pub alternate_bytes: Option<u32>,
pub absize: AddressSize,
pub abdtr: bool,
pub dwidth: HspiWidth,
pub ddtr: bool,
pub dummy: DummyCycles,
}
impl Default for TransferConfig {
fn default() -> Self {
Self {
iwidth: HspiWidth::NONE,
instruction: None,
isize: AddressSize::_8Bit,
idtr: false,
adwidth: HspiWidth::NONE,
address: None,
adsize: AddressSize::_8Bit,
addtr: false,
abwidth: HspiWidth::NONE,
alternate_bytes: None,
absize: AddressSize::_8Bit,
abdtr: false,
dwidth: HspiWidth::NONE,
ddtr: false,
dummy: DummyCycles::_0,
}
}
}
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum HspiError {
InvalidConfiguration,
InvalidCommand,
EmptyBuffer,
}
pub struct Hspi<'d, T: Instance, M: PeriMode> {
_peri: Peri<'d, T>,
_sck: Option<Flex<'d>>,
_d0: Option<Flex<'d>>,
_d1: Option<Flex<'d>>,
_d2: Option<Flex<'d>>,
_d3: Option<Flex<'d>>,
_d4: Option<Flex<'d>>,
_d5: Option<Flex<'d>>,
_d6: Option<Flex<'d>>,
_d7: Option<Flex<'d>>,
_d8: Option<Flex<'d>>,
_d9: Option<Flex<'d>>,
_d10: Option<Flex<'d>>,
_d11: Option<Flex<'d>>,
_d12: Option<Flex<'d>>,
_d13: Option<Flex<'d>>,
_d14: Option<Flex<'d>>,
_d15: Option<Flex<'d>>,
_nss: Option<Flex<'d>>,
_dqs0: Option<Flex<'d>>,
_dqs1: Option<Flex<'d>>,
dma: Option<ChannelAndRequest<'d>>,
_phantom: PhantomData<M>,
config: Config,
width: HspiWidth,
}
impl<'d, T: Instance, M: PeriMode> Hspi<'d, T, M> {
pub fn enable_memory_mapped_mode(
&mut self,
read_config: TransferConfig,
write_config: TransferConfig,
) -> Result<(), HspiError> {
self.configure_command(&read_config, None)?;
T::REGS.wccr().modify(|w| {
w.set_imode(write_config.iwidth.into());
w.set_idtr(write_config.idtr);
w.set_isize(write_config.isize.into());
w.set_admode(write_config.adwidth.into());
w.set_addtr(write_config.idtr);
w.set_adsize(write_config.adsize.into());
w.set_dmode(write_config.dwidth.into());
w.set_ddtr(write_config.ddtr);
w.set_abmode(write_config.abwidth.into());
w.set_dqse(true);
});
T::REGS.wtcr().modify(|w| w.set_dcyc(write_config.dummy.into()));
T::REGS.cr().modify(|r| {
r.set_fmode(FunctionalMode::MemoryMapped.into());
r.set_tcen(false);
});
Ok(())
}
pub fn disable_memory_mapped_mode(&mut self) {
T::REGS.cr().modify(|r| {
r.set_fmode(FunctionalMode::IndirectWrite.into());
r.set_abort(true);
r.set_dmaen(false);
r.set_en(false);
});
T::REGS.fcr().write(|w| w.set_ctcf(true));
T::REGS.cr().modify(|r| {
r.set_en(true);
});
}
fn new_inner(
peri: Peri<'d, T>,
d0: Option<Flex<'d>>,
d1: Option<Flex<'d>>,
d2: Option<Flex<'d>>,
d3: Option<Flex<'d>>,
d4: Option<Flex<'d>>,
d5: Option<Flex<'d>>,
d6: Option<Flex<'d>>,
d7: Option<Flex<'d>>,
d8: Option<Flex<'d>>,
d9: Option<Flex<'d>>,
d10: Option<Flex<'d>>,
d11: Option<Flex<'d>>,
d12: Option<Flex<'d>>,
d13: Option<Flex<'d>>,
d14: Option<Flex<'d>>,
d15: Option<Flex<'d>>,
sck: Option<Flex<'d>>,
nss: Option<Flex<'d>>,
dqs0: Option<Flex<'d>>,
dqs1: Option<Flex<'d>>,
dma: Option<ChannelAndRequest<'d>>,
config: Config,
width: HspiWidth,
dual_memory_mode: bool,
) -> Self {
rcc::enable_and_reset::<T>();
let _ = T::frequency();
while T::REGS.sr().read().busy() {}
Self::configure_registers(&config, Some(dual_memory_mode));
Self {
_peri: peri,
_sck: sck,
_d0: d0,
_d1: d1,
_d2: d2,
_d3: d3,
_d4: d4,
_d5: d5,
_d6: d6,
_d7: d7,
_d8: d8,
_d9: d9,
_d10: d10,
_d11: d11,
_d12: d12,
_d13: d13,
_d14: d14,
_d15: d15,
_nss: nss,
_dqs0: dqs0,
_dqs1: dqs1,
dma,
_phantom: PhantomData,
config,
width,
}
}
fn configure_registers(config: &Config, dual_memory_mode: Option<bool>) {
T::REGS.dcr1().modify(|w| {
w.set_mtyp(config.memory_type.into());
w.set_devsize(config.device_size.into());
w.set_csht(config.chip_select_high_time.into());
w.set_frck(false);
w.set_ckmode(config.clock_mode);
w.set_dlybyp(config.delay_block_bypass);
});
T::REGS.dcr2().modify(|w| {
w.set_wrapsize(config.wrap_size.into());
});
T::REGS.dcr3().modify(|w| {
w.set_csbound(config.chip_select_boundary);
w.set_maxtran(config.max_transfer);
});
T::REGS.dcr4().modify(|w| {
w.set_refresh(config.refresh);
});
T::REGS.cr().modify(|w| {
w.set_fthres(config.fifo_threshold.into());
});
while T::REGS.sr().read().busy() {}
T::REGS.dcr2().modify(|w| {
w.set_prescaler(config.clock_prescaler);
});
while T::REGS.sr().read().busy() {}
if let Some(dual_memory_mode) = dual_memory_mode {
T::REGS.cr().modify(|w| {
w.set_dmm(dual_memory_mode);
});
}
T::REGS.tcr().modify(|w| {
w.set_sshift(config.sample_shifting);
w.set_dhqc(config.delay_hold_quarter_cycle);
});
T::REGS.cr().modify(|w| {
w.set_en(true);
});
if config.free_running_clock {
T::REGS.dcr1().modify(|w| {
w.set_frck(config.free_running_clock);
});
}
}
fn configure_command(&mut self, command: &TransferConfig, data_len: Option<usize>) -> Result<(), HspiError> {
if <enums::HspiWidth as Into<u8>>::into(command.iwidth) > <enums::HspiWidth as Into<u8>>::into(self.width)
|| <enums::HspiWidth as Into<u8>>::into(command.adwidth) > <enums::HspiWidth as Into<u8>>::into(self.width)
|| <enums::HspiWidth as Into<u8>>::into(command.abwidth) > <enums::HspiWidth as Into<u8>>::into(self.width)
|| <enums::HspiWidth as Into<u8>>::into(command.dwidth) > <enums::HspiWidth as Into<u8>>::into(self.width)
{
return Err(HspiError::InvalidCommand);
}
while T::REGS.sr().read().busy() {}
T::REGS.cr().modify(|w| {
w.set_fmode(FunctionalMode::IndirectWrite.into());
});
if let Some(ab) = command.alternate_bytes {
T::REGS.abr().write(|v| v.set_alternate(ab));
}
T::REGS.tcr().modify(|w| {
w.set_dcyc(command.dummy.into());
});
if let Some(data_length) = data_len {
T::REGS.dlr().write(|v| {
v.set_dl((data_length - 1) as u32);
});
} else {
T::REGS.dlr().write(|v| {
v.set_dl((0) as u32);
});
}
T::REGS.ccr().modify(|w| {
w.set_imode(command.iwidth.into());
w.set_idtr(command.idtr);
w.set_isize(command.isize.into());
w.set_admode(command.adwidth.into());
w.set_addtr(command.addtr);
w.set_adsize(command.adsize.into());
w.set_abmode(command.abwidth.into());
w.set_abdtr(command.abdtr);
w.set_absize(command.absize.into());
w.set_dmode(command.dwidth.into());
w.set_ddtr(command.ddtr);
});
T::REGS.ccr().modify(|w| {
w.set_dqse(command.ddtr && command.instruction.unwrap_or(0) != 0x12ED);
});
if let Some(instruction) = command.instruction {
if let Some(address) = command.address {
T::REGS.ir().write(|v| {
v.set_instruction(instruction);
});
T::REGS.ar().write(|v| {
v.set_address(address);
});
} else {
T::REGS.ir().write(|v| {
v.set_instruction(instruction);
});
}
} else {
if let Some(address) = command.address {
T::REGS.ar().write(|v| {
v.set_address(address);
});
} else {
return Err(HspiError::InvalidCommand);
}
}
Ok(())
}
pub fn blocking_command(&mut self, command: &TransferConfig) -> Result<(), HspiError> {
while T::REGS.sr().read().busy() {}
self.configure_command(command, None)?;
while !T::REGS.sr().read().tcf() {}
T::REGS.fcr().write(|w| {
w.set_ctcf(true);
});
Ok(())
}
pub fn blocking_read<W: Word>(&mut self, buf: &mut [W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
T::REGS.cr().modify(|w| {
w.set_dmaen(false);
});
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
let current_address = T::REGS.ar().read().address();
let current_instruction = T::REGS.ir().read().instruction();
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectRead.into()));
if T::REGS.ccr().read().admode() == HspiWidth::NONE.into() {
T::REGS.ir().write(|v| v.set_instruction(current_instruction));
} else {
T::REGS.ar().write(|v| v.set_address(current_address));
}
for idx in 0..buf.len() {
while !T::REGS.sr().read().tcf() && !T::REGS.sr().read().ftf() {}
buf[idx] = unsafe { (T::REGS.dr().as_ptr() as *mut W).read_volatile() };
}
while !T::REGS.sr().read().tcf() {}
T::REGS.fcr().write(|v| v.set_ctcf(true));
Ok(())
}
pub fn blocking_write<W: Word>(&mut self, buf: &[W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
T::REGS.cr().modify(|w| {
w.set_dmaen(false);
});
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectWrite.into()));
for idx in 0..buf.len() {
while !T::REGS.sr().read().ftf() {}
unsafe { (T::REGS.dr().as_ptr() as *mut W).write_volatile(buf[idx]) };
}
while !T::REGS.sr().read().tcf() {}
T::REGS.fcr().write(|v| v.set_ctcf(true));
Ok(())
}
pub fn set_config(&mut self, config: &Config) {
while T::REGS.sr().read().busy() {}
T::REGS.cr().modify(|w| {
w.set_dmaen(false);
});
Self::configure_registers(config, None);
self.config = *config;
}
pub fn get_config(&self) -> Config {
self.config
}
}
impl<'d, T: Instance> Hspi<'d, T, Blocking> {
pub fn new_blocking_singlespi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
config: Config,
) -> Self {
Self::new_inner(
peri,
new_pin!(d0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d1, AfType::input(Pull::None)),
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
new_pin!(sck, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(
nss,
AfType::output_pull(OutputType::PushPull, Speed::VeryHigh, Pull::Up)
),
None,
None,
None,
config,
HspiWidth::SING,
false,
)
}
pub fn new_blocking_octospi(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dqs0: Peri<'d, impl DQS0Pin<T>>,
config: Config,
) -> Self {
Self::new_inner(
peri,
new_pin!(d0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d1, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d2, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d3, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d4, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d5, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d6, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d7, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
None,
None,
None,
None,
None,
None,
None,
None,
new_pin!(sck, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(
nss,
AfType::output_pull(OutputType::PushPull, Speed::VeryHigh, Pull::Up)
),
new_pin!(dqs0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
None,
None,
config,
HspiWidth::OCTO,
false,
)
}
}
impl<'d, T: Instance> Hspi<'d, T, Async> {
pub fn new_singlespi<D: HspiDma<T>>(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dma: Peri<'d, D>,
_irq: impl crate::interrupt::typelevel::Binding<D::Interrupt, crate::dma::InterruptHandler<D>> + 'd,
config: Config,
) -> Self {
Self::new_inner(
peri,
new_pin!(d0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d1, AfType::input(Pull::None)),
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
new_pin!(sck, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(
nss,
AfType::output_pull(OutputType::PushPull, Speed::VeryHigh, Pull::Up)
),
None,
None,
new_dma!(dma, _irq),
config,
HspiWidth::SING,
false,
)
}
pub fn new_octospi<D: HspiDma<T>>(
peri: Peri<'d, T>,
sck: Peri<'d, impl SckPin<T>>,
d0: Peri<'d, impl D0Pin<T>>,
d1: Peri<'d, impl D1Pin<T>>,
d2: Peri<'d, impl D2Pin<T>>,
d3: Peri<'d, impl D3Pin<T>>,
d4: Peri<'d, impl D4Pin<T>>,
d5: Peri<'d, impl D5Pin<T>>,
d6: Peri<'d, impl D6Pin<T>>,
d7: Peri<'d, impl D7Pin<T>>,
nss: Peri<'d, impl NSSPin<T>>,
dqs0: Peri<'d, impl DQS0Pin<T>>,
dma: Peri<'d, D>,
_irq: impl crate::interrupt::typelevel::Binding<D::Interrupt, crate::dma::InterruptHandler<D>> + 'd,
config: Config,
) -> Self {
Self::new_inner(
peri,
new_pin!(d0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d1, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d2, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d3, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d4, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d5, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d6, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(d7, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
new_pin!(sck, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
None,
None,
None,
None,
None,
None,
None,
None,
new_pin!(
nss,
AfType::output_pull(OutputType::PushPull, Speed::VeryHigh, Pull::Up)
),
new_pin!(dqs0, AfType::output(OutputType::PushPull, Speed::VeryHigh)),
None,
new_dma!(dma, _irq),
config,
HspiWidth::OCTO,
false,
)
}
pub fn blocking_read_dma<W: Word>(&mut self, buf: &mut [W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
let current_address = T::REGS.ar().read().address();
let current_instruction = T::REGS.ir().read().instruction();
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectRead.into()));
if T::REGS.ccr().read().admode() == HspiWidth::NONE.into() {
T::REGS.ir().write(|v| v.set_instruction(current_instruction));
} else {
T::REGS.ar().write(|v| v.set_address(current_address));
}
for chunk in buf.chunks_mut(0xFFFF / W::size().bytes()) {
let transfer = unsafe {
self.dma
.as_mut()
.unwrap()
.read(T::REGS.dr().as_ptr() as *mut W, chunk, Default::default())
};
T::REGS.cr().modify(|w| w.set_dmaen(true));
transfer.blocking_wait();
}
finish_dma(T::REGS);
Ok(())
}
pub fn blocking_write_dma<W: Word>(&mut self, buf: &[W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectWrite.into()));
for chunk in buf.chunks(0xFFFF / W::size().bytes()) {
let transfer = unsafe {
self.dma
.as_mut()
.unwrap()
.write(chunk, T::REGS.dr().as_ptr() as *mut W, Default::default())
};
T::REGS.cr().modify(|w| w.set_dmaen(true));
transfer.blocking_wait();
}
finish_dma(T::REGS);
Ok(())
}
pub async fn read<W: Word>(&mut self, buf: &mut [W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
let current_address = T::REGS.ar().read().address();
let current_instruction = T::REGS.ir().read().instruction();
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectRead.into()));
if T::REGS.ccr().read().admode() == HspiWidth::NONE.into() {
T::REGS.ir().write(|v| v.set_instruction(current_instruction));
} else {
T::REGS.ar().write(|v| v.set_address(current_address));
}
for chunk in buf.chunks_mut(0xFFFF / W::size().bytes()) {
let transfer = unsafe {
self.dma
.as_mut()
.unwrap()
.read(T::REGS.dr().as_ptr() as *mut W, chunk, Default::default())
};
T::REGS.cr().modify(|w| w.set_dmaen(true));
transfer.await;
}
finish_dma(T::REGS);
Ok(())
}
pub async fn write<W: Word>(&mut self, buf: &[W], transaction: TransferConfig) -> Result<(), HspiError> {
if buf.is_empty() {
return Err(HspiError::EmptyBuffer);
}
while T::REGS.sr().read().busy() {}
let transfer_size_bytes = buf.len() * W::size().bytes();
self.configure_command(&transaction, Some(transfer_size_bytes))?;
T::REGS
.cr()
.modify(|v| v.set_fmode(FunctionalMode::IndirectWrite.into()));
for chunk in buf.chunks(0xFFFF / W::size().bytes()) {
let transfer = unsafe {
self.dma
.as_mut()
.unwrap()
.write(chunk, T::REGS.dr().as_ptr() as *mut W, Default::default())
};
T::REGS.cr().modify(|w| w.set_dmaen(true));
transfer.await;
}
finish_dma(T::REGS);
Ok(())
}
}
impl<'d, T: Instance, M: PeriMode> Drop for Hspi<'d, T, M> {
fn drop(&mut self) {
rcc::disable::<T>();
}
}
fn finish_dma(regs: Regs) {
while !regs.sr().read().tcf() {}
regs.fcr().write(|v| v.set_ctcf(true));
regs.cr().modify(|w| {
w.set_dmaen(false);
});
}
pub(crate) trait SealedInstance {
const REGS: Regs;
}
#[allow(private_bounds)]
pub trait Instance: SealedInstance + PeripheralType + RccPeripheral {}
pin_trait!(SckPin, Instance);
pin_trait!(NckPin, Instance);
pin_trait!(D0Pin, Instance);
pin_trait!(D1Pin, Instance);
pin_trait!(D2Pin, Instance);
pin_trait!(D3Pin, Instance);
pin_trait!(D4Pin, Instance);
pin_trait!(D5Pin, Instance);
pin_trait!(D6Pin, Instance);
pin_trait!(D7Pin, Instance);
pin_trait!(D8Pin, Instance);
pin_trait!(D9Pin, Instance);
pin_trait!(D10Pin, Instance);
pin_trait!(D11Pin, Instance);
pin_trait!(D12Pin, Instance);
pin_trait!(D13Pin, Instance);
pin_trait!(D14Pin, Instance);
pin_trait!(D15Pin, Instance);
pin_trait!(DQS0Pin, Instance);
pin_trait!(DQS1Pin, Instance);
pin_trait!(NSSPin, Instance);
dma_trait!(HspiDma, Instance);
foreach_peripheral!(
(hspi, $inst:ident) => {
impl SealedInstance for peripherals::$inst {
const REGS: Regs = crate::pac::$inst;
}
impl Instance for peripherals::$inst {}
};
);
impl<'d, T: Instance, M: PeriMode> SetConfig for Hspi<'d, T, M> {
type Config = Config;
type ConfigError = ();
fn set_config(&mut self, config: &Self::Config) -> Result<(), ()> {
self.set_config(config);
Ok(())
}
}
impl<'d, T: Instance, M: PeriMode> GetConfig for Hspi<'d, T, M> {
type Config = Config;
fn get_config(&self) -> Self::Config {
self.get_config()
}
}
#[allow(private_bounds)]
pub trait Word: word::Word {}
macro_rules! impl_word {
($T:ty) => {
impl Word for $T {}
};
}
impl_word!(u8);
impl_word!(u16);
impl_word!(u32);