2023-02-08 04:41:22 +00:00
|
|
|
#include <furi.h>
|
2023-02-07 16:33:05 +00:00
|
|
|
#include <furi_hal_spi.h>
|
|
|
|
#include <furi_hal_resources.h>
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
#include <furi_hal_power.h>
|
2023-02-08 04:41:22 +00:00
|
|
|
#include <furi_hal_interrupt.h>
|
2021-08-12 08:48:05 +00:00
|
|
|
|
2023-02-08 04:41:22 +00:00
|
|
|
#include <stm32wbxx_ll_dma.h>
|
2021-08-12 08:48:05 +00:00
|
|
|
#include <stm32wbxx_ll_spi.h>
|
|
|
|
#include <stm32wbxx_ll_utils.h>
|
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2023-02-08 04:41:22 +00:00
|
|
|
#define TAG "FuriHalSpi"
|
|
|
|
|
|
|
|
#define SPI_DMA DMA2
|
|
|
|
#define SPI_DMA_RX_CHANNEL LL_DMA_CHANNEL_3
|
|
|
|
#define SPI_DMA_TX_CHANNEL LL_DMA_CHANNEL_4
|
|
|
|
#define SPI_DMA_RX_IRQ FuriHalInterruptIdDma2Ch3
|
|
|
|
#define SPI_DMA_TX_IRQ FuriHalInterruptIdDma2Ch4
|
|
|
|
#define SPI_DMA_RX_DEF SPI_DMA, SPI_DMA_RX_CHANNEL
|
|
|
|
#define SPI_DMA_TX_DEF SPI_DMA, SPI_DMA_TX_CHANNEL
|
|
|
|
|
|
|
|
// For simplicity, I assume that only one SPI DMA transaction can occur at a time.
|
|
|
|
static FuriSemaphore* spi_dma_lock = NULL;
|
|
|
|
static FuriSemaphore* spi_dma_completed = NULL;
|
|
|
|
|
|
|
|
void furi_hal_spi_dma_init() {
|
|
|
|
spi_dma_lock = furi_semaphore_alloc(1, 1);
|
|
|
|
spi_dma_completed = furi_semaphore_alloc(1, 1);
|
|
|
|
}
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
void furi_hal_spi_bus_init(FuriHalSpiBus* bus) {
|
2021-05-18 09:23:14 +00:00
|
|
|
furi_assert(bus);
|
2021-11-30 12:09:43 +00:00
|
|
|
bus->callback(bus, FuriHalSpiBusEventInit);
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
void furi_hal_spi_bus_deinit(FuriHalSpiBus* bus) {
|
2021-05-18 09:23:14 +00:00
|
|
|
furi_assert(bus);
|
2021-11-30 12:09:43 +00:00
|
|
|
bus->callback(bus, FuriHalSpiBusEventDeinit);
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
void furi_hal_spi_bus_handle_init(FuriHalSpiBusHandle* handle) {
|
|
|
|
furi_assert(handle);
|
|
|
|
handle->callback(handle, FuriHalSpiBusHandleEventInit);
|
|
|
|
}
|
2021-05-26 15:42:12 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
void furi_hal_spi_bus_handle_deinit(FuriHalSpiBusHandle* handle) {
|
|
|
|
furi_assert(handle);
|
|
|
|
handle->callback(handle, FuriHalSpiBusHandleEventDeinit);
|
2021-05-26 15:42:12 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
void furi_hal_spi_acquire(FuriHalSpiBusHandle* handle) {
|
|
|
|
furi_assert(handle);
|
|
|
|
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
furi_hal_power_insomnia_enter();
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
handle->bus->callback(handle->bus, FuriHalSpiBusEventLock);
|
|
|
|
handle->bus->callback(handle->bus, FuriHalSpiBusEventActivate);
|
|
|
|
|
|
|
|
furi_assert(handle->bus->current_handle == NULL);
|
|
|
|
|
|
|
|
handle->bus->current_handle = handle;
|
|
|
|
handle->callback(handle, FuriHalSpiBusHandleEventActivate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_spi_release(FuriHalSpiBusHandle* handle) {
|
|
|
|
furi_assert(handle);
|
|
|
|
furi_assert(handle->bus->current_handle == handle);
|
|
|
|
|
|
|
|
// Handle event and unset handle
|
|
|
|
handle->callback(handle, FuriHalSpiBusHandleEventDeactivate);
|
|
|
|
handle->bus->current_handle = NULL;
|
|
|
|
|
|
|
|
// Bus events
|
|
|
|
handle->bus->callback(handle->bus, FuriHalSpiBusEventDeactivate);
|
|
|
|
handle->bus->callback(handle->bus, FuriHalSpiBusEventUnlock);
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
|
|
|
furi_hal_power_insomnia_exit();
|
2021-11-30 12:09:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void furi_hal_spi_bus_end_txrx(FuriHalSpiBusHandle* handle, uint32_t timeout) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(timeout); // FIXME
|
2022-01-05 16:10:18 +00:00
|
|
|
while(LL_SPI_GetTxFIFOLevel(handle->bus->spi) != LL_SPI_TX_FIFO_EMPTY)
|
|
|
|
;
|
|
|
|
while(LL_SPI_IsActiveFlag_BSY(handle->bus->spi))
|
|
|
|
;
|
2021-11-30 12:09:43 +00:00
|
|
|
while(LL_SPI_GetRxFIFOLevel(handle->bus->spi) != LL_SPI_RX_FIFO_EMPTY) {
|
|
|
|
LL_SPI_ReceiveData8(handle->bus->spi);
|
2021-08-12 08:48:05 +00:00
|
|
|
}
|
2021-05-26 15:42:12 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
bool furi_hal_spi_bus_rx(
|
|
|
|
FuriHalSpiBusHandle* handle,
|
|
|
|
uint8_t* buffer,
|
|
|
|
size_t size,
|
|
|
|
uint32_t timeout) {
|
2021-11-30 12:09:43 +00:00
|
|
|
furi_assert(handle);
|
|
|
|
furi_assert(handle->bus->current_handle == handle);
|
2021-05-18 09:23:14 +00:00
|
|
|
furi_assert(buffer);
|
|
|
|
furi_assert(size > 0);
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
return furi_hal_spi_bus_trx(handle, buffer, buffer, size, timeout);
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
bool furi_hal_spi_bus_tx(
|
|
|
|
FuriHalSpiBusHandle* handle,
|
2023-02-09 04:58:01 +00:00
|
|
|
const uint8_t* buffer,
|
2022-01-05 16:10:18 +00:00
|
|
|
size_t size,
|
|
|
|
uint32_t timeout) {
|
2021-11-30 12:09:43 +00:00
|
|
|
furi_assert(handle);
|
|
|
|
furi_assert(handle->bus->current_handle == handle);
|
2021-05-18 09:23:14 +00:00
|
|
|
furi_assert(buffer);
|
|
|
|
furi_assert(size > 0);
|
2021-08-12 08:48:05 +00:00
|
|
|
bool ret = true;
|
|
|
|
|
|
|
|
while(size > 0) {
|
2022-01-05 16:10:18 +00:00
|
|
|
if(LL_SPI_IsActiveFlag_TXE(handle->bus->spi)) {
|
2021-11-30 12:09:43 +00:00
|
|
|
LL_SPI_TransmitData8(handle->bus->spi, *buffer);
|
2021-08-12 08:48:05 +00:00
|
|
|
buffer++;
|
|
|
|
size--;
|
|
|
|
}
|
|
|
|
}
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
furi_hal_spi_bus_end_txrx(handle, timeout);
|
|
|
|
LL_SPI_ClearFlag_OVR(handle->bus->spi);
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-08-12 08:48:05 +00:00
|
|
|
return ret;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
bool furi_hal_spi_bus_trx(
|
|
|
|
FuriHalSpiBusHandle* handle,
|
2023-02-09 04:58:01 +00:00
|
|
|
const uint8_t* tx_buffer,
|
2022-01-05 16:10:18 +00:00
|
|
|
uint8_t* rx_buffer,
|
|
|
|
size_t size,
|
|
|
|
uint32_t timeout) {
|
2021-11-30 12:09:43 +00:00
|
|
|
furi_assert(handle);
|
|
|
|
furi_assert(handle->bus->current_handle == handle);
|
2021-05-18 09:23:14 +00:00
|
|
|
furi_assert(size > 0);
|
|
|
|
|
2021-08-12 08:48:05 +00:00
|
|
|
bool ret = true;
|
|
|
|
size_t tx_size = size;
|
|
|
|
bool tx_allowed = true;
|
|
|
|
|
|
|
|
while(size > 0) {
|
2021-11-30 12:09:43 +00:00
|
|
|
if(tx_size > 0 && LL_SPI_IsActiveFlag_TXE(handle->bus->spi) && tx_allowed) {
|
2022-08-27 04:25:47 +00:00
|
|
|
if(tx_buffer) {
|
|
|
|
LL_SPI_TransmitData8(handle->bus->spi, *tx_buffer);
|
|
|
|
tx_buffer++;
|
|
|
|
} else {
|
|
|
|
LL_SPI_TransmitData8(handle->bus->spi, 0xFF);
|
|
|
|
}
|
2021-08-12 08:48:05 +00:00
|
|
|
tx_size--;
|
|
|
|
tx_allowed = false;
|
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
if(LL_SPI_IsActiveFlag_RXNE(handle->bus->spi)) {
|
2022-08-27 04:25:47 +00:00
|
|
|
if(rx_buffer) {
|
|
|
|
*rx_buffer = LL_SPI_ReceiveData8(handle->bus->spi);
|
|
|
|
rx_buffer++;
|
|
|
|
} else {
|
|
|
|
LL_SPI_ReceiveData8(handle->bus->spi);
|
|
|
|
}
|
2021-08-12 08:48:05 +00:00
|
|
|
size--;
|
|
|
|
tx_allowed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-30 12:09:43 +00:00
|
|
|
furi_hal_spi_bus_end_txrx(handle, timeout);
|
2021-05-18 09:23:14 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2023-02-08 04:41:22 +00:00
|
|
|
|
|
|
|
static void spi_dma_isr() {
|
|
|
|
#if SPI_DMA_RX_CHANNEL == LL_DMA_CHANNEL_3
|
|
|
|
if(LL_DMA_IsActiveFlag_TC3(SPI_DMA) && LL_DMA_IsEnabledIT_TC(SPI_DMA_RX_DEF)) {
|
|
|
|
LL_DMA_ClearFlag_TC3(SPI_DMA);
|
|
|
|
furi_check(furi_semaphore_release(spi_dma_completed) == FuriStatusOk);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#error Update this code. Would you kindly?
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPI_DMA_TX_CHANNEL == LL_DMA_CHANNEL_4
|
|
|
|
if(LL_DMA_IsActiveFlag_TC4(SPI_DMA) && LL_DMA_IsEnabledIT_TC(SPI_DMA_TX_DEF)) {
|
|
|
|
LL_DMA_ClearFlag_TC4(SPI_DMA);
|
|
|
|
furi_check(furi_semaphore_release(spi_dma_completed) == FuriStatusOk);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#error Update this code. Would you kindly?
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_spi_bus_trx_dma(
|
|
|
|
FuriHalSpiBusHandle* handle,
|
|
|
|
uint8_t* tx_buffer,
|
|
|
|
uint8_t* rx_buffer,
|
|
|
|
size_t size,
|
|
|
|
uint32_t timeout_ms) {
|
|
|
|
furi_assert(handle);
|
|
|
|
furi_assert(handle->bus->current_handle == handle);
|
|
|
|
furi_assert(size > 0);
|
|
|
|
|
|
|
|
// If scheduler is not running, use blocking mode
|
|
|
|
if(xTaskGetSchedulerState() != taskSCHEDULER_RUNNING) {
|
|
|
|
return furi_hal_spi_bus_trx(handle, tx_buffer, rx_buffer, size, timeout_ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lock DMA
|
|
|
|
furi_check(furi_semaphore_acquire(spi_dma_lock, FuriWaitForever) == FuriStatusOk);
|
|
|
|
|
|
|
|
const uint32_t dma_dummy_u32 = 0xFFFFFFFF;
|
|
|
|
|
|
|
|
bool ret = true;
|
|
|
|
SPI_TypeDef* spi = handle->bus->spi;
|
|
|
|
uint32_t dma_rx_req;
|
|
|
|
uint32_t dma_tx_req;
|
|
|
|
|
|
|
|
if(spi == SPI1) {
|
|
|
|
dma_rx_req = LL_DMAMUX_REQ_SPI1_RX;
|
|
|
|
dma_tx_req = LL_DMAMUX_REQ_SPI1_TX;
|
|
|
|
} else if(spi == SPI2) {
|
|
|
|
dma_rx_req = LL_DMAMUX_REQ_SPI2_RX;
|
|
|
|
dma_tx_req = LL_DMAMUX_REQ_SPI2_TX;
|
|
|
|
} else {
|
|
|
|
furi_crash(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rx_buffer == NULL) {
|
|
|
|
// Only TX mode, do not use RX channel
|
|
|
|
|
|
|
|
LL_DMA_InitTypeDef dma_config = {0};
|
|
|
|
dma_config.PeriphOrM2MSrcAddress = (uint32_t) & (spi->DR);
|
|
|
|
dma_config.MemoryOrM2MDstAddress = (uint32_t)tx_buffer;
|
|
|
|
dma_config.Direction = LL_DMA_DIRECTION_MEMORY_TO_PERIPH;
|
|
|
|
dma_config.Mode = LL_DMA_MODE_NORMAL;
|
|
|
|
dma_config.PeriphOrM2MSrcIncMode = LL_DMA_PERIPH_NOINCREMENT;
|
|
|
|
dma_config.MemoryOrM2MDstIncMode = LL_DMA_MEMORY_INCREMENT;
|
|
|
|
dma_config.PeriphOrM2MSrcDataSize = LL_DMA_PDATAALIGN_BYTE;
|
|
|
|
dma_config.MemoryOrM2MDstDataSize = LL_DMA_MDATAALIGN_BYTE;
|
|
|
|
dma_config.NbData = size;
|
|
|
|
dma_config.PeriphRequest = dma_tx_req;
|
|
|
|
dma_config.Priority = LL_DMA_PRIORITY_MEDIUM;
|
|
|
|
LL_DMA_Init(SPI_DMA_TX_DEF, &dma_config);
|
|
|
|
|
|
|
|
#if SPI_DMA_TX_CHANNEL == LL_DMA_CHANNEL_4
|
|
|
|
LL_DMA_ClearFlag_TC4(SPI_DMA);
|
|
|
|
#else
|
|
|
|
#error Update this code. Would you kindly?
|
|
|
|
#endif
|
|
|
|
|
|
|
|
furi_hal_interrupt_set_isr(SPI_DMA_TX_IRQ, spi_dma_isr, NULL);
|
|
|
|
|
|
|
|
bool dma_tx_was_enabled = LL_SPI_IsEnabledDMAReq_TX(spi);
|
|
|
|
if(!dma_tx_was_enabled) {
|
|
|
|
LL_SPI_EnableDMAReq_TX(spi);
|
|
|
|
}
|
|
|
|
|
|
|
|
// acquire semaphore before enabling DMA
|
|
|
|
furi_check(furi_semaphore_acquire(spi_dma_completed, timeout_ms) == FuriStatusOk);
|
|
|
|
|
|
|
|
LL_DMA_EnableIT_TC(SPI_DMA_TX_DEF);
|
|
|
|
LL_DMA_EnableChannel(SPI_DMA_TX_DEF);
|
|
|
|
|
|
|
|
// and wait for it to be released (DMA transfer complete)
|
|
|
|
if(furi_semaphore_acquire(spi_dma_completed, timeout_ms) != FuriStatusOk) {
|
|
|
|
ret = false;
|
|
|
|
FURI_LOG_E(TAG, "DMA timeout\r\n");
|
|
|
|
}
|
|
|
|
// release semaphore, because we are using it as a flag
|
|
|
|
furi_semaphore_release(spi_dma_completed);
|
|
|
|
|
|
|
|
LL_DMA_DisableIT_TC(SPI_DMA_TX_DEF);
|
|
|
|
LL_DMA_DisableChannel(SPI_DMA_TX_DEF);
|
|
|
|
if(!dma_tx_was_enabled) {
|
|
|
|
LL_SPI_DisableDMAReq_TX(spi);
|
|
|
|
}
|
|
|
|
furi_hal_interrupt_set_isr(SPI_DMA_TX_IRQ, NULL, NULL);
|
|
|
|
|
|
|
|
LL_DMA_DeInit(SPI_DMA_TX_DEF);
|
|
|
|
} else {
|
|
|
|
// TRX or RX mode, use both channels
|
|
|
|
uint32_t tx_mem_increase_mode;
|
|
|
|
|
|
|
|
if(tx_buffer == NULL) {
|
|
|
|
// RX mode, use dummy data instead of TX buffer
|
|
|
|
tx_buffer = (uint8_t*)&dma_dummy_u32;
|
|
|
|
tx_mem_increase_mode = LL_DMA_PERIPH_NOINCREMENT;
|
|
|
|
} else {
|
|
|
|
tx_mem_increase_mode = LL_DMA_MEMORY_INCREMENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_DMA_InitTypeDef dma_config = {0};
|
|
|
|
dma_config.PeriphOrM2MSrcAddress = (uint32_t) & (spi->DR);
|
|
|
|
dma_config.MemoryOrM2MDstAddress = (uint32_t)tx_buffer;
|
|
|
|
dma_config.Direction = LL_DMA_DIRECTION_MEMORY_TO_PERIPH;
|
|
|
|
dma_config.Mode = LL_DMA_MODE_NORMAL;
|
|
|
|
dma_config.PeriphOrM2MSrcIncMode = LL_DMA_PERIPH_NOINCREMENT;
|
|
|
|
dma_config.MemoryOrM2MDstIncMode = tx_mem_increase_mode;
|
|
|
|
dma_config.PeriphOrM2MSrcDataSize = LL_DMA_PDATAALIGN_BYTE;
|
|
|
|
dma_config.MemoryOrM2MDstDataSize = LL_DMA_MDATAALIGN_BYTE;
|
|
|
|
dma_config.NbData = size;
|
|
|
|
dma_config.PeriphRequest = dma_tx_req;
|
|
|
|
dma_config.Priority = LL_DMA_PRIORITY_MEDIUM;
|
|
|
|
LL_DMA_Init(SPI_DMA_TX_DEF, &dma_config);
|
|
|
|
|
|
|
|
dma_config.PeriphOrM2MSrcAddress = (uint32_t) & (spi->DR);
|
|
|
|
dma_config.MemoryOrM2MDstAddress = (uint32_t)rx_buffer;
|
|
|
|
dma_config.Direction = LL_DMA_DIRECTION_PERIPH_TO_MEMORY;
|
|
|
|
dma_config.Mode = LL_DMA_MODE_NORMAL;
|
|
|
|
dma_config.PeriphOrM2MSrcIncMode = LL_DMA_PERIPH_NOINCREMENT;
|
|
|
|
dma_config.MemoryOrM2MDstIncMode = LL_DMA_MEMORY_INCREMENT;
|
|
|
|
dma_config.PeriphOrM2MSrcDataSize = LL_DMA_PDATAALIGN_BYTE;
|
|
|
|
dma_config.MemoryOrM2MDstDataSize = LL_DMA_MDATAALIGN_BYTE;
|
|
|
|
dma_config.NbData = size;
|
|
|
|
dma_config.PeriphRequest = dma_rx_req;
|
|
|
|
dma_config.Priority = LL_DMA_PRIORITY_MEDIUM;
|
|
|
|
LL_DMA_Init(SPI_DMA_RX_DEF, &dma_config);
|
|
|
|
|
|
|
|
#if SPI_DMA_RX_CHANNEL == LL_DMA_CHANNEL_3
|
|
|
|
LL_DMA_ClearFlag_TC3(SPI_DMA);
|
|
|
|
#else
|
|
|
|
#error Update this code. Would you kindly?
|
|
|
|
#endif
|
|
|
|
|
|
|
|
furi_hal_interrupt_set_isr(SPI_DMA_RX_IRQ, spi_dma_isr, NULL);
|
|
|
|
|
|
|
|
bool dma_tx_was_enabled = LL_SPI_IsEnabledDMAReq_TX(spi);
|
|
|
|
bool dma_rx_was_enabled = LL_SPI_IsEnabledDMAReq_RX(spi);
|
|
|
|
|
|
|
|
if(!dma_tx_was_enabled) {
|
|
|
|
LL_SPI_EnableDMAReq_TX(spi);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!dma_rx_was_enabled) {
|
|
|
|
LL_SPI_EnableDMAReq_RX(spi);
|
|
|
|
}
|
|
|
|
|
|
|
|
// acquire semaphore before enabling DMA
|
|
|
|
furi_check(furi_semaphore_acquire(spi_dma_completed, timeout_ms) == FuriStatusOk);
|
|
|
|
|
|
|
|
LL_DMA_EnableIT_TC(SPI_DMA_RX_DEF);
|
|
|
|
LL_DMA_EnableChannel(SPI_DMA_RX_DEF);
|
|
|
|
LL_DMA_EnableChannel(SPI_DMA_TX_DEF);
|
|
|
|
|
|
|
|
// and wait for it to be released (DMA transfer complete)
|
|
|
|
if(furi_semaphore_acquire(spi_dma_completed, timeout_ms) != FuriStatusOk) {
|
|
|
|
ret = false;
|
|
|
|
FURI_LOG_E(TAG, "DMA timeout\r\n");
|
|
|
|
}
|
|
|
|
// release semaphore, because we are using it as a flag
|
|
|
|
furi_semaphore_release(spi_dma_completed);
|
|
|
|
|
|
|
|
LL_DMA_DisableIT_TC(SPI_DMA_RX_DEF);
|
|
|
|
|
|
|
|
LL_DMA_DisableChannel(SPI_DMA_TX_DEF);
|
|
|
|
LL_DMA_DisableChannel(SPI_DMA_RX_DEF);
|
|
|
|
|
|
|
|
if(!dma_tx_was_enabled) {
|
|
|
|
LL_SPI_DisableDMAReq_TX(spi);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!dma_rx_was_enabled) {
|
|
|
|
LL_SPI_DisableDMAReq_RX(spi);
|
|
|
|
}
|
|
|
|
|
|
|
|
furi_hal_interrupt_set_isr(SPI_DMA_RX_IRQ, NULL, NULL);
|
|
|
|
|
|
|
|
LL_DMA_DeInit(SPI_DMA_TX_DEF);
|
|
|
|
LL_DMA_DeInit(SPI_DMA_RX_DEF);
|
|
|
|
}
|
|
|
|
|
|
|
|
furi_hal_spi_bus_end_txrx(handle, timeout_ms);
|
|
|
|
|
|
|
|
furi_check(furi_semaphore_release(spi_dma_lock) == FuriStatusOk);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|