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
0a580f98
Commit
0a580f98
authored
Jan 29, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
continue editing
parent
728f9315
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
166 additions
and
101 deletions
+166
-101
address_map.txt
address_map.txt
+17
-1
memctrl16.v
memctrl/memctrl16.v
+86
-69
fifo_same_clock.v
util_modules/fifo_same_clock.v
+27
-15
mcont_from_chnbuf_reg.v
util_modules/mcont_from_chnbuf_reg.v
+9
-4
mcont_to_chnbuf_reg.v
util_modules/mcont_to_chnbuf_reg.v
+9
-2
x393.v
x393.v
+18
-10
No files found.
address_map.txt
View file @
0a580f98
//0x1080..10ff - 8- bit data - to set various delay values
parameter DLY_LD = 'h080, // address to generate delay load
parameter DLY_LD_MASK = 'h380, // address mask to generate delay load
0x1000..103f - 0- bit data (set/reset)
parameter MCONTR_PHY_0BIT_ADDR = 'h020, // address to set sequnecer channel and run (4 LSB-s - channel)
parameter MCONTR_PHY_0BIT_ADDR_MASK = 'h3f0, // address mask to generate sequencer channel/run
...
...
@@ -52,14 +56,26 @@
parameter MCONTR_TOP_16BIT_REFRESH_PERIOD = 'h1, // 8-bit refresh period
parameter MCONTR_TOP_16BIT_REFRESH_ADDRESS= 'h2, // 10 bits refresh address in the sequencer (PL) memory
parameter MCONTR_TOP_16BIT_STATUS_CNTRL= 'h3, // 8 bits - write to status control (and debug?)
0x1100..11ff - 16-bit per-channel memory control
0x1100..110f - control of memory channels 0,1 - PS-controlled sequences
parameter MCNTRL_PS_ADDR= 'h100,
parameter MCNTRL_PS_MASK= 'h3e0, // both channels 0 and 1
0x1100 - MCNTRL_PS_EN_RST
0x1101 - MCNTRL_PS_CMD
0x1102 - MCNTRL_PS_STATUS_CNTRL
parameter MCNTRL_PS_EN_RST= 'h0,
parameter MCNTRL_PS_CMD= 'h1,
parameter MCNTRL_PS_STATUS_CNTRL= 'h2,
// Status read address
parameter STATUS_ADDR = 'h1400, // AXI write address of status read registers
parameter STATUS_ADDR_MASK = 'h1400, // AXI write address of status registers
parameter STATUS_DEPTH= 8, // 256 cells, maybe just 16..64 are enough?
parameter MCONTR_PHY_STATUS_REG_ADDR= 'h0, // 8 or less bits: status register address to use for memory controller phy
parameter MCONTR_TOP_STATUS_REG_ADDR= 'h1, // 8 or less bits: status register address to use for memory controller
parameter MCNTRL_PS_STATUS_REG_ADDR= 'h2
================================ OLD =======================================================
Control addresses (in original ddrc_test01)
...
...
memctrl/memctrl16.v
View file @
0a580f98
...
...
@@ -161,7 +161,8 @@ module memctrl16 #(
output
reg
channel_pgm_en0
,
// channel can program sequence data
input
[
31
:
0
]
seq_data0
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr0
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done0
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set0
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done0
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn0
output
buf_wr_chn0
,
output
[
6
:
0
]
buf_waddr_chn0
,
...
...
@@ -180,7 +181,8 @@ module memctrl16 #(
output
reg
channel_pgm_en1
,
// channel can program sequence data
input
[
31
:
0
]
seq_data1
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr1
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done1
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set1
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done1
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn1
output
buf_wr_chn1
,
output
[
6
:
0
]
buf_waddr_chn1
,
...
...
@@ -199,7 +201,8 @@ module memctrl16 #(
output
reg
channel_pgm_en2
,
// channel can program sequence data
input
[
31
:
0
]
seq_data2
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr2
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done2
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set2
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done2
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn2
output
buf_wr_chn2
,
output
[
6
:
0
]
buf_waddr_chn2
,
...
...
@@ -218,7 +221,8 @@ module memctrl16 #(
output
reg
channel_pgm_en3
,
// channel can program sequence data
input
[
31
:
0
]
seq_data3
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr3
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done3
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set3
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done3
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn3
output
buf_wr_chn3
,
output
[
6
:
0
]
buf_waddr_chn3
,
...
...
@@ -237,7 +241,8 @@ module memctrl16 #(
output
reg
channel_pgm_en4
,
// channel can program sequence data
input
[
31
:
0
]
seq_data4
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr4
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done4
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set4
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done4
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn4
output
buf_wr_chn4
,
output
[
6
:
0
]
buf_waddr_chn4
,
...
...
@@ -256,7 +261,8 @@ module memctrl16 #(
output
reg
channel_pgm_en5
,
// channel can program sequence data
input
[
31
:
0
]
seq_data5
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr5
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done5
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set5
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done5
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn5
output
buf_wr_chn5
,
output
[
6
:
0
]
buf_waddr_chn5
,
...
...
@@ -275,7 +281,8 @@ module memctrl16 #(
output
reg
channel_pgm_en6
,
// channel can program sequence data
input
[
31
:
0
]
seq_data6
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr6
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done6
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set6
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done6
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn6
output
buf_wr_chn6
,
output
[
6
:
0
]
buf_waddr_chn6
,
...
...
@@ -294,7 +301,8 @@ module memctrl16 #(
output
reg
channel_pgm_en7
,
// channel can program sequence data
input
[
31
:
0
]
seq_data7
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr7
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done7
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set7
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done7
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn7
output
buf_wr_chn7
,
output
[
6
:
0
]
buf_waddr_chn7
,
...
...
@@ -313,7 +321,8 @@ module memctrl16 #(
output
reg
channel_pgm_en8
,
// channel can program sequence data
input
[
31
:
0
]
seq_data8
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr8
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done8
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set8
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done8
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn8
output
buf_wr_chn8
,
output
[
6
:
0
]
buf_waddr_chn8
,
...
...
@@ -332,7 +341,8 @@ module memctrl16 #(
output
reg
channel_pgm_en9
,
// channel can program sequence data
input
[
31
:
0
]
seq_data9
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr9
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done9
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set9
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done9
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn9
output
buf_wr_chn9
,
output
[
6
:
0
]
buf_waddr_chn9
,
...
...
@@ -351,7 +361,8 @@ module memctrl16 #(
output
reg
channel_pgm_en10
,
// channel can program sequence data
input
[
31
:
0
]
seq_data10
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr10
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done10
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set10
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done10
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn10
output
buf_wr_chn10
,
output
[
6
:
0
]
buf_waddr_chn10
,
...
...
@@ -370,7 +381,8 @@ module memctrl16 #(
output
reg
channel_pgm_en11
,
// channel can program sequence data
input
[
31
:
0
]
seq_data11
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr11
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done11
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set11
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done11
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn11
output
buf_wr_chn11
,
output
[
6
:
0
]
buf_waddr_chn11
,
...
...
@@ -389,7 +401,8 @@ module memctrl16 #(
output
reg
channel_pgm_en12
,
// channel can program sequence data
input
[
31
:
0
]
seq_data12
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr12
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done12
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set12
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done12
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn12
output
buf_wr_chn12
,
output
[
6
:
0
]
buf_waddr_chn12
,
...
...
@@ -408,7 +421,8 @@ module memctrl16 #(
output
reg
channel_pgm_en13
,
// channel can program sequence data
input
[
31
:
0
]
seq_data13
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr13
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done13
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set13
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done13
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn13
output
buf_wr_chn13
,
output
[
6
:
0
]
buf_waddr_chn13
,
...
...
@@ -427,7 +441,8 @@ module memctrl16 #(
output
reg
channel_pgm_en14
,
// channel can program sequence data
input
[
31
:
0
]
seq_data14
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr14
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done14
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set14
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done14
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn14
output
buf_wr_chn14
,
output
[
6
:
0
]
buf_waddr_chn14
,
...
...
@@ -446,7 +461,8 @@ module memctrl16 #(
output
reg
channel_pgm_en15
,
// channel can program sequence data
input
[
31
:
0
]
seq_data15
,
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
input
seq_wr15
,
// strobe for writing sequencer data (address is autoincremented)
input
seq_done15
,
// channel sequencer data is written. If no seq_wr pulses before seq_done, seq_data contains software sequencer start address
input
seq_set15
,
// channel sequencer data is written. If no seq_wr pulses before seq_set, seq_data contains software sequencer start address
output
seq_done15
,
// sequencer finished executing sequence for this channel
`ifdef
def_read_mem_chn15
output
buf_wr_chn15
,
output
[
6
:
0
]
buf_waddr_chn15
,
...
...
@@ -504,7 +520,7 @@ wire rst=rst_in; // TODO: decide where toi generate
reg
[
31
:
0
]
seq_data
;
//16x32 data to be written to the sequencer (and start address for software-based sequencer)
reg
seq_wr
;
// strobe for writing sequencer data (address is autoincremented)
reg
seq_
done
;
// channel sequencer data is written. If no seq_wr pulses before seq_done
, seq_data contains software sequencer start address
reg
seq_
set
;
// channel sequencer data is written. If no seq_wr pulses before seq_set
, seq_data contains software sequencer start address
// status data from phy (sequencer)
wire
[
7
:
0
]
status_ad_phy
;
...
...
@@ -546,6 +562,7 @@ wire rst=rst_in; // TODO: decide where toi generate
wire
mcontr_enabled
;
// enabled and not reset
wire
sequencer_run_busy
;
// sequencer is busy
wire
sequencer_run_done
;
// to notify channels
wire
refresh_want
;
wire
refresh_need
;
...
...
@@ -724,7 +741,7 @@ reg [15:0] mcontr_chn_en; // per-channel request enable (will not reset tr
assign
mcontr_enabled
=
mcontr_en
&&
!
mcontr_reset
;
//assign sel_refresh_w= refresh_need || (refresh_want && (!cmd_seq_need || !(cmd_seq_full || (cmd_seq_fill && seq_
done
))));
//assign sel_refresh_w= refresh_need || (refresh_want && (!cmd_seq_need || !(cmd_seq_full || (cmd_seq_fill && seq_
set
))));
assign
sel_refresh_w
=
refresh_need
||
(
refresh_want
&&
!
(
cmd_seq_need
&&
cmd_seq_full
))
;
assign
pre_run_seq_w
=
mcontr_enabled
&&
!
sequencer_run_busy
&&
(
cmd_seq_full
||
refresh_need
||
refresh_want
)
;
assign
pre_run_chn_w
=
pre_run_seq_w
&&
!
sel_refresh_w
;
...
...
@@ -764,7 +781,7 @@ always @ (posedge rst or posedge mclk) begin
if
(
rst
)
cmd_addr_start
<=
0
;
else
if
(
grant_r
)
cmd_addr_start
<=
{
1'b1
,
cmd_addr_cur
};
// address in PL bank
else
if
(
!
cmd_seq_set
&&
seq_
done
)
cmd_addr_start
<=
{
1'b0
,
seq_data
[
9
:
0
]
};
// address in PL bank
else
if
(
!
cmd_seq_set
&&
seq_
set
)
cmd_addr_start
<=
{
1'b0
,
seq_data
[
9
:
0
]
};
// address in PL bank
if
(
rst
)
cmd_seq_run
<=
0
;
...
...
@@ -884,7 +901,7 @@ end
.
run_addr
(
cmd_seq_addr
[
10
:
0
])
,
// input[10:0]
.
run_chn
(
cmd_seq_chn
[
3
:
0
])
,
// input[3:0]
.
run_seq
(
cmd_seq_run
)
,
// input #################### DISABLED ####################
.
run_done
()
,
// output
.
run_done
(
sequencer_run_done
)
,
// output
.
run_busy
(
sequencer_run_busy
)
,
// output ASSUMING it is high next cycle after run_seq - TODO: verify - yes, if not mcontr_reset
.
mcontr_reset
(
mcontr_reset
)
,
// output == ddr_reset that also resets sequencer
.
cmd_ad
(
cmd_ad
)
,
// input[7:0]
...
...
@@ -907,10 +924,10 @@ end
`ifdef
def_enable_mem_chn0
`ifdef
def_read_mem_chn0
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
0
))
mcont_to_chnbuf_reg0_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn0
)
,.
buf_waddr_chn
(
buf_waddr_chn0
)
,.
buf_wdata_chn
(
buf_wdata_chn0
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done0
)
,.
buf_wr_chn
(
buf_wr_chn0
)
,.
buf_waddr_chn
(
buf_waddr_chn0
)
,.
buf_wdata_chn
(
buf_wdata_chn0
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
0
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg0_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn0
)
,.
buf_raddr_chn
(
buf_raddr_chn0
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done0
)
,.
buf_rd_chn
(
buf_rd_chn0
)
,.
buf_raddr_chn
(
buf_raddr_chn0
)
,
.
buf_rdata_chn
(
buf_rdata_chn0
))
;
`endif
`endif
...
...
@@ -918,10 +935,10 @@ end
`ifdef
def_enable_mem_chn1
`ifdef
def_read_mem_chn1
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
1
))
mcont_to_chnbuf_reg1_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn1
)
,.
buf_waddr_chn
(
buf_waddr_chn1
)
,.
buf_wdata_chn
(
buf_wdata_chn1
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done1
)
,.
buf_wr_chn
(
buf_wr_chn1
)
,.
buf_waddr_chn
(
buf_waddr_chn1
)
,.
buf_wdata_chn
(
buf_wdata_chn1
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
1
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg1_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn1
)
,.
buf_raddr_chn
(
buf_raddr_chn1
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done1
)
,.
buf_rd_chn
(
buf_rd_chn1
)
,.
buf_raddr_chn
(
buf_raddr_chn1
)
,
.
buf_rdata_chn
(
buf_rdata_chn1
))
;
`endif
`endif
...
...
@@ -929,10 +946,10 @@ end
`ifdef
def_enable_mem_chn2
`ifdef
def_read_mem_chn2
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
2
))
mcont_to_chnbuf_reg2_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn2
)
,.
buf_waddr_chn
(
buf_waddr_chn2
)
,.
buf_wdata_chn
(
buf_wdata_chn2
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done2
)
,.
buf_wr_chn
(
buf_wr_chn2
)
,.
buf_waddr_chn
(
buf_waddr_chn2
)
,.
buf_wdata_chn
(
buf_wdata_chn2
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
2
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg2_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn2
)
,.
buf_raddr_chn
(
buf_raddr_chn2
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done2
)
,.
buf_rd_chn
(
buf_rd_chn2
)
,.
buf_raddr_chn
(
buf_raddr_chn2
)
,
.
buf_rdata_chn
(
buf_rdata_chn2
))
;
`endif
`endif
...
...
@@ -940,10 +957,10 @@ end
`ifdef
def_enable_mem_chn3
`ifdef
def_read_mem_chn3
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
3
))
mcont_to_chnbuf_reg3_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn3
)
,.
buf_waddr_chn
(
buf_waddr_chn3
)
,.
buf_wdata_chn
(
buf_wdata_chn3
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done3
)
,.
buf_wr_chn
(
buf_wr_chn3
)
,.
buf_waddr_chn
(
buf_waddr_chn3
)
,.
buf_wdata_chn
(
buf_wdata_chn3
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
3
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg3_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn3
)
,.
buf_raddr_chn
(
buf_raddr_chn3
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done3
)
,.
buf_rd_chn
(
buf_rd_chn3
)
,.
buf_raddr_chn
(
buf_raddr_chn3
)
,
.
buf_rdata_chn
(
buf_rdata_chn3
))
;
`endif
`endif
...
...
@@ -951,10 +968,10 @@ end
`ifdef
def_enable_mem_chn4
`ifdef
def_read_mem_chn4
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
4
))
mcont_to_chnbuf_reg4_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn4
)
,.
buf_waddr_chn
(
buf_waddr_chn4
)
,.
buf_wdata_chn
(
buf_wdata_chn4
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done4
)
,.
buf_wr_chn
(
buf_wr_chn4
)
,.
buf_waddr_chn
(
buf_waddr_chn4
)
,.
buf_wdata_chn
(
buf_wdata_chn4
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
4
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg4_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn4
)
,.
buf_raddr_chn
(
buf_raddr_chn4
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done4
)
,.
buf_rd_chn
(
buf_rd_chn4
)
,.
buf_raddr_chn
(
buf_raddr_chn4
)
,
.
buf_rdata_chn
(
buf_rdata_chn4
))
;
`endif
`endif
...
...
@@ -962,10 +979,10 @@ end
`ifdef
def_enable_mem_chn5
`ifdef
def_read_mem_chn5
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
5
))
mcont_to_chnbuf_reg5_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn5
)
,.
buf_waddr_chn
(
buf_waddr_chn5
)
,.
buf_wdata_chn
(
buf_wdata_chn5
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done5
)
,.
buf_wr_chn
(
buf_wr_chn5
)
,.
buf_waddr_chn
(
buf_waddr_chn5
)
,.
buf_wdata_chn
(
buf_wdata_chn5
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
5
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg5_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn5
)
,.
buf_raddr_chn
(
buf_raddr_chn5
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done5
)
,.
buf_rd_chn
(
buf_rd_chn5
)
,.
buf_raddr_chn
(
buf_raddr_chn5
)
,
.
buf_rdata_chn
(
buf_rdata_chn5
))
;
`endif
`endif
...
...
@@ -973,10 +990,10 @@ end
`ifdef
def_enable_mem_chn6
`ifdef
def_read_mem_chn6
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
6
))
mcont_to_chnbuf_reg6_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn6
)
,.
buf_waddr_chn
(
buf_waddr_chn6
)
,.
buf_wdata_chn
(
buf_wdata_chn6
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done6
)
,.
buf_wr_chn
(
buf_wr_chn6
)
,.
buf_waddr_chn
(
buf_waddr_chn6
)
,.
buf_wdata_chn
(
buf_wdata_chn6
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
6
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg6_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn6
)
,.
buf_raddr_chn
(
buf_raddr_chn6
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done6
)
,.
buf_rd_chn
(
buf_rd_chn6
)
,.
buf_raddr_chn
(
buf_raddr_chn6
)
,
.
buf_rdata_chn
(
buf_rdata_chn6
))
;
`endif
`endif
...
...
@@ -984,10 +1001,10 @@ end
`ifdef
def_enable_mem_chn7
`ifdef
def_read_mem_chn7
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
7
))
mcont_to_chnbuf_reg7_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn7
)
,.
buf_waddr_chn
(
buf_waddr_chn7
)
,.
buf_wdata_chn
(
buf_wdata_chn7
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done7
)
,.
buf_wr_chn
(
buf_wr_chn7
)
,.
buf_waddr_chn
(
buf_waddr_chn7
)
,.
buf_wdata_chn
(
buf_wdata_chn7
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
7
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg7_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn7
)
,.
buf_raddr_chn
(
buf_raddr_chn7
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done7
)
,.
buf_rd_chn
(
buf_rd_chn7
)
,.
buf_raddr_chn
(
buf_raddr_chn7
)
,
.
buf_rdata_chn
(
buf_rdata_chn7
))
;
`endif
`endif
...
...
@@ -995,10 +1012,10 @@ end
`ifdef
def_enable_mem_chn8
`ifdef
def_read_mem_chn8
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
8
))
mcont_to_chnbuf_reg8_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn8
)
,.
buf_waddr_chn
(
buf_waddr_chn8
)
,.
buf_wdata_chn
(
buf_wdata_chn8
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done8
)
,.
buf_wr_chn
(
buf_wr_chn8
)
,.
buf_waddr_chn
(
buf_waddr_chn8
)
,.
buf_wdata_chn
(
buf_wdata_chn8
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
8
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg8_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn8
)
,.
buf_raddr_chn
(
buf_raddr_chn8
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done8
)
,.
buf_rd_chn
(
buf_rd_chn8
)
,.
buf_raddr_chn
(
buf_raddr_chn8
)
,
.
buf_rdata_chn
(
buf_rdata_chn8
))
;
`endif
`endif
...
...
@@ -1006,10 +1023,10 @@ end
`ifdef
def_enable_mem_chn9
`ifdef
def_read_mem_chn9
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
9
))
mcont_to_chnbuf_reg9_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn9
)
,.
buf_waddr_chn
(
buf_waddr_chn9
)
,.
buf_wdata_chn
(
buf_wdata_chn9
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done9
)
,.
buf_wr_chn
(
buf_wr_chn9
)
,.
buf_waddr_chn
(
buf_waddr_chn9
)
,.
buf_wdata_chn
(
buf_wdata_chn9
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
9
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg9_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn9
)
,.
buf_raddr_chn
(
buf_raddr_chn9
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done9
)
,.
buf_rd_chn
(
buf_rd_chn9
)
,.
buf_raddr_chn
(
buf_raddr_chn9
)
,
.
buf_rdata_chn
(
buf_rdata_chn9
))
;
`endif
`endif
...
...
@@ -1017,10 +1034,10 @@ end
`ifdef
def_enable_mem_chn10
`ifdef
def_read_mem_chn10
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
10
))
mcont_to_chnbuf_reg10_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn10
)
,.
buf_waddr_chn
(
buf_waddr_chn10
)
,.
buf_wdata_chn
(
buf_wdata_chn10
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done10
)
,.
buf_wr_chn
(
buf_wr_chn10
)
,.
buf_waddr_chn
(
buf_waddr_chn10
)
,.
buf_wdata_chn
(
buf_wdata_chn10
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
10
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg10_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn10
)
,.
buf_raddr_chn
(
buf_raddr_chn10
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done10
)
,.
buf_rd_chn
(
buf_rd_chn10
)
,.
buf_raddr_chn
(
buf_raddr_chn10
)
,
.
buf_rdata_chn
(
buf_rdata_chn10
))
;
`endif
`endif
...
...
@@ -1028,10 +1045,10 @@ end
`ifdef
def_enable_mem_chn11
`ifdef
def_read_mem_chn11
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
11
))
mcont_to_chnbuf_reg11_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn11
)
,.
buf_waddr_chn
(
buf_waddr_chn11
)
,.
buf_wdata_chn
(
buf_wdata_chn11
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done11
)
,.
buf_wr_chn
(
buf_wr_chn11
)
,.
buf_waddr_chn
(
buf_waddr_chn11
)
,.
buf_wdata_chn
(
buf_wdata_chn11
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
11
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg11_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn11
)
,.
buf_raddr_chn
(
buf_raddr_chn11
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done11
)
,.
buf_rd_chn
(
buf_rd_chn11
)
,.
buf_raddr_chn
(
buf_raddr_chn11
)
,
.
buf_rdata_chn
(
buf_rdata_chn11
))
;
`endif
`endif
...
...
@@ -1039,10 +1056,10 @@ end
`ifdef
def_enable_mem_chn12
`ifdef
def_read_mem_chn12
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
12
))
mcont_to_chnbuf_reg12_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn12
)
,.
buf_waddr_chn
(
buf_waddr_chn12
)
,.
buf_wdata_chn
(
buf_wdata_chn12
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done12
)
,.
buf_wr_chn
(
buf_wr_chn12
)
,.
buf_waddr_chn
(
buf_waddr_chn12
)
,.
buf_wdata_chn
(
buf_wdata_chn12
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
12
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg12_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn12
)
,.
buf_raddr_chn
(
buf_raddr_chn12
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done12
)
,.
buf_rd_chn
(
buf_rd_chn12
)
,.
buf_raddr_chn
(
buf_raddr_chn12
)
,
.
buf_rdata_chn
(
buf_rdata_chn12
))
;
`endif
`endif
...
...
@@ -1050,10 +1067,10 @@ end
`ifdef
def_enable_mem_chn13
`ifdef
def_read_mem_chn13
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
13
))
mcont_to_chnbuf_reg13_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn13
)
,.
buf_waddr_chn
(
buf_waddr_chn13
)
,.
buf_wdata_chn
(
buf_wdata_chn13
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done13
)
,.
buf_wr_chn
(
buf_wr_chn13
)
,.
buf_waddr_chn
(
buf_waddr_chn13
)
,.
buf_wdata_chn
(
buf_wdata_chn13
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
13
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg13_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn13
)
,.
buf_raddr_chn
(
buf_raddr_chn13
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done13
)
,.
buf_rd_chn
(
buf_rd_chn13
)
,.
buf_raddr_chn
(
buf_raddr_chn13
)
,
.
buf_rdata_chn
(
buf_rdata_chn13
))
;
`endif
`endif
...
...
@@ -1061,10 +1078,10 @@ end
`ifdef
def_enable_mem_chn14
`ifdef
def_read_mem_chn14
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
14
))
mcont_to_chnbuf_reg14_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn14
)
,.
buf_waddr_chn
(
buf_waddr_chn14
)
,.
buf_wdata_chn
(
buf_wdata_chn14
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done14
)
,.
buf_wr_chn
(
buf_wr_chn14
)
,.
buf_waddr_chn
(
buf_waddr_chn14
)
,.
buf_wdata_chn
(
buf_wdata_chn14
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
14
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg14_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn14
)
,.
buf_raddr_chn
(
buf_raddr_chn14
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done14
)
,.
buf_rd_chn
(
buf_rd_chn14
)
,.
buf_raddr_chn
(
buf_raddr_chn14
)
,
.
buf_rdata_chn
(
buf_rdata_chn14
))
;
`endif
`endif
...
...
@@ -1072,10 +1089,10 @@ end
`ifdef
def_enable_mem_chn15
`ifdef
def_read_mem_chn15
mcont_to_chnbuf_reg
#(
.
CHN_NUMBER
(
15
))
mcont_to_chnbuf_reg15_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_wr
(
ext_buf_wr
)
,.
ext_buf_waddr
(
ext_buf_waddr
)
,
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
buf_wr_chn
(
buf_wr_chn15
)
,.
buf_waddr_chn
(
buf_waddr_chn15
)
,.
buf_wdata_chn
(
buf_wdata_chn15
))
;
.
ext_buf_wchn
(
ext_buf_wchn
)
,.
ext_buf_wdata
(
ext_buf_wdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done15
)
,.
buf_wr_chn
(
buf_wr_chn15
)
,.
buf_waddr_chn
(
buf_waddr_chn15
)
,.
buf_wdata_chn
(
buf_wdata_chn15
))
;
`else
mcont_from_chnbuf_reg
#(
.
CHN_NUMBER
(
15
)
,.
CHN_LATENCY
(
CHNBUF_READ_LATENCY
))
mcont_from_chnbuf_reg15_i
(
.
rst
(
rst
)
,.
clk
(
mclk
)
,.
ext_buf_rd
(
ext_buf_rd
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
buf_rd_chn
(
buf_rd_chn15
)
,.
buf_raddr_chn
(
buf_raddr_chn15
)
,
.
ext_buf_raddr
(
ext_buf_raddr
)
,.
ext_buf_rchn
(
ext_buf_rchn
)
,.
ext_buf_rdata
(
ext_buf_rdata
)
,.
seq_done
(
sequencer_run_done
)
,.
buf_done
(
seq_done15
)
,.
buf_rd_chn
(
buf_rd_chn15
)
,.
buf_raddr_chn
(
buf_raddr_chn15
)
,
.
buf_rdata_chn
(
buf_rdata_chn15
))
;
`endif
`endif
...
...
@@ -1136,56 +1153,56 @@ assign need_rq[15:0]= {need_rq15,need_rq14,need_rq13,need_rq12,need_rq11,need_
need_rq7
,
need_rq6
,
need_rq5
,
need_rq4
,
need_rq3
,
need_rq2
,
need_rq1
,
need_rq0
};
always
@
(
posedge
rst
or
posedge
mclk
)
begin
if
(
rst
)
begin
seq_data
<=
0
;
seq_wr
<=
0
;
seq_
done
<=
0
;
end
if
(
rst
)
begin
seq_data
<=
0
;
seq_wr
<=
0
;
seq_
set
<=
0
;
end
else
begin
case
(
cmd_wr_chn
)
`ifdef
def_enable_mem_chn0
4'h0
:
begin
seq_data
<=
seq_data0
;
seq_wr
<=
seq_wr0
;
seq_
done
<=
seq_done
0
;
end
4'h0
:
begin
seq_data
<=
seq_data0
;
seq_wr
<=
seq_wr0
;
seq_
set
<=
seq_set
0
;
end
`endif
`ifdef
def_enable_mem_chn1
4'd1
:
begin
seq_data
<=
seq_data1
;
seq_wr
<=
seq_wr1
;
seq_
done
<=
seq_done
1
;
end
4'd1
:
begin
seq_data
<=
seq_data1
;
seq_wr
<=
seq_wr1
;
seq_
set
<=
seq_set
1
;
end
`endif
`ifdef
def_enable_mem_chn2
4'd2
:
begin
seq_data
<=
seq_data2
;
seq_wr
<=
seq_wr2
;
seq_
done
<=
seq_done
2
;
end
4'd2
:
begin
seq_data
<=
seq_data2
;
seq_wr
<=
seq_wr2
;
seq_
set
<=
seq_set
2
;
end
`endif
`ifdef
def_enable_mem_chn3
4'd3
:
begin
seq_data
<=
seq_data3
;
seq_wr
<=
seq_wr3
;
seq_
done
<=
seq_done
3
;
end
4'd3
:
begin
seq_data
<=
seq_data3
;
seq_wr
<=
seq_wr3
;
seq_
set
<=
seq_set
3
;
end
`endif
`ifdef
def_enable_mem_chn4
4'd4
:
begin
seq_data
<=
seq_data4
;
seq_wr
<=
seq_wr4
;
seq_
done
<=
seq_done
4
;
end
4'd4
:
begin
seq_data
<=
seq_data4
;
seq_wr
<=
seq_wr4
;
seq_
set
<=
seq_set
4
;
end
`endif
`ifdef
def_enable_mem_chn5
4'd5
:
begin
seq_data
<=
seq_data5
;
seq_wr
<=
seq_wr5
;
seq_
done
<=
seq_done
5
;
end
4'd5
:
begin
seq_data
<=
seq_data5
;
seq_wr
<=
seq_wr5
;
seq_
set
<=
seq_set
5
;
end
`endif
`ifdef
def_enable_mem_chn6
4'd6
:
begin
seq_data
<=
seq_data6
;
seq_wr
<=
seq_wr6
;
seq_
done
<=
seq_done
6
;
end
4'd6
:
begin
seq_data
<=
seq_data6
;
seq_wr
<=
seq_wr6
;
seq_
set
<=
seq_set
6
;
end
`endif
`ifdef
def_enable_mem_chn7
4'd7
:
begin
seq_data
<=
seq_data7
;
seq_wr
<=
seq_wr7
;
seq_
done
<=
seq_done
7
;
end
4'd7
:
begin
seq_data
<=
seq_data7
;
seq_wr
<=
seq_wr7
;
seq_
set
<=
seq_set
7
;
end
`endif
`ifdef
def_enable_mem_chn8
4'd8
:
begin
seq_data
<=
seq_data8
;
seq_wr
<=
seq_wr8
;
seq_
done
<=
seq_done
8
;
end
4'd8
:
begin
seq_data
<=
seq_data8
;
seq_wr
<=
seq_wr8
;
seq_
set
<=
seq_set
8
;
end
`endif
`ifdef
def_enable_mem_chn9
4'd9
:
begin
seq_data
<=
seq_data9
;
seq_wr
<=
seq_wr9
;
seq_
done
<=
seq_done
9
;
end
4'd9
:
begin
seq_data
<=
seq_data9
;
seq_wr
<=
seq_wr9
;
seq_
set
<=
seq_set
9
;
end
`endif
`ifdef
def_enable_mem_chn10
4'd10
:
begin
seq_data
<=
seq_data10
;
seq_wr
<=
seq_wr10
;
seq_
done
<=
seq_done
10
;
end
4'd10
:
begin
seq_data
<=
seq_data10
;
seq_wr
<=
seq_wr10
;
seq_
set
<=
seq_set
10
;
end
`endif
`ifdef
def_enable_mem_chn11
4'd11
:
begin
seq_data
<=
seq_data11
;
seq_wr
<=
seq_wr11
;
seq_
done
<=
seq_done
11
;
end
4'd11
:
begin
seq_data
<=
seq_data11
;
seq_wr
<=
seq_wr11
;
seq_
set
<=
seq_set
11
;
end
`endif
`ifdef
def_enable_mem_chn12
4'd12
:
begin
seq_data
<=
seq_data12
;
seq_wr
<=
seq_wr12
;
seq_
done
<=
seq_done
12
;
end
4'd12
:
begin
seq_data
<=
seq_data12
;
seq_wr
<=
seq_wr12
;
seq_
set
<=
seq_set
12
;
end
`endif
`ifdef
def_enable_mem_chn13
4'd13
:
begin
seq_data
<=
seq_data13
;
seq_wr
<=
seq_wr13
;
seq_
done
<=
seq_done
13
;
end
4'd13
:
begin
seq_data
<=
seq_data13
;
seq_wr
<=
seq_wr13
;
seq_
set
<=
seq_set
13
;
end
`endif
`ifdef
def_enable_mem_chn14
4'd14
:
begin
seq_data
<=
seq_data14
;
seq_wr
<=
seq_wr14
;
seq_
done
<=
seq_done
14
;
end
4'd14
:
begin
seq_data
<=
seq_data14
;
seq_wr
<=
seq_wr14
;
seq_
set
<=
seq_set
14
;
end
`endif
`ifdef
def_enable_mem_chn15
4'd15
:
begin
seq_data
<=
seq_data15
;
seq_wr
<=
seq_wr15
;
seq_
done
<=
seq_done
15
;
end
4'd15
:
begin
seq_data
<=
seq_data15
;
seq_wr
<=
seq_wr15
;
seq_
set
<=
seq_set
15
;
end
`endif
endcase
end
...
...
util_modules/fifo_same_clock.v
View file @
0a580f98
...
...
@@ -19,7 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/> .
*******************************************************************************/
`timescale
1
ns
/
1
ps
`define
DEBUG_FIFO 1
//
`define DEBUG_FIFO 1
module
fifo_same_clock
#(
parameter
integer
DATA_WIDTH
=
16
,
...
...
@@ -28,6 +28,7 @@ module fifo_same_clock
(
input
rst
,
// reset, active high
input
clk
,
// clock - positive edge
input
sync_rst
,
// synchronously reset fifo;
input
we
,
// write enable
input
re
,
// read enable
input
[
DATA_WIDTH
-
1
:
0
]
data_in
,
// input data
...
...
@@ -71,29 +72,40 @@ module fifo_same_clock
`endif
always
@
(
posedge
clk
or
posedge
rst
)
begin
if
(
rst
)
fill
<=
0
;
else
fill
<=
next_fill
;
if
(
rst
)
wem
<=
0
;
else
wem
<=
we
;
if
(
rst
)
ram_nempty
<=
0
;
else
ram_nempty
<=
(
next_fill
!=
0
)
;
if
(
rst
)
fill
<=
0
;
else
if
(
sync_rst
)
fill
<=
0
;
else
fill
<=
next_fill
;
if
(
rst
)
wem
<=
0
;
else
if
(
sync_rst
)
wem
<=
0
;
else
wem
<=
we
;
if
(
rst
)
ram_nempty
<=
0
;
else
if
(
sync_rst
)
ram_nempty
<=
0
;
else
ram_nempty
<=
(
next_fill
!=
0
)
;
if
(
rst
)
wa
<=
0
;
else
if
(
wem
)
wa
<=
wa
+
1
;
if
(
rst
)
ra
<=
0
;
else
if
(
rem
)
ra
<=
ra
+
1
;
if
(
rst
)
wa
<=
0
;
else
if
(
sync_rst
)
wa
<=
0
;
else
if
(
wem
)
wa
<=
wa
+
1
;
if
(
rst
)
ra
<=
0
;
else
if
(
sync_rst
)
ra
<=
0
;
else
if
(
rem
)
ra
<=
ra
+
1
;
else
if
(
!
ram_nempty
)
ra
<=
wa
;
// Just recover from bit errors
if
(
rst
)
out_full
<=
0
;
else
if
(
sync_rst
)
out_full
<=
0
;
else
if
(
rem
&&
~
re
)
out_full
<=
1
;
else
if
(
re
&&
~
rem
)
out_full
<=
0
;
`ifdef
DEBUG_FIFO
if
(
rst
)
wcount
<=
0
;
else
if
(
we
)
wcount
<=
wcount
+
1
;
if
(
rst
)
wcount
<=
0
;
else
if
(
sync_rst
)
wcount
<=
0
;
else
if
(
we
)
wcount
<=
wcount
+
1
;
if
(
rst
)
rcount
<=
0
;
else
if
(
re
)
rcount
<=
rcount
+
1
;
if
(
rst
)
rcount
<=
0
;
else
if
(
sync_rst
)
rcount
<=
0
;
else
if
(
re
)
rcount
<=
rcount
+
1
;
`endif
end
...
...
util_modules/mcont_from_chnbuf_reg.v
View file @
0a580f98
...
...
@@ -28,7 +28,9 @@ module mcont_from_chnbuf_reg #(
input
clk
,
input
ext_buf_rd
,
input
[
6
:
0
]
ext_buf_raddr
,
// valid with ext_buf_rd, 2 page MSB to be generated externally
input
[
3
:
0
]
ext_buf_rchn
,
// ==run_chn_d valid 1 cycle ahead opf ext_buf_rd!, maybe not needed - will be generated externally
input
[
3
:
0
]
ext_buf_rchn
,
// ==run_chn_d valid 1 cycle ahead opf ext_buf_rd!, maybe not needed - will be generated externally
input
seq_done
,
// sequence done
output
reg
buf_done
,
// sequence done for the specified channel
output
reg
[
63
:
0
]
ext_buf_rdata
,
// Latency of ram_1kx32w_512x64r plus 2
output
reg
buf_rd_chn
,
output
reg
[
6
:
0
]
buf_raddr_chn
,
...
...
@@ -38,13 +40,16 @@ module mcont_from_chnbuf_reg #(
reg
[
CHN_LATENCY
:
0
]
latency_reg
=
0
;
always
@
(
posedge
rst
or
posedge
clk
)
begin
if
(
rst
)
buf_chn_sel
<=
0
;
else
buf_chn_sel
<=
(
ext_buf_rchn
==
CHN_NUMBER
)
;
else
buf_chn_sel
<=
(
ext_buf_rchn
==
CHN_NUMBER
)
;
if
(
rst
)
buf_rd_chn
<=
0
;
else
buf_rd_chn
<=
buf_chn_sel
&&
ext_buf_rd
;
else
buf_rd_chn
<=
buf_chn_sel
&&
ext_buf_rd
;
if
(
rst
)
latency_reg
<=
0
;
else
latency_reg
<=
buf_rd_chn
|
(
latency_reg
<<
1
)
;
else
latency_reg
<=
buf_rd_chn
|
(
latency_reg
<<
1
)
;
if
(
rst
)
buf_done
<=
0
;
else
buf_done
<=
buf_chn_sel
&&
seq_done
;
end
always
@
(
posedge
clk
)
if
(
buf_chn_sel
&&
ext_buf_rd
)
buf_raddr_chn
<=
ext_buf_raddr
;
always
@
(
posedge
clk
)
if
(
latency_reg
[
CHN_LATENCY
])
ext_buf_rdata
<=
buf_rdata_chn
;
...
...
util_modules/mcont_to_chnbuf_reg.v
View file @
0a580f98
...
...
@@ -29,6 +29,8 @@ parameter CHN_NUMBER=0
input
[
6
:
0
]
ext_buf_waddr
,
// valid with ext_buf_wr
input
[
3
:
0
]
ext_buf_wchn
,
// ==run_chn_d valid 1 cycle ahead opf ext_buf_wr!, maybe not needed - will be generated externally
input
[
63
:
0
]
ext_buf_wdata
,
// valid with ext_buf_wr
input
seq_done
,
// sequence done
output
reg
buf_done
,
// sequence done for the specified channel
output
reg
buf_wr_chn
,
output
reg
[
6
:
0
]
buf_waddr_chn
,
output
reg
[
63
:
0
]
buf_wdata_chn
...
...
@@ -36,9 +38,14 @@ parameter CHN_NUMBER=0
reg
buf_chn_sel
;
always
@
(
posedge
rst
or
negedge
clk
)
begin
if
(
rst
)
buf_chn_sel
<=
0
;
else
buf_chn_sel
<=
(
ext_buf_wchn
==
CHN_NUMBER
)
;
else
buf_chn_sel
<=
(
ext_buf_wchn
==
CHN_NUMBER
)
;
if
(
rst
)
buf_wr_chn
<=
0
;
else
buf_wr_chn
<=
buf_chn_sel
&&
ext_buf_wr
;
else
buf_wr_chn
<=
buf_chn_sel
&&
ext_buf_wr
;
if
(
rst
)
buf_done
<=
0
;
else
buf_done
<=
buf_chn_sel
&&
seq_done
;
end
always
@
(
negedge
clk
)
if
(
buf_chn_sel
&&
ext_buf_wr
)
begin
buf_waddr_chn
<=
ext_buf_waddr
;
...
...
x393.v
View file @
0a580f98
...
...
@@ -149,17 +149,17 @@ module x393 #(
parameter
NUM_CYCLES_01
=
4
,
// 4-cycle 040.007f
parameter
NUM_CYCLES_02
=
3
,
// 3-cycle 080.00bf
parameter
NUM_CYCLES_03
=
3
,
// 3-cycle 0c0.00ff
parameter
NUM_CYCLES_04
=
5
,
// 5-cycle - not yet used
parameter
NUM_CYCLES_05
=
6
,
// 6-cycle - not yet used
parameter
NUM_CYCLES_06
=
6
,
//
parameter
NUM_CYCLES_07
=
6
,
//
parameter
NUM_CYCLES_04
=
4
,
// 4-cycle 100.013f
parameter
NUM_CYCLES_05
=
4
,
// 4-cycle 140.017f
parameter
NUM_CYCLES_06
=
4
,
// 4-cycle 180.01bf
parameter
NUM_CYCLES_07
=
4
,
// 4-cycle 1c0.01ff
parameter
NUM_CYCLES_08
=
6
,
//
parameter
NUM_CYCLES_09
=
6
,
//
parameter
NUM_CYCLES_10
=
6
,
//
parameter
NUM_CYCLES_11
=
6
,
//
parameter
NUM_CYCLES_12
=
6
,
//
parameter
NUM_CYCLES_13
=
6
,
//
parameter
NUM_CYCLES_14
=
6
,
//
parameter
NUM_CYCLES_13
=
5
,
// 5-cycle - not yet used
parameter
NUM_CYCLES_14
=
6
,
//
6-cycle - not yet used
parameter
NUM_CYCLES_15
=
9
,
// single-cycle
// parameter STATUS_ADDR = 'h1400, // AXI write address of status read registers
...
...
@@ -492,6 +492,7 @@ end
wire
channel_pgm_en0
;
wire
[
31
:
0
]
seq_data0
;
wire
seq_wr0
;
wire
seq_set0
;
wire
seq_done0
;
wire
buf_wr_chn0
;
wire
[
6
:
0
]
buf_waddr_chn0
;
...
...
@@ -502,6 +503,7 @@ end
wire
channel_pgm_en1
;
wire
[
31
:
0
]
seq_data1
;
wire
seq_wr1
;
wire
seq_set1
;
wire
seq_done1
;
wire
buf_rd_chn1
;
wire
[
6
:
0
]
buf_raddr_chn1
;
...
...
@@ -512,6 +514,7 @@ end
wire
channel_pgm_en2
;
wire
[
31
:
0
]
seq_data2
;
wire
seq_wr2
;
wire
seq_set2
;
wire
seq_done2
;
wire
buf_wr_chn2
;
wire
[
6
:
0
]
buf_waddr_chn2
;
...
...
@@ -522,6 +525,7 @@ end
wire
channel_pgm_en3
;
wire
[
31
:
0
]
seq_data3
;
wire
seq_wr3
;
wire
seq_set3
;
wire
seq_done3
;
wire
buf_rd_chn3
;
wire
[
6
:
0
]
buf_raddr_chn3
;
...
...
@@ -759,7 +763,8 @@ end
.
channel_pgm_en0
(
channel_pgm_en0
)
,
// output reg
.
seq_data0
(
seq_data0
)
,
// input[31:0]
.
seq_wr0
(
seq_wr0
)
,
// input
.
seq_done0
(
seq_done0
)
,
// input
.
seq_set0
(
seq_set0
)
,
// input
.
seq_done0
(
seq_done0
)
,
// output
.
buf_wr_chn0
(
buf_wr_chn0
)
,
// output
.
buf_waddr_chn0
(
buf_waddr_chn0
)
,
// output[6:0]
.
buf_wdata_chn0
(
buf_wdata_chn0
)
,
// output[63:0]
...
...
@@ -769,7 +774,8 @@ end
.
channel_pgm_en1
(
channel_pgm_en1
)
,
// output reg
.
seq_data1
(
seq_data1
)
,
// input[31:0]
.
seq_wr1
(
seq_wr1
)
,
// input
.
seq_done1
(
seq_done1
)
,
// input
.
seq_set1
(
seq_set1
)
,
// input
.
seq_done1
(
seq_done1
)
,
// output
.
buf_rd_chn1
(
buf_rd_chn1
)
,
// output
.
buf_raddr_chn1
(
buf_raddr_chn1
)
,
// output[6:0]
.
buf_rdata_chn1
(
buf_rdata_chn1
)
,
// input[63:0]
...
...
@@ -779,7 +785,8 @@ end
.
channel_pgm_en2
(
channel_pgm_en2
)
,
// output reg
.
seq_data2
(
seq_data2
)
,
// input[31:0]
.
seq_wr2
(
seq_wr2
)
,
// input
.
seq_done2
(
seq_done2
)
,
// input
.
seq_set2
(
seq_set2
)
,
// input
.
seq_done2
(
seq_done2
)
,
// output
.
buf_wr_chn2
(
buf_wr_chn2
)
,
// output
.
buf_waddr_chn2
(
buf_waddr_chn2
)
,
// output[6:0]
.
buf_wdata_chn2
(
buf_wdata_chn2
)
,
// output[63:0]
...
...
@@ -789,7 +796,8 @@ end
.
channel_pgm_en3
(
channel_pgm_en3
)
,
// output reg
.
seq_data3
(
seq_data3
)
,
// input[31:0]
.
seq_wr3
(
seq_wr3
)
,
// input
.
seq_done3
(
seq_done3
)
,
// input
.
seq_set3
(
seq_set3
)
,
// input
.
seq_done3
(
seq_done3
)
,
// output
.
buf_rd_chn3
(
buf_rd_chn3
)
,
// output
.
buf_raddr_chn3
(
buf_raddr_chn3
)
,
// output[6:0]
.
buf_rdata_chn3
(
buf_rdata_chn3
)
,
// input[63:0]
...
...
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