diff --git a/etc/fpgas.json b/etc/fpgas.json index c5c471d4..42865c01 100644 --- a/etc/fpgas.json +++ b/etc/fpgas.json @@ -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" } } } diff --git a/include/villas/fpga/card.hpp b/include/villas/fpga/card.hpp index d9574a7f..f368d2bc 100644 --- a/include/villas/fpga/card.hpp +++ b/include/villas/fpga/card.hpp @@ -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 diff --git a/include/villas/fpga/core.hpp b/include/villas/fpga/core.hpp index bc39fd17..3996f732 100644 --- a/include/villas/fpga/core.hpp +++ b/include/villas/fpga/core.hpp @@ -293,11 +293,6 @@ class CoreFactory : public plugin::Plugin { } protected: - enum PollingMode { - POLL, - IRQ, - }; - Logger getLogger() const { return villas::logging.get(getName()); @@ -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; diff --git a/include/villas/fpga/ips/dma.hpp b/include/villas/fpga/ips/dma.hpp index 0d32f146..75716b4d 100644 --- a/include/villas/fpga/ips/dma.hpp +++ b/include/villas/fpga/ips/dma.hpp @@ -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(ip).polling = (mode == POLL); - } }; } /* namespace ip */ diff --git a/lib/card.cpp b/lib/card.cpp index 7dcf103a..dcbe737f 100644 --- a/lib/card.cpp +++ b/lib/card.cpp @@ -58,7 +58,6 @@ PCIeCard::List PCIeCardFactory::make(json_t *json, std::shared_ptrvfioContainer = vc; card->affinity = affinity; card->doReset = do_reset != 0; - card->polling = (polling != 0); kernel::pci::Device filter = defaultFilter; diff --git a/lib/core.cpp b/lib/core.cpp index 2ea08d9b..87309b1b 100644 --- a/lib/core.cpp +++ b/lib/core.cpp @@ -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)); } diff --git a/lib/ips/dma.cpp b/lib/ips/dma.cpp index d159362d..326cfb27 100644 --- a/lib/ips/dma.cpp +++ b/lib/ips/dma.cpp @@ -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, @@ -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; }