x393
1.0
FPGAcodeforElphelNC393camera
mcont_from_chnbuf_reg.v
Go to the documentation of this file.
1
39
`timescale 1ns/1ps
40
41
module
mcont_from_chnbuf_reg
#(
42
parameter
CHN_NUMBER
=
0
,
43
parameter
CHN_LATENCY
=
2
// 0 - no extra latency in extrenal BRAM - data available next cycle after regen (1 extra from ren)
44
)(
45
input
rst
,
46
input
clk
,
47
input
ext_buf_rd
,
48
input
[
3
:
0
]
ext_buf_rchn
,
// ==run_chn_d valid 1 cycle ahead opf ext_buf_rd!, maybe not needed - will be generated externally
49
input
ext_buf_rrefresh
,
50
input
ext_buf_rpage_nxt
,
51
output
reg
[
63
:
0
]
ext_buf_rdata
,
// Latency of ram_1kx32w_512x64r plus 2
52
output
reg
buf_rd_chn
,
53
output
reg
rpage_nxt
,
54
input
[
63
:
0
]
buf_rdata_chn
55
);
56
reg
[
63
:
0
]
buf_rdata_chn_r
;
/// *** temporary register to delay buffer read data - may be used to implement multi-clock mux to ease timing
57
reg
buf_chn_sel
;
58
reg
[
CHN_LATENCY
:
0
]
latency_reg
=
0
;
59
// always @ (posedge rst or posedge clk) begin
60
always
@ (
posedge
clk
)
begin
61
if
(
rst
)
buf_chn_sel
<=
0
;
62
else
buf_chn_sel
<= (
ext_buf_rchn
==
CHN_NUMBER
) && !
ext_buf_rrefresh
;
63
64
if
(
rst
)
buf_rd_chn
<=
0
;
65
else
buf_rd_chn
<=
buf_chn_sel
&&
ext_buf_rd
;
66
67
if
(
rst
)
latency_reg
<=
0
;
68
else
latency_reg
<= {
latency_reg
[
CHN_LATENCY
-
1
:
0
],
buf_rd_chn
};
69
70
end
71
always
@ (
posedge
clk
)
buf_rdata_chn_r
<=
buf_rdata_chn
;
// THIS WILL BE REPLACED BY MULTI-CYCLE MUX
72
always
@ (
posedge
clk
)
if
(
latency_reg
[
CHN_LATENCY
])
ext_buf_rdata
<=
buf_rdata_chn_r
;
73
always
@ (
posedge
clk
)
rpage_nxt
<=
ext_buf_rpage_nxt
&& (
ext_buf_rchn
==
CHN_NUMBER
) && !
ext_buf_rrefresh
;
74
75
76
endmodule
77
mcont_from_chnbuf_reg.10687buf_rdata_chn_r
10687buf_rdata_chn_rreg[63:0]
Definition:
mcont_from_chnbuf_reg.v:56
mcont_from_chnbuf_reg.10681ext_buf_rrefresh
10681ext_buf_rrefresh
Definition:
mcont_from_chnbuf_reg.v:49
mcont_from_chnbuf_reg.10684buf_rd_chn
reg 10684buf_rd_chn
Definition:
mcont_from_chnbuf_reg.v:52
mcont_from_chnbuf_reg.10676CHN_LATENCY
10676CHN_LATENCY2
Definition:
mcont_from_chnbuf_reg.v:43
mcont_from_chnbuf_reg.10675CHN_NUMBER
10675CHN_NUMBER0
Definition:
mcont_from_chnbuf_reg.v:42
mcont_from_chnbuf_reg.10678clk
10678clk
Definition:
mcont_from_chnbuf_reg.v:46
mcont_from_chnbuf_reg.10688buf_chn_sel
10688buf_chn_selreg
Definition:
mcont_from_chnbuf_reg.v:57
mcont_from_chnbuf_reg.10680ext_buf_rchn
[3:0] 10680ext_buf_rchn
Definition:
mcont_from_chnbuf_reg.v:48
mcont_from_chnbuf_reg.10679ext_buf_rd
10679ext_buf_rd
Definition:
mcont_from_chnbuf_reg.v:47
mcont_from_chnbuf_reg.10689latency_reg
10689latency_regreg[CHN_LATENCY:0]
Definition:
mcont_from_chnbuf_reg.v:58
mcont_from_chnbuf_reg.10682ext_buf_rpage_nxt
10682ext_buf_rpage_nxt
Definition:
mcont_from_chnbuf_reg.v:50
mcont_from_chnbuf_reg.10677rst
10677rst
Definition:
mcont_from_chnbuf_reg.v:45
mcont_from_chnbuf_reg
Definition:
mcont_from_chnbuf_reg.v:41
mcont_from_chnbuf_reg.10683ext_buf_rdata
reg [63:0] 10683ext_buf_rdata
Definition:
mcont_from_chnbuf_reg.v:51
mcont_from_chnbuf_reg.10685rpage_nxt
reg 10685rpage_nxt
Definition:
mcont_from_chnbuf_reg.v:53
mcont_from_chnbuf_reg.10686buf_rdata_chn
[63:0] 10686buf_rdata_chn
Definition:
mcont_from_chnbuf_reg.v:54
util_modules
mcont_from_chnbuf_reg.v
Generated by
1.8.12