101 lines
3.3 KiB
Verilog
101 lines
3.3 KiB
Verilog
// ***************************************************************************
|
|
// ***************************************************************************
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
|
//
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
// A PARTICULAR PURPOSE.
|
|
//
|
|
// 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:
|
|
//
|
|
// 1. The GNU General Public License version 2 as published by the
|
|
// Free Software Foundation, which can be found in the top level directory of
|
|
// the repository (LICENSE_GPL2), and at: <https://www.gnu.org/licenses/old-licenses/gpl-2.0.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/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.
|
|
//
|
|
// ***************************************************************************
|
|
// ***************************************************************************
|
|
// This is the LVDS/DDR interface
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
module axi_ad9234_if (
|
|
|
|
// jesd interface
|
|
// rx_clk is (line-rate/40)
|
|
|
|
input rx_clk,
|
|
input [127:0] rx_data,
|
|
|
|
// adc data output
|
|
|
|
output adc_clk,
|
|
input adc_rst,
|
|
output [63:0] adc_data_a,
|
|
output [63:0] adc_data_b,
|
|
output adc_or_a,
|
|
output adc_or_b,
|
|
output reg adc_status);
|
|
|
|
// internal registers
|
|
|
|
// internal signals
|
|
|
|
wire [15:0] adc_data_a_s3_s;
|
|
wire [15:0] adc_data_a_s2_s;
|
|
wire [15:0] adc_data_a_s1_s;
|
|
wire [15:0] adc_data_a_s0_s;
|
|
wire [15:0] adc_data_b_s3_s;
|
|
wire [15:0] adc_data_b_s2_s;
|
|
wire [15:0] adc_data_b_s1_s;
|
|
wire [15:0] adc_data_b_s0_s;
|
|
|
|
// adc clock is the reference clock
|
|
|
|
assign adc_clk = rx_clk;
|
|
assign adc_or_a = 1'b0;
|
|
assign adc_or_b = 1'b0;
|
|
|
|
// adc channels
|
|
|
|
assign adc_data_a = { adc_data_a_s3_s, adc_data_a_s2_s,
|
|
adc_data_a_s1_s, adc_data_a_s0_s};
|
|
|
|
assign adc_data_b = { adc_data_b_s3_s, adc_data_b_s2_s,
|
|
adc_data_b_s1_s, adc_data_b_s0_s};
|
|
|
|
// data multiplex
|
|
|
|
assign adc_data_a_s3_s = {rx_data[ 31: 24], rx_data[ 63: 56]};
|
|
assign adc_data_a_s2_s = {rx_data[ 23: 16], rx_data[ 55: 48]};
|
|
assign adc_data_a_s1_s = {rx_data[ 15: 8], rx_data[ 47: 40]};
|
|
assign adc_data_a_s0_s = {rx_data[ 7: 0], rx_data[ 39: 32]};
|
|
|
|
assign adc_data_b_s3_s = {rx_data[ 95: 88], rx_data[127:120]};
|
|
assign adc_data_b_s2_s = {rx_data[ 87: 80], rx_data[119:112]};
|
|
assign adc_data_b_s1_s = {rx_data[ 79: 72], rx_data[111:104]};
|
|
assign adc_data_b_s0_s = {rx_data[ 71: 64], rx_data[103: 96]};
|
|
|
|
// status
|
|
|
|
always @(posedge rx_clk) begin
|
|
if (adc_rst == 1'b1) begin
|
|
adc_status <= 1'b0;
|
|
end else begin
|
|
adc_status <= 1'b1;
|
|
end
|
|
end
|
|
|
|
endmodule
|
|
|
|
// ***************************************************************************
|
|
// ***************************************************************************
|
|
|