//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// Copyright (C) 2015 Authors and OPENCORES.ORG ////
|
//// Copyright (C) 2016 Authors and OPENCORES.ORG ////
|
//// ////
|
//// ////
|
//// This source file may be used and distributed without ////
|
//// This source file may be used and distributed without ////
|
//// restriction provided that this copyright statement is not ////
|
//// restriction provided that this copyright statement is not ////
|
//// removed from the file and that any derivative work contains ////
|
//// removed from the file and that any derivative work contains ////
|
//// the original copyright notice and the associated disclaimer. ////
|
//// the original copyright notice and the associated disclaimer. ////
|
//// ////
|
//// ////
|
//// This source file is free software; you can redistribute it ////
|
//// This source file is free software; you can redistribute it ////
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
//// Public License as published by the Free Software Foundation; ////
|
//// Public License as published by the Free Software Foundation; ////
|
//// either version 2.1 of the License, or (at your option) any ////
|
//// either version 2.1 of the License, or (at your option) any ////
|
//// later version. ////
|
//// later version. ////
|
//// ////
|
//// ////
|
//// This source is distributed in the hope that it will be ////
|
//// This source is distributed in the hope that it will be ////
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
//// details. ////
|
//// details. ////
|
//// ////
|
//// ////
|
//// You should have received a copy of the GNU Lesser General ////
|
//// You should have received a copy of the GNU Lesser General ////
|
//// Public License along with this source; if not, download it ////
|
//// Public License along with this source; if not, download it ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// ////
|
//// ////
|
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
|
|
module
|
module
|
axis_map_fifo
|
axis_map_fifo
|
#(
|
#(
|
N = 8, // data bus width in bytes
|
N, // data bus width in bytes
|
I = 0, // TID width
|
I = 0, // TID width
|
D = 0, // TDEST width
|
D = 0, // TDEST width
|
U = 1, // TUSER width
|
U = 1, // TUSER width
|
USE_TSTRB = 0, // set to 1 to enable, 0 to disable
|
USE_TSTRB = 0, // set to 1 to enable, 0 to disable
|
USE_TKEEP = 0, // set to 1 to enable, 0 to disable
|
USE_TKEEP = 0, // set to 1 to enable, 0 to disable
|
USE_XID = 0, // set to 1 to enable, 0 to disable
|
USE_XID = 0, // set to 1 to enable, 0 to disable
|
W = 0
|
W = 0
|
)
|
)
|
(
|
(
|
axis_if axis_in,
|
axis_if axis_in,
|
axis_if axis_out,
|
axis_if axis_out,
|
output [W-1:0] wr_data,
|
output [W-1:0] wr_data,
|
input [W-1:0] rd_data,
|
input [W-1:0] rd_data,
|
input aclk,
|
input aclk,
|
input aresetn
|
input aresetn
|
);
|
);
|
|
|
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
// synthesis translate_off
|
// synthesis translate_off
|
initial
|
initial
|
begin
|
begin
|
a_tid_unsuported: assert(I == 0) else $fatal;
|
a_tid_unsuported: assert(I == 0) else $fatal;
|
a_tdest_unsuported: assert(D == 0) else $fatal;
|
a_tdest_unsuported: assert(D == 0) else $fatal;
|
a_xid_unsuported: assert(USE_XID == 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;
|
a_w: assert(W == (N * 8) + (N * USE_TSTRB) + (N * USE_TKEEP) + I + D + U + 1) else $fatal;
|
end
|
end
|
// synthesis translate_on
|
// synthesis translate_on
|
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
|
|
|
|
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
//
|
//
|
generate
|
generate
|
begin: assign_gen
|
begin: assign_gen
|
if(USE_TSTRB & USE_TKEEP)
|
if(USE_TSTRB & USE_TKEEP)
|
begin
|
begin
|
assign wr_data =
|
assign wr_data =
|
{
|
{
|
axis_in.tdata,
|
axis_in.tdata,
|
axis_in.tlast,
|
axis_in.tlast,
|
axis_in.tuser,
|
axis_in.tuser,
|
axis_in.tstrb,
|
axis_in.tstrb,
|
axis_in.tkeep
|
axis_in.tkeep
|
};
|
};
|
assign
|
assign
|
{
|
{
|
axis_out.tdata,
|
axis_out.tdata,
|
axis_out.tlast,
|
axis_out.tlast,
|
axis_out.tuser,
|
axis_out.tuser,
|
axis_out.tstrb,
|
axis_out.tstrb,
|
axis_out.tkeep
|
axis_out.tkeep
|
} = rd_data;
|
} = rd_data;
|
end
|
end
|
else if(USE_TSTRB)
|
else if(USE_TSTRB)
|
begin
|
begin
|
assign wr_data =
|
assign wr_data =
|
{
|
{
|
axis_in.tdata,
|
axis_in.tdata,
|
axis_in.tlast,
|
axis_in.tlast,
|
axis_in.tuser,
|
axis_in.tuser,
|
axis_in.tstrb
|
axis_in.tstrb
|
};
|
};
|
assign
|
assign
|
{
|
{
|
axis_out.tdata,
|
axis_out.tdata,
|
axis_out.tlast,
|
axis_out.tlast,
|
axis_out.tuser,
|
axis_out.tuser,
|
axis_out.tstrb
|
axis_out.tstrb
|
} = rd_data;
|
} = rd_data;
|
end
|
end
|
else if(USE_TKEEP)
|
else if(USE_TKEEP)
|
begin
|
begin
|
assign wr_data =
|
assign wr_data =
|
{
|
{
|
axis_in.tdata,
|
axis_in.tdata,
|
axis_in.tlast,
|
axis_in.tlast,
|
axis_in.tuser,
|
axis_in.tuser,
|
axis_in.tkeep
|
axis_in.tkeep
|
};
|
};
|
assign
|
assign
|
{
|
{
|
axis_out.tdata,
|
axis_out.tdata,
|
axis_out.tlast,
|
axis_out.tlast,
|
axis_out.tuser,
|
axis_out.tuser,
|
axis_out.tkeep
|
axis_out.tkeep
|
} = rd_data;
|
} = rd_data;
|
end
|
end
|
else
|
else
|
begin
|
begin
|
assign wr_data =
|
assign wr_data =
|
{
|
{
|
axis_in.tdata,
|
axis_in.tdata,
|
axis_in.tlast,
|
axis_in.tlast,
|
axis_in.tuser
|
axis_in.tuser
|
};
|
};
|
assign
|
assign
|
{
|
{
|
axis_out.tdata,
|
axis_out.tdata,
|
axis_out.tlast,
|
axis_out.tlast,
|
axis_out.tuser
|
axis_out.tuser
|
} = rd_data;
|
} = rd_data;
|
end
|
end
|
end
|
end
|
endgenerate
|
endgenerate
|
|
|
|
|
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
//
|
//
|
endmodule
|
endmodule
|
|
|
|
|