Internal Error in generation of HDL IP core for a Xilinx platform
4 次查看(过去 30 天)
显示 更早的评论
I am trying to run a model on a Xilinx Zynq Zedboard platform by using the HDL Coder and the Embedded Coder Support Package for Xilinx Platform.
The model is a first order plant controlled by a PID controller. The idea is to run the plant model on the PL of the Zynq and the PID control algorithm on the PS.
I configured correctly the Xilinx support package and I can run an example application too (https://www.mathworks.com/help/hdlcoder/examples/getting-started-with-hardware-software-codesign-workflow-for-xilinx-zynq-platform.html#d120e14448).
The problem is the following: when I run the HDL Workflow Advisor at step 1.2 I got the following error (see also figure below):
Failed Internal Error: Could not connect the blocks in the model 'PID_example2'. Look for unconnected blocks or other warnings or errors and correct them to continue.
Error using slhdlcoder.HDLCoder/createPir
Internal Error: Could not connect the blocks in the model 'PID_example2'. Look for unconnected blocks or other warnings or errors and correct them to continue.
Error in hdlturnkey.table.TargetInterfaceTable/runPirFrontEnd
Error in hdlturnkey.table.TargetInterfaceTable/buildInterfaceTable
Error in hdlturnkey.table.TargetInterfaceTable/populateInterfaceTable
Error in downstream.DownstreamIntegrationDriver/loadInterfaceTable
Error in setTargetReferenceDesign
Error in Simulink.ModelAdvisor/executeCheckCallbackFct
Error in Simulink.ModelAdvisor/run
Error in Simulink.ModelAdvisor/runCheck
Error in ModelAdvisor.Node/runTaskAdvisor
Notice that all the blocks in my model are connected.
I attach the model I am using and the error message.
0 个评论
回答(2 个)
Kiran Kintali
2020-7-18
Firstly, you need to fix algebraic loop option on the FPGA DUT by turning off this option as follows
set_param('PID_example2/Plant (FPGA)', 'MinAlgLoopOccurrences', 'off');
Now ctrl-d the model and fix the algebraic loops present in the model. I used a delay to solve this you may want to tune this to your needs
Once you do this you should be able to generate code for the model.
### Applying HDL optimizations on the model 'PID_example2'...
### Begin model generation.
### Model generation complete.
### Begin VHDL Code Generation for 'PID_example2'.
### Working on PID_example2/Plant (FPGA) as hdl_prj\hdlsrc\PID_example2\Plant_FPGA.vhd.
### Code Generation for 'PID_example2' completed.
### Creating HDL Code Generation Check Report Plant_FPGA_under_report.html
### HDL check for 'PID_example2' complete with 0 errors, 0 warnings, and 0 messages.
### HDL code generation complete.
Now follow the workflow advisor steps to configure for IP core generation.
Kiran Kintali
2020-7-20
Can you explain why you would need to force the subsystem to be atomic for Zynq targeting?
I totally understand the additional delay concern. Consider using model-reference for the PL subsystem and use model block or some other technique to break the algebraic loop. HDLCoder cannot proceed forward unless algebraic loop is removed in some way and model compiles without any error.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!