233 lines
7.0 KiB
Verilog
233 lines
7.0 KiB
Verilog
// ***************************************************************************
|
|
// ***************************************************************************
|
|
// Copyright 2013(c) Analog Devices, Inc.
|
|
// Author: Lars-Peter Clausen <lars@metafoo.de>
|
|
//
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without modification,
|
|
// are permitted provided that the following conditions are met:
|
|
// - Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
// - Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in
|
|
// the documentation and/or other materials provided with the
|
|
// distribution.
|
|
// - Neither the name of Analog Devices, Inc. nor the names of its
|
|
// contributors may be used to endorse or promote products derived
|
|
// from this software without specific prior written permission.
|
|
// - The use of this software may or may not infringe the patent rights
|
|
// of one or more patent holders. This license does not release you
|
|
// from the requirement that you obtain separate licenses from these
|
|
// patent holders to use this software.
|
|
// - Use of the software either in source or binary form, must be run
|
|
// on or directly connected to an Analog Devices Inc. component.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
// INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A
|
|
// PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
//
|
|
// IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY
|
|
// RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
// ***************************************************************************
|
|
// ***************************************************************************
|
|
|
|
module dmac_dest_mm_axi (
|
|
input m_axi_aclk,
|
|
input m_axi_aresetn,
|
|
|
|
input req_valid,
|
|
output req_ready,
|
|
input [31:BYTES_PER_BEAT_WIDTH] req_address,
|
|
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,
|
|
output [31:0] m_axi_awaddr,
|
|
output [ 7:0] m_axi_awlen,
|
|
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
|
|
);
|
|
|
|
parameter ID_WIDTH = 3;
|
|
parameter DMA_DATA_WIDTH = 64;
|
|
parameter BYTES_PER_BEAT_WIDTH = $clog2(DMA_DATA_WIDTH/8);
|
|
parameter BEATS_PER_BURST_WIDTH = 4;
|
|
|
|
reg [(DMA_DATA_WIDTH/8)-1:0] wstrb;
|
|
|
|
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;
|
|
|
|
wire _fifo_ready;
|
|
assign fifo_ready = _fifo_ready | ~enabled;
|
|
|
|
splitter #(
|
|
.NUM_M(2)
|
|
) i_req_splitter (
|
|
.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
|
|
})
|
|
);
|
|
|
|
dmac_address_generator #(
|
|
.ID_WIDTH(ID_WIDTH),
|
|
.BEATS_PER_BURST_WIDTH(BEATS_PER_BURST_WIDTH),
|
|
.BYTES_PER_BEAT_WIDTH(BYTES_PER_BEAT_WIDTH),
|
|
.DMA_DATA_WIDTH(DMA_DATA_WIDTH)
|
|
) i_addr_gen (
|
|
.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)
|
|
);
|
|
|
|
dmac_data_mover # (
|
|
.ID_WIDTH(ID_WIDTH),
|
|
.DATA_WIDTH(DMA_DATA_WIDTH),
|
|
.BEATS_PER_BURST_WIDTH(BEATS_PER_BURST_WIDTH)
|
|
) i_data_mover (
|
|
.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)
|
|
);
|
|
|
|
always @(*)
|
|
begin
|
|
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
|
|
end
|
|
|
|
assign m_axi_wstrb = wstrb;
|
|
|
|
dmac_response_handler #(
|
|
.ID_WIDTH(ID_WIDTH)
|
|
) i_response_handler (
|
|
.clk(m_axi_aclk),
|
|
.resetn(m_axi_aresetn),
|
|
.bvalid(m_axi_bvalid),
|
|
.bready(m_axi_bready),
|
|
.bresp(m_axi_bresp),
|
|
|
|
.enable(data_enabled),
|
|
.enabled(enabled),
|
|
|
|
.id(response_id),
|
|
.request_id(data_id),
|
|
.sync_id(sync_id),
|
|
|
|
.eot(response_eot),
|
|
|
|
.resp_valid(response_valid),
|
|
.resp_ready(response_ready),
|
|
.resp_resp(response_resp),
|
|
.resp_eot(response_resp_eot)
|
|
);
|
|
|
|
endmodule
|