41 // [23] == 1 - set focus mode 44 // 2 - combine for all image 45 // 3 - combine in window only 46 // [20] == 1 - set Bayer shift 47 // [19:18] Bayer shift 48 // [17] == 1 - set compressor shift 49 // [16:14] compressor shift 50 // [13]==1 - enable color modes 51 // [12:9]== 0 - color, 4:2:0 52 // 1 - monochrome, 6/4 blocks (as 4:2:0) 53 // 2 - jp4, 6 blocks, original 54 // 3 - jp4, 6 blocks, dc -improved 55 // 4 - mono, 4 blocks (but still not actual monochrome JPEG as the blocks are scanned in 2x2 macroblocks) 56 // 5 - jp4, 4 blocks, dc-improved 57 // 6 - jp4, differential 59 // [8:7] == 0,1 - NOP, 2 - disable, 3 - enable subtracting of average value (DC component), bypassing DCT 60 // [6] == 1 - enable quantization bank select, 0 - disregard bits [5:3] 61 // [5:3] = quantization page number (0..7) 62 // [2]== 1 - enable on/off control: 63 // [1:0]== 0 - reset compressor, stop immediately 64 // 1 - enable compressor, disable repetitive mode 65 // 2 - enable compressor, compress single frame 66 // 3 - enable compressor, enable repetitive mode 69 // [23] == 1 - set focus mode 72 // 2 - combine for all image 73 // 3 - combine in window only 74 // [20] == 1 - set Bayer shift 75 // [19:18] Bayer shift 77 // [15] == 1 - set single/multi frame mode 78 // [14] 0 - multiframe (compare frame numbers for 'suspend' output) 79 // 1 - single frame buffer 80 // [13]== 1 - enable color modes 81 // [12:9]== 0 - color, 4:2:0 82 // 1 - monochrome, 6/4 blocks (as 4:2:0) 83 // 2 - jp4, 6 blocks, original 84 // 3 - jp4, 6 blocks, dc -improved 85 // 4 - mono, 4 blocks (but still not actual monochrome JPEG as the blocks are scanned in 2x2 macroblocks) 86 // 5 - jp4, 4 blocks, dc-improved 87 // 6 - jp4, differential 89 // [8:7] == 0,1 - NOP, 2 - disable, 3 - enable subtracting of average value (DC component), bypassing DCT 90 // [6] == 1 - enable quantization bank select, 0 - disregard bits [5:3] 91 // [5:3] = quantization page number (0..7) 92 // [2]== 1 - enable compressor on/off control: 93 // [1:0]== 0 - reset compressor, stop immediately 94 // 1 - disable compression of the new frames, finish any already started 95 // 2 - enable compressor, compress single frame from memory (async) 96 // 3 - enable compressor, enable synchronous compression mode 101 // Bit-fields in compressor control word 110 parameter CMPRS_CBIT_FRAMES =
15,
// bit # to control compressor multi/single frame buffer modes 116 // compressor bit-fields decode 118 // parameter CMPRS_CBIT_RUN_DISABLE = 2'h1, // disable compression of the new frames, finish any already started 125 parameter CMPRS_CBIT_CMODE_JPEG20 =
4'h4,
// mono, 4 blocks (but still not actual monochrome JPEG as the blocks are scanned in 2x2 macroblocks) 136 parameter CMPRS_COLOR18 =
0,
// JPEG 4:2:0 with 18x18 overlapping tiles for de-bayer 137 parameter CMPRS_COLOR20 =
1,
// JPEG 4:2:0 with 18x18 overlapping tiles for de-bayer (not implemented) 138 parameter CMPRS_MONO16 =
2,
// JPEG 4:2:0 with 16x16 non-overlapping tiles, color components zeroed 139 parameter CMPRS_JP4 =
3,
// JP4 mode with 16x16 macroblocks 141 parameter CMPRS_MONO8 =
7,
// Regular JPEG monochrome with 8x8 macroblocks (not yet implemented) 143 parameter CMPRS_FRMT_MBCM1 =
0,
// bit # of number of macroblock columns minus 1 field in format word 144 parameter CMPRS_FRMT_MBCM1_BITS =
13,
// number of bits in number of macroblock columns minus 1 field in format word 145 parameter CMPRS_FRMT_MBRM1 =
13,
// bit # of number of macroblock rows minus 1 field in format word 149 parameter CMPRS_CSAT_CB =
0,
// bit # of number of blue scale field in color saturation word 151 parameter CMPRS_CSAT_CR =
12,
// bit # of number of red scale field in color saturation word 155 //parameter CMPRS_STUFFER_NEG = 1 // stuffer runs @ negedge xclk2x 160 input xclk,
// global clock input, compressor single clock rate 161 input mclk,
// global system/memory clock 162 input mrst,
// @posedge mclk, sync reset 163 input ctrl_we,
// input - @mclk control register write enable 164 input format_we,
// input - @mclk write number of tiles and left margin 168 // rs, // 0 - bit modes, 169 // // 1 - write ntiles; 170 input [
31:
0]
di,
// [15:0] data from CPU (sync to negedge sclk) 171 // cr_w, // data written to cr (1 cycle long) - just to reset legacy IRQ 172 // ntiles,//[17:0] - number of tiles in a frame to process 176 // outputs sync @ posedge mclk: 180 output reg cmprs_run_mclk,
// @mclk enable propagation of vsync_late to frame_start_dst in bonded(sync to src) mode 181 output reg cmprs_standalone,
// @mclk single-cycle: generate a single frame_start_dst in unbonded (not synchronized) mode. 182 // cmprs_run should be off 183 output reg sigle_frame_buf,
// memory controller uses a single frame buffer (frame_number_* == 0), use other sync 184 // outputs sync @ posedge xclk: 187 // cmprs_start, // single cycle when single or constant compression is turned on 188 // cmprs_repeat,// high in repetitive mode 189 // outputs @posedge xclk, frozen when the new frame is requested 190 output reg [
2:
0]
cmprs_qpage,
// [2:0] - quantizator page number (0..7) 191 output reg cmprs_dcsub,
// subtract dc level before DCT, restore later 192 // output reg [ 3:0] cmprs_mode, // [3:0] - compressor mode 193 // cmprs_shift, // tile shift from top left corner 195 output reg [
1:
0]
bayer_shift,
// additional shift to bayer mosaic 200 output reg [
2:
0]
converter_type,
// 0 - color18, 1 - color20, 2 - mono, 3 - jp4, 4 - jp4-diff 215 // input is_compressing, // high from start of compressing till EOT (sync to posedge clk) 217 // input stuffer_done_mclk, 219 // output reg force_flush); // abort compress - generate flush pulse, force end of image over DMA, update counter 230 wire ctrl_we_xclk;
// single xclk pulse after ctrl_we_r (or use just ctrl_we, not ctrl_we_r) 242 reg [
30:
0]
format_mclk;
// left margin and macroblock rows/columns 243 reg [
23:
0]
color_sat_mclk;
// color saturation values (only 10 LSB in each 12 are used 244 reg [
2:
0]
coring_mclk;
// color saturation values (only 10 LSB in each 12 are used 252 reg [
30:
0]
format_xclk;
// left margin and macroblock rows/columns 253 reg [
23:
0]
color_sat_xclk;
// color saturation values (only 10 LSB in each 12 are used 254 reg [
2:
0]
coring_xclk;
// color saturation values (only 10 LSB in each 12 are used 256 // wire frame_start_xclk; 282 // else if (ctrl_we_r) cmprs_standalone <= ctrl_we_r && di_r[CMPRS_CBIT_RUN] && (di_r[CMPRS_CBIT_RUN-1 -:CMPRS_CBIT_RUN_BITS] == CMPRS_CBIT_RUN_STANDALONE); 315 // re-clock to compressor clock 321 // cmprs_en_late_xclk <= cmprs_en_mclk_r || cmprs_en_extend;
1493CMPRS_CBIT_CMODE_JPEG184'h0
1483CMPRS_CBIT_CMODE_BITS4
1571bayer_shift_mclkreg[1:0]
1577cmprs_mode_xclkreg[3:0]
reg [ 1:0] 1544bayer_shift
frame_start_xclk_i pulse_cross_clock
reg 1540cmprs_en_late_xclk
1514CMPRS_FRMT_MBCM1_BITS13
1502CMPRS_CBIT_CMODE_JP4DIFFDIV24'h9
1489CMPRS_CBIT_FOCUS_BITS2
1487CMPRS_CBIT_BAYER_BITS2
reg [CMPRS_FRMT_MBCM1_BITS-1:0] 1552n_blocks_in_row_m1
1575cmprs_qpage_xclkreg[2:0]
1496CMPRS_CBIT_CMODE_JP46DC4'h3
1495CMPRS_CBIT_CMODE_JP464'h2
reg [CMPRS_FRMT_LMARG_BITS-1:0] 1551left_marg
1570cmprs_fmode_mclkreg[1:0]
reg [CMPRS_CORING_BITS-1:0] 1556coring
1490CMPRS_CBIT_RUN_RST2'h0
1491CMPRS_CBIT_RUN_STANDALONE2'h2
1578cmprs_fmode_xclkreg[1:0]
1569cmprs_mode_mclkreg[3:0]
1485CMPRS_CBIT_FRAMES_BITS1
1479CMPRS_CBIT_QBANK_BITS3
reg [ 2:0] 1541cmprs_qpage
reg [ 1:0] 1543cmprs_fmode
1492CMPRS_CBIT_RUN_ENABLE2'h3
1506CMPRS_CBIT_FRAMES_SINGLE0
1500CMPRS_CBIT_CMODE_JP4DIFF4'h7
1581color_sat_xclkreg[23:0]
1481CMPRS_CBIT_DCSUB_BITS1
1497CMPRS_CBIT_CMODE_JPEG204'h4
1567cmprs_qpage_mclkreg[2:0]
1504CMPRS_CBIT_CMODE_MONO14'hb
1503CMPRS_CBIT_CMODE_JP4DIFFHDRDIV24'ha
1505CMPRS_CBIT_CMODE_MONO44'he
reg [CMPRS_FRMT_MBRM1_BITS-1:0] 1553n_block_rows_m1
reg [ 2:0] 1548converter_type
1516CMPRS_FRMT_MBRM1_BITS13
1573color_sat_mclkreg[23:0]
1499CMPRS_CBIT_CMODE_JP4DC4'h6
1494CMPRS_CBIT_CMODE_MONO64'h1
reg [CMPRS_CSAT_CB_BITS-1:0] 1554color_sat_cb
1518CMPRS_FRMT_LMARG_BITS5
1498CMPRS_CBIT_CMODE_JP44'h5
1501CMPRS_CBIT_CMODE_JP4DIFFHDR4'h8
reg [CMPRS_CSAT_CR_BITS-1:0] 1555color_sat_cr
1579bayer_shift_xclkreg[1:0]
1565color_sat_we_xclkwire