2022-03-24 08:27:03 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2023-01-11 13:29:18 +00:00
|
|
|
// Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
2022-03-24 08:27:03 +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 responsibilities 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
|
|
|
|
// 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 this repository (LICENSE_GPL2), and also online at:
|
|
|
|
// <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
|
|
|
// 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:
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
`timescale 1ns/100ps
|
|
|
|
|
|
|
|
module system_top (
|
|
|
|
|
|
|
|
input sys_rst,
|
|
|
|
input sys_clk_p,
|
|
|
|
input sys_clk_n,
|
|
|
|
|
|
|
|
input uart_sin,
|
|
|
|
output uart_sout,
|
|
|
|
|
|
|
|
output ddr4_act_n,
|
|
|
|
output [16:0] ddr4_addr,
|
|
|
|
output [ 1:0] ddr4_ba,
|
2023-01-11 13:29:18 +00:00
|
|
|
output ddr4_bg,
|
2022-03-24 08:27:03 +00:00
|
|
|
output ddr4_ck_p,
|
|
|
|
output ddr4_ck_n,
|
2023-01-11 13:29:18 +00:00
|
|
|
output ddr4_cke,
|
|
|
|
output ddr4_cs_n,
|
2022-03-24 08:27:03 +00:00
|
|
|
inout [ 7:0] ddr4_dm_n,
|
|
|
|
inout [63:0] ddr4_dq,
|
|
|
|
inout [ 7:0] ddr4_dqs_p,
|
|
|
|
inout [ 7:0] ddr4_dqs_n,
|
2023-01-11 13:29:18 +00:00
|
|
|
output ddr4_odt,
|
2022-03-24 08:27:03 +00:00
|
|
|
output ddr4_reset_n,
|
|
|
|
|
|
|
|
output mdio_mdc,
|
|
|
|
inout mdio_mdio,
|
|
|
|
input phy_clk_p,
|
|
|
|
input phy_clk_n,
|
|
|
|
output phy_rst_n,
|
|
|
|
input phy_rx_p,
|
|
|
|
input phy_rx_n,
|
|
|
|
output phy_tx_p,
|
|
|
|
output phy_tx_n,
|
|
|
|
|
|
|
|
inout [16:0] gpio_bd,
|
|
|
|
|
|
|
|
output iic_rstn,
|
|
|
|
inout iic_scl,
|
|
|
|
inout iic_sda,
|
|
|
|
|
|
|
|
// FMC+ IOs
|
|
|
|
|
|
|
|
input rx_ref_clk_p,
|
|
|
|
input rx_ref_clk_n,
|
|
|
|
input rx_ref_clk_replica_p,
|
|
|
|
input rx_ref_clk_replica_n,
|
|
|
|
input [15:0] rx_data_p,
|
|
|
|
input [15:0] rx_data_n,
|
|
|
|
|
|
|
|
input glbl_clk_0_p,
|
|
|
|
input glbl_clk_0_n,
|
|
|
|
|
|
|
|
input rx_sysref_p,
|
|
|
|
input rx_sysref_n,
|
|
|
|
output rx_sync_p,
|
|
|
|
output rx_sync_n,
|
|
|
|
|
|
|
|
output fpga_sclk,
|
|
|
|
inout fpga_sdio,
|
|
|
|
output fpga_csb,
|
|
|
|
|
2023-01-11 13:29:18 +00:00
|
|
|
output adf4371_csb,
|
|
|
|
|
2022-03-24 08:27:03 +00:00
|
|
|
output hmc7044_sclk,
|
|
|
|
inout hmc7044_sdio,
|
|
|
|
output hmc7044_csb,
|
|
|
|
|
|
|
|
inout [ 4:0] gpio,
|
|
|
|
|
|
|
|
output rstb,
|
|
|
|
output hmc_sync_req
|
|
|
|
);
|
|
|
|
|
|
|
|
// internal signals
|
|
|
|
|
|
|
|
wire [63:0] gpio_i;
|
|
|
|
wire [63:0] gpio_o;
|
|
|
|
wire [63:0] gpio_t;
|
|
|
|
|
|
|
|
wire spi_miso;
|
2023-01-11 13:29:18 +00:00
|
|
|
wire spi_mosi;
|
|
|
|
wire hmc7044_miso;
|
|
|
|
wire hmc7044_mosi;
|
|
|
|
wire [ 1:0] hmc7044_csn;
|
2022-03-24 08:27:03 +00:00
|
|
|
|
|
|
|
wire rx_ref_clk;
|
|
|
|
wire rx_ref_clk_replica;
|
|
|
|
wire rx_sysref;
|
|
|
|
wire rx_sync;
|
|
|
|
|
|
|
|
assign iic_rstn = 1'b1;
|
2023-01-11 13:29:18 +00:00
|
|
|
assign hmc7044_csb = hmc7044_csn[0];
|
|
|
|
assign adf4371_csb = hmc7044_csn[1];
|
2022-03-24 08:27:03 +00:00
|
|
|
|
|
|
|
// instantiations
|
|
|
|
|
|
|
|
IBUFDS_GTE4 i_ibufds_rx_ref_clk (
|
|
|
|
.CEB (1'd0),
|
|
|
|
.I (rx_ref_clk_p),
|
|
|
|
.IB (rx_ref_clk_n),
|
|
|
|
.O (rx_ref_clk),
|
|
|
|
.ODIV2 ());
|
|
|
|
|
|
|
|
IBUFDS_GTE4 i_ibufds_rx_ref_clk_replica (
|
|
|
|
.CEB (1'd0),
|
|
|
|
.I (rx_ref_clk_replica_p),
|
|
|
|
.IB (rx_ref_clk_replica_n),
|
|
|
|
.O (rx_ref_clk_replica),
|
|
|
|
.ODIV2 ());
|
|
|
|
|
|
|
|
IBUFDS i_ibufds_rx_sysref (
|
|
|
|
.I (rx_sysref_p),
|
|
|
|
.IB (rx_sysref_n),
|
|
|
|
.O (rx_sysref));
|
|
|
|
|
|
|
|
OBUFDS i_obufds_rx_sync (
|
|
|
|
.I (rx_sync),
|
|
|
|
.O (rx_sync_p),
|
|
|
|
.OB (rx_sync_n));
|
|
|
|
|
2023-01-11 13:29:18 +00:00
|
|
|
IBUFDS_GTE4 i_ibufds_glbl_clk_0 (
|
2022-03-24 08:27:03 +00:00
|
|
|
.I (glbl_clk_0_p),
|
|
|
|
.IB (glbl_clk_0_n),
|
|
|
|
.ODIV2 (glbl_clk_0));
|
|
|
|
|
2023-01-11 13:29:18 +00:00
|
|
|
BUFG_GT i_bufg_glbl_clk_0(
|
2022-03-24 08:27:03 +00:00
|
|
|
.I (glbl_clk_0),
|
|
|
|
.O (glbl_clk_buf));
|
|
|
|
|
|
|
|
ad_iobuf #(
|
|
|
|
.DATA_WIDTH(5)
|
|
|
|
) i_iobuf (
|
|
|
|
.dio_t (gpio_t[36:32]),
|
|
|
|
.dio_i (gpio_o[36:32]),
|
|
|
|
.dio_o (gpio_i[36:32]),
|
|
|
|
.dio_p ({gpio[4:0]})); // 36-32
|
|
|
|
|
|
|
|
assign hmc_sync_req = gpio_o[37];
|
|
|
|
assign rstb = gpio_o[38];
|
|
|
|
|
|
|
|
ad_iobuf #(
|
|
|
|
.DATA_WIDTH(17)
|
|
|
|
) i_iobuf_bd (
|
|
|
|
.dio_t (gpio_t[16:0]),
|
|
|
|
.dio_i (gpio_o[16:0]),
|
|
|
|
.dio_o (gpio_i[16:0]),
|
|
|
|
.dio_p (gpio_bd));
|
|
|
|
|
|
|
|
assign gpio_i[63:38] = gpio_o[63:38];
|
|
|
|
assign gpio_i[31:17] = gpio_o[31:17];
|
|
|
|
|
2023-01-11 13:29:18 +00:00
|
|
|
ad_3w_spi #(
|
|
|
|
.NUM_OF_SLAVES(2)
|
|
|
|
) i_hmc7044_spi (
|
|
|
|
.spi_csn (hmc7044_csn[1:0]),
|
|
|
|
.spi_clk (hmc7044_sclk),
|
|
|
|
.spi_mosi (hmc7044_mosi),
|
|
|
|
.spi_miso (hmc7044_miso),
|
|
|
|
.spi_sdio (hmc7044_sdio),
|
|
|
|
.spi_dir ());
|
|
|
|
|
|
|
|
ad_3w_spi #(
|
|
|
|
.NUM_OF_SLAVES(1)
|
|
|
|
) i_ad9213_spi (
|
|
|
|
.spi_csn (fpga_csb),
|
|
|
|
.spi_clk (fpga_sclk),
|
|
|
|
.spi_mosi (spi_mosi),
|
|
|
|
.spi_miso (spi_miso),
|
|
|
|
.spi_sdio (fpga_sdio),
|
|
|
|
.spi_dir ());
|
|
|
|
|
2022-03-24 08:27:03 +00:00
|
|
|
system_wrapper i_system_wrapper (
|
|
|
|
.sys_rst (sys_rst),
|
|
|
|
.sys_clk_clk_n (sys_clk_n),
|
|
|
|
.sys_clk_clk_p (sys_clk_p),
|
|
|
|
.ddr4_act_n (ddr4_act_n),
|
|
|
|
.ddr4_adr (ddr4_addr),
|
|
|
|
.ddr4_ba (ddr4_ba),
|
|
|
|
.ddr4_bg (ddr4_bg),
|
|
|
|
.ddr4_ck_c (ddr4_ck_n),
|
|
|
|
.ddr4_ck_t (ddr4_ck_p),
|
|
|
|
.ddr4_cke (ddr4_cke),
|
|
|
|
.ddr4_cs_n (ddr4_cs_n),
|
|
|
|
.ddr4_dm_n (ddr4_dm_n),
|
|
|
|
.ddr4_dq (ddr4_dq),
|
|
|
|
.ddr4_dqs_c (ddr4_dqs_n),
|
|
|
|
.ddr4_dqs_t (ddr4_dqs_p),
|
|
|
|
.ddr4_odt (ddr4_odt),
|
|
|
|
.ddr4_reset_n (ddr4_reset_n),
|
|
|
|
.phy_sd (1'b1),
|
|
|
|
.phy_rst_n (phy_rst_n),
|
|
|
|
.sgmii_rxn (phy_rx_n),
|
|
|
|
.sgmii_rxp (phy_rx_p),
|
|
|
|
.sgmii_txn (phy_tx_n),
|
|
|
|
.sgmii_txp (phy_tx_p),
|
|
|
|
.mdio_mdc (mdio_mdc),
|
|
|
|
.mdio_mdio_io (mdio_mdio),
|
|
|
|
.sgmii_phyclk_clk_n (phy_clk_n),
|
|
|
|
.sgmii_phyclk_clk_p (phy_clk_p),
|
|
|
|
.iic_main_scl_io (iic_scl),
|
|
|
|
.iic_main_sda_io (iic_sda),
|
|
|
|
.uart_sin (uart_sin),
|
|
|
|
.uart_sout (uart_sout),
|
2023-01-11 13:29:18 +00:00
|
|
|
.spi_clk_i (fpga_sclk),
|
|
|
|
.spi_clk_o (fpga_sclk),
|
|
|
|
.spi_csn_i (fpga_csb),
|
|
|
|
.spi_csn_o (fpga_csb),
|
2022-03-24 08:27:03 +00:00
|
|
|
.spi_sdi_i (spi_miso),
|
|
|
|
.spi_sdo_i (spi_mosi),
|
|
|
|
.spi_sdo_o (spi_mosi),
|
2023-01-11 13:29:18 +00:00
|
|
|
.hmc7044_clk_i (hmc7044_sclk),
|
|
|
|
.hmc7044_clk_o (hmc7044_sclk),
|
|
|
|
.hmc7044_csn_i (hmc7044_csn),
|
|
|
|
.hmc7044_csn_o (hmc7044_csn),
|
|
|
|
.hmc7044_sdi_i (hmc7044_miso),
|
|
|
|
.hmc7044_sdo_i (hmc7044_mosi),
|
|
|
|
.hmc7044_sdo_o (hmc7044_mosi),
|
2022-03-24 08:27:03 +00:00
|
|
|
.gpio0_i (gpio_i[31:0]),
|
|
|
|
.gpio0_o (gpio_o[31:0]),
|
|
|
|
.gpio0_t (gpio_t[31:0]),
|
|
|
|
.gpio1_i (gpio_i[63:32]),
|
|
|
|
.gpio1_o (gpio_o[63:32]),
|
|
|
|
.gpio1_t (gpio_t[63:32]),
|
|
|
|
// FMC+
|
|
|
|
.rx_data_0_n (rx_data_n[1]),
|
|
|
|
.rx_data_0_p (rx_data_p[1]),
|
2023-01-11 13:29:18 +00:00
|
|
|
.rx_data_1_n (rx_data_n[3]),
|
|
|
|
.rx_data_1_p (rx_data_p[3]),
|
|
|
|
.rx_data_2_n (rx_data_n[2]),
|
|
|
|
.rx_data_2_p (rx_data_p[2]),
|
2022-03-24 08:27:03 +00:00
|
|
|
.rx_data_3_n (rx_data_n[4]),
|
|
|
|
.rx_data_3_p (rx_data_p[4]),
|
|
|
|
.rx_data_4_n (rx_data_n[0]),
|
|
|
|
.rx_data_4_p (rx_data_p[0]),
|
|
|
|
.rx_data_5_n (rx_data_n[15]),
|
|
|
|
.rx_data_5_p (rx_data_p[15]),
|
2023-01-11 13:29:18 +00:00
|
|
|
.rx_data_6_n (rx_data_n[8]),
|
|
|
|
.rx_data_6_p (rx_data_p[8]),
|
|
|
|
.rx_data_7_n (rx_data_n[7]),
|
|
|
|
.rx_data_7_p (rx_data_p[7]),
|
2022-03-24 08:27:03 +00:00
|
|
|
.rx_data_8_n (rx_data_n[5]),
|
|
|
|
.rx_data_8_p (rx_data_p[5]),
|
2023-01-11 13:29:18 +00:00
|
|
|
.rx_data_9_n (rx_data_n[6]),
|
|
|
|
.rx_data_9_p (rx_data_p[6]),
|
|
|
|
.rx_data_10_n (rx_data_n[10]),
|
|
|
|
.rx_data_10_p (rx_data_p[10]),
|
|
|
|
.rx_data_11_n (rx_data_n[9]),
|
|
|
|
.rx_data_11_p (rx_data_p[9]),
|
|
|
|
.rx_data_12_n (rx_data_n[12]),
|
|
|
|
.rx_data_12_p (rx_data_p[12]),
|
|
|
|
.rx_data_13_n (rx_data_n[14]),
|
|
|
|
.rx_data_13_p (rx_data_p[14]),
|
2022-03-24 08:27:03 +00:00
|
|
|
.rx_data_14_n (rx_data_n[13]),
|
|
|
|
.rx_data_14_p (rx_data_p[13]),
|
2023-01-11 13:29:18 +00:00
|
|
|
.rx_data_15_n (rx_data_n[11]),
|
|
|
|
.rx_data_15_p (rx_data_p[11]),
|
2022-03-24 08:27:03 +00:00
|
|
|
|
|
|
|
.rx_ref_clk_0 (rx_ref_clk),
|
|
|
|
.rx_ref_clk_1 (rx_ref_clk_replica),
|
|
|
|
.glbl_clk_0 (glbl_clk_buf),
|
|
|
|
.rx_sync_0 (rx_sync),
|
|
|
|
.rx_sysref_0 (rx_sysref));
|
|
|
|
|
|
|
|
endmodule
|