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.
|
|
|
|
//
|
|
|
|
// Each core or library found in this collection may have its own licensing terms.
|
|
|
|
// The user should keep this in in mind while exploring these cores.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms,
|
|
|
|
// with or without modification of this file, are permitted under the terms of either
|
|
|
|
// (at the option of the user):
|
|
|
|
//
|
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
|
|
|
// Free Software Foundation, which can be found in the top level directory, or at:
|
|
|
|
// https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
|
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
|
|
|
// 2. An ADI specific BSD license as noted in the top level directory, or on-line at:
|
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/dev/LICENSE
|
2014-03-06 16:16:02 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
module dmac_address_generator (
|
2016-10-01 15:13:42 +00:00
|
|
|
input clk,
|
|
|
|
input resetn,
|
|
|
|
|
|
|
|
input req_valid,
|
|
|
|
output reg req_ready,
|
2017-04-06 07:30:22 +00:00
|
|
|
input [DMA_ADDR_WIDTH-1:BYTES_PER_BEAT_WIDTH] req_address,
|
2016-10-01 15:13:42 +00:00
|
|
|
input [BEATS_PER_BURST_WIDTH-1:0] req_last_burst_length,
|
|
|
|
|
|
|
|
output reg [ID_WIDTH-1:0] id,
|
|
|
|
input [ID_WIDTH-1:0] request_id,
|
|
|
|
input sync_id,
|
|
|
|
|
|
|
|
input eot,
|
|
|
|
|
|
|
|
input enable,
|
|
|
|
input pause,
|
|
|
|
output reg enabled,
|
|
|
|
|
|
|
|
input addr_ready,
|
|
|
|
output reg addr_valid,
|
2017-04-06 07:30:22 +00:00
|
|
|
output [DMA_ADDR_WIDTH-1:0] addr,
|
2017-03-30 14:33:46 +00:00
|
|
|
output [LENGTH_WIDTH-1:0] len,
|
2016-10-01 15:13:42 +00:00
|
|
|
output [ 2:0] size,
|
|
|
|
output [ 1:0] burst,
|
|
|
|
output [ 2:0] prot,
|
|
|
|
output [ 3:0] cache
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
2014-03-13 12:20:10 +00:00
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
parameter ID_WIDTH = 3;
|
|
|
|
parameter DMA_DATA_WIDTH = 64;
|
2017-04-06 07:30:22 +00:00
|
|
|
parameter DMA_ADDR_WIDTH = 32;
|
2015-08-19 11:11:47 +00:00
|
|
|
parameter BEATS_PER_BURST_WIDTH = 4;
|
|
|
|
parameter BYTES_PER_BEAT_WIDTH = $clog2(DMA_DATA_WIDTH/8);
|
2017-03-30 14:33:46 +00:00
|
|
|
parameter LENGTH_WIDTH = 8;
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
localparam MAX_BEATS_PER_BURST = 2**(BEATS_PER_BURST_WIDTH);
|
2014-03-06 16:16:02 +00:00
|
|
|
|
|
|
|
`include "inc_id.h"
|
|
|
|
|
|
|
|
assign burst = 2'b01;
|
|
|
|
assign prot = 3'b000;
|
|
|
|
assign cache = 4'b0011;
|
2014-04-04 12:55:27 +00:00
|
|
|
assign len = length;
|
2015-08-19 11:11:47 +00:00
|
|
|
assign size = $clog2(DMA_DATA_WIDTH/8);
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2017-03-30 14:33:46 +00:00
|
|
|
reg [LENGTH_WIDTH-1:0] length = 'h0;
|
2017-04-06 07:30:22 +00:00
|
|
|
reg [DMA_ADDR_WIDTH-BYTES_PER_BEAT_WIDTH-1:0] address = 'h00;
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [BEATS_PER_BURST_WIDTH-1:0] last_burst_len = 'h00;
|
|
|
|
assign addr = {address, {BYTES_PER_BEAT_WIDTH{1'b0}}};
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2014-08-26 13:24:34 +00:00
|
|
|
reg addr_valid_d1;
|
2014-09-03 09:10:34 +00:00
|
|
|
reg last = 1'b0;
|
2014-08-26 13:24:34 +00:00
|
|
|
|
2014-03-06 16:16:02 +00:00
|
|
|
// If we already asserted addr_valid we have to wait until it is accepted before
|
|
|
|
// we can disable the address generator.
|
|
|
|
always @(posedge clk) begin
|
2014-09-03 09:10:34 +00:00
|
|
|
if (resetn == 1'b0) begin
|
|
|
|
enabled <= 1'b0;
|
|
|
|
end else begin
|
|
|
|
if (enable)
|
|
|
|
enabled <= 1'b1;
|
|
|
|
else if (~addr_valid)
|
|
|
|
enabled <= 1'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge clk) begin
|
|
|
|
if (addr_valid == 1'b0) begin
|
|
|
|
if (eot == 1'b1)
|
2015-08-18 12:13:55 +00:00
|
|
|
length <= last_burst_len;
|
2014-09-03 09:10:34 +00:00
|
|
|
else
|
|
|
|
length <= MAX_BEATS_PER_BURST - 1;
|
|
|
|
end
|
2014-03-06 16:16:02 +00:00
|
|
|
end
|
|
|
|
|
2014-04-04 12:55:27 +00:00
|
|
|
always @(posedge clk) begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (resetn == 1'b0) begin
|
|
|
|
last <= 1'b0;
|
|
|
|
end else if (addr_valid == 1'b0) begin
|
|
|
|
last <= eot;
|
|
|
|
end
|
2014-04-04 12:55:27 +00:00
|
|
|
end
|
|
|
|
|
2014-03-06 16:16:02 +00:00
|
|
|
always @(posedge clk) begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (resetn == 1'b0) begin
|
|
|
|
address <= 'h00;
|
|
|
|
last_burst_len <= 'h00;
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
addr_valid <= 1'b0;
|
|
|
|
end else begin
|
|
|
|
if (~enabled) begin
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
end else if (req_ready) begin
|
|
|
|
if (req_valid && enable) begin
|
|
|
|
address <= req_address;
|
|
|
|
req_ready <= 1'b0;
|
|
|
|
last_burst_len <= req_last_burst_length;
|
|
|
|
end
|
|
|
|
end else begin
|
|
|
|
if (addr_valid && addr_ready) begin
|
|
|
|
address <= address + MAX_BEATS_PER_BURST;
|
|
|
|
addr_valid <= 1'b0;
|
|
|
|
if (last)
|
|
|
|
req_ready <= 1'b1;
|
|
|
|
end else if (id != request_id && enable) begin
|
|
|
|
addr_valid <= 1'b1;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-03-06 16:16:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge clk) begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (resetn == 1'b0) begin
|
|
|
|
id <='h0;
|
2014-08-26 13:24:34 +00:00
|
|
|
addr_valid_d1 <= 1'b0;
|
2016-10-01 15:13:42 +00:00
|
|
|
end else begin
|
2014-08-26 13:24:34 +00:00
|
|
|
addr_valid_d1 <= addr_valid;
|
2014-09-03 09:10:34 +00:00
|
|
|
if ((addr_valid && ~addr_valid_d1) ||
|
2016-10-01 15:13:42 +00:00
|
|
|
(sync_id && id != request_id))
|
|
|
|
id <= inc_id(id);
|
2014-08-26 13:24:34 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
end
|
2014-03-06 16:16:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|