-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2020 ETH Zurich and University of Bologna. | ||
// Copyright and related rights are licensed under the Solderpad Hardware | ||
// License, Version 0.51 (the "License"); you may not use this file except in | ||
// compliance with the License. You may obtain a copy of the License at | ||
// http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law | ||
// or agreed to in writing, software, hardware and materials distributed under | ||
// this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
// CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations under the License. | ||
|
||
// Authors: | ||
// - Luca Colagrande <[email protected]> | ||
|
||
// Stream join dynamic: Joins a parametrizable number of input streams (i.e. valid-ready | ||
// handshaking with dependency rules as in AXI4) to a single output stream. The subset of streams | ||
// to join can be configured dynamically via `sel_i`. The output handshake happens only after | ||
// there has been a handshake. The data channel flows outside of this module. | ||
module stream_join_dynamic #( | ||
/// Number of input streams | ||
parameter int unsigned N_INP = 32'd0 // Synopsys DC requires a default value for parameters. | ||
) ( | ||
/// Input streams valid handshakes | ||
input logic [N_INP-1:0] inp_valid_i, | ||
/// Input streams ready handshakes | ||
output logic [N_INP-1:0] inp_ready_o, | ||
/// Selection mask for the output handshake | ||
input logic [N_INP-1:0] sel_i, | ||
/// Output stream valid handshake | ||
output logic oup_valid_o, | ||
/// Output stream ready handshake | ||
input logic oup_ready_i | ||
); | ||
|
||
// Corner case when `sel_i` is all 0s should not generate valid | ||
assign oup_valid_o = &(inp_valid_i | ~sel_i) && |sel_i; | ||
for (genvar i = 0; i < N_INP; i++) begin : gen_inp_ready | ||
assign inp_ready_o[i] = oup_valid_o & oup_ready_i; | ||
end | ||
|
||
// pragma translate_off | ||
`ifndef VERILATOR | ||
initial begin: p_assertions | ||
assert (N_INP >= 1) else $fatal(1, "N_INP must be at least 1!"); | ||
end | ||
`endif | ||
// pragma translate_on | ||
endmodule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters