2021-02-23 11:31:50 +01:00
|
|
|
#include "SpiComIF.h"
|
2021-03-06 18:12:50 +01:00
|
|
|
#include <OBSWConfig.h>
|
2021-02-23 11:31:50 +01:00
|
|
|
|
2021-02-23 13:34:02 +01:00
|
|
|
#include <linux/utility/Utility.h>
|
2021-02-23 11:31:50 +01:00
|
|
|
#include <linux/spi/SpiCookie.h>
|
2021-02-23 13:34:02 +01:00
|
|
|
|
2021-02-23 11:31:50 +01:00
|
|
|
#include <fsfw/ipc/MutexFactory.h>
|
2021-03-19 15:52:39 +01:00
|
|
|
#include <fsfw/ipc/MutexGuard.h>
|
2021-02-24 00:24:14 +01:00
|
|
|
#include <fsfw/globalfunctions/arrayprinter.h>
|
2021-02-23 13:34:02 +01:00
|
|
|
|
|
|
|
#include <linux/spi/spidev.h>
|
2021-02-23 11:31:50 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/ioctl.h>
|
2021-02-23 12:13:04 +01:00
|
|
|
|
2021-02-23 13:34:02 +01:00
|
|
|
#include <cerrno>
|
2021-02-23 11:31:50 +01:00
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
SpiComIF::SpiComIF(object_id_t objectId, GpioIF* gpioComIF): SystemObject(objectId),
|
|
|
|
gpioComIF(gpioComIF) {
|
|
|
|
if(gpioComIF == nullptr) {
|
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::error << "SpiComIF::SpiComIF: GPIO communication interface invalid!" << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printError("SpiComIF::SpiComIF: GPIO communication interface invalid!\n");
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
|
|
|
}
|
|
|
|
|
|
|
|
spiMutex = MutexFactory::instance()->createMutex();
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::initializeInterface(CookieIF *cookie) {
|
2021-02-24 11:16:33 +01:00
|
|
|
int retval = 0;
|
2021-02-23 11:31:50 +01:00
|
|
|
SpiCookie* spiCookie = dynamic_cast<SpiCookie*>(cookie);
|
|
|
|
if(spiCookie == nullptr) {
|
2021-02-23 12:13:04 +01:00
|
|
|
return NULLPOINTER;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
address_t spiAddress = spiCookie->getSpiAddress();
|
|
|
|
|
|
|
|
auto iter = spiDeviceMap.find(spiAddress);
|
|
|
|
if(iter == spiDeviceMap.end()) {
|
|
|
|
size_t bufferSize = spiCookie->getMaxBufferSize();
|
|
|
|
SpiInstance spiInstance = {std::vector<uint8_t>(bufferSize)};
|
|
|
|
auto statusPair = spiDeviceMap.emplace(spiAddress, spiInstance);
|
|
|
|
if (not statusPair.second) {
|
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::error << "SpiComIF::initializeInterface: Failed to insert device with address " <<
|
|
|
|
spiAddress << "to SPI device map" << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printError("SpiComIF::initializeInterface: Failed to insert device with address "
|
|
|
|
"%lu to SPI device map\n", static_cast<unsigned long>(spiAddress));
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
/* Now we emplaced the read buffer in the map, we still need to assign that location
|
|
|
|
to the SPI driver transfer struct */
|
|
|
|
spiCookie->assignReadBuffer(statusPair.first->second.replyBuffer.data());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::error << "SpiComIF::initializeInterface: SPI address already exists!" << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printError("SpiComIF::initializeInterface: SPI address already exists!\n");
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
2021-02-24 10:36:23 +01:00
|
|
|
/* Pull CS high in any case to be sure that device is inactive */
|
2021-02-23 11:31:50 +01:00
|
|
|
gpioId_t gpioId = spiCookie->getChipSelectPin();
|
|
|
|
if(gpioId != gpio::NO_GPIO) {
|
|
|
|
gpioComIF->pullHigh(gpioId);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t spiSpeed = 0;
|
2021-03-07 14:06:29 +01:00
|
|
|
spi::SpiModes spiMode = spi::SpiModes::MODE_0;
|
2021-02-23 11:31:50 +01:00
|
|
|
|
|
|
|
SpiCookie::UncommonParameters params;
|
|
|
|
spiCookie->getSpiParameters(spiMode, spiSpeed, ¶ms);
|
|
|
|
|
|
|
|
int fileDescriptor = 0;
|
2021-02-23 11:56:48 +01:00
|
|
|
utility::UnixFileHelper fileHelper(spiCookie->getSpiDevice(), &fileDescriptor, O_RDWR,
|
|
|
|
"SpiComIF::initializeInterface: ");
|
|
|
|
if(fileHelper.getOpenResult() != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return fileHelper.getOpenResult();
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* These flags are rather uncommon */
|
|
|
|
if(params.threeWireSpi or params.noCs or params.csHigh) {
|
|
|
|
uint32_t currentMode = 0;
|
|
|
|
retval = ioctl(fileDescriptor, SPI_IOC_RD_MODE32, ¤tMode);
|
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiComIF::initialiezInterface: Could not read full mode!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(params.threeWireSpi) {
|
|
|
|
currentMode |= SPI_3WIRE;
|
|
|
|
}
|
|
|
|
if(params.noCs) {
|
|
|
|
/* Some drivers like the Raspberry Pi ignore this flag in any case */
|
|
|
|
currentMode |= SPI_NO_CS;
|
|
|
|
}
|
|
|
|
if(params.csHigh) {
|
|
|
|
currentMode |= SPI_CS_HIGH;
|
|
|
|
}
|
|
|
|
/* Write adapted mode */
|
2021-02-23 18:01:28 +01:00
|
|
|
retval = ioctl(fileDescriptor, SPI_IOC_WR_MODE32, ¤tMode);
|
2021-02-23 11:31:50 +01:00
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiComIF::initialiezInterface: Could not write full mode!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(params.lsbFirst) {
|
2021-02-23 18:01:28 +01:00
|
|
|
retval = ioctl(fileDescriptor, SPI_IOC_WR_LSB_FIRST, ¶ms.lsbFirst);
|
2021-02-23 11:31:50 +01:00
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiComIF::initializeInterface: Setting LSB first failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(params.bitsPerWord != 8) {
|
2021-02-23 18:01:28 +01:00
|
|
|
retval = ioctl(fileDescriptor, SPI_IOC_WR_BITS_PER_WORD, ¶ms.bitsPerWord);
|
2021-02-23 11:31:50 +01:00
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiComIF::initializeInterface: "
|
|
|
|
"Could not write bits per word!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::sendMessage(CookieIF *cookie, const uint8_t *sendData, size_t sendLen) {
|
|
|
|
SpiCookie* spiCookie = dynamic_cast<SpiCookie*>(cookie);
|
2021-02-23 11:56:48 +01:00
|
|
|
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
2021-02-24 11:16:33 +01:00
|
|
|
int retval = 0;
|
|
|
|
|
2021-02-23 11:31:50 +01:00
|
|
|
if(spiCookie == nullptr) {
|
2021-02-23 12:13:04 +01:00
|
|
|
return NULLPOINTER;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(sendLen > spiCookie->getMaxBufferSize()) {
|
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::warning << "SpiComIF::sendMessage: Too much data sent, send length" << sendLen <<
|
|
|
|
"larger than maximum buffer length" << spiCookie->getMaxBufferSize() << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printWarning("SpiComIF::sendMessage: Too much data sent, send length %lu larger "
|
|
|
|
"than maximum buffer length %lu!\n", static_cast<unsigned long>(sendLen),
|
|
|
|
static_cast<unsigned long>(spiCookie->getMaxBufferSize()));
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
|
|
|
return DeviceCommunicationIF::TOO_MUCH_DATA;
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:16:33 +01:00
|
|
|
|
|
|
|
/* Prepare transfer */
|
2021-02-23 11:31:50 +01:00
|
|
|
int fileDescriptor = 0;
|
|
|
|
std::string device = spiCookie->getSpiDevice();
|
2021-02-23 11:56:48 +01:00
|
|
|
utility::UnixFileHelper fileHelper(device, &fileDescriptor, O_RDWR,
|
|
|
|
"SpiComIF::sendMessage: ");
|
|
|
|
if(fileHelper.getOpenResult() != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return OPENING_FILE_FAILED;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
2021-03-07 14:06:29 +01:00
|
|
|
spi::SpiModes spiMode = spi::SpiModes::MODE_0;
|
2021-02-24 11:16:33 +01:00
|
|
|
uint32_t spiSpeed = 0;
|
|
|
|
spiCookie->getSpiParameters(spiMode, spiSpeed, nullptr);
|
|
|
|
setSpiSpeedAndMode(fileDescriptor, spiMode, spiSpeed);
|
|
|
|
spiCookie->assignWriteBuffer(sendData);
|
|
|
|
spiCookie->assignTransferSize(sendLen);
|
2021-02-23 11:31:50 +01:00
|
|
|
|
|
|
|
bool fullDuplex = spiCookie->isFullDuplex();
|
|
|
|
gpioId_t gpioId = spiCookie->getChipSelectPin();
|
2021-02-24 11:16:33 +01:00
|
|
|
|
|
|
|
/* GPIO access is mutex protected */
|
2021-03-19 15:52:39 +01:00
|
|
|
MutexGuard(spiMutex, timeoutType, timeoutMs);
|
2021-02-24 11:16:33 +01:00
|
|
|
|
|
|
|
/* Pull SPI CS low. For now, no support for active high given */
|
2021-02-23 11:31:50 +01:00
|
|
|
if(gpioId != gpio::NO_GPIO) {
|
|
|
|
gpioComIF->pullLow(gpioId);
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:16:33 +01:00
|
|
|
/* Execute transfer */
|
2021-02-23 11:31:50 +01:00
|
|
|
if(fullDuplex) {
|
|
|
|
/* Initiate a full duplex SPI transfer. */
|
|
|
|
retval = ioctl(fileDescriptor, SPI_IOC_MESSAGE(1), spiCookie->getTransferStructHandle());
|
2021-02-24 00:24:14 +01:00
|
|
|
if(retval < 0) {
|
2021-02-23 11:31:50 +01:00
|
|
|
utility::handleIoctlError("SpiComIF::sendMessage: ioctl error.");
|
2021-02-23 11:56:48 +01:00
|
|
|
result = FULL_DUPLEX_TRANSFER_FAILED;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
2021-03-06 18:12:50 +01:00
|
|
|
#if FSFW_LINUX_SPI_WIRETAPPING == 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::info << "Sent SPI data: " << std::endl;
|
|
|
|
size_t dataLen = spiCookie->getTransferStructHandle()->len;
|
|
|
|
uint8_t* dataPtr = reinterpret_cast<uint8_t*>(spiCookie->getTransferStructHandle()->tx_buf);
|
|
|
|
arrayprinter::print(dataPtr, dataLen, OutputType::HEX, false);
|
|
|
|
sif::info << "Received SPI data: " << std::endl;
|
|
|
|
dataPtr = reinterpret_cast<uint8_t*>(spiCookie->getTransferStructHandle()->rx_buf);
|
|
|
|
arrayprinter::print(dataPtr, dataLen, OutputType::HEX, false);
|
|
|
|
#else
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_LINUX_SPI_WIRETAPPING == 1 */
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
else {
|
2021-02-24 11:16:33 +01:00
|
|
|
/* We write with a blocking half-duplex transfer here */
|
2021-02-23 11:31:50 +01:00
|
|
|
if (write(fileDescriptor, sendData, sendLen) != static_cast<ssize_t>(sendLen)) {
|
2021-02-23 13:33:12 +01:00
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2021-02-23 11:31:50 +01:00
|
|
|
sif::warning << "SpiComIF::sendMessage: Half-Duplex write operation failed!" <<
|
|
|
|
std::endl;
|
2021-02-23 13:33:12 +01:00
|
|
|
#else
|
|
|
|
sif::printWarning("SpiComIF::sendMessage: Half-Duplex write operation failed!\n");
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
2021-02-23 11:56:48 +01:00
|
|
|
result = HALF_DUPLEX_TRANSFER_FAILED;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(gpioId != gpio::NO_GPIO) {
|
|
|
|
gpioComIF->pullHigh(gpioId);
|
|
|
|
}
|
2021-02-23 11:56:48 +01:00
|
|
|
return result;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::getSendSuccess(CookieIF *cookie) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::requestReceiveMessage(CookieIF *cookie, size_t requestLen) {
|
2021-02-23 11:56:48 +01:00
|
|
|
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
2021-02-23 11:31:50 +01:00
|
|
|
SpiCookie* spiCookie = dynamic_cast<SpiCookie*>(cookie);
|
|
|
|
if(spiCookie == nullptr) {
|
2021-02-23 12:13:04 +01:00
|
|
|
return NULLPOINTER;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool fullDuplex = spiCookie->isFullDuplex();
|
|
|
|
if(fullDuplex) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string device = spiCookie->getSpiDevice();
|
|
|
|
int fileDescriptor = 0;
|
2021-02-23 11:56:48 +01:00
|
|
|
utility::UnixFileHelper fileHelper(device, &fileDescriptor, O_RDWR,
|
|
|
|
"SpiComIF::requestReceiveMessage: ");
|
|
|
|
if(fileHelper.getOpenResult() != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return OPENING_FILE_FAILED;
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t* rxBuf = nullptr;
|
|
|
|
size_t readSize = spiCookie->getCurrentTransferSize();
|
|
|
|
result = getReadBuffer(spiCookie->getSpiAddress(), &rxBuf);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
gpioId_t gpioId = spiCookie->getChipSelectPin();
|
2021-03-19 15:52:39 +01:00
|
|
|
MutexGuard(spiMutex, timeoutType, timeoutMs);
|
2021-02-23 11:31:50 +01:00
|
|
|
if(gpioId != gpio::NO_GPIO) {
|
|
|
|
gpioComIF->pullLow(gpioId);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(read(fileDescriptor, rxBuf, readSize) != static_cast<ssize_t>(readSize)) {
|
2021-02-23 13:33:12 +01:00
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2021-02-23 11:31:50 +01:00
|
|
|
sif::warning << "SpiComIF::sendMessage: Half-Duplex read operation failed!" << std::endl;
|
2021-02-23 13:33:12 +01:00
|
|
|
#else
|
|
|
|
sif::printWarning("SpiComIF::sendMessage: Half-Duplex read operation failed!\n");
|
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
|
|
|
#endif /* FSFW_VERBOSE_LEVEL >= 1 */
|
2021-02-23 11:56:48 +01:00
|
|
|
result = HALF_DUPLEX_TRANSFER_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(gpioId != gpio::NO_GPIO) {
|
|
|
|
gpioComIF->pullHigh(gpioId);
|
2021-02-23 11:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::readReceivedMessage(CookieIF *cookie, uint8_t **buffer, size_t *size) {
|
|
|
|
SpiCookie* spiCookie = dynamic_cast<SpiCookie*>(cookie);
|
|
|
|
if(spiCookie == nullptr) {
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
uint8_t* rxBuf = nullptr;
|
|
|
|
ReturnValue_t result = getReadBuffer(spiCookie->getSpiAddress(), &rxBuf);
|
|
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
*buffer = rxBuf;
|
|
|
|
*size = spiCookie->getCurrentTransferSize();
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t SpiComIF::getReadBuffer(address_t spiAddress, uint8_t** buffer) {
|
|
|
|
if(buffer == nullptr) {
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto iter = spiDeviceMap.find(spiAddress);
|
|
|
|
if(iter == spiDeviceMap.end()) {
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
*buffer = iter->second.replyBuffer.data();
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
2021-02-24 11:16:33 +01:00
|
|
|
|
2021-03-07 14:06:29 +01:00
|
|
|
void SpiComIF::setSpiSpeedAndMode(int spiFd, spi::SpiModes mode, uint32_t speed) {
|
2021-02-24 11:16:33 +01:00
|
|
|
int retval = ioctl(spiFd, SPI_IOC_WR_MODE, reinterpret_cast<uint8_t*>(&mode));
|
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiTestClass::performRm3100Test: Setting SPI mode failed!");
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = ioctl(spiFd, SPI_IOC_WR_MAX_SPEED_HZ, &speed);
|
|
|
|
if(retval != 0) {
|
|
|
|
utility::handleIoctlError("SpiTestClass::performRm3100Test: Setting SPI speed failed!");
|
|
|
|
}
|
|
|
|
}
|