x393  1.0
FPGAcodeforElphelNC393camera
x393_tasks_status.vh
Go to the documentation of this file.
1 /*!
2  * @file x393_tasks_status.vh
3  * @date 2015-02-07
4  * @author Andrey Filippov
5  *
6  * @brief Simulation tasks for the x393 related to status
7  *
8  * @copyright Copyright (c) 2015 Elphel, Inc.
9  *
10  * <b>License:</b>
11  *
12  * x393_status.vh is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * x393_status.vh is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/> .
24  *
25  * Additional permission under GNU GPL version 3 section 7:
26  * If you modify this Program, or any covered work, by linking or combining it
27  * with independent modules provided by the FPGA vendor only (this permission
28  * does not extend to any 3-rd party modules, "soft cores" or macros) under
29  * different license terms solely for the purpose of generating binary "bitstream"
30  * files and/or simulating the code, the copyright holders of this Program give
31  * you the right to distribute the covered work without those independent modules
32  * as long as the source code for them is available from the FPGA vendor free of
33  * charge, and there is no dependence on any encrypted modules for simulating of
34  * the combined code. This permission applies to you if the distributed code
35  * contains all the components and scripts required to completely simulate it
36  * with at least one of the Free Software programs.
37  */
38 
39 // CVC bug that is supposed to be already fixed
40 `ifdef CVC
41 task wait_status_condition;
42  input [STATUS_DEPTH-1:0] status_address;
43  input [29:0] status_control_address;
44  input [1:0] status_mode;
45  input [25:0] pattern; // bits as in read registers
46  input [25:0] mask; // which bits to compare
47  input invert_match; // 0 - wait until match to pattern (all bits), 1 - wait until no match (any of bits differ)
48  input wait_seq;
49  reg match;
50  reg [5:0] seq_num;
51  reg [31:0] pattern1;
52  reg [31:0] mask1;
53  begin
54  WAITING_STATUS = 1;
55  pattern1 = {6'h0,pattern};
56  mask1 = {6'h0,mask};
57  for (match=0; !match; match = invert_match ^ (((registered_rdata ^ pattern1) & mask1)==0)) begin
58  read_status(status_address);
59  if (wait_seq) begin
60  seq_num = (registered_rdata[STATUS_SEQ_SHFT+:6] ^ 6'h20)&'h30;
61  write_contol_register(status_control_address, {24'b0,status_mode,seq_num});
62  read_status(status_address);
63  while (((registered_rdata[STATUS_SEQ_SHFT+:6] ^ seq_num) & 6'h30)!=0) begin // match just 2 MSBs
64  read_status(status_address);
65  end
66  end
67  pattern1 = {6'h0,pattern};
68  mask1 = {6'h0,mask};
69  end
70  WAITING_STATUS = 0;
71  end
72 endtask
73 `else
74 task wait_status_condition;
75  input [STATUS_DEPTH-1:0] status_address;
76  input [29:0] status_control_address;
77  input [1:0] status_mode;
78  input [25:0] pattern; // bits as in read registers
79  input [25:0] mask; // which bits to compare
80  input invert_match; // 0 - wait until match to pattern (all bits), 1 - wait until no match (any of bits differ)
81  input wait_seq;
82  reg match;
83  reg [5:0] seq_num;
84  begin
85  WAITING_STATUS = 1;
86  for (match=0; !match; match = invert_match ^ (((registered_rdata ^ {6'h0,pattern}) & {6'h0,mask})==0)) begin
87  read_status(status_address);
88  if (wait_seq) begin
89  seq_num = (registered_rdata[STATUS_SEQ_SHFT+:6] ^ 6'h20)&'h30;
90  write_contol_register(status_control_address, {24'b0,status_mode,seq_num});
91  read_status(status_address);
92  while (((registered_rdata[STATUS_SEQ_SHFT+:6] ^ seq_num) & 6'h30)!=0) begin // match just 2 MSBs
93  read_status(status_address);
94  end
95  end
96  end
97  WAITING_STATUS = 0;
98  end
99 endtask
100 `endif
101 /*
102 task wait_status_condition_auto; // assumes status is already updating
103  input [STATUS_DEPTH-1:0] status_address;
104  input [29:0] status_control_address;
105  input [1:0] status_mode;
106  input [25:0] pattern; // bits as in read registers
107  input [25:0] mask; // which bits to compare
108  input invert_match; // 0 - wait until match to pattern (all bits), 1 - wait until no match (any of bits differ)
109  reg match;
110  begin
111  WAITING_STATUS = 1;
112  for (match=0; !match; match = invert_match ^ (((registered_rdata ^ {6'h0,pattern}) & {6'h0,mask})==0)) begin
113  read_status(status_address);
114  end
115  WAITING_STATUS = 0;
116  end
117 endtask
118 */
119 
120  task wait_phase_shifter_ready;
121  begin
122  WAITING_STATUS = 1;
123  read_status(MCONTR_PHY_STATUS_REG_ADDR);
124  while (((registered_rdata & STATUS_PSHIFTER_RDY_MASK) == 0) || (((registered_rdata ^ {24'h0,target_phase}) & 'hff) != 0)) begin
125  read_status(MCONTR_PHY_STATUS_REG_ADDR); // exits after negedge CLK
126  end
127  WAITING_STATUS = 0;
128  end
129  endtask
130 
131  task read_all_status;
132  begin
133  $display (" read_all_status @%t",$time);
134  read_status (MCONTR_PHY_STATUS_REG_ADDR);
135  read_status (MCONTR_TOP_STATUS_REG_ADDR);
136  read_status (MCNTRL_PS_STATUS_REG_ADDR);
137  read_status (MCNTRL_SCANLINE_STATUS_REG_CHN1_ADDR);
138  read_status (MCNTRL_SCANLINE_STATUS_REG_CHN3_ADDR);
139  read_status (MCNTRL_TILED_STATUS_REG_CHN2_ADDR);
140  read_status (MCNTRL_TILED_STATUS_REG_CHN4_ADDR);
141 // read_status (MCNTRL_TEST01_STATUS_REG_CHN1_ADDR);
142  read_status (MCNTRL_TEST01_STATUS_REG_CHN2_ADDR);
143  read_status (MCNTRL_TEST01_STATUS_REG_CHN3_ADDR);
144  read_status (MCNTRL_TEST01_STATUS_REG_CHN4_ADDR);
145  read_status (MEMBRIDGE_STATUS_REG);
146 
147  end
148  endtask
149 
150  task read_status;
151  input [STATUS_DEPTH-1:0] address;
152  begin
153  read_and_wait_w(STATUS_ADDR + address ); // Will set: registered_rdata <= rdata;
154 
155  end
156  endtask
157 
158 
159  task program_status_all;
160  input [1:0] mode;
161  input [5:0] seq_num;
162  begin
163  program_status (MCONTR_PHY_16BIT_ADDR, MCONTR_PHY_STATUS_CNTRL, mode,seq_num); //MCONTR_PHY_STATUS_REG_ADDR= 'h0,
164  program_status (MCONTR_TOP_16BIT_ADDR, MCONTR_TOP_16BIT_STATUS_CNTRL, mode,seq_num); //MCONTR_TOP_STATUS_REG_ADDR= 'h1,
165  program_status (MCNTRL_PS_ADDR, MCNTRL_PS_STATUS_CNTRL, mode,seq_num); //MCNTRL_PS_STATUS_REG_ADDR= 'h2,
166  program_status (MCNTRL_SCANLINE_CHN1_ADDR, MCNTRL_SCANLINE_STATUS_CNTRL, mode,seq_num); //MCNTRL_SCANLINE_STATUS_REG_CHN2_ADDR='h4,
167  program_status (MCNTRL_SCANLINE_CHN3_ADDR, MCNTRL_SCANLINE_STATUS_CNTRL, mode,seq_num); //MCNTRL_SCANLINE_STATUS_REG_CHN3_ADDR='h5,
168  program_status (MCNTRL_TILED_CHN2_ADDR, MCNTRL_TILED_STATUS_CNTRL, mode,seq_num); //MCNTRL_TILED_STATUS_REG_CHN4_ADDR= 'h6,
169  program_status (MCNTRL_TILED_CHN4_ADDR, MCNTRL_TILED_STATUS_CNTRL, mode,seq_num); //MCNTRL_TILED_STATUS_REG_CHN4_ADDR= 'h6,
170 // program_status (MCNTRL_TEST01_ADDR, MCNTRL_TEST01_CHN1_STATUS_CNTRL,mode,seq_num); //MCNTRL_TEST01_STATUS_REG_CHN2_ADDR= 'h3c,
171  program_status (MCNTRL_TEST01_ADDR, MCNTRL_TEST01_CHN2_STATUS_CNTRL,mode,seq_num); //MCNTRL_TEST01_STATUS_REG_CHN2_ADDR= 'h3c,
172  program_status (MCNTRL_TEST01_ADDR, MCNTRL_TEST01_CHN3_STATUS_CNTRL,mode,seq_num); //MCNTRL_TEST01_STATUS_REG_CHN3_ADDR= 'h3d,
173  program_status (MCNTRL_TEST01_ADDR, MCNTRL_TEST01_CHN4_STATUS_CNTRL,mode,seq_num); //MCNTRL_TEST01_STATUS_REG_CHN4_ADDR= 'h3e,
174  program_status (MEMBRIDGE_ADDR , MEMBRIDGE_STATUS_CNTRL, mode,seq_num); //MCNTRL_TEST01_STATUS_REG_CHN4_ADDR= 'h3e,
175  end
176  endtask
177 
178  task program_status;
179  input [29:0] base_addr;
180  input [7:0] reg_addr;
181  input [1:0] mode;
182  // mode bits:
183  // 0 disable status generation,
184  // 1 single status request,
185  // 2 - auto status, keep specified seq number,
186  // 3 - auto, inc sequence number
187  input [5:0] seq_number;
188  begin
189 // axi_write_single_w(CONTROL_ADDR+base_addr+reg_addr, {24'b0,mode,seq_number});
190  write_contol_register(base_addr + reg_addr, {24'b0,mode,seq_number});
191  end
192  endtask
193