split up Pdec Handler
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
This commit is contained in:
parent
278db35ae0
commit
2286451039
@ -33,6 +33,6 @@ uint32_t PdecConfig::getConfigWord(uint8_t wordNo) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint32_t PdecConfig::getImrReg() {
|
uint32_t PdecConfig::getImrReg() {
|
||||||
return static_cast<uint32_t>(enableNewFarIrq << 2) | static_cast<uint32_t>(enableTcAbortIrq << 1)
|
return static_cast<uint32_t>(enableNewFarIrq << 2) |
|
||||||
| static_cast<uint32_t>(enableTcNewIrq);
|
static_cast<uint32_t>(enableTcAbortIrq << 1) | static_cast<uint32_t>(enableTcNewIrq);
|
||||||
}
|
}
|
||||||
|
@ -78,63 +78,16 @@ ReturnValue_t PdecHandler::initialize() {
|
|||||||
return returnvalue::OK;
|
return returnvalue::OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
MessageQueueId_t PdecHandler::getCommandQueue() const { return commandQueue->getId(); }
|
|
||||||
|
|
||||||
void PdecHandler::writePdecConfig() {
|
|
||||||
PdecConfig pdecConfig;
|
|
||||||
|
|
||||||
*(memoryBaseAddress + FRAME_HEADER_OFFSET) = pdecConfig.getConfigWord(0);
|
|
||||||
*(memoryBaseAddress + FRAME_HEADER_OFFSET + 1) = pdecConfig.getConfigWord(1);
|
|
||||||
|
|
||||||
// Configure interrupt mask register to enable interrupts
|
|
||||||
*(memoryBaseAddress + PDEC_IMR_OFFSET) = pdecConfig.getImrReg();
|
|
||||||
|
|
||||||
// Configure all MAP IDs as invalid
|
|
||||||
for (int idx = 0; idx <= MAX_MAP_ADDR; idx += 4) {
|
|
||||||
*(memoryBaseAddress + MAP_ADDR_LUT_OFFSET + idx / 4) =
|
|
||||||
NO_DESTINATION << 24 | NO_DESTINATION << 16 | NO_DESTINATION << 8 | NO_DESTINATION;
|
|
||||||
}
|
|
||||||
|
|
||||||
// All TCs with MAP ID 7 will be routed to the PM module (can then be read from memory)
|
|
||||||
uint8_t routeToPm = calcMapAddrEntry(PM_BUFFER);
|
|
||||||
*(memoryBaseAddress + MAP_ADDR_LUT_OFFSET + 1) =
|
|
||||||
(NO_DESTINATION << 24) | (NO_DESTINATION << 16) | (NO_DESTINATION << 8) | routeToPm;
|
|
||||||
|
|
||||||
// Write map id clock frequencies
|
|
||||||
for (int idx = 0; idx <= MAX_MAP_ADDR; idx += 4) {
|
|
||||||
*(memoryBaseAddress + MAP_CLK_FREQ_OFFSET + idx / 4) =
|
|
||||||
MAP_CLK_FREQ << 24 | MAP_CLK_FREQ << 16 | MAP_CLK_FREQ << 8 | MAP_CLK_FREQ;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
ReturnValue_t PdecHandler::resetFarStatFlag() {
|
|
||||||
uint32_t pdecFar = *(registerBaseAddress + PDEC_FAR_OFFSET);
|
|
||||||
if (pdecFar != FAR_RESET) {
|
|
||||||
sif::warning << "PdecHandler::resetFarStatFlag: FAR register did not match expected value."
|
|
||||||
<< " Read value: 0x" << std::hex << static_cast<unsigned int>(pdecFar)
|
|
||||||
<< std::endl;
|
|
||||||
return returnvalue::FAILED;
|
|
||||||
}
|
|
||||||
#if OBSW_DEBUG_PDEC_HANDLER == 1
|
|
||||||
sif::debug << "PdecHandler::resetFarStatFlag: read FAR with value: 0x" << std::hex << pdecFar
|
|
||||||
<< std::endl;
|
|
||||||
#endif /* OBSW_DEBUG_PDEC_HANDLER == 1 */
|
|
||||||
return returnvalue::OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
ReturnValue_t PdecHandler::releasePdec() {
|
|
||||||
ReturnValue_t result = returnvalue::OK;
|
|
||||||
result = gpioComIF->pullHigh(pdecReset);
|
|
||||||
if (result != returnvalue::OK) {
|
|
||||||
sif::error << "PdecHandler::releasePdec: Failed to release PDEC reset signal" << std::endl;
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ReturnValue_t PdecHandler::performOperation(uint8_t operationCode) {
|
ReturnValue_t PdecHandler::performOperation(uint8_t operationCode) {
|
||||||
ReturnValue_t result = returnvalue::OK;
|
ReturnValue_t result = returnvalue::OK;
|
||||||
|
if (OP_MODE == Modes::POLLED) {
|
||||||
|
polledOperation();
|
||||||
|
} else if (OP_MODE == Modes::IRQ) {
|
||||||
|
irqOperation();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnValue_t PdecHandler::polledOperation() {
|
||||||
readCommandQueue();
|
readCommandQueue();
|
||||||
|
|
||||||
switch (state) {
|
switch (state) {
|
||||||
@ -164,6 +117,13 @@ ReturnValue_t PdecHandler::performOperation(uint8_t operationCode) {
|
|||||||
return returnvalue::OK;
|
return returnvalue::OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ReturnValue_t PdecHandler::irqOperation() {
|
||||||
|
while (true) {
|
||||||
|
readCommandQueue();
|
||||||
|
}
|
||||||
|
return returnvalue::OK;
|
||||||
|
}
|
||||||
|
|
||||||
void PdecHandler::readCommandQueue(void) {
|
void PdecHandler::readCommandQueue(void) {
|
||||||
CommandMessage commandMessage;
|
CommandMessage commandMessage;
|
||||||
ReturnValue_t result = returnvalue::FAILED;
|
ReturnValue_t result = returnvalue::FAILED;
|
||||||
@ -181,6 +141,61 @@ void PdecHandler::readCommandQueue(void) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MessageQueueId_t PdecHandler::getCommandQueue() const { return commandQueue->getId(); }
|
||||||
|
|
||||||
|
void PdecHandler::writePdecConfig() {
|
||||||
|
PdecConfig pdecConfig;
|
||||||
|
|
||||||
|
*(memoryBaseAddress + FRAME_HEADER_OFFSET) = pdecConfig.getConfigWord(0);
|
||||||
|
*(memoryBaseAddress + FRAME_HEADER_OFFSET + 1) = pdecConfig.getConfigWord(1);
|
||||||
|
|
||||||
|
if (OP_MODE == Modes::IRQ) {
|
||||||
|
// Configure interrupt mask register to enable interrupts
|
||||||
|
*(memoryBaseAddress + PDEC_IMR_OFFSET) = pdecConfig.getImrReg();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Configure all MAP IDs as invalid
|
||||||
|
for (int idx = 0; idx <= MAX_MAP_ADDR; idx += 4) {
|
||||||
|
*(memoryBaseAddress + MAP_ADDR_LUT_OFFSET + idx / 4) =
|
||||||
|
NO_DESTINATION << 24 | NO_DESTINATION << 16 | NO_DESTINATION << 8 | NO_DESTINATION;
|
||||||
|
}
|
||||||
|
|
||||||
|
// All TCs with MAP ID 7 will be routed to the PM module (can then be read from memory)
|
||||||
|
uint8_t routeToPm = calcMapAddrEntry(PM_BUFFER);
|
||||||
|
*(memoryBaseAddress + MAP_ADDR_LUT_OFFSET + 1) =
|
||||||
|
(NO_DESTINATION << 24) | (NO_DESTINATION << 16) | (NO_DESTINATION << 8) | routeToPm;
|
||||||
|
|
||||||
|
// Write map id clock frequencies
|
||||||
|
for (int idx = 0; idx <= MAX_MAP_ADDR; idx += 4) {
|
||||||
|
*(memoryBaseAddress + MAP_CLK_FREQ_OFFSET + idx / 4) =
|
||||||
|
MAP_CLK_FREQ << 24 | MAP_CLK_FREQ << 16 | MAP_CLK_FREQ << 8 | MAP_CLK_FREQ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnValue_t PdecHandler::resetFarStatFlag() {
|
||||||
|
uint32_t pdecFar = *(registerBaseAddress + PDEC_FAR_OFFSET);
|
||||||
|
if (pdecFar != FAR_RESET) {
|
||||||
|
sif::warning << "PdecHandler::resetFarStatFlag: FAR register did not match expected value."
|
||||||
|
<< " Read value: 0x" << std::hex << static_cast<unsigned int>(pdecFar)
|
||||||
|
<< std::endl;
|
||||||
|
return returnvalue::FAILED;
|
||||||
|
}
|
||||||
|
#if OBSW_DEBUG_PDEC_HANDLER == 1
|
||||||
|
sif::debug << "PdecHandler::resetFarStatFlag: read FAR with value: 0x" << std::hex << pdecFar
|
||||||
|
<< std::endl;
|
||||||
|
#endif /* OBSW_DEBUG_PDEC_HANDLER == 1 */
|
||||||
|
return returnvalue::OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnValue_t PdecHandler::releasePdec() {
|
||||||
|
ReturnValue_t result = returnvalue::OK;
|
||||||
|
result = gpioComIF->pullHigh(pdecReset);
|
||||||
|
if (result != returnvalue::OK) {
|
||||||
|
sif::error << "PdecHandler::releasePdec: Failed to release PDEC reset signal" << std::endl;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
bool PdecHandler::newTcReceived() {
|
bool PdecHandler::newTcReceived() {
|
||||||
uint32_t pdecFar = *(registerBaseAddress + PDEC_FAR_OFFSET);
|
uint32_t pdecFar = *(registerBaseAddress + PDEC_FAR_OFFSET);
|
||||||
|
|
||||||
|
@ -33,6 +33,8 @@
|
|||||||
*/
|
*/
|
||||||
class PdecHandler : public SystemObject, public ExecutableObjectIF, public HasActionsIF {
|
class PdecHandler : public SystemObject, public ExecutableObjectIF, public HasActionsIF {
|
||||||
public:
|
public:
|
||||||
|
enum class Modes { POLLED, IRQ };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Constructor
|
* @brief Constructor
|
||||||
* @param objectId Object ID of PDEC handler system object
|
* @param objectId Object ID of PDEC handler system object
|
||||||
@ -78,6 +80,8 @@ class PdecHandler : public SystemObject, public ExecutableObjectIF, public HasAc
|
|||||||
private:
|
private:
|
||||||
static const uint8_t INTERFACE_ID = CLASS_ID::PDEC_HANDLER;
|
static const uint8_t INTERFACE_ID = CLASS_ID::PDEC_HANDLER;
|
||||||
|
|
||||||
|
static constexpr Modes OP_MODE = Modes::POLLED;
|
||||||
|
|
||||||
static const ReturnValue_t ABANDONED_CLTU = MAKE_RETURN_CODE(0xA0);
|
static const ReturnValue_t ABANDONED_CLTU = MAKE_RETURN_CODE(0xA0);
|
||||||
static const ReturnValue_t FRAME_DIRTY = MAKE_RETURN_CODE(0xA1);
|
static const ReturnValue_t FRAME_DIRTY = MAKE_RETURN_CODE(0xA1);
|
||||||
static const ReturnValue_t FRAME_ILLEGAL_ONE_REASON = MAKE_RETURN_CODE(0xA2);
|
static const ReturnValue_t FRAME_ILLEGAL_ONE_REASON = MAKE_RETURN_CODE(0xA2);
|
||||||
@ -234,6 +238,9 @@ class PdecHandler : public SystemObject, public ExecutableObjectIF, public HasAc
|
|||||||
*/
|
*/
|
||||||
void readCommandQueue(void);
|
void readCommandQueue(void);
|
||||||
|
|
||||||
|
ReturnValue_t polledOperation();
|
||||||
|
ReturnValue_t irqOperation();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This functions writes the configuration parameters to the configuration
|
* @brief This functions writes the configuration parameters to the configuration
|
||||||
* section of the PDEC.
|
* section of the PDEC.
|
||||||
|
@ -321,7 +321,8 @@ ReturnValue_t ImtqHandler::scanForReply(const uint8_t* start, size_t remainingSi
|
|||||||
break;
|
break;
|
||||||
case (IMTQ::CC::PAST_AVAILABLE_RESPONSE_BYTES): {
|
case (IMTQ::CC::PAST_AVAILABLE_RESPONSE_BYTES): {
|
||||||
sif::warning << "IMTQHandler::scanForReply: Read 0xFF command byte, reading past available "
|
sif::warning << "IMTQHandler::scanForReply: Read 0xFF command byte, reading past available "
|
||||||
"bytes. Keep 1 ms delay between I2C send and read" << std::endl;
|
"bytes. Keep 1 ms delay between I2C send and read"
|
||||||
|
<< std::endl;
|
||||||
result = IGNORE_REPLY_DATA;
|
result = IGNORE_REPLY_DATA;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user