| 1 |
28 |
qaztronic |
//////////////////////////////////////////////////////////////////////
|
| 2 |
|
|
//// ////
|
| 3 |
|
|
//// Copyright (C) 2015 Authors and OPENCORES.ORG ////
|
| 4 |
|
|
//// ////
|
| 5 |
|
|
//// This source file may be used and distributed without ////
|
| 6 |
|
|
//// restriction provided that this copyright statement is not ////
|
| 7 |
|
|
//// removed from the file and that any derivative work contains ////
|
| 8 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
| 9 |
|
|
//// ////
|
| 10 |
|
|
//// This source file is free software; you can redistribute it ////
|
| 11 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
| 12 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
| 13 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
| 14 |
|
|
//// later version. ////
|
| 15 |
|
|
//// ////
|
| 16 |
|
|
//// This source is distributed in the hope that it will be ////
|
| 17 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
| 18 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
| 19 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
| 20 |
|
|
//// details. ////
|
| 21 |
|
|
//// ////
|
| 22 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
| 23 |
|
|
//// Public License along with this source; if not, download it ////
|
| 24 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
| 25 |
|
|
//// ////
|
| 26 |
|
|
//////////////////////////////////////////////////////////////////////
|
| 27 |
|
|
|
| 28 |
|
|
module
|
| 29 |
|
|
axis_mux
|
| 30 |
|
|
#(
|
| 31 |
31 |
qaztronic |
N, // data bus width in bytes
|
| 32 |
|
|
I = 0, // TID width
|
| 33 |
|
|
D = 0, // TDEST width
|
| 34 |
28 |
qaztronic |
U = 1, // TUSER width
|
| 35 |
|
|
USE_TSTRB = 0, // set to 1 to enable, 0 to disable
|
| 36 |
|
|
USE_TKEEP = 0 // set to 1 to enable, 0 to disable
|
| 37 |
|
|
)
|
| 38 |
|
|
(
|
| 39 |
31 |
qaztronic |
input mux_select,
|
| 40 |
|
|
axis_if axis_0_in,
|
| 41 |
|
|
axis_if axis_1_in,
|
| 42 |
|
|
axis_if axis_out,
|
| 43 |
|
|
input axis_en,
|
| 44 |
|
|
input aclk,
|
| 45 |
|
|
input aresetn
|
| 46 |
28 |
qaztronic |
);
|
| 47 |
|
|
|
| 48 |
31 |
qaztronic |
// --------------------------------------------------------------------
|
| 49 |
|
|
// synthesis translate_off
|
| 50 |
|
|
initial
|
| 51 |
|
|
begin
|
| 52 |
|
|
a_tid_unsuported: assert(I == 0) else $fatal;
|
| 53 |
|
|
a_tdest_unsuported: assert(D == 0) else $fatal;
|
| 54 |
|
|
end
|
| 55 |
|
|
// synthesis translate_on
|
| 56 |
|
|
// --------------------------------------------------------------------
|
| 57 |
|
|
|
| 58 |
|
|
|
| 59 |
28 |
qaztronic |
// --------------------------------------------------------------------
|
| 60 |
|
|
//
|
| 61 |
31 |
qaztronic |
axis_if #(.N(N), .I(1), .D(1), .U(U))
|
| 62 |
28 |
qaztronic |
axis_mux_out(.*);
|
| 63 |
|
|
|
| 64 |
|
|
assign axis_0_in.tready = mux_select ? 0 : axis_mux_out.tready;
|
| 65 |
|
|
assign axis_1_in.tready = mux_select ? axis_mux_out.tready : 0;
|
| 66 |
|
|
|
| 67 |
|
|
assign axis_mux_out.tvalid = mux_select ? axis_1_in.tvalid : axis_0_in.tvalid;
|
| 68 |
|
|
assign axis_mux_out.tdata = mux_select ? axis_1_in.tdata : axis_0_in.tdata;
|
| 69 |
|
|
assign axis_mux_out.tstrb = mux_select ? axis_1_in.tstrb : axis_0_in.tstrb;
|
| 70 |
|
|
assign axis_mux_out.tkeep = mux_select ? axis_1_in.tkeep : axis_0_in.tkeep;
|
| 71 |
|
|
assign axis_mux_out.tlast = mux_select ? axis_1_in.tlast : axis_0_in.tlast;
|
| 72 |
|
|
assign axis_mux_out.tid = mux_select ? axis_1_in.tid : axis_0_in.tid;
|
| 73 |
|
|
assign axis_mux_out.tdest = mux_select ? axis_1_in.tdest : axis_0_in.tdest;
|
| 74 |
|
|
assign axis_mux_out.tuser = mux_select ? axis_1_in.tuser : axis_0_in.tuser;
|
| 75 |
|
|
|
| 76 |
|
|
|
| 77 |
|
|
// --------------------------------------------------------------------
|
| 78 |
|
|
//
|
| 79 |
|
|
axis_register_slice
|
| 80 |
|
|
#(
|
| 81 |
|
|
.N(N),
|
| 82 |
|
|
.I(I),
|
| 83 |
|
|
.D(D),
|
| 84 |
|
|
.U(U),
|
| 85 |
|
|
.USE_TSTRB(USE_TSTRB),
|
| 86 |
|
|
.USE_TKEEP(USE_TKEEP)
|
| 87 |
|
|
)
|
| 88 |
|
|
axis_register_slice_i
|
| 89 |
|
|
(
|
| 90 |
|
|
.axis_in(axis_mux_out), // .slave
|
| 91 |
|
|
.axis_out(axis_out), // .master
|
| 92 |
|
|
.*
|
| 93 |
|
|
);
|
| 94 |
|
|
|
| 95 |
|
|
|
| 96 |
|
|
// --------------------------------------------------------------------
|
| 97 |
|
|
//
|
| 98 |
|
|
|
| 99 |
|
|
|
| 100 |
|
|
endmodule
|
| 101 |
|
|
|
| 102 |
|
|
|