2020-11-13 17:47:44 +08:00
|
|
|
///! Stabilizer DAC management interface
|
2020-11-11 19:09:27 +08:00
|
|
|
///!
|
2020-12-15 23:46:12 +08:00
|
|
|
///! # Design
|
|
|
|
///!
|
|
|
|
///! Stabilizer DACs are connected to the MCU via a simplex, SPI-compatible interface. Each DAC
|
|
|
|
///! accepts a 16-bit output code.
|
|
|
|
///!
|
|
|
|
///! In order to maximize CPU processing time, the DAC code updates are offloaded to hardware using
|
|
|
|
///! a timer compare channel, DMA stream, and the DAC SPI interface.
|
|
|
|
///!
|
|
|
|
///! The timer comparison channel is configured to generate a DMA request whenever the comparison
|
|
|
|
///! occurs. Thus, whenever a comparison happens, a single DAC code can be written to the output. By
|
|
|
|
///! configuring a DMA stream for a number of successive DAC codes, hardware can regularly update
|
|
|
|
///! the DAC without requiring the CPU.
|
|
|
|
///!
|
2020-12-17 21:32:53 +08:00
|
|
|
///! In order to ensure alignment between the ADC sample batches and DAC output code batches, a DAC
|
2021-01-06 22:08:07 +08:00
|
|
|
///! output batch is always exactly 2 batches after the ADC batch that generated it.
|
2020-12-17 21:32:53 +08:00
|
|
|
///!
|
|
|
|
///! The DMA transfer for the DAC output codes utilizes a double-buffer mode to avoid losing any
|
|
|
|
///! transfer events generated by the timer (for example, when 2 update cycles occur before the DMA
|
2021-01-06 22:08:07 +08:00
|
|
|
///! transfer completion is handled). In this mode, by the time DMA swaps buffers, there is always a valid buffer in the
|
2020-12-17 21:32:53 +08:00
|
|
|
///! "next-transfer" double-buffer location for the DMA transfer. Once a transfer completes,
|
2021-01-06 22:08:07 +08:00
|
|
|
///! software then has exactly one batch duration to fill the next buffer before its
|
2021-01-06 22:34:12 +08:00
|
|
|
///! transfer begins. If software does not meet this deadline, old data will be repeatedly generated
|
|
|
|
///! on the output and output will be shifted by one batch.
|
2020-12-17 21:32:53 +08:00
|
|
|
///!
|
2020-12-15 23:46:12 +08:00
|
|
|
///! ## Multiple Samples to Single DAC Codes
|
|
|
|
///!
|
|
|
|
///! For some applications, it may be desirable to generate a single DAC code from multiple ADC
|
|
|
|
///! samples. In order to maintain timing characteristics between ADC samples and DAC code outputs,
|
|
|
|
///! applications are required to generate one DAC code for each ADC sample. To accomodate mapping
|
|
|
|
///! multiple inputs to a single output, the output code can be repeated a number of times in the
|
|
|
|
///! output buffer corresponding with the number of input samples that were used to generate it.
|
|
|
|
///!
|
|
|
|
///!
|
|
|
|
///! # Note
|
|
|
|
///!
|
|
|
|
///! There is a very small amount of latency between updating the two DACs due to bus matrix
|
|
|
|
///! priority. As such, one of the DACs will be updated marginally earlier before the other because
|
|
|
|
///! the DMA requests are generated simultaneously. This can be avoided by providing a known offset
|
|
|
|
///! to other DMA requests, which can be completed by setting e.g. DAC0's comparison to a
|
|
|
|
///! counter value of 2 and DAC1's comparison to a counter value of 3. This will have the effect of
|
|
|
|
///! generating the DAC updates with a known latency of 1 timer tick to each other and prevent the
|
|
|
|
///! DMAs from racing for the bus. As implemented, the DMA channels utilize natural priority of the
|
|
|
|
///! DMA channels to arbitrate which transfer occurs first.
|
|
|
|
///!
|
|
|
|
///!
|
2020-12-17 21:27:47 +08:00
|
|
|
///! # Limitations
|
2020-12-15 23:46:12 +08:00
|
|
|
///!
|
2020-12-17 21:27:47 +08:00
|
|
|
///! While double-buffered mode is used for DMA to avoid lost DAC-update events, there is no check
|
|
|
|
///! for re-use of a previously provided DAC output buffer. It is assumed that the DMA request is
|
|
|
|
///! served promptly after the transfer completes.
|
2020-11-13 17:47:44 +08:00
|
|
|
use super::{
|
2020-12-08 00:58:36 +08:00
|
|
|
hal, timers, DMAReq, DmaConfig, MemoryToPeripheral, TargetAddress,
|
2020-11-13 17:47:44 +08:00
|
|
|
Transfer, SAMPLE_BUFFER_SIZE,
|
|
|
|
};
|
2020-11-03 16:41:14 +08:00
|
|
|
|
2020-11-13 17:47:44 +08:00
|
|
|
// The following global buffers are used for the DAC code DMA transfers. Two buffers are used for
|
|
|
|
// each transfer in a ping-pong buffer configuration (one is being prepared while the other is being
|
|
|
|
// processed). Note that the contents of AXI SRAM is uninitialized, so the buffer contents on
|
2020-11-30 22:04:31 +08:00
|
|
|
// startup are undefined. The dimensions are `ADC_BUF[adc_index][ping_pong_index][sample_index]`.
|
2020-11-13 17:47:44 +08:00
|
|
|
#[link_section = ".axisram.buffers"]
|
2020-12-17 21:27:47 +08:00
|
|
|
static mut DAC_BUF: [[[u16; SAMPLE_BUFFER_SIZE]; 3]; 2] =
|
|
|
|
[[[0; SAMPLE_BUFFER_SIZE]; 3]; 2];
|
2020-11-26 18:16:08 +08:00
|
|
|
|
|
|
|
macro_rules! dac_output {
|
|
|
|
($name:ident, $index:literal, $data_stream:ident,
|
|
|
|
$spi:ident, $trigger_channel:ident, $dma_req:ident) => {
|
2020-11-26 21:40:24 +08:00
|
|
|
/// $spi is used as a type for indicating a DMA transfer into the SPI TX FIFO
|
2020-11-26 18:16:08 +08:00
|
|
|
struct $spi {
|
|
|
|
spi: hal::spi::Spi<hal::stm32::$spi, hal::spi::Disabled, u16>,
|
2020-12-08 00:58:36 +08:00
|
|
|
_channel: timers::tim2::$trigger_channel,
|
2020-11-03 16:41:45 +08:00
|
|
|
}
|
2020-11-03 16:41:14 +08:00
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
impl $spi {
|
|
|
|
pub fn new(
|
2020-12-08 00:58:36 +08:00
|
|
|
_channel: timers::tim2::$trigger_channel,
|
2020-11-26 18:16:08 +08:00
|
|
|
spi: hal::spi::Spi<hal::stm32::$spi, hal::spi::Disabled, u16>,
|
|
|
|
) -> Self {
|
|
|
|
Self { _channel, spi }
|
|
|
|
}
|
2020-12-17 21:09:18 +08:00
|
|
|
|
2020-12-17 21:10:36 +08:00
|
|
|
/// Start the SPI and begin operating in a DMA-driven transfer mode.
|
2020-12-17 21:09:18 +08:00
|
|
|
pub fn start_dma(&mut self) {
|
|
|
|
// Allow the SPI FIFOs to operate using only DMA data channels.
|
|
|
|
self.spi.enable_dma_tx();
|
|
|
|
|
|
|
|
// Enable SPI and start it in infinite transaction mode.
|
|
|
|
self.spi.inner().cr1.modify(|_, w| w.spe().set_bit());
|
|
|
|
self.spi.inner().cr1.modify(|_, w| w.cstart().started());
|
|
|
|
}
|
2020-11-13 17:47:44 +08:00
|
|
|
}
|
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
// Note(unsafe): This is safe because the DMA request line is logically owned by this module.
|
|
|
|
// Additionally, the SPI is owned by this structure and is known to be configured for u16 word
|
|
|
|
// sizes.
|
|
|
|
unsafe impl TargetAddress<MemoryToPeripheral> for $spi {
|
|
|
|
/// SPI is configured to operate using 16-bit transfer words.
|
|
|
|
type MemSize = u16;
|
2020-11-13 17:47:44 +08:00
|
|
|
|
2020-11-26 22:41:19 +08:00
|
|
|
/// SPI DMA requests are generated whenever TIM2 CHx ($dma_req) comparison occurs.
|
2020-11-26 18:16:08 +08:00
|
|
|
const REQUEST_LINE: Option<u8> = Some(DMAReq::$dma_req as u8);
|
2020-11-13 17:47:44 +08:00
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
/// Whenever the DMA request occurs, it should write into SPI's TX FIFO.
|
2020-12-17 21:27:47 +08:00
|
|
|
fn address(&self) -> usize {
|
|
|
|
&self.spi.inner().txdr as *const _ as usize
|
2020-11-26 18:16:08 +08:00
|
|
|
}
|
2020-11-13 17:47:44 +08:00
|
|
|
}
|
|
|
|
|
2020-11-26 21:40:24 +08:00
|
|
|
/// Represents data associated with DAC.
|
2020-11-26 18:16:08 +08:00
|
|
|
pub struct $name {
|
|
|
|
next_buffer: Option<&'static mut [u16; SAMPLE_BUFFER_SIZE]>,
|
|
|
|
// Note: SPI TX functionality may not be used from this structure to ensure safety with DMA.
|
|
|
|
transfer: Transfer<
|
|
|
|
hal::dma::dma::$data_stream<hal::stm32::DMA1>,
|
|
|
|
$spi,
|
|
|
|
MemoryToPeripheral,
|
|
|
|
&'static mut [u16; SAMPLE_BUFFER_SIZE],
|
|
|
|
>,
|
2020-11-03 16:41:14 +08:00
|
|
|
}
|
2020-11-13 17:47:44 +08:00
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
impl $name {
|
|
|
|
/// Construct the DAC output channel.
|
|
|
|
///
|
|
|
|
/// # Args
|
|
|
|
/// * `spi` - The SPI interface used to communicate with the ADC.
|
|
|
|
/// * `stream` - The DMA stream used to write DAC codes over SPI.
|
|
|
|
/// * `trigger_channel` - The sampling timer output compare channel for update triggers.
|
|
|
|
pub fn new(
|
|
|
|
spi: hal::spi::Spi<hal::stm32::$spi, hal::spi::Enabled, u16>,
|
|
|
|
stream: hal::dma::dma::$data_stream<hal::stm32::DMA1>,
|
2020-12-08 00:58:36 +08:00
|
|
|
trigger_channel: timers::tim2::$trigger_channel,
|
2020-11-26 18:16:08 +08:00
|
|
|
) -> Self {
|
|
|
|
// Generate DMA events when an output compare of the timer hitting zero (timer roll over)
|
|
|
|
// occurs.
|
|
|
|
trigger_channel.listen_dma();
|
|
|
|
trigger_channel.to_output_compare(0);
|
|
|
|
|
|
|
|
// The stream constantly writes to the TX FIFO to write new update codes.
|
|
|
|
let trigger_config = DmaConfig::default()
|
|
|
|
.memory_increment(true)
|
2020-12-17 21:27:47 +08:00
|
|
|
.double_buffer(true)
|
2020-11-26 18:16:08 +08:00
|
|
|
.peripheral_increment(false);
|
|
|
|
|
|
|
|
// Listen for any potential SPI error signals, which may indicate that we are not generating
|
|
|
|
// update codes.
|
|
|
|
let mut spi = spi.disable();
|
|
|
|
spi.listen(hal::spi::Event::Error);
|
|
|
|
|
2020-12-15 23:46:12 +08:00
|
|
|
// AXISRAM is uninitialized. As such, we manually zero-initialize it here before
|
|
|
|
// starting the transfer.
|
2020-12-17 21:11:28 +08:00
|
|
|
// Note(unsafe): We currently own all DAC_BUF[index] buffers and are not using them
|
|
|
|
// elsewhere, so it is safe to access them here.
|
2020-12-17 21:09:18 +08:00
|
|
|
for buf in unsafe { DAC_BUF[$index].iter_mut() } {
|
|
|
|
for byte in buf.iter_mut() {
|
|
|
|
*byte = 0;
|
|
|
|
}
|
2020-12-15 23:46:12 +08:00
|
|
|
}
|
2020-11-26 18:16:08 +08:00
|
|
|
|
|
|
|
// Construct the trigger stream to write from memory to the peripheral.
|
2020-12-17 21:09:18 +08:00
|
|
|
let mut transfer: Transfer<_, _, MemoryToPeripheral, _> =
|
2020-11-26 18:16:08 +08:00
|
|
|
Transfer::init(
|
|
|
|
stream,
|
|
|
|
$spi::new(trigger_channel, spi),
|
|
|
|
// Note(unsafe): This buffer is only used once and provided for the DMA transfer.
|
|
|
|
unsafe { &mut DAC_BUF[$index][0] },
|
2020-12-17 21:27:47 +08:00
|
|
|
// Note(unsafe): This buffer is only used once and provided for the DMA transfer.
|
|
|
|
unsafe { Some(&mut DAC_BUF[$index][1]) },
|
2020-11-26 18:16:08 +08:00
|
|
|
trigger_config,
|
|
|
|
);
|
|
|
|
|
2020-12-17 21:09:18 +08:00
|
|
|
transfer.start(|spi| spi.start_dma());
|
2020-12-15 23:46:12 +08:00
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
Self {
|
|
|
|
transfer,
|
|
|
|
// Note(unsafe): This buffer is only used once and provided for the next DMA transfer.
|
2020-12-17 21:27:47 +08:00
|
|
|
next_buffer: unsafe { Some(&mut DAC_BUF[$index][2]) },
|
2020-11-26 18:16:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 20:51:39 +08:00
|
|
|
/// Acquire the next output buffer to populate it with DAC codes.
|
2020-12-17 21:09:18 +08:00
|
|
|
pub fn acquire_buffer(&mut self) -> &mut [u16; SAMPLE_BUFFER_SIZE] {
|
2020-12-15 23:46:12 +08:00
|
|
|
// Note: If a device hangs up, check that this conditional is passing correctly, as
|
|
|
|
// there is no time-out checks here in the interest of execution speed.
|
|
|
|
while !self.transfer.get_transfer_complete_flag() {}
|
2020-11-26 18:16:08 +08:00
|
|
|
|
2020-12-17 21:09:18 +08:00
|
|
|
let next_buffer = self.next_buffer.take().unwrap();
|
|
|
|
|
2020-11-26 18:16:08 +08:00
|
|
|
// Start the next transfer.
|
2020-12-08 00:29:36 +08:00
|
|
|
let (prev_buffer, _, _) =
|
2020-11-26 18:16:08 +08:00
|
|
|
self.transfer.next_transfer(next_buffer).unwrap();
|
|
|
|
|
2020-11-26 20:51:39 +08:00
|
|
|
// .unwrap_none() https://github.com/rust-lang/rust/issues/62633
|
2020-11-26 18:16:08 +08:00
|
|
|
self.next_buffer.replace(prev_buffer);
|
2020-12-17 21:09:18 +08:00
|
|
|
|
|
|
|
self.next_buffer.as_mut().unwrap()
|
2020-11-26 18:16:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2020-11-03 16:41:14 +08:00
|
|
|
}
|
2020-11-26 18:16:08 +08:00
|
|
|
|
2021-01-11 19:31:15 +08:00
|
|
|
dac_output!(Dac0Output, 0, Stream6, SPI4, Channel3, TIM2_CH3);
|
|
|
|
dac_output!(Dac1Output, 1, Stream7, SPI5, Channel4, TIM2_CH4);
|