2015-06-26 09:04:19 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2023-07-06 13:54:40 +00:00
|
|
|
// Copyright (C) 2014-2023 Analog Devices, Inc. All rights reserved.
|
2015-06-26 09:04:19 +00:00
|
|
|
//
|
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
|
2018-03-14 14:45:47 +00:00
|
|
|
// freedoms and responsibilities that he or she has by using this source/core.
|
2017-05-31 15:15:24 +00:00
|
|
|
//
|
|
|
|
// 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.
|
2015-06-26 09:04:19 +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:
|
2015-06-26 09:04:19 +00:00
|
|
|
//
|
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:
|
2023-12-13 16:03:34 +00:00
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/main/LICENSE_ADIBSD
|
2017-05-29 06:55:41 +00:00
|
|
|
// This will allow to generate bit files and not release the source code,
|
|
|
|
// as long as it attaches to an ADI device.
|
2015-06-26 09:04:19 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// This is the LVDS/DDR interface, note that overrange is independent of data path,
|
|
|
|
// software will not be able to relate overrange to a specific sample!
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
module axi_ad9265_if #(
|
2015-06-26 09:04:19 +00:00
|
|
|
|
2019-01-11 08:54:16 +00:00
|
|
|
parameter FPGA_TECHNOLOGY = 0,
|
2019-06-05 12:23:46 +00:00
|
|
|
parameter IO_DELAY_GROUP = "adc_if_delay_group",
|
2022-04-08 10:21:52 +00:00
|
|
|
parameter DELAY_REFCLK_FREQUENCY = 200
|
|
|
|
) (
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// adc interface (clk, data, over-range)
|
|
|
|
// nominal clock 125 MHz, up to 300 MHz
|
|
|
|
|
2017-04-13 08:45:54 +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,
|
|
|
|
input adc_or_in_p,
|
|
|
|
input adc_or_in_n,
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// interface outputs
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
output adc_clk,
|
|
|
|
output reg [15:0] adc_data,
|
|
|
|
output reg adc_or,
|
|
|
|
output reg adc_status,
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// delay control signals
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
input up_clk,
|
|
|
|
input [ 8:0] up_dld,
|
|
|
|
input [44:0] up_dwdata,
|
|
|
|
output [44:0] up_drdata,
|
|
|
|
input delay_clk,
|
|
|
|
input delay_rst,
|
2022-04-08 10:21:52 +00:00
|
|
|
output delay_locked
|
|
|
|
);
|
2015-06-26 09:04:19 +00:00
|
|
|
|
|
|
|
// internal registers
|
|
|
|
|
|
|
|
reg [ 7:0] adc_data_p = 'd0;
|
|
|
|
reg [ 7:0] adc_data_n = 'd0;
|
|
|
|
reg adc_or_p = 'd0;
|
|
|
|
reg adc_or_n = 'd0;
|
|
|
|
|
|
|
|
// internal signals
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
always @(posedge adc_clk)
|
|
|
|
begin
|
|
|
|
adc_status <= 1'b1;
|
|
|
|
adc_or <= adc_or_p_s | adc_or_n_s;
|
|
|
|
adc_data <= { adc_data_p_s[7], adc_data_n_s[7], adc_data_p_s[6], adc_data_n_s[6], adc_data_p_s[5], adc_data_n_s[5], adc_data_p_s[4], adc_data_n_s[4], adc_data_p_s[3], adc_data_n_s[3], adc_data_p_s[2], adc_data_n_s[2], adc_data_p_s[1], adc_data_n_s[1], adc_data_p_s[0], adc_data_n_s[0]};
|
|
|
|
end
|
|
|
|
|
|
|
|
// data interface
|
|
|
|
|
|
|
|
generate
|
|
|
|
for (l_inst = 0; l_inst <= 7; l_inst = l_inst + 1) begin : g_adc_if
|
2017-07-26 14:31:48 +00:00
|
|
|
ad_data_in #(
|
2019-01-11 08:54:16 +00:00
|
|
|
.FPGA_TECHNOLOGY (FPGA_TECHNOLOGY),
|
2015-06-26 09:04:19 +00:00
|
|
|
.IODELAY_CTRL (0),
|
2019-06-05 12:23:46 +00:00
|
|
|
.IODELAY_GROUP (IO_DELAY_GROUP),
|
2022-04-08 10:21:52 +00:00
|
|
|
.REFCLK_FREQUENCY (DELAY_REFCLK_FREQUENCY)
|
|
|
|
) i_adc_data (
|
2015-06-26 09:04:19 +00:00
|
|
|
.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]),
|
|
|
|
.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)]),
|
|
|
|
.delay_clk (delay_clk),
|
|
|
|
.delay_rst (delay_rst),
|
|
|
|
.delay_locked ());
|
|
|
|
end
|
|
|
|
endgenerate
|
|
|
|
|
|
|
|
// over-range interface
|
|
|
|
|
2017-07-26 14:31:48 +00:00
|
|
|
ad_data_in #(
|
2019-01-11 08:54:16 +00:00
|
|
|
.FPGA_TECHNOLOGY (FPGA_TECHNOLOGY),
|
2015-06-26 09:04:19 +00:00
|
|
|
.IODELAY_CTRL (1),
|
2019-06-05 12:23:46 +00:00
|
|
|
.IODELAY_GROUP (IO_DELAY_GROUP),
|
2022-04-08 10:21:52 +00:00
|
|
|
.REFCLK_FREQUENCY (DELAY_REFCLK_FREQUENCY)
|
|
|
|
) i_adc_or (
|
2015-06-26 09:04:19 +00:00
|
|
|
.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),
|
|
|
|
.up_clk (up_clk),
|
|
|
|
.up_dld (up_dld[8]),
|
|
|
|
.up_dwdata (up_dwdata[44:40]),
|
|
|
|
.up_drdata (up_drdata[44:40]),
|
|
|
|
.delay_clk (delay_clk),
|
|
|
|
.delay_rst (delay_rst),
|
|
|
|
.delay_locked (delay_locked));
|
|
|
|
|
|
|
|
// clock
|
|
|
|
|
2022-04-08 10:21:52 +00:00
|
|
|
ad_data_clk i_adc_clk (
|
2016-05-04 17:38:10 +00:00
|
|
|
.rst (1'b0),
|
|
|
|
.locked (),
|
2015-06-26 09:04:19 +00:00
|
|
|
.clk_in_p (adc_clk_in_p),
|
|
|
|
.clk_in_n (adc_clk_in_n),
|
|
|
|
.clk (adc_clk));
|
|
|
|
|
|
|
|
endmodule
|