2014-02-28 19:26:22 +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-02-28 19:26:22 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper module for synchronizing a counter from one clock domain to another
|
|
|
|
* using gray code. To work correctly the counter must not change its value by
|
|
|
|
* more than one in one clock cycle in the source domain. I.e. the value may
|
|
|
|
* change by either -1, 0 or +1.
|
|
|
|
*/
|
|
|
|
module sync_gray (
|
2016-10-01 15:13:42 +00:00
|
|
|
input in_clk,
|
|
|
|
input in_resetn,
|
|
|
|
input [DATA_WIDTH-1:0] in_count,
|
|
|
|
input out_resetn,
|
|
|
|
input out_clk,
|
|
|
|
output [DATA_WIDTH-1:0] out_count
|
2014-02-28 19:26:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Bit-width of the counter
|
|
|
|
parameter DATA_WIDTH = 1;
|
|
|
|
// Whether the input and output clock are asynchronous, if set to 0 the
|
|
|
|
// synchronizer will be bypassed and out_count will be in_count.
|
2015-08-19 11:11:47 +00:00
|
|
|
parameter ASYNC_CLK = 1;
|
2014-02-28 19:26:22 +00:00
|
|
|
|
2015-04-14 16:54:26 +00:00
|
|
|
reg [DATA_WIDTH-1:0] cdc_sync_stage0 = 'h0;
|
|
|
|
reg [DATA_WIDTH-1:0] cdc_sync_stage1 = 'h0;
|
|
|
|
reg [DATA_WIDTH-1:0] cdc_sync_stage2 = 'h0;
|
2014-02-28 19:26:22 +00:00
|
|
|
reg [DATA_WIDTH-1:0] out_count_m = 'h0;
|
|
|
|
|
|
|
|
function [DATA_WIDTH-1:0] g2b;
|
2016-10-01 15:13:42 +00:00
|
|
|
input [DATA_WIDTH-1:0] g;
|
|
|
|
reg [DATA_WIDTH-1:0] b;
|
|
|
|
integer i;
|
|
|
|
begin
|
|
|
|
b[DATA_WIDTH-1] = g[DATA_WIDTH-1];
|
|
|
|
for (i = DATA_WIDTH - 2; i >= 0; i = i - 1)
|
|
|
|
b[i] = b[i + 1] ^ g[i];
|
|
|
|
g2b = b;
|
|
|
|
end
|
2014-02-28 19:26:22 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function [DATA_WIDTH-1:0] b2g;
|
2016-10-01 15:13:42 +00:00
|
|
|
input [DATA_WIDTH-1:0] b;
|
|
|
|
reg [DATA_WIDTH-1:0] g;
|
|
|
|
integer i;
|
|
|
|
begin
|
|
|
|
g[DATA_WIDTH-1] = b[DATA_WIDTH-1];
|
|
|
|
for (i = DATA_WIDTH - 2; i >= 0; i = i -1)
|
|
|
|
g[i] = b[i + 1] ^ b[i];
|
|
|
|
b2g = g;
|
|
|
|
end
|
2014-02-28 19:26:22 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
always @(posedge in_clk) begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (in_resetn == 1'b0) begin
|
|
|
|
cdc_sync_stage0 <= 'h00;
|
|
|
|
end else begin
|
|
|
|
cdc_sync_stage0 <= b2g(in_count);
|
|
|
|
end
|
2014-02-28 19:26:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always @(posedge out_clk) begin
|
2016-10-01 15:13:42 +00:00
|
|
|
if (out_resetn == 1'b0) begin
|
|
|
|
cdc_sync_stage1 <= 'h00;
|
|
|
|
cdc_sync_stage2 <= 'h00;
|
|
|
|
out_count_m <= 'h00;
|
|
|
|
end else begin
|
|
|
|
cdc_sync_stage1 <= cdc_sync_stage0;
|
|
|
|
cdc_sync_stage2 <= cdc_sync_stage1;
|
|
|
|
out_count_m <= g2b(cdc_sync_stage2);
|
|
|
|
end
|
2014-02-28 19:26:22 +00:00
|
|
|
end
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
assign out_count = ASYNC_CLK ? out_count_m : in_count;
|
2014-02-28 19:26:22 +00:00
|
|
|
|
|
|
|
endmodule
|