Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
6a06399b
Commit
6a06399b
authored
Jan 24, 2018
by
Lukas Sommer
Browse files
Moved filter condition for active-high resets to correct command;
parent
cba13f81
Pipeline
#169
passed with stage
in 5 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
arch/axi4mm/axi4mm.tcl
View file @
6a06399b
...
@@ -357,7 +357,7 @@ namespace eval arch {
...
@@ -357,7 +357,7 @@ namespace eval arch {
[
get_bd_pins -of_objects
[
get_bd_cells
]
-filter
"TYPE == rst && NAME =~ *interconnect_aresetn && DIR == I"
]
[
get_bd_pins -of_objects
[
get_bd_cells
]
-filter
"TYPE == rst && NAME =~ *interconnect_aresetn && DIR == I"
]
connect_bd_net
[
tapasco::subsystem::get_port
"design"
"rst"
"peripheral"
"resetn"
]
\
connect_bd_net
[
tapasco::subsystem::get_port
"design"
"rst"
"peripheral"
"resetn"
]
\
[
get_bd_pins -of_objects
[
get_bd_cells -of_objects
[
current_bd_instance .
]]
-filter
"TYPE == rst && NAME =~ *peripheral_aresetn && DIR == I"
]
\
[
get_bd_pins -of_objects
[
get_bd_cells -of_objects
[
current_bd_instance .
]]
-filter
"TYPE == rst && NAME =~ *peripheral_aresetn && DIR == I"
]
\
[
get_bd_pins -filter
{
TYPE == rst && DIR == I
}
-of_objects
[
get_bd_cells -filter
{
NAME =~
"target_ip*"
&& CONFIG.POLARITY != ACTIVE_HIGH
}]]
[
get_bd_pins -filter
{
TYPE == rst && DIR == I
&& CONFIG.POLARITY != ACTIVE_HIGH
}
-of_objects
[
get_bd_cells -filter
{
NAME =~
"target_ip*"
}]]
set active_high_resets
[
get_bd_pins -of_objects
[
get_bd_cells
]
-filter
"TYPE == rst && DIR == I && CONFIG.POLARITY == ACTIVE_HIGH"
]
set active_high_resets
[
get_bd_pins -of_objects
[
get_bd_cells
]
-filter
"TYPE == rst && DIR == I && CONFIG.POLARITY == ACTIVE_HIGH"
]
if
{[
llength $active_high_resets
]
> 0
}
{
if
{[
llength $active_high_resets
]
> 0
}
{
connect_bd_net
[
tapasco::subsystem::get_port
"design"
"rst"
"peripheral"
"reset"
]
$active_high_resets
connect_bd_net
[
tapasco::subsystem::get_port
"design"
"rst"
"peripheral"
"reset"
]
$active_high_resets
...
...
Jens Korinth
@jk
mentioned in commit
86b53707
·
Jan 24, 2018
mentioned in commit
86b53707
mentioned in commit 86b537075252aa5540ccefe6ea7191fc2c263614
Toggle commit list
Jens Korinth
@jk
mentioned in commit
dcc6c418
·
Jan 25, 2018
mentioned in commit
dcc6c418
mentioned in commit dcc6c41810f14ca7a878a4b58fc8a6542d7f3535
Toggle commit list
Jens Korinth
@jk
mentioned in commit
17f0d672
·
Mar 05, 2018
mentioned in commit
17f0d672
mentioned in commit 17f0d67240ebf5d7e1d0be9162d272b04256c47d
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment