2014-03-06 16:16:02 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2017-05-17 08:44:52 +00:00
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// In this HDL repository, there are many different and unique modules, consisting
|
|
|
|
// of various HDL (Verilog or VHDL) components. The individual modules are
|
|
|
|
// developed independently, and may be accompanied by separate and unique license
|
|
|
|
// terms.
|
|
|
|
//
|
|
|
|
// The user should read each of these license terms, and understand the
|
|
|
|
// freedoms and responsabilities that he or she has by using this source/core.
|
|
|
|
//
|
|
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
2017-05-29 06:55:41 +00:00
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE.
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
2017-05-29 06:55:41 +00:00
|
|
|
// Redistribution and use of source or resulting binaries, with or without modification
|
|
|
|
// of this file, are permitted under one of the following two license terms:
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
2017-05-31 15:15:24 +00:00
|
|
|
// Free Software Foundation, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_GPL2), and also online at:
|
|
|
|
// <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// 2. An ADI specific BSD license, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_ADIBSD), and also on-line at:
|
2017-05-29 06:55:41 +00:00
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/master/LICENSE_ADIBSD
|
|
|
|
// This will allow to generate bit files and not release the source code,
|
|
|
|
// as long as it attaches to an ADI device.
|
2014-03-06 16:16:02 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
module dmac_request_generator (
|
2016-10-01 15:13:42 +00:00
|
|
|
input req_aclk,
|
|
|
|
input req_aresetn,
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
output [ID_WIDTH-1:0] request_id,
|
|
|
|
input [ID_WIDTH-1:0] response_id,
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
input req_valid,
|
|
|
|
output reg req_ready,
|
|
|
|
input [BURSTS_PER_TRANSFER_WIDTH-1:0] req_burst_count,
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
input enable,
|
|
|
|
input pause,
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
output eot
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
parameter ID_WIDTH = 3;
|
|
|
|
parameter BURSTS_PER_TRANSFER_WIDTH = 17;
|
2014-03-06 16:16:02 +00:00
|
|
|
|
|
|
|
`include "inc_id.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we only need to count the number of bursts, which means we can ignore
|
|
|
|
* the lower bits of the byte count. The last last burst may not contain the
|
|
|
|
* maximum number of bytes, but the address_generator and data_mover will take
|
|
|
|
* care that only the requested ammount of bytes is transfered.
|
|
|
|
*/
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [BURSTS_PER_TRANSFER_WIDTH-1:0] burst_count = 'h00;
|
|
|
|
reg [ID_WIDTH-1:0] id;
|
|
|
|
wire [ID_WIDTH-1:0] id_next = inc_id(id);
|
2014-03-06 16:16:02 +00:00
|
|
|
|
|
|
|
assign eot = burst_count == 'h00;
|
|
|
|
assign request_id = id;
|
|
|
|
|
|
|
|
always @(posedge req_aclk)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (req_aresetn == 1'b0) begin
|
|
|
|
burst_count <= 'h00;
|
|
|
|
id <= 'h0;
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
end else if (enable == 1'b0) begin
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
end else begin
|
|
|
|
if (req_ready) begin
|
|
|
|
if (req_valid && enable) begin
|
|
|
|
burst_count <= req_burst_count;
|
|
|
|
req_ready <= 1'b0;
|
|
|
|
end
|
|
|
|
end else if (response_id != id_next && ~pause) begin
|
|
|
|
if (eot)
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
burst_count <= burst_count - 1'b1;
|
|
|
|
id <= id_next;
|
|
|
|
end
|
|
|
|
end
|
2014-03-06 16:16:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|