xmicrowave: Initial commit
parent
1bc8a41aea
commit
bcf5abb2fe
|
@ -0,0 +1,38 @@
|
|||
####################################################################################
|
||||
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
|
||||
### SPDX short identifier: BSD-1-Clause
|
||||
## Auto-generated, do not modify!
|
||||
####################################################################################
|
||||
|
||||
PROJECT_NAME := adrv9009zu11eg_xmicrowave
|
||||
|
||||
M_DEPS += system_constr.xdc
|
||||
M_DEPS += ../common/adrv9009zu11eg_spi.v
|
||||
M_DEPS += ../common/adrv9009zu11eg_constr.xdc
|
||||
M_DEPS += ../common/adrv9009zu11eg_bd.tcl
|
||||
M_DEPS += ../common/adrv2crr_fmc_constr.xdc
|
||||
M_DEPS += ../common/adrv2crr_fmc_bd.tcl
|
||||
M_DEPS += ../../scripts/adi_pd.tcl
|
||||
M_DEPS += ../../../library/jesd204/scripts/jesd204.tcl
|
||||
M_DEPS += ../../../library/common/ad_iobuf.v
|
||||
|
||||
LIB_DEPS += axi_dmac
|
||||
LIB_DEPS += axi_fan_control
|
||||
LIB_DEPS += axi_i2s_adi
|
||||
LIB_DEPS += axi_sysid
|
||||
LIB_DEPS += jesd204/ad_ip_jesd204_tpl_adc
|
||||
LIB_DEPS += jesd204/ad_ip_jesd204_tpl_dac
|
||||
LIB_DEPS += jesd204/axi_jesd204_rx
|
||||
LIB_DEPS += jesd204/axi_jesd204_tx
|
||||
LIB_DEPS += jesd204/jesd204_rx
|
||||
LIB_DEPS += jesd204/jesd204_tx
|
||||
LIB_DEPS += sysid_rom
|
||||
LIB_DEPS += data_offload
|
||||
LIB_DEPS += util_fifo2axi_bridge
|
||||
LIB_DEPS += util_pack/util_cpack2
|
||||
LIB_DEPS += util_pack/util_upack2
|
||||
LIB_DEPS += xilinx/axi_adxcvr
|
||||
LIB_DEPS += xilinx/axi_dacfifo
|
||||
LIB_DEPS += xilinx/util_adxcvr
|
||||
|
||||
include ../../scripts/project-xilinx.mk
|
|
@ -0,0 +1,109 @@
|
|||
|
||||
source ../common/adrv9009zu11eg_bd.tcl
|
||||
source ../common/adrv2crr_fmc_bd.tcl
|
||||
source $ad_hdl_dir/projects/scripts/adi_pd.tcl
|
||||
|
||||
ad_ip_parameter axi_sysid_0 CONFIG.ROM_ADDR_BITS 9
|
||||
ad_ip_parameter rom_sys_0 CONFIG.PATH_TO_FILE "[pwd]/mem_init_sys.txt"
|
||||
ad_ip_parameter rom_sys_0 CONFIG.ROM_ADDR_BITS 9
|
||||
|
||||
sysid_gen_sys_init_file
|
||||
|
||||
# iic
|
||||
|
||||
create_bd_intf_port -mode Master -vlnv xilinx.com:interface:iic_rtl:1.0 iic_1
|
||||
create_bd_intf_port -mode Master -vlnv xilinx.com:interface:iic_rtl:1.0 iic_2
|
||||
|
||||
ad_ip_instance axi_iic axi_iic_1
|
||||
ad_connect iic_1 axi_iic_1/iic
|
||||
|
||||
ad_ip_instance axi_iic axi_iic_2
|
||||
ad_connect iic_2 axi_iic_2/iic
|
||||
|
||||
# spi
|
||||
|
||||
create_bd_port -dir O -from 7 -to 0 spi1_csn_o
|
||||
create_bd_port -dir I -from 7 -to 0 spi1_csn_i
|
||||
create_bd_port -dir I spi1_clk_i
|
||||
create_bd_port -dir O spi1_clk_o
|
||||
create_bd_port -dir I spi1_sdo_i
|
||||
create_bd_port -dir O spi1_sdo_o
|
||||
create_bd_port -dir I spi1_sdi_i
|
||||
|
||||
ad_ip_instance axi_quad_spi axi_spi1
|
||||
ad_ip_parameter axi_spi1 CONFIG.C_USE_STARTUP 0
|
||||
ad_ip_parameter axi_spi1 CONFIG.C_NUM_SS_BITS 8
|
||||
ad_ip_parameter axi_spi1 CONFIG.C_SCK_RATIO 16
|
||||
|
||||
ad_connect spi1_csn_i axi_spi1/ss_i
|
||||
ad_connect spi1_csn_o axi_spi1/ss_o
|
||||
ad_connect spi1_clk_i axi_spi1/sck_i
|
||||
ad_connect spi1_clk_o axi_spi1/sck_o
|
||||
ad_connect spi1_sdo_i axi_spi1/io0_i
|
||||
ad_connect spi1_sdo_o axi_spi1/io0_o
|
||||
ad_connect spi1_sdi_i axi_spi1/io1_i
|
||||
|
||||
set_property -dict [list CONFIG.PSU__FPGA_PL3_ENABLE {1} CONFIG.PSU__CRL_APB__PL3_REF_CTRL__SRCSEL {IOPLL} CONFIG.PSU__CRL_APB__PL3_REF_CTRL__FREQMHZ {8}] [get_bd_cells sys_ps8]
|
||||
ad_connect sys_ps8/pl_clk3 axi_spi1/ext_spi_clk
|
||||
|
||||
create_bd_port -dir O -from 7 -to 0 spi2_csn_o
|
||||
create_bd_port -dir I -from 7 -to 0 spi2_csn_i
|
||||
create_bd_port -dir I spi2_clk_i
|
||||
create_bd_port -dir O spi2_clk_o
|
||||
create_bd_port -dir I spi2_sdo_i
|
||||
create_bd_port -dir O spi2_sdo_o
|
||||
create_bd_port -dir I spi2_sdi_i
|
||||
|
||||
ad_ip_instance axi_quad_spi axi_spi2
|
||||
ad_ip_parameter axi_spi2 CONFIG.C_USE_STARTUP 0
|
||||
ad_ip_parameter axi_spi2 CONFIG.C_NUM_SS_BITS 8
|
||||
ad_ip_parameter axi_spi2 CONFIG.C_SCK_RATIO 16
|
||||
|
||||
ad_connect spi2_csn_i axi_spi2/ss_i
|
||||
ad_connect spi2_csn_o axi_spi2/ss_o
|
||||
ad_connect spi2_clk_i axi_spi2/sck_i
|
||||
ad_connect spi2_clk_o axi_spi2/sck_o
|
||||
ad_connect spi2_sdo_i axi_spi2/io0_i
|
||||
ad_connect spi2_sdo_o axi_spi2/io0_o
|
||||
ad_connect spi2_sdi_i axi_spi2/io1_i
|
||||
|
||||
ad_connect axi_spi2/ext_spi_clk sys_ps8/pl_clk3
|
||||
|
||||
# gpio
|
||||
|
||||
create_bd_port -dir I -from 31 -to 0 xmicrowave_gpio0_i
|
||||
create_bd_port -dir O -from 31 -to 0 xmicrowave_gpio0_o
|
||||
create_bd_port -dir O -from 31 -to 0 xmicrowave_gpio0_t
|
||||
create_bd_port -dir I -from 31 -to 0 xmicrowave_gpio1_i
|
||||
create_bd_port -dir O -from 31 -to 0 xmicrowave_gpio1_o
|
||||
create_bd_port -dir O -from 31 -to 0 xmicrowave_gpio1_t
|
||||
|
||||
ad_ip_instance axi_gpio axi_xmicrowave_gpio
|
||||
ad_ip_parameter axi_xmicrowave_gpio CONFIG.C_IS_DUAL 1
|
||||
ad_ip_parameter axi_xmicrowave_gpio CONFIG.C_GPIO_WIDTH 32
|
||||
ad_ip_parameter axi_xmicrowave_gpio CONFIG.C_GPIO2_WIDTH 32
|
||||
ad_ip_parameter axi_xmicrowave_gpio CONFIG.C_INTERRUPT_PRESENT 1
|
||||
|
||||
ad_connect xmicrowave_gpio0_i axi_xmicrowave_gpio/gpio_io_i
|
||||
ad_connect xmicrowave_gpio0_o axi_xmicrowave_gpio/gpio_io_o
|
||||
ad_connect xmicrowave_gpio0_t axi_xmicrowave_gpio/gpio_io_t
|
||||
ad_connect xmicrowave_gpio1_i axi_xmicrowave_gpio/gpio2_io_i
|
||||
ad_connect xmicrowave_gpio1_o axi_xmicrowave_gpio/gpio2_io_o
|
||||
ad_connect xmicrowave_gpio1_t axi_xmicrowave_gpio/gpio2_io_t
|
||||
|
||||
|
||||
# AXI address definitions
|
||||
|
||||
ad_cpu_interconnect 0x43000000 axi_iic_1
|
||||
ad_cpu_interconnect 0x43100000 axi_iic_2
|
||||
ad_cpu_interconnect 0x44000000 axi_spi1
|
||||
ad_cpu_interconnect 0x44500000 axi_spi2
|
||||
ad_cpu_interconnect 0x46000000 axi_xmicrowave_gpio
|
||||
|
||||
# interrupts
|
||||
|
||||
ad_cpu_interrupt "ps-1" "mb-1" axi_iic_1/iic2intc_irpt
|
||||
ad_cpu_interrupt "ps-2" "mb-2" axi_iic_1/iic2intc_irpt
|
||||
ad_cpu_interrupt "ps-3" "mb-3" axi_spi1/ip2intc_irpt
|
||||
ad_cpu_interrupt "ps-4" "mb-4" axi_spi2/ip2intc_irpt
|
||||
ad_cpu_interrupt "ps-5" "mb-5" axi_xmicrowave_gpio/ip2intc_irpt
|
|
@ -0,0 +1,60 @@
|
|||
|
||||
# gpios
|
||||
|
||||
set_property -dict {PACKAGE_PIN AG22 IOSTANDARD LVCMOS18} [get_ports gpio0] ; ## LA10_P IO_L20P_T3L_N2_AD1P_67
|
||||
set_property -dict {PACKAGE_PIN AG23 IOSTANDARD LVCMOS18} [get_ports gpio1] ; ## LA10_N IO_L20N_T3L_N3_AD1N_67
|
||||
set_property -dict {PACKAGE_PIN H31 IOSTANDARD LVCMOS18} [get_ports gpio2] ; ## LA13_P IO_L8P_T1L_N2_AD5P_68
|
||||
set_property -dict {PACKAGE_PIN H32 IOSTANDARD LVCMOS18} [get_ports gpio3] ; ## LA13_N IO_L8N_T1L_N3_AD5N_68
|
||||
set_property -dict {PACKAGE_PIN AJ26 IOSTANDARD LVCMOS18} [get_ports gpio4] ; ## LA05_N IO_L21N_T3L_N5_AD8N_67
|
||||
set_property -dict {PACKAGE_PIN AJ25 IOSTANDARD LVCMOS18} [get_ports gpio5] ; ## LA05_P IO_L21P_T3L_N4_AD8P_67
|
||||
set_property -dict {PACKAGE_PIN AJ22 IOSTANDARD LVCMOS18} [get_ports gpio6] ; ## LA06_N IO_L22N_T3U_N7_DBC_AD0N_67
|
||||
set_property -dict {PACKAGE_PIN AH22 IOSTANDARD LVCMOS18} [get_ports gpio7] ; ## LA06_P IO_L22P_T3U_N6_DBC_AD0P_67
|
||||
|
||||
# gpio directions
|
||||
|
||||
set_property -dict {PACKAGE_PIN AT25 IOSTANDARD LVCMOS18} [get_ports dir_gpio0] ; ## LA04_N IO_L9N_T1L_N5_AD12N_67
|
||||
set_property -dict {PACKAGE_PIN AR25 IOSTANDARD LVCMOS18} [get_ports dir_gpio1] ; ## LA04_P IO_L9P_T1L_N4_AD12P_67
|
||||
set_property -dict {PACKAGE_PIN AK25 IOSTANDARD LVCMOS18} [get_ports dir_gpio2] ; ## LA03_N IO_L19N_T3L_N1_DBC_AD9N_67
|
||||
set_property -dict {PACKAGE_PIN AK24 IOSTANDARD LVCMOS18} [get_ports dir_gpio3] ; ## LA03_P IO_L19P_T3L_N0_DBC_AD9P_67
|
||||
set_property -dict {PACKAGE_PIN AW27 IOSTANDARD LVCMOS18} [get_ports dir_gpio4] ; ## LA02_N IO_L1N_T0L_N1_DBC_67
|
||||
set_property -dict {PACKAGE_PIN AW26 IOSTANDARD LVCMOS18} [get_ports dir_gpio5] ; ## LA02_P IO_L1P_T0L_N0_DBC_67
|
||||
set_property -dict {PACKAGE_PIN AR24 IOSTANDARD LVCMOS18} [get_ports dir_gpio6] ; ## LA00_N_CC IO_L12N_T1U_N11_GC_67
|
||||
set_property -dict {PACKAGE_PIN AP24 IOSTANDARD LVCMOS18} [get_ports dir_gpio7] ; ## LA00_P_CC IO_L12P_T1U_N10_GC_67
|
||||
|
||||
# iic
|
||||
|
||||
set_property -dict {PACKAGE_PIN A37 IOSTANDARD LVCMOS18} [get_ports sclout1] ; ## LA26_P IO_L24P_T3U_N10_68
|
||||
set_property -dict {PACKAGE_PIN A38 IOSTANDARD LVCMOS18} [get_ports sdaout1] ; ## LA26_N IO_L24N_T3U_N11_68
|
||||
set_property -dict {PACKAGE_PIN F38 IOSTANDARD LVCMOS18} [get_ports sclout2] ; ## LA23_P IO_L2P_T0L_N2_68
|
||||
set_property -dict {PACKAGE_PIN E38 IOSTANDARD LVCMOS18} [get_ports sdaout2] ; ## LA23_N IO_L2N_T0L_N3_68
|
||||
|
||||
set_property PULLUP true [get_ports sclout1]
|
||||
set_property PULLUP true [get_ports sdaout1]
|
||||
set_property PULLUP true [get_ports sclout2]
|
||||
set_property PULLUP true [get_ports sdaout2]
|
||||
|
||||
# spi
|
||||
|
||||
set_property -dict {PACKAGE_PIN AM24 IOSTANDARD LVCMOS18} [get_ports spi1_clk] ; ## LA16_N IO_L18N_T2U_N11_AD2N_67
|
||||
set_property -dict {PACKAGE_PIN J32 IOSTANDARD LVCMOS18} [get_ports spi1_copi] ; ## LA20_P IO_L7P_T1L_N0_QBC_AD13P_68
|
||||
set_property -dict {PACKAGE_PIN H33 IOSTANDARD LVCMOS18} [get_ports spi1_cipo] ; ## LA20_N IO_L7N_T1L_N1_QBC_AD13N_68
|
||||
set_property -dict {PACKAGE_PIN B38 IOSTANDARD LVCMOS18} [get_ports spi1_cs0] ; ## LA25_N IO_L21N_T3L_N5_AD8N_68
|
||||
set_property -dict {PACKAGE_PIN C37 IOSTANDARD LVCMOS18} [get_ports spi1_cs1] ; ## LA25_P IO_L21P_T3L_N4_AD8P_68
|
||||
set_property -dict {PACKAGE_PIN B34 IOSTANDARD LVCMOS18} [get_ports spi1_cs2] ; ## LA21_N IO_L16N_T2U_N7_QBC_AD3N_68
|
||||
set_property -dict {PACKAGE_PIN B33 IOSTANDARD LVCMOS18} [get_ports spi1_cs3] ; ## LA21_P IO_L16P_T2U_N6_QBC_AD3P_68
|
||||
set_property -dict {PACKAGE_PIN H39 IOSTANDARD LVCMOS18} [get_ports spi1_cs4] ; ## LA22_N IO_L1N_T0L_N1_DBC_68
|
||||
set_property -dict {PACKAGE_PIN H38 IOSTANDARD LVCMOS18} [get_ports spi1_cs5] ; ## LA22_P IO_L1P_T0L_N0_DBC_68
|
||||
set_property -dict {PACKAGE_PIN C39 IOSTANDARD LVCMOS18} [get_ports spi1_cs6] ; ## LA19_N IO_L20N_T3L_N3_AD1N_68
|
||||
set_property -dict {PACKAGE_PIN C38 IOSTANDARD LVCMOS18} [get_ports spi1_cs7] ; ## LA19_P IO_L20P_T3L_N2_AD1P_68
|
||||
|
||||
set_property -dict {PACKAGE_PIN AT22 IOSTANDARD LVCMOS18} [get_ports spi2_clk] ; ## LA24_N IO_L8N_T1L_N3_AD5N_67
|
||||
set_property -dict {PACKAGE_PIN E35 IOSTANDARD LVCMOS18} [get_ports spi2_copi] ; ## LA28_P IO_L13P_T2L_N0_GC_QBC_68
|
||||
set_property -dict {PACKAGE_PIN D35 IOSTANDARD LVCMOS18} [get_ports spi2_cipo] ; ## LA28_N IO_L13N_T2L_N1_GC_QBC_68
|
||||
set_property -dict {PACKAGE_PIN A32 IOSTANDARD LVCMOS18} [get_ports spi2_cs0] ; ## LA31_P IO_L18P_T2U_N10_AD2P_68
|
||||
set_property -dict {PACKAGE_PIN A33 IOSTANDARD LVCMOS18} [get_ports spi2_cs1] ; ## LA31_N IO_L18N_T2U_N11_AD2N_68
|
||||
set_property -dict {PACKAGE_PIN AK22 IOSTANDARD LVCMOS18} [get_ports spi2_cs2] ; ## LA30_P IO_L24P_T3U_N10_67
|
||||
set_property -dict {PACKAGE_PIN AK23 IOSTANDARD LVCMOS18} [get_ports spi2_cs3] ; ## LA30_N IO_L24N_T3U_N11_67
|
||||
set_property -dict {PACKAGE_PIN D32 IOSTANDARD LVCMOS18} [get_ports spi2_cs4] ; ## LA33_P IO_L17P_T2U_N8_AD10P_68
|
||||
set_property -dict {PACKAGE_PIN C32 IOSTANDARD LVCMOS18} [get_ports spi2_cs5] ; ## LA33_N IO_L17N_T2U_N9_AD10N_68
|
||||
set_property -dict {PACKAGE_PIN G33 IOSTANDARD LVCMOS18} [get_ports spi2_cs6] ; ## LA32_P IO_L9P_T1L_N4_AD12P_68
|
||||
set_property -dict {PACKAGE_PIN G34 IOSTANDARD LVCMOS18} [get_ports spi2_cs7] ; ## LA32_N IO_L9N_T1L_N5_AD12N_68
|
|
@ -0,0 +1,29 @@
|
|||
|
||||
source ../../scripts/adi_env.tcl
|
||||
source $ad_hdl_dir/projects/scripts/adi_project_xilinx.tcl
|
||||
source $ad_hdl_dir/projects/scripts/adi_board.tcl
|
||||
|
||||
adi_project_create adrv9009zu11eg_xmicrowave 0 [list \
|
||||
JESD_RX_M 8 \
|
||||
JESD_RX_L 4 \
|
||||
JESD_RX_S 1 \
|
||||
JESD_TX_M 8 \
|
||||
JESD_TX_L 8 \
|
||||
JESD_TX_S 1 \
|
||||
JESD_OBS_M 4 \
|
||||
JESD_OBS_L 4 \
|
||||
JESD_OBS_S 1 \
|
||||
] "xczu11eg-ffvf1517-2-i"
|
||||
|
||||
adi_project_files adrv9009zu11eg_xmicrowave [list \
|
||||
"system_top.v" \
|
||||
"system_constr.xdc"\
|
||||
"../common/adrv9009zu11eg_spi.v" \
|
||||
"../common/adrv9009zu11eg_constr.xdc" \
|
||||
"../common/adrv2crr_fmc_constr.xdc" \
|
||||
"$ad_hdl_dir/library/common/ad_iobuf.v" ]
|
||||
|
||||
## To improve timing in DDR4 MIG
|
||||
set_property strategy Performance_ExploreWithRemap [get_runs impl_1]
|
||||
|
||||
adi_project_run adrv9009zu11eg_xmicrowave
|
|
@ -0,0 +1,658 @@
|
|||
// ***************************************************************************
|
||||
// ***************************************************************************
|
||||
// Copyright 2021 (c) Analog Devices, Inc. All rights reserved.
|
||||
//
|
||||
// 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 responsabilities 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 fan_tach,
|
||||
output fan_pwm,
|
||||
input i2s_sdata_in,
|
||||
output i2s_sdata_out,
|
||||
output i2s_mclk,
|
||||
output i2s_bclk,
|
||||
output i2s_lrclk,
|
||||
inout pmod0_d0,
|
||||
inout pmod0_d1,
|
||||
inout pmod0_d2,
|
||||
inout pmod0_d3,
|
||||
inout pmod0_d4,
|
||||
inout pmod0_d5,
|
||||
inout pmod0_d6,
|
||||
inout pmod0_d7,
|
||||
output gpio_0_exp_n, //CS0n
|
||||
output gpio_0_exp_p, //MOSI
|
||||
input gpio_1_exp_n, //MISO
|
||||
output gpio_1_exp_p, //SCK
|
||||
output gpio_2_exp_n, //CS2n
|
||||
output gpio_2_exp_p, //CS2p
|
||||
output led_gpio_0,
|
||||
output led_gpio_1,
|
||||
output led_gpio_2,
|
||||
output led_gpio_3,
|
||||
inout dip_gpio_0,
|
||||
inout dip_gpio_1,
|
||||
inout dip_gpio_2,
|
||||
inout dip_gpio_3,
|
||||
inout pb_gpio_0,
|
||||
inout pb_gpio_1,
|
||||
inout pb_gpio_2,
|
||||
inout pb_gpio_3,
|
||||
output resetb_ad9545,
|
||||
output hmc7044_car_reset,
|
||||
inout hmc7044_car_gpio_1,
|
||||
inout hmc7044_car_gpio_2,
|
||||
inout hmc7044_car_gpio_3,
|
||||
inout hmc7044_car_gpio_4,
|
||||
output spi_csn_hmc7044_car,
|
||||
|
||||
inout i2c0_scl,
|
||||
inout i2c0_sda,
|
||||
|
||||
inout i2c1_scl,
|
||||
inout i2c1_sda,
|
||||
|
||||
input oscout_p,
|
||||
input oscout_n,
|
||||
|
||||
input ref_clk_a_p,
|
||||
input ref_clk_a_n,
|
||||
input core_clk_a_p,
|
||||
input core_clk_a_n,
|
||||
input [ 3:0] rx_data_a_p,
|
||||
input [ 3:0] rx_data_a_n,
|
||||
output [ 3:0] tx_data_a_p,
|
||||
output [ 3:0] tx_data_a_n,
|
||||
|
||||
output rx_sync_a_p,
|
||||
output rx_sync_a_n,
|
||||
output rx_os_sync_a_p,
|
||||
output rx_os_sync_a_n,
|
||||
input tx_sync_a_p,
|
||||
input tx_sync_a_n,
|
||||
input tx_sync_a_1_p,
|
||||
input tx_sync_a_1_n,
|
||||
input sysref_a_p,
|
||||
input sysref_a_n,
|
||||
|
||||
inout adrv9009_tx1_enable_a,
|
||||
inout adrv9009_tx2_enable_a,
|
||||
inout adrv9009_rx1_enable_a,
|
||||
inout adrv9009_rx2_enable_a,
|
||||
inout adrv9009_test_a,
|
||||
inout adrv9009_reset_b_a,
|
||||
inout adrv9009_gpint_a,
|
||||
|
||||
inout adrv9009_gpio_00_a,
|
||||
inout adrv9009_gpio_01_a,
|
||||
inout adrv9009_gpio_02_a,
|
||||
inout adrv9009_gpio_03_a,
|
||||
inout adrv9009_gpio_04_a,
|
||||
inout adrv9009_gpio_05_a,
|
||||
inout adrv9009_gpio_06_a,
|
||||
inout adrv9009_gpio_07_a,
|
||||
inout adrv9009_gpio_15_a,
|
||||
inout adrv9009_gpio_08_a,
|
||||
inout adrv9009_gpio_09_a,
|
||||
inout adrv9009_gpio_10_a,
|
||||
inout adrv9009_gpio_11_a,
|
||||
inout adrv9009_gpio_12_a,
|
||||
inout adrv9009_gpio_14_a,
|
||||
inout adrv9009_gpio_13_a,
|
||||
inout adrv9009_gpio_17_a,
|
||||
inout adrv9009_gpio_16_a,
|
||||
inout adrv9009_gpio_18_a,
|
||||
|
||||
input ref_clk_b_p,
|
||||
input ref_clk_b_n,
|
||||
input core_clk_b_p,
|
||||
input core_clk_b_n,
|
||||
input [ 3:0] rx_data_b_p,
|
||||
input [ 3:0] rx_data_b_n,
|
||||
output [ 3:0] tx_data_b_p,
|
||||
output [ 3:0] tx_data_b_n,
|
||||
|
||||
output rx_sync_b_p,
|
||||
output rx_sync_b_n,
|
||||
output rx_os_sync_b_p,
|
||||
output rx_os_sync_b_n,
|
||||
input tx_sync_b_p,
|
||||
input tx_sync_b_n,
|
||||
input tx_sync_b_1_p,
|
||||
input tx_sync_b_1_n,
|
||||
input sysref_b_p,
|
||||
input sysref_b_n,
|
||||
|
||||
inout adrv9009_tx1_enable_b,
|
||||
inout adrv9009_tx2_enable_b,
|
||||
inout adrv9009_rx1_enable_b,
|
||||
inout adrv9009_rx2_enable_b,
|
||||
inout adrv9009_test_b,
|
||||
inout adrv9009_reset_b_b,
|
||||
inout adrv9009_gpint_b,
|
||||
|
||||
inout adrv9009_gpio_00_b,
|
||||
inout adrv9009_gpio_01_b,
|
||||
inout adrv9009_gpio_02_b,
|
||||
inout adrv9009_gpio_03_b,
|
||||
inout adrv9009_gpio_04_b,
|
||||
inout adrv9009_gpio_05_b,
|
||||
inout adrv9009_gpio_06_b,
|
||||
inout adrv9009_gpio_07_b,
|
||||
inout adrv9009_gpio_15_b,
|
||||
inout adrv9009_gpio_08_b,
|
||||
inout adrv9009_gpio_09_b,
|
||||
inout adrv9009_gpio_10_b,
|
||||
inout adrv9009_gpio_11_b,
|
||||
inout adrv9009_gpio_12_b,
|
||||
inout adrv9009_gpio_14_b,
|
||||
inout adrv9009_gpio_13_b,
|
||||
inout adrv9009_gpio_17_b,
|
||||
inout adrv9009_gpio_16_b,
|
||||
inout adrv9009_gpio_18_b,
|
||||
|
||||
output hmc7044_reset,
|
||||
output hmc7044_sync,
|
||||
inout hmc7044_gpio_1,
|
||||
inout hmc7044_gpio_2,
|
||||
inout hmc7044_gpio_3,
|
||||
inout hmc7044_gpio_4,
|
||||
|
||||
output spi_csn_adrv9009_a,
|
||||
output spi_csn_adrv9009_b,
|
||||
output spi_csn_hmc7044,
|
||||
|
||||
input ddr4_ref_1_clk_n,
|
||||
input ddr4_ref_1_clk_p,
|
||||
|
||||
output ddr4_rtl_1_act_n,
|
||||
output [16:0] ddr4_rtl_1_adr,
|
||||
output [1:0] ddr4_rtl_1_ba,
|
||||
output [0:0] ddr4_rtl_1_bg,
|
||||
output [0:0] ddr4_rtl_1_ck_c,
|
||||
output [0:0] ddr4_rtl_1_ck_t,
|
||||
output [0:0] ddr4_rtl_1_cke,
|
||||
output [0:0] ddr4_rtl_1_cs_n,
|
||||
inout [3:0] ddr4_rtl_1_dm_n,
|
||||
inout [31:0] ddr4_rtl_1_dq,
|
||||
inout [3:0] ddr4_rtl_1_dqs_c,
|
||||
inout [3:0] ddr4_rtl_1_dqs_t,
|
||||
output [0:0] ddr4_rtl_1_odt,
|
||||
output ddr4_rtl_1_reset_n,
|
||||
output ddr4_rtl_1_par,
|
||||
input ddr4_rtl_1_alert_n,
|
||||
|
||||
output spi_clk,
|
||||
inout spi_sdio,
|
||||
input spi_miso,
|
||||
|
||||
//iic
|
||||
|
||||
output sclout1,
|
||||
inout sdaout1,
|
||||
output sclout2,
|
||||
inout sdaout2,
|
||||
|
||||
//spi
|
||||
|
||||
output spi1_clk,
|
||||
output spi1_copi,
|
||||
input spi1_cipo,
|
||||
output spi1_cs0,
|
||||
output spi1_cs1,
|
||||
output spi1_cs2,
|
||||
output spi1_cs3,
|
||||
output spi1_cs4,
|
||||
output spi1_cs5,
|
||||
output spi1_cs6,
|
||||
output spi1_cs7,
|
||||
|
||||
output spi2_clk,
|
||||
output spi2_copi,
|
||||
input spi2_cipo,
|
||||
output spi2_cs0,
|
||||
output spi2_cs1,
|
||||
output spi2_cs2,
|
||||
output spi2_cs3,
|
||||
output spi2_cs4,
|
||||
output spi2_cs5,
|
||||
output spi2_cs6,
|
||||
output spi2_cs7,
|
||||
|
||||
// gpio
|
||||
|
||||
inout gpio0,
|
||||
inout gpio1,
|
||||
inout gpio2,
|
||||
inout gpio3,
|
||||
inout gpio4,
|
||||
inout gpio5,
|
||||
inout gpio6,
|
||||
inout gpio7,
|
||||
|
||||
// gpio dir
|
||||
|
||||
inout dir_gpio0,
|
||||
inout dir_gpio1,
|
||||
inout dir_gpio2,
|
||||
inout dir_gpio3,
|
||||
inout dir_gpio4,
|
||||
inout dir_gpio5,
|
||||
inout dir_gpio6,
|
||||
inout dir_gpio7
|
||||
);
|
||||
|
||||
|
||||
// internal signals
|
||||
|
||||
wire [94:0] gpio_i;
|
||||
wire [94:0] gpio_o;
|
||||
wire [94:0] gpio_t;
|
||||
|
||||
wire [63:0] xmicrowave_gpio_i;
|
||||
wire [63:0] xmicrowave_gpio_o;
|
||||
wire [63:0] xmicrowave_gpio_t;
|
||||
|
||||
wire [2:0] spi_csn;
|
||||
wire [7:0] spi1_csn;
|
||||
wire [7:0] spi2_csn;
|
||||
|
||||
wire ref_clk_a;
|
||||
wire core_clk_a;
|
||||
wire rx_sync_rx;
|
||||
wire tx_sync_a;
|
||||
wire sysref_a;
|
||||
wire ref_clk_b;
|
||||
wire core_clk_b;
|
||||
wire rx_sync_obs;
|
||||
wire rx_os_sync_b;
|
||||
wire tx_sync_b;
|
||||
wire sysref_b;
|
||||
wire tx_sync;
|
||||
|
||||
reg [7:0] spi_3_to_8_csn;
|
||||
|
||||
always @(*) begin
|
||||
case (spi_csn)
|
||||
3'h0: spi_3_to_8_csn = 8'b11111110;
|
||||
3'h1: spi_3_to_8_csn = 8'b11111101;
|
||||
3'h2: spi_3_to_8_csn = 8'b11111011;
|
||||
3'h3: spi_3_to_8_csn = 8'b11110111;
|
||||
3'h4: spi_3_to_8_csn = 8'b11101111;
|
||||
3'h5: spi_3_to_8_csn = 8'b11011111;
|
||||
3'h6: spi_3_to_8_csn = 8'b10111111;
|
||||
default: spi_3_to_8_csn = 8'b11111111;
|
||||
endcase
|
||||
end
|
||||
|
||||
assign spi_csn_adrv9009_a = spi_3_to_8_csn[0];
|
||||
assign spi_csn_adrv9009_b = spi_3_to_8_csn[1];
|
||||
assign spi_csn_hmc7044 = spi_3_to_8_csn[2];
|
||||
assign spi_csn_hmc7044_car = spi_3_to_8_csn[3];
|
||||
assign gpio_0_exp_n = spi_3_to_8_csn[4];
|
||||
assign gpio_1_exp_p = spi_clk;
|
||||
assign gpio_0_exp_p = spi_3_to_8_csn[4] == 1'b0 ? spi_mosi : 1'bZ;
|
||||
assign spi_miso_s = spi_3_to_8_csn[4] == 1'b0 ? gpio_1_exp_n : spi_miso;
|
||||
assign gpio_2_exp_n = spi_3_to_8_csn[5];
|
||||
assign gpio_2_exp_p = spi_3_to_8_csn[6];
|
||||
|
||||
assign spi1_cs0 = spi1_csn[0];
|
||||
assign spi1_cs1 = spi1_csn[1];
|
||||
assign spi1_cs2 = spi1_csn[2];
|
||||
assign spi1_cs3 = spi1_csn[3];
|
||||
assign spi1_cs4 = spi1_csn[4];
|
||||
assign spi1_cs5 = spi1_csn[5];
|
||||
assign spi1_cs6 = spi1_csn[6];
|
||||
assign spi1_cs7 = spi1_csn[7];
|
||||
|
||||
assign spi2_cs0 = spi2_csn[0];
|
||||
assign spi2_cs1 = spi2_csn[1];
|
||||
assign spi2_cs2 = spi2_csn[2];
|
||||
assign spi2_cs3 = spi2_csn[3];
|
||||
assign spi2_cs4 = spi2_csn[4];
|
||||
assign spi2_cs5 = spi2_csn[5];
|
||||
assign spi2_cs6 = spi2_csn[6];
|
||||
assign spi2_cs7 = spi2_csn[7];
|
||||
|
||||
adrv9009zu11eg_spi i_spi (
|
||||
.spi_csn(spi_3_to_8_csn),
|
||||
.spi_clk(spi_clk),
|
||||
.spi_mosi(spi_mosi),
|
||||
.spi_miso_i(spi_miso_s),
|
||||
.spi_miso_o(spi0_miso),
|
||||
.spi_sdio(spi_sdio));
|
||||
|
||||
assign tx_sync = tx_sync_a & tx_sync_b;
|
||||
|
||||
assign gpio_i[94:90] = gpio_o[94:90];
|
||||
assign gpio_i[31:28] = gpio_o[31:28];
|
||||
assign gpio_i[21:20] = gpio_o[21:20];
|
||||
|
||||
assign xmicrowave_gpio_i[63:16] = xmicrowave_gpio_o[63:16];
|
||||
|
||||
ad_iobuf #(.DATA_WIDTH(16)) i_xmicrowave_iobuf (
|
||||
.dio_t ({xmicrowave_gpio_t[15:0]}),
|
||||
.dio_i ({xmicrowave_gpio_o[15:0]}),
|
||||
.dio_o ({xmicrowave_gpio_i[15:0]}),
|
||||
.dio_p ({
|
||||
dir_gpio7, // 15
|
||||
dir_gpio6, // 14
|
||||
dir_gpio5, // 13
|
||||
dir_gpio4, // 12
|
||||
dir_gpio3, // 11
|
||||
dir_gpio2, // 10
|
||||
dir_gpio1, // 09
|
||||
dir_gpio0, // 08
|
||||
gpio7, // 07
|
||||
gpio6, // 06
|
||||
gpio5, // 05
|
||||
gpio4, // 04
|
||||
gpio3, // 03
|
||||
gpio2, // 02
|
||||
gpio1, // 01
|
||||
gpio0})); // 00
|
||||
|
||||
ad_iobuf #(.DATA_WIDTH(58)) i_iobuf (
|
||||
.dio_t ({gpio_t[89:32]}),
|
||||
.dio_i ({gpio_o[89:32]}),
|
||||
.dio_o ({gpio_i[89:32]}),
|
||||
.dio_p ({
|
||||
hmc7044_gpio_4, // 89
|
||||
hmc7044_gpio_3, // 88
|
||||
hmc7044_gpio_1, // 87
|
||||
hmc7044_gpio_2, // 86
|
||||
hmc7044_sync, // 85
|
||||
hmc7044_reset, // 84
|
||||
adrv9009_tx2_enable_b, // 83
|
||||
adrv9009_tx1_enable_b, // 82
|
||||
adrv9009_rx2_enable_b, // 81
|
||||
adrv9009_rx1_enable_b, // 80
|
||||
adrv9009_test_b, // 79
|
||||
adrv9009_reset_b_b, // 78
|
||||
adrv9009_gpint_b, // 77
|
||||
adrv9009_gpio_18_b, // 77
|
||||
adrv9009_gpio_17_b, // 75
|
||||
adrv9009_gpio_16_b, // 74
|
||||
adrv9009_gpio_15_b, // 73
|
||||
adrv9009_gpio_14_b, // 72
|
||||
adrv9009_gpio_13_b, // 71
|
||||
adrv9009_gpio_12_b, // 70
|
||||
adrv9009_gpio_11_b, // 69
|
||||
adrv9009_gpio_10_b, // 68
|
||||
adrv9009_gpio_09_b, // 67
|
||||
adrv9009_gpio_08_b, // 66
|
||||
adrv9009_gpio_07_b, // 65
|
||||
adrv9009_gpio_06_b, // 64
|
||||
adrv9009_gpio_05_b, // 63
|
||||
adrv9009_gpio_04_b, // 62
|
||||
adrv9009_gpio_03_b, // 61
|
||||
adrv9009_gpio_02_b, // 60
|
||||
adrv9009_gpio_01_b, // 58
|
||||
adrv9009_gpio_00_b, // 58
|
||||
adrv9009_tx2_enable_a, // 57
|
||||
adrv9009_tx1_enable_a, // 56
|
||||
adrv9009_rx2_enable_a, // 55
|
||||
adrv9009_rx1_enable_a, // 54
|
||||
adrv9009_test_a, // 53
|
||||
adrv9009_reset_b_a, // 52
|
||||
adrv9009_gpint_a, // 51
|
||||
adrv9009_gpio_18_a, // 50
|
||||
adrv9009_gpio_17_a, // 49
|
||||
adrv9009_gpio_16_a, // 48
|
||||
adrv9009_gpio_15_a, // 47
|
||||
adrv9009_gpio_14_a, // 46
|
||||
adrv9009_gpio_13_a, // 45
|
||||
adrv9009_gpio_12_a, // 44
|
||||
adrv9009_gpio_11_a, // 43
|
||||
adrv9009_gpio_10_a, // 42
|
||||
adrv9009_gpio_09_a, // 41
|
||||
adrv9009_gpio_08_a, // 40
|
||||
adrv9009_gpio_07_a, // 39
|
||||
adrv9009_gpio_06_a, // 38
|
||||
adrv9009_gpio_05_a, // 37
|
||||
adrv9009_gpio_04_a, // 36
|
||||
adrv9009_gpio_03_a, // 35
|
||||
adrv9009_gpio_02_a, // 34
|
||||
adrv9009_gpio_01_a, // 33
|
||||
adrv9009_gpio_00_a})); // 32
|
||||
|
||||
ad_iobuf #(.DATA_WIDTH(6)) i_carrier_iobuf_0 (
|
||||
.dio_t ({gpio_t[27:22]}),
|
||||
.dio_i ({gpio_o[27:22]}),
|
||||
.dio_o ({gpio_i[27:22]}),
|
||||
.dio_p ({
|
||||
hmc7044_car_gpio_4, // 27
|
||||
hmc7044_car_gpio_3, // 26
|
||||
hmc7044_car_gpio_2, // 25
|
||||
hmc7044_car_gpio_1, // 24
|
||||
hmc7044_car_reset, // 23
|
||||
resetb_ad9545})); // 22
|
||||
|
||||
ad_iobuf #(.DATA_WIDTH(20)) i_carrier_iobuf_1 (
|
||||
.dio_t ({gpio_t[19:0]}),
|
||||
.dio_i ({gpio_o[19:0]}),
|
||||
.dio_o ({gpio_i[19:0]}),
|
||||
.dio_p ({
|
||||
pmod0_d7, // 19
|
||||
pmod0_d6, // 18
|
||||
pmod0_d5, // 17
|
||||
pmod0_d4, // 16
|
||||
pmod0_d3, // 15
|
||||
pmod0_d2, // 14
|
||||
pmod0_d1, // 13
|
||||
pmod0_d0, // 12
|
||||
led_gpio_3, // 11
|
||||
led_gpio_2, // 10
|
||||
led_gpio_1, // 9
|
||||
led_gpio_0, // 8
|
||||
dip_gpio_3, // 7
|
||||
dip_gpio_2, // 6
|
||||
dip_gpio_1, // 5
|
||||
dip_gpio_0, // 4
|
||||
pb_gpio_3, // 3
|
||||
pb_gpio_2, // 2
|
||||
pb_gpio_1, // 1
|
||||
pb_gpio_0})); // 0
|
||||
|
||||
IBUFDS_GTE4 i_ibufds_ref_clk_1 (
|
||||
.CEB (1'd0),
|
||||
.I (ref_clk_a_p),
|
||||
.IB (ref_clk_a_n),
|
||||
.O (ref_clk_a),
|
||||
.ODIV2 ());
|
||||
|
||||
IBUFDS_GTE4 i_ibufds_ref_clk_2 (
|
||||
.CEB (1'd0),
|
||||
.I (ref_clk_b_p),
|
||||
.IB (ref_clk_b_n),
|
||||
.O (ref_clk_b),
|
||||
.ODIV2 ());
|
||||
|
||||
IBUFDS i_ibufds_sysref_1 (
|
||||
.I (sysref_a_p),
|
||||
.IB (sysref_a_n),
|
||||
.O (sysref_a));
|
||||
|
||||
IBUFDS i_ibufds_sysref_2 (
|
||||
.I (sysref_b_p),
|
||||
.IB (sysref_b_n),
|
||||
.O (sysref_b));
|
||||
|
||||
IBUFGDS i_rx_clk_ibufg_1 (
|
||||
.I (core_clk_a_p),
|
||||
.IB (core_clk_a_n),
|
||||
.O (core_clk_a));
|
||||
|
||||
IBUFGDS i_rx_clk_ibufg_2 (
|
||||
.I (core_clk_b_p),
|
||||
.IB (core_clk_b_n),
|
||||
.O (core_clk_b));
|
||||
|
||||
IBUFDS i_ibufds_tx_sync_1 (
|
||||
.I (tx_sync_a_p),
|
||||
.IB (tx_sync_a_n),
|
||||
.O (tx_sync_a));
|
||||
|
||||
IBUFDS i_ibufds_tx_sync_2 (
|
||||
.I (tx_sync_b_p),
|
||||
.IB (tx_sync_b_n),
|
||||
.O (tx_sync_b));
|
||||
|
||||
OBUFDS i_obufds_rx_sync_1 (
|
||||
.I (rx_sync_rx),
|
||||
.O (rx_sync_a_p),
|
||||
.OB (rx_sync_a_n));
|
||||
|
||||
OBUFDS i_obufds_rx_os_sync_1 (
|
||||
.I (rx_sync_obs),
|
||||
.O (rx_os_sync_a_p),
|
||||
.OB (rx_os_sync_a_n));
|
||||
|
||||
OBUFDS i_obufds_rx_sync_2 (
|
||||
.I (rx_sync_rx),
|
||||
.O (rx_sync_b_p),
|
||||
.OB (rx_sync_b_n));
|
||||
|
||||
OBUFDS i_obufds_rx_os_sync_2 (
|
||||
.I (rx_sync_obs),
|
||||
.O (rx_os_sync_b_p),
|
||||
.OB (rx_os_sync_b_n));
|
||||
|
||||
system_wrapper i_system_wrapper (
|
||||
.gpio_i (gpio_i),
|
||||
.gpio_o (gpio_o),
|
||||
.gpio_t (gpio_t),
|
||||
|
||||
.ddr4_rtl_1_act_n(ddr4_rtl_1_act_n),
|
||||
.ddr4_rtl_1_adr(ddr4_rtl_1_adr),
|
||||
.ddr4_rtl_1_ba(ddr4_rtl_1_ba),
|
||||
.ddr4_rtl_1_bg(ddr4_rtl_1_bg),
|
||||
.ddr4_rtl_1_ck_c(ddr4_rtl_1_ck_c),
|
||||
.ddr4_rtl_1_ck_t(ddr4_rtl_1_ck_t),
|
||||
.ddr4_rtl_1_cke(ddr4_rtl_1_cke),
|
||||
.ddr4_rtl_1_cs_n(ddr4_rtl_1_cs_n),
|
||||
.ddr4_rtl_1_dm_n(ddr4_rtl_1_dm_n),
|
||||
.ddr4_rtl_1_dq(ddr4_rtl_1_dq),
|
||||
.ddr4_rtl_1_dqs_c(ddr4_rtl_1_dqs_c),
|
||||
.ddr4_rtl_1_dqs_t(ddr4_rtl_1_dqs_t),
|
||||
.ddr4_rtl_1_odt(ddr4_rtl_1_odt),
|
||||
.ddr4_rtl_1_reset_n(ddr4_rtl_1_reset_n),
|
||||
.ddr4_ref_1_clk_n(ddr4_ref_1_clk_n),
|
||||
.ddr4_ref_1_clk_p(ddr4_ref_1_clk_p),
|
||||
.sys_reset(1'b0),
|
||||
.core_clk_a(core_clk_a),
|
||||
.core_clk_b(core_clk_b),
|
||||
.ref_clk_a(ref_clk_a),
|
||||
.ref_clk_b(ref_clk_b),
|
||||
.rx_data_0_n (rx_data_a_n[0]),
|
||||
.rx_data_0_p (rx_data_a_p[0]),
|
||||
.rx_data_1_n (rx_data_a_n[1]),
|
||||
.rx_data_1_p (rx_data_a_p[1]),
|
||||
.rx_data_2_n (rx_data_a_n[2]),
|
||||
.rx_data_2_p (rx_data_a_p[2]),
|
||||
.rx_data_3_n (rx_data_a_n[3]),
|
||||
.rx_data_3_p (rx_data_a_p[3]),
|
||||
.rx_data_4_n (rx_data_b_n[0]),
|
||||
.rx_data_4_p (rx_data_b_p[0]),
|
||||
.rx_data_5_n (rx_data_b_n[1]),
|
||||
.rx_data_5_p (rx_data_b_p[1]),
|
||||
.rx_data_6_n (rx_data_b_n[2]),
|
||||
.rx_data_6_p (rx_data_b_p[2]),
|
||||
.rx_data_7_n (rx_data_b_n[3]),
|
||||
.rx_data_7_p (rx_data_b_p[3]),
|
||||
.rx_sync_0 (rx_sync_rx),
|
||||
.rx_sync_4 (rx_sync_obs),
|
||||
.rx_sysref_0 (sysref_b),
|
||||
.rx_sysref_4 (sysref_a),
|
||||
.tx_data_0_n (tx_data_a_n[0]),
|
||||
.tx_data_0_p (tx_data_a_p[0]),
|
||||
.tx_data_1_n (tx_data_a_n[1]),
|
||||
.tx_data_1_p (tx_data_a_p[1]),
|
||||
.tx_data_2_n (tx_data_a_n[2]),
|
||||
.tx_data_2_p (tx_data_a_p[2]),
|
||||
.tx_data_3_n (tx_data_a_n[3]),
|
||||
.tx_data_3_p (tx_data_a_p[3]),
|
||||
.tx_data_4_n (tx_data_b_n[0]),
|
||||
.tx_data_4_p (tx_data_b_p[0]),
|
||||
.tx_data_5_n (tx_data_b_n[1]),
|
||||
.tx_data_5_p (tx_data_b_p[1]),
|
||||
.tx_data_6_n (tx_data_b_n[2]),
|
||||
.tx_data_6_p (tx_data_b_p[2]),
|
||||
.tx_data_7_n (tx_data_b_n[3]),
|
||||
.tx_data_7_p (tx_data_b_p[3]),
|
||||
.tx_sync_0 (tx_sync),
|
||||
.tx_sysref_0 (sysref_a),
|
||||
.dac_fifo_bypass(gpio_o[90]),
|
||||
.i2s_bclk(i2s_bclk),
|
||||
.i2s_lrclk(i2s_lrclk),
|
||||
.i2s_mclk(i2s_mclk),
|
||||
.i2s_sdata_in(i2s_sdata_in),
|
||||
.i2s_sdata_out(i2s_sdata_out),
|
||||
.axi_fan_pwm_o(fan_pwm),
|
||||
.axi_fan_tacho_i(fan_tach),
|
||||
.spi0_csn(spi_csn),
|
||||
.spi0_miso(spi0_miso),
|
||||
.spi0_mosi(spi_mosi),
|
||||
.spi0_sclk(spi_clk),
|
||||
.spi1_clk_i (spi1_clk),
|
||||
.spi1_clk_o (spi1_clk),
|
||||
.spi1_csn_i (spi1_csn),
|
||||
.spi1_csn_o (spi1_csn),
|
||||
.spi1_sdi_i (spi1_cipo),
|
||||
.spi1_sdo_i (spi1_copi),
|
||||
.spi1_sdo_o (spi1_copi),
|
||||
.spi2_clk_i (spi2_clk),
|
||||
.spi2_clk_o (spi2_clk),
|
||||
.spi2_csn_i (spi2_csn),
|
||||
.spi2_csn_o (spi2_csn),
|
||||
.spi2_sdi_i (spi2_cipo),
|
||||
.spi2_sdo_i (spi2_copi),
|
||||
.spi2_sdo_o (spi2_copi),
|
||||
.iic_1_scl_io (sclout1),
|
||||
.iic_1_sda_io (sdaout1),
|
||||
.iic_2_scl_io (sclout2),
|
||||
.iic_2_sda_io (sdaout2),
|
||||
.xmicrowave_gpio0_o(xmicrowave_gpio_o[31:0]),
|
||||
.xmicrowave_gpio0_t(xmicrowave_gpio_t[31:0]),
|
||||
.xmicrowave_gpio0_i(xmicrowave_gpio_i[31:0]),
|
||||
.xmicrowave_gpio1_o(xmicrowave_gpio_o[63:32]),
|
||||
.xmicrowave_gpio1_t(xmicrowave_gpio_t[63:32]),
|
||||
.xmicrowave_gpio1_i(xmicrowave_gpio_i[63:32])
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
||||
// ***************************************************************************
|
||||
// ***************************************************************************
|
Loading…
Reference in New Issue