2014-04-09 14:34:40 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Copyright 2011(c) Analog Devices, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// This is the LVDS/DDR interface
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
|
|
|
module axi_ad9467_if (
|
|
|
|
|
|
|
|
// adc interface (clk, data, over-range)
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
adc_clk_in_p,
|
|
|
|
adc_clk_in_n,
|
|
|
|
adc_data_in_p,
|
|
|
|
adc_data_in_n,
|
2014-07-30 19:31:09 +00:00
|
|
|
adc_or_in_p,
|
|
|
|
adc_or_in_n,
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
// interface outputs
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
adc_clk,
|
|
|
|
adc_data,
|
|
|
|
adc_or,
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// processor interface
|
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
adc_ddr_edgesel,
|
|
|
|
|
|
|
|
// delay control signals
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2015-05-19 16:14:48 +00:00
|
|
|
up_clk,
|
|
|
|
up_dld,
|
|
|
|
up_dwdata,
|
|
|
|
up_drdata,
|
2014-07-30 19:31:09 +00:00
|
|
|
delay_clk,
|
|
|
|
delay_rst,
|
2014-04-09 14:34:40 +00:00
|
|
|
delay_locked);
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// buffer type based on the target device.
|
2014-04-09 14:34:40 +00:00
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
parameter DEVICE_TYPE = 0;
|
|
|
|
parameter IO_DELAY_GROUP = "dev_if_delay_group";
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
// adc interface (clk, data, over-range)
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
input adc_clk_in_p;
|
|
|
|
input adc_clk_in_n;
|
|
|
|
input [ 7:0] adc_data_in_p;
|
|
|
|
input [ 7:0] adc_data_in_n;
|
2014-07-30 19:31:09 +00:00
|
|
|
input adc_or_in_p;
|
|
|
|
input adc_or_in_n;
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
// interface outputs
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
output adc_clk;
|
|
|
|
output [15:0] adc_data;
|
|
|
|
output adc_or;
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// processor interface
|
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
input adc_ddr_edgesel;
|
|
|
|
|
|
|
|
// delay control signals
|
2014-07-30 19:31:09 +00:00
|
|
|
|
2015-05-19 16:14:48 +00:00
|
|
|
input up_clk;
|
|
|
|
input [ 8:0] up_dld;
|
|
|
|
input [44:0] up_dwdata;
|
|
|
|
output [44:0] up_drdata;
|
2014-07-30 19:31:09 +00:00
|
|
|
input delay_clk;
|
|
|
|
input delay_rst;
|
2014-04-09 14:34:40 +00:00
|
|
|
output delay_locked;
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// internal registers
|
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
reg [ 7:0] adc_data_p = 'd0;
|
|
|
|
reg [ 7:0] adc_data_n = 'd0;
|
2014-07-31 19:19:45 +00:00
|
|
|
reg [ 7:0] adc_data_p_d = 'd0;
|
2014-04-09 14:34:40 +00:00
|
|
|
reg [ 7:0] adc_dmux_a = 'd0;
|
|
|
|
reg [ 7:0] adc_dmux_b = 'd0;
|
|
|
|
reg [15:0] adc_data = 'd0;
|
|
|
|
reg adc_or_p = 'd0;
|
|
|
|
reg adc_or_n = 'd0;
|
|
|
|
reg adc_or = 'd0;
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// internal signals
|
|
|
|
|
2014-04-09 14:34:40 +00:00
|
|
|
wire [ 7:0] adc_data_p_s;
|
|
|
|
wire [ 7:0] adc_data_n_s;
|
|
|
|
wire adc_or_p_s;
|
|
|
|
wire adc_or_n_s;
|
|
|
|
|
|
|
|
genvar l_inst;
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// sample select (p/n) swap
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
always @(posedge adc_clk) begin
|
|
|
|
adc_data_p <= adc_data_p_s;
|
|
|
|
adc_data_n <= adc_data_n_s;
|
2014-07-31 19:19:45 +00:00
|
|
|
adc_data_p_d <= adc_data_p;
|
|
|
|
adc_dmux_a <= (adc_ddr_edgesel == 1'b1) ? adc_data_n : adc_data_p;
|
|
|
|
adc_dmux_b <= (adc_ddr_edgesel == 1'b1) ? adc_data_p_d : adc_data_n;
|
2014-04-09 14:34:40 +00:00
|
|
|
adc_data[15] <= adc_dmux_b[7];
|
|
|
|
adc_data[14] <= adc_dmux_a[7];
|
|
|
|
adc_data[13] <= adc_dmux_b[6];
|
|
|
|
adc_data[12] <= adc_dmux_a[6];
|
|
|
|
adc_data[11] <= adc_dmux_b[5];
|
|
|
|
adc_data[10] <= adc_dmux_a[5];
|
|
|
|
adc_data[ 9] <= adc_dmux_b[4];
|
|
|
|
adc_data[ 8] <= adc_dmux_a[4];
|
|
|
|
adc_data[ 7] <= adc_dmux_b[3];
|
|
|
|
adc_data[ 6] <= adc_dmux_a[3];
|
|
|
|
adc_data[ 5] <= adc_dmux_b[2];
|
|
|
|
adc_data[ 4] <= adc_dmux_a[2];
|
|
|
|
adc_data[ 3] <= adc_dmux_b[1];
|
|
|
|
adc_data[ 2] <= adc_dmux_a[1];
|
|
|
|
adc_data[ 1] <= adc_dmux_b[0];
|
|
|
|
adc_data[ 0] <= adc_dmux_a[0];
|
|
|
|
adc_or_p <= adc_or_p_s;
|
|
|
|
adc_or_n <= adc_or_n_s;
|
|
|
|
if ((adc_or_p == 1'b1) || (adc_or_n == 1'b1)) begin
|
|
|
|
adc_or <= 1'b1;
|
|
|
|
end else begin
|
|
|
|
adc_or <= 1'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// data interface
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
generate
|
|
|
|
for (l_inst = 0; l_inst <= 7; l_inst = l_inst + 1) begin : g_adc_if
|
2014-07-30 19:31:09 +00:00
|
|
|
ad_lvds_in #(
|
2015-08-19 11:11:47 +00:00
|
|
|
.DEVICE_TYPE (DEVICE_TYPE),
|
2014-07-30 19:31:09 +00:00
|
|
|
.IODELAY_CTRL (0),
|
2015-08-19 11:11:47 +00:00
|
|
|
.IODELAY_GROUP (IO_DELAY_GROUP))
|
2014-07-30 19:31:09 +00:00
|
|
|
i_adc_data (
|
|
|
|
.rx_clk (adc_clk),
|
|
|
|
.rx_data_in_p (adc_data_in_p[l_inst]),
|
|
|
|
.rx_data_in_n (adc_data_in_n[l_inst]),
|
|
|
|
.rx_data_p (adc_data_p_s[l_inst]),
|
|
|
|
.rx_data_n (adc_data_n_s[l_inst]),
|
2015-05-19 16:14:48 +00:00
|
|
|
.up_clk (up_clk),
|
|
|
|
.up_dld (up_dld[l_inst]),
|
|
|
|
.up_dwdata (up_dwdata[((l_inst*5)+4):(l_inst*5)]),
|
|
|
|
.up_drdata (up_drdata[((l_inst*5)+4):(l_inst*5)]),
|
2014-07-30 19:31:09 +00:00
|
|
|
.delay_clk (delay_clk),
|
|
|
|
.delay_rst (delay_rst),
|
|
|
|
.delay_locked ());
|
2014-04-09 14:34:40 +00:00
|
|
|
end
|
|
|
|
endgenerate
|
|
|
|
|
2014-07-30 19:31:09 +00:00
|
|
|
// over-range interface
|
|
|
|
|
|
|
|
ad_lvds_in #(
|
2015-08-19 11:11:47 +00:00
|
|
|
.DEVICE_TYPE (DEVICE_TYPE),
|
2014-07-30 19:31:09 +00:00
|
|
|
.IODELAY_CTRL (1),
|
2015-08-19 11:11:47 +00:00
|
|
|
.IODELAY_GROUP (IO_DELAY_GROUP))
|
2014-07-30 19:31:09 +00:00
|
|
|
i_adc_or (
|
|
|
|
.rx_clk (adc_clk),
|
|
|
|
.rx_data_in_p (adc_or_in_p),
|
|
|
|
.rx_data_in_n (adc_or_in_n),
|
|
|
|
.rx_data_p (adc_or_p_s),
|
|
|
|
.rx_data_n (adc_or_n_s),
|
2015-05-19 16:14:48 +00:00
|
|
|
.up_clk (up_clk),
|
|
|
|
.up_dld (up_dld[8]),
|
|
|
|
.up_dwdata (up_dwdata[44:40]),
|
|
|
|
.up_drdata (up_drdata[44:40]),
|
2014-07-30 19:31:09 +00:00
|
|
|
.delay_clk (delay_clk),
|
|
|
|
.delay_rst (delay_rst),
|
|
|
|
.delay_locked (delay_locked));
|
|
|
|
|
|
|
|
// clock
|
|
|
|
|
|
|
|
ad_lvds_clk #(
|
2015-08-19 11:11:47 +00:00
|
|
|
.DEVICE_TYPE (DEVICE_TYPE))
|
2014-07-30 19:31:09 +00:00
|
|
|
i_adc_clk (
|
|
|
|
.clk_in_p (adc_clk_in_p),
|
|
|
|
.clk_in_n (adc_clk_in_n),
|
|
|
|
.clk (adc_clk));
|
2014-04-09 14:34:40 +00:00
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|