526 lines
18 KiB
Systemverilog
Executable File
526 lines
18 KiB
Systemverilog
Executable File
// (C) 2001-2018 Intel Corporation. All rights reserved.
|
|
// Your use of Intel Corporation's design tools, logic functions and other
|
|
// software and tools, and its AMPP partner logic functions, and any output
|
|
// files from any of the foregoing (including device programming or simulation
|
|
// files), and any associated documentation or information are expressly subject
|
|
// to the terms and conditions of the Intel Program License Subscription
|
|
// Agreement, Intel FPGA IP License Agreement, or other applicable
|
|
// license agreement, including, without limitation, that your use is for the
|
|
// sole purpose of programming logic devices manufactured by Intel and sold by
|
|
// Intel or its authorized distributors. Please refer to the applicable
|
|
// agreement for further details.
|
|
|
|
|
|
// (C) 2001-2014 Altera Corporation. All rights reserved.
|
|
// Your use of Altera Corporation's design tools, logic functions and other
|
|
// software and tools, and its AMPP partner logic functions, and any output
|
|
// files any of the foregoing (including device programming or simulation
|
|
// files), and any associated documentation or information are expressly subject
|
|
// to the terms and conditions of the Altera Program License Subscription
|
|
// Agreement, Altera MegaCore Function License Agreement, or other applicable
|
|
// license agreement, including, without limitation, that your use is for the
|
|
// sole purpose of programming logic devices manufactured by Altera and sold by
|
|
// Altera or its authorized distributors. Please refer to the applicable
|
|
// agreement for further details.
|
|
|
|
|
|
// $Id: //acds/rel/18.1std/ip/merlin/altera_merlin_multiplexer/altera_merlin_multiplexer.sv.terp#1 $
|
|
// $Revision: #1 $
|
|
// $Date: 2018/07/18 $
|
|
// $Author: psgswbuild $
|
|
|
|
// ------------------------------------------
|
|
// Merlin Multiplexer
|
|
// ------------------------------------------
|
|
|
|
`timescale 1 ns / 1 ns
|
|
|
|
|
|
// ------------------------------------------
|
|
// Generation parameters:
|
|
// output_name: ECE385_mm_interconnect_1_rsp_mux
|
|
// NUM_INPUTS: 11
|
|
// ARBITRATION_SHARES: 1 1 1 1 1 1 1 1 1 1 1
|
|
// ARBITRATION_SCHEME "no-arb"
|
|
// PIPELINE_ARB: 0
|
|
// PKT_TRANS_LOCK: 57 (arbitration locking enabled)
|
|
// ST_DATA_W: 95
|
|
// ST_CHANNEL_W: 11
|
|
// ------------------------------------------
|
|
|
|
module ECE385_mm_interconnect_1_rsp_mux
|
|
(
|
|
// ----------------------
|
|
// Sinks
|
|
// ----------------------
|
|
input sink0_valid,
|
|
input [95-1 : 0] sink0_data,
|
|
input [11-1: 0] sink0_channel,
|
|
input sink0_startofpacket,
|
|
input sink0_endofpacket,
|
|
output sink0_ready,
|
|
|
|
input sink1_valid,
|
|
input [95-1 : 0] sink1_data,
|
|
input [11-1: 0] sink1_channel,
|
|
input sink1_startofpacket,
|
|
input sink1_endofpacket,
|
|
output sink1_ready,
|
|
|
|
input sink2_valid,
|
|
input [95-1 : 0] sink2_data,
|
|
input [11-1: 0] sink2_channel,
|
|
input sink2_startofpacket,
|
|
input sink2_endofpacket,
|
|
output sink2_ready,
|
|
|
|
input sink3_valid,
|
|
input [95-1 : 0] sink3_data,
|
|
input [11-1: 0] sink3_channel,
|
|
input sink3_startofpacket,
|
|
input sink3_endofpacket,
|
|
output sink3_ready,
|
|
|
|
input sink4_valid,
|
|
input [95-1 : 0] sink4_data,
|
|
input [11-1: 0] sink4_channel,
|
|
input sink4_startofpacket,
|
|
input sink4_endofpacket,
|
|
output sink4_ready,
|
|
|
|
input sink5_valid,
|
|
input [95-1 : 0] sink5_data,
|
|
input [11-1: 0] sink5_channel,
|
|
input sink5_startofpacket,
|
|
input sink5_endofpacket,
|
|
output sink5_ready,
|
|
|
|
input sink6_valid,
|
|
input [95-1 : 0] sink6_data,
|
|
input [11-1: 0] sink6_channel,
|
|
input sink6_startofpacket,
|
|
input sink6_endofpacket,
|
|
output sink6_ready,
|
|
|
|
input sink7_valid,
|
|
input [95-1 : 0] sink7_data,
|
|
input [11-1: 0] sink7_channel,
|
|
input sink7_startofpacket,
|
|
input sink7_endofpacket,
|
|
output sink7_ready,
|
|
|
|
input sink8_valid,
|
|
input [95-1 : 0] sink8_data,
|
|
input [11-1: 0] sink8_channel,
|
|
input sink8_startofpacket,
|
|
input sink8_endofpacket,
|
|
output sink8_ready,
|
|
|
|
input sink9_valid,
|
|
input [95-1 : 0] sink9_data,
|
|
input [11-1: 0] sink9_channel,
|
|
input sink9_startofpacket,
|
|
input sink9_endofpacket,
|
|
output sink9_ready,
|
|
|
|
input sink10_valid,
|
|
input [95-1 : 0] sink10_data,
|
|
input [11-1: 0] sink10_channel,
|
|
input sink10_startofpacket,
|
|
input sink10_endofpacket,
|
|
output sink10_ready,
|
|
|
|
|
|
// ----------------------
|
|
// Source
|
|
// ----------------------
|
|
output src_valid,
|
|
output [95-1 : 0] src_data,
|
|
output [11-1 : 0] src_channel,
|
|
output src_startofpacket,
|
|
output src_endofpacket,
|
|
input src_ready,
|
|
|
|
// ----------------------
|
|
// Clock & Reset
|
|
// ----------------------
|
|
input clk,
|
|
input reset
|
|
);
|
|
localparam PAYLOAD_W = 95 + 11 + 2;
|
|
localparam NUM_INPUTS = 11;
|
|
localparam SHARE_COUNTER_W = 1;
|
|
localparam PIPELINE_ARB = 0;
|
|
localparam ST_DATA_W = 95;
|
|
localparam ST_CHANNEL_W = 11;
|
|
localparam PKT_TRANS_LOCK = 57;
|
|
|
|
// ------------------------------------------
|
|
// Signals
|
|
// ------------------------------------------
|
|
wire [NUM_INPUTS - 1 : 0] request;
|
|
wire [NUM_INPUTS - 1 : 0] valid;
|
|
wire [NUM_INPUTS - 1 : 0] grant;
|
|
wire [NUM_INPUTS - 1 : 0] next_grant;
|
|
reg [NUM_INPUTS - 1 : 0] saved_grant;
|
|
reg [PAYLOAD_W - 1 : 0] src_payload;
|
|
wire last_cycle;
|
|
reg packet_in_progress;
|
|
reg update_grant;
|
|
|
|
wire [PAYLOAD_W - 1 : 0] sink0_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink1_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink2_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink3_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink4_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink5_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink6_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink7_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink8_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink9_payload;
|
|
wire [PAYLOAD_W - 1 : 0] sink10_payload;
|
|
|
|
assign valid[0] = sink0_valid;
|
|
assign valid[1] = sink1_valid;
|
|
assign valid[2] = sink2_valid;
|
|
assign valid[3] = sink3_valid;
|
|
assign valid[4] = sink4_valid;
|
|
assign valid[5] = sink5_valid;
|
|
assign valid[6] = sink6_valid;
|
|
assign valid[7] = sink7_valid;
|
|
assign valid[8] = sink8_valid;
|
|
assign valid[9] = sink9_valid;
|
|
assign valid[10] = sink10_valid;
|
|
|
|
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
// Grant Logic & Updates
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
reg [NUM_INPUTS - 1 : 0] lock;
|
|
always @* begin
|
|
lock[0] = sink0_data[57];
|
|
lock[1] = sink1_data[57];
|
|
lock[2] = sink2_data[57];
|
|
lock[3] = sink3_data[57];
|
|
lock[4] = sink4_data[57];
|
|
lock[5] = sink5_data[57];
|
|
lock[6] = sink6_data[57];
|
|
lock[7] = sink7_data[57];
|
|
lock[8] = sink8_data[57];
|
|
lock[9] = sink9_data[57];
|
|
lock[10] = sink10_data[57];
|
|
end
|
|
|
|
assign last_cycle = src_valid & src_ready & src_endofpacket & ~(|(lock & grant));
|
|
|
|
// ------------------------------------------
|
|
// We're working on a packet at any time valid is high, except
|
|
// when this is the endofpacket.
|
|
// ------------------------------------------
|
|
always @(posedge clk or posedge reset) begin
|
|
if (reset) begin
|
|
packet_in_progress <= 1'b0;
|
|
end
|
|
else begin
|
|
if (last_cycle)
|
|
packet_in_progress <= 1'b0;
|
|
else if (src_valid)
|
|
packet_in_progress <= 1'b1;
|
|
end
|
|
end
|
|
|
|
|
|
// ------------------------------------------
|
|
// Shares
|
|
//
|
|
// Special case: all-equal shares _should_ be optimized into assigning a
|
|
// constant to next_grant_share.
|
|
// Special case: all-1's shares _should_ result in the share counter
|
|
// being optimized away.
|
|
// ------------------------------------------
|
|
// Input | arb shares | counter load value
|
|
// 0 | 1 | 0
|
|
// 1 | 1 | 0
|
|
// 2 | 1 | 0
|
|
// 3 | 1 | 0
|
|
// 4 | 1 | 0
|
|
// 5 | 1 | 0
|
|
// 6 | 1 | 0
|
|
// 7 | 1 | 0
|
|
// 8 | 1 | 0
|
|
// 9 | 1 | 0
|
|
// 10 | 1 | 0
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_0 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_1 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_2 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_3 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_4 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_5 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_6 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_7 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_8 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_9 = 1'd0;
|
|
wire [SHARE_COUNTER_W - 1 : 0] share_10 = 1'd0;
|
|
|
|
// ------------------------------------------
|
|
// Choose the share value corresponding to the grant.
|
|
// ------------------------------------------
|
|
reg [SHARE_COUNTER_W - 1 : 0] next_grant_share;
|
|
always @* begin
|
|
next_grant_share =
|
|
share_0 & { SHARE_COUNTER_W {next_grant[0]} } |
|
|
share_1 & { SHARE_COUNTER_W {next_grant[1]} } |
|
|
share_2 & { SHARE_COUNTER_W {next_grant[2]} } |
|
|
share_3 & { SHARE_COUNTER_W {next_grant[3]} } |
|
|
share_4 & { SHARE_COUNTER_W {next_grant[4]} } |
|
|
share_5 & { SHARE_COUNTER_W {next_grant[5]} } |
|
|
share_6 & { SHARE_COUNTER_W {next_grant[6]} } |
|
|
share_7 & { SHARE_COUNTER_W {next_grant[7]} } |
|
|
share_8 & { SHARE_COUNTER_W {next_grant[8]} } |
|
|
share_9 & { SHARE_COUNTER_W {next_grant[9]} } |
|
|
share_10 & { SHARE_COUNTER_W {next_grant[10]} };
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// Flag to indicate first packet of an arb sequence.
|
|
// ------------------------------------------
|
|
wire grant_changed = ~packet_in_progress && ~(|(saved_grant & valid));
|
|
reg first_packet_r;
|
|
wire first_packet = grant_changed | first_packet_r;
|
|
always @(posedge clk or posedge reset) begin
|
|
if (reset) begin
|
|
first_packet_r <= 1'b0;
|
|
end
|
|
else begin
|
|
if (update_grant)
|
|
first_packet_r <= 1'b1;
|
|
else if (last_cycle)
|
|
first_packet_r <= 1'b0;
|
|
else if (grant_changed)
|
|
first_packet_r <= 1'b1;
|
|
end
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// Compute the next share-count value.
|
|
// ------------------------------------------
|
|
reg [SHARE_COUNTER_W - 1 : 0] p1_share_count;
|
|
reg [SHARE_COUNTER_W - 1 : 0] share_count;
|
|
reg share_count_zero_flag;
|
|
|
|
always @* begin
|
|
if (first_packet) begin
|
|
p1_share_count = next_grant_share;
|
|
end
|
|
else begin
|
|
// Update the counter, but don't decrement below 0.
|
|
p1_share_count = share_count_zero_flag ? '0 : share_count - 1'b1;
|
|
end
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// Update the share counter and share-counter=zero flag.
|
|
// ------------------------------------------
|
|
always @(posedge clk or posedge reset) begin
|
|
if (reset) begin
|
|
share_count <= '0;
|
|
share_count_zero_flag <= 1'b1;
|
|
end
|
|
else begin
|
|
if (last_cycle) begin
|
|
share_count <= p1_share_count;
|
|
share_count_zero_flag <= (p1_share_count == '0);
|
|
end
|
|
end
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// For each input, maintain a final_packet signal which goes active for the
|
|
// last packet of a full-share packet sequence. Example: if I have 4
|
|
// shares and I'm continuously requesting, final_packet is active in the
|
|
// 4th packet.
|
|
// ------------------------------------------
|
|
wire final_packet_0 = 1'b1;
|
|
|
|
wire final_packet_1 = 1'b1;
|
|
|
|
wire final_packet_2 = 1'b1;
|
|
|
|
wire final_packet_3 = 1'b1;
|
|
|
|
wire final_packet_4 = 1'b1;
|
|
|
|
wire final_packet_5 = 1'b1;
|
|
|
|
wire final_packet_6 = 1'b1;
|
|
|
|
wire final_packet_7 = 1'b1;
|
|
|
|
wire final_packet_8 = 1'b1;
|
|
|
|
wire final_packet_9 = 1'b1;
|
|
|
|
wire final_packet_10 = 1'b1;
|
|
|
|
|
|
// ------------------------------------------
|
|
// Concatenate all final_packet signals (wire or reg) into a handy vector.
|
|
// ------------------------------------------
|
|
wire [NUM_INPUTS - 1 : 0] final_packet = {
|
|
final_packet_10,
|
|
final_packet_9,
|
|
final_packet_8,
|
|
final_packet_7,
|
|
final_packet_6,
|
|
final_packet_5,
|
|
final_packet_4,
|
|
final_packet_3,
|
|
final_packet_2,
|
|
final_packet_1,
|
|
final_packet_0
|
|
};
|
|
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
wire p1_done = |(final_packet & grant);
|
|
|
|
// ------------------------------------------
|
|
// Flag for the first cycle of packets within an
|
|
// arb sequence
|
|
// ------------------------------------------
|
|
reg first_cycle;
|
|
always @(posedge clk, posedge reset) begin
|
|
if (reset)
|
|
first_cycle <= 0;
|
|
else
|
|
first_cycle <= last_cycle && ~p1_done;
|
|
end
|
|
|
|
|
|
always @* begin
|
|
update_grant = 0;
|
|
|
|
// ------------------------------------------
|
|
// No arbitration pipeline, update grant whenever
|
|
// the current arb winner has consumed all shares,
|
|
// or all requests are low
|
|
// ------------------------------------------
|
|
update_grant = (last_cycle && p1_done) || (first_cycle && ~(|valid));
|
|
update_grant = last_cycle;
|
|
end
|
|
|
|
wire save_grant;
|
|
assign save_grant = 1;
|
|
assign grant = next_grant;
|
|
|
|
always @(posedge clk, posedge reset) begin
|
|
if (reset)
|
|
saved_grant <= '0;
|
|
else if (save_grant)
|
|
saved_grant <= next_grant;
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
// Arbitrator
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
|
|
// ------------------------------------------
|
|
// Create a request vector that stays high during
|
|
// the packet for unpipelined arbitration.
|
|
//
|
|
// The pipelined arbitration scheme does not require
|
|
// request to be held high during the packet.
|
|
// ------------------------------------------
|
|
assign request = valid;
|
|
|
|
wire [NUM_INPUTS - 1 : 0] next_grant_from_arb;
|
|
|
|
altera_merlin_arbitrator
|
|
#(
|
|
.NUM_REQUESTERS(NUM_INPUTS),
|
|
.SCHEME ("no-arb"),
|
|
.PIPELINE (0)
|
|
) arb (
|
|
.clk (clk),
|
|
.reset (reset),
|
|
.request (request),
|
|
.grant (next_grant_from_arb),
|
|
.save_top_priority (src_valid),
|
|
.increment_top_priority (update_grant)
|
|
);
|
|
|
|
assign next_grant = next_grant_from_arb;
|
|
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
// Mux
|
|
//
|
|
// Implemented as a sum of products.
|
|
// ------------------------------------------
|
|
// ------------------------------------------
|
|
|
|
assign sink0_ready = src_ready && grant[0];
|
|
assign sink1_ready = src_ready && grant[1];
|
|
assign sink2_ready = src_ready && grant[2];
|
|
assign sink3_ready = src_ready && grant[3];
|
|
assign sink4_ready = src_ready && grant[4];
|
|
assign sink5_ready = src_ready && grant[5];
|
|
assign sink6_ready = src_ready && grant[6];
|
|
assign sink7_ready = src_ready && grant[7];
|
|
assign sink8_ready = src_ready && grant[8];
|
|
assign sink9_ready = src_ready && grant[9];
|
|
assign sink10_ready = src_ready && grant[10];
|
|
|
|
assign src_valid = |(grant & valid);
|
|
|
|
always @* begin
|
|
src_payload =
|
|
sink0_payload & {PAYLOAD_W {grant[0]} } |
|
|
sink1_payload & {PAYLOAD_W {grant[1]} } |
|
|
sink2_payload & {PAYLOAD_W {grant[2]} } |
|
|
sink3_payload & {PAYLOAD_W {grant[3]} } |
|
|
sink4_payload & {PAYLOAD_W {grant[4]} } |
|
|
sink5_payload & {PAYLOAD_W {grant[5]} } |
|
|
sink6_payload & {PAYLOAD_W {grant[6]} } |
|
|
sink7_payload & {PAYLOAD_W {grant[7]} } |
|
|
sink8_payload & {PAYLOAD_W {grant[8]} } |
|
|
sink9_payload & {PAYLOAD_W {grant[9]} } |
|
|
sink10_payload & {PAYLOAD_W {grant[10]} };
|
|
end
|
|
|
|
// ------------------------------------------
|
|
// Mux Payload Mapping
|
|
// ------------------------------------------
|
|
|
|
assign sink0_payload = {sink0_channel,sink0_data,
|
|
sink0_startofpacket,sink0_endofpacket};
|
|
assign sink1_payload = {sink1_channel,sink1_data,
|
|
sink1_startofpacket,sink1_endofpacket};
|
|
assign sink2_payload = {sink2_channel,sink2_data,
|
|
sink2_startofpacket,sink2_endofpacket};
|
|
assign sink3_payload = {sink3_channel,sink3_data,
|
|
sink3_startofpacket,sink3_endofpacket};
|
|
assign sink4_payload = {sink4_channel,sink4_data,
|
|
sink4_startofpacket,sink4_endofpacket};
|
|
assign sink5_payload = {sink5_channel,sink5_data,
|
|
sink5_startofpacket,sink5_endofpacket};
|
|
assign sink6_payload = {sink6_channel,sink6_data,
|
|
sink6_startofpacket,sink6_endofpacket};
|
|
assign sink7_payload = {sink7_channel,sink7_data,
|
|
sink7_startofpacket,sink7_endofpacket};
|
|
assign sink8_payload = {sink8_channel,sink8_data,
|
|
sink8_startofpacket,sink8_endofpacket};
|
|
assign sink9_payload = {sink9_channel,sink9_data,
|
|
sink9_startofpacket,sink9_endofpacket};
|
|
assign sink10_payload = {sink10_channel,sink10_data,
|
|
sink10_startofpacket,sink10_endofpacket};
|
|
|
|
assign {src_channel,src_data,src_startofpacket,src_endofpacket} = src_payload;
|
|
endmodule
|
|
|
|
|