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-29 06:55:41 +00:00
|
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// 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-29 06:55:41 +00:00
|
|
|
// Free Software Foundation, which can be found in the top level directory of
|
|
|
|
// the repository (LICENSE_GPL2), and at: <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
2017-05-29 06:55:41 +00:00
|
|
|
// 2. An ADI specific BSD license as noted in the top level directory, or on-line at:
|
|
|
|
// 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_dest_mm_axi (
|
2016-10-01 15:13:42 +00:00
|
|
|
input m_axi_aclk,
|
|
|
|
input m_axi_aresetn,
|
|
|
|
|
|
|
|
input req_valid,
|
|
|
|
output 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,
|
|
|
|
input [BYTES_PER_BEAT_WIDTH-1:0] req_last_beat_bytes,
|
|
|
|
|
|
|
|
input enable,
|
|
|
|
output enabled,
|
|
|
|
input pause,
|
|
|
|
input sync_id,
|
|
|
|
output sync_id_ret,
|
|
|
|
|
|
|
|
output response_valid,
|
|
|
|
input response_ready,
|
|
|
|
output [1:0] response_resp,
|
|
|
|
output response_resp_eot,
|
|
|
|
|
|
|
|
input [ID_WIDTH-1:0] request_id,
|
|
|
|
output [ID_WIDTH-1:0] response_id,
|
|
|
|
|
|
|
|
output [ID_WIDTH-1:0] data_id,
|
|
|
|
output [ID_WIDTH-1:0] address_id,
|
|
|
|
input data_eot,
|
|
|
|
input address_eot,
|
|
|
|
input response_eot,
|
|
|
|
|
|
|
|
input fifo_valid,
|
|
|
|
output fifo_ready,
|
|
|
|
input [DMA_DATA_WIDTH-1:0] fifo_data,
|
|
|
|
|
|
|
|
// Write address
|
|
|
|
input m_axi_awready,
|
|
|
|
output m_axi_awvalid,
|
2017-04-06 07:30:22 +00:00
|
|
|
output [DMA_ADDR_WIDTH-1:0] m_axi_awaddr,
|
2017-03-30 14:33:46 +00:00
|
|
|
output [AXI_LENGTH_WIDTH-1:0] m_axi_awlen,
|
2016-10-01 15:13:42 +00:00
|
|
|
output [ 2:0] m_axi_awsize,
|
|
|
|
output [ 1:0] m_axi_awburst,
|
|
|
|
output [ 2:0] m_axi_awprot,
|
|
|
|
output [ 3:0] m_axi_awcache,
|
|
|
|
|
|
|
|
// Write data
|
|
|
|
output [DMA_DATA_WIDTH-1:0] m_axi_wdata,
|
|
|
|
output [(DMA_DATA_WIDTH/8)-1:0] m_axi_wstrb,
|
|
|
|
input m_axi_wready,
|
|
|
|
output m_axi_wvalid,
|
|
|
|
output m_axi_wlast,
|
|
|
|
|
|
|
|
// Write response
|
|
|
|
input m_axi_bvalid,
|
|
|
|
input [ 1:0] m_axi_bresp,
|
|
|
|
output m_axi_bready
|
2014-03-06 16:16:02 +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 BYTES_PER_BEAT_WIDTH = $clog2(DMA_DATA_WIDTH/8);
|
|
|
|
parameter BEATS_PER_BURST_WIDTH = 4;
|
2017-03-30 14:33:46 +00:00
|
|
|
parameter AXI_LENGTH_WIDTH = 8;
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [(DMA_DATA_WIDTH/8)-1:0] wstrb;
|
2014-03-06 16:16:02 +00:00
|
|
|
|
|
|
|
wire address_req_valid;
|
|
|
|
wire address_req_ready;
|
|
|
|
wire data_req_valid;
|
|
|
|
wire data_req_ready;
|
|
|
|
|
|
|
|
wire address_enabled;
|
|
|
|
wire data_enabled;
|
|
|
|
assign sync_id_ret = sync_id;
|
|
|
|
|
2014-03-13 12:20:10 +00:00
|
|
|
wire _fifo_ready;
|
|
|
|
assign fifo_ready = _fifo_ready | ~enabled;
|
|
|
|
|
2014-03-06 16:16:02 +00:00
|
|
|
splitter #(
|
2016-10-01 15:13:42 +00:00
|
|
|
.NUM_M(2)
|
2014-03-06 16:16:02 +00:00
|
|
|
) i_req_splitter (
|
2016-10-01 15:13:42 +00:00
|
|
|
.clk(m_axi_aclk),
|
|
|
|
.resetn(m_axi_aresetn),
|
|
|
|
.s_valid(req_valid),
|
|
|
|
.s_ready(req_ready),
|
|
|
|
.m_valid({
|
|
|
|
address_req_valid,
|
|
|
|
data_req_valid
|
|
|
|
}),
|
|
|
|
.m_ready({
|
|
|
|
address_req_ready,
|
|
|
|
data_req_ready
|
|
|
|
})
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
dmac_address_generator #(
|
2016-10-01 15:13:42 +00:00
|
|
|
.ID_WIDTH(ID_WIDTH),
|
|
|
|
.BEATS_PER_BURST_WIDTH(BEATS_PER_BURST_WIDTH),
|
|
|
|
.BYTES_PER_BEAT_WIDTH(BYTES_PER_BEAT_WIDTH),
|
2017-03-30 14:33:46 +00:00
|
|
|
.DMA_DATA_WIDTH(DMA_DATA_WIDTH),
|
2017-04-06 07:30:22 +00:00
|
|
|
.LENGTH_WIDTH(AXI_LENGTH_WIDTH),
|
|
|
|
.DMA_ADDR_WIDTH(DMA_ADDR_WIDTH)
|
2014-03-06 16:16:02 +00:00
|
|
|
) i_addr_gen (
|
2016-10-01 15:13:42 +00:00
|
|
|
.clk(m_axi_aclk),
|
|
|
|
.resetn(m_axi_aresetn),
|
|
|
|
|
|
|
|
.enable(enable),
|
|
|
|
.enabled(address_enabled),
|
|
|
|
.pause(pause),
|
|
|
|
|
|
|
|
.id(address_id),
|
|
|
|
.request_id(request_id),
|
|
|
|
.sync_id(sync_id),
|
|
|
|
|
|
|
|
.req_valid(address_req_valid),
|
|
|
|
.req_ready(address_req_ready),
|
|
|
|
.req_address(req_address),
|
|
|
|
.req_last_burst_length(req_last_burst_length),
|
|
|
|
|
|
|
|
.eot(address_eot),
|
|
|
|
|
|
|
|
.addr_ready(m_axi_awready),
|
|
|
|
.addr_valid(m_axi_awvalid),
|
|
|
|
.addr(m_axi_awaddr),
|
|
|
|
.len(m_axi_awlen),
|
|
|
|
.size(m_axi_awsize),
|
|
|
|
.burst(m_axi_awburst),
|
|
|
|
.prot(m_axi_awprot),
|
|
|
|
.cache(m_axi_awcache)
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
dmac_data_mover # (
|
2016-10-01 15:13:42 +00:00
|
|
|
.ID_WIDTH(ID_WIDTH),
|
|
|
|
.DATA_WIDTH(DMA_DATA_WIDTH),
|
|
|
|
.BEATS_PER_BURST_WIDTH(BEATS_PER_BURST_WIDTH)
|
2014-03-06 16:16:02 +00:00
|
|
|
) i_data_mover (
|
2016-10-01 15:13:42 +00:00
|
|
|
.clk(m_axi_aclk),
|
|
|
|
.resetn(m_axi_aresetn),
|
|
|
|
|
|
|
|
.enable(address_enabled),
|
|
|
|
.enabled(data_enabled),
|
|
|
|
|
|
|
|
.xfer_req(),
|
|
|
|
|
|
|
|
.request_id(address_id),
|
|
|
|
.response_id(data_id),
|
|
|
|
.sync_id(sync_id),
|
|
|
|
.eot(data_eot),
|
|
|
|
|
|
|
|
.req_valid(data_req_valid),
|
|
|
|
.req_ready(data_req_ready),
|
|
|
|
.req_last_burst_length(req_last_burst_length),
|
|
|
|
|
|
|
|
.s_axi_valid(fifo_valid),
|
|
|
|
.s_axi_ready(_fifo_ready),
|
|
|
|
.s_axi_data(fifo_data),
|
|
|
|
.m_axi_valid(m_axi_wvalid),
|
|
|
|
.m_axi_ready(m_axi_wready),
|
|
|
|
.m_axi_data(m_axi_wdata),
|
|
|
|
.m_axi_last(m_axi_wlast)
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
always @(*)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (data_eot & m_axi_wlast) begin
|
|
|
|
wstrb <= (1 << (req_last_beat_bytes + 1)) - 1;
|
|
|
|
end else begin
|
|
|
|
wstrb <= {(DMA_DATA_WIDTH/8){1'b1}};
|
|
|
|
end
|
2014-03-06 16:16:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
assign m_axi_wstrb = wstrb;
|
|
|
|
|
|
|
|
dmac_response_handler #(
|
2016-10-01 15:13:42 +00:00
|
|
|
.ID_WIDTH(ID_WIDTH)
|
2014-03-06 16:16:02 +00:00
|
|
|
) i_response_handler (
|
2016-10-01 15:13:42 +00:00
|
|
|
.clk(m_axi_aclk),
|
|
|
|
.resetn(m_axi_aresetn),
|
|
|
|
.bvalid(m_axi_bvalid),
|
|
|
|
.bready(m_axi_bready),
|
|
|
|
.bresp(m_axi_bresp),
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
.enable(data_enabled),
|
|
|
|
.enabled(enabled),
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
.id(response_id),
|
|
|
|
.request_id(data_id),
|
|
|
|
.sync_id(sync_id),
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
.eot(response_eot),
|
2014-03-06 16:16:02 +00:00
|
|
|
|
2016-10-01 15:13:42 +00:00
|
|
|
.resp_valid(response_valid),
|
|
|
|
.resp_ready(response_ready),
|
|
|
|
.resp_resp(response_resp),
|
|
|
|
.resp_eot(response_resp_eot)
|
2014-03-06 16:16:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
endmodule
|