Creating Synthesis-Only Revisions
To create synthesis-only revisions for the personas, you must assign the top-level entity and corresponding SystemVerilog file for each of the personas:
- In the Intel® Quartus® Prime software, click .
- Create blinking_led_default revision based on blinking_led revision. Do not set this revision as current revision.
- Modify blinking_led_default.qsf file to include the following assignments:
set_global_assignment -name TOP_LEVEL_ENTITY blinking_led set_global_assignment -name SYSTEMVERILOG_FILE blinking_led.sv
- Similarly, create blinking_led_empty and blinking_led_slow revisions based on blinking_led revision. Do not set these revisions as current revision.
- Update the blinking_led_slow.qsf and blinking_led_empty.qsf files with their corresponding TOP_LEVEL_ENTITY and SYSTEMVERILOG_FILE assignments:
##blinking_led_slow.qsf set_global_assignment -name TOP_LEVEL_ENTITY blinking_led_slow set_global_assignment -name SYSTEMVERILOG_FILE blinking_led_slow.sv
##blinking_led_empty.qsf set_global_assignment -name TOP_LEVEL_ENTITY blinking_led_empty set_global_assignment -name SYSTEMVERILOG_FILE blinking_led_empty.sv
- To avoid synthesis errors, ensure that the synthesis revision files do not contain any design partition, Logic Lock region assignments, or pin assignments. Remove these assignments, if any, in the blinking_led_default.qsf, blinking_led_slow.qsf, and blinking_led_empty.qsf files:
set_instance_assignment -name PARTITION pr_partition -to u_blinking_led set_instance_assignment -name PARTIAL_RECONFIGURATION_PARTITION ON \ -to u_blinking_led set_instance_assignment -name PLACE_REGION "69 10 88 29" -to u_blinking_led set_instance_assignment -name RESERVE_PLACE_REGION ON -to u_blinking_led set_instance_assignment -name CORE_ONLY_PLACE_REGION ON -to u_blinking_led set_instance_assignment -name ROUTE_REGION "68 9 89 30" -to u_blinking_led
- Verify that the blinking_led.qpf file contains the following revisions, in no particular order:
PROJECT_REVISION = "blinking_led" PROJECT_REVISION = "blinking_led_pr_alpha" PROJECT_REVISION = "blinking_led_pr_bravo" PROJECT_REVISION = "blinking_led_pr_charlie" PROJECT_REVISION = "blinking_led_default" PROJECT_REVISION = "blinking_led_slow" PROJECT_REVISION = "blinking_led_empty"
Note: If you are copying the revision files from pr folder, manually update the blinking_led.qpf file with the above lines of code.