Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Merge requests
!181
areset -> async
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
areset -> async
L2SDP-541
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Reinier van der Walle
requested to merge
L2SDP-541
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Closes
L2SDP-541
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
647b009e
1 commit,
3 years ago
2 files
+
12
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
libraries/technology/ip_arria10_e1sg/jesd204b/ip_arria10_e1sg_jesd204b.vhd
+
6
−
6
View file @ 647b009e
Edit in single-file editor
Open in Web IDE
Show full file
@@ -368,15 +368,15 @@ BEGIN
rx_xcvr_ready_in_arr
(
i
)
<=
'1'
when
rx_csr_lane_powerdown_arr
(
i
)
=
'1'
OR
xcvr_rst_ctrl_rx_ready_arr
(
i
)
=
'1'
else
'0'
;
-- synchronize rx_xcvr_ready_in_arr to mm_clk
u_common_a
reset
_rx_xcvr_ready
:
ENTITY
common_lib
.
common_a
reset
u_common_a
sync
_rx_xcvr_ready
:
ENTITY
common_lib
.
common_a
sync
GENERIC
MAP
(
g_in_rst_level
=>
'0'
,
-- rst is asserted immediately in_rst = '0'
g_rst_level
=>
'0'
-- When in_rst is asserted, out_rst = '0'
g_rst_level
=>
'0'
-- When in_rst is asserted, dout = '0'
)
PORT
MAP
(
in_rst
=>
rx_xcvr_ready_in_arr
(
i
),
clk
=>
mm_clk
,
out_rst
=>
mm_rx_xcvr_ready_in_arr
(
i
)
rst
=>
mm_rst
,
clk
=>
mm_clk
,
din
=>
rx_xcvr_ready_in_arr
(
i
),
dout
=>
mm_rx_xcvr_ready_in_arr
(
i
)
);
-- Invert thr active-low resets
Loading