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
4340db45
Commit
4340db45
authored
Jan 22, 2016
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more modules from x393_sata
parent
952b1c1a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
292 additions
and
0 deletions
+292
-0
fifo_sameclock_control.v
util_modules/fifo_sameclock_control.v
+77
-0
ramt_var_wb_var_r.v
wrap/ramt_var_wb_var_r.v
+215
-0
No files found.
util_modules/fifo_sameclock_control.v
0 → 100644
View file @
4340db45
/*******************************************************************************
* 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
wrap/ramt_var_wb_var_r.v
0 → 100644
View file @
4340db45
This diff is collapsed.
Click to expand it.
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