![]() |
|
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
|
![]() |
![]() |
Answers Database
XACT: How to LOC (lock) pins and reserve/restrict pins via a constraints file![]() Record #1506
Product Family: Software Typically SIGNAME is the signal name between the pad and buf in schematic, or your top-level port names in HDL code. However, if there is doubt, or if you get PPR ERROR 5812, you may look in your .xtf file (in a text editor) to see what the tools regard as your IO signal names. Search for "EXT" records (usually at the end), which defines the external IO signal names. Example EXT record: EXT, data_in, I If your syntax differs, change it to match the .xtf file syntax. If the target architecture is 3000A or 3100A: place block BLKNAME : PIN; where BLKNAME is the name of the IOB block. The name of the IOB block is typically identical to the name of the signal between the pad and the buf. However, if there is any doubt, you may look in the .crf file to see how the IOB was mapped(look for "IOB CROSS-REFERENCE REPORT"). Use the IOB name. If the target architecture is 3000, 3100 (non-A) or 2000: place block BLKNAME PIN; Note there is no colon between BLKNAME and PIN. Reference the Libraries Guide, Chapter 4, for more info. Solution 2: How to restrict a pin from being used: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If the target architecture is a 4K or 5k: notplace instance * : PIN; where PIN is the pin number. Example: notplace instance * : p6; If the target architecture is 3000A or 3100A: notplace block * : PIN; where PIN is the pin number. If the target architecture is 3000, 3100 (non-A) or 2000: prohibit location PIN; where PIN is the pin number. Note there is no colon between location and PIN. Reference the Libraries Guide, Chapter 4, for more info. End of Record #1506 - Last Modified: 06/13/97 09:55 |
For the latest news, design tips, and patch information on the Xilinx design environment, check out the Technical Tips! |