#ifndef FSFW_HAL_STM32H7_SPI_SPICOMIF_H_ #define FSFW_HAL_STM32H7_SPI_SPICOMIF_H_ #include "fsfw/tasks/SemaphoreIF.h" #include "fsfw/devicehandlers/DeviceCommunicationIF.h" #include "fsfw/objectmanager/SystemObject.h" #include "fsfw/osal/FreeRTOS/BinarySemaphore.h" #include "fsfw_hal/stm32h7/spi/spiDefinitions.h" #include "stm32h7xx_hal_spi.h" #include "stm32h743xx.h" #include #include class SpiCookie; enum class TransferStates { IDLE, WAIT, SUCCESS, FAILURE }; class SpiComIF: public SystemObject, public DeviceCommunicationIF { public: /** * Create a SPI communication interface for the given SPI peripheral (spiInstance) * @param objectId * @param spiInstance * @param spiHandle * @param transferMode */ SpiComIF(object_id_t objectId, SPI_TypeDef* spiInstance, SPI_HandleTypeDef* spiHandle, spi::TransferModes transferMode); /** * Allows the user to disable cache maintenance on the TX buffer. This can be done if the * TX buffers are places and MPU protected properly like specified in this link: * https://community.st.com/s/article/FAQ-DMA-is-not-working-on-STM32H7-devices * The cache maintenace is enabled by default. * @param enable */ void configureCacheMaintenanceOnTxBuffer(bool enable); void setDefaultPollingTimeout(dur_millis_t timeout); /** * Add the DMA handles. These need to be set in the DMA transfer mode is used * @param txHandle * @param rxHandle */ void addDmaHandles(DMA_HandleTypeDef* txHandle, DMA_HandleTypeDef* rxHandle); ReturnValue_t initialize() override; protected: // DeviceCommunicationIF overrides virtual ReturnValue_t initializeInterface(CookieIF * cookie) override; virtual ReturnValue_t sendMessage(CookieIF *cookie, const uint8_t * sendData, size_t sendLen) override; virtual ReturnValue_t getSendSuccess(CookieIF *cookie) override; virtual ReturnValue_t requestReceiveMessage(CookieIF *cookie, size_t requestLen) override; virtual ReturnValue_t readReceivedMessage(CookieIF *cookie, uint8_t **buffer, size_t *size) override; private: struct SpiInstance { SpiInstance(size_t maxRecvSize): replyBuffer(std::vector(maxRecvSize)) {} std::vector replyBuffer; size_t currentTransferLen = 0; }; uint32_t defaultPollingTimeout = 50; spi::TransferModes transferMode; SPI_HandleTypeDef* spiHandle; MutexIF::TimeoutType timeoutType = MutexIF::TimeoutType::WAITING; dur_millis_t timeoutMs = 20; BinarySemaphore* spiSemaphore = nullptr; MutexIF* spiMutex = nullptr; bool cacheMaintenanceOnTxBuffer = true; using SpiDeviceMap = std::map; using SpiDeviceMapIter = SpiDeviceMap::iterator; GPIO_TypeDef* currentGpioPort = nullptr; uint16_t currentGpioPin = 0; uint8_t* currentRecvPtr = nullptr; size_t currentRecvBuffSize = 0; volatile TransferStates transferState = TransferStates::IDLE; SpiDeviceMap spiDeviceMap; ReturnValue_t handlePollingSendOperation(uint8_t* recvPtr, SpiCookie* spiCookie, const uint8_t * sendData, size_t sendLen); ReturnValue_t handleInterruptSendOperation(uint8_t* recvPtr, SpiCookie* spiCookie, const uint8_t * sendData, size_t sendLen); ReturnValue_t handleDmaSendOperation(uint8_t* recvPtr, SpiCookie* spiCookie, const uint8_t * sendData, size_t sendLen); ReturnValue_t handleIrqSendOperation(uint8_t* recvPtr, SpiCookie* spiCookie, const uint8_t * sendData, size_t sendLen); ReturnValue_t genericIrqSendSetup(uint8_t* recvPtr, SpiCookie* spiCookie, const uint8_t * sendData, size_t sendLen); ReturnValue_t halErrorHandler(HAL_StatusTypeDef status); static void spiTransferTxCompleteCallback(SPI_HandleTypeDef *hspi, void* args); static void spiTransferRxCompleteCallback(SPI_HandleTypeDef *hspi, void* args); static void spiTransferCompleteCallback(SPI_HandleTypeDef *hspi, void* args); static void spiTransferErrorCallback(SPI_HandleTypeDef *hspi, void* args); static void genericIrqHandler(SpiComIF* comIF, TransferStates targetState); }; #endif /* FSFW_HAL_STM32H7_SPI_SPICOMIF_H_ */