2 * @file x393_tasks_mcntrl_buffers.vh
4 * @author Andrey Filippov
6 * @brief Simulation tasks for software reading/writing (with test patterns)
7 * of the block buffers.
9 * @copyright Copyright (c) 2015 Elphel, Inc.
13 * x393_tasks_mcntrl_buffers.vh is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
18 * x393_tasks_mcntrl_buffers.vh is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <http://www.gnu.org/licenses/> .
26 * Additional permission under GNU GPL version 3 section 7:
27 * If you modify this Program, or any covered work, by linking or combining it
28 * with independent modules provided by the FPGA vendor only (this permission
29 * does not extend to any 3-rd party modules, "soft cores" or macros) under
30 * different license terms solely for the purpose of generating binary "bitstream"
31 * files and/or simulating the code, the copyright holders of this Program give
32 * you the right to distribute the covered work without those independent modules
33 * as long as the source code for them is available from the FPGA vendor free of
34 * charge, and there is no dependence on any encrypted modules for simulating of
35 * the combined code. This permission applies to you if the distributed code
36 * contains all the components and scripts required to completely simulate it
37 * with at least one of the Free Software programs.
40 task write_block_scanline_chn; // S uppressThisWarning VEditor : may be unused
41 input integer chn; // buffer channel
43 // input integer num_words; // number of words to write (will be rounded up to multiple of 16)
44 input [NUM_XFER_BITS:0] num_bursts; // number of 8-bursts to write (will be rounded up to multiple of 16)
47 reg [29:0] start_addr;
49 $display("====== write_block_scanline_chn:%d page: %x X=0x%x Y=0x%x num=%d @%t", chn, page, startX, startY,num_words, $time);
51 1: start_addr=MCONTR_BUF0_WR_ADDR + (page << 8);
52 3: start_addr=MCONTR_BUF3_WR_ADDR + (page << 8);
54 $display("**** ERROR: Invalid channel for write_block_scanline_chn = %d @%t", chn, $time);
55 start_addr = MCONTR_BUF0_WR_ADDR+ (page << 8);
58 // write_block_incremtal (start_addr, num_words, (startX<<2) + (startY<<16)); // 1 of startX is 8x16 bit, 16 bytes or 4 32-bit words
59 write_block_incremtal (start_addr, num_bursts << 2, (startX<<2) + (startY<<16)); // 1 of startX is 8x16 bit, 16 bytes or 4 32-bit words
64 task write_block_incremtal;
65 input [29:0] start_word_address;
66 input integer num_words; // number of words to write (will be rounded up to multiple of 16)
67 input integer start_value;
70 $display("**** write_block_buf @%t", $time);
71 for (i = 0; i < num_words; i = i + 16) begin
74 {start_word_address,2'b0}+( i << 2),
77 1, // burst type - increment
82 // $display("+Write block data (addr:data): 0x%x:0x%08x @%t", i, i | (((i + 7) & 'hff) << 8) | (((i + 23) & 'hff) << 16) | (((i + 31) & 'hff) << 24), $time);
83 $display("+Write block incremental (addr:data): 0x%x:0x%08x @%t", i, start_value+i, $time);
84 for (j = 1; j < 16; j = j + 1) begin
89 (j == 15) ? 1'b1 : 1'b0 // last
91 $display(" Write block incremental (addr:data): 0x%08x:0x%x @%t", (i + j), start_value+i+j, $time);
97 task write_block_buf_chn; // S uppressThisWarning VEditor : may be unused
98 input integer chn; // buffer channel
100 input integer num_words; // number of words to write (will be rounded up to multiple of 16)
101 reg [29:0] start_addr;
104 0: start_addr=MCONTR_BUF0_WR_ADDR + (page << 8);
105 // 1: start_addr=MCONTR_BUF1_WR_ADDR + (page << 8);
106 2: start_addr=MCONTR_BUF2_WR_ADDR + (page << 8);
107 3: start_addr=MCONTR_BUF3_WR_ADDR + (page << 8);
108 4: start_addr=MCONTR_BUF4_WR_ADDR + (page << 8);
110 $display("**** ERROR: Invalid channel (not 0,2,3,4) for write buffer = %d @%t", chn, $time);
111 start_addr = MCONTR_BUF0_WR_ADDR+ (page << 8);
114 write_block_buf (start_addr, num_words);
118 task write_block_buf;
119 input [29:0] start_word_address;
120 input integer num_words; // number of words to write (will be rounded up to multiple of 16)
123 $display("**** write_block_buf @%t", $time);
124 for (i = 0; i < num_words; i = i + 16) begin
127 {start_word_address,2'b0}+( i << 2),
128 // (MCONTR_BUF0_WR_ADDR + (page <<8)+ i) << 2, // addr
129 i | (((i + 7) & 'hff) << 8) | (((i + 23) & 'hff) << 16) | (((i + 31) & 'hff) << 24),
131 1, // burst type - increment
136 $display("+Write block data (addr:data): 0x%x:0x%08x @%t", i, i | (((i + 7) & 'hff) << 8) | (((i + 23) & 'hff) << 16) | (((i + 31) & 'hff) << 24), $time);
137 for (j = 1; j < 16; j = j + 1) begin
140 (i + j) | ((((i + j) + 7) & 'hff) << 8) | ((((i + j) + 23) & 'hff) << 16) | ((((i + j) + 31) & 'hff) << 24),
142 (j == 15) ? 1'b1 : 1'b0 // last
144 $display(" Write block data (addr:data): 0x%08x:0x%x @%t", (i + j),
145 (i + j) | ((((i + j) + 7) & 'hff) << 8) | ((((i + j) + 23) & 'hff) << 16) | ((((i + j) + 31) & 'hff) << 24), $time);
152 task read_block_buf_chn; // S uppressThisWarning VEditor : may be unused
153 // input integer chn; // buffer channel
154 input [3:0] chn; // buffer channel
156 input integer num_read; // number of words to read (will be rounded up to multiple of 16)
158 reg [29:0] start_addr;
161 0: start_addr=MCONTR_BUF0_RD_ADDR + (page << 8);
162 2: start_addr=MCONTR_BUF2_RD_ADDR + (page << 8);
163 3: start_addr=MCONTR_BUF3_RD_ADDR + (page << 8);
164 4: start_addr=MCONTR_BUF4_RD_ADDR + (page << 8);
166 $display("**** ERROR: Invalid channel (not 0,2,3,4) for read buffer = %d @%t", chn, $time);
167 start_addr = 30'b0+ (page << 8);
170 read_block_buf (start_addr, num_read, wait_done);
175 input [29:0] start_word_address;
176 input integer num_read; // number of words to read (will be rounded up to multiple of 16)
183 while (!MAIN_GO) begin
188 SIMUL_AXI_FULL<=1'b0;
189 $display("**** read_block_buf @%t", $time);
191 for (i = 0; i < num_read; i = i + 16) begin
196 {start_word_address,2'b0}+( i << 2), // addr
198 1 // burst type - increment
202 // wait (AXI_RD_EMPTY);
203 wait_read_queue_empty;