Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Gateware
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Gateware
Commits
d58d268f
Commit
d58d268f
authored
9 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
10mhz_gen: fix potential bug, reset oserdes with pll locked signal
parent
17ff260a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/wrsw_rt_subsystem/xwrsw_gen_10mhz.vhd
+3
-1
3 additions, 1 deletion
modules/wrsw_rt_subsystem/xwrsw_gen_10mhz.vhd
with
3 additions
and
1 deletion
modules/wrsw_rt_subsystem/xwrsw_gen_10mhz.vhd
+
3
−
1
View file @
d58d268f
...
...
@@ -133,6 +133,7 @@ architecture behav of xwrsw_gen_10mhz is
signal
clk_fb
:
std_logic
;
signal
clk_fb_buf
:
std_logic
;
signal
rst
:
std_logic
;
signal
rst_oserdes
:
std_logic
;
signal
pll_locked
:
std_logic
;
signal
sd_out_p
:
std_logic_vector
(
0
downto
0
);
signal
sd_out_n
:
std_logic_vector
(
0
downto
0
);
...
...
@@ -215,6 +216,7 @@ begin
end
process
;
rst
<=
not
rst_n_i
;
rst_oserdes
<=
not
pll_locked
;
U_PLL_500
:
pll_62_5_500mhz
port
map
(
...
...
@@ -253,7 +255,7 @@ begin
REF_CLOCK
=>
clk_i
,
CLK_IN
=>
clk_500_buf
,
CLK_DIV_IN
=>
clk_i
,
IO_RESET
=>
rst
);
IO_RESET
=>
rst
_oserdes
);
clk_aux_p_o
<=
sd_out_p
(
0
);
clk_aux_n_o
<=
sd_out_n
(
0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment