Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Move configuration of polling mode to parse() #70

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions etc/fpgas.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"id": "10ee:7021",
"slot": "0000:88:00.0",
"do_reset": true,
"ips": "etc/vc707-xbar-pcie/vc707-xbar-pcie.json",
"polling": false
"ips": "etc/vc707-xbar-pcie/vc707-xbar-pcie.json"
}
}
}
1 change: 0 additions & 1 deletion include/villas/fpga/card.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ class PCIeCard : public Card {

bool doReset; // Reset VILLASfpga during startup?
int affinity; // Affinity for MSI interrupts
bool polling; // Poll on interrupts?

std::string name; // The name of the FPGA card

Expand Down
9 changes: 0 additions & 9 deletions include/villas/fpga/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,6 @@ class CoreFactory : public plugin::Plugin {
}

protected:
enum PollingMode {
POLL,
IRQ,
};

Logger getLogger() const
{
return villas::logging.get(getName());
Expand All @@ -312,10 +307,6 @@ class CoreFactory : public plugin::Plugin {
// Create a concrete IP instance
virtual Core* create() = 0;

virtual
void configurePollingMode(Core &, PollingMode)
{ }

virtual
Vlnv getCompatibleVlnv() const = 0;

Expand Down
6 changes: 0 additions & 6 deletions include/villas/fpga/ips/dma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,6 @@ class DmaFactory : public NodeFactory {

virtual
void parse(Core& ip, json_t* json) override;

virtual void
configurePollingMode(Core& ip, PollingMode mode) override
{
dynamic_cast<Dma&>(ip).polling = (mode == POLL);
}
};

} /* namespace ip */
Expand Down
2 changes: 0 additions & 2 deletions lib/card.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ PCIeCard::List PCIeCardFactory::make(json_t *json, std::shared_ptr<kernel::pci::
const char* pci_id = nullptr;
int do_reset = 0;
int affinity = 0;
int polling = 0;

json_error_t err;
int ret = json_unpack_ex(json_card, &err, 0, "{ s: o, s?: i, s?: b, s?: s, s?: s, s?: b, s?: o }",
Expand All @@ -80,7 +79,6 @@ PCIeCard::List PCIeCardFactory::make(json_t *json, std::shared_ptr<kernel::pci::
card->vfioContainer = vc;
card->affinity = affinity;
card->doReset = do_reset != 0;
card->polling = (polling != 0);

kernel::pci::Device filter = defaultFilter;

Expand Down
3 changes: 0 additions & 3 deletions lib/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,6 @@ CoreFactory::make(PCIeCard* card, json_t *json_ips)
// IP-specific setup via JSON config
CoreFactory->parse(*ip, json_ip);

// Set polling mode
CoreFactory->configurePollingMode(*ip, (card->polling ? PollingMode::POLL : PollingMode::IRQ));

// IP has been configured now
configuredIps.push_back(std::move(ip));
}
Expand Down
7 changes: 6 additions & 1 deletion lib/ips/dma.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,12 @@ void DmaFactory::parse(Core &ip, json_t *cfg)
dma.xConfig.AddrWidth = 32;
dma.xConfig.SgLengthWidth = 14;

int polling;

json_error_t err;
int ret = json_unpack_ex(cfg, &err, 0, "{ s: { s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i } }",
int ret = json_unpack_ex(cfg, &err, 0, "{ s: b, s: { s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i, s?: i } }",
"polling", &polling,

"parameters",
"c_sg_include_stscntrl_strm", &dma.xConfig.HasStsCntrlStrm,
"c_include_mm2s", &dma.xConfig.HasMm2S,
Expand All @@ -667,4 +671,5 @@ void DmaFactory::parse(Core &ip, json_t *cfg)
throw ConfigError(cfg, err, "", "Failed to parse DMA configuration");

dma.configDone = true;
dma.polling = polling != 0;
}