forked from YosysHQ/apicula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Himbaechel. Improve dedicated clock router
Added buffers for the global clock network. We indicate that the network is CLOCK by placing the following construction in the file of restrictions: CLOCK_LOC "net_name" BUFG; As a result, the specified network is cut into two parts: the part from the source to the buffer is routed using any available PIPs, while the part from the buffer to the sink is routed through the global clock network. This will slightly improve the situation with Tangnano20k, since now it is possible to declare its pin, on which the simple external generator is located, as a clock, which will lead to routing through the buffer without any clock glitches. All examples for Tangnano20k, which previously used the PLL as a buffer, are no longer needed and use the same files as for the rest of the boards. Signed-off-by: YRabbit <[email protected]>
- Loading branch information
Showing
23 changed files
with
95 additions
and
1,056 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
IO_LOC "clk" 4; | ||
IO_LOC "clk_i" 4; | ||
|
||
CLOCK_LOC "clk" BUFG; | ||
|
||
IO_LOC "led[0]" 15; | ||
IO_LOC "led[1]" 16; | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.