mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
The project is now also REUSE compliant: https://reuse.software/ Previous copyright holders have provided their acknowledgement to transition to the new license in the following GitHub PR: https://github.com/VILLASframework/fpga/pull/66 Signed-off-by: Steffen Vogel <post@steffenvogel.de>
76 lines
4 KiB
C++
76 lines
4 KiB
C++
/** Driver for AXI Stream wrapper around RTDS_InterfaceModule (rtds_axis )
|
||
*
|
||
* Author: Steffen Vogel <post@steffenvogel.de>
|
||
* SPDX-FileCopyrightText: 2017-2022, Steffen Vogel
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*********************************************************************************/
|
||
|
||
#include <cstdint>
|
||
|
||
#include <villas/utils.hpp>
|
||
|
||
#include <villas/fpga/ips/rtds.hpp>
|
||
|
||
#define RTDS_HZ 100000000 // 100 MHz
|
||
|
||
#define RTDS_AXIS_MAX_TX 64 // The amount of values which is supported by the VIILASfpga card
|
||
#define RTDS_AXIS_MAX_RX 64 // The amount of values which is supported by the VIILASfpga card
|
||
|
||
// Register offsets
|
||
#define RTDS_AXIS_SR_OFFSET 0x00 // Status Register (read-only). See RTDS_AXIS_SR_* constant.
|
||
#define RTDS_AXIS_CR_OFFSET 0x04 // Control Register (read/write)
|
||
#define RTDS_AXIS_TSCNT_LOW_OFFSET 0x08 // Lower 32 bits of timestep counter (read-only).
|
||
#define RTDS_AXIS_TSCNT_HIGH_OFFSET 0x0C // Higher 32 bits of timestep counter (read-only).
|
||
#define RTDS_AXIS_TS_PERIOD_OFFSET 0x10 // Period in clock cycles of previous timestep (read-only).
|
||
#define RTDS_AXIS_COALESC_OFFSET 0x14 // IRQ Coalescing register (read/write).
|
||
#define RTDS_AXIS_VERSION_OFFSET 0x18 // 16 bit version field passed back to the rack for version reporting (visible from “status” command, read/write).
|
||
#define RTDS_AXIS_MRATE 0x1C // Multi-rate register
|
||
|
||
// Status register bits
|
||
#define RTDS_AXIS_SR_CARDDETECTED (1 << 0) // ‘1’ when RTDS software has detected and configured card.
|
||
#define RTDS_AXIS_SR_LINKUP (1 << 1) // ‘1’ when RTDS communication link has been negotiated.
|
||
#define RTDS_AXIS_SR_TX_FULL (1 << 2) // Tx buffer is full, writes that happen when UserTxFull=’1’ will be dropped (Throttling / buffering is performed by hardware).
|
||
#define RTDS_AXIS_SR_TX_INPROGRESS (1 << 3) // Indicates when data is being put on link.
|
||
#define RTDS_AXIS_SR_CASE_RUNNING (1 << 4) // There is currently a simulation running.
|
||
|
||
// Control register bits
|
||
#define RTDS_AXIS_CR_DISABLE_LINK 0 // Disable SFP TX when set
|
||
|
||
using namespace villas::fpga::ip;
|
||
|
||
void RtdsGtfpga::dump()
|
||
{
|
||
// Check RTDS_Axis registers
|
||
const uint32_t sr = readMemory<uint32_t>(registerMemory, RTDS_AXIS_SR_OFFSET);
|
||
|
||
logger->info("RTDS AXI Stream interface details:");
|
||
logger->info("RTDS status: {:#x}", sr);
|
||
logger->info(" Card detected: {}", sr & RTDS_AXIS_SR_CARDDETECTED ? CLR_GRN("yes") : CLR_RED("no"));
|
||
logger->info(" Link up: {}", sr & RTDS_AXIS_SR_LINKUP ? CLR_GRN("yes") : CLR_RED("no"));
|
||
logger->info(" TX queue full: {}", sr & RTDS_AXIS_SR_TX_FULL ? CLR_RED("yes") : CLR_GRN("no"));
|
||
logger->info(" TX in progress: {}", sr & RTDS_AXIS_SR_TX_INPROGRESS ? CLR_YEL("yes") : "no");
|
||
logger->info(" Case running: {}", sr & RTDS_AXIS_SR_CASE_RUNNING ? CLR_GRN("yes") : CLR_RED("no"));
|
||
|
||
logger->info("RTDS control: {:#x}", readMemory<uint32_t>(registerMemory, RTDS_AXIS_CR_OFFSET));
|
||
logger->info("RTDS IRQ coalesc: {}", readMemory<uint32_t>(registerMemory, RTDS_AXIS_COALESC_OFFSET));
|
||
logger->info("RTDS IRQ version: {:#x}", readMemory<uint32_t>(registerMemory, RTDS_AXIS_VERSION_OFFSET));
|
||
logger->info("RTDS IRQ multi-rate: {}", readMemory<uint32_t>(registerMemory, RTDS_AXIS_MRATE));
|
||
|
||
const uint64_t timestepLow = readMemory<uint32_t>(registerMemory, RTDS_AXIS_TSCNT_LOW_OFFSET);
|
||
const uint64_t timestepHigh = readMemory<uint32_t>(registerMemory, RTDS_AXIS_TSCNT_HIGH_OFFSET);
|
||
const uint64_t timestep = (timestepHigh << 32) | timestepLow;
|
||
|
||
logger->info("RTDS timestep counter: {}", timestep);
|
||
logger->info("RTDS timestep period: {:.3f} us", getDt() * 1e6);
|
||
}
|
||
|
||
double RtdsGtfpga::getDt()
|
||
{
|
||
const auto dt = readMemory<uint16_t>(registerMemory, RTDS_AXIS_TS_PERIOD_OFFSET);
|
||
return (dt == 0xFFFF) ? 0.0 : (double) dt / RTDS_HZ;
|
||
}
|
||
|
||
static char n[] = "rtds_gtfpga";
|
||
static char d[] = "RTDS's AXI4-Stream - GTFPGA interface";
|
||
static char v[] = "acs.eonerc.rwth-aachen.de:user:rtds_axis:";
|
||
static NodePlugin<RtdsGtfpga, n, d, v> f;
|