Visible to Intel only — GUID: jka1463621592916
Ixiasoft
Step 1: Getting Started
Step 2: Creating a Design Partition
Step 3: Allocating Placement and Routing Region for a PR Partition
Step 4: Adding the Intel® Arria® 10 Partial Reconfiguration Controller IP Core
Step 5: Defining Personas
Step 6: Creating Revisions
Step 7: Generating the Partial Reconfiguration Flow Script
Step 8: Running the Partial Reconfiguration Flow Script
Step 9: Programming the Board
Modifying an Existing Persona
Adding a New Persona to the Design
Visible to Intel only — GUID: jka1463621592916
Ixiasoft
Step 7: Generating the Partial Reconfiguration Flow Script
To generate the partial reconfiguration flow script:
- From the Intel® Quartus® Prime command shell, create a flow template by running the following command:
Intel® Quartus® Prime generates the a10_partial_reconfig/flow.tcl file.quartus_sh --write_flow_template -flow a10_partial_reconfig
- Rename the generated a10_partial_reconfig/setup.tcl.example to a10_partial_reconfig/setup.tcl, and modify the script to specify your partial reconfiguration project details:
- To define the name of the project, update the following line:
define_project blinking_led
- To define the base revision, update the following line:
define_base_revision blinking_led
- To define each of the partial reconfiguration implementation revisions, along with the PR partition names and the synthesis revision that implements the revisions, update the following lines:
define_pr_impl_partition -impl_rev_name blinking_led_pr_alpha \ -partition_name pr_partition \ -source_rev_name blinking_led_default define_pr_impl_partition -impl_rev_name blinking_led_pr_charlie \ -partition_name pr_partition \ -source_rev_name blinking_led_empty define_pr_impl_partition -impl_rev_name blinking_led_pr_bravo \ -partition_name pr_partition \ -source_rev_name blinking_led_slow
Note: All the revision projects must be in the same directory as blinking_led.qpf. Otherwise, update the flow script accordingly.
- To define the name of the project, update the following line: