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
2413557f
Commit
2413557f
authored
Dec 22, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added module to resynchronize continuous data sterams between clock domains
parent
1c9bec5e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
resync_data.v
util_modules/resync_data.v
+81
-0
No files found.
util_modules/resync_data.v
0 → 100644
View file @
2413557f
/*******************************************************************************
* Module: resync_data
* Date:2015-12-22
* Author: Andrey Filippov
* Description: Resynchronize data between clock domains. No over/underruns
* are checker, start with half FIFO full. Async reset sets
* specifies output values regardless of the clocks
*
* Copyright (c) 2014 Elphel, Inc.
* resync_data.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.
*
* resync_data.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
resync_data
#(
parameter
integer
DATA_WIDTH
=
16
,
parameter
integer
DATA_DEPTH
=
4
,
// >= 2
parameter
INITIAL_VALUE
=
0
)
(
input
arst
,
// async reset, active high (global)
input
srst
,
// same as arst, but relies on the clocks
input
wclk
,
// write clock - positive edge
input
rclk
,
// read clock - positive edge
input
we
,
// write enable
input
re
,
// read enable
input
[
DATA_WIDTH
-
1
:
0
]
data_in
,
// input data
output
reg
[
DATA_WIDTH
-
1
:
0
]
data_out
,
// output data
output
reg
valid
// data valid @ rclk
)
;
localparam
integer
DATA_2DEPTH
=
(
1
<<
DATA_DEPTH
)
-
1
;
reg
[
DATA_WIDTH
-
1
:
0
]
ram
[
0
:
DATA_2DEPTH
]
;
reg
[
DATA_DEPTH
-
1
:
0
]
raddr
;
reg
[
DATA_DEPTH
-
1
:
0
]
waddr
;
reg
[
1
:
0
]
rrst
=
3
;
always
@
(
posedge
rclk
or
posedge
arst
)
begin
if
(
arst
)
valid
<=
0
;
else
if
(
srst
)
valid
<=
0
;
else
if
(
&
waddr
[
DATA_DEPTH
-
2
:
0
]
&&
we
)
valid
<=
1
;
// just once set and stays until reset
end
always
@
(
posedge
wclk
or
posedge
arst
)
begin
if
(
arst
)
waddr
<=
0
;
else
if
(
srst
)
waddr
<=
0
;
else
if
(
we
)
waddr
<=
waddr
+
1
;
end
always
@
(
posedge
rclk
or
posedge
arst
)
begin
if
(
arst
)
rrst
<=
3
;
else
if
(
srst
)
rrst
<=
3
;
// resync to rclk
else
rrst
<=
rrst
<<
1
;
if
(
arst
)
raddr
<=
0
;
else
if
(
rrst
[
0
])
raddr
<=
0
;
else
if
(
re
||
rrst
[
1
])
raddr
<=
raddr
+
1
;
if
(
arst
)
data_out
<=
INITIAL_VALUE
;
else
if
(
rrst
[
0
])
data_out
<=
INITIAL_VALUE
;
else
if
(
re
||
rrst
[
1
])
data_out
<=
ram
[
raddr
]
;
end
always
@
(
posedge
wclk
)
begin
if
(
we
)
ram
[
waddr
]
<=
data_in
;
end
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