aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/lib/rfnoc/axi_join.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga/usrp3/lib/rfnoc/axi_join.v')
-rw-r--r--fpga/usrp3/lib/rfnoc/axi_join.v18
1 files changed, 18 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/rfnoc/axi_join.v b/fpga/usrp3/lib/rfnoc/axi_join.v
new file mode 100644
index 000000000..a2f7c567d
--- /dev/null
+++ b/fpga/usrp3/lib/rfnoc/axi_join.v
@@ -0,0 +1,18 @@
+
+
+// Copyright 2014 Ettus Research
+// Copyright 2018 Ettus Research, a National Instruments Company
+//
+// SPDX-License-Identifier: LGPL-3.0-or-later
+
+module axi_join
+ #(parameter INPUTS=2)
+ (input [INPUTS-1:0] i_tlast, input [INPUTS-1:0] i_tvalid, output [INPUTS-1:0] i_tready,
+ output o_tlast, output o_tvalid, input o_tready);
+
+ wire all_here = &i_tvalid;
+ assign o_tvalid = all_here;
+ assign o_tlast = |i_tlast;
+ assign i_tready = {INPUTS{o_tready & all_here}};
+
+endmodule // axi_join