2 * @file x393_tasks_status.vh
4 * @author Andrey Filippov
6 * @brief Simulation tasks for the x393 related to status
8 * @copyright Copyright (c) 2015 Elphel, Inc.
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.
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.
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/> .
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.
39 // CVC bug that is supposed to be already fixed
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)
55 pattern1 = {6'h0,pattern};
57 for (match=0; !match; match = invert_match ^ (((registered_rdata ^ pattern1) & mask1)==0)) begin
58 read_status(status_address);
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);
67 pattern1 = {6'h0,pattern};
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)
86 for (match=0; !match; match = invert_match ^ (((registered_rdata ^ {6'h0,pattern}) & {6'h0,mask})==0)) begin
87 read_status(status_address);
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);
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)
112 for (match=0; !match; match = invert_match ^ (((registered_rdata ^ {6'h0,pattern}) & {6'h0,mask})==0)) begin
113 read_status(status_address);
120 task wait_phase_shifter_ready;
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
131 task read_all_status;
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);
151 input [STATUS_DEPTH-1:0] address;
153 read_and_wait_w(STATUS_ADDR + address ); // Will set: registered_rdata <= rdata;
159 task program_status_all;
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,
179 input [29:0] base_addr;
180 input [7:0] reg_addr;
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;
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});