embassy/embassy-nrf/src/qspi.rs

405 lines
11 KiB
Rust
Raw Normal View History

#![macro_use]
2020-09-22 18:03:43 +02:00
use core::future::Future;
2021-03-21 20:54:09 +01:00
use core::marker::PhantomData;
2021-02-28 22:05:37 +01:00
use core::task::Poll;
2021-04-14 17:00:28 +02:00
use embassy::interrupt::{Interrupt, InterruptExt};
use embassy::traits::flash::{Error, Flash};
2021-04-14 19:59:52 +02:00
use embassy::util::{AtomicWaker, DropBomb, Unborrow};
2021-03-21 22:09:06 +01:00
use embassy_extras::unborrow;
2021-04-14 17:00:28 +02:00
use futures::future::poll_fn;
2021-03-08 00:15:40 +01:00
2021-02-28 22:05:37 +01:00
use crate::fmt::{assert, assert_eq, *};
2021-03-21 20:54:09 +01:00
use crate::gpio::Pin as GpioPin;
2021-05-17 11:48:58 +02:00
use crate::pac;
2020-09-22 18:03:43 +02:00
pub use crate::pac::qspi::ifconfig0::ADDRMODE_A as AddressMode;
pub use crate::pac::qspi::ifconfig0::PPSIZE_A as WritePageSize;
pub use crate::pac::qspi::ifconfig0::READOC_A as ReadOpcode;
pub use crate::pac::qspi::ifconfig0::WRITEOC_A as WriteOpcode;
// TODO
// - config:
// - 32bit address mode
// - SPI freq
// - SPI sck delay
// - Deep power down mode (DPM)
// - SPI mode 3
// - activate/deactivate
// - set gpio in high drive
2020-11-27 18:42:59 +01:00
pub struct DeepPowerDownConfig {
pub enter_time: u16,
pub exit_time: u16,
}
2021-03-29 00:55:05 +02:00
#[non_exhaustive]
2020-09-22 18:03:43 +02:00
pub struct Config {
pub xip_offset: u32,
pub read_opcode: ReadOpcode,
pub write_opcode: WriteOpcode,
pub write_page_size: WritePageSize,
2020-11-27 18:42:59 +01:00
pub deep_power_down: Option<DeepPowerDownConfig>,
2020-09-22 18:03:43 +02:00
}
2021-03-29 00:55:05 +02:00
impl Default for Config {
fn default() -> Self {
Self {
read_opcode: ReadOpcode::READ4IO,
write_opcode: WriteOpcode::PP4IO,
xip_offset: 0,
write_page_size: WritePageSize::_256BYTES,
deep_power_down: None,
}
}
}
2021-03-21 20:54:09 +01:00
pub struct Qspi<'d, T: Instance> {
peri: T,
2021-03-21 20:54:09 +01:00
irq: T::Interrupt,
phantom: PhantomData<&'d mut T>,
2021-02-28 22:05:37 +01:00
}
2021-03-21 20:54:09 +01:00
impl<'d, T: Instance> Qspi<'d, T> {
pub fn new(
2021-04-14 19:59:52 +02:00
qspi: impl Unborrow<Target = T> + 'd,
irq: impl Unborrow<Target = T::Interrupt> + 'd,
sck: impl Unborrow<Target = impl GpioPin> + 'd,
csn: impl Unborrow<Target = impl GpioPin> + 'd,
io0: impl Unborrow<Target = impl GpioPin> + 'd,
io1: impl Unborrow<Target = impl GpioPin> + 'd,
io2: impl Unborrow<Target = impl GpioPin> + 'd,
io3: impl Unborrow<Target = impl GpioPin> + 'd,
2021-03-21 20:54:09 +01:00
config: Config,
) -> Self {
2021-03-21 22:09:06 +01:00
unborrow!(qspi, irq, sck, csn, io0, io1, io2, io3);
2021-03-21 20:54:09 +01:00
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
for cnf in &[
sck.conf(),
csn.conf(),
io0.conf(),
io1.conf(),
io2.conf(),
io3.conf(),
] {
cnf.write(|w| w.dir().output().drive().h0h1());
}
2020-09-22 18:03:43 +02:00
2021-03-21 20:54:09 +01:00
r.psel.sck.write(|w| unsafe { w.bits(sck.psel_bits()) });
r.psel.csn.write(|w| unsafe { w.bits(csn.psel_bits()) });
r.psel.io0.write(|w| unsafe { w.bits(io0.psel_bits()) });
r.psel.io1.write(|w| unsafe { w.bits(io1.psel_bits()) });
r.psel.io2.write(|w| unsafe { w.bits(io2.psel_bits()) });
r.psel.io3.write(|w| unsafe { w.bits(io3.psel_bits()) });
2020-09-22 18:03:43 +02:00
2021-03-21 20:54:09 +01:00
r.ifconfig0.write(|mut w| {
2020-11-27 18:42:59 +01:00
w = w.addrmode().variant(AddressMode::_24BIT);
if config.deep_power_down.is_some() {
w = w.dpmenable().enable();
} else {
w = w.dpmenable().disable();
}
w = w.ppsize().variant(config.write_page_size);
w = w.readoc().variant(config.read_opcode);
w = w.writeoc().variant(config.write_opcode);
2020-09-22 18:03:43 +02:00
w
});
2020-11-27 18:42:59 +01:00
if let Some(dpd) = &config.deep_power_down {
2021-03-21 20:54:09 +01:00
r.dpmdur.write(|mut w| unsafe {
2020-11-27 18:42:59 +01:00
w = w.enter().bits(dpd.enter_time);
w = w.exit().bits(dpd.exit_time);
w
})
}
2021-03-21 20:54:09 +01:00
r.ifconfig1.write(|w| {
2020-09-22 18:03:43 +02:00
let w = unsafe { w.sckdelay().bits(80) };
let w = w.dpmen().exit();
let w = w.spimode().mode0();
let w = unsafe { w.sckfreq().bits(3) };
w
});
2021-03-21 20:54:09 +01:00
r.xipoffset
2020-09-22 18:03:43 +02:00
.write(|w| unsafe { w.xipoffset().bits(config.xip_offset) });
// Enable it
2021-03-21 20:54:09 +01:00
r.enable.write(|w| w.enable().enabled());
2020-09-22 18:03:43 +02:00
2021-03-21 20:54:09 +01:00
r.events_ready.reset();
r.tasks_activate.write(|w| w.tasks_activate().bit(true));
while r.events_ready.read().bits() == 0 {}
r.events_ready.reset();
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
irq.set_handler(Self::on_interrupt);
irq.unpend();
irq.enable();
2021-02-28 22:05:37 +01:00
Self {
peri: qspi,
2021-03-21 20:54:09 +01:00
irq,
phantom: PhantomData,
2021-02-28 22:05:37 +01:00
}
2020-09-22 18:03:43 +02:00
}
2021-04-14 17:00:28 +02:00
fn on_interrupt(_: *mut ()) {
let r = T::regs();
let s = T::state();
if r.events_ready.read().bits() != 0 {
s.ready_waker.wake();
r.intenclr.write(|w| w.ready().clear());
}
}
pub fn sleep(&mut self) {
let r = T::regs();
2021-03-21 20:54:09 +01:00
info!("flash: sleeping");
info!("flash: state = {:?}", r.status.read().bits());
r.ifconfig1.modify(|_, w| w.dpmen().enter());
info!("flash: state = {:?}", r.status.read().bits());
cortex_m::asm::delay(1000000);
info!("flash: state = {:?}", r.status.read().bits());
r.tasks_deactivate.write(|w| w.tasks_deactivate().set_bit());
2020-11-27 18:42:59 +01:00
}
2021-03-21 20:54:09 +01:00
pub async fn custom_instruction(
2021-04-14 17:00:28 +02:00
&mut self,
2020-09-22 18:03:43 +02:00
opcode: u8,
2021-03-21 20:54:09 +01:00
req: &[u8],
resp: &mut [u8],
2021-02-14 01:41:36 +01:00
) -> Result<(), Error> {
let bomb = DropBomb::new();
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
assert!(req.len() <= 8);
assert!(resp.len() <= 8);
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
let mut dat0: u32 = 0;
let mut dat1: u32 = 0;
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
for i in 0..4 {
if i < req.len() {
dat0 |= (req[i] as u32) << (i * 8);
2020-09-22 18:03:43 +02:00
}
2021-02-14 01:41:36 +01:00
}
for i in 0..4 {
if i + 4 < req.len() {
dat1 |= (req[i + 4] as u32) << (i * 8);
2020-09-22 18:03:43 +02:00
}
2021-02-14 01:41:36 +01:00
}
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
let len = core::cmp::max(req.len(), resp.len()) as u8;
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
r.cinstrdat0.write(|w| unsafe { w.bits(dat0) });
r.cinstrdat1.write(|w| unsafe { w.bits(dat1) });
r.events_ready.reset();
r.intenset.write(|w| w.ready().set());
r.cinstrconf.write(|w| {
let w = unsafe { w.opcode().bits(opcode) };
let w = unsafe { w.length().bits(len + 1) };
let w = w.lio2().bit(true);
let w = w.lio3().bit(true);
let w = w.wipwait().bit(true);
let w = w.wren().bit(true);
let w = w.lfen().bit(false);
let w = w.lfstop().bit(false);
w
2021-02-14 01:41:36 +01:00
});
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
self.wait_ready().await;
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
let dat0 = r.cinstrdat0.read().bits();
let dat1 = r.cinstrdat1.read().bits();
for i in 0..4 {
if i < resp.len() {
resp[i] = (dat0 >> (i * 8)) as u8;
2020-09-22 18:03:43 +02:00
}
2021-03-21 20:54:09 +01:00
}
for i in 0..4 {
if i + 4 < resp.len() {
resp[i] = (dat1 >> (i * 8)) as u8;
2020-09-22 18:03:43 +02:00
}
2021-03-21 20:54:09 +01:00
}
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
bomb.defuse();
2020-09-22 18:03:43 +02:00
2021-02-14 01:41:36 +01:00
Ok(())
2020-09-22 18:03:43 +02:00
}
2021-02-28 22:05:37 +01:00
2021-04-14 17:00:28 +02:00
async fn wait_ready(&mut self) {
2021-02-28 22:05:37 +01:00
poll_fn(move |cx| {
2021-04-14 17:00:28 +02:00
let r = T::regs();
let s = T::state();
s.ready_waker.register(cx.waker());
2021-03-21 20:54:09 +01:00
if r.events_ready.read().bits() != 0 {
return Poll::Ready(());
}
Poll::Pending
2021-02-28 22:05:37 +01:00
})
2021-03-21 20:54:09 +01:00
.await
2021-02-28 22:05:37 +01:00
}
2020-09-22 18:03:43 +02:00
}
2021-03-21 20:54:09 +01:00
impl<'d, T: Instance> Flash for Qspi<'d, T> {
#[rustfmt::skip]
type ReadFuture<'a> where Self: 'a = impl Future<Output = Result<(), Error>> + 'a;
#[rustfmt::skip]
type WriteFuture<'a> where Self: 'a = impl Future<Output = Result<(), Error>> + 'a;
#[rustfmt::skip]
type ErasePageFuture<'a> where Self: 'a = impl Future<Output = Result<(), Error>> + 'a;
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
fn read<'a>(&'a mut self, address: usize, data: &'a mut [u8]) -> Self::ReadFuture<'a> {
2020-09-22 18:03:43 +02:00
async move {
let bomb = DropBomb::new();
assert_eq!(data.as_ptr() as u32 % 4, 0);
assert_eq!(data.len() as u32 % 4, 0);
assert_eq!(address as u32 % 4, 0);
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
r.read
.src
.write(|w| unsafe { w.src().bits(address as u32) });
r.read
.dst
.write(|w| unsafe { w.dst().bits(data.as_ptr() as u32) });
r.read
.cnt
.write(|w| unsafe { w.cnt().bits(data.len() as u32) });
r.events_ready.reset();
r.intenset.write(|w| w.ready().set());
r.tasks_readstart.write(|w| w.tasks_readstart().bit(true));
2021-02-28 22:05:37 +01:00
2021-04-14 17:00:28 +02:00
self.wait_ready().await;
2020-09-22 18:03:43 +02:00
bomb.defuse();
Ok(())
}
}
2021-04-14 17:00:28 +02:00
fn write<'a>(&'a mut self, address: usize, data: &'a [u8]) -> Self::WriteFuture<'a> {
2020-09-22 18:03:43 +02:00
async move {
let bomb = DropBomb::new();
assert_eq!(data.as_ptr() as u32 % 4, 0);
assert_eq!(data.len() as u32 % 4, 0);
assert_eq!(address as u32 % 4, 0);
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
r.write
.src
.write(|w| unsafe { w.src().bits(data.as_ptr() as u32) });
r.write
.dst
.write(|w| unsafe { w.dst().bits(address as u32) });
r.write
.cnt
.write(|w| unsafe { w.cnt().bits(data.len() as u32) });
r.events_ready.reset();
r.intenset.write(|w| w.ready().set());
r.tasks_writestart.write(|w| w.tasks_writestart().bit(true));
2021-02-28 22:05:37 +01:00
2021-04-14 17:00:28 +02:00
self.wait_ready().await;
2020-09-22 18:03:43 +02:00
bomb.defuse();
Ok(())
}
}
2021-04-14 17:00:28 +02:00
fn erase<'a>(&'a mut self, address: usize) -> Self::ErasePageFuture<'a> {
2020-09-22 18:03:43 +02:00
async move {
let bomb = DropBomb::new();
assert_eq!(address as u32 % 4096, 0);
2021-04-14 17:00:28 +02:00
let r = T::regs();
2021-03-21 20:54:09 +01:00
r.erase
.ptr
.write(|w| unsafe { w.ptr().bits(address as u32) });
r.erase.len.write(|w| w.len()._4kb());
2021-02-28 22:05:37 +01:00
2021-03-21 20:54:09 +01:00
r.events_ready.reset();
r.intenset.write(|w| w.ready().set());
r.tasks_erasestart.write(|w| w.tasks_erasestart().bit(true));
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
self.wait_ready().await;
2020-09-22 18:03:43 +02:00
bomb.defuse();
Ok(())
}
}
fn size(&self) -> usize {
256 * 4096 // TODO
}
fn read_size(&self) -> usize {
4 // TODO
}
fn write_size(&self) -> usize {
4 // TODO
}
fn erase_size(&self) -> usize {
4096 // TODO
}
}
pub(crate) mod sealed {
2021-03-21 20:54:09 +01:00
use super::*;
2020-09-22 18:03:43 +02:00
2021-04-14 17:00:28 +02:00
pub struct State {
pub ready_waker: AtomicWaker,
}
impl State {
pub const fn new() -> Self {
Self {
ready_waker: AtomicWaker::new(),
}
}
}
2021-03-21 20:54:09 +01:00
pub trait Instance {
2021-04-14 17:00:28 +02:00
fn regs() -> &'static pac::qspi::RegisterBlock;
fn state() -> &'static State;
2020-09-22 18:03:43 +02:00
}
}
2021-03-21 20:54:09 +01:00
pub trait Instance: Unborrow<Target = Self> + sealed::Instance + 'static {
2021-03-21 20:54:09 +01:00
type Interrupt: Interrupt;
}
macro_rules! impl_qspi {
($type:ident, $pac_type:ident, $irq:ident) => {
impl crate::qspi::sealed::Instance for peripherals::$type {
2021-04-14 17:00:28 +02:00
fn regs() -> &'static pac::qspi::RegisterBlock {
unsafe { &*pac::$pac_type::ptr() }
2021-03-21 20:54:09 +01:00
}
fn state() -> &'static crate::qspi::sealed::State {
static STATE: crate::qspi::sealed::State = crate::qspi::sealed::State::new();
2021-04-14 17:00:28 +02:00
&STATE
}
2021-03-21 20:54:09 +01:00
}
impl crate::qspi::Instance for peripherals::$type {
type Interrupt = crate::interrupt::$irq;
2021-03-21 20:54:09 +01:00
}
};
}