2023-03-22 08:44:58 +01:00
|
|
|
#![macro_use]
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub mod enums;
|
|
|
|
|
2023-03-22 08:44:58 +01:00
|
|
|
use embassy_hal_common::{into_ref, PeripheralRef};
|
2023-03-29 13:27:20 +02:00
|
|
|
use enums::*;
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
use crate::dma::TransferOptions;
|
|
|
|
use crate::gpio::sealed::AFType;
|
|
|
|
use crate::gpio::AnyPin;
|
|
|
|
use crate::pac::quadspi::Quadspi as Regs;
|
|
|
|
use crate::rcc::RccPeripheral;
|
|
|
|
use crate::{peripherals, Peripheral};
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub struct TransferConfig {
|
|
|
|
/// Instraction width (IMODE)
|
|
|
|
pub iwidth: QspiWidth,
|
|
|
|
/// Address width (ADMODE)
|
|
|
|
pub awidth: QspiWidth,
|
|
|
|
/// Data width (DMODE)
|
|
|
|
pub dwidth: QspiWidth,
|
|
|
|
/// Instruction Id
|
2023-03-22 08:44:58 +01:00
|
|
|
pub instruction: u8,
|
2023-03-29 13:27:20 +02:00
|
|
|
/// Flash memory address
|
2023-03-22 08:44:58 +01:00
|
|
|
pub address: Option<u32>,
|
2023-03-29 13:27:20 +02:00
|
|
|
/// Number of dummy cycles (DCYC)
|
|
|
|
pub dummy: DummyCycles,
|
|
|
|
/// Length of data
|
2023-03-22 08:44:58 +01:00
|
|
|
pub data_len: Option<usize>,
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
impl Default for TransferConfig {
|
2023-03-22 08:44:58 +01:00
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
iwidth: QspiWidth::NONE,
|
|
|
|
awidth: QspiWidth::NONE,
|
|
|
|
dwidth: QspiWidth::NONE,
|
|
|
|
instruction: 0,
|
|
|
|
address: None,
|
2023-03-29 13:27:20 +02:00
|
|
|
dummy: DummyCycles::_0,
|
2023-03-22 08:44:58 +01:00
|
|
|
data_len: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Config {
|
2023-03-29 13:27:20 +02:00
|
|
|
/// Flash memory size representend as 2^[0-32], as reasonable minimum 1KiB(9) was chosen.
|
|
|
|
/// If you need other value the whose predefined use `Other` variant.
|
|
|
|
pub memory_size: MemorySize,
|
|
|
|
/// Address size (8/16/24/32-bit)
|
|
|
|
pub address_size: AddressSize,
|
|
|
|
/// Scalar factor for generating CLK [0-255]
|
2023-03-22 08:44:58 +01:00
|
|
|
pub prescaler: u8,
|
2023-03-29 13:27:20 +02:00
|
|
|
/// Number of bytes to trigger FIFO threshold flag.
|
|
|
|
pub fifo_threshold: FIFOThresholdLevel,
|
|
|
|
/// Minimum number of cycles that chip select must be high between issued commands
|
|
|
|
pub cs_high_time: ChipSelectHightTime,
|
2023-03-22 08:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
2023-03-29 13:27:20 +02:00
|
|
|
memory_size: MemorySize::Other(0),
|
|
|
|
address_size: AddressSize::_24bit,
|
2023-03-22 08:44:58 +01:00
|
|
|
prescaler: 128,
|
2023-03-29 13:27:20 +02:00
|
|
|
fifo_threshold: FIFOThresholdLevel::_17Bytes,
|
|
|
|
cs_high_time: ChipSelectHightTime::_5Cycle,
|
2023-03-22 08:44:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub struct Qspi<'d, T: Instance, Dma> {
|
|
|
|
_peri: PeripheralRef<'d, T>,
|
|
|
|
sck: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d0: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d1: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d2: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d3: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
nss: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
dma: PeripheralRef<'d, Dma>,
|
|
|
|
config: Config,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, T: Instance, Dma> Qspi<'d, T, Dma> {
|
|
|
|
pub fn new(
|
|
|
|
peri: impl Peripheral<P = T> + 'd,
|
|
|
|
d0: impl Peripheral<P = impl D0Pin<T>> + 'd,
|
|
|
|
d1: impl Peripheral<P = impl D1Pin<T>> + 'd,
|
|
|
|
d2: impl Peripheral<P = impl D2Pin<T>> + 'd,
|
|
|
|
d3: impl Peripheral<P = impl D3Pin<T>> + 'd,
|
|
|
|
sck: impl Peripheral<P = impl SckPin<T>> + 'd,
|
|
|
|
nss: impl Peripheral<P = impl NSSPin<T>> + 'd,
|
|
|
|
dma: impl Peripheral<P = Dma> + 'd,
|
|
|
|
config: Config,
|
|
|
|
) -> Self {
|
|
|
|
into_ref!(peri, d0, d1, d2, d3, sck, nss);
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
sck.set_as_af(sck.af_num(), AFType::OutputPushPull);
|
|
|
|
sck.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
nss.set_as_af(nss.af_num(), AFType::OutputPushPull);
|
|
|
|
nss.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
d0.set_as_af(d0.af_num(), AFType::OutputPushPull);
|
|
|
|
d0.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
d1.set_as_af(d1.af_num(), AFType::OutputPushPull);
|
|
|
|
d1.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
d2.set_as_af(d2.af_num(), AFType::OutputPushPull);
|
|
|
|
d2.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
d3.set_as_af(d3.af_num(), AFType::OutputPushPull);
|
|
|
|
d3.set_speed(crate::gpio::Speed::VeryHigh);
|
|
|
|
}
|
|
|
|
|
|
|
|
Self::new_inner(
|
|
|
|
peri,
|
|
|
|
Some(d0.map_into()),
|
|
|
|
Some(d1.map_into()),
|
|
|
|
Some(d2.map_into()),
|
|
|
|
Some(d3.map_into()),
|
|
|
|
Some(sck.map_into()),
|
|
|
|
Some(nss.map_into()),
|
|
|
|
dma,
|
|
|
|
config,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_inner(
|
|
|
|
peri: impl Peripheral<P = T> + 'd,
|
|
|
|
d0: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d1: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d2: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
d3: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
sck: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
nss: Option<PeripheralRef<'d, AnyPin>>,
|
|
|
|
dma: impl Peripheral<P = Dma> + 'd,
|
|
|
|
config: Config,
|
|
|
|
) -> Self {
|
|
|
|
into_ref!(peri, dma);
|
|
|
|
|
|
|
|
T::enable();
|
|
|
|
unsafe {
|
2023-03-29 13:27:20 +02:00
|
|
|
T::REGS.cr().write(|w| w.set_fthres(config.fifo_threshold.into()));
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
while T::REGS.sr().read().busy() {}
|
|
|
|
|
|
|
|
T::REGS.cr().write(|w| {
|
|
|
|
w.set_prescaler(config.prescaler);
|
|
|
|
w.set_en(true);
|
|
|
|
});
|
|
|
|
T::REGS.dcr().write(|w| {
|
2023-03-29 13:27:20 +02:00
|
|
|
w.set_fsize(config.memory_size.into());
|
|
|
|
w.set_csht(config.cs_high_time.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
w.set_ckmode(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Self {
|
|
|
|
_peri: peri,
|
|
|
|
sck,
|
|
|
|
d0,
|
|
|
|
d1,
|
|
|
|
d2,
|
|
|
|
d3,
|
|
|
|
nss,
|
|
|
|
dma,
|
|
|
|
config,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub fn command(&mut self, transaction: TransferConfig) {
|
2023-03-22 08:44:58 +01:00
|
|
|
unsafe {
|
|
|
|
T::REGS.cr().modify(|v| v.set_dmaen(false));
|
2023-03-29 13:27:20 +02:00
|
|
|
self.setup_transaction(QspiMode::IndirectWrite, &transaction);
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
while !T::REGS.sr().read().tcf() {}
|
|
|
|
T::REGS.fcr().modify(|v| v.set_ctcf(true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub fn blocking_read(&mut self, buf: &mut [u8], transaction: TransferConfig) {
|
2023-03-22 08:44:58 +01:00
|
|
|
unsafe {
|
|
|
|
T::REGS.cr().modify(|v| v.set_dmaen(false));
|
2023-03-29 13:27:20 +02:00
|
|
|
self.setup_transaction(QspiMode::IndirectWrite, &transaction);
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
if let Some(len) = transaction.data_len {
|
|
|
|
let current_ar = T::REGS.ar().read().address();
|
|
|
|
T::REGS.ccr().modify(|v| {
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_fmode(QspiMode::IndirectRead.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
});
|
|
|
|
T::REGS.ar().write(|v| {
|
|
|
|
v.set_address(current_ar);
|
|
|
|
});
|
|
|
|
|
|
|
|
for idx in 0..len {
|
|
|
|
while !T::REGS.sr().read().tcf() && !T::REGS.sr().read().ftf() {}
|
|
|
|
buf[idx] = *(T::REGS.dr().ptr() as *mut u8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while !T::REGS.sr().read().tcf() {}
|
|
|
|
T::REGS.fcr().modify(|v| v.set_ctcf(true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub fn blocking_write(&mut self, buf: &[u8], transaction: TransferConfig) {
|
2023-03-22 08:44:58 +01:00
|
|
|
unsafe {
|
|
|
|
T::REGS.cr().modify(|v| v.set_dmaen(false));
|
2023-03-29 13:27:20 +02:00
|
|
|
self.setup_transaction(QspiMode::IndirectWrite, &transaction);
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
if let Some(len) = transaction.data_len {
|
|
|
|
T::REGS.ccr().modify(|v| {
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_fmode(QspiMode::IndirectWrite.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
for idx in 0..len {
|
|
|
|
while !T::REGS.sr().read().ftf() {}
|
|
|
|
*(T::REGS.dr().ptr() as *mut u8) = buf[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while !T::REGS.sr().read().tcf() {}
|
|
|
|
T::REGS.fcr().modify(|v| v.set_ctcf(true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub fn blocking_read_dma(&mut self, buf: &mut [u8], transaction: TransferConfig)
|
2023-03-22 08:44:58 +01:00
|
|
|
where
|
|
|
|
Dma: QuadDma<T>,
|
|
|
|
{
|
|
|
|
unsafe {
|
2023-03-29 13:27:20 +02:00
|
|
|
self.setup_transaction(QspiMode::IndirectWrite, &transaction);
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
let request = self.dma.request();
|
|
|
|
let options = TransferOptions::default();
|
|
|
|
|
|
|
|
T::REGS.ccr().modify(|v| {
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_fmode(QspiMode::IndirectRead.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
});
|
|
|
|
let current_ar = T::REGS.ar().read().address();
|
|
|
|
T::REGS.ar().write(|v| {
|
|
|
|
v.set_address(current_ar);
|
|
|
|
});
|
|
|
|
|
|
|
|
self.dma
|
|
|
|
.start_read(request, T::REGS.dr().ptr() as *mut u8, buf, options);
|
|
|
|
|
|
|
|
T::REGS.cr().modify(|v| v.set_dmaen(true));
|
|
|
|
|
|
|
|
while self.dma.is_running() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
pub fn blocking_write_dma(&mut self, buf: &[u8], transaction: TransferConfig)
|
2023-03-22 08:44:58 +01:00
|
|
|
where
|
|
|
|
Dma: QuadDma<T>,
|
|
|
|
{
|
|
|
|
unsafe {
|
2023-03-29 13:27:20 +02:00
|
|
|
self.setup_transaction(QspiMode::IndirectWrite, &transaction);
|
2023-03-22 08:44:58 +01:00
|
|
|
|
|
|
|
let request = self.dma.request();
|
|
|
|
let options = TransferOptions::default();
|
|
|
|
|
|
|
|
T::REGS.ccr().modify(|v| {
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_fmode(QspiMode::IndirectWrite.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
self.dma
|
|
|
|
.start_write(request, buf, T::REGS.dr().ptr() as *mut u8, options);
|
|
|
|
|
|
|
|
T::REGS.cr().modify(|v| v.set_dmaen(true));
|
|
|
|
|
|
|
|
while self.dma.is_running() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:27:20 +02:00
|
|
|
fn setup_transaction(&mut self, fmode: QspiMode, transaction: &TransferConfig) {
|
2023-03-22 08:44:58 +01:00
|
|
|
unsafe {
|
|
|
|
T::REGS.fcr().modify(|v| {
|
|
|
|
v.set_csmf(true);
|
|
|
|
v.set_ctcf(true);
|
|
|
|
v.set_ctef(true);
|
|
|
|
v.set_ctof(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
while T::REGS.sr().read().busy() {}
|
|
|
|
|
|
|
|
if let Some(len) = transaction.data_len {
|
|
|
|
T::REGS.dlr().write(|v| v.set_dl(len as u32 - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
T::REGS.ccr().write(|v| {
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_fmode(fmode.into());
|
|
|
|
v.set_imode(transaction.iwidth.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
v.set_instruction(transaction.instruction);
|
2023-03-29 13:27:20 +02:00
|
|
|
v.set_admode(transaction.awidth.into());
|
|
|
|
v.set_adsize(self.config.address_size.into());
|
|
|
|
v.set_dmode(transaction.dwidth.into());
|
|
|
|
v.set_abmode(QspiWidth::NONE.into());
|
|
|
|
v.set_dcyc(transaction.dummy.into());
|
2023-03-22 08:44:58 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(addr) = transaction.address {
|
|
|
|
T::REGS.ar().write(|v| {
|
|
|
|
v.set_address(addr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) mod sealed {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub trait Instance {
|
|
|
|
const REGS: Regs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Instance: Peripheral<P = Self> + sealed::Instance + RccPeripheral {}
|
|
|
|
|
|
|
|
pin_trait!(SckPin, Instance);
|
|
|
|
pin_trait!(D0Pin, Instance);
|
|
|
|
pin_trait!(D1Pin, Instance);
|
|
|
|
pin_trait!(D2Pin, Instance);
|
|
|
|
pin_trait!(D3Pin, Instance);
|
|
|
|
pin_trait!(NSSPin, Instance);
|
|
|
|
|
|
|
|
dma_trait!(QuadDma, Instance);
|
|
|
|
|
|
|
|
foreach_peripheral!(
|
|
|
|
(quadspi, $inst:ident) => {
|
|
|
|
impl sealed::Instance for peripherals::$inst {
|
|
|
|
const REGS: Regs = crate::pac::$inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Instance for peripherals::$inst {}
|
|
|
|
};
|
|
|
|
);
|