URL
https://opencores.org/ocsvn/qaz_libs/qaz_libs/trunk
Subversion Repositories qaz_libs
[/] [qaz_libs/] [trunk/] [axi4_stream_lib/] [src/] [axis_map_fifo.sv] - Rev 31
Go to most recent revision | Compare with Previous | Blame | View Log
////////////////////////////////////////////////////////////////////////// //////// Copyright (C) 2015 Authors and OPENCORES.ORG //////// //////// This source file may be used and distributed without //////// restriction provided that this copyright statement is not //////// removed from the file and that any derivative work contains //////// the original copyright notice and the associated disclaimer. //////// //////// This source file is free software; you can redistribute it //////// and/or modify it under the terms of the GNU Lesser General //////// Public License as published by the Free Software Foundation; //////// either version 2.1 of the License, or (at your option) any //////// later version. //////// //////// This source is distributed in the hope that it will be //////// useful, but WITHOUT ANY WARRANTY; without even the implied //////// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //////// PURPOSE. See the GNU Lesser General Public License for more //////// details. //////// //////// You should have received a copy of the GNU Lesser General //////// Public License along with this source; if not, download it //////// from http://www.opencores.org/lgpl.shtml //////// //////////////////////////////////////////////////////////////////////////moduleaxis_map_fifo#(N = 8, // data bus width in bytesI = 0, // TID widthD = 0, // TDEST widthU = 1, // TUSER widthUSE_TSTRB = 0, // set to 1 to enable, 0 to disableUSE_TKEEP = 0, // set to 1 to enable, 0 to disableUSE_XID = 0, // set to 1 to enable, 0 to disableW = 0)(axis_if axis_in,axis_if axis_out,output [W-1:0] wr_data,input [W-1:0] rd_data,input aclk,input aresetn);// --------------------------------------------------------------------// synthesis translate_offinitialbegina_tid_unsuported: assert(I == 0) else $fatal;a_tdest_unsuported: assert(D == 0) else $fatal;a_xid_unsuported: assert(USE_XID == 0) else $fatal;a_w: assert(W == (N * 8) + (N * USE_TSTRB) + (N * USE_TKEEP) + I + D + U + 1) else $fatal;end// synthesis translate_on// --------------------------------------------------------------------// --------------------------------------------------------------------//generatebegin: assign_genif(USE_TSTRB & USE_TKEEP)beginassign wr_data ={axis_in.tdata,axis_in.tlast,axis_in.tuser,axis_in.tstrb,axis_in.tkeep};assign{axis_out.tdata,axis_out.tlast,axis_out.tuser,axis_out.tstrb,axis_out.tkeep} = rd_data;endelse if(USE_TSTRB)beginassign wr_data ={axis_in.tdata,axis_in.tlast,axis_in.tuser,axis_in.tstrb};assign{axis_out.tdata,axis_out.tlast,axis_out.tuser,axis_out.tstrb} = rd_data;endelse if(USE_TKEEP)beginassign wr_data ={axis_in.tdata,axis_in.tlast,axis_in.tuser,axis_in.tkeep};assign{axis_out.tdata,axis_out.tlast,axis_out.tuser,axis_out.tkeep} = rd_data;endelsebeginassign wr_data ={axis_in.tdata,axis_in.tlast,axis_in.tuser};assign{axis_out.tdata,axis_out.tlast,axis_out.tuser} = rd_data;endendendgenerate// --------------------------------------------------------------------//endmodule
Go to most recent revision | Compare with Previous | Blame | View Log
