1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

code style fixes

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2022-11-11 06:38:00 -05:00 committed by Niklas Eiling
parent 14c7e57a8a
commit 0959809573
8 changed files with 95 additions and 114 deletions

View file

@ -121,127 +121,118 @@ public:
// Generic management interface for IPs
// Runtime setup of IP, should access and initialize hardware
virtual bool init()
virtual
bool init()
{
return true;
}
// Runtime check of IP, should verify basic functionality
virtual bool check()
virtual
bool check()
{
return true;
}
// Generic disabling of IP, meaning may depend on IP
virtual bool stop()
virtual
bool stop()
{
return true;
}
// Reset the IP, it should behave like freshly initialized afterwards
virtual bool reset()
virtual
bool reset()
{
return true;
}
// Print some debug information about the IP
virtual void dump();
virtual
void dump();
protected:
// Key-type for accessing maps addressTranslations and slaveAddressSpaces
using MemoryBlockName = std::string;
// Each IP can declare via this function which memory blocks it requires
virtual std::list<MemoryBlockName>
getMemoryBlocks() const
virtual
std::list<MemoryBlockName> getMemoryBlocks() const
{
return {};
}
public:
const std::string&
getInstanceName() const
const std::string& getInstanceName() const
{
return id.getName();
}
// Operators
bool
operator==(const Vlnv &otherVlnv) const
bool operator==(const Vlnv &otherVlnv) const
{
return id.getVlnv() == otherVlnv;
}
bool
operator!=(const Vlnv &otherVlnv) const
bool operator!=(const Vlnv &otherVlnv) const
{
return id.getVlnv() != otherVlnv;
}
bool
operator==(const IpIdentifier &otherId) const
bool operator==(const IpIdentifier &otherId) const
{
return this->id == otherId;
}
bool
operator!=(const IpIdentifier &otherId) const
bool operator!=(const IpIdentifier &otherId) const
{
return this->id != otherId;
}
bool
operator==(const std::string &otherName) const
bool operator==(const std::string &otherName) const
{
return getInstanceName() == otherName;
}
bool
operator!=(const std::string &otherName) const
bool operator!=(const std::string &otherName) const
{
return getInstanceName() != otherName;
}
bool
operator==(const Core &otherIp) const
bool operator==(const Core &otherIp) const
{
return this->id == otherIp.id;
}
bool
operator!=(const Core &otherIp) const
bool operator!=(const Core &otherIp) const
{
return this->id != otherIp.id;
}
friend std::ostream&
operator<< (std::ostream &stream, const Core &ip)
friend
std::ostream& operator<< (std::ostream &stream, const Core &ip)
{
return stream << ip.id;
}
protected:
uintptr_t
getBaseAddr(const MemoryBlockName &block) const
uintptr_t getBaseAddr(const MemoryBlockName &block) const
{
return getLocalAddr(block, 0);
}
uintptr_t
getLocalAddr(const MemoryBlockName &block, uintptr_t address) const;
uintptr_t getLocalAddr(const MemoryBlockName &block, uintptr_t address) const;
MemoryManager::AddressSpaceId
getAddressSpaceId(const MemoryBlockName &block) const
MemoryManager::AddressSpaceId getAddressSpaceId(const MemoryBlockName &block) const
{
return slaveAddressSpaces.at(block);
}
InterruptController*
getInterruptController(const std::string &interruptName) const;
InterruptController* getInterruptController(const std::string &interruptName) const;
MemoryManager::AddressSpaceId
getMasterAddrSpaceByInterface(const std::string &masterInterfaceName) const
MemoryManager::AddressSpaceId getMasterAddrSpaceByInterface(const std::string &masterInterfaceName) const
{
return busMasterInterfaces.at(masterInterfaceName);
}
@ -292,8 +283,8 @@ public:
using plugin::Plugin::Plugin;
// Returns a running and checked FPGA IP
static Core::List
make(PCIeCard* card, json_t *json_ips);
static
Core::List make(PCIeCard* card, json_t *json_ips);
virtual
std::string getType() const
@ -306,8 +297,8 @@ protected:
POLL,
IRQ,
};
Logger
getLogger() const
Logger getLogger() const
{
return villas::logging.get(getName());
}
@ -325,18 +316,19 @@ private:
void configurePollingMode(Core &, PollingMode)
{ }
virtual Vlnv getCompatibleVlnv() const = 0;
virtual
Vlnv getCompatibleVlnv() const = 0;
protected:
static Logger
getStaticLogger()
static
Logger getStaticLogger()
{
return villas::logging.get("core:factory");
}
private:
static CoreFactory*
lookup(const Vlnv &vlnv);
static
CoreFactory* lookup(const Vlnv &vlnv);
};
} /* namespace ip */

View file

@ -64,20 +64,20 @@ public:
return new Bram;
}
virtual std::string
getName() const
virtual
std::string getName() const
{
return "Bram";
}
virtual std::string
getDescription() const
virtual
std::string getDescription() const
{
return "Block RAM";
}
virtual Vlnv
getCompatibleVlnv() const
virtual
Vlnv getCompatibleVlnv() const
{
return Vlnv("xilinx.com:ip:axi_bram_ctrl:");
}

View file

@ -64,20 +64,18 @@ public:
void makeAccesibleFromVA(const MemoryBlock &mem);
bool makeInaccesibleFromVA(const MemoryBlock &mem);
inline bool
hasScatterGather() const
inline
bool hasScatterGather() const
{
return xConfig.HasSg;
}
const StreamVertex&
getDefaultSlavePort() const
const StreamVertex& getDefaultSlavePort() const
{
return getSlavePort(s2mmPort);
}
const StreamVertex&
getDefaultMasterPort() const
const StreamVertex& getDefaultMasterPort() const
{
return getMasterPort(mm2sPort);
}
@ -158,20 +156,20 @@ public:
return new Dma;
}
virtual std::string
getName() const
virtual
std::string getName() const
{
return "Dma";
}
virtual std::string
getDescription() const
virtual
std::string getDescription() const
{
return "Xilinx's AXI4 Direct Memory Access Controller";
}
virtual Vlnv
getCompatibleVlnv() const
virtual
Vlnv getCompatibleVlnv() const
{
return Vlnv("xilinx.com:ip:axi_dma:");
}

View file

@ -61,8 +61,8 @@ private:
class AxiPciExpressBridgeFactory : public CoreFactory {
public:
static constexpr const char*
getCompatibleVlnvString()
static constexpr
const char* getCompatibleVlnvString()
{
return "xilinx.com:ip:axi_pcie:";
}
@ -74,20 +74,20 @@ public:
return new AxiPciExpressBridge;
}
virtual std::string
getName() const
virtual
std::string getName() const
{
return "AxiPciExpressBridge";
}
virtual std::string
getDescription() const
virtual
std::string getDescription() const
{
return "Xilinx's AXI-PCIe Bridge";
}
virtual Vlnv
getCompatibleVlnv() const
virtual
Vlnv getCompatibleVlnv() const
{
return Vlnv(getCompatibleVlnvString());
}

View file

@ -64,16 +64,17 @@ private:
Core* slaveIn;
};
int num_ports;
XAxis_Switch xSwitch;
XAxis_Switch_Config xConfig;
std::map<std::string, std::string> portMapping;
};
class AxiStreamSwitchFactory : public NodeFactory {
public:
static constexpr const char*
getCompatibleVlnvString()
static constexpr
const char* getCompatibleVlnvString()
{
return "xilinx.com:ip:axis_switch:";
}
@ -85,20 +86,20 @@ public:
return new AxiStreamSwitch;
}
virtual std::string
getName() const
virtual
std::string getName() const
{
return "AxiStreamSwitch";
}
virtual std::string
getDescription() const
virtual
std::string getDescription() const
{
return "Xilinx's AXI4-Stream switch";
}
virtual Vlnv
getCompatibleVlnv() const
virtual
Vlnv getCompatibleVlnv() const
{
return Vlnv(getCompatibleVlnvString());
}

View file

@ -51,8 +51,8 @@ public:
return nodeName + "/" + portName + "(" + (isMaster ? "M" : "S") + ")";
}
friend std::ostream&
operator<< (std::ostream &stream, const StreamVertex &vertex)
friend
std::ostream& operator<< (std::ostream &stream, const StreamVertex &vertex)
{
return stream << vertex.getIdentifier() << ": " << vertex.getName();
}
@ -69,10 +69,9 @@ public:
graph::DirectedGraph<StreamVertex>("stream:graph")
{ }
std::shared_ptr<StreamVertex>
getOrCreateStreamVertex(const std::string &node,
const std::string &port,
bool isMaster)
std::shared_ptr<StreamVertex> getOrCreateStreamVertex(const std::string &node,
const std::string &port,
bool isMaster)
{
for (auto &vertexEntry : vertices) {
auto &vertex = vertexEntry.second;
@ -100,14 +99,12 @@ public:
std::string nodeName;
};
const StreamVertex&
getMasterPort(const std::string &name) const
const StreamVertex& getMasterPort(const std::string &name) const
{
return *portsMaster.at(name);
}
const StreamVertex&
getSlavePort(const std::string &name) const
const StreamVertex& getSlavePort(const std::string &name) const
{
return *portsSlave.at(name);
}
@ -133,15 +130,15 @@ public:
}
// Used by easy-usage connect, will throw if not implemented by derived node
virtual const StreamVertex&
getDefaultSlavePort() const;
virtual
const StreamVertex& getDefaultSlavePort() const;
// Used by easy-usage connect, will throw if not implemented by derived node
virtual const StreamVertex&
getDefaultMasterPort() const;
virtual
const StreamVertex& getDefaultMasterPort() const;
static const StreamGraph&
getGraph()
static
const StreamGraph& getGraph()
{
return streamGraph;
}
@ -161,7 +158,8 @@ protected:
std::map<std::string, std::shared_ptr<StreamVertex>> portsMaster;
std::map<std::string, std::shared_ptr<StreamVertex>> portsSlave;
static StreamGraph streamGraph;
static
StreamGraph streamGraph;
};
class NodeFactory : public CoreFactory {

View file

@ -64,8 +64,7 @@ bool AxiStreamSwitch::init()
return true;
}
bool
AxiStreamSwitch::connectInternal(const std::string &portSlave,
bool AxiStreamSwitch::connectInternal(const std::string &portSlave,
const std::string &portMaster)
{
// Check if slave port exists
@ -123,8 +122,7 @@ AxiStreamSwitch::connectInternal(const std::string &portSlave,
return true;
}
int
AxiStreamSwitch::portNameToNum(const std::string &portName)
int AxiStreamSwitch::portNameToNum(const std::string &portName)
{
const std::string number = portName.substr(1, 2);
return std::stoi(number);

View file

@ -90,8 +90,7 @@ void NodeFactory::configure(Core &ip, json_t *cfg)
}
}
std::pair<std::string, std::string>
Node::getLoopbackPorts() const
std::pair<std::string, std::string> Node::getLoopbackPorts() const
{
for (auto& [masterName, masterVertex] : portsMaster) {
for (auto& [slaveName, slaveVertex] : portsSlave) {
@ -157,29 +156,25 @@ bool Node::connect(const StreamVertex &from, const StreamVertex &to)
return nextHopNodeIp->connect(*nextHopNode, to);
}
const StreamVertex&
Node::getDefaultSlavePort() const
const StreamVertex& Node::getDefaultSlavePort() const
{
logger->error("No default slave port available");
throw std::exception();
}
const StreamVertex&
Node::getDefaultMasterPort() const
const StreamVertex& Node::getDefaultMasterPort() const
{
logger->error("No default master port available");
throw std::exception();
}
bool
Node::loopbackPossible() const
bool Node::loopbackPossible() const
{
auto ports = getLoopbackPorts();
return (not ports.first.empty()) and (not ports.second.empty());
}
bool
Node::connectInternal(const std::string &slavePort,
bool Node::connectInternal(const std::string &slavePort,
const std::string &masterPort)
{
(void) slavePort;
@ -189,8 +184,7 @@ Node::connectInternal(const std::string &slavePort,
return false;
}
bool
Node::connectLoopback()
bool Node::connectLoopback()
{
auto ports = getLoopbackPorts();
const auto &portMaster = portsMaster[ports.first];