DFX BDC Project Flow in IP Integrator for Versal - 2021.2 English

Vivado Design Suite Tutorial: Dynamic Function eXchange (UG947)

Document ID
UG947
Release Date
2022-04-18
Version
2021.2 English

Dynamic Function eXchange (DFX) in Xilinx® FPGAs, SoCs, and ACAPs introduces new design requirements compared to traditional solutions. These requirements include unique approaches to source and run management, as both bottom-up synthesis and multi-pass implementation are needed. Before 2021, only non-project Tcl-based and RTL project-based solutions have been available in Vivado® . Vivado 2021.1 introduced an IP-centric project-based environment, which includes new capabilities for block designs and other aspects of IP integrator.

This tutorial is intended to summarize the Vivado tool flow, from project creation to partial image creation for Versal® ACAP targets using the Block Design Container feature in IP integrator. This fundamental flow can be used to apply to Virtex and Kintex® UltraScale™ and UltraScale+™ targets as well. The previous lab covers the equivalent solution for Zynq® UltraScale+ targets.

Flow Summary

The Dynamic Function eXchange IP integrator Project Flow inserts the key requirements of DFX into the existing Vivado project solution, accessible within the Vivado IDE as well as via Tcl commands. Coupled with Vitis, a full hardware and software environment can be created and managed. Key requirements include:

  • Creating Block Design Containers (BDC) to identify hierarchy in a project.
  • Defining BDCs as Reconfigurable Partitions within the design hierarchy.
  • Populating a set of Reconfigurable Modules for each Reconfigurable Partition.
  • Creating a set of top-level and module-level synthesis runs.
  • Creating a set of related implementation runs.
  • Managing dependencies as sources, constraints, or options are modified.
  • Checking rules and results.
  • Verifying configurations.
  • Generating compatible sets of full and partial programming images.
  • Delivering full and partial images to the Versal ACAP target device.

Tcl Commands

Like with most everything within the Vivado® IDE, the features and tasks for Dynamic Function eXchange you see are driven behind the scenes by Tcl commands. One of the key goals for DFX project support is to be able to work seamlessly between GUI and script and command line on the same project. You can examine the specific Tcl commands called by examining the Vivado® journal file for this project. This can be seen by selecting File > Open Journal File. These Tcl commands are not documented in this user guide at this point. Also supported is the ability to export project scripts using the Write Project Tcl option. Additional information for each command can be found using the –help option of each command.

DFX Project Tutorial within IP Integrator

Tutorial Requirements

The design supplied here specifically targets the VCK190 (and its Versal AI Core VC1902 device) development system. The entire design can be processed completely or partially via scripts. The VMK180 (and its Versal Prime VM1802 device) could also be targeted by changing the part and board references in the project creation script, but note that this design has not been tested in that hardware. The key scripts found in the project archive are:

  • run_all.tcl – This script runs the entire flow from block design creation to bitstream generation and hardware export. This includes all the steps managed by the DFX Wizard. It calls multiple scripts, in this order:
    • create_top_bd.tcl – This script creates the static block design and all IP for a completely flat design. One could run this script and then launch the implementation to generate a standard (non-DFX) implementation for the VCK190
    • create_rp1_bdc.tcl – This script creates two levels of hierarchy and converts one to be a block design container.
    • enable_dfx_bdc.tcl – This script turns the standard BDC into a DFX BDC.
    • create_rp1rm2.tcl – This script creates a new RM for the existing DFX BDC.
    • run_impl.tcl – This script is the remainder of the flow. This script creates a top-level wrapper, adds design constraints, and walks through the DFX Wizard. It then generates all outputs for the design, from IP results to synthesis and implementation runs, then creates bitstreams and XSA files for hardware handoff.

This tutorial can be run completely via a script by sourcing the run_all.tcl script in a Vivado Tcl shell. Each sub-section can also be run individually using the remaining Tcl scripts listed above. The tutorial as described will manually run through most steps to show what is happening throughout the flow. Sub-section scripts will be noted along the way. This tutorial does not show iterative interaction with the IP integrator design.