2023-03-27 18:04:48 +02:00
|
|
|
#![no_std]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
|
2023-02-19 16:31:35 +01:00
|
|
|
use core::slice;
|
|
|
|
|
|
|
|
use cyw43::SpiBusCyw43;
|
|
|
|
use embassy_rp::dma::Channel;
|
2023-05-13 02:20:46 +02:00
|
|
|
use embassy_rp::gpio::{Drive, Level, Output, Pin, Pull, SlewRate};
|
|
|
|
use embassy_rp::pio::{Common, Config, Direction, Instance, Irq, PioPin, ShiftDirection, StateMachine};
|
2023-02-19 16:31:35 +01:00
|
|
|
use embassy_rp::relocate::RelocatedProgram;
|
2023-05-13 02:20:46 +02:00
|
|
|
use embassy_rp::{pio_instr_util, Peripheral, PeripheralRef};
|
|
|
|
use fixed::FixedU32;
|
2023-02-19 16:31:35 +01:00
|
|
|
use pio_proc::pio_asm;
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
pub struct PioSpi<'d, CS: Pin, PIO: Instance, const SM: usize, DMA> {
|
|
|
|
cs: Output<'d, CS>,
|
|
|
|
sm: StateMachine<'d, PIO, SM>,
|
|
|
|
irq: Irq<'d, PIO, 0>,
|
|
|
|
dma: PeripheralRef<'d, DMA>,
|
2023-02-19 16:31:35 +01:00
|
|
|
wrap_target: u8,
|
|
|
|
}
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
impl<'d, CS, PIO, const SM: usize, DMA> PioSpi<'d, CS, PIO, SM, DMA>
|
2023-02-19 16:31:35 +01:00
|
|
|
where
|
|
|
|
DMA: Channel,
|
2023-03-21 19:15:54 +01:00
|
|
|
CS: Pin,
|
2023-05-13 02:20:46 +02:00
|
|
|
PIO: Instance,
|
2023-02-19 16:31:35 +01:00
|
|
|
{
|
2023-05-13 02:20:46 +02:00
|
|
|
pub fn new<DIO, CLK>(
|
|
|
|
common: &mut Common<'d, PIO>,
|
|
|
|
mut sm: StateMachine<'d, PIO, SM>,
|
|
|
|
irq: Irq<'d, PIO, 0>,
|
|
|
|
cs: Output<'d, CS>,
|
|
|
|
dio: DIO,
|
|
|
|
clk: CLK,
|
|
|
|
dma: impl Peripheral<P = DMA> + 'd,
|
|
|
|
) -> Self
|
2023-02-19 16:31:35 +01:00
|
|
|
where
|
2023-05-13 02:20:46 +02:00
|
|
|
DIO: PioPin,
|
|
|
|
CLK: PioPin,
|
2023-02-19 16:31:35 +01:00
|
|
|
{
|
|
|
|
let program = pio_asm!(
|
|
|
|
".side_set 1"
|
2023-03-28 14:03:17 +02:00
|
|
|
|
2023-02-19 16:31:35 +01:00
|
|
|
".wrap_target"
|
2023-03-28 14:03:17 +02:00
|
|
|
// write out x-1 bits
|
2023-02-19 16:31:35 +01:00
|
|
|
"lp:",
|
|
|
|
"out pins, 1 side 0"
|
|
|
|
"jmp x-- lp side 1"
|
2023-03-28 14:03:17 +02:00
|
|
|
// switch directions
|
2023-02-19 16:31:35 +01:00
|
|
|
"set pindirs, 0 side 0"
|
2023-03-28 14:03:17 +02:00
|
|
|
// these nops seem to be necessary for fast clkdiv
|
2023-05-13 02:20:46 +02:00
|
|
|
//"nop side 1"
|
|
|
|
//"nop side 0"
|
2023-03-19 16:43:46 +01:00
|
|
|
"nop side 1"
|
2023-03-28 14:03:17 +02:00
|
|
|
// read in y-1 bits
|
2023-02-19 16:31:35 +01:00
|
|
|
"lp2:"
|
2023-03-28 14:03:17 +02:00
|
|
|
"in pins, 1 side 0"
|
|
|
|
"jmp y-- lp2 side 1"
|
2023-03-19 16:43:46 +01:00
|
|
|
|
2023-03-28 14:03:17 +02:00
|
|
|
// wait for event and irq host
|
2023-03-02 19:02:32 +01:00
|
|
|
"wait 1 pin 0 side 0"
|
|
|
|
"irq 0 side 0"
|
|
|
|
|
2023-02-19 16:31:35 +01:00
|
|
|
".wrap"
|
|
|
|
);
|
|
|
|
|
|
|
|
let relocated = RelocatedProgram::new(&program.program);
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
let mut pin_io: embassy_rp::pio::Pin<PIO> = common.make_pio_pin(dio);
|
|
|
|
pin_io.set_pull(Pull::None);
|
2023-02-19 16:31:35 +01:00
|
|
|
pin_io.set_schmitt(true);
|
2023-03-19 16:43:46 +01:00
|
|
|
pin_io.set_input_sync_bypass(true);
|
2023-05-13 02:20:46 +02:00
|
|
|
//pin_io.set_drive_strength(Drive::_12mA);
|
|
|
|
//pin_io.set_slew_rate(SlewRate::Fast);
|
2023-03-19 16:43:46 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
let mut pin_clk = common.make_pio_pin(clk);
|
2023-03-19 16:43:46 +01:00
|
|
|
pin_clk.set_drive_strength(Drive::_12mA);
|
|
|
|
pin_clk.set_slew_rate(SlewRate::Fast);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
let mut cfg = Config::default();
|
|
|
|
cfg.use_program(&common.load_program(&relocated), &[&pin_clk]);
|
|
|
|
cfg.set_out_pins(&[&pin_io]);
|
|
|
|
cfg.set_in_pins(&[&pin_io]);
|
|
|
|
cfg.set_set_pins(&[&pin_io]);
|
|
|
|
cfg.shift_out.direction = ShiftDirection::Left;
|
|
|
|
cfg.shift_out.auto_fill = true;
|
|
|
|
//cfg.shift_out.threshold = 32;
|
|
|
|
cfg.shift_in.direction = ShiftDirection::Left;
|
|
|
|
cfg.shift_in.auto_fill = true;
|
|
|
|
//cfg.shift_in.threshold = 32;
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-03-28 14:03:17 +02:00
|
|
|
// theoretical maximum according to data sheet, 100Mhz Pio => 50Mhz SPI Freq
|
2023-05-13 02:20:46 +02:00
|
|
|
// seems to cause random corruption, probably due to jitter due to the fractional divider.
|
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0x0140);
|
2023-03-28 14:03:17 +02:00
|
|
|
|
|
|
|
// same speed as pico-sdk, 62.5Mhz
|
2023-05-13 02:20:46 +02:00
|
|
|
cfg.clock_divider = FixedU32::from_bits(0x0200);
|
2023-03-28 14:03:17 +02:00
|
|
|
|
2023-03-19 16:43:46 +01:00
|
|
|
// 32 Mhz
|
2023-05-13 02:20:46 +02:00
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0x03E8);
|
2023-03-19 16:43:46 +01:00
|
|
|
|
2023-02-19 16:31:35 +01:00
|
|
|
// 16 Mhz
|
2023-05-13 02:20:46 +02:00
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0x07d0);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
|
|
|
// 8Mhz
|
2023-05-13 02:20:46 +02:00
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0x0a_00);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
|
|
|
// 1Mhz
|
2023-05-13 02:20:46 +02:00
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0x7d_00);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
|
|
|
// slowest possible
|
2023-05-13 02:20:46 +02:00
|
|
|
// cfg.clock_divider = FixedU32::from_bits(0xffff_00);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
sm.set_config(&cfg);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
sm.set_pin_dirs(Direction::Out, &[&pin_clk, &pin_io]);
|
|
|
|
sm.set_pins(Level::Low, &[&pin_clk, &pin_io]);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
|
|
|
Self {
|
2023-03-21 19:15:54 +01:00
|
|
|
cs,
|
2023-02-19 16:31:35 +01:00
|
|
|
sm,
|
2023-05-13 02:20:46 +02:00
|
|
|
irq,
|
|
|
|
dma: dma.into_ref(),
|
|
|
|
wrap_target: relocated.wrap().target,
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-27 17:24:45 +02:00
|
|
|
pub async fn write(&mut self, write: &[u32]) -> u32 {
|
2023-03-02 19:02:32 +01:00
|
|
|
self.sm.set_enable(false);
|
2023-02-19 16:31:35 +01:00
|
|
|
let write_bits = write.len() * 32 - 1;
|
|
|
|
let read_bits = 31;
|
|
|
|
|
2023-04-30 23:55:19 +02:00
|
|
|
#[cfg(feature = "defmt")]
|
|
|
|
defmt::trace!("write={} read={}", write_bits, read_bits);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
unsafe {
|
|
|
|
pio_instr_util::set_x(&mut self.sm, write_bits as u32);
|
|
|
|
pio_instr_util::set_y(&mut self.sm, read_bits as u32);
|
|
|
|
pio_instr_util::set_pindir(&mut self.sm, 0b1);
|
|
|
|
pio_instr_util::exec_jmp(&mut self.sm, self.wrap_target);
|
|
|
|
}
|
2023-02-19 16:31:35 +01:00
|
|
|
|
|
|
|
self.sm.set_enable(true);
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
self.sm.tx().dma_push(self.dma.reborrow(), write).await;
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-03-27 18:04:48 +02:00
|
|
|
let mut status = 0;
|
2023-05-13 02:20:46 +02:00
|
|
|
self.sm
|
|
|
|
.rx()
|
|
|
|
.dma_pull(self.dma.reborrow(), slice::from_mut(&mut status))
|
|
|
|
.await;
|
2023-03-27 17:24:45 +02:00
|
|
|
status
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|
|
|
|
|
2023-03-27 17:24:45 +02:00
|
|
|
pub async fn cmd_read(&mut self, cmd: u32, read: &mut [u32]) -> u32 {
|
2023-03-02 19:02:32 +01:00
|
|
|
self.sm.set_enable(false);
|
2023-02-19 16:31:35 +01:00
|
|
|
let write_bits = 31;
|
2023-03-27 17:24:45 +02:00
|
|
|
let read_bits = read.len() * 32 + 32 - 1;
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-04-30 23:55:19 +02:00
|
|
|
#[cfg(feature = "defmt")]
|
|
|
|
defmt::trace!("write={} read={}", write_bits, read_bits);
|
2023-02-19 16:31:35 +01:00
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
unsafe {
|
|
|
|
pio_instr_util::set_y(&mut self.sm, read_bits as u32);
|
|
|
|
pio_instr_util::set_x(&mut self.sm, write_bits as u32);
|
|
|
|
pio_instr_util::set_pindir(&mut self.sm, 0b1);
|
|
|
|
pio_instr_util::exec_jmp(&mut self.sm, self.wrap_target);
|
|
|
|
}
|
|
|
|
|
2023-02-19 16:31:35 +01:00
|
|
|
// self.cs.set_low();
|
|
|
|
self.sm.set_enable(true);
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
self.sm.tx().dma_push(self.dma.reborrow(), slice::from_ref(&cmd)).await;
|
|
|
|
self.sm.rx().dma_pull(self.dma.reborrow(), read).await;
|
2023-03-27 17:24:45 +02:00
|
|
|
|
2023-03-27 18:04:48 +02:00
|
|
|
let mut status = 0;
|
2023-05-13 02:20:46 +02:00
|
|
|
self.sm
|
|
|
|
.rx()
|
|
|
|
.dma_pull(self.dma.reborrow(), slice::from_mut(&mut status))
|
|
|
|
.await;
|
2023-03-27 17:24:45 +02:00
|
|
|
status
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-13 02:20:46 +02:00
|
|
|
impl<'d, CS, PIO, const SM: usize, DMA> SpiBusCyw43 for PioSpi<'d, CS, PIO, SM, DMA>
|
2023-02-19 16:31:35 +01:00
|
|
|
where
|
2023-03-21 19:15:54 +01:00
|
|
|
CS: Pin,
|
2023-05-13 02:20:46 +02:00
|
|
|
PIO: Instance,
|
2023-02-19 16:31:35 +01:00
|
|
|
DMA: Channel,
|
|
|
|
{
|
2023-03-27 17:24:45 +02:00
|
|
|
async fn cmd_write(&mut self, write: &[u32]) -> u32 {
|
2023-03-21 19:15:54 +01:00
|
|
|
self.cs.set_low();
|
2023-03-27 17:24:45 +02:00
|
|
|
let status = self.write(write).await;
|
2023-03-21 19:15:54 +01:00
|
|
|
self.cs.set_high();
|
2023-03-27 17:24:45 +02:00
|
|
|
status
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|
|
|
|
|
2023-03-27 17:24:45 +02:00
|
|
|
async fn cmd_read(&mut self, write: u32, read: &mut [u32]) -> u32 {
|
2023-03-21 19:15:54 +01:00
|
|
|
self.cs.set_low();
|
2023-03-27 17:24:45 +02:00
|
|
|
let status = self.cmd_read(write, read).await;
|
2023-03-21 19:15:54 +01:00
|
|
|
self.cs.set_high();
|
2023-03-27 17:24:45 +02:00
|
|
|
status
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|
2023-03-02 19:02:32 +01:00
|
|
|
|
|
|
|
async fn wait_for_event(&mut self) {
|
2023-05-13 02:20:46 +02:00
|
|
|
self.irq.wait().await;
|
2023-03-02 19:02:32 +01:00
|
|
|
}
|
2023-02-19 16:31:35 +01:00
|
|
|
}
|