x393  1.0
FPGAcodeforElphelNC393camera
x393_tasks_mcntrl_buffers.vh
Go to the documentation of this file.
1 /*!
2  * @file x393_tasks_mcntrl_buffers.vh
3  * @date 2015-02-07
4  * @author Andrey Filippov
5  *
6  * @brief Simulation tasks for software reading/writing (with test patterns)
7  * of the block buffers.
8  *
9  * @copyright Copyright (c) 2015 Elphel, Inc.
10  *
11  * <b>License:</b>
12  *
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.
17  *
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.
22  *
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/> .
25  *
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.
38  */
39 /*
40 task write_block_scanline_chn; // S uppressThisWarning VEditor : may be unused
41  input integer chn; // buffer channel
42  input [1:0] page;
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)
45  input integer startX;
46  input integer startY;
47  reg [29:0] start_addr;
48  begin
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);
50  case (chn)
51  1: start_addr=MCONTR_BUF0_WR_ADDR + (page << 8);
52  3: start_addr=MCONTR_BUF3_WR_ADDR + (page << 8);
53  default: begin
54  $display("**** ERROR: Invalid channel for write_block_scanline_chn = %d @%t", chn, $time);
55  start_addr = MCONTR_BUF0_WR_ADDR+ (page << 8);
56  end
57  endcase
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
60  end
61 endtask
62 */
63 
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;
68  integer i, j;
69  begin
70  $display("**** write_block_buf @%t", $time);
71  for (i = 0; i < num_words; i = i + 16) begin
72  axi_write_addr_data(
73  i, // id
74  {start_word_address,2'b0}+( i << 2),
75  start_value+i,
76  4'hf, // len
77  1, // burst type - increment
78  1'b1, // data_en
79  4'hf, // wstrb
80  1'b0 // last
81  );
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
85  axi_write_data(
86  i, // id
87  start_value+i+j,
88  4'hf, // wstrb
89  (j == 15) ? 1'b1 : 1'b0 // last
90  );
91  $display(" Write block incremental (addr:data): 0x%08x:0x%x @%t", (i + j), start_value+i+j, $time);
92  end
93  end
94  end
95 endtask
96 
97 task write_block_buf_chn; // S uppressThisWarning VEditor : may be unused
98  input integer chn; // buffer channel
99  input [1:0] page;
100  input integer num_words; // number of words to write (will be rounded up to multiple of 16)
101  reg [29:0] start_addr;
102  begin
103  case (chn)
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);
109  default: begin
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);
112  end
113  endcase
114  write_block_buf (start_addr, num_words);
115  end
116 endtask
117 
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)
121  integer i, j;
122  begin
123  $display("**** write_block_buf @%t", $time);
124  for (i = 0; i < num_words; i = i + 16) begin
125  axi_write_addr_data(
126  i, // id
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),
130  4'hf, // len
131  1, // burst type - increment
132  1'b1, // data_en
133  4'hf, // wstrb
134  1'b0 // last
135  );
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
138  axi_write_data(
139  i, // id
140  (i + j) | ((((i + j) + 7) & 'hff) << 8) | ((((i + j) + 23) & 'hff) << 16) | ((((i + j) + 31) & 'hff) << 24),
141  4'hf, // wstrb
142  (j == 15) ? 1'b1 : 1'b0 // last
143  );
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);
146  end
147  end
148  end
149 endtask
150 
151  // read memory
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
155  input [1:0] page;
156  input integer num_read; // number of words to read (will be rounded up to multiple of 16)
157  input wait_done;
158  reg [29:0] start_addr;
159  begin
160  case (chn)
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);
165  default: begin
166  $display("**** ERROR: Invalid channel (not 0,2,3,4) for read buffer = %d @%t", chn, $time);
167  start_addr = 30'b0+ (page << 8);
168  end
169  endcase
170  read_block_buf (start_addr, num_read, wait_done);
171  end
172 endtask
173 
174 task read_block_buf;
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)
177  input wait_done;
178  integer i; //,j;
179  begin
180 
181  IRQ_EN = 0;
182  wait (CLK);
183  while (!MAIN_GO) begin
184  wait (!CLK);
185  wait (CLK);
186  end
187 
188  SIMUL_AXI_FULL<=1'b0;
189  $display("**** read_block_buf @%t", $time);
190  axi_set_rd_lag(0);
191  for (i = 0; i < num_read; i = i + 16) begin
192  wait(arready);
193 // axi_read_addr(
194  axi_read_addr_inner(
195  i, // id
196  {start_word_address,2'b0}+( i << 2), // addr
197  4'hf, // len
198  1 // burst type - increment
199  );
200  end
201  if (wait_done) begin
202 // wait (AXI_RD_EMPTY);
203  wait_read_queue_empty;
204  end
205  IRQ_EN = 1;
206  if (IRQS) begin
207  @(posedge CLK);
208  @(negedge CLK);
209  end
210 
211  end
212 endtask