Hi, I’m trying to build a custom overlay for doing image processing on an image captured by my webcam and then display the result via hdmi. I’m using PYNQ-Z2 with 2.7 image but the Vivado I have is 2018.2 so I have to use the 2.4 PYNQ files for this.
I’m getting errors when I try to build a hdl wrapper:
ERROR: [ip:xlconcat:2.1-10] /xlconcat_0Xlconcat input pins are connected to different type of pins
ERROR: [ip:xlconcat:2.1-10] /xlconcat_0Xlconcat input pins are connected to different type of pins
CRITICAL WARNING: [BD 41-237] Bus Interface property TDATA_NUM_BYTES does not match between /color_convert_0/stream_in_24(3) and /axi_vdma_0/M_AXIS_MM2S(4)
ERROR: [BD 41-237] Bus Interface property FREQ_HZ does not match between /color_convert_0/s_axi_AXILiteS(100000000) and /axi_interconnect_0/xbar/M03_AXI(142857132)
ERROR: [BD 41-237] Bus Interface property CLK_DOMAIN does not match between /color_convert_0/s_axi_AXILiteS(base_ps7_0_0_FCLK_CLK0) and /axi_interconnect_0/xbar/M03_AXI(base_ps7_0_0_FCLK_CLK1)
For the concat errors:
I understand that it’s connected to different types of input pins but I can’t see how this is different to the pinning in the github project overlay I linked to above.
For the Color Convert errors:
I’m not sure what to set the number of bytes as. How should I decide this?
How do I fix the clock domain error? How can I see what clock domain each is using?
For the Bus Interface AXI error:
Is this a knock-on effect from other errors with the M03_AXI or do I manually have to alter the frequency? I can’t see where to edit it.
Would it be easier to take the full PYNQ overlay and just add the HLS IP to that?
Thanks for the reply @marioruiz. Have you come across any project examples that I could follow? I’m not fully sure how to properly integrate the HLS IP into the base overlay. Would I need to add in a second DMA? Thanks.
Thanks again for your help @marioruiz. I expanded the hdmi_in and hdmi_out in the PYNQ base overlay and saw the color convert IP like you said. I’m now trying to integrate a different image processing IP into the base overlay video datapath.