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
acf82200
Commit
acf82200
authored
Sep 12, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fifo-like cross-clock pulses
parent
f3cc7226
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
elastic_cross_clock.v
util_modules/elastic_cross_clock.v
+64
-0
No files found.
util_modules/elastic_cross_clock.v
0 → 100644
View file @
acf82200
/*******************************************************************************
* Module: elastic_cross_clock
* Date:2015-09-12
* Author: Andrey Filippov
* Description: Generate a train of pulses through clock domains boundary
* One output pulse per 1 active input cycle
* Maximal duty cycle (with EXTRA_DLY=0 and Fdst << Fsrc) = 50%
* same frequencies - ~1/3 (with EXTRA_DLY=0) and 1/5 (with EXTRA_DLY=1)
* Lowering Fsrc reduces duty cycle proportianally as counter is in src_clk
* domain.
*
* Copyright (c) 2015 Elphel, Inc.
* elastic_cross_clock.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.
*
* elastic_cross_clock.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
elastic_cross_clock
#(
parameter
WIDTH
=
2
,
// width of the pulse counter
parameter
EXTRA_DLY
=
0
)(
// 0 or 1 - output duty cycle control
input
rst
,
input
src_clk
,
input
dst_clk
,
input
in_pulses
,
output
out_pulse
,
output
busy
)
;
reg
[
WIDTH
-
1
:
0
]
pend_cntr
=
0
;
wire
busy_single
;
wire
single_rq_w
;
// assign busy = busy_single && (|pend_cntr);
assign
busy
=
busy_single
||
(
|
pend_cntr
)
;
assign
single_rq_w
=
!
busy_single
&&
((
|
pend_cntr
)
||
in_pulses
)
;
always
@
(
posedge
src_clk
)
begin
if
(
rst
)
pend_cntr
<=
0
;
else
if
(
in_pulses
&&
!
single_rq_w
)
pend_cntr
<=
pend_cntr
+
1
;
else
if
(
!
in_pulses
&&
single_rq_w
)
pend_cntr
<=
pend_cntr
-
1
;
end
pulse_cross_clock
#(
.
EXTRA_DLY
(
EXTRA_DLY
)
)
pulse_cross_clock_i
(
.
rst
(
rst
)
,
// input
.
src_clk
(
src_clk
)
,
// input
.
dst_clk
(
dst_clk
)
,
// input
.
in_pulse
(
single_rq_w
)
,
// input
.
out_pulse
(
out_pulse
)
,
// output
.
busy
(
busy_single
)
// output
)
;
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