eive-obsw/linux/ipcore/PapbVcInterface.cpp

131 lines
3.8 KiB
C++
Raw Normal View History

2022-01-24 16:33:22 +01:00
#include <fsfw_hal/linux/uio/UioMapper.h>
#include <linux/ipcore/PapbVcInterface.h>
2023-03-23 15:43:14 +01:00
#include <unistd.h>
2022-01-26 17:59:31 +01:00
2021-09-19 12:27:48 +02:00
#include "fsfw/serviceinterface/ServiceInterface.h"
2023-03-27 17:42:54 +02:00
#include <ctime>
2021-09-19 12:27:48 +02:00
PapbVcInterface::PapbVcInterface(LinuxLibgpioIF* gpioComIF, gpioId_t papbBusyId,
gpioId_t papbEmptyId, std::string uioFile, int mapNum)
: gpioComIF(gpioComIF),
papbBusyId(papbBusyId),
papbEmptyId(papbEmptyId),
2022-10-27 14:02:34 +02:00
uioFile(std::move(uioFile)),
mapNum(mapNum) {}
2021-09-19 12:27:48 +02:00
PapbVcInterface::~PapbVcInterface() {}
2021-09-19 12:27:48 +02:00
2022-01-24 16:33:22 +01:00
ReturnValue_t PapbVcInterface::initialize() {
UioMapper uioMapper(uioFile, mapNum);
2023-03-23 15:43:14 +01:00
uint32_t* baseReg;
ReturnValue_t result = uioMapper.getMappedAdress(&baseReg, UioMapper::Permissions::WRITE_ONLY);
if (result != returnvalue::OK) {
return result;
}
vcBaseReg = baseReg;
return returnvalue::OK;
2021-09-19 12:27:48 +02:00
}
2022-01-17 15:58:27 +01:00
ReturnValue_t PapbVcInterface::write(const uint8_t* data, size_t size) {
2023-03-27 17:02:02 +02:00
if (pollPapbBusySignal(0) == returnvalue::OK) {
startPacketTransfer();
2023-03-23 18:31:47 +01:00
} else {
return DirectTmSinkIF::IS_BUSY;
}
for (size_t idx = 0; idx < size; idx++) {
2023-03-27 21:23:09 +02:00
if (pollPapbBusySignal(5) == returnvalue::OK) {
2023-03-23 15:43:14 +01:00
*(vcBaseReg + DATA_REG_OFFSET) = static_cast<uint32_t>(data[idx]);
} else {
2023-03-23 15:43:14 +01:00
abortPacketTransfer();
2023-03-23 18:31:47 +01:00
return returnvalue::FAILED;
2022-01-24 16:33:22 +01:00
}
}
2023-03-27 21:23:09 +02:00
if (pollPapbBusySignal(5) == returnvalue::OK) {
2023-03-23 15:43:14 +01:00
completePacketTransfer();
2023-03-23 18:31:47 +01:00
} else {
abortPacketTransfer();
return returnvalue::FAILED;
}
2022-08-24 17:27:47 +02:00
return returnvalue::OK;
2021-09-19 12:27:48 +02:00
}
void PapbVcInterface::startPacketTransfer() { *vcBaseReg = CONFIG_START; }
2021-09-19 12:27:48 +02:00
2023-03-23 15:43:14 +01:00
void PapbVcInterface::completePacketTransfer() { *vcBaseReg = CONFIG_END; }
2021-09-19 12:27:48 +02:00
2023-03-27 17:02:02 +02:00
ReturnValue_t PapbVcInterface::pollPapbBusySignal(uint32_t maxPollRetries) const {
2022-05-04 14:08:27 +02:00
gpio::Levels papbBusyState = gpio::Levels::LOW;
2023-03-23 15:43:14 +01:00
ReturnValue_t result;
2023-03-20 14:31:10 +01:00
uint32_t busyIdx = 0;
2023-03-27 18:59:31 +02:00
nextDelay.tv_nsec = 1000;
2023-03-20 14:31:10 +01:00
while (true) {
/** Check if PAPB interface is ready to receive data */
result = gpioComIF->readGpio(papbBusyId, papbBusyState);
if (result != returnvalue::OK) {
sif::warning << "PapbVcInterface::pollPapbBusySignal: Failed to read papb busy signal"
<< std::endl;
return returnvalue::FAILED;
}
if (papbBusyState == gpio::Levels::HIGH) {
return returnvalue::OK;
}
2023-03-23 18:31:47 +01:00
busyIdx++;
if (busyIdx >= maxPollRetries) {
2023-03-20 14:31:10 +01:00
return PAPB_BUSY;
}
2023-03-23 18:31:47 +01:00
2023-03-27 17:43:52 +02:00
// Ignore signal handling here for now.
nanosleep(&nextDelay, &remDelay);
2023-03-27 18:13:00 +02:00
// Adaptive delay.
2023-03-27 17:42:54 +02:00
if (nextDelay.tv_nsec * 2 <= MAX_DELAY_PAPB_POLLING_NS) {
nextDelay.tv_nsec *= 2;
2023-03-27 17:02:02 +02:00
}
}
2022-08-24 17:27:47 +02:00
return returnvalue::OK;
2021-09-19 12:27:48 +02:00
}
void PapbVcInterface::isVcInterfaceBufferEmpty() {
2022-08-24 17:27:47 +02:00
ReturnValue_t result = returnvalue::OK;
2022-05-04 14:08:27 +02:00
gpio::Levels papbEmptyState = gpio::Levels::HIGH;
2022-01-24 16:33:22 +01:00
2022-05-04 14:08:27 +02:00
result = gpioComIF->readGpio(papbEmptyId, papbEmptyState);
2021-09-19 12:27:48 +02:00
2022-08-24 17:27:47 +02:00
if (result != returnvalue::OK) {
sif::warning << "PapbVcInterface::isVcInterfaceBufferEmpty: Failed to read papb empty signal"
<< std::endl;
2021-09-19 12:27:48 +02:00
return;
}
2022-05-04 14:08:27 +02:00
if (papbEmptyState == gpio::Levels::HIGH) {
sif::debug << "PapbVcInterface::isVcInterfaceBufferEmpty: Buffer is empty" << std::endl;
} else {
sif::debug << "PapbVcInterface::isVcInterfaceBufferEmpty: Buffer is not empty" << std::endl;
}
return;
2021-09-19 12:27:48 +02:00
}
2023-03-27 17:02:02 +02:00
bool PapbVcInterface::isBusy() const { return pollPapbBusySignal(0) == PAPB_BUSY; }
2023-03-23 18:31:47 +01:00
void PapbVcInterface::cancelTransfer() { abortPacketTransfer(); }
2023-03-10 18:04:04 +01:00
2021-09-19 12:27:48 +02:00
ReturnValue_t PapbVcInterface::sendTestFrame() {
/** Size of one complete transfer frame data field amounts to 1105 bytes */
uint8_t testPacket[1105];
2021-09-19 12:27:48 +02:00
/** Fill one test packet */
for (int idx = 0; idx < 1105; idx++) {
testPacket[idx] = static_cast<uint8_t>(idx & 0xFF);
}
2021-09-19 12:27:48 +02:00
ReturnValue_t result = write(testPacket, 1105);
2022-08-24 17:27:47 +02:00
if (result != returnvalue::OK) {
return result;
}
2021-09-19 12:27:48 +02:00
2022-08-24 17:27:47 +02:00
return returnvalue::OK;
2021-09-19 12:27:48 +02:00
}
2023-03-23 15:43:14 +01:00
void PapbVcInterface::abortPacketTransfer() { *vcBaseReg = CONFIG_ABORT; }