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
7c906860
Commit
7c906860
authored
Dec 30, 2017
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing/debugging for different intervals between tiles
parent
fd65cb8c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
227 additions
and
119 deletions
+227
-119
mclt16x16_bayer3.v
dsp/mclt16x16_bayer3.v
+29
-21
mclt_test_06.tf
dsp/mclt_test_06.tf
+39
-20
phase_rotator_rgb.v
dsp/phase_rotator_rgb.v
+8
-6
mclt_test_06.sav
mclt_test_06.sav
+151
-72
No files found.
dsp/mclt16x16_bayer3.v
View file @
7c906860
...
...
@@ -54,12 +54,13 @@ module mclt16x16_bayer3#(
parameter
DSP_A_WIDTH
=
25
,
parameter
DSP_P_WIDTH
=
48
,
parameter
DEAD_CYCLES
=
14
,
// start next block immedaitely, or with longer pause
parameter
OUTS_AT_ONCE
=
1
// 0: outputs with lowest latency, 1: all at once (with green)
parameter
OUTS_AT_ONCE
=
1
,
// 0: outputs with lowest latency, 1: all at once (with green)
parameter
TILE_PAGE_BITS
=
2
// 1 or 2 only: number of bits in tile counter (>=2 for simultaneous rotated readout, limited by red)
)(
input
clk
,
//!< system clock, posedge
input
rst
,
//!< sync reset
input
start
,
//!< start convertion of the next 256 samples
input
page
,
//!< parameter page number (valid @ start)
input
[
TILE_PAGE_BITS
-
1
:
0
]
page
,
//!< parameter page number (valid @ start)
input
[
1
:
0
]
tile_size
,
//!< o: 16x16, 1 - 18x18, 2 - 20x20, 3 - 22x22 (max for 9-bit addr)
input
[
1
:
0
]
color_wa
,
//!< color index to apply parameters to (0 - R, 1 - B, 2 - G)
input
inv_checker
,
//!< 0 - includes main diagonal (symmetrical DTT), 1 - antisymmetrical DTT
...
...
@@ -215,7 +216,7 @@ module mclt16x16_bayer3#(
wire
signed
[
WND_WIDTH
-
1
:
0
]
window_w
;
wire
var_pre2_first
;
//
wire
pre_last_in_w
;
wire
pre_last_in_w
=
run_r
&&
(
in_cntr
[
7
:
0
]
==
'hfe
)
;
wire
green_late
;
wire
signed
[
DTT_IN_WIDTH
-
1
:
0
]
data_dtt_in
;
// multiplexed DTT input data
reg
dtt_we
;
...
...
@@ -223,7 +224,8 @@ module mclt16x16_bayer3#(
reg
[
7
:
0
]
dtt_in_precntr
;
//
reg
[
8
:
0
]
dtt_in_wa
;
assign
pre_busy
=
pre_busy_r
||
start
||
(
!
pre_last_in_w
&&
phases
[
0
])
;
// assign pre_busy = pre_busy_r || start || (!pre_last_in_w && phases[0]);
assign
pre_busy
=
pre_busy_r
||
start
||
(
!
pre_last_in_w
&&
run_r
)
;
assign
pre_last_in
=
pre_last_in_w
;
mclt_bayer_fold_rgb
#(
...
...
@@ -251,7 +253,7 @@ module mclt16x16_bayer3#(
.
phases
(
phases
)
,
// output[7:0]
// make it always 0 or 1 for R/B, then if use only not-in-series, use D -input for twice value
.
var_pre2_first
(
var_pre2_first
)
,
// output
.
pre_last_in
(
pre_last_in_w
)
,
// output reg
.
pre_last_in
(
)
,
//
pre_last_in_w),// output reg
.
green_late
(
green_late
)
// output reg
)
;
...
...
@@ -326,16 +328,19 @@ module mclt16x16_bayer3#(
wire
dtt_start_red
=
(
dtt_start16
&
dtt_r_cntr
[
7
:
6
]
==
1
)
;
// after
wire
dtt_start_blue
=
(
dtt_start16
&
dtt_r_cntr
[
7
:
6
]
==
2
)
;
// after
wire
dtt_start_green
=
(
dtt_start16
&
dtt_r_cntr
[
7
:
6
]
==
3
)
;
// after
reg
[
4
:
0
]
dtt_out_ram_cntr
;
reg
[
4
:
0
]
dtt_out_ram_wah
;
reg
[
TILE_PAGE_BITS
+
3
:
0
]
dtt_out_ram_cntr
;
reg
[
TILE_PAGE_BITS
+
3
:
0
]
dtt_out_ram_wah
;
wire
dtt_start_fill
;
// some data available in DTT output buffer, OK to start consecutive readout
reg
dtt_start_red_fill
;
reg
dtt_start_blue_fill
;
reg
dtt_start_green_fill
;
wire
[
8
:
0
]
dtt_out_ram_wa
=
{
dtt_out_ram_wah
,
dtt_out_wa16
};
wire
[
TILE_PAGE_BITS
+
7
:
0
]
dtt_out_ram_wa
=
{
dtt_out_ram_wah
,
dtt_out_wa16
};
wire
[
8
:
0
]
dtt_out_ram_wa_rb
=
{
2'b0
,
dtt_out_ram_wa
[
8
]
,
dtt_out_ram_wa
[
5
:
0
]
};
wire
[
8
:
0
]
dtt_out_ram_wa_rb
=
{{
3
-
TILE_PAGE_BITS
{
1'b0
}},
dtt_out_ram_wa
[
8
+:
TILE_PAGE_BITS
]
,
dtt_out_ram_wa
[
5
:
0
]
};
// Green does not need >2 pages in the pre-rotattion buffer
wire
[
8
:
0
]
dtt_out_ram_wa_g
=
{
1'b0
,
dtt_out_ram_wa
[
8
]
,
dtt_out_ram_wa
[
6
:
0
]
};
wire
dtt_out_we_r
=
dtt_out_we
&
~
dtt_out_ram_wa
[
7
]
&
~
dtt_out_ram_wa
[
6
]
;
...
...
@@ -359,12 +364,12 @@ module mclt16x16_bayer3#(
wire
dtt_blue_quad_out
=
dtt_out_ram_cntr
[
3
:
2
]
==
1
;
wire
dtt_green_quad_out
=
dtt_out_ram_cntr
[
3
:
2
]
==
2
;
wire
ram_wpage_r
=
dtt_out_ram_cntr
[
4
]
;
// dtt_out_ram_wah[4];
reg
ram_wpage_b
;
reg
ram_wpage_g
;
wire
[
TILE_PAGE_BITS
-
1
:
0
]
ram_wpage_r
=
dtt_out_ram_cntr
[
4
+:
TILE_PAGE_BITS
]
;
// dtt_out_ram_wah[4];
reg
[
TILE_PAGE_BITS
-
1
:
0
]
ram_wpage_b
;
reg
[
TILE_PAGE_BITS
-
1
:
0
]
ram_wpage_g
;
wire
[
6
:
0
]
dtt_rd_ra_r
;
wire
[
6
:
0
]
dtt_rd_ra_b
;
wire
[
TILE_PAGE_BITS
+
5
:
0
]
dtt_rd_ra_r
;
// 6 or 7
wire
[
TILE_PAGE_BITS
+
5
:
0
]
dtt_rd_ra_b
;
wire
[
7
:
0
]
dtt_rd_ra_g
;
...
...
@@ -447,7 +452,8 @@ module mclt16x16_bayer3#(
.
LOG2WIDTH_RD
(
5
)
)
ram18p_var_w_var_r_dtt_out_r_i
(
.
rclk
(
clk
)
,
// input
.
raddr
(
{
2'b0
,
dtt_rd_ra_r
}
)
,
// input[8:0]
// .raddr ({2'b0,dtt_rd_ra_r}), // input[8:0]
.
raddr
(
{{
3
-
TILE_PAGE_BITS
{
1'b0
}},
dtt_rd_ra_r
}
)
,
// input[8:0]
.
ren
(
dtt_rd_regen_r
[
0
])
,
// input
.
regen
(
dtt_rd_regen_r
[
1
])
,
// input
.
data_out
(
dtt_rd_data_r_w
)
,
// output[35:0]
...
...
@@ -464,7 +470,7 @@ module mclt16x16_bayer3#(
.
LOG2WIDTH_RD
(
5
)
)
ram18p_var_w_var_r_dtt_out_b_i
(
.
rclk
(
clk
)
,
// input
.
raddr
(
{
2'b0
,
dtt_rd_ra_b
}
)
,
// input[8:0]
.
raddr
(
{
{
3
-
TILE_PAGE_BITS
{
1'b0
}}
,
dtt_rd_ra_b
}
)
,
// input[8:0]
.
ren
(
dtt_rd_regen_b
[
0
])
,
// input
.
regen
(
dtt_rd_regen_b
[
1
])
,
// input
.
data_out
(
dtt_rd_data_b_w
)
,
// output[35:0]
...
...
@@ -500,7 +506,8 @@ module mclt16x16_bayer3#(
.
DSP_A_WIDTH
(
DSP_A_WIDTH
)
,
.
DSP_P_WIDTH
(
DSP_P_WIDTH
)
,
.
GREEN
(
0
)
,
.
START_DELAY
(
DTT_OUT_DELAY_R
)
.
START_DELAY
(
DTT_OUT_DELAY_R
)
,
.
TILE_PAGE_BITS
(
TILE_PAGE_BITS
)
)
phase_rotator_r_i
(
.
clk
(
clk
)
,
// input
.
rst
(
rst
)
,
// input
...
...
@@ -528,7 +535,8 @@ module mclt16x16_bayer3#(
.
DSP_A_WIDTH
(
DSP_A_WIDTH
)
,
.
DSP_P_WIDTH
(
DSP_P_WIDTH
)
,
.
GREEN
(
0
)
,
.
START_DELAY
(
DTT_OUT_DELAY_B
)
.
START_DELAY
(
DTT_OUT_DELAY_B
)
,
.
TILE_PAGE_BITS
(
TILE_PAGE_BITS
)
)
phase_rotator_b_i
(
.
clk
(
clk
)
,
// input
.
rst
(
rst
)
,
// input
...
...
@@ -554,14 +562,14 @@ module mclt16x16_bayer3#(
.
DSP_B_WIDTH
(
DSP_B_WIDTH
)
,
.
DSP_A_WIDTH
(
DSP_A_WIDTH
)
,
.
DSP_P_WIDTH
(
DSP_P_WIDTH
)
,
// .COEFF_WIDTH(COEFF_WIDTH),
.
GREEN
(
1
)
,
.
START_DELAY
(
DTT_OUT_DELAY_G
)
.
START_DELAY
(
DTT_OUT_DELAY_G
)
,
.
TILE_PAGE_BITS
(
1
)
)
phase_rotator_g_i
(
.
clk
(
clk
)
,
// input
.
rst
(
rst
)
,
// input
.
start
(
dtt_start_green_fill
)
,
// input
.
wpage
(
ram_wpage_g
)
,
// input
.
wpage
(
ram_wpage_g
[
0
])
,
// input
.
shift_h
(
x_shft_rot_ram_reg
)
,
// input[6:0] signed
.
shift_v
(
y_shft_rot_ram_reg
)
,
// input[6:0] signed
.
inv_checker
(
inv_checker_rot_ram_reg
)
,
// input
...
...
dsp/mclt_test_06.tf
View file @
7c906860
...
...
@@ -78,6 +78,7 @@ module mclt_test_06 ();
parameter
DEAD_CYCLES
=
14
;
// start next block immedaitely, or with longer pause
// parameter OUTS_AT_ONCE = 0; // 0: outputs with lowest latency, 1: all at once (with green)
parameter
OUTS_AT_ONCE
=
1
;
// 0: outputs with lowest latency, 1: all at once (with green)
parameter
TILE_PAGE_BITS
=
2
;
// 1 or 2 only: number of bits in tile counter (>=2 for simultaneous rotated readout, limited by red)
reg
RST
=
1
'b1;
reg CLK = 1'
b0
;
...
...
@@ -257,15 +258,19 @@ module mclt_test_06 ();
end
reg START;
reg [8:0] in_cntr;
reg PRE_BUSY;
reg [7:0] in_cntr;
reg in_run;
wire pre_last_count = (in_cntr == '
h
17
e
);
wire pre_last_count = (in_cntr == '
h
f
e
);
reg
last_count_r
;
wire
pre_last_128
=
(
in_cntr
[
6
:
0
]
==
'h7e);
//
wire pre_last_128 = (in_cntr[6:0] == 'h7e);
// reg last_128_r;
// wire start = START | (last_128_r && ! in_cntr[8]);
reg PAGE; // full page, 192 clocks
reg [2:0] SUB_PAGE; // single color page
// reg PAGE; // full page, 192 clocks
integer
PAGE
;
// full page, 192 clocks
// reg [2:0] SUB_PAGE; // single color page
// reg PIX_PAGE;
// wire [9:0] PIX_ADDR10 = {PIX_PAGE,PIX_ADDR9}; // SuppressThisWarning VEditor debug output
...
...
@@ -281,13 +286,17 @@ module mclt_test_06 ();
else
in_cntr
<=
in_cntr
+
1
;
if
(
RST
)
PAGE
<=
0
;
else if (pre_last_count) PAGE <= PAGE + 1;
// else if (pre_last_count) PAGE <= PAGE + 1;
else
if
(
in_cntr
==
'hf0) PAGE <= PAGE + 1;
if (RST) SUB_PAGE <= 0;
else if (pre_last_128) SUB_PAGE <= SUB_PAGE + 1;
//
if (RST) SUB_PAGE <= 0;
//
else if (pre_last_128) SUB_PAGE <= SUB_PAGE + 1;
// if (PIX_COPY_PAGE) PIX_PAGE <= PAGE;
if (RST) PRE_BUSY <= 0;
else if (START) PRE_BUSY <= 1;
else if (in_cntr == '
hf0
)
PRE_BUSY
<=
0
;
...
...
@@ -306,15 +315,19 @@ module mclt_test_06 ();
@(
posedge
CLK
)
#1 START = 0;
for
(
n
=
0
;
n
<
1
;
n
=
n
+
1
)
begin
if (n >= 0) LATE = 1;
while (!in_cntr[8]) begin
if
(
n
>=
1
)
LATE
=
1
;
// if (n >= 0) LATE = 1;
// while (!in_cntr[8]) begin
while
(!
in_cntr
[
7
]
)
begin
@(
posedge
CLK
);
#1;
end
//PRE_BUSY
// while (pre_busy || LATE) begin
while (pre_busy3 || LATE) begin
if (!pre_busy3) LATE = 0;
/// while (pre_busy3 || LATE) begin
/// if (!pre_busy3) LATE = 0;
while
(
PRE_BUSY
||
LATE
)
begin
if
(!
PRE_BUSY
)
LATE
=
0
;
@(
posedge
CLK
);
#1;
end
...
...
@@ -472,8 +485,8 @@ module mclt_test_06 ();
integer
n6
,
cntr6
,
diff6r
,
diff6b
,
diff6g
;
// SuppressThisWarning VEditor : assigned in $readmem() system task
wire
[
6
:
0
]
dtt_rd_ra_r
=
mclt16x16_bayer3_i
.
dtt_rd_ra_r
;
wire
[
6
:
0
]
dtt_rd_ra_b
=
mclt16x16_bayer3_i
.
dtt_rd_ra_b
;
wire
[
TILE_PAGE_BITS
+
5
:
0
]
dtt_rd_ra_r
=
mclt16x16_bayer3_i
.
dtt_rd_ra_r
;
wire
[
TILE_PAGE_BITS
+
5
:
0
]
dtt_rd_ra_b
=
mclt16x16_bayer3_i
.
dtt_rd_ra_b
;
wire
[
7
:
0
]
dtt_rd_ra_g
=
mclt16x16_bayer3_i
.
dtt_rd_ra_g
;
wire
[
1
:
0
]
dtt_rd_regen_r
=
mclt16x16_bayer3_i
.
dtt_rd_regen_r
;
wire
[
1
:
0
]
dtt_rd_regen_b
=
mclt16x16_bayer3_i
.
dtt_rd_regen_b
;
...
...
@@ -620,18 +633,19 @@ module mclt_test_06 ();
wire PIX_RE3; // SuppressThisWarning VEditor : debug only
wire [8:0] PIX_ADDR93;
reg
PIX_PAGE3;
reg
[TILE_PAGE_BITS-1:0]
PIX_PAGE3;
wire [9:0] PIX_ADDR103 = {PIX_PAGE3,PIX_ADDR93}; // SuppressThisWarning VEditor debug output
wire PIX_COPY_PAGE3; // copy page address // SuppressThisWarning VEditor - not yet used
wire [PIXEL_WIDTH-1 : 0] PIX_D3;
reg start3;
reg
page3; // 1/2-nd bayer tile
reg
[TILE_PAGE_BITS-1 : 0]
page3; // 1/2-nd bayer tile
reg pre_run;
reg [1:0] pre_run_cntr;
wire [2:0] color_page = pre_run_cntr + 3 * page3; // SuppressThisWarning VEditor - VDT bug (used as index)
reg pending;
always @ (posedge CLK) begin
if (START) page3 <= (SUB_PAGE > 2);
if (START) page3 <=
PAGE[TILE_PAGE_BITS-1:0]; //
(SUB_PAGE > 2);
if (RST) pre_run <= 0;
else if (START) pre_run <= 1;
...
...
@@ -642,7 +656,11 @@ module mclt_test_06 ();
if (PIX_COPY_PAGE3) PIX_PAGE3 <= page3;
start3 <= (pre_run_cntr == 2);
if (RST) pending <= 0;
else if (pre_run_cntr == 1) pending <= 1;
else if (!pre_busy3) pending <= 0;
start3 <= pending && !pre_busy3; // (pre_run_cntr == 2);
end
...
...
@@ -662,7 +680,8 @@ module mclt_test_06 ();
.DSP_A_WIDTH (DSP_A_WIDTH),
.DSP_P_WIDTH (DSP_P_WIDTH),
.DEAD_CYCLES (DEAD_CYCLES),
.OUTS_AT_ONCE (OUTS_AT_ONCE)
.OUTS_AT_ONCE (OUTS_AT_ONCE),
.TILE_PAGE_BITS (TILE_PAGE_BITS)
) mclt16x16_bayer3_i (
.clk (CLK), // input
.rst (RST), // input
...
...
dsp/phase_rotator_rgb.v
View file @
7c906860
...
...
@@ -46,18 +46,20 @@ module phase_rotator_rgb#(
parameter
DSP_P_WIDTH
=
48
,
parameter
COEFF_WIDTH
=
17
,
// = DSP_B_WIDTH - 1 or positive numbers,
parameter
GREEN
=
1
,
// 0: use 1 DTT block (R,B), 1: use two DTT blocks (G)
parameter
START_DELAY
=
128
// delay start of input memory readout
parameter
START_DELAY
=
128
,
// delay start of input memory readout
parameter
TILE_PAGE_BITS
=
1
// 1 or 2 only: number of bits in tile counter (>=2 for simultaneous rotated readout, limited by red)
)(
input
clk
,
//!< system clock, posedge
input
rst
,
//!< sync reset
input
start
,
//!< start of delay
input
wpage
,
//!< page (64 for R,B, 128 for G) last being written (may need delay?)
input
[
TILE_PAGE_BITS
-
1
:
0
]
wpage
,
//!< page (64 for R,B, 128 for G) last being written (may need delay?)
input
signed
[
SHIFT_WIDTH
-
1
:
0
]
shift_h
,
//!< subpixel shift horizontal
input
signed
[
SHIFT_WIDTH
-
1
:
0
]
shift_v
,
//!< subpixel shift vertical
input
inv_checker
,
//!< negate 2-nd and fourth samples (for handling inverted checkerboard)
input
odd_rows
,
//!< when not GEEN (R or B) 0: even (first) rows non-zero, 1: odd (second)
// input data CC,CS,SC,SS in column scan order (matching DTT)
output
[
GREEN
+
6
:
0
]
in_addr
,
//!< input buffer address
// output [GREEN + 6:0] in_addr, //!< input buffer address
output
[
GREEN
+
TILE_PAGE_BITS
+
5
:
0
]
in_addr
,
//!< input buffer address
output
[
1
:
0
]
in_re
,
//!< input buffer re/regen
input
signed
[
FD_WIDTH
-
1
:
0
]
fd_din
,
//!< frequency domain data in, LATENCY=3 from start
output
signed
[
FD_WIDTH
-
1
:
0
]
fd_out
,
//!< frequency domain data in
...
...
@@ -69,7 +71,7 @@ module phase_rotator_rgb#(
reg
signed
[
SHIFT_WIDTH
-
1
:
0
]
shift_h_r
;
reg
signed
[
SHIFT_WIDTH
-
1
:
0
]
shift_v_r
;
reg
wpage_r
;
reg
[
TILE_PAGE_BITS
-
1
:
0
]
wpage_r
;
reg
[
2
:
0
]
inv
;
reg
[
1
:
0
]
dtt_start_out
;
reg
[
7
:
0
]
dtt_dly_cntr
;
...
...
@@ -77,7 +79,7 @@ module phase_rotator_rgb#(
reg
[
8
:
0
]
dtt_rd_cntr_pre
;
// 1 ahead of the former counter for dtt readout to rotator
reg
[
7
:
0
]
in_addr_r
;
//!< input buffer address
reg
[
8
:
0
]
out_addr_r
;
assign
in_addr
=
in_addr_r
[
GREEN
+
6
:
0
]
;
assign
in_addr
=
in_addr_r
[
GREEN
+
TILE_PAGE_BITS
+
5
:
0
]
;
assign
in_re
=
dtt_rd_regen_dv
[
2
:
1
]
;
// assign fd_wa = {out_addr_r[8], out_addr_r[0],out_addr_r[1],out_addr_r[4:2],out_addr_r[7:5]};
assign
fd_wa
=
{
out_addr_r
[
8
]
,
out_addr_r
[
1
]
,
out_addr_r
[
0
]
,
out_addr_r
[
4
:
2
]
,
out_addr_r
[
7
:
5
]
};
...
...
@@ -119,7 +121,7 @@ module phase_rotator_rgb#(
(
dtt_rd_cntr_pre
[
0
]
?
(
~
dtt_rd_cntr_pre
[
7
:
2
])
:
{~
dtt_rd_cntr_pre
[
7
:
5
]
,
dtt_rd_cntr_pre
[
4
:
2
]
}
)
:
(
dtt_rd_cntr_pre
[
0
]
?
{
dtt_rd_cntr_pre
[
7
:
5
]
,~
dtt_rd_cntr_pre
[
4
:
2
]
}
:
dtt_rd_cntr_pre
[
7
:
2
])
};
if
(
pre_first_out
)
out_addr_r
<=
{
wpage_r
,
8'b0
};
if
(
pre_first_out
)
out_addr_r
<=
{
wpage_r
[
0
]
,
8'b0
};
else
if
(
fd_dv
)
out_addr_r
<=
out_addr_r
+
1
;
pre_last_out
<=
out_addr_r
[
7
:
0
]
==
8'hfe
;
...
...
mclt_test_06.sav
View file @
7c906860
[*]
[*] GTKWave Analyzer v3.3.78 (w)1999-2016 BSI
[*] Sat Dec 30 0
5:11:50
2017
[*] Sat Dec 30 0
7:52:57
2017
[*]
[dumpfile] "/home/eyesis/nc393/elphel393/fpga-elphel/x393_branch_dct/simulation/mclt_test_06-201712
29221040868
.fst"
[dumpfile_mtime] "Sat Dec 30 0
5:10:48
2017"
[dumpfile_size]
1605316
[dumpfile] "/home/eyesis/nc393/elphel393/fpga-elphel/x393_branch_dct/simulation/mclt_test_06-201712
30003356794
.fst"
[dumpfile_mtime] "Sat Dec 30 0
7:33:59
2017"
[dumpfile_size]
938964
[savefile] "/home/eyesis/nc393/elphel393/fpga-elphel/x393_branch_dct/mclt_test_06.sav"
[timestart] 0
[size] 1824 1171
[pos] 0 0
*-21.1
12703 4972000 2935000 2945000 3595000 3575000 3585000 4855000 4865000
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
*-21.1
84513 5550000 4825000 5405000 6875000 6955000 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
[treeopen] mclt_test_06.
[treeopen] mclt_test_06.mclt16x16_bayer3_i.
[treeopen] mclt_test_06.mclt16x16_bayer3_i.mclt_baeyer_fold_accum_rgb_i.
...
...
@@ -19,23 +19,20 @@
[treeopen] mclt_test_06.mclt16x16_bayer3_i.phase_rotator_g_i.
[treeopen] mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.
[treeopen] mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.phase_rotator0_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.dtt_iv_8x8_ad_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_baeyer_fold_accum_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_baeyer_fold_accum_i.dsp_fold_cc_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_baeyer_fold_accum_i.dsp_fold_cc_i.DSP48E1_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_baeyer_fold_accum_i.dsp_fold_cs_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_bayer_fold_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.mclt_bayer_fold_i.mclt_wnd_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.phase_rotator0_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.phase_rotator0_i.dsp_1_i.
[treeopen] mclt_test_06.mclt16x16_bayer_i.phase_rotator1_i.
[sst_width] 204
[signals_width] 284
[sst_width] 366
[signals_width] 316
[sst_expanded] 1
[sst_vpaned_height] 343
@22
mclt_test_06.PAGE
@c00200
-mclt_test_06.in_cntr
@1401200
-group_end
@28
mclt_test_06.CLK
@29
mclt_test_06.page3[1:0]
@420
mclt_test_06.n1
mclt_test_06.p1
...
...
@@ -98,7 +95,10 @@ mclt_test_06.jav_pix_in_now_d[15:0]
mclt_test_06.diff1
@28
mclt_test_06.START
mclt_test_06.start3
mclt_test_06.pre_busy3
@22
mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
mclt_test_06.pix_page_d[2:0]
@200
-
...
...
@@ -180,8 +180,6 @@ mclt_test_06.mclt16x16_bayer3_i.dtt_r_data[24:0]
@200
-
@8022
mclt_test_06.dtt_rd_ra_r[6:0]
mclt_test_06.dtt_rd_ra_b[6:0]
mclt_test_06.dtt_rd_ra_g[7:0]
@22
mclt_test_06.dtt_rd_data_r[24:0]
...
...
@@ -230,74 +228,164 @@ mclt_test_06.cntr7b[7:0]
mclt_test_06.n7g
@22
mclt_test_06.cntr7g[7:0]
@800200
-mclt16x16
@28
mclt_test_06.LATE
mclt_test_06.mclt16x16_bayer3_i.start
mclt_test_06.mclt16x16_bayer3_i.page[1:0]
mclt_test_06.mclt16x16_bayer3_i.run_r
mclt_test_06.mclt16x16_bayer3_i.pre_busy
mclt_test_06.mclt16x16_bayer3_i.pre_busy_r
@c00022
mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(1)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(2)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(3)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(4)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(5)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
(6)mclt_test_06.mclt16x16_bayer3_i.phases[6:0]
mclt_test_06.mclt16x16_bayer3_i.pre_last_in
@1401200
-group_end
@28
mclt_test_06.mclt16x16_bayer3_i.pre_last_in
mclt_test_06.mclt16x16_bayer3_i.pre_last_in_w
@c00028
mclt_test_06.mclt16x16_bayer3_i.start_block_r[1:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.start_block_r[1:0]
(1)mclt_test_06.mclt16x16_bayer3_i.start_block_r[1:0]
@1401200
-group_end
@c00022
mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(1)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(2)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(3)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(4)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(5)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(6)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
(7)mclt_test_06.mclt16x16_bayer3_i.in_cntr[7:0]
@1401200
-group_end
@22
mclt_test_06.mclt16x16_bayer3_i.dead_cntr[3:0]
@200
-
@800200
-pre_rot_buffers
@1000200
-mclt16x16
@c00200
-dtt_iv_8x8_ad
@28
mclt_test_06.mclt16x16_bayer3_i.
clk
mclt_test_06.mclt16x16_bayer3_i.
dtt_iv_8x8_ad_i.start
@22
mclt_test_06.mclt16x16_bayer3_i.dtt_iv_8x8_ad_i.transpose_di[24:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_iv_8x8_ad_i.xin[24:0]
@200
-
@1401200
-dtt_iv_8x8_ad
@800200
-pre_rot_buffers
@c08022
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_b[6:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_g[8:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_g[7:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_r
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_b
@8022
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
@22
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_g
@8022
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_g[8:0]
mclt_test_06.mclt16x16_bayer3_i.dbg_prerot_bufwr_r[8:0]
mclt_test_06.mclt16x16_bayer3_i.dbg_prerot_bufwr_b[8:0]
mclt_test_06.mclt16x16_bayer3_i.dbg_prerot_bufwr_g[8:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(1)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(2)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(3)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(4)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(5)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(6)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(7)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(8)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
@1409200
-group_end
@20000
-
-
@8022
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_b[6:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_g[7:0]
@20000
-
-
@8022
mclt_test_06.mclt16x16_bayer3_i.dbg_prerot_buf_r[8:0]
@c08022
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(1)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(2)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(3)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(4)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(5)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(6)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(7)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
@1409200
-group_end
@20000
-
-
@8022
mclt_test_06.mclt16x16_bayer3_i.dbg_prerot_buf_b[8:0]
@20000
-
-
@8022
mclt_test_06.mclt16x16_bayer3_i.d
bg_prerot_buf
_g[8:0]
mclt_test_06.mclt16x16_bayer3_i.d
tt_out_ram_wa
_g[8:0]
@20000
-
-
-
@28
mclt_test_06.mclt16x16_bayer3_i.clk
@22
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_cntr[5:0]
@c00022
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(1)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(2)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(3)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(4)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(5)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(6)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(7)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
(8)mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_rb[8:0]
@1401200
-group_end
@c00022
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(1)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(2)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(3)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(4)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(5)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(6)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
(7)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[7:0]
@1401200
-group_end
@22
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_b[7:0]
@200
-
@28
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_r
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_b
mclt_test_06.mclt16x16_bayer3_i.dtt_out_we_g
@22
mclt_test_06.mclt16x16_bayer3_i.dtt_out_wd[24:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_out_ram_wa_g[8:0]
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_g[7:0]
mclt_test_06.dtt_rd_data_g[24:0]
@1000200
-pre_rot_buffers
@c00201
-rotators
@c00200
-rotators
-rotators_top
@28
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_regen_r[1:0]
@c08022
mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
@28
(0)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(1)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(2)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(3)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(4)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(5)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
(6)mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r[6:0]
@c00200
-mclt_test_06.mclt16x16_bayer3_i.dtt_rd_ra_r
@1401200
-group_end
@22
...
...
@@ -312,9 +400,6 @@ mclt_test_06.mclt16x16_bayer3_i.dtt_start_blue
mclt_test_06.mclt16x16_bayer3_i.dtt_start_blue_fill
mclt_test_06.mclt16x16_bayer3_i.dtt_start_green
mclt_test_06.mclt16x16_bayer3_i.dtt_start_green_fill
mclt_test_06.mclt16x16_bayer3_i.ram_wpage_r
mclt_test_06.mclt16x16_bayer3_i.ram_wpage_b
mclt_test_06.mclt16x16_bayer3_i.ram_wpage_g
@1401200
-rotators_top
@800200
...
...
@@ -327,12 +412,9 @@ mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.odd_rows
[color] 6
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.inv[2:0]
@28
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.wpage
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.wpage_r
(1)mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.dtt_start_out[1:0]
@22
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.dtt_rd_cntr_pre[8:0]
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_r_i.in_addr[6:0]
@800200
-rotator
@28
...
...
@@ -414,8 +496,6 @@ mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.odd_rows
[color] 6
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.inv[2:0]
@28
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.wpage
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.wpage_r
(1)mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.dtt_start_out[1:0]
@22
mclt_test_06.mclt16x16_bayer3_i.phase_rotator_b_i.dtt_rd_cntr_pre[8:0]
...
...
@@ -473,7 +553,6 @@ mclt_test_06.mclt16x16_bayer3_i.phase_rotator_g_i.phase_rotator0_i.start
-rotator
@1401200
-rotator_green
@1401201
-rotators
[pattern_trace] 1
[pattern_trace] 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