Altera_Forum
Honored Contributor
13 years agoAssigning multiple LogicLock constraints to an instance
This is something I've done a lot in Xilinx designs (UCF constraints), but cannot figure out how to do it with Altera.
I'd like to assign more than one LogicLock constraint to a specific instance. This is useful if an instance has multiple "clusters" spread across a chip. A good example is a memory controller interfacing with two or more IO columns. Using the following QSF doesn't work: quartus ignores either area_group_1 or 2. QSF documentation is not helpful either.set_global_assignment -name LL_ORIGIN X25_Y10 -section_id area_group_1
set_global_assignment -name LL_ORIGIN X75_Y10 -section_id area_group_2
# ... other LL constraints
set_instance_assignment -name LL_MEMBER_OF area_group_1 -to "top:top|my_counter:c0" -section_id area_group_1
set_instance_assignment -name LL_MEMBER_OF area_group_2 -to "top:top|my_counter:c0" -section_id area_group_2 Thanks, Evgeni