2 * @file x393_tasks_afi.vh
4 * @author Andrey Filippov
6 * @brief Simulation tasks for the AXI_HP (AFI)
8 * @copyright Copyright (c) 2015 Elphel, Inc.
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.
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.
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.
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
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});
57 input continue; // 0 start from start64, 1 - continue from where it was
59 write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_CTRL, {29'b0,continue,2'b11});
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
66 write_contol_register(MEMBRIDGE_ADDR + MEMBRIDGE_CTRL, {31'b0,en});
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
89 input integer rel_baddr; // relative byte address
92 ps_write_reg(32'hf8008000+ (port_num << 12) + (rel_baddr & 'hfffffffc), data);
96 task afi_read_reg; // SuppressThisWarning VEditor - may be unused
98 input integer rel_baddr; // relative byte address
101 ps_read_reg(32'hf8008000+ (port_num << 12) + (rel_baddr & 'hfffffffc), verbose);
106 input [31:0] ps_reg_addr;
107 input [31:0] ps_reg_data;
110 PS_REG_ADDR <= ps_reg_addr;
111 PS_REG_DIN <= ps_reg_data;
121 input [31:0] ps_reg_addr;
125 PS_REG_ADDR <= ps_reg_addr;
133 $display("ps_read_reg(%x) -> %x @%t",ps_reg_addr,PS_RDATA,$time);