Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
x393
Commits
4aceda5f
Commit
4aceda5f
authored
May 29, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transferring data between clk anc clk2x domains
parent
cad9a46e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
clk_to_clk2x.v
util_modules/clk_to_clk2x.v
+44
-0
No files found.
util_modules/clk_to_clk2x.v
0 → 100644
View file @
4aceda5f
/*******************************************************************************
* Module: clk_to_clk2x
* Date:2015-05-29
* Author: andrey
* Description: move data between clk and clk2x (nominally posedge aligned)
*
* Copyright (c) 2015 <set up in Preferences-Verilog/VHDL Editor-Templates> .
* clk_to_clk2x.v is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* clk_to_clk2x.v is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/> .
*******************************************************************************/
`timescale
1
ns
/
1
ps
module
clk_to_clk2x
(
input
clk
,
// single rate clock
input
clk2x
,
// double rate clock, approximately posedge aligned to clk
output
clk_sync
// approximately repeating clk, clocked @posedge clk2x - use as CE to transfer data
)
;
reg
r_clk
=
0
;
reg
r_nclk2x
=
0
;
reg
r_clk2x
;
assign
clk_sync
=
r_clk2x
;
always
@
(
posedge
r_nclk2x
or
posedge
clk
)
begin
if
(
r_nclk2x
)
r_clk
<=
0
;
else
r_clk
<=
1
;
end
always
@
(
negedge
clk2x
)
r_nclk2x
<=
r_clk
;
always
@
(
posedge
clk2x
)
r_clk2x
<=
!
r_nclk2x
;
endmodule
Write
Preview
Markdown
is supported
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