esp-hal/hil-test/tests/spi_slave.rs
Juraj Sadel d54f8440a5
HIL(QOL): Use global timeout instead of timeout macros (#2489)
* HIL(QOL): Add missing timeouts to various tests

* Increase timeouts for ECC

* Use global timeout in hil tests

* sha: increase test_digest_of_size_1_to_200 timeout from 10 to 15 seconds
2024-12-04 12:03:39 +00:00

171 lines
4.7 KiB
Rust

//! SPI slave mode test suite.
//!
//! ESP32 does not support Modes 0 and 2 (properly, at least), so here we're
//! testing Mode 1.
//% CHIPS: esp32 esp32c2 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
#![no_std]
#![no_main]
use esp_hal::{
dma_buffers,
gpio::{Input, Level, Output, Pull},
peripheral::Peripheral,
spi::{slave::Spi, SpiMode},
Blocking,
};
use hil_test as _;
cfg_if::cfg_if! {
if #[cfg(any(esp32, esp32s2))] {
type DmaChannel = esp_hal::dma::Spi2DmaChannel;
} else {
type DmaChannel = esp_hal::dma::DmaChannel0;
}
}
struct Context {
spi: Spi<'static, Blocking>,
dma_channel: DmaChannel,
bitbang_spi: BitbangSpi,
}
struct BitbangSpi {
sclk: Output<'static>,
mosi: Output<'static>,
miso: Input<'static>,
cs: Output<'static>,
}
impl BitbangSpi {
fn new(
sclk: Output<'static>,
mosi: Output<'static>,
miso: Input<'static>,
cs: Output<'static>,
) -> Self {
Self {
sclk,
mosi,
miso,
cs,
}
}
fn assert_cs(&mut self) {
self.sclk.set_level(Level::Low);
self.cs.set_level(Level::Low);
}
fn deassert_cs(&mut self) {
self.sclk.set_level(Level::Low);
self.cs.set_level(Level::High);
}
// Mode 1, so sampled on the rising edge and set on the falling edge.
fn shift_bit(&mut self, bit: bool) -> bool {
self.mosi.set_level(Level::from(bit));
self.sclk.set_level(Level::High);
let miso = self.miso.level().into();
self.sclk.set_level(Level::Low);
miso
}
// Shift a byte out and in, MSB first.
fn shift_byte(&mut self, byte: u8) -> u8 {
let mut out = 0;
for i in 0..8 {
let shift = 7 - i;
out |= (self.shift_bit((byte >> shift) & 1 != 0) as u8) << shift;
}
out
}
fn transfer_buf(&mut self, rx: &mut [u8], tx: &[u8]) {
self.assert_cs();
for (tx, rx) in tx.iter().zip(rx.iter_mut()) {
*rx = self.shift_byte(*tx);
}
self.deassert_cs();
}
}
#[cfg(test)]
#[embedded_test::tests(default_timeout = 10, executor = esp_hal_embassy::Executor::new())]
mod tests {
use super::*;
#[init]
fn init() -> Context {
let peripherals = esp_hal::init(esp_hal::Config::default());
let (mosi_pin, miso_pin) = hil_test::i2c_pins!(peripherals);
let (sclk_pin, _) = hil_test::common_test_pins!(peripherals);
let cs_pin = hil_test::unconnected_pin!(peripherals);
cfg_if::cfg_if! {
if #[cfg(pdma)] {
let dma_channel = peripherals.DMA_SPI2;
} else {
let dma_channel = peripherals.DMA_CH0;
}
}
let mosi_gpio = Output::new(mosi_pin, Level::Low);
let cs_gpio = Output::new(cs_pin, Level::High);
let sclk_gpio = Output::new(sclk_pin, Level::Low);
let miso_gpio = Input::new(miso_pin, Pull::None);
let cs = cs_gpio.peripheral_input();
let sclk = sclk_gpio.peripheral_input();
let mosi = mosi_gpio.peripheral_input();
let miso = unsafe { miso_gpio.clone_unchecked() }.into_peripheral_output();
Context {
spi: Spi::new(peripherals.SPI2, SpiMode::Mode1)
.with_sck(sclk)
.with_mosi(mosi)
.with_miso(miso)
.with_cs(cs),
bitbang_spi: BitbangSpi::new(sclk_gpio, mosi_gpio, miso_gpio, cs_gpio),
dma_channel,
}
}
#[test]
fn test_basic(mut ctx: Context) {
const DMA_SIZE: usize = 32;
let (rx_buffer, rx_descriptors, tx_buffer, tx_descriptors) = dma_buffers!(DMA_SIZE);
let mut spi = ctx
.spi
.with_dma(ctx.dma_channel, rx_descriptors, tx_descriptors);
let slave_send = tx_buffer;
let slave_receive = rx_buffer;
// The transfer stops if the buffers are full, not when the master
// deasserts CS. Therefore, these need to be the same size as the DMA buffers.
let master_send = &mut [0u8; DMA_SIZE];
let master_receive = &mut [0xFFu8; DMA_SIZE];
for (i, v) in master_send.iter_mut().enumerate() {
*v = (i % 255) as u8;
}
for (i, v) in slave_send.iter_mut().enumerate() {
*v = (254 - (i % 255)) as u8;
}
slave_receive.fill(0xFF);
let transfer = spi.transfer(slave_receive, &slave_send).unwrap();
ctx.bitbang_spi.transfer_buf(master_receive, master_send);
transfer.wait().unwrap();
assert_eq!(slave_receive, master_send);
assert_eq!(master_receive, slave_send);
}
}