2015-04-07 19:35:47 +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.
|
2015-04-07 19:35:47 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
2017-07-31 11:11:23 +00:00
|
|
|
module fifo_address_gray_pipelined #(
|
|
|
|
parameter ADDRESS_WIDTH = 4
|
|
|
|
) (
|
2016-10-01 15:13:42 +00:00
|
|
|
input m_axis_aclk,
|
|
|
|
input m_axis_aresetn,
|
|
|
|
input m_axis_ready,
|
|
|
|
output reg m_axis_valid,
|
|
|
|
output [ADDRESS_WIDTH-1:0] m_axis_raddr,
|
|
|
|
output reg [ADDRESS_WIDTH:0] m_axis_level,
|
|
|
|
|
|
|
|
input s_axis_aclk,
|
|
|
|
input s_axis_aresetn,
|
|
|
|
output reg s_axis_ready,
|
|
|
|
input s_axis_valid,
|
|
|
|
output reg s_axis_empty,
|
|
|
|
output [ADDRESS_WIDTH-1:0] s_axis_waddr,
|
|
|
|
output reg [ADDRESS_WIDTH:0] s_axis_room
|
2015-04-07 19:35:47 +00:00
|
|
|
);
|
|
|
|
|
2017-07-31 11:14:09 +00:00
|
|
|
localparam MAX_ROOM = {1'b1,{ADDRESS_WIDTH{1'b0}}};
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [ADDRESS_WIDTH:0] _s_axis_waddr = 'h00;
|
|
|
|
reg [ADDRESS_WIDTH:0] _s_axis_waddr_next;
|
|
|
|
wire [ADDRESS_WIDTH:0] _s_axis_raddr;
|
2015-04-07 19:35:47 +00:00
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [ADDRESS_WIDTH:0] _m_axis_raddr = 'h00;
|
|
|
|
reg [ADDRESS_WIDTH:0] _m_axis_raddr_next;
|
|
|
|
wire [ADDRESS_WIDTH:0] _m_axis_waddr;
|
2015-04-07 19:35:47 +00:00
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
assign s_axis_waddr = _s_axis_waddr[ADDRESS_WIDTH-1:0];
|
|
|
|
assign m_axis_raddr = _m_axis_raddr[ADDRESS_WIDTH-1:0];
|
2015-04-07 19:35:47 +00:00
|
|
|
|
|
|
|
always @(*)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (s_axis_ready && s_axis_valid)
|
2017-07-31 11:14:09 +00:00
|
|
|
_s_axis_waddr_next <= _s_axis_waddr + 1'b1;
|
2016-10-01 15:13:42 +00:00
|
|
|
else
|
|
|
|
_s_axis_waddr_next <= _s_axis_waddr;
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge s_axis_aclk)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (s_axis_aresetn == 1'b0) begin
|
|
|
|
_s_axis_waddr <= 'h00;
|
|
|
|
end else begin
|
|
|
|
_s_axis_waddr <= _s_axis_waddr_next;
|
|
|
|
end
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(*)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (m_axis_ready && m_axis_valid)
|
2017-07-31 11:14:09 +00:00
|
|
|
_m_axis_raddr_next <= _m_axis_raddr + 1'b1;
|
2016-10-01 15:13:42 +00:00
|
|
|
else
|
|
|
|
_m_axis_raddr_next <= _m_axis_raddr;
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge m_axis_aclk)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (m_axis_aresetn == 1'b0) begin
|
|
|
|
_m_axis_raddr <= 'h00;
|
|
|
|
end else begin
|
|
|
|
_m_axis_raddr <= _m_axis_raddr_next;
|
|
|
|
end
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
sync_gray #(
|
2016-10-01 15:13:42 +00:00
|
|
|
.DATA_WIDTH(ADDRESS_WIDTH + 1)
|
2015-04-07 19:35:47 +00:00
|
|
|
) i_waddr_sync (
|
2016-10-01 15:13:42 +00:00
|
|
|
.in_clk(s_axis_aclk),
|
|
|
|
.in_resetn(s_axis_aresetn),
|
|
|
|
.out_clk(m_axis_aclk),
|
|
|
|
.out_resetn(m_axis_aresetn),
|
|
|
|
.in_count(_s_axis_waddr),
|
|
|
|
.out_count(_m_axis_waddr)
|
2015-04-07 19:35:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
sync_gray #(
|
2016-10-01 15:13:42 +00:00
|
|
|
.DATA_WIDTH(ADDRESS_WIDTH + 1)
|
2015-04-07 19:35:47 +00:00
|
|
|
) i_raddr_sync (
|
2016-10-01 15:13:42 +00:00
|
|
|
.in_clk(m_axis_aclk),
|
|
|
|
.in_resetn(m_axis_aresetn),
|
|
|
|
.out_clk(s_axis_aclk),
|
|
|
|
.out_resetn(s_axis_aresetn),
|
|
|
|
.in_count(_m_axis_raddr),
|
|
|
|
.out_count(_s_axis_raddr)
|
2015-04-07 19:35:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
always @(posedge s_axis_aclk)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (s_axis_aresetn == 1'b0) begin
|
|
|
|
s_axis_ready <= 1'b1;
|
|
|
|
s_axis_empty <= 1'b1;
|
2017-07-31 11:14:09 +00:00
|
|
|
s_axis_room <= MAX_ROOM;
|
2016-10-01 15:13:42 +00:00
|
|
|
end else begin
|
|
|
|
s_axis_ready <= (_s_axis_raddr[ADDRESS_WIDTH] == _s_axis_waddr_next[ADDRESS_WIDTH] ||
|
|
|
|
_s_axis_raddr[ADDRESS_WIDTH-1:0] != _s_axis_waddr_next[ADDRESS_WIDTH-1:0]);
|
|
|
|
s_axis_empty <= _s_axis_raddr == _s_axis_waddr_next;
|
2017-07-31 11:14:09 +00:00
|
|
|
s_axis_room <= _s_axis_raddr - _s_axis_waddr_next + MAX_ROOM;
|
2016-10-01 15:13:42 +00:00
|
|
|
end
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge m_axis_aclk)
|
|
|
|
begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (m_axis_aresetn == 1'b0) begin
|
|
|
|
m_axis_valid <= 1'b0;
|
|
|
|
m_axis_level <= 'h00;
|
|
|
|
end else begin
|
|
|
|
m_axis_valid <= _m_axis_waddr != _m_axis_raddr_next;
|
|
|
|
m_axis_level <= _m_axis_waddr - _m_axis_raddr_next;
|
|
|
|
end
|
2015-04-07 19:35:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|