x393  1.0
FPGAcodeforElphelNC393camera
x393_tasks_afi.vh
Go to the documentation of this file.
1 /*!
2  * @file x393_tasks_afi.vh
3  * @date 2015-02-07
4  * @author Andrey Filippov
5  *
6  * @brief Simulation tasks for the AXI_HP (AFI)
7  *
8  * @copyright Copyright (c) 2015 Elphel, Inc.
9  *
10  * <b>License:</b>
11  *
12  * x393_tasks_afi.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_tasks_afi.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  task membridge_setup;
40  input [28:0] len64; // number of 64-bit words to transfer
41  input [28:0] width64; // frame width in 64-bit words
42  input [28:0] start64; // relative start address of the transfer (set to 0 when writing lo_addr64)
43  input [28:0] lo_addr64; // low address of the system memory range, in 64-bit words
44  input [28:0] size64; // size of the system memory range in 64-bit words
45  input [4:0] mode;
46  begin
47  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_LO_ADDR64, {3'b0,lo_addr64});
48  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_SIZE64, {3'b0,size64});
49  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_START64, {3'b0,start64});
50  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_LEN64, {3'b0,len64});
51  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_WIDTH64, {3'b0,width64});
52  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_MODE, {27'b0,mode});
53  end
54 endtask
55 
56 task membridge_start;
57  input continue; // 0 start from start64, 1 - continue from where it was
58  begin
59  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_CTRL, {29'b0,continue,2'b11});
60  end
61 endtask
62 
63 task membridge_en; // SuppressThisWarning VEditor - may be unused
64  input en; // not needed to start, pauses axi if set to 0 whil running, resets "done" status bit
65  begin
66  write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_CTRL, {31'b0,en});
67  end
68 endtask
69 
70 
71 task afi_setup;
72  input [1:0] port_num;
73  begin
74  afi_write_reg(port_num, 'h0, 0); // AFI_RDCHAN_CTRL
75  afi_write_reg(port_num, 'h4, 7); // AFI_RDCHAN_ISSUINGCAP
76  afi_write_reg(port_num, 'h8, 0); // AFI_RDQOS
77  //afi_write_reg(port_num, 'hc, 0); // AFI_RDDATAFIFO_LEVEL
78  //afi_write_reg(port_num, 'h10, 0); // AFI_RDDEBUG
79  afi_write_reg(port_num, 'h14, 'hf00); // AFI_WRCHAN_CTRL
80  afi_write_reg(port_num, 'h18, 7); // AFI_WRCHAN_ISSUINGCAP
81  afi_write_reg(port_num, 'h1c, 0); // AFI_WRQOS
82  //afi_write_reg(port_num, 'h20, 0); // AFI_WRDATAFIFO_LEVEL
83  //afi_write_reg(port_num, 'h24, 0); // AFI_WRDEBUG
84  end
85 endtask
86 
87 task afi_write_reg;
88  input [1:0] port_num;
89  input integer rel_baddr; // relative byte address
90  input [31:0] data;
91  begin
92  ps_write_reg(32'hf8008000+ (port_num << 12) + (rel_baddr & 'hfffffffc), data);
93  end
94 endtask
95 
96 task afi_read_reg; // SuppressThisWarning VEditor - may be unused
97  input [1:0] port_num;
98  input integer rel_baddr; // relative byte address
99  input verbose;
100  begin
101  ps_read_reg(32'hf8008000+ (port_num << 12) + (rel_baddr & 'hfffffffc), verbose);
102  end
103 endtask
104 
105 task ps_write_reg;
106  input [31:0] ps_reg_addr;
107  input [31:0] ps_reg_data;
108  begin
109  @(posedge HCLK);
110  PS_REG_ADDR <= ps_reg_addr;
111  PS_REG_DIN <= ps_reg_data;
112  PS_REG_WR <= 1'b1;
113  @(posedge HCLK);
114  PS_REG_ADDR <= 'bx;
115  PS_REG_DIN <= 'bx;
116  PS_REG_WR <= 1'b0;
117  end
118 endtask
119 
120 task ps_read_reg;
121  input [31:0] ps_reg_addr;
122  input verbose;
123  begin
124  @(posedge HCLK);
125  PS_REG_ADDR <= ps_reg_addr;
126  PS_REG_RD <= 1'b1;
127  @(posedge HCLK);
128  PS_REG_ADDR <= 'bx;
129  PS_REG_DIN <= 'bx;
130  PS_REG_WR <= 1'b0;
131  @(negedge HCLK);
132  if (verbose) begin
133  $display("ps_read_reg(%x) -> %x @%t",ps_reg_addr,PS_RDATA,$time);
134  end
135  end
136 endtask
137