Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x393_sata
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_sata
Commits
0f0cf866
Commit
0f0cf866
authored
Jan 21, 2016
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added same clock BRAM-based FIFO control
parent
0f01238e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
fifo_sameclock_control.v
utils/fifo_sameclock_control.v
+77
-0
No files found.
utils/fifo_sameclock_control.v
0 → 100644
View file @
0f0cf866
/*******************************************************************************
* Module: fifo_sameclock_control
* Date:2016-01-20
* Author: andrey
* Description: BRAM-based fifo control, uses BARM output registers
*
* Copyright (c) 2016 Elphel, Inc .
* fifo_sameclock_control.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.
*
* fifo_sameclock_control.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
fifo_sameclock_control
#(
parameter
WIDTH
=
9
)(
input
clk
,
input
rst
,
// clock-sync reset
input
wr
,
// write to FIFO (also applied directly to memory)
input
rd
,
// read from FIFO, internally masked by nempty
output
nempty
,
// at read side
output
[
WIDTH
:
0
]
fill_in
,
// valid at write side, latency 1 for read
output
reg
[
WIDTH
-
1
:
0
]
mem_wa
,
output
reg
[
WIDTH
-
1
:
0
]
mem_ra
,
output
mem_re
,
output
mem_regen
,
output
reg
over
,
output
reg
under
)
;
reg
[
WIDTH
:
0
]
fill_ram
;
reg
ramo_full
;
reg
rreg_full
;
assign
mem_regen
=
mem_regen
;
assign
mem_re
=
(
|
fill_ram
)
&&
(
!
ramo_full
||
!
rreg_full
||
rd
)
;
assign
mem_regen
=
ramo_full
&&
(
!
rreg_full
||
rd
)
;
assign
nempty
=
rreg_full
;
assign
fill_in
=
fill_ram
;
always
@
(
posedge
clk
)
begin
if
(
rst
)
mem_wa
<=
0
;
else
if
(
wr
)
mem_wa
<=
mem_wa
+
1
;
if
(
rst
)
mem_ra
<=
0
;
else
if
(
mem_re
)
mem_ra
<=
mem_ra
+
1
;
if
(
rst
)
fill_ram
<=
0
;
else
if
(
wr
^
mem_re
)
fill_ram
<=
mem_regen
?
(
fill_ram
+
1
)
:
(
fill_ram
-
1
)
;
if
(
rst
)
ramo_full
<=
0
;
else
if
(
mem_re
^
mem_regen
)
ramo_full
<=
mem_re
;
if
(
rst
)
rreg_full
<=
0
;
else
if
(
mem_regen
^
(
rd
&&
rreg_full
))
rreg_full
<=
mem_regen
;
if
(
rst
)
under
<=
0
;
else
under
<=
rd
&&
!
rreg_full
;
if
(
rst
)
over
<=
0
;
else
over
<=
wr
&&
fill_ram
[
WIDTH
]
&&
!
fill_ram
[
WIDTH
-
1
]
;
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