From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

NI FlexRIO Network

cancel
Showing results for 
Search instead for 
Did you mean: 

FPGA: Avoiding Feedback Node around a synchronous block in SCTL?

Hi,

apologize for the trivial question....

It sometimes happens to me  to feed signals back as the boolean in the following diagram.

The figure below is a simplified example: a synchronous counter that, upon arriving at a given threshold,

re-initialize synchronously to a given value (and again and again). Just as an example.

When I draw this feedback wire, LV did authomatically insert a Feedback Node. This would

make perfect sense if the signal were around a combinatorial block; however here the block, a synchronous counter,

has nothing combinatorial, so the additional Feedback Node seems to me useless. Moreover,

in actual situations, it is very uncomfortable to me, as it complicates the timing.

Is there any way to remove it?

Thanks!

Bruno

0 Kudos
Message 1 of 9
(11,025 Views)

Ooops.. here is the figure.

New-2.jpg

0 Kudos
Message 2 of 9
(7,651 Views)

I don't think LV knows your IP block is synchronous to a given clock, so I can't imagine it'll let you remove that FN; I was taught that it treats all blocks (VIs, prims, xnodes, etc.) inside an SCTL as combinatorial logic. It seems like NI would have to make a special rule for VHDL generation that ignores the FN, since connecting an input and an output on the same block is a violation of dataflow itself.

0 Kudos
Message 3 of 9
(7,651 Views)

David is correct in that we don't allow this because it breaks our structured dataflow syntax. We would have to create some kind of execption to allow for this in FPGA diagrams, but this presents complications for code which might be used on both the host and FPGA (e.g. host simulation of an FPGA block).

LabVIEW does know your block is synchronous to a given clock - that is actually a property of the LabVIEW FPGA diagram. This is purely a reflection of our desire to deliver a consistent dataflow syntax across targets (Windows, RT, FPGA, etc.).

For this counter example, our recommendation would of course be to include this feedback node as part of the subVI logic. In practice, for me this is generally not an issue. The one instance where it does often arise is flow control of multi-rate blocks, in particular when using our "4-wire" protocol, where this feedback node can delay the propagation of back-pressure to upstream blocks. But even this can generally be addressed by a small about of buffer logic to filter out potential "lock-up" conditions where two or more blocks might have non-friendly behavior in terms of when they are and aren't ready for data or producing data. The real rub lies when going between Xilinx or HDL blocks and LabVIEW blocks, where such handshaking signals do not have this behavior. Generally, a 1-deep FIFO on the input to the HDL block can help to allieviate this, effectively "re-trying" input data from an upstream LabVIEW block, on cycles when the Xilinx / HDL block indicated that it wasn't ready for data (but the upstream LabVIEW block could not be aware of this because of the one-cycle delay of the feedback node). Here is an example of that logic:

Untitled.png

Hope this helps,

Ryan

Ryan Verret
Product Marketing Engineer
Signal Generators
National Instruments
Message 4 of 9
(7,651 Views)

Just to extend on the previous comments, in general you must treat any data that may be fed upstream as a next-cycle value. The 4-wire protocol used by the streaming blocks in LabVIEW FPGA (e.g. the High-Throughput nodes) exemplify this where the Ready for Input that feeds into upstream nodes carries a value for the next cycle. That way you are able to register each of those values in the owning diagram and meet the dataflow requirements of LabVIEW.

When you are using Xilinx IP, many of the blocks can be configured to output this "next cycle" value instead of the registered synchronous version. If not, then unfortunately you have to do the work to support the extra cycle of latency.

0 Kudos
Message 5 of 9
(7,651 Views)

Wow... I've never considered that, but it makes total sense. I always thought that registering the outputs of the Xilinx cores did not change the behavior of the signals at the port map (which would require additional "anticipation" when registering the RFD). But if it is truly just a register, then I suppose we can avoid the caching registers shown in my code above. For instance, in the FIR Compiler, does the "Registered Output" checkbox also control RFD behavior?

Screen Shot 2013-03-28 at 12.52.07 PM.png

I generally register outputs to avoid timing issues, but there is no reason I couldn't register the data outputs (but not RFD) with feedforward nodes on the LabVIEW diagram. That would be a whole lot easier than the caching logic.

Thanks for the tip!

Ryan

Ryan Verret
Product Marketing Engineer
Signal Generators
National Instruments
0 Kudos
Message 6 of 9
(7,651 Views)

In your example Ryan, if you uncheck "Registered Output", then the Ready signals should also be unregistered (or just an earlier "next cycle" calculation) so they remain aligned. If that is not the case, I'd love to see what Xilinx does to the interface to properly handle the data.

0 Kudos
Message 7 of 9
(7,651 Views)

Hi Dragis,

Unfortunately it appears that this is not the case for the FIR core. In the timing diagram below, with outputs registered, RFD goes low the next clock cycle after valid data is presented at the data inputs:

Screen Shot 2013-03-28 at 3.02.45 PM.png

with outputs unregistered, the behavior is identical:

Screen Shot 2013-03-28 at 3.06.46 PM.png

The RFD signal does not come any sooner, which would be implied if the signal were simply registered in one case, and not in the other. Thinking about it a bit more, this actually makes perfect sense, since RFD is dependent upon the presence of (previously) valid data on the input ports, and does not directly depend on the data at the output port. This isn't the case for the RDY signal, however, (which appears to be registered), which should go high when new data is present on the output port.

I'm afraid the caching logic on the input might be necessary if this behavior is shared across Xilinx cores.

Ryan

Ryan Verret
Product Marketing Engineer
Signal Generators
National Instruments
0 Kudos
Message 8 of 9
(7,651 Views)

Yeah, that makes sense. The core would have to specify that you want the next cycle values for the input data logic.

0 Kudos
Message 9 of 9
(7,651 Views)