Designing an Overlay using Vivado Integrated Logic Analyzer (ILA) [Part 1]

Designing an Overlay using Vivado Integrated Logic Analyzer (ILA)

In this series of blogs, I will cover how to use the Integrated Logic Analyzer (ILA) to debug your overlay. Instrumenting an ILA should be your last resort when it comes down to debugging.
Simulation and co-simulation are the best way to verify your design, although debugging in the actual hardware can be very useful.

The main reason for these series of blogs is to address some of the most common issues that are reported in the PYNQ forums, these are typically related to the DMA IP. These series of blogs assume expertise in overlay creation.

Another blog about using ILA on PYNQ was written by @Yangjie_Qi Using ILA to debug IP

Designing the Overlay

I am going to design a very simple overlay, DMA loopback, at the time of writing PYNQ 3.0.1 is the latest PYNQ version, and I will use Vivado 2022.1, which is the latest Vivado version officially supported by PYNQ. I will target PYNQ-Z2, although the steps are similar for other boards, you can find scripts for Zynq and MPSoC devices in the companion GitHub repository.

Please, refer to

for thorough discussion about the DMA IP and how to configure it.

I will start with a very simple design with just a DMA. You can use one of these scripts to generate the basic design:

All of the scripts used for this series of blogs can be found here github.com/mariodruiz/PYNQ_tutorials/ila

Note, there will be slight differences in the block design you see if you are using an MPSoC device. I am not covering nor mentioning these differences again.

In this design, you can see that the AXI Direct Memory Access IP was added along a FIFO, in a sort of loopback design.

The next step is to add a System ILA IP and configure it with two AXI4-Stream probes.

2_adding_ila

Double click on the added System ILA IP to configure it. Set two interface slots and enable capture control (I like to enable this option)

3_ila_general_options

Configure both SLOT0 and SLOT1 to be of interface type xilinx.com:interface:axis rtl:1.0

Connect:

  • system_ila_0/SLOT_0_AXIS to axis_data_fifo/S_AXIS purple connection below

  • system_ila_0/SLOT_1_AXIS to axis_data_fifo/M_AXIS pink connection below

  • clock and reset

After this, you should have an overlay like this:

Verify and build your overlay.

Note: there are more ways of adding signals for debug. For more information, check out Using-the-System-ILA-IP-to-Debug-a-Block-Design

Download the Overlay

Connect to your PYNQ-Z2 board and move these files to the board.

  • *.bit: can be found in <proj_path>/<proj_name>.runs/impl_1/*.bit

  • *.hwh: can be found in <proj_path>/<proj_name>.gen/sources_1/bd/<bd_name>/hw_handoff/*.hwh

Once you have the files in the board, create a new notebook. Or use the 1.dma_verification.ipynb

from pynq import Overlay, allocate
import numpy as np

ol = Overlay('dma.bit')
dma = ol.axi_dma
dma_send = ol.axi_dma.sendchannel
dma_recv = ol.axi_dma.recvchannel

data_size = 100

input_buffer = allocate(shape=(data_size,), dtype=np.uint32)
output_buffer = allocate(shape=(data_size,), dtype=np.uint32)

input_buffer[:] = np.arange(data_size, dtype=np.uint32)

print(f'Are buffers equal before DMA? {np.array_equal(output_buffer, input_buffer)}')

dma_send.transfer(input_buffer)
dma_recv.transfer(output_buffer)
dma_send.wait()
dma_recv.wait()

print(f'Are buffers equal after DMA? {np.array_equal(output_buffer, input_buffer)}')

After running this on the board, you should see that the buffers are equal after executing the DMA operation.

This concludes the first part of this blog series, see how to connect and use the System ILA

Please, use the comments section for questions related to the content of this blog. If you have questions about your own design or unrelated topics, please create a new topic in the forum.

A post was merged into an existing topic: Debugging Common DMA Issues [Part 3]

Hi Mario, what are the differences when using an MPSoC device? If you have mentioned this in another post, could you redirect me please? For reference, I am using an UltraScale+ MPSoC and trying to connect my system_ila_0/SLOT_0_AXIS to {custom_hls_ip}/S_AXIS and system_ila_0/SLOT_1_AXIS to {custom_hls_ip}/M_AXIS but I am unable to connect them manually in my block design. I have already successfully connected the debug bridge as shown in Part 4 of this series.

Hi @lopen,

Welcome to the PYNQ community.

There are very little difference. The main difference is the PS block that it is for MPSoC and the name of the ports that are used in this block.

I would suggest you post a screenshot of your block design, because you are adding your own IP.

Mario

Thank you Mario. This is my block design:

Block design looks OK.

You need to connect from the ILA to your HLS IP, put your cursor on top of the ILA port you want to connect and then while clicking connect to the HLS IP port.

Note that these names are not correct {custom_hls_ip}/S_AXIS and {custom_hls_ip}/M_AXIS

It seems that I am unable to connect to the correct HLS IP ports. I have attached another screenshot below showing which ports they try to connect to instead.

Apologies for the naming confusion. I used S_AXIS and M_AXIS for simpler illustration purposes. My intended connections are system_ila_0/SLOT_0_AXIS to {custom_hls_ip}/in_stream and system_ila_0/SLOT_1_AXIS to {custom_hls_ip}/out_stream. As this is a streaming design, could these names be problematic? It is my understanding that this should be ok as long as they are well-declared as HLS axis ports and connected properly. Kindly let me know if this is correct. Thank you.

You need to configure the ILA ports interface type as described in the post.

1 Like

Thank you, this solved it.

1 Like