Xilinx RFSoC Device - HDL Workflow Advisor

4 visualizzazioni (ultimi 30 giorni)
I am using Xilinx Zynq UltraScale+ RFSoC ZCU111 Evaluation Kit to try MATLAB example (Pulse-Doppler Radar Using Xilinx RFSoC Device). I have installed 2022.1 Xilinx Vivado. When I used Workflow Advisor, I got error at 1.2 step (Set target reference design). I am getting below error message. I can not change the reference design tool version to "2022.1". I have also attached the screenshot of Workflow Advisor.
Failed Current reference design "Real ADC/DAC Interface with PL-DDR4" is not compatible with the version "2022.1" of "Xilinx Vivado" tool on system path. This reference design is compatible with tool version "2020.2". Please change your tool version, or use a different reference design. If you want to attempt to continue using this reference design, check the "Ignore tool version mismatch" option

Risposta accettata

R
R il 29 Gen 2024
Hi Sudantha,
The error appears to be a result of an incompatibility issue between the MATLAB Release version and the Xilinx Vivado Design Suite. Each release HDL Workflow Advisor is tested with specific versions of EDA tools. To address this, I would recommend consulting the following MATLAB Central resource to identify the versions of Vivado that are compatible with your release of HDL Coder:
One potential workaround is to select the "Ignore tool version mismatch" option during your workflow. Alternatively, aligning MATLAB with Vivado version 2020.2 could also bypass the compatibility issue as the HDL Coder RFSoC Hardware Support Package currently supports Vivado 2020.2. However, this approach will lead to further complications.
In this specific example, the model 'soc_range_doppler_proc' utilizes the ert.tlc system target file for the processing system (PS) part of the SoC, while 'soc_range_doppler_fpga' employs the grt.tlc for the programmable logic (PL) part. The HDL Workflow Advisor expects consistent system target file parameters across all models within the model reference hierarchy, but the unique structure of the example model does not permit this:
Given the integrated nature of the software and hardware components in the given example, the SoC Builder tool is more suitable than the HDL Workflow Advisor. SoC Builder is designed to provide a comprehensive end-to-end workflow, facilitating everything from model configuration to hardware deployment, including essential steps such as memory mapping and hardware/software interface validation. Additionally, it offers the flexibility to select build types tailored to your development requirements:
Therefore, my recommendation is to proceed with the SoC Builder tool to synthesize and deploy this design. This approach should streamline the development process and help you avoid the complexities associated with the HDL Workflow Advisor in the current context.
  3 Commenti
R
R il 13 Feb 2024
The example you are working with is designed to be modeled and partitioned for implementation on a System-on-Chip (SoC) platform. The system is divided into two main parts:
  1. FPGA Model: This is where the range processing is performed. The model components suitable for FPGA are intended to be synthesized into HDL code.
  2. Processor Model: This part handles the Doppler processing and is intended to be compiled into C code or a related language for execution on the processor.
The 'soc_range_doppler_proc' subsystem within your model is configured for the processor side of the SoC and is not meant for HDL code generation. This is why when you attempt to generate HDL code for the entire top model, including 'soc_range_doppler_proc', the process fails. The HDL code generation errors you are seeing are indicating that 'soc_range_doppler_proc' is not suitable for HDL synthesis.
On the other hand, the 'soc_range_doppler_fpga' subsystem is designed for the FPGA and you did not encounter issues when generating HDL code for it.
The SoC Builder tool is specifically designed to manage this partitioning process. It intelligently determines which parts of your model should be targeted for HDL code generation (for the FPGA) and which should be targeted for C code generation (for the processor).
Verilog code generation is typically not feasible for models designed for processor execution—this is a characteristic of an SoC implementation. To successfully build and deploy your radar system, please use the SoC Builder tool to guide you through the correct code generation process for each part of the model.

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by