mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
Add PCIe mqnic design for ZCU106
This commit is contained in:
parent
0b3d4e7e75
commit
e6b35f0567
25
fpga/mqnic/ZCU106/fpga_pcie/Makefile
Normal file
25
fpga/mqnic/ZCU106/fpga_pcie/Makefile
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Targets
|
||||||
|
TARGETS:=
|
||||||
|
|
||||||
|
# Subdirectories
|
||||||
|
SUBDIRS = fpga
|
||||||
|
SUBDIRS_CLEAN = $(patsubst %,%.clean,$(SUBDIRS))
|
||||||
|
|
||||||
|
# Rules
|
||||||
|
.PHONY: all
|
||||||
|
all: $(SUBDIRS) $(TARGETS)
|
||||||
|
|
||||||
|
.PHONY: $(SUBDIRS)
|
||||||
|
$(SUBDIRS):
|
||||||
|
cd $@ && $(MAKE)
|
||||||
|
|
||||||
|
.PHONY: $(SUBDIRS_CLEAN)
|
||||||
|
$(SUBDIRS_CLEAN):
|
||||||
|
cd $(@:.clean=) && $(MAKE) clean
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean: $(SUBDIRS_CLEAN)
|
||||||
|
-rm -rf $(TARGETS)
|
||||||
|
|
||||||
|
program:
|
||||||
|
#djtgcfg prog -d Atlys --index 0 --file fpga/fpga.bit
|
24
fpga/mqnic/ZCU106/fpga_pcie/README.md
Normal file
24
fpga/mqnic/ZCU106/fpga_pcie/README.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Corundum mqnic for ZCU106
|
||||||
|
|
||||||
|
## Introduction
|
||||||
|
|
||||||
|
This design targets the Xilinx ZCU106 FPGA board.
|
||||||
|
|
||||||
|
FPGA: xczu7ev-ffvc1156-2-e
|
||||||
|
PHY: 10G BASE-R PHY IP core and internal GTH transceiver
|
||||||
|
|
||||||
|
## How to build
|
||||||
|
|
||||||
|
Run make to build. Ensure that the Xilinx Vivado toolchain components are
|
||||||
|
in PATH.
|
||||||
|
|
||||||
|
Run make to build the driver. Ensure the headers for the running kernel are
|
||||||
|
installed, otherwise the driver cannot be compiled.
|
||||||
|
|
||||||
|
## How to test
|
||||||
|
|
||||||
|
Run make program to program the ZCU106 board with Vivado. Then load the
|
||||||
|
driver with insmod mqnic.ko. Check dmesg for output from driver
|
||||||
|
initialization.
|
||||||
|
|
||||||
|
|
123
fpga/mqnic/ZCU106/fpga_pcie/common/vivado.mk
Normal file
123
fpga/mqnic/ZCU106/fpga_pcie/common/vivado.mk
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
###################################################################
|
||||||
|
#
|
||||||
|
# Xilinx Vivado FPGA Makefile
|
||||||
|
#
|
||||||
|
# Copyright (c) 2016 Alex Forencich
|
||||||
|
#
|
||||||
|
###################################################################
|
||||||
|
#
|
||||||
|
# Parameters:
|
||||||
|
# FPGA_TOP - Top module name
|
||||||
|
# FPGA_FAMILY - FPGA family (e.g. VirtexUltrascale)
|
||||||
|
# FPGA_DEVICE - FPGA device (e.g. xcvu095-ffva2104-2-e)
|
||||||
|
# SYN_FILES - space-separated list of source files
|
||||||
|
# INC_FILES - space-separated list of include files
|
||||||
|
# XDC_FILES - space-separated list of timing constraint files
|
||||||
|
# XCI_FILES - space-separated list of IP XCI files
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# FPGA_TOP = fpga
|
||||||
|
# FPGA_FAMILY = VirtexUltrascale
|
||||||
|
# FPGA_DEVICE = xcvu095-ffva2104-2-e
|
||||||
|
# SYN_FILES = rtl/fpga.v
|
||||||
|
# XDC_FILES = fpga.xdc
|
||||||
|
# XCI_FILES = ip/pcspma.xci
|
||||||
|
# include ../common/vivado.mk
|
||||||
|
#
|
||||||
|
###################################################################
|
||||||
|
|
||||||
|
# phony targets
|
||||||
|
.PHONY: clean fpga
|
||||||
|
|
||||||
|
# prevent make from deleting intermediate files and reports
|
||||||
|
.PRECIOUS: %.xpr %.bit %.mcs %.prm
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
CONFIG ?= config.mk
|
||||||
|
-include ../$(CONFIG)
|
||||||
|
|
||||||
|
SYN_FILES_REL = $(patsubst %, ../%, $(SYN_FILES))
|
||||||
|
INC_FILES_REL = $(patsubst %, ../%, $(INC_FILES))
|
||||||
|
XCI_FILES_REL = $(patsubst %, ../%, $(XCI_FILES))
|
||||||
|
IP_TCL_FILES_REL = $(patsubst %, ../%, $(IP_TCL_FILES))
|
||||||
|
|
||||||
|
ifdef XDC_FILES
|
||||||
|
XDC_FILES_REL = $(patsubst %, ../%, $(XDC_FILES))
|
||||||
|
else
|
||||||
|
XDC_FILES_REL = $(FPGA_TOP).xdc
|
||||||
|
endif
|
||||||
|
|
||||||
|
###################################################################
|
||||||
|
# Main Targets
|
||||||
|
#
|
||||||
|
# all: build everything
|
||||||
|
# clean: remove output files and project files
|
||||||
|
###################################################################
|
||||||
|
|
||||||
|
all: fpga
|
||||||
|
|
||||||
|
fpga: $(FPGA_TOP).bit
|
||||||
|
|
||||||
|
vivado: $(FPGA_TOP).xpr
|
||||||
|
vivado $(FPGA_TOP).xpr
|
||||||
|
|
||||||
|
tmpclean:
|
||||||
|
-rm -rf *.log *.jou *.cache *.hbs *.hw *.ip_user_files *.runs *.xpr *.html *.xml *.sim *.srcs *.str .Xil defines.v
|
||||||
|
-rm -rf create_project.tcl run_synth.tcl run_impl.tcl generate_bit.tcl
|
||||||
|
|
||||||
|
clean: tmpclean
|
||||||
|
-rm -rf *.bit program.tcl generate_mcs.tcl *.mcs *.prm flash.tcl
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
-rm -rf rev
|
||||||
|
|
||||||
|
###################################################################
|
||||||
|
# Target implementations
|
||||||
|
###################################################################
|
||||||
|
|
||||||
|
# Vivado project file
|
||||||
|
%.xpr: Makefile $(XCI_FILES_REL) $(IP_TCL_FILES_REL)
|
||||||
|
rm -rf defines.v
|
||||||
|
touch defines.v
|
||||||
|
for x in $(DEFS); do echo '`define' $$x >> defines.v; done
|
||||||
|
echo "create_project -force -part $(FPGA_PART) $*" > create_project.tcl
|
||||||
|
echo "add_files -fileset sources_1 defines.v" >> create_project.tcl
|
||||||
|
for x in $(SYN_FILES_REL); do echo "add_files -fileset sources_1 $$x" >> create_project.tcl; done
|
||||||
|
for x in $(XDC_FILES_REL); do echo "add_files -fileset constrs_1 $$x" >> create_project.tcl; done
|
||||||
|
for x in $(XCI_FILES_REL); do echo "import_ip $$x" >> create_project.tcl; done
|
||||||
|
for x in $(IP_TCL_FILES_REL); do echo "source $$x" >> create_project.tcl; done
|
||||||
|
echo "exit" >> create_project.tcl
|
||||||
|
vivado -nojournal -nolog -mode batch -source create_project.tcl
|
||||||
|
|
||||||
|
# synthesis run
|
||||||
|
%.runs/synth_1/%.dcp: %.xpr $(SYN_FILES_REL) $(INC_FILES_REL) $(XDC_FILES_REL)
|
||||||
|
echo "open_project $*.xpr" > run_synth.tcl
|
||||||
|
echo "reset_run synth_1" >> run_synth.tcl
|
||||||
|
echo "launch_runs synth_1" >> run_synth.tcl
|
||||||
|
echo "wait_on_run synth_1" >> run_synth.tcl
|
||||||
|
echo "exit" >> run_synth.tcl
|
||||||
|
vivado -nojournal -nolog -mode batch -source run_synth.tcl
|
||||||
|
|
||||||
|
# implementation run
|
||||||
|
%.runs/impl_1/%_routed.dcp: %.runs/synth_1/%.dcp
|
||||||
|
echo "open_project $*.xpr" > run_impl.tcl
|
||||||
|
echo "reset_run impl_1" >> run_impl.tcl
|
||||||
|
echo "launch_runs impl_1" >> run_impl.tcl
|
||||||
|
echo "wait_on_run impl_1" >> run_impl.tcl
|
||||||
|
echo "exit" >> run_impl.tcl
|
||||||
|
vivado -nojournal -nolog -mode batch -source run_impl.tcl
|
||||||
|
|
||||||
|
# bit file
|
||||||
|
%.bit: %.runs/impl_1/%_routed.dcp
|
||||||
|
echo "open_project $*.xpr" > generate_bit.tcl
|
||||||
|
echo "open_run impl_1" >> generate_bit.tcl
|
||||||
|
echo "write_bitstream -force $*.bit" >> generate_bit.tcl
|
||||||
|
echo "exit" >> generate_bit.tcl
|
||||||
|
vivado -nojournal -nolog -mode batch -source generate_bit.tcl
|
||||||
|
mkdir -p rev
|
||||||
|
EXT=bit; COUNT=100; \
|
||||||
|
while [ -e rev/$*_rev$$COUNT.$$EXT ]; \
|
||||||
|
do COUNT=$$((COUNT+1)); done; \
|
||||||
|
cp $@ rev/$*_rev$$COUNT.$$EXT; \
|
||||||
|
echo "Output: rev/$*_rev$$COUNT.$$EXT";
|
100
fpga/mqnic/ZCU106/fpga_pcie/fpga.xdc
Normal file
100
fpga/mqnic/ZCU106/fpga_pcie/fpga.xdc
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
# XDC constraints for the Xilinx ZCU106 board
|
||||||
|
# part: xczu7ev-ffvc1156-2-e
|
||||||
|
|
||||||
|
# General configuration
|
||||||
|
set_property BITSTREAM.GENERAL.COMPRESS true [current_design]
|
||||||
|
|
||||||
|
# System clocks
|
||||||
|
# 125 MHz
|
||||||
|
set_property -dict {LOC H9 IOSTANDARD LVDS} [get_ports clk_125mhz_p]
|
||||||
|
set_property -dict {LOC G9 IOSTANDARD LVDS} [get_ports clk_125mhz_n]
|
||||||
|
create_clock -period 8.000 -name clk_125mhz [get_ports clk_125mhz_p]
|
||||||
|
|
||||||
|
# LEDs
|
||||||
|
set_property -dict {LOC AL11 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[0]}]
|
||||||
|
set_property -dict {LOC AL13 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[1]}]
|
||||||
|
set_property -dict {LOC AK13 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[2]}]
|
||||||
|
set_property -dict {LOC AE15 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[3]}]
|
||||||
|
set_property -dict {LOC AM8 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[4]}]
|
||||||
|
set_property -dict {LOC AM9 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[5]}]
|
||||||
|
set_property -dict {LOC AM10 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[6]}]
|
||||||
|
set_property -dict {LOC AM11 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports {led[7]}]
|
||||||
|
|
||||||
|
# Reset button
|
||||||
|
#set_property -dict {LOC G13 IOSTANDARD LVCMOS12} [get_ports reset]
|
||||||
|
|
||||||
|
# Push buttons
|
||||||
|
set_property -dict {LOC AG13 IOSTANDARD LVCMOS12} [get_ports btnu]
|
||||||
|
set_property -dict {LOC AK12 IOSTANDARD LVCMOS12} [get_ports btnl]
|
||||||
|
set_property -dict {LOC AP20 IOSTANDARD LVCMOS12} [get_ports btnd]
|
||||||
|
set_property -dict {LOC AC14 IOSTANDARD LVCMOS12} [get_ports btnr]
|
||||||
|
set_property -dict {LOC AL10 IOSTANDARD LVCMOS12} [get_ports btnc]
|
||||||
|
|
||||||
|
# DIP switches
|
||||||
|
set_property -dict {LOC A17 IOSTANDARD LVCMOS18} [get_ports {sw[0]}]
|
||||||
|
set_property -dict {LOC A16 IOSTANDARD LVCMOS18} [get_ports {sw[1]}]
|
||||||
|
set_property -dict {LOC B16 IOSTANDARD LVCMOS18} [get_ports {sw[2]}]
|
||||||
|
set_property -dict {LOC B15 IOSTANDARD LVCMOS18} [get_ports {sw[3]}]
|
||||||
|
set_property -dict {LOC A15 IOSTANDARD LVCMOS18} [get_ports {sw[4]}]
|
||||||
|
set_property -dict {LOC A14 IOSTANDARD LVCMOS18} [get_ports {sw[5]}]
|
||||||
|
set_property -dict {LOC B14 IOSTANDARD LVCMOS18} [get_ports {sw[6]}]
|
||||||
|
set_property -dict {LOC B13 IOSTANDARD LVCMOS18} [get_ports {sw[7]}]
|
||||||
|
|
||||||
|
# UART
|
||||||
|
#set_property -dict {LOC AL17 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports uart_txd]
|
||||||
|
#set_property -dict {LOC AH17 IOSTANDARD LVCMOS12} [get_ports uart_rxd]
|
||||||
|
#set_property -dict {LOC AM15 IOSTANDARD LVCMOS12} [get_ports uart_rts]
|
||||||
|
#set_property -dict {LOC AP17 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports uart_cts]
|
||||||
|
|
||||||
|
# I2C interfaces
|
||||||
|
#set_property -dict {LOC AE19 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports i2c0_scl]
|
||||||
|
#set_property -dict {LOC AH23 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports i2c0_sda]
|
||||||
|
set_property -dict {LOC AH19 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports i2c1_scl]
|
||||||
|
set_property -dict {LOC AL21 IOSTANDARD LVCMOS12 SLEW SLOW DRIVE 8} [get_ports i2c1_sda]
|
||||||
|
|
||||||
|
# SFP+ Interface
|
||||||
|
set_property -dict {LOC AA2 } [get_ports sfp0_rx_p] ;# MGTYRXP2_225 GTHE4_CHANNEL_X0Y10 / GTHE4_COMMON_X0Y2
|
||||||
|
#set_property -dict {LOC AA1 } [get_ports sfp0_rx_n] ;# MGTYRXN2_225 GTHE4_CHANNEL_X0Y10 / GTHE4_COMMON_X0Y2
|
||||||
|
set_property -dict {LOC Y4 } [get_ports sfp0_tx_p] ;# MGTYTXP2_225 GTHE4_CHANNEL_X0Y10 / GTHE4_COMMON_X0Y2
|
||||||
|
#set_property -dict {LOC Y3 } [get_ports sfp0_tx_n] ;# MGTYTXN2_225 GTHE4_CHANNEL_X0Y10 / GTHE4_COMMON_X0Y2
|
||||||
|
set_property -dict {LOC W2 } [get_ports sfp1_rx_p] ;# MGTYRXP3_225 GTHE4_CHANNEL_X0Y11 / GTHE4_COMMON_X0Y2
|
||||||
|
#set_property -dict {LOC W1 } [get_ports sfp1_rx_n] ;# MGTYRXN3_225 GTHE4_CHANNEL_X0Y11 / GTHE4_COMMON_X0Y2
|
||||||
|
set_property -dict {LOC W6 } [get_ports sfp1_tx_p] ;# MGTYTXP3_225 GTHE4_CHANNEL_X0Y11 / GTHE4_COMMON_X0Y2
|
||||||
|
#set_property -dict {LOC W5 } [get_ports sfp1_tx_n] ;# MGTYTXN3_225 GTHE4_CHANNEL_X0Y11 / GTHE4_COMMON_X0Y2
|
||||||
|
set_property -dict {LOC U10 } [get_ports sfp_mgt_refclk_0_p] ;# MGTREFCLK1P_226 from U56 SI570 via U51 SI53340
|
||||||
|
#set_property -dict {LOC U9 } [get_ports sfp_mgt_refclk_0_n] ;# MGTREFCLK1N_226 from U56 SI570 via U51 SI53340
|
||||||
|
#set_property -dict {LOC W10 } [get_ports sfp_mgt_refclk_1_p] ;# MGTREFCLK1P_225 from U20 CKOUT2 SI5328
|
||||||
|
#set_property -dict {LOC W9 } [get_ports sfp_mgt_refclk_1_n] ;# MGTREFCLK1N_225 from U20 CKOUT2 SI5328
|
||||||
|
#set_property -dict {LOC H11 IOSTANDARD LVDS} [get_ports sfp_recclk_p] ;# to U20 CKIN1 SI5328
|
||||||
|
#set_property -dict {LOC G11 IOSTANDARD LVDS} [get_ports sfp_recclk_n] ;# to U20 CKIN1 SI5328
|
||||||
|
set_property -dict {LOC AE22 IOSTANDARD LVCMOS12} [get_ports sfp0_tx_disable_b]
|
||||||
|
set_property -dict {LOC AF20 IOSTANDARD LVCMOS12} [get_ports sfp1_tx_disable_b]
|
||||||
|
|
||||||
|
# 156.25 MHz MGT reference clock
|
||||||
|
create_clock -period 6.400 -name sfp_mgt_refclk_0 [get_ports sfp_mgt_refclk_0_p]
|
||||||
|
|
||||||
|
# PCIe Interface
|
||||||
|
set_property -dict {LOC AE2 } [get_ports {pcie_rx_p[0]}] ;# MGTHRXP3_224 GTHE4_CHANNEL_X0Y7 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AE1 } [get_ports {pcie_rx_n[0]}] ;# MGTHRXN3_224 GTHE4_CHANNEL_X0Y7 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AD4 } [get_ports {pcie_tx_p[0]}] ;# MGTHTXP3_224 GTHE4_CHANNEL_X0Y7 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AD3 } [get_ports {pcie_tx_n[0]}] ;# MGTHTXN3_224 GTHE4_CHANNEL_X0Y7 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AF4 } [get_ports {pcie_rx_p[1]}] ;# MGTHRXP2_224 GTHE4_CHANNEL_X0Y6 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AF3 } [get_ports {pcie_rx_n[1]}] ;# MGTHRXN2_224 GTHE4_CHANNEL_X0Y6 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AE6 } [get_ports {pcie_tx_p[1]}] ;# MGTHTXP2_224 GTHE4_CHANNEL_X0Y6 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AE5 } [get_ports {pcie_tx_n[1]}] ;# MGTHTXN2_224 GTHE4_CHANNEL_X0Y6 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AG2 } [get_ports {pcie_rx_p[2]}] ;# MGTHRXP1_224 GTHE4_CHANNEL_X0Y5 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AG1 } [get_ports {pcie_rx_n[2]}] ;# MGTHRXN1_224 GTHE4_CHANNEL_X0Y5 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AG6 } [get_ports {pcie_tx_p[2]}] ;# MGTHTXP1_224 GTHE4_CHANNEL_X0Y5 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AG5 } [get_ports {pcie_tx_n[2]}] ;# MGTHTXN1_224 GTHE4_CHANNEL_X0Y5 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AJ2 } [get_ports {pcie_rx_p[3]}] ;# MGTHRXP0_224 GTHE4_CHANNEL_X0Y4 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AJ1 } [get_ports {pcie_rx_n[3]}] ;# MGTHRXN0_224 GTHE4_CHANNEL_X0Y4 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AH4 } [get_ports {pcie_tx_p[3]}] ;# MGTHTXP0_224 GTHE4_CHANNEL_X0Y4 / GTHE4_COMMON_X0Y1
|
||||||
|
#set_property -dict {LOC AH3 } [get_ports {pcie_tx_n[3]}] ;# MGTHTXN0_224 GTHE4_CHANNEL_X0Y4 / GTHE4_COMMON_X0Y1
|
||||||
|
set_property -dict {LOC AB8 } [get_ports pcie_mgt_refclk_p] ;# MGTREFCLK0P_224
|
||||||
|
#set_property -dict {LOC AB7 } [get_ports pcie_mgt_refclk_n] ;# MGTREFCLK0N_224
|
||||||
|
set_property -dict {LOC L8 IOSTANDARD LVCMOS33 PULLUP true} [get_ports pcie_reset_n]
|
||||||
|
|
||||||
|
# 100 MHz MGT reference clock
|
||||||
|
create_clock -period 10 -name pcie_mgt_refclk [get_ports pcie_mgt_refclk_p]
|
||||||
|
|
||||||
|
|
95
fpga/mqnic/ZCU106/fpga_pcie/fpga/Makefile
Normal file
95
fpga/mqnic/ZCU106/fpga_pcie/fpga/Makefile
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
|
||||||
|
# FPGA settings
|
||||||
|
FPGA_PART = xczu7ev-ffvc1156-2-e
|
||||||
|
FPGA_TOP = fpga
|
||||||
|
FPGA_ARCH = zynquplus
|
||||||
|
|
||||||
|
# Files for synthesis
|
||||||
|
SYN_FILES = rtl/fpga.v
|
||||||
|
SYN_FILES += rtl/fpga_core.v
|
||||||
|
SYN_FILES += rtl/debounce_switch.v
|
||||||
|
SYN_FILES += rtl/sync_signal.v
|
||||||
|
SYN_FILES += rtl/common/interface.v
|
||||||
|
SYN_FILES += rtl/common/port.v
|
||||||
|
SYN_FILES += rtl/common/cpl_write.v
|
||||||
|
SYN_FILES += rtl/common/cpl_op_mux.v
|
||||||
|
SYN_FILES += rtl/common/desc_fetch.v
|
||||||
|
SYN_FILES += rtl/common/desc_op_mux.v
|
||||||
|
SYN_FILES += rtl/common/queue_manager.v
|
||||||
|
SYN_FILES += rtl/common/cpl_queue_manager.v
|
||||||
|
SYN_FILES += rtl/common/event_mux.v
|
||||||
|
SYN_FILES += rtl/common/tx_scheduler_rr.v
|
||||||
|
SYN_FILES += rtl/common/tdma_scheduler.v
|
||||||
|
SYN_FILES += rtl/common/tdma_ber.v
|
||||||
|
SYN_FILES += rtl/common/tdma_ber_ch.v
|
||||||
|
SYN_FILES += rtl/common/tx_engine.v
|
||||||
|
SYN_FILES += rtl/common/rx_engine.v
|
||||||
|
SYN_FILES += rtl/common/tx_checksum.v
|
||||||
|
SYN_FILES += rtl/common/rx_hash.v
|
||||||
|
SYN_FILES += rtl/common/rx_checksum.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_mac_10g.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_mac_10g_fifo.v
|
||||||
|
SYN_FILES += lib/eth/rtl/axis_xgmii_rx_64.v
|
||||||
|
SYN_FILES += lib/eth/rtl/axis_xgmii_tx_64.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_rx.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_rx_if.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_rx_frame_sync.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_rx_ber_mon.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_tx.v
|
||||||
|
SYN_FILES += lib/eth/rtl/eth_phy_10g_tx_if.v
|
||||||
|
SYN_FILES += lib/eth/rtl/xgmii_baser_dec_64.v
|
||||||
|
SYN_FILES += lib/eth/rtl/xgmii_baser_enc_64.v
|
||||||
|
SYN_FILES += lib/eth/rtl/lfsr.v
|
||||||
|
SYN_FILES += lib/eth/rtl/ptp_clock.v
|
||||||
|
SYN_FILES += lib/eth/rtl/ptp_clock_cdc.v
|
||||||
|
SYN_FILES += lib/eth/rtl/ptp_perout.v
|
||||||
|
SYN_FILES += lib/eth/rtl/ptp_ts_extract.v
|
||||||
|
SYN_FILES += lib/axi/rtl/axil_interconnect.v
|
||||||
|
SYN_FILES += lib/axi/rtl/arbiter.v
|
||||||
|
SYN_FILES += lib/axi/rtl/priority_encoder.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_adapter.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_async_fifo.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_async_fifo_adapter.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_arb_mux.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_fifo.v
|
||||||
|
SYN_FILES += lib/axis/rtl/axis_register.v
|
||||||
|
SYN_FILES += lib/axis/rtl/sync_reset.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/pcie_us_axil_master.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_pcie_us.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_pcie_us_rd.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_pcie_us_wr.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_mux.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_mux_rd.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_if_mux_wr.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_psdpram.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_client_axis_sink.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/dma_client_axis_source.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/pcie_us_cfg.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/pcie_us_msi.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/pcie_tag_manager.v
|
||||||
|
SYN_FILES += lib/pcie/rtl/pulse_merge.v
|
||||||
|
|
||||||
|
# XDC files
|
||||||
|
XDC_FILES = fpga.xdc
|
||||||
|
XDC_FILES += lib/axis/syn/axis_async_fifo.tcl
|
||||||
|
XDC_FILES += lib/axis/syn/sync_reset.tcl
|
||||||
|
XDC_FILES += lib/eth/syn/ptp_clock_cdc.tcl
|
||||||
|
|
||||||
|
# IP
|
||||||
|
IP_TCL_FILES = ip/pcie4_uscale_plus_0.tcl
|
||||||
|
IP_TCL_FILES += ip/gtwizard_ultrascale_0.tcl
|
||||||
|
|
||||||
|
include ../common/vivado.mk
|
||||||
|
|
||||||
|
program: $(FPGA_TOP).bit
|
||||||
|
echo "open_hw" > program.tcl
|
||||||
|
echo "connect_hw_server" >> program.tcl
|
||||||
|
echo "open_hw_target" >> program.tcl
|
||||||
|
echo "current_hw_device [lindex [get_hw_devices] 0]" >> program.tcl
|
||||||
|
echo "refresh_hw_device -update_hw_probes false [current_hw_device]" >> program.tcl
|
||||||
|
echo "set_property PROGRAM.FILE {$(FPGA_TOP).bit} [current_hw_device]" >> program.tcl
|
||||||
|
echo "program_hw_devices [current_hw_device]" >> program.tcl
|
||||||
|
echo "exit" >> program.tcl
|
||||||
|
vivado -nojournal -nolog -mode batch -source program.tcl
|
||||||
|
|
21
fpga/mqnic/ZCU106/fpga_pcie/ip/gtwizard_ultrascale_0.tcl
Normal file
21
fpga/mqnic/ZCU106/fpga_pcie/ip/gtwizard_ultrascale_0.tcl
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
create_ip -name gtwizard_ultrascale -vendor xilinx.com -library ip -module_name gtwizard_ultrascale_0
|
||||||
|
|
||||||
|
set_property -dict [list CONFIG.preset {GTH-10GBASE-R}] [get_ips gtwizard_ultrascale_0]
|
||||||
|
|
||||||
|
set_property -dict [list \
|
||||||
|
CONFIG.CHANNEL_ENABLE {X0Y11 X0Y10} \
|
||||||
|
CONFIG.TX_MASTER_CHANNEL {X0Y10} \
|
||||||
|
CONFIG.RX_MASTER_CHANNEL {X0Y10} \
|
||||||
|
CONFIG.TX_LINE_RATE {10.3125} \
|
||||||
|
CONFIG.TX_REFCLK_FREQUENCY {156.25} \
|
||||||
|
CONFIG.TX_USER_DATA_WIDTH {64} \
|
||||||
|
CONFIG.TX_INT_DATA_WIDTH {32} \
|
||||||
|
CONFIG.RX_LINE_RATE {10.3125} \
|
||||||
|
CONFIG.RX_REFCLK_FREQUENCY {156.25} \
|
||||||
|
CONFIG.RX_USER_DATA_WIDTH {64} \
|
||||||
|
CONFIG.RX_INT_DATA_WIDTH {32} \
|
||||||
|
CONFIG.RX_REFCLK_SOURCE {X0Y11 clk1+1 X0Y10 clk1+1} \
|
||||||
|
CONFIG.TX_REFCLK_SOURCE {X0Y11 clk1+1 X0Y10 clk1+1} \
|
||||||
|
CONFIG.FREERUN_FREQUENCY {125} \
|
||||||
|
] [get_ips gtwizard_ultrascale_0]
|
26
fpga/mqnic/ZCU106/fpga_pcie/ip/pcie4_uscale_plus_0.tcl
Normal file
26
fpga/mqnic/ZCU106/fpga_pcie/ip/pcie4_uscale_plus_0.tcl
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
create_ip -name pcie4_uscale_plus -vendor xilinx.com -library ip -module_name pcie4_uscale_plus_0
|
||||||
|
|
||||||
|
set_property -dict [list \
|
||||||
|
CONFIG.PL_LINK_CAP_MAX_LINK_SPEED {8.0_GT/s} \
|
||||||
|
CONFIG.PL_LINK_CAP_MAX_LINK_WIDTH {X4} \
|
||||||
|
CONFIG.AXISTEN_IF_RC_STRADDLE {false} \
|
||||||
|
CONFIG.axisten_if_enable_client_tag {true} \
|
||||||
|
CONFIG.axisten_if_width {128_bit} \
|
||||||
|
CONFIG.axisten_freq {250} \
|
||||||
|
CONFIG.PF0_CLASS_CODE {020000} \
|
||||||
|
CONFIG.PF0_DEVICE_ID {1001} \
|
||||||
|
CONFIG.PF0_MSI_CAP_MULTIMSGCAP {32_vectors} \
|
||||||
|
CONFIG.PF0_SUBSYSTEM_ID {1001} \
|
||||||
|
CONFIG.PF0_SUBSYSTEM_VENDOR_ID {1234} \
|
||||||
|
CONFIG.PF0_Use_Class_Code_Lookup_Assistant {true} \
|
||||||
|
CONFIG.pf0_class_code_sub {00} \
|
||||||
|
CONFIG.pf0_base_class_menu {Network_controller} \
|
||||||
|
CONFIG.pf0_sub_class_interface_menu {Ethernet_controller} \
|
||||||
|
CONFIG.pf0_bar0_64bit {true} \
|
||||||
|
CONFIG.pf0_bar0_prefetchable {true} \
|
||||||
|
CONFIG.pf0_bar0_scale {Megabytes} \
|
||||||
|
CONFIG.pf0_bar0_size {16} \
|
||||||
|
CONFIG.vendor_id {1234} \
|
||||||
|
CONFIG.en_msi_per_vec_masking {true} \
|
||||||
|
] [get_ips pcie4_uscale_plus_0]
|
1
fpga/mqnic/ZCU106/fpga_pcie/lib
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/lib
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../../lib/
|
89
fpga/mqnic/ZCU106/fpga_pcie/rtl/debounce_switch.v
Normal file
89
fpga/mqnic/ZCU106/fpga_pcie/rtl/debounce_switch.v
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright (c) 2014-2018 Alex Forencich
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Language: Verilog-2001
|
||||||
|
|
||||||
|
`timescale 1 ns / 1 ps
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Synchronizes switch and button inputs with a slow sampled shift register
|
||||||
|
*/
|
||||||
|
module debounce_switch #(
|
||||||
|
parameter WIDTH=1, // width of the input and output signals
|
||||||
|
parameter N=3, // length of shift register
|
||||||
|
parameter RATE=125000 // clock division factor
|
||||||
|
)(
|
||||||
|
input wire clk,
|
||||||
|
input wire rst,
|
||||||
|
input wire [WIDTH-1:0] in,
|
||||||
|
output wire [WIDTH-1:0] out
|
||||||
|
);
|
||||||
|
|
||||||
|
reg [23:0] cnt_reg = 24'd0;
|
||||||
|
|
||||||
|
reg [N-1:0] debounce_reg[WIDTH-1:0];
|
||||||
|
|
||||||
|
reg [WIDTH-1:0] state;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The synchronized output is the state register
|
||||||
|
*/
|
||||||
|
assign out = state;
|
||||||
|
|
||||||
|
integer k;
|
||||||
|
|
||||||
|
always @(posedge clk or posedge rst) begin
|
||||||
|
if (rst) begin
|
||||||
|
cnt_reg <= 0;
|
||||||
|
state <= 0;
|
||||||
|
|
||||||
|
for (k = 0; k < WIDTH; k = k + 1) begin
|
||||||
|
debounce_reg[k] <= 0;
|
||||||
|
end
|
||||||
|
end else begin
|
||||||
|
if (cnt_reg < RATE) begin
|
||||||
|
cnt_reg <= cnt_reg + 24'd1;
|
||||||
|
end else begin
|
||||||
|
cnt_reg <= 24'd0;
|
||||||
|
end
|
||||||
|
|
||||||
|
if (cnt_reg == 24'd0) begin
|
||||||
|
for (k = 0; k < WIDTH; k = k + 1) begin
|
||||||
|
debounce_reg[k] <= {debounce_reg[k][N-2:0], in[k]};
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for (k = 0; k < WIDTH; k = k + 1) begin
|
||||||
|
if (|debounce_reg[k] == 0) begin
|
||||||
|
state[k] <= 0;
|
||||||
|
end else if (&debounce_reg[k] == 1) begin
|
||||||
|
state[k] <= 1;
|
||||||
|
end else begin
|
||||||
|
state[k] <= state[k];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
endmodule
|
926
fpga/mqnic/ZCU106/fpga_pcie/rtl/fpga.v
Normal file
926
fpga/mqnic/ZCU106/fpga_pcie/rtl/fpga.v
Normal file
@ -0,0 +1,926 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright 2019, The Regents of the University of California.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. 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.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE REGENTS OF THE UNIVERSITY OF CALIFORNIA ''AS
|
||||||
|
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF THE UNIVERSITY OF CALIFORNIA OR
|
||||||
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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.
|
||||||
|
|
||||||
|
The views and conclusions contained in the software and documentation are those
|
||||||
|
of the authors and should not be interpreted as representing official policies,
|
||||||
|
either expressed or implied, of The Regents of the University of California.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Language: Verilog 2001
|
||||||
|
|
||||||
|
`timescale 1ns / 1ps
|
||||||
|
|
||||||
|
/*
|
||||||
|
* FPGA top-level module
|
||||||
|
*/
|
||||||
|
module fpga (
|
||||||
|
/*
|
||||||
|
* Clock: 125MHz LVDS
|
||||||
|
*/
|
||||||
|
input wire clk_125mhz_p,
|
||||||
|
input wire clk_125mhz_n,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPIO
|
||||||
|
*/
|
||||||
|
input wire btnu,
|
||||||
|
input wire btnl,
|
||||||
|
input wire btnd,
|
||||||
|
input wire btnr,
|
||||||
|
input wire btnc,
|
||||||
|
input wire [7:0] sw,
|
||||||
|
output wire [7:0] led,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I2C for board management
|
||||||
|
*/
|
||||||
|
inout wire i2c1_scl,
|
||||||
|
inout wire i2c1_sda,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PCI express
|
||||||
|
*/
|
||||||
|
input wire [3:0] pcie_rx_p,
|
||||||
|
input wire [3:0] pcie_rx_n,
|
||||||
|
output wire [3:0] pcie_tx_p,
|
||||||
|
output wire [3:0] pcie_tx_n,
|
||||||
|
input wire pcie_mgt_refclk_p,
|
||||||
|
input wire pcie_mgt_refclk_n,
|
||||||
|
input wire pcie_reset_n,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ethernet: SFP+
|
||||||
|
*/
|
||||||
|
input wire sfp0_rx_p,
|
||||||
|
input wire sfp0_rx_n,
|
||||||
|
output wire sfp0_tx_p,
|
||||||
|
output wire sfp0_tx_n,
|
||||||
|
input wire sfp1_rx_p,
|
||||||
|
input wire sfp1_rx_n,
|
||||||
|
output wire sfp1_tx_p,
|
||||||
|
output wire sfp1_tx_n,
|
||||||
|
input wire sfp_mgt_refclk_0_p,
|
||||||
|
input wire sfp_mgt_refclk_0_n,
|
||||||
|
output wire sfp0_tx_disable_b,
|
||||||
|
output wire sfp1_tx_disable_b
|
||||||
|
);
|
||||||
|
|
||||||
|
parameter AXIS_PCIE_DATA_WIDTH = 128;
|
||||||
|
parameter AXIS_PCIE_KEEP_WIDTH = (AXIS_PCIE_DATA_WIDTH/32);
|
||||||
|
parameter AXIS_PCIE_RC_USER_WIDTH = 75;
|
||||||
|
parameter AXIS_PCIE_RQ_USER_WIDTH = 62;
|
||||||
|
parameter AXIS_PCIE_CQ_USER_WIDTH = 88;
|
||||||
|
parameter AXIS_PCIE_CC_USER_WIDTH = 33;
|
||||||
|
parameter RQ_SEQ_NUM_WIDTH = 6;
|
||||||
|
parameter BAR0_APERTURE = 24;
|
||||||
|
|
||||||
|
// Clock and reset
|
||||||
|
wire pcie_user_clk;
|
||||||
|
wire pcie_user_reset;
|
||||||
|
|
||||||
|
wire clk_125mhz_ibufg;
|
||||||
|
wire clk_125mhz_mmcm_out;
|
||||||
|
|
||||||
|
// Internal 125 MHz clock
|
||||||
|
wire clk_125mhz_int;
|
||||||
|
wire rst_125mhz_int;
|
||||||
|
|
||||||
|
// Internal 156.25 MHz clock
|
||||||
|
wire clk_156mhz_int;
|
||||||
|
wire rst_156mhz_int;
|
||||||
|
|
||||||
|
wire mmcm_rst = pcie_user_reset;
|
||||||
|
wire mmcm_locked;
|
||||||
|
wire mmcm_clkfb;
|
||||||
|
|
||||||
|
IBUFGDS #(
|
||||||
|
.DIFF_TERM("FALSE"),
|
||||||
|
.IBUF_LOW_PWR("FALSE")
|
||||||
|
)
|
||||||
|
clk_125mhz_ibufg_inst (
|
||||||
|
.O (clk_125mhz_ibufg),
|
||||||
|
.I (clk_125mhz_p),
|
||||||
|
.IB (clk_125mhz_n)
|
||||||
|
);
|
||||||
|
|
||||||
|
// MMCM instance
|
||||||
|
// 125 MHz in, 125 MHz out
|
||||||
|
// PFD range: 10 MHz to 500 MHz
|
||||||
|
// VCO range: 800 MHz to 1600 MHz
|
||||||
|
// M = 8, D = 1 sets Fvco = 1000 MHz (in range)
|
||||||
|
// Divide by 8 to get output frequency of 125 MHz
|
||||||
|
MMCME3_BASE #(
|
||||||
|
.BANDWIDTH("OPTIMIZED"),
|
||||||
|
.CLKOUT0_DIVIDE_F(8),
|
||||||
|
.CLKOUT0_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT0_PHASE(0),
|
||||||
|
.CLKOUT1_DIVIDE(1),
|
||||||
|
.CLKOUT1_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT1_PHASE(0),
|
||||||
|
.CLKOUT2_DIVIDE(1),
|
||||||
|
.CLKOUT2_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT2_PHASE(0),
|
||||||
|
.CLKOUT3_DIVIDE(1),
|
||||||
|
.CLKOUT3_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT3_PHASE(0),
|
||||||
|
.CLKOUT4_DIVIDE(1),
|
||||||
|
.CLKOUT4_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT4_PHASE(0),
|
||||||
|
.CLKOUT5_DIVIDE(1),
|
||||||
|
.CLKOUT5_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT5_PHASE(0),
|
||||||
|
.CLKOUT6_DIVIDE(1),
|
||||||
|
.CLKOUT6_DUTY_CYCLE(0.5),
|
||||||
|
.CLKOUT6_PHASE(0),
|
||||||
|
.CLKFBOUT_MULT_F(8),
|
||||||
|
.CLKFBOUT_PHASE(0),
|
||||||
|
.DIVCLK_DIVIDE(1),
|
||||||
|
.REF_JITTER1(0.010),
|
||||||
|
.CLKIN1_PERIOD(8.0),
|
||||||
|
.STARTUP_WAIT("FALSE"),
|
||||||
|
.CLKOUT4_CASCADE("FALSE")
|
||||||
|
)
|
||||||
|
clk_mmcm_inst (
|
||||||
|
.CLKIN1(clk_125mhz_ibufg),
|
||||||
|
.CLKFBIN(mmcm_clkfb),
|
||||||
|
.RST(mmcm_rst),
|
||||||
|
.PWRDWN(1'b0),
|
||||||
|
.CLKOUT0(clk_125mhz_mmcm_out),
|
||||||
|
.CLKOUT0B(),
|
||||||
|
.CLKOUT1(),
|
||||||
|
.CLKOUT1B(),
|
||||||
|
.CLKOUT2(),
|
||||||
|
.CLKOUT2B(),
|
||||||
|
.CLKOUT3(),
|
||||||
|
.CLKOUT3B(),
|
||||||
|
.CLKOUT4(),
|
||||||
|
.CLKOUT5(),
|
||||||
|
.CLKOUT6(),
|
||||||
|
.CLKFBOUT(mmcm_clkfb),
|
||||||
|
.CLKFBOUTB(),
|
||||||
|
.LOCKED(mmcm_locked)
|
||||||
|
);
|
||||||
|
|
||||||
|
BUFG
|
||||||
|
clk_125mhz_bufg_inst (
|
||||||
|
.I(clk_125mhz_mmcm_out),
|
||||||
|
.O(clk_125mhz_int)
|
||||||
|
);
|
||||||
|
|
||||||
|
sync_reset #(
|
||||||
|
.N(4)
|
||||||
|
)
|
||||||
|
sync_reset_125mhz_inst (
|
||||||
|
.clk(clk_125mhz_int),
|
||||||
|
.rst(~mmcm_locked),
|
||||||
|
.out(rst_125mhz_int)
|
||||||
|
);
|
||||||
|
|
||||||
|
// GPIO
|
||||||
|
wire btnu_int;
|
||||||
|
wire btnl_int;
|
||||||
|
wire btnd_int;
|
||||||
|
wire btnr_int;
|
||||||
|
wire btnc_int;
|
||||||
|
wire [7:0] sw_int;
|
||||||
|
wire qsfp1_modprsl_int;
|
||||||
|
wire qsfp2_modprsl_int;
|
||||||
|
wire qsfp1_intl_int;
|
||||||
|
wire qsfp2_intl_int;
|
||||||
|
wire i2c1_scl_i;
|
||||||
|
wire i2c1_scl_o;
|
||||||
|
wire i2c1_scl_t;
|
||||||
|
wire i2c1_sda_i;
|
||||||
|
wire i2c1_sda_o;
|
||||||
|
wire i2c1_sda_t;
|
||||||
|
|
||||||
|
debounce_switch #(
|
||||||
|
.WIDTH(13),
|
||||||
|
.N(4),
|
||||||
|
.RATE(250000)
|
||||||
|
)
|
||||||
|
debounce_switch_inst (
|
||||||
|
.clk(pcie_user_clk),
|
||||||
|
.rst(pcie_user_reset),
|
||||||
|
.in({btnu,
|
||||||
|
btnl,
|
||||||
|
btnd,
|
||||||
|
btnr,
|
||||||
|
btnc,
|
||||||
|
sw}),
|
||||||
|
.out({btnu_int,
|
||||||
|
btnl_int,
|
||||||
|
btnd_int,
|
||||||
|
btnr_int,
|
||||||
|
btnc_int,
|
||||||
|
sw_int})
|
||||||
|
);
|
||||||
|
|
||||||
|
sync_signal #(
|
||||||
|
.WIDTH(2),
|
||||||
|
.N(2)
|
||||||
|
)
|
||||||
|
sync_signal_inst (
|
||||||
|
.clk(pcie_user_clk),
|
||||||
|
.in({i2c1_scl, i2c1_sda}),
|
||||||
|
.out({i2c1_scl_i, i2c1_sda_i})
|
||||||
|
);
|
||||||
|
|
||||||
|
assign i2c1_scl = i2c1_scl_t ? 1'bz : i2c1_scl_o;
|
||||||
|
assign i2c1_sda = i2c1_sda_t ? 1'bz : i2c1_sda_o;
|
||||||
|
|
||||||
|
// PCIe
|
||||||
|
wire pcie_sys_clk;
|
||||||
|
wire pcie_sys_clk_gt;
|
||||||
|
|
||||||
|
IBUFDS_GTE4 #(
|
||||||
|
.REFCLK_HROW_CK_SEL(2'b00)
|
||||||
|
)
|
||||||
|
ibufds_gte4_pcie_mgt_refclk_inst (
|
||||||
|
.I (pcie_mgt_refclk_p),
|
||||||
|
.IB (pcie_mgt_refclk_n),
|
||||||
|
.CEB (1'b0),
|
||||||
|
.O (pcie_sys_clk_gt),
|
||||||
|
.ODIV2 (pcie_sys_clk)
|
||||||
|
);
|
||||||
|
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] axis_rq_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] axis_rq_tkeep;
|
||||||
|
wire axis_rq_tlast;
|
||||||
|
wire axis_rq_tready;
|
||||||
|
wire [AXIS_PCIE_RQ_USER_WIDTH-1:0] axis_rq_tuser;
|
||||||
|
wire axis_rq_tvalid;
|
||||||
|
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] axis_rc_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] axis_rc_tkeep;
|
||||||
|
wire axis_rc_tlast;
|
||||||
|
wire axis_rc_tready;
|
||||||
|
wire [AXIS_PCIE_RC_USER_WIDTH-1:0] axis_rc_tuser;
|
||||||
|
wire axis_rc_tvalid;
|
||||||
|
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] axis_cq_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] axis_cq_tkeep;
|
||||||
|
wire axis_cq_tlast;
|
||||||
|
wire axis_cq_tready;
|
||||||
|
wire [AXIS_PCIE_CQ_USER_WIDTH-1:0] axis_cq_tuser;
|
||||||
|
wire axis_cq_tvalid;
|
||||||
|
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] axis_cc_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] axis_cc_tkeep;
|
||||||
|
wire axis_cc_tlast;
|
||||||
|
wire axis_cc_tready;
|
||||||
|
wire [AXIS_PCIE_CC_USER_WIDTH-1:0] axis_cc_tuser;
|
||||||
|
wire axis_cc_tvalid;
|
||||||
|
|
||||||
|
wire [RQ_SEQ_NUM_WIDTH-1:0] pcie_rq_seq_num0;
|
||||||
|
wire pcie_rq_seq_num_vld0;
|
||||||
|
wire [RQ_SEQ_NUM_WIDTH-1:0] pcie_rq_seq_num1;
|
||||||
|
wire pcie_rq_seq_num_vld1;
|
||||||
|
|
||||||
|
wire [3:0] pcie_tfc_nph_av;
|
||||||
|
wire [3:0] pcie_tfc_npd_av;
|
||||||
|
|
||||||
|
wire [2:0] cfg_max_payload;
|
||||||
|
wire [2:0] cfg_max_read_req;
|
||||||
|
|
||||||
|
wire [9:0] cfg_mgmt_addr;
|
||||||
|
wire [7:0] cfg_mgmt_function_number;
|
||||||
|
wire cfg_mgmt_write;
|
||||||
|
wire [31:0] cfg_mgmt_write_data;
|
||||||
|
wire [3:0] cfg_mgmt_byte_enable;
|
||||||
|
wire cfg_mgmt_read;
|
||||||
|
wire [31:0] cfg_mgmt_read_data;
|
||||||
|
wire cfg_mgmt_read_write_done;
|
||||||
|
|
||||||
|
wire [7:0] cfg_fc_ph;
|
||||||
|
wire [11:0] cfg_fc_pd;
|
||||||
|
wire [7:0] cfg_fc_nph;
|
||||||
|
wire [11:0] cfg_fc_npd;
|
||||||
|
wire [7:0] cfg_fc_cplh;
|
||||||
|
wire [11:0] cfg_fc_cpld;
|
||||||
|
wire [2:0] cfg_fc_sel;
|
||||||
|
|
||||||
|
wire [3:0] cfg_interrupt_msi_enable;
|
||||||
|
wire [11:0] cfg_interrupt_msi_mmenable;
|
||||||
|
wire cfg_interrupt_msi_mask_update;
|
||||||
|
wire [31:0] cfg_interrupt_msi_data;
|
||||||
|
wire [3:0] cfg_interrupt_msi_select;
|
||||||
|
wire [31:0] cfg_interrupt_msi_int;
|
||||||
|
wire [31:0] cfg_interrupt_msi_pending_status;
|
||||||
|
wire cfg_interrupt_msi_pending_status_data_enable;
|
||||||
|
wire [3:0] cfg_interrupt_msi_pending_status_function_num;
|
||||||
|
wire cfg_interrupt_msi_sent;
|
||||||
|
wire cfg_interrupt_msi_fail;
|
||||||
|
wire [2:0] cfg_interrupt_msi_attr;
|
||||||
|
wire cfg_interrupt_msi_tph_present;
|
||||||
|
wire [1:0] cfg_interrupt_msi_tph_type;
|
||||||
|
wire [8:0] cfg_interrupt_msi_tph_st_tag;
|
||||||
|
wire [3:0] cfg_interrupt_msi_function_number;
|
||||||
|
|
||||||
|
wire status_error_cor;
|
||||||
|
wire status_error_uncor;
|
||||||
|
|
||||||
|
pcie4_uscale_plus_0
|
||||||
|
pcie4_uscale_plus_inst (
|
||||||
|
.pci_exp_txn(pcie_tx_n),
|
||||||
|
.pci_exp_txp(pcie_tx_p),
|
||||||
|
.pci_exp_rxn(pcie_rx_n),
|
||||||
|
.pci_exp_rxp(pcie_rx_p),
|
||||||
|
.user_clk(pcie_user_clk),
|
||||||
|
.user_reset(pcie_user_reset),
|
||||||
|
.user_lnk_up(),
|
||||||
|
|
||||||
|
.s_axis_rq_tdata(axis_rq_tdata),
|
||||||
|
.s_axis_rq_tkeep(axis_rq_tkeep),
|
||||||
|
.s_axis_rq_tlast(axis_rq_tlast),
|
||||||
|
.s_axis_rq_tready(axis_rq_tready),
|
||||||
|
.s_axis_rq_tuser(axis_rq_tuser),
|
||||||
|
.s_axis_rq_tvalid(axis_rq_tvalid),
|
||||||
|
|
||||||
|
.m_axis_rc_tdata(axis_rc_tdata),
|
||||||
|
.m_axis_rc_tkeep(axis_rc_tkeep),
|
||||||
|
.m_axis_rc_tlast(axis_rc_tlast),
|
||||||
|
.m_axis_rc_tready(axis_rc_tready),
|
||||||
|
.m_axis_rc_tuser(axis_rc_tuser),
|
||||||
|
.m_axis_rc_tvalid(axis_rc_tvalid),
|
||||||
|
|
||||||
|
.m_axis_cq_tdata(axis_cq_tdata),
|
||||||
|
.m_axis_cq_tkeep(axis_cq_tkeep),
|
||||||
|
.m_axis_cq_tlast(axis_cq_tlast),
|
||||||
|
.m_axis_cq_tready(axis_cq_tready),
|
||||||
|
.m_axis_cq_tuser(axis_cq_tuser),
|
||||||
|
.m_axis_cq_tvalid(axis_cq_tvalid),
|
||||||
|
|
||||||
|
.s_axis_cc_tdata(axis_cc_tdata),
|
||||||
|
.s_axis_cc_tkeep(axis_cc_tkeep),
|
||||||
|
.s_axis_cc_tlast(axis_cc_tlast),
|
||||||
|
.s_axis_cc_tready(axis_cc_tready),
|
||||||
|
.s_axis_cc_tuser(axis_cc_tuser),
|
||||||
|
.s_axis_cc_tvalid(axis_cc_tvalid),
|
||||||
|
|
||||||
|
.pcie_rq_seq_num0(pcie_rq_seq_num0),
|
||||||
|
.pcie_rq_seq_num_vld0(pcie_rq_seq_num_vld0),
|
||||||
|
.pcie_rq_seq_num1(pcie_rq_seq_num1),
|
||||||
|
.pcie_rq_seq_num_vld1(pcie_rq_seq_num_vld1),
|
||||||
|
.pcie_rq_tag0(),
|
||||||
|
.pcie_rq_tag1(),
|
||||||
|
.pcie_rq_tag_av(),
|
||||||
|
.pcie_rq_tag_vld0(),
|
||||||
|
.pcie_rq_tag_vld1(),
|
||||||
|
|
||||||
|
.pcie_tfc_nph_av(pcie_tfc_nph_av),
|
||||||
|
.pcie_tfc_npd_av(pcie_tfc_npd_av),
|
||||||
|
|
||||||
|
.pcie_cq_np_req(1'b1),
|
||||||
|
.pcie_cq_np_req_count(),
|
||||||
|
|
||||||
|
.cfg_phy_link_down(),
|
||||||
|
.cfg_phy_link_status(),
|
||||||
|
.cfg_negotiated_width(),
|
||||||
|
.cfg_current_speed(),
|
||||||
|
.cfg_max_payload(cfg_max_payload),
|
||||||
|
.cfg_max_read_req(cfg_max_read_req),
|
||||||
|
.cfg_function_status(),
|
||||||
|
.cfg_function_power_state(),
|
||||||
|
.cfg_vf_status(),
|
||||||
|
.cfg_vf_power_state(),
|
||||||
|
.cfg_link_power_state(),
|
||||||
|
|
||||||
|
.cfg_mgmt_addr(cfg_mgmt_addr),
|
||||||
|
.cfg_mgmt_function_number(cfg_mgmt_function_number),
|
||||||
|
.cfg_mgmt_write(cfg_mgmt_write),
|
||||||
|
.cfg_mgmt_write_data(cfg_mgmt_write_data),
|
||||||
|
.cfg_mgmt_byte_enable(cfg_mgmt_byte_enable),
|
||||||
|
.cfg_mgmt_read(cfg_mgmt_read),
|
||||||
|
.cfg_mgmt_read_data(cfg_mgmt_read_data),
|
||||||
|
.cfg_mgmt_read_write_done(cfg_mgmt_read_write_done),
|
||||||
|
.cfg_mgmt_debug_access(1'b0),
|
||||||
|
|
||||||
|
.cfg_err_cor_out(),
|
||||||
|
.cfg_err_nonfatal_out(),
|
||||||
|
.cfg_err_fatal_out(),
|
||||||
|
.cfg_local_error_valid(),
|
||||||
|
.cfg_local_error_out(),
|
||||||
|
.cfg_ltssm_state(),
|
||||||
|
.cfg_rx_pm_state(),
|
||||||
|
.cfg_tx_pm_state(),
|
||||||
|
.cfg_rcb_status(),
|
||||||
|
.cfg_obff_enable(),
|
||||||
|
.cfg_pl_status_change(),
|
||||||
|
.cfg_tph_requester_enable(),
|
||||||
|
.cfg_tph_st_mode(),
|
||||||
|
.cfg_vf_tph_requester_enable(),
|
||||||
|
.cfg_vf_tph_st_mode(),
|
||||||
|
|
||||||
|
.cfg_msg_received(),
|
||||||
|
.cfg_msg_received_data(),
|
||||||
|
.cfg_msg_received_type(),
|
||||||
|
.cfg_msg_transmit(1'b0),
|
||||||
|
.cfg_msg_transmit_type(3'd0),
|
||||||
|
.cfg_msg_transmit_data(32'd0),
|
||||||
|
.cfg_msg_transmit_done(),
|
||||||
|
|
||||||
|
.cfg_fc_ph(cfg_fc_ph),
|
||||||
|
.cfg_fc_pd(cfg_fc_pd),
|
||||||
|
.cfg_fc_nph(cfg_fc_nph),
|
||||||
|
.cfg_fc_npd(cfg_fc_npd),
|
||||||
|
.cfg_fc_cplh(cfg_fc_cplh),
|
||||||
|
.cfg_fc_cpld(cfg_fc_cpld),
|
||||||
|
.cfg_fc_sel(cfg_fc_sel),
|
||||||
|
|
||||||
|
.cfg_dsn(64'd0),
|
||||||
|
|
||||||
|
.cfg_power_state_change_ack(1'b1),
|
||||||
|
.cfg_power_state_change_interrupt(),
|
||||||
|
|
||||||
|
.cfg_err_cor_in(status_error_cor),
|
||||||
|
.cfg_err_uncor_in(status_error_uncor),
|
||||||
|
.cfg_flr_in_process(),
|
||||||
|
.cfg_flr_done(4'd0),
|
||||||
|
.cfg_vf_flr_in_process(),
|
||||||
|
.cfg_vf_flr_func_num(8'd0),
|
||||||
|
.cfg_vf_flr_done(8'd0),
|
||||||
|
|
||||||
|
.cfg_link_training_enable(1'b1),
|
||||||
|
|
||||||
|
.cfg_interrupt_int(4'd0),
|
||||||
|
.cfg_interrupt_pending(4'd0),
|
||||||
|
.cfg_interrupt_sent(),
|
||||||
|
.cfg_interrupt_msi_enable(cfg_interrupt_msi_enable),
|
||||||
|
.cfg_interrupt_msi_mmenable(cfg_interrupt_msi_mmenable),
|
||||||
|
.cfg_interrupt_msi_mask_update(cfg_interrupt_msi_mask_update),
|
||||||
|
.cfg_interrupt_msi_data(cfg_interrupt_msi_data),
|
||||||
|
.cfg_interrupt_msi_select(cfg_interrupt_msi_select),
|
||||||
|
.cfg_interrupt_msi_int(cfg_interrupt_msi_int),
|
||||||
|
.cfg_interrupt_msi_pending_status(cfg_interrupt_msi_pending_status),
|
||||||
|
.cfg_interrupt_msi_pending_status_data_enable(cfg_interrupt_msi_pending_status_data_enable),
|
||||||
|
.cfg_interrupt_msi_pending_status_function_num(cfg_interrupt_msi_pending_status_function_num),
|
||||||
|
.cfg_interrupt_msi_sent(cfg_interrupt_msi_sent),
|
||||||
|
.cfg_interrupt_msi_fail(cfg_interrupt_msi_fail),
|
||||||
|
.cfg_interrupt_msi_attr(cfg_interrupt_msi_attr),
|
||||||
|
.cfg_interrupt_msi_tph_present(cfg_interrupt_msi_tph_present),
|
||||||
|
.cfg_interrupt_msi_tph_type(cfg_interrupt_msi_tph_type),
|
||||||
|
.cfg_interrupt_msi_tph_st_tag(cfg_interrupt_msi_tph_st_tag),
|
||||||
|
.cfg_interrupt_msi_function_number(cfg_interrupt_msi_function_number),
|
||||||
|
|
||||||
|
.cfg_pm_aspm_l1_entry_reject(1'b0),
|
||||||
|
.cfg_pm_aspm_tx_l0s_entry_disable(1'b0),
|
||||||
|
|
||||||
|
.cfg_hot_reset_out(),
|
||||||
|
|
||||||
|
.cfg_config_space_enable(1'b1),
|
||||||
|
.cfg_req_pm_transition_l23_ready(1'b0),
|
||||||
|
.cfg_hot_reset_in(1'b0),
|
||||||
|
|
||||||
|
.cfg_ds_port_number(8'd0),
|
||||||
|
.cfg_ds_bus_number(8'd0),
|
||||||
|
.cfg_ds_device_number(5'd0),
|
||||||
|
|
||||||
|
.sys_clk(pcie_sys_clk),
|
||||||
|
.sys_clk_gt(pcie_sys_clk_gt),
|
||||||
|
.sys_reset(pcie_reset_n),
|
||||||
|
|
||||||
|
.phy_rdy_out()
|
||||||
|
);
|
||||||
|
|
||||||
|
// XGMII 10G PHY
|
||||||
|
wire sfp0_tx_clk_int;
|
||||||
|
wire sfp0_tx_rst_int;
|
||||||
|
wire [63:0] sfp0_txd_int;
|
||||||
|
wire [7:0] sfp0_txc_int;
|
||||||
|
wire sfp0_rx_clk_int;
|
||||||
|
wire sfp0_rx_rst_int;
|
||||||
|
wire [63:0] sfp0_rxd_int;
|
||||||
|
wire [7:0] sfp0_rxc_int;
|
||||||
|
|
||||||
|
wire sfp1_tx_clk_int;
|
||||||
|
wire sfp1_tx_rst_int;
|
||||||
|
wire [63:0] sfp1_txd_int;
|
||||||
|
wire [7:0] sfp1_txc_int;
|
||||||
|
wire sfp1_rx_clk_int;
|
||||||
|
wire sfp1_rx_rst_int;
|
||||||
|
wire [63:0] sfp1_rxd_int;
|
||||||
|
wire [7:0] sfp1_rxc_int;
|
||||||
|
|
||||||
|
wire sfp0_rx_block_lock;
|
||||||
|
wire sfp1_rx_block_lock;
|
||||||
|
|
||||||
|
wire sfp_mgt_refclk;
|
||||||
|
|
||||||
|
wire [1:0] gt_txclkout;
|
||||||
|
wire gt_txusrclk;
|
||||||
|
wire gt_txusrclk2;
|
||||||
|
|
||||||
|
wire [1:0] gt_rxclkout;
|
||||||
|
wire [1:0] gt_rxusrclk;
|
||||||
|
wire [1:0] gt_rxusrclk2;
|
||||||
|
|
||||||
|
wire gt_reset_tx_done;
|
||||||
|
wire gt_reset_rx_done;
|
||||||
|
|
||||||
|
wire [1:0] gt_txprgdivresetdone;
|
||||||
|
wire [1:0] gt_txpmaresetdone;
|
||||||
|
wire [1:0] gt_rxprgdivresetdone;
|
||||||
|
wire [1:0] gt_rxpmaresetdone;
|
||||||
|
|
||||||
|
wire gt_tx_reset = ~((>_txprgdivresetdone) & (>_txpmaresetdone));
|
||||||
|
wire gt_rx_reset = ~>_rxpmaresetdone;
|
||||||
|
|
||||||
|
reg gt_userclk_tx_active = 1'b0;
|
||||||
|
reg [1:0] gt_userclk_rx_active = 1'b0;
|
||||||
|
|
||||||
|
IBUFDS_GTE4 ibufds_gte4_sfp_mgt_refclk_inst (
|
||||||
|
.I (sfp_mgt_refclk_0_p),
|
||||||
|
.IB (sfp_mgt_refclk_0_n),
|
||||||
|
.CEB (1'b0),
|
||||||
|
.O (sfp_mgt_refclk),
|
||||||
|
.ODIV2 ()
|
||||||
|
);
|
||||||
|
|
||||||
|
BUFG_GT bufg_gt_tx_usrclk_inst (
|
||||||
|
.CE (1'b1),
|
||||||
|
.CEMASK (1'b0),
|
||||||
|
.CLR (gt_tx_reset),
|
||||||
|
.CLRMASK (1'b0),
|
||||||
|
.DIV (3'd0),
|
||||||
|
.I (gt_txclkout[0]),
|
||||||
|
.O (gt_txusrclk)
|
||||||
|
);
|
||||||
|
|
||||||
|
BUFG_GT bufg_gt_tx_usrclk2_inst (
|
||||||
|
.CE (1'b1),
|
||||||
|
.CEMASK (1'b0),
|
||||||
|
.CLR (gt_tx_reset),
|
||||||
|
.CLRMASK (1'b0),
|
||||||
|
.DIV (3'd1),
|
||||||
|
.I (gt_txclkout[0]),
|
||||||
|
.O (gt_txusrclk2)
|
||||||
|
);
|
||||||
|
|
||||||
|
assign clk_156mhz_int = gt_txusrclk2;
|
||||||
|
|
||||||
|
always @(posedge gt_txusrclk, posedge gt_tx_reset) begin
|
||||||
|
if (gt_tx_reset) begin
|
||||||
|
gt_userclk_tx_active <= 1'b0;
|
||||||
|
end else begin
|
||||||
|
gt_userclk_tx_active <= 1'b1;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
genvar n;
|
||||||
|
|
||||||
|
generate
|
||||||
|
|
||||||
|
for (n = 0 ; n < 2; n = n + 1) begin
|
||||||
|
|
||||||
|
BUFG_GT bufg_gt_rx_usrclk_0_inst (
|
||||||
|
.CE (1'b1),
|
||||||
|
.CEMASK (1'b0),
|
||||||
|
.CLR (gt_rx_reset),
|
||||||
|
.CLRMASK (1'b0),
|
||||||
|
.DIV (3'd0),
|
||||||
|
.I (gt_rxclkout[n]),
|
||||||
|
.O (gt_rxusrclk[n])
|
||||||
|
);
|
||||||
|
|
||||||
|
BUFG_GT bufg_gt_rx_usrclk2_0_inst (
|
||||||
|
.CE (1'b1),
|
||||||
|
.CEMASK (1'b0),
|
||||||
|
.CLR (gt_rx_reset),
|
||||||
|
.CLRMASK (1'b0),
|
||||||
|
.DIV (3'd1),
|
||||||
|
.I (gt_rxclkout[n]),
|
||||||
|
.O (gt_rxusrclk2[n])
|
||||||
|
);
|
||||||
|
|
||||||
|
always @(posedge gt_rxusrclk[n], posedge gt_rx_reset) begin
|
||||||
|
if (gt_rx_reset) begin
|
||||||
|
gt_userclk_rx_active[n] <= 1'b0;
|
||||||
|
end else begin
|
||||||
|
gt_userclk_rx_active[n] <= 1'b1;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
endgenerate
|
||||||
|
|
||||||
|
sync_reset #(
|
||||||
|
.N(4)
|
||||||
|
)
|
||||||
|
sync_reset_156mhz_inst (
|
||||||
|
.clk(clk_156mhz_int),
|
||||||
|
.rst(~gt_reset_tx_done),
|
||||||
|
.out(rst_156mhz_int)
|
||||||
|
);
|
||||||
|
|
||||||
|
wire [5:0] sfp0_gt_txheader;
|
||||||
|
wire [63:0] sfp0_gt_txdata;
|
||||||
|
wire sfp0_gt_rxgearboxslip;
|
||||||
|
wire [5:0] sfp0_gt_rxheader;
|
||||||
|
wire [1:0] sfp0_gt_rxheadervalid;
|
||||||
|
wire [63:0] sfp0_gt_rxdata;
|
||||||
|
wire [1:0] sfp0_gt_rxdatavalid;
|
||||||
|
|
||||||
|
wire [5:0] sfp1_gt_txheader;
|
||||||
|
wire [63:0] sfp1_gt_txdata;
|
||||||
|
wire sfp1_gt_rxgearboxslip;
|
||||||
|
wire [5:0] sfp1_gt_rxheader;
|
||||||
|
wire [1:0] sfp1_gt_rxheadervalid;
|
||||||
|
wire [63:0] sfp1_gt_rxdata;
|
||||||
|
wire [1:0] sfp1_gt_rxdatavalid;
|
||||||
|
|
||||||
|
gtwizard_ultrascale_0
|
||||||
|
sfp_gth_inst (
|
||||||
|
.gtwiz_userclk_tx_active_in(>_userclk_tx_active),
|
||||||
|
.gtwiz_userclk_rx_active_in(>_userclk_rx_active),
|
||||||
|
|
||||||
|
.gtwiz_reset_clk_freerun_in(clk_125mhz_int),
|
||||||
|
.gtwiz_reset_all_in(rst_125mhz_int),
|
||||||
|
|
||||||
|
.gtwiz_reset_tx_pll_and_datapath_in(1'b0),
|
||||||
|
.gtwiz_reset_tx_datapath_in(1'b0),
|
||||||
|
|
||||||
|
.gtwiz_reset_rx_pll_and_datapath_in(1'b0),
|
||||||
|
.gtwiz_reset_rx_datapath_in(1'b0),
|
||||||
|
|
||||||
|
.gtwiz_reset_rx_cdr_stable_out(),
|
||||||
|
|
||||||
|
.gtwiz_reset_tx_done_out(gt_reset_tx_done),
|
||||||
|
.gtwiz_reset_rx_done_out(gt_reset_rx_done),
|
||||||
|
|
||||||
|
.gtrefclk00_in(sfp_mgt_refclk),
|
||||||
|
|
||||||
|
.qpll0outclk_out(),
|
||||||
|
.qpll0outrefclk_out(),
|
||||||
|
|
||||||
|
.gthrxn_in({sfp1_rx_n, sfp0_rx_n}),
|
||||||
|
.gthrxp_in({sfp1_rx_p, sfp0_rx_p}),
|
||||||
|
|
||||||
|
.rxusrclk_in(gt_rxusrclk),
|
||||||
|
.rxusrclk2_in(gt_rxusrclk2),
|
||||||
|
|
||||||
|
.gtwiz_userdata_tx_in({sfp1_gt_txdata, sfp0_gt_txdata}),
|
||||||
|
.txheader_in({sfp1_gt_txheader, sfp0_gt_txheader}),
|
||||||
|
.txsequence_in({2{7'b0}}),
|
||||||
|
|
||||||
|
.txusrclk_in({2{gt_txusrclk}}),
|
||||||
|
.txusrclk2_in({2{gt_txusrclk2}}),
|
||||||
|
|
||||||
|
.gtpowergood_out(),
|
||||||
|
|
||||||
|
.gthtxn_out({sfp1_tx_n, sfp0_tx_n}),
|
||||||
|
.gthtxp_out({sfp1_tx_p, sfp0_tx_p}),
|
||||||
|
|
||||||
|
.rxgearboxslip_in({sfp1_gt_rxgearboxslip, sfp0_gt_rxgearboxslip}),
|
||||||
|
.gtwiz_userdata_rx_out({sfp1_gt_rxdata, sfp0_gt_rxdata}),
|
||||||
|
.rxdatavalid_out({sfp1_gt_rxdatavalid, sfp0_gt_rxdatavalid}),
|
||||||
|
.rxheader_out({sfp1_gt_rxheader, sfp0_gt_rxheader}),
|
||||||
|
.rxheadervalid_out({sfp1_gt_rxheadervalid, sfp0_gt_rxheadervalid}),
|
||||||
|
.rxoutclk_out(gt_rxclkout),
|
||||||
|
.rxpmaresetdone_out(gt_rxpmaresetdone),
|
||||||
|
.rxprgdivresetdone_out(gt_rxprgdivresetdone),
|
||||||
|
.rxstartofseq_out(),
|
||||||
|
|
||||||
|
.txoutclk_out(gt_txclkout),
|
||||||
|
.txpmaresetdone_out(gt_txpmaresetdone),
|
||||||
|
.txprgdivresetdone_out(gt_txprgdivresetdone)
|
||||||
|
);
|
||||||
|
|
||||||
|
assign sfp0_tx_clk_int = clk_156mhz_int;
|
||||||
|
assign sfp0_tx_rst_int = rst_156mhz_int;
|
||||||
|
|
||||||
|
assign sfp0_rx_clk_int = gt_rxusrclk2[0];
|
||||||
|
|
||||||
|
sync_reset #(
|
||||||
|
.N(4)
|
||||||
|
)
|
||||||
|
sfp0_rx_rst_reset_sync_inst (
|
||||||
|
.clk(sfp0_rx_clk_int),
|
||||||
|
.rst(~gt_reset_rx_done),
|
||||||
|
.out(sfp0_rx_rst_int)
|
||||||
|
);
|
||||||
|
|
||||||
|
eth_phy_10g #(
|
||||||
|
.BIT_REVERSE(1)
|
||||||
|
)
|
||||||
|
sfp0_phy_inst (
|
||||||
|
.tx_clk(sfp0_tx_clk_int),
|
||||||
|
.tx_rst(sfp0_tx_rst_int),
|
||||||
|
.rx_clk(sfp0_rx_clk_int),
|
||||||
|
.rx_rst(sfp0_rx_rst_int),
|
||||||
|
.xgmii_txd(sfp0_txd_int),
|
||||||
|
.xgmii_txc(sfp0_txc_int),
|
||||||
|
.xgmii_rxd(sfp0_rxd_int),
|
||||||
|
.xgmii_rxc(sfp0_rxc_int),
|
||||||
|
.serdes_tx_data(sfp0_gt_txdata),
|
||||||
|
.serdes_tx_hdr(sfp0_gt_txheader),
|
||||||
|
.serdes_rx_data(sfp0_gt_rxdata),
|
||||||
|
.serdes_rx_hdr(sfp0_gt_rxheader),
|
||||||
|
.serdes_rx_bitslip(sfp0_gt_rxgearboxslip),
|
||||||
|
.rx_block_lock(sfp0_rx_block_lock),
|
||||||
|
.rx_high_ber()
|
||||||
|
);
|
||||||
|
|
||||||
|
assign sfp1_tx_clk_int = clk_156mhz_int;
|
||||||
|
assign sfp1_tx_rst_int = rst_156mhz_int;
|
||||||
|
|
||||||
|
assign sfp1_rx_clk_int = gt_rxusrclk2[1];
|
||||||
|
|
||||||
|
sync_reset #(
|
||||||
|
.N(4)
|
||||||
|
)
|
||||||
|
sfp1_rx_rst_reset_sync_inst (
|
||||||
|
.clk(sfp1_rx_clk_int),
|
||||||
|
.rst(~gt_reset_rx_done),
|
||||||
|
.out(sfp1_rx_rst_int)
|
||||||
|
);
|
||||||
|
|
||||||
|
eth_phy_10g #(
|
||||||
|
.BIT_REVERSE(1)
|
||||||
|
)
|
||||||
|
sfp1_phy_inst (
|
||||||
|
.tx_clk(sfp1_tx_clk_int),
|
||||||
|
.tx_rst(sfp1_tx_rst_int),
|
||||||
|
.rx_clk(sfp1_rx_clk_int),
|
||||||
|
.rx_rst(sfp1_rx_rst_int),
|
||||||
|
.xgmii_txd(sfp1_txd_int),
|
||||||
|
.xgmii_txc(sfp1_txc_int),
|
||||||
|
.xgmii_rxd(sfp1_rxd_int),
|
||||||
|
.xgmii_rxc(sfp1_rxc_int),
|
||||||
|
.serdes_tx_data(sfp1_gt_txdata),
|
||||||
|
.serdes_tx_hdr(sfp1_gt_txheader),
|
||||||
|
.serdes_rx_data(sfp1_gt_rxdata),
|
||||||
|
.serdes_rx_hdr(sfp1_gt_rxheader),
|
||||||
|
.serdes_rx_bitslip(sfp1_gt_rxgearboxslip),
|
||||||
|
.rx_block_lock(sfp1_rx_block_lock),
|
||||||
|
.rx_high_ber()
|
||||||
|
);
|
||||||
|
|
||||||
|
fpga_core #(
|
||||||
|
.AXIS_PCIE_DATA_WIDTH(AXIS_PCIE_DATA_WIDTH),
|
||||||
|
.AXIS_PCIE_KEEP_WIDTH(AXIS_PCIE_KEEP_WIDTH),
|
||||||
|
.AXIS_PCIE_RC_USER_WIDTH(AXIS_PCIE_RC_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_RQ_USER_WIDTH(AXIS_PCIE_RQ_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_CQ_USER_WIDTH(AXIS_PCIE_CQ_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_CC_USER_WIDTH(AXIS_PCIE_CC_USER_WIDTH),
|
||||||
|
.RQ_SEQ_NUM_WIDTH(RQ_SEQ_NUM_WIDTH),
|
||||||
|
.BAR0_APERTURE(BAR0_APERTURE)
|
||||||
|
)
|
||||||
|
core_inst (
|
||||||
|
/*
|
||||||
|
* Clock: 250 MHz
|
||||||
|
* Synchronous reset
|
||||||
|
*/
|
||||||
|
.clk_250mhz(pcie_user_clk),
|
||||||
|
.rst_250mhz(pcie_user_reset),
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPIO
|
||||||
|
*/
|
||||||
|
.btnu(btnu_int),
|
||||||
|
.btnl(btnl_int),
|
||||||
|
.btnd(btnd_int),
|
||||||
|
.btnr(btnr_int),
|
||||||
|
.btnc(btnc_int),
|
||||||
|
.sw(sw_int),
|
||||||
|
.led(led),
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I2C
|
||||||
|
*/
|
||||||
|
.i2c_scl_i(i2c1_scl_i),
|
||||||
|
.i2c_scl_o(i2c1_scl_o),
|
||||||
|
.i2c_scl_t(i2c1_scl_t),
|
||||||
|
.i2c_sda_i(i2c1_sda_i),
|
||||||
|
.i2c_sda_o(i2c1_sda_o),
|
||||||
|
.i2c_sda_t(i2c1_sda_t),
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PCIe
|
||||||
|
*/
|
||||||
|
.m_axis_rq_tdata(axis_rq_tdata),
|
||||||
|
.m_axis_rq_tkeep(axis_rq_tkeep),
|
||||||
|
.m_axis_rq_tlast(axis_rq_tlast),
|
||||||
|
.m_axis_rq_tready(axis_rq_tready),
|
||||||
|
.m_axis_rq_tuser(axis_rq_tuser),
|
||||||
|
.m_axis_rq_tvalid(axis_rq_tvalid),
|
||||||
|
|
||||||
|
.s_axis_rc_tdata(axis_rc_tdata),
|
||||||
|
.s_axis_rc_tkeep(axis_rc_tkeep),
|
||||||
|
.s_axis_rc_tlast(axis_rc_tlast),
|
||||||
|
.s_axis_rc_tready(axis_rc_tready),
|
||||||
|
.s_axis_rc_tuser(axis_rc_tuser),
|
||||||
|
.s_axis_rc_tvalid(axis_rc_tvalid),
|
||||||
|
|
||||||
|
.s_axis_cq_tdata(axis_cq_tdata),
|
||||||
|
.s_axis_cq_tkeep(axis_cq_tkeep),
|
||||||
|
.s_axis_cq_tlast(axis_cq_tlast),
|
||||||
|
.s_axis_cq_tready(axis_cq_tready),
|
||||||
|
.s_axis_cq_tuser(axis_cq_tuser),
|
||||||
|
.s_axis_cq_tvalid(axis_cq_tvalid),
|
||||||
|
|
||||||
|
.m_axis_cc_tdata(axis_cc_tdata),
|
||||||
|
.m_axis_cc_tkeep(axis_cc_tkeep),
|
||||||
|
.m_axis_cc_tlast(axis_cc_tlast),
|
||||||
|
.m_axis_cc_tready(axis_cc_tready),
|
||||||
|
.m_axis_cc_tuser(axis_cc_tuser),
|
||||||
|
.m_axis_cc_tvalid(axis_cc_tvalid),
|
||||||
|
|
||||||
|
.s_axis_rq_seq_num_0(pcie_rq_seq_num0),
|
||||||
|
.s_axis_rq_seq_num_valid_0(pcie_rq_seq_num_vld0),
|
||||||
|
.s_axis_rq_seq_num_1(pcie_rq_seq_num1),
|
||||||
|
.s_axis_rq_seq_num_valid_1(pcie_rq_seq_num_vld1),
|
||||||
|
|
||||||
|
.pcie_tfc_nph_av(pcie_tfc_nph_av),
|
||||||
|
.pcie_tfc_npd_av(pcie_tfc_npd_av),
|
||||||
|
|
||||||
|
.cfg_max_payload(cfg_max_payload),
|
||||||
|
.cfg_max_read_req(cfg_max_read_req),
|
||||||
|
|
||||||
|
.cfg_mgmt_addr(cfg_mgmt_addr),
|
||||||
|
.cfg_mgmt_function_number(cfg_mgmt_function_number),
|
||||||
|
.cfg_mgmt_write(cfg_mgmt_write),
|
||||||
|
.cfg_mgmt_write_data(cfg_mgmt_write_data),
|
||||||
|
.cfg_mgmt_byte_enable(cfg_mgmt_byte_enable),
|
||||||
|
.cfg_mgmt_read(cfg_mgmt_read),
|
||||||
|
.cfg_mgmt_read_data(cfg_mgmt_read_data),
|
||||||
|
.cfg_mgmt_read_write_done(cfg_mgmt_read_write_done),
|
||||||
|
|
||||||
|
.cfg_fc_ph(cfg_fc_ph),
|
||||||
|
.cfg_fc_pd(cfg_fc_pd),
|
||||||
|
.cfg_fc_nph(cfg_fc_nph),
|
||||||
|
.cfg_fc_npd(cfg_fc_npd),
|
||||||
|
.cfg_fc_cplh(cfg_fc_cplh),
|
||||||
|
.cfg_fc_cpld(cfg_fc_cpld),
|
||||||
|
.cfg_fc_sel(cfg_fc_sel),
|
||||||
|
|
||||||
|
.cfg_interrupt_msi_enable(cfg_interrupt_msi_enable),
|
||||||
|
.cfg_interrupt_msi_mmenable(cfg_interrupt_msi_mmenable),
|
||||||
|
.cfg_interrupt_msi_mask_update(cfg_interrupt_msi_mask_update),
|
||||||
|
.cfg_interrupt_msi_data(cfg_interrupt_msi_data),
|
||||||
|
.cfg_interrupt_msi_select(cfg_interrupt_msi_select),
|
||||||
|
.cfg_interrupt_msi_int(cfg_interrupt_msi_int),
|
||||||
|
.cfg_interrupt_msi_pending_status(cfg_interrupt_msi_pending_status),
|
||||||
|
.cfg_interrupt_msi_pending_status_data_enable(cfg_interrupt_msi_pending_status_data_enable),
|
||||||
|
.cfg_interrupt_msi_pending_status_function_num(cfg_interrupt_msi_pending_status_function_num),
|
||||||
|
.cfg_interrupt_msi_sent(cfg_interrupt_msi_sent),
|
||||||
|
.cfg_interrupt_msi_fail(cfg_interrupt_msi_fail),
|
||||||
|
.cfg_interrupt_msi_attr(cfg_interrupt_msi_attr),
|
||||||
|
.cfg_interrupt_msi_tph_present(cfg_interrupt_msi_tph_present),
|
||||||
|
.cfg_interrupt_msi_tph_type(cfg_interrupt_msi_tph_type),
|
||||||
|
.cfg_interrupt_msi_tph_st_tag(cfg_interrupt_msi_tph_st_tag),
|
||||||
|
.cfg_interrupt_msi_function_number(cfg_interrupt_msi_function_number),
|
||||||
|
|
||||||
|
.status_error_cor(status_error_cor),
|
||||||
|
.status_error_uncor(status_error_uncor),
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ethernet: SFP+
|
||||||
|
*/
|
||||||
|
.sfp0_tx_clk(sfp0_tx_clk_int),
|
||||||
|
.sfp0_tx_rst(sfp0_tx_rst_int),
|
||||||
|
.sfp0_txd(sfp0_txd_int),
|
||||||
|
.sfp0_txc(sfp0_txc_int),
|
||||||
|
.sfp0_rx_clk(sfp0_rx_clk_int),
|
||||||
|
.sfp0_rx_rst(sfp0_rx_rst_int),
|
||||||
|
.sfp0_rxd(sfp0_rxd_int),
|
||||||
|
.sfp0_rxc(sfp0_rxc_int),
|
||||||
|
.sfp0_tx_disable_b(sfp0_tx_disable_b),
|
||||||
|
.sfp1_tx_clk(sfp1_tx_clk_int),
|
||||||
|
.sfp1_tx_rst(sfp1_tx_rst_int),
|
||||||
|
.sfp1_txd(sfp1_txd_int),
|
||||||
|
.sfp1_txc(sfp1_txc_int),
|
||||||
|
.sfp1_rx_clk(sfp1_rx_clk_int),
|
||||||
|
.sfp1_rx_rst(sfp1_rx_rst_int),
|
||||||
|
.sfp1_rxd(sfp1_rxd_int),
|
||||||
|
.sfp1_rxc(sfp1_rxc_int),
|
||||||
|
.sfp1_tx_disable_b(sfp1_tx_disable_b)
|
||||||
|
);
|
||||||
|
|
||||||
|
endmodule
|
2148
fpga/mqnic/ZCU106/fpga_pcie/rtl/fpga_core.v
Normal file
2148
fpga/mqnic/ZCU106/fpga_pcie/rtl/fpga_core.v
Normal file
File diff suppressed because it is too large
Load Diff
58
fpga/mqnic/ZCU106/fpga_pcie/rtl/sync_signal.v
Normal file
58
fpga/mqnic/ZCU106/fpga_pcie/rtl/sync_signal.v
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright (c) 2014-2018 Alex Forencich
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Language: Verilog-2001
|
||||||
|
|
||||||
|
`timescale 1 ns / 1 ps
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Synchronizes an asyncronous signal to a given clock by using a pipeline of
|
||||||
|
* two registers.
|
||||||
|
*/
|
||||||
|
module sync_signal #(
|
||||||
|
parameter WIDTH=1, // width of the input and output signals
|
||||||
|
parameter N=2 // depth of synchronizer
|
||||||
|
)(
|
||||||
|
input wire clk,
|
||||||
|
input wire [WIDTH-1:0] in,
|
||||||
|
output wire [WIDTH-1:0] out
|
||||||
|
);
|
||||||
|
|
||||||
|
reg [WIDTH-1:0] sync_reg[N-1:0];
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The synchronized output is the last register in the pipeline.
|
||||||
|
*/
|
||||||
|
assign out = sync_reg[N-1];
|
||||||
|
|
||||||
|
integer k;
|
||||||
|
|
||||||
|
always @(posedge clk) begin
|
||||||
|
sync_reg[0] <= in;
|
||||||
|
for (k = 1; k < N; k = k + 1) begin
|
||||||
|
sync_reg[k] <= sync_reg[k-1];
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
endmodule
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/axis_ep.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/axis_ep.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/eth/tb/axis_ep.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/eth_ep.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/eth_ep.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/eth/tb/eth_ep.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/ip_ep.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/ip_ep.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/eth/tb/ip_ep.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/mqnic.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/mqnic.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../../../common/tb/mqnic.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/pcie/tb/pcie.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie_us.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie_us.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/pcie/tb/pcie_us.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie_usp.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/pcie_usp.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/pcie/tb/pcie_usp.py
|
825
fpga/mqnic/ZCU106/fpga_pcie/tb/test_fpga_core.py
Executable file
825
fpga/mqnic/ZCU106/fpga_pcie/tb/test_fpga_core.py
Executable file
@ -0,0 +1,825 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
"""
|
||||||
|
|
||||||
|
Copyright 2019, The Regents of the University of California.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. 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.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE REGENTS OF THE UNIVERSITY OF CALIFORNIA ''AS
|
||||||
|
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF THE UNIVERSITY OF CALIFORNIA OR
|
||||||
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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.
|
||||||
|
|
||||||
|
The views and conclusions contained in the software and documentation are those
|
||||||
|
of the authors and should not be interpreted as representing official policies,
|
||||||
|
either expressed or implied, of The Regents of the University of California.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
from myhdl import *
|
||||||
|
import os
|
||||||
|
|
||||||
|
import pcie
|
||||||
|
import pcie_usp
|
||||||
|
import xgmii_ep
|
||||||
|
import axis_ep
|
||||||
|
import eth_ep
|
||||||
|
import udp_ep
|
||||||
|
|
||||||
|
import struct
|
||||||
|
|
||||||
|
import mqnic
|
||||||
|
|
||||||
|
module = 'fpga_core'
|
||||||
|
testbench = 'test_%s' % module
|
||||||
|
|
||||||
|
srcs = []
|
||||||
|
|
||||||
|
srcs.append("../rtl/%s.v" % module)
|
||||||
|
srcs.append("../rtl/common/interface.v")
|
||||||
|
srcs.append("../rtl/common/port.v")
|
||||||
|
srcs.append("../rtl/common/cpl_write.v")
|
||||||
|
srcs.append("../rtl/common/cpl_op_mux.v")
|
||||||
|
srcs.append("../rtl/common/desc_fetch.v")
|
||||||
|
srcs.append("../rtl/common/desc_op_mux.v")
|
||||||
|
srcs.append("../rtl/common/queue_manager.v")
|
||||||
|
srcs.append("../rtl/common/cpl_queue_manager.v")
|
||||||
|
srcs.append("../rtl/common/tx_engine.v")
|
||||||
|
srcs.append("../rtl/common/rx_engine.v")
|
||||||
|
srcs.append("../rtl/common/tx_checksum.v")
|
||||||
|
srcs.append("../rtl/common/rx_hash.v")
|
||||||
|
srcs.append("../rtl/common/rx_checksum.v")
|
||||||
|
srcs.append("../rtl/common/tx_scheduler_rr.v")
|
||||||
|
srcs.append("../rtl/common/event_mux.v")
|
||||||
|
srcs.append("../rtl/common/tdma_scheduler.v")
|
||||||
|
srcs.append("../rtl/common/tdma_ber.v")
|
||||||
|
srcs.append("../rtl/common/tdma_ber_ch.v")
|
||||||
|
srcs.append("../lib/eth/rtl/eth_mac_10g_fifo.v")
|
||||||
|
srcs.append("../lib/eth/rtl/eth_mac_10g.v")
|
||||||
|
srcs.append("../lib/eth/rtl/axis_xgmii_rx_64.v")
|
||||||
|
srcs.append("../lib/eth/rtl/axis_xgmii_tx_64.v")
|
||||||
|
srcs.append("../lib/eth/rtl/lfsr.v")
|
||||||
|
srcs.append("../lib/eth/rtl/ptp_clock.v")
|
||||||
|
srcs.append("../lib/eth/rtl/ptp_clock_cdc.v")
|
||||||
|
srcs.append("../lib/eth/rtl/ptp_perout.v")
|
||||||
|
srcs.append("../lib/eth/rtl/ptp_ts_extract.v")
|
||||||
|
srcs.append("../lib/axi/rtl/axil_interconnect.v")
|
||||||
|
srcs.append("../lib/axi/rtl/arbiter.v")
|
||||||
|
srcs.append("../lib/axi/rtl/priority_encoder.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_adapter.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_arb_mux.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_async_fifo.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_async_fifo_adapter.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_fifo.v")
|
||||||
|
srcs.append("../lib/axis/rtl/axis_register.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/pcie_us_axil_master.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_pcie_us.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_pcie_us_rd.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_pcie_us_wr.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_mux.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_mux_rd.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_if_mux_wr.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_psdpram.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_client_axis_sink.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/dma_client_axis_source.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/pcie_us_cfg.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/pcie_us_msi.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/pcie_tag_manager.v")
|
||||||
|
srcs.append("../lib/pcie/rtl/pulse_merge.v")
|
||||||
|
srcs.append("%s.v" % testbench)
|
||||||
|
|
||||||
|
src = ' '.join(srcs)
|
||||||
|
|
||||||
|
build_cmd = "iverilog -o %s.vvp %s" % (testbench, src)
|
||||||
|
|
||||||
|
def frame_checksum(frame):
|
||||||
|
data = frame[14:]
|
||||||
|
|
||||||
|
csum = 0
|
||||||
|
odd = False
|
||||||
|
|
||||||
|
for b in data:
|
||||||
|
if odd:
|
||||||
|
csum += b
|
||||||
|
else:
|
||||||
|
csum += b << 8
|
||||||
|
odd = not odd
|
||||||
|
|
||||||
|
csum = (csum & 0xffff) + (csum >> 16)
|
||||||
|
csum = (csum & 0xffff) + (csum >> 16)
|
||||||
|
|
||||||
|
return csum
|
||||||
|
|
||||||
|
def bench():
|
||||||
|
|
||||||
|
# Parameters
|
||||||
|
AXIS_PCIE_DATA_WIDTH = 128
|
||||||
|
AXIS_PCIE_KEEP_WIDTH = (AXIS_PCIE_DATA_WIDTH/32)
|
||||||
|
AXIS_PCIE_RC_USER_WIDTH = 75
|
||||||
|
AXIS_PCIE_RQ_USER_WIDTH = 62
|
||||||
|
AXIS_PCIE_CQ_USER_WIDTH = 88
|
||||||
|
AXIS_PCIE_CC_USER_WIDTH = 33
|
||||||
|
RQ_SEQ_NUM_WIDTH = 6
|
||||||
|
BAR0_APERTURE = 24
|
||||||
|
|
||||||
|
# Inputs
|
||||||
|
clk = Signal(bool(0))
|
||||||
|
rst = Signal(bool(0))
|
||||||
|
current_test = Signal(intbv(0)[8:])
|
||||||
|
|
||||||
|
clk_250mhz = Signal(bool(0))
|
||||||
|
rst_250mhz = Signal(bool(0))
|
||||||
|
btnu = Signal(bool(0))
|
||||||
|
btnl = Signal(bool(0))
|
||||||
|
btnd = Signal(bool(0))
|
||||||
|
btnr = Signal(bool(0))
|
||||||
|
btnc = Signal(bool(0))
|
||||||
|
sw = Signal(intbv(0)[8:])
|
||||||
|
i2c_scl_i = Signal(bool(1))
|
||||||
|
i2c_sda_i = Signal(bool(1))
|
||||||
|
m_axis_rq_tready = Signal(bool(0))
|
||||||
|
s_axis_rc_tdata = Signal(intbv(0)[AXIS_PCIE_DATA_WIDTH:])
|
||||||
|
s_axis_rc_tkeep = Signal(intbv(0)[AXIS_PCIE_KEEP_WIDTH:])
|
||||||
|
s_axis_rc_tlast = Signal(bool(0))
|
||||||
|
s_axis_rc_tuser = Signal(intbv(0)[AXIS_PCIE_RC_USER_WIDTH:])
|
||||||
|
s_axis_rc_tvalid = Signal(bool(0))
|
||||||
|
s_axis_cq_tdata = Signal(intbv(0)[AXIS_PCIE_DATA_WIDTH:])
|
||||||
|
s_axis_cq_tkeep = Signal(intbv(0)[AXIS_PCIE_KEEP_WIDTH:])
|
||||||
|
s_axis_cq_tlast = Signal(bool(0))
|
||||||
|
s_axis_cq_tuser = Signal(intbv(0)[AXIS_PCIE_CQ_USER_WIDTH:])
|
||||||
|
s_axis_cq_tvalid = Signal(bool(0))
|
||||||
|
m_axis_cc_tready = Signal(bool(0))
|
||||||
|
s_axis_rq_seq_num_0 = Signal(intbv(0)[RQ_SEQ_NUM_WIDTH:])
|
||||||
|
s_axis_rq_seq_num_valid_0 = Signal(bool(0))
|
||||||
|
s_axis_rq_seq_num_1 = Signal(intbv(0)[RQ_SEQ_NUM_WIDTH:])
|
||||||
|
s_axis_rq_seq_num_valid_1 = Signal(bool(0))
|
||||||
|
pcie_tfc_nph_av = Signal(intbv(15)[4:])
|
||||||
|
pcie_tfc_npd_av = Signal(intbv(15)[4:])
|
||||||
|
cfg_max_payload = Signal(intbv(0)[2:])
|
||||||
|
cfg_max_read_req = Signal(intbv(0)[3:])
|
||||||
|
cfg_mgmt_read_data = Signal(intbv(0)[32:])
|
||||||
|
cfg_mgmt_read_write_done = Signal(bool(0))
|
||||||
|
cfg_fc_ph = Signal(intbv(0)[8:])
|
||||||
|
cfg_fc_pd = Signal(intbv(0)[12:])
|
||||||
|
cfg_fc_nph = Signal(intbv(0)[8:])
|
||||||
|
cfg_fc_npd = Signal(intbv(0)[12:])
|
||||||
|
cfg_fc_cplh = Signal(intbv(0)[8:])
|
||||||
|
cfg_fc_cpld = Signal(intbv(0)[12:])
|
||||||
|
cfg_interrupt_msi_enable = Signal(intbv(0)[4:])
|
||||||
|
cfg_interrupt_msi_mmenable = Signal(intbv(0)[12:])
|
||||||
|
cfg_interrupt_msi_mask_update = Signal(bool(0))
|
||||||
|
cfg_interrupt_msi_data = Signal(intbv(0)[32:])
|
||||||
|
cfg_interrupt_msi_sent = Signal(bool(0))
|
||||||
|
cfg_interrupt_msi_fail = Signal(bool(0))
|
||||||
|
sfp0_tx_clk = Signal(bool(0))
|
||||||
|
sfp0_tx_rst = Signal(bool(0))
|
||||||
|
sfp0_rx_clk = Signal(bool(0))
|
||||||
|
sfp0_rx_rst = Signal(bool(0))
|
||||||
|
sfp0_rxd = Signal(intbv(0)[64:])
|
||||||
|
sfp0_rxc = Signal(intbv(0)[8:])
|
||||||
|
sfp1_tx_clk = Signal(bool(0))
|
||||||
|
sfp1_tx_rst = Signal(bool(0))
|
||||||
|
sfp1_rx_clk = Signal(bool(0))
|
||||||
|
sfp1_rx_rst = Signal(bool(0))
|
||||||
|
sfp1_rxd = Signal(intbv(0)[64:])
|
||||||
|
sfp1_rxc = Signal(intbv(0)[8:])
|
||||||
|
|
||||||
|
# Outputs
|
||||||
|
led = Signal(intbv(0)[8:])
|
||||||
|
i2c_scl_o = Signal(bool(1))
|
||||||
|
i2c_scl_t = Signal(bool(1))
|
||||||
|
i2c_sda_o = Signal(bool(1))
|
||||||
|
i2c_sda_t = Signal(bool(1))
|
||||||
|
m_axis_rq_tdata = Signal(intbv(0)[AXIS_PCIE_DATA_WIDTH:])
|
||||||
|
m_axis_rq_tkeep = Signal(intbv(0)[AXIS_PCIE_KEEP_WIDTH:])
|
||||||
|
m_axis_rq_tlast = Signal(bool(0))
|
||||||
|
m_axis_rq_tuser = Signal(intbv(0)[AXIS_PCIE_RQ_USER_WIDTH:])
|
||||||
|
m_axis_rq_tvalid = Signal(bool(0))
|
||||||
|
s_axis_rc_tready = Signal(bool(0))
|
||||||
|
s_axis_cq_tready = Signal(bool(0))
|
||||||
|
m_axis_cc_tdata = Signal(intbv(0)[AXIS_PCIE_DATA_WIDTH:])
|
||||||
|
m_axis_cc_tkeep = Signal(intbv(0)[AXIS_PCIE_KEEP_WIDTH:])
|
||||||
|
m_axis_cc_tlast = Signal(bool(0))
|
||||||
|
m_axis_cc_tuser = Signal(intbv(0)[AXIS_PCIE_CC_USER_WIDTH:])
|
||||||
|
m_axis_cc_tvalid = Signal(bool(0))
|
||||||
|
status_error_cor = Signal(bool(0))
|
||||||
|
status_error_uncor = Signal(bool(0))
|
||||||
|
cfg_mgmt_addr = Signal(intbv(0)[10:])
|
||||||
|
cfg_mgmt_function_number = Signal(intbv(0)[8:])
|
||||||
|
cfg_mgmt_write = Signal(bool(0))
|
||||||
|
cfg_mgmt_write_data = Signal(intbv(0)[32:])
|
||||||
|
cfg_mgmt_byte_enable = Signal(intbv(0)[4:])
|
||||||
|
cfg_mgmt_read = Signal(bool(0))
|
||||||
|
cfg_fc_sel = Signal(intbv(4)[3:])
|
||||||
|
cfg_interrupt_msi_int = Signal(intbv(0)[32:])
|
||||||
|
cfg_interrupt_msi_pending_status = Signal(intbv(0)[32:])
|
||||||
|
cfg_interrupt_msi_select = Signal(intbv(0)[2:])
|
||||||
|
cfg_interrupt_msi_pending_status_function_num = Signal(intbv(0)[2:])
|
||||||
|
cfg_interrupt_msi_pending_status_data_enable = Signal(bool(0))
|
||||||
|
cfg_interrupt_msi_attr = Signal(intbv(0)[3:])
|
||||||
|
cfg_interrupt_msi_tph_present = Signal(bool(0))
|
||||||
|
cfg_interrupt_msi_tph_type = Signal(intbv(0)[2:])
|
||||||
|
cfg_interrupt_msi_tph_st_tag = Signal(intbv(0)[8:])
|
||||||
|
cfg_interrupt_msi_function_number = Signal(intbv(0)[8:])
|
||||||
|
sfp0_txd = Signal(intbv(0)[64:])
|
||||||
|
sfp0_txc = Signal(intbv(0)[8:])
|
||||||
|
sfp0_tx_disable_b = Signal(bool(0))
|
||||||
|
sfp1_txd = Signal(intbv(0)[64:])
|
||||||
|
sfp1_txc = Signal(intbv(0)[8:])
|
||||||
|
sfp1_tx_disable_b = Signal(bool(0))
|
||||||
|
|
||||||
|
# sources and sinks
|
||||||
|
sfp0_source = xgmii_ep.XGMIISource()
|
||||||
|
sfp0_source_logic = sfp0_source.create_logic(sfp0_rx_clk, sfp0_rx_rst, txd=sfp0_rxd, txc=sfp0_rxc, name='sfp0_source')
|
||||||
|
|
||||||
|
sfp0_sink = xgmii_ep.XGMIISink()
|
||||||
|
sfp0_sink_logic = sfp0_sink.create_logic(sfp0_tx_clk, sfp0_tx_rst, rxd=sfp0_txd, rxc=sfp0_txc, name='sfp0_sink')
|
||||||
|
|
||||||
|
sfp1_source = xgmii_ep.XGMIISource()
|
||||||
|
sfp1_source_logic = sfp1_source.create_logic(sfp1_rx_clk, sfp1_rx_rst, txd=sfp1_rxd, txc=sfp1_rxc, name='sfp1_source')
|
||||||
|
|
||||||
|
sfp1_sink = xgmii_ep.XGMIISink()
|
||||||
|
sfp1_sink_logic = sfp1_sink.create_logic(sfp1_tx_clk, sfp1_tx_rst, rxd=sfp1_txd, rxc=sfp1_txc, name='sfp1_sink')
|
||||||
|
|
||||||
|
# Clock and Reset Interface
|
||||||
|
user_clk=Signal(bool(0))
|
||||||
|
user_reset=Signal(bool(0))
|
||||||
|
sys_clk=Signal(bool(0))
|
||||||
|
sys_reset=Signal(bool(0))
|
||||||
|
|
||||||
|
# PCIe devices
|
||||||
|
rc = pcie.RootComplex()
|
||||||
|
|
||||||
|
rc.max_payload_size = 0x1 # 256 bytes
|
||||||
|
rc.max_read_request_size = 0x5 # 4096 bytes
|
||||||
|
|
||||||
|
driver = mqnic.Driver(rc)
|
||||||
|
|
||||||
|
dev = pcie_usp.UltrascalePlusPCIe()
|
||||||
|
|
||||||
|
dev.pcie_generation = 3
|
||||||
|
dev.pcie_link_width = 4
|
||||||
|
dev.user_clock_frequency = 250e6
|
||||||
|
|
||||||
|
dev.functions[0].msi_multiple_message_capable = 5
|
||||||
|
|
||||||
|
dev.functions[0].configure_bar(0, 2**BAR0_APERTURE, ext=True, prefetch=True)
|
||||||
|
|
||||||
|
rc.make_port().connect(dev)
|
||||||
|
|
||||||
|
cq_pause = Signal(bool(0))
|
||||||
|
cc_pause = Signal(bool(0))
|
||||||
|
rq_pause = Signal(bool(0))
|
||||||
|
rc_pause = Signal(bool(0))
|
||||||
|
|
||||||
|
pcie_logic = dev.create_logic(
|
||||||
|
# Completer reQuest Interface
|
||||||
|
m_axis_cq_tdata=s_axis_cq_tdata,
|
||||||
|
m_axis_cq_tuser=s_axis_cq_tuser,
|
||||||
|
m_axis_cq_tlast=s_axis_cq_tlast,
|
||||||
|
m_axis_cq_tkeep=s_axis_cq_tkeep,
|
||||||
|
m_axis_cq_tvalid=s_axis_cq_tvalid,
|
||||||
|
m_axis_cq_tready=s_axis_cq_tready,
|
||||||
|
#pcie_cq_np_req=pcie_cq_np_req,
|
||||||
|
pcie_cq_np_req=Signal(intbv(3)[2:]),
|
||||||
|
#pcie_cq_np_req_count=pcie_cq_np_req_count,
|
||||||
|
|
||||||
|
# Completer Completion Interface
|
||||||
|
s_axis_cc_tdata=m_axis_cc_tdata,
|
||||||
|
s_axis_cc_tuser=m_axis_cc_tuser,
|
||||||
|
s_axis_cc_tlast=m_axis_cc_tlast,
|
||||||
|
s_axis_cc_tkeep=m_axis_cc_tkeep,
|
||||||
|
s_axis_cc_tvalid=m_axis_cc_tvalid,
|
||||||
|
s_axis_cc_tready=m_axis_cc_tready,
|
||||||
|
|
||||||
|
# Requester reQuest Interface
|
||||||
|
s_axis_rq_tdata=m_axis_rq_tdata,
|
||||||
|
s_axis_rq_tuser=m_axis_rq_tuser,
|
||||||
|
s_axis_rq_tlast=m_axis_rq_tlast,
|
||||||
|
s_axis_rq_tkeep=m_axis_rq_tkeep,
|
||||||
|
s_axis_rq_tvalid=m_axis_rq_tvalid,
|
||||||
|
s_axis_rq_tready=m_axis_rq_tready,
|
||||||
|
pcie_rq_seq_num0=s_axis_rq_seq_num_0,
|
||||||
|
pcie_rq_seq_num_vld0=s_axis_rq_seq_num_valid_0,
|
||||||
|
pcie_rq_seq_num1=s_axis_rq_seq_num_1,
|
||||||
|
pcie_rq_seq_num_vld1=s_axis_rq_seq_num_valid_1,
|
||||||
|
#pcie_rq_tag0=pcie_rq_tag0,
|
||||||
|
#pcie_rq_tag1=pcie_rq_tag1,
|
||||||
|
#pcie_rq_tag_av=pcie_rq_tag_av,
|
||||||
|
#pcie_rq_tag_vld0=pcie_rq_tag_vld0,
|
||||||
|
#pcie_rq_tag_vld1=pcie_rq_tag_vld1,
|
||||||
|
|
||||||
|
# Requester Completion Interface
|
||||||
|
m_axis_rc_tdata=s_axis_rc_tdata,
|
||||||
|
m_axis_rc_tuser=s_axis_rc_tuser,
|
||||||
|
m_axis_rc_tlast=s_axis_rc_tlast,
|
||||||
|
m_axis_rc_tkeep=s_axis_rc_tkeep,
|
||||||
|
m_axis_rc_tvalid=s_axis_rc_tvalid,
|
||||||
|
m_axis_rc_tready=s_axis_rc_tready,
|
||||||
|
|
||||||
|
# Transmit Flow Control Interface
|
||||||
|
#pcie_tfc_nph_av=pcie_tfc_nph_av,
|
||||||
|
#pcie_tfc_npd_av=pcie_tfc_npd_av,
|
||||||
|
|
||||||
|
# Configuration Management Interface
|
||||||
|
cfg_mgmt_addr=cfg_mgmt_addr,
|
||||||
|
cfg_mgmt_function_number=cfg_mgmt_function_number,
|
||||||
|
cfg_mgmt_write=cfg_mgmt_write,
|
||||||
|
cfg_mgmt_write_data=cfg_mgmt_write_data,
|
||||||
|
cfg_mgmt_byte_enable=cfg_mgmt_byte_enable,
|
||||||
|
cfg_mgmt_read=cfg_mgmt_read,
|
||||||
|
cfg_mgmt_read_data=cfg_mgmt_read_data,
|
||||||
|
cfg_mgmt_read_write_done=cfg_mgmt_read_write_done,
|
||||||
|
#cfg_mgmt_debug_access=cfg_mgmt_debug_access,
|
||||||
|
|
||||||
|
# Configuration Status Interface
|
||||||
|
#cfg_phy_link_down=cfg_phy_link_down,
|
||||||
|
#cfg_phy_link_status=cfg_phy_link_status,
|
||||||
|
#cfg_negotiated_width=cfg_negotiated_width,
|
||||||
|
#cfg_current_speed=cfg_current_speed,
|
||||||
|
cfg_max_payload=cfg_max_payload,
|
||||||
|
cfg_max_read_req=cfg_max_read_req,
|
||||||
|
#cfg_function_status=cfg_function_status,
|
||||||
|
#cfg_vf_status=cfg_vf_status,
|
||||||
|
#cfg_function_power_state=cfg_function_power_state,
|
||||||
|
#cfg_vf_power_state=cfg_vf_power_state,
|
||||||
|
#cfg_link_power_state=cfg_link_power_state,
|
||||||
|
#cfg_err_cor_out=cfg_err_cor_out,
|
||||||
|
#cfg_err_nonfatal_out=cfg_err_nonfatal_out,
|
||||||
|
#cfg_err_fatal_out=cfg_err_fatal_out,
|
||||||
|
#cfg_local_err_out=cfg_local_err_out,
|
||||||
|
#cfg_local_err_valid=cfg_local_err_valid,
|
||||||
|
#cfg_rx_pm_state=cfg_rx_pm_state,
|
||||||
|
#cfg_tx_pm_state=cfg_tx_pm_state,
|
||||||
|
#cfg_ltssm_state=cfg_ltssm_state,
|
||||||
|
#cfg_rcb_status=cfg_rcb_status,
|
||||||
|
#cfg_obff_enable=cfg_obff_enable,
|
||||||
|
#cfg_pl_status_change=cfg_pl_status_change,
|
||||||
|
#cfg_tph_requester_enable=cfg_tph_requester_enable,
|
||||||
|
#cfg_tph_st_mode=cfg_tph_st_mode,
|
||||||
|
#cfg_vf_tph_requester_enable=cfg_vf_tph_requester_enable,
|
||||||
|
#cfg_vf_tph_st_mode=cfg_vf_tph_st_mode,
|
||||||
|
|
||||||
|
# Configuration Received Message Interface
|
||||||
|
#cfg_msg_received=cfg_msg_received,
|
||||||
|
#cfg_msg_received_data=cfg_msg_received_data,
|
||||||
|
#cfg_msg_received_type=cfg_msg_received_type,
|
||||||
|
|
||||||
|
# Configuration Transmit Message Interface
|
||||||
|
#cfg_msg_transmit=cfg_msg_transmit,
|
||||||
|
#cfg_msg_transmit_type=cfg_msg_transmit_type,
|
||||||
|
#cfg_msg_transmit_data=cfg_msg_transmit_data,
|
||||||
|
#cfg_msg_transmit_done=cfg_msg_transmit_done,
|
||||||
|
|
||||||
|
# Configuration Flow Control Interface
|
||||||
|
cfg_fc_ph=cfg_fc_ph,
|
||||||
|
cfg_fc_pd=cfg_fc_pd,
|
||||||
|
cfg_fc_nph=cfg_fc_nph,
|
||||||
|
cfg_fc_npd=cfg_fc_npd,
|
||||||
|
cfg_fc_cplh=cfg_fc_cplh,
|
||||||
|
cfg_fc_cpld=cfg_fc_cpld,
|
||||||
|
cfg_fc_sel=cfg_fc_sel,
|
||||||
|
|
||||||
|
# Configuration Control Interface
|
||||||
|
#cfg_hot_reset_in=cfg_hot_reset_in,
|
||||||
|
#cfg_hot_reset_out=cfg_hot_reset_out,
|
||||||
|
#cfg_config_space_enable=cfg_config_space_enable,
|
||||||
|
#cfg_dsn=cfg_dsn,
|
||||||
|
#cfg_ds_port_number=cfg_ds_port_number,
|
||||||
|
#cfg_ds_bus_number=cfg_ds_bus_number,
|
||||||
|
#cfg_ds_device_number=cfg_ds_device_number,
|
||||||
|
#cfg_ds_function_number=cfg_ds_function_number,
|
||||||
|
#cfg_power_state_change_ack=cfg_power_state_change_ack,
|
||||||
|
#cfg_power_state_change_interrupt=cfg_power_state_change_interrupt,
|
||||||
|
cfg_err_cor_in=status_error_cor,
|
||||||
|
cfg_err_uncor_in=status_error_uncor,
|
||||||
|
#cfg_flr_done=cfg_flr_done,
|
||||||
|
#cfg_vf_flr_done=cfg_vf_flr_done,
|
||||||
|
#cfg_flr_in_process=cfg_flr_in_process,
|
||||||
|
#cfg_vf_flr_in_process=cfg_vf_flr_in_process,
|
||||||
|
#cfg_req_pm_transition_l23_ready=cfg_req_pm_transition_l23_ready,
|
||||||
|
#cfg_link_training_enable=cfg_link_training_enable,
|
||||||
|
|
||||||
|
# Configuration Interrupt Controller Interface
|
||||||
|
#cfg_interrupt_int=cfg_interrupt_int,
|
||||||
|
#cfg_interrupt_sent=cfg_interrupt_sent,
|
||||||
|
#cfg_interrupt_pending=cfg_interrupt_pending,
|
||||||
|
cfg_interrupt_msi_enable=cfg_interrupt_msi_enable,
|
||||||
|
cfg_interrupt_msi_mmenable=cfg_interrupt_msi_mmenable,
|
||||||
|
cfg_interrupt_msi_mask_update=cfg_interrupt_msi_mask_update,
|
||||||
|
cfg_interrupt_msi_data=cfg_interrupt_msi_data,
|
||||||
|
cfg_interrupt_msi_select=cfg_interrupt_msi_select,
|
||||||
|
cfg_interrupt_msi_int=cfg_interrupt_msi_int,
|
||||||
|
cfg_interrupt_msi_pending_status=cfg_interrupt_msi_pending_status,
|
||||||
|
cfg_interrupt_msi_pending_status_data_enable=cfg_interrupt_msi_pending_status_data_enable,
|
||||||
|
cfg_interrupt_msi_pending_status_function_num=cfg_interrupt_msi_pending_status_function_num,
|
||||||
|
cfg_interrupt_msi_sent=cfg_interrupt_msi_sent,
|
||||||
|
cfg_interrupt_msi_fail=cfg_interrupt_msi_fail,
|
||||||
|
#cfg_interrupt_msix_enable=cfg_interrupt_msix_enable,
|
||||||
|
#cfg_interrupt_msix_mask=cfg_interrupt_msix_mask,
|
||||||
|
#cfg_interrupt_msix_vf_enable=cfg_interrupt_msix_vf_enable,
|
||||||
|
#cfg_interrupt_msix_vf_mask=cfg_interrupt_msix_vf_mask,
|
||||||
|
#cfg_interrupt_msix_address=cfg_interrupt_msix_address,
|
||||||
|
#cfg_interrupt_msix_data=cfg_interrupt_msix_data,
|
||||||
|
#cfg_interrupt_msix_int=cfg_interrupt_msix_int,
|
||||||
|
#cfg_interrupt_msix_vec_pending=cfg_interrupt_msix_vec_pending,
|
||||||
|
#cfg_interrupt_msix_vec_pending_status=cfg_interrupt_msix_vec_pending_status,
|
||||||
|
cfg_interrupt_msi_attr=cfg_interrupt_msi_attr,
|
||||||
|
cfg_interrupt_msi_tph_present=cfg_interrupt_msi_tph_present,
|
||||||
|
cfg_interrupt_msi_tph_type=cfg_interrupt_msi_tph_type,
|
||||||
|
cfg_interrupt_msi_tph_st_tag=cfg_interrupt_msi_tph_st_tag,
|
||||||
|
cfg_interrupt_msi_function_number=cfg_interrupt_msi_function_number,
|
||||||
|
|
||||||
|
# Configuration Extend Interface
|
||||||
|
#cfg_ext_read_received=cfg_ext_read_received,
|
||||||
|
#cfg_ext_write_received=cfg_ext_write_received,
|
||||||
|
#cfg_ext_register_number=cfg_ext_register_number,
|
||||||
|
#cfg_ext_function_number=cfg_ext_function_number,
|
||||||
|
#cfg_ext_write_data=cfg_ext_write_data,
|
||||||
|
#cfg_ext_write_byte_enable=cfg_ext_write_byte_enable,
|
||||||
|
#cfg_ext_read_data=cfg_ext_read_data,
|
||||||
|
#cfg_ext_read_data_valid=cfg_ext_read_data_valid,
|
||||||
|
|
||||||
|
# Clock and Reset Interface
|
||||||
|
user_clk=user_clk,
|
||||||
|
user_reset=user_reset,
|
||||||
|
sys_clk=sys_clk,
|
||||||
|
sys_clk_gt=sys_clk,
|
||||||
|
sys_reset=sys_reset,
|
||||||
|
#phy_rdy_out=phy_rdy_out,
|
||||||
|
|
||||||
|
cq_pause=cq_pause,
|
||||||
|
cc_pause=cc_pause,
|
||||||
|
rq_pause=rq_pause,
|
||||||
|
rc_pause=rc_pause
|
||||||
|
)
|
||||||
|
|
||||||
|
# DUT
|
||||||
|
if os.system(build_cmd):
|
||||||
|
raise Exception("Error running build command")
|
||||||
|
|
||||||
|
dut = Cosimulation(
|
||||||
|
"vvp -m myhdl %s.vvp -lxt2" % testbench,
|
||||||
|
clk=clk,
|
||||||
|
rst=rst,
|
||||||
|
current_test=current_test,
|
||||||
|
clk_250mhz=user_clk,
|
||||||
|
rst_250mhz=user_reset,
|
||||||
|
btnu=btnu,
|
||||||
|
btnl=btnl,
|
||||||
|
btnd=btnd,
|
||||||
|
btnr=btnr,
|
||||||
|
btnc=btnc,
|
||||||
|
sw=sw,
|
||||||
|
led=led,
|
||||||
|
i2c_scl_i=i2c_scl_i,
|
||||||
|
i2c_scl_o=i2c_scl_o,
|
||||||
|
i2c_scl_t=i2c_scl_t,
|
||||||
|
i2c_sda_i=i2c_sda_i,
|
||||||
|
i2c_sda_o=i2c_sda_o,
|
||||||
|
i2c_sda_t=i2c_sda_t,
|
||||||
|
m_axis_rq_tdata=m_axis_rq_tdata,
|
||||||
|
m_axis_rq_tkeep=m_axis_rq_tkeep,
|
||||||
|
m_axis_rq_tlast=m_axis_rq_tlast,
|
||||||
|
m_axis_rq_tready=m_axis_rq_tready,
|
||||||
|
m_axis_rq_tuser=m_axis_rq_tuser,
|
||||||
|
m_axis_rq_tvalid=m_axis_rq_tvalid,
|
||||||
|
s_axis_rc_tdata=s_axis_rc_tdata,
|
||||||
|
s_axis_rc_tkeep=s_axis_rc_tkeep,
|
||||||
|
s_axis_rc_tlast=s_axis_rc_tlast,
|
||||||
|
s_axis_rc_tready=s_axis_rc_tready,
|
||||||
|
s_axis_rc_tuser=s_axis_rc_tuser,
|
||||||
|
s_axis_rc_tvalid=s_axis_rc_tvalid,
|
||||||
|
s_axis_cq_tdata=s_axis_cq_tdata,
|
||||||
|
s_axis_cq_tkeep=s_axis_cq_tkeep,
|
||||||
|
s_axis_cq_tlast=s_axis_cq_tlast,
|
||||||
|
s_axis_cq_tready=s_axis_cq_tready,
|
||||||
|
s_axis_cq_tuser=s_axis_cq_tuser,
|
||||||
|
s_axis_cq_tvalid=s_axis_cq_tvalid,
|
||||||
|
m_axis_cc_tdata=m_axis_cc_tdata,
|
||||||
|
m_axis_cc_tkeep=m_axis_cc_tkeep,
|
||||||
|
m_axis_cc_tlast=m_axis_cc_tlast,
|
||||||
|
m_axis_cc_tready=m_axis_cc_tready,
|
||||||
|
m_axis_cc_tuser=m_axis_cc_tuser,
|
||||||
|
m_axis_cc_tvalid=m_axis_cc_tvalid,
|
||||||
|
s_axis_rq_seq_num_0=s_axis_rq_seq_num_0,
|
||||||
|
s_axis_rq_seq_num_valid_0=s_axis_rq_seq_num_valid_0,
|
||||||
|
s_axis_rq_seq_num_1=s_axis_rq_seq_num_1,
|
||||||
|
s_axis_rq_seq_num_valid_1=s_axis_rq_seq_num_valid_1,
|
||||||
|
pcie_tfc_nph_av=pcie_tfc_nph_av,
|
||||||
|
pcie_tfc_npd_av=pcie_tfc_npd_av,
|
||||||
|
cfg_max_payload=cfg_max_payload,
|
||||||
|
cfg_max_read_req=cfg_max_read_req,
|
||||||
|
cfg_mgmt_addr=cfg_mgmt_addr,
|
||||||
|
cfg_mgmt_function_number=cfg_mgmt_function_number,
|
||||||
|
cfg_mgmt_write=cfg_mgmt_write,
|
||||||
|
cfg_mgmt_write_data=cfg_mgmt_write_data,
|
||||||
|
cfg_mgmt_byte_enable=cfg_mgmt_byte_enable,
|
||||||
|
cfg_mgmt_read=cfg_mgmt_read,
|
||||||
|
cfg_mgmt_read_data=cfg_mgmt_read_data,
|
||||||
|
cfg_mgmt_read_write_done=cfg_mgmt_read_write_done,
|
||||||
|
cfg_fc_ph=cfg_fc_ph,
|
||||||
|
cfg_fc_pd=cfg_fc_pd,
|
||||||
|
cfg_fc_nph=cfg_fc_nph,
|
||||||
|
cfg_fc_npd=cfg_fc_npd,
|
||||||
|
cfg_fc_cplh=cfg_fc_cplh,
|
||||||
|
cfg_fc_cpld=cfg_fc_cpld,
|
||||||
|
cfg_fc_sel=cfg_fc_sel,
|
||||||
|
cfg_interrupt_msi_enable=cfg_interrupt_msi_enable,
|
||||||
|
cfg_interrupt_msi_int=cfg_interrupt_msi_int,
|
||||||
|
cfg_interrupt_msi_sent=cfg_interrupt_msi_sent,
|
||||||
|
cfg_interrupt_msi_fail=cfg_interrupt_msi_fail,
|
||||||
|
cfg_interrupt_msi_mmenable=cfg_interrupt_msi_mmenable,
|
||||||
|
cfg_interrupt_msi_pending_status=cfg_interrupt_msi_pending_status,
|
||||||
|
cfg_interrupt_msi_mask_update=cfg_interrupt_msi_mask_update,
|
||||||
|
cfg_interrupt_msi_select=cfg_interrupt_msi_select,
|
||||||
|
cfg_interrupt_msi_data=cfg_interrupt_msi_data,
|
||||||
|
cfg_interrupt_msi_pending_status_function_num=cfg_interrupt_msi_pending_status_function_num,
|
||||||
|
cfg_interrupt_msi_pending_status_data_enable=cfg_interrupt_msi_pending_status_data_enable,
|
||||||
|
cfg_interrupt_msi_attr=cfg_interrupt_msi_attr,
|
||||||
|
cfg_interrupt_msi_tph_present=cfg_interrupt_msi_tph_present,
|
||||||
|
cfg_interrupt_msi_tph_type=cfg_interrupt_msi_tph_type,
|
||||||
|
cfg_interrupt_msi_tph_st_tag=cfg_interrupt_msi_tph_st_tag,
|
||||||
|
cfg_interrupt_msi_function_number=cfg_interrupt_msi_function_number,
|
||||||
|
status_error_cor=status_error_cor,
|
||||||
|
status_error_uncor=status_error_uncor,
|
||||||
|
sfp0_tx_clk=sfp0_tx_clk,
|
||||||
|
sfp0_tx_rst=sfp0_tx_rst,
|
||||||
|
sfp0_txd=sfp0_txd,
|
||||||
|
sfp0_txc=sfp0_txc,
|
||||||
|
sfp0_rx_clk=sfp0_rx_clk,
|
||||||
|
sfp0_rx_rst=sfp0_rx_rst,
|
||||||
|
sfp0_rxd=sfp0_rxd,
|
||||||
|
sfp0_rxc=sfp0_rxc,
|
||||||
|
sfp0_tx_disable_b=sfp0_tx_disable_b,
|
||||||
|
sfp1_tx_clk=sfp1_tx_clk,
|
||||||
|
sfp1_tx_rst=sfp1_tx_rst,
|
||||||
|
sfp1_txd=sfp1_txd,
|
||||||
|
sfp1_txc=sfp1_txc,
|
||||||
|
sfp1_rx_clk=sfp1_rx_clk,
|
||||||
|
sfp1_rx_rst=sfp1_rx_rst,
|
||||||
|
sfp1_rxd=sfp1_rxd,
|
||||||
|
sfp1_rxc=sfp1_rxc,
|
||||||
|
sfp1_tx_disable_b=sfp1_tx_disable_b
|
||||||
|
)
|
||||||
|
|
||||||
|
@always(delay(5))
|
||||||
|
def clkgen():
|
||||||
|
clk.next = not clk
|
||||||
|
|
||||||
|
@always(delay(3))
|
||||||
|
def qsfp_clkgen():
|
||||||
|
sfp0_tx_clk.next = not sfp0_tx_clk
|
||||||
|
sfp0_rx_clk.next = not sfp0_rx_clk
|
||||||
|
sfp1_tx_clk.next = not sfp1_tx_clk
|
||||||
|
sfp1_rx_clk.next = not sfp1_rx_clk
|
||||||
|
|
||||||
|
@always_comb
|
||||||
|
def clk_logic():
|
||||||
|
sys_clk.next = clk
|
||||||
|
sys_reset.next = not rst
|
||||||
|
|
||||||
|
loopback_enable = Signal(bool(0))
|
||||||
|
|
||||||
|
@instance
|
||||||
|
def loopback():
|
||||||
|
while True:
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
|
||||||
|
if loopback_enable:
|
||||||
|
if not sfp0_sink.empty():
|
||||||
|
pkt = sfp0_sink.recv()
|
||||||
|
sfp0_source.send(pkt)
|
||||||
|
if not sfp1_sink.empty():
|
||||||
|
pkt = sfp1_sink.recv()
|
||||||
|
sfp1_source.send(pkt)
|
||||||
|
|
||||||
|
@instance
|
||||||
|
def check():
|
||||||
|
yield delay(100)
|
||||||
|
yield clk.posedge
|
||||||
|
rst.next = 1
|
||||||
|
sfp0_tx_rst.next = 1
|
||||||
|
sfp0_rx_rst.next = 1
|
||||||
|
sfp1_tx_rst.next = 1
|
||||||
|
sfp1_rx_rst.next = 1
|
||||||
|
yield clk.posedge
|
||||||
|
yield delay(100)
|
||||||
|
rst.next = 0
|
||||||
|
sfp0_tx_rst.next = 0
|
||||||
|
sfp0_rx_rst.next = 0
|
||||||
|
sfp1_tx_rst.next = 0
|
||||||
|
sfp1_rx_rst.next = 0
|
||||||
|
yield clk.posedge
|
||||||
|
yield delay(100)
|
||||||
|
yield clk.posedge
|
||||||
|
|
||||||
|
# testbench stimulus
|
||||||
|
|
||||||
|
current_tag = 1
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 1: enumeration")
|
||||||
|
current_test.next = 1
|
||||||
|
|
||||||
|
yield rc.enumerate(enable_bus_mastering=True, configure_msi=True)
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 2: init NIC")
|
||||||
|
current_test.next = 2
|
||||||
|
|
||||||
|
yield from driver.init_dev(dev.functions[0].get_id())
|
||||||
|
yield from driver.interfaces[0].open()
|
||||||
|
#yield from driver.interfaces[1].open()
|
||||||
|
|
||||||
|
# enable queues
|
||||||
|
yield from rc.mem_write_dword(driver.interfaces[0].ports[0].hw_addr+mqnic.MQNIC_PORT_REG_SCHED_ENABLE, 0x00000001)
|
||||||
|
for k in range(driver.interfaces[0].tx_queue_count):
|
||||||
|
yield from rc.mem_write_dword(driver.interfaces[0].ports[0].schedulers[0].hw_addr+4*k, 0x00000003)
|
||||||
|
|
||||||
|
yield from rc.mem_read(driver.hw_addr, 4) # wait for all writes to complete
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 3: send and receive a packet")
|
||||||
|
current_test.next = 3
|
||||||
|
|
||||||
|
# test bad packet
|
||||||
|
#sfp0_source.send(b'\x55\x55\x55\x55\x55\xd5'+bytearray(range(128)))
|
||||||
|
|
||||||
|
data = bytearray([x%256 for x in range(1024)])
|
||||||
|
|
||||||
|
yield from driver.interfaces[0].start_xmit(data, 0)
|
||||||
|
|
||||||
|
yield sfp0_sink.wait()
|
||||||
|
|
||||||
|
pkt = sfp0_sink.recv()
|
||||||
|
print(pkt)
|
||||||
|
|
||||||
|
sfp0_source.send(pkt)
|
||||||
|
|
||||||
|
yield driver.interfaces[0].wait()
|
||||||
|
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
print(pkt)
|
||||||
|
assert frame_checksum(pkt.data) == pkt.rx_checksum
|
||||||
|
|
||||||
|
# yield from driver.interfaces[1].start_xmit(data, 0)
|
||||||
|
|
||||||
|
# yield sfp0_sink.wait()
|
||||||
|
|
||||||
|
# pkt = sfp0_sink.recv()
|
||||||
|
# print(pkt)
|
||||||
|
|
||||||
|
# sfp0_source.send(pkt)
|
||||||
|
|
||||||
|
# yield driver.interfaces[1].wait()
|
||||||
|
|
||||||
|
# pkt = driver.interfaces[1].recv()
|
||||||
|
|
||||||
|
# print(pkt)
|
||||||
|
# assert frame_checksum(pkt.data) == pkt.rx_checksum
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 4: checksum tests")
|
||||||
|
current_test.next = 4
|
||||||
|
|
||||||
|
test_frame = udp_ep.UDPFrame()
|
||||||
|
test_frame.eth_dest_mac = 0xDAD1D2D3D4D5
|
||||||
|
test_frame.eth_src_mac = 0x5A5152535455
|
||||||
|
test_frame.eth_type = 0x0800
|
||||||
|
test_frame.ip_version = 4
|
||||||
|
test_frame.ip_ihl = 5
|
||||||
|
test_frame.ip_length = None
|
||||||
|
test_frame.ip_identification = 0
|
||||||
|
test_frame.ip_flags = 2
|
||||||
|
test_frame.ip_fragment_offset = 0
|
||||||
|
test_frame.ip_ttl = 64
|
||||||
|
test_frame.ip_protocol = 0x11
|
||||||
|
test_frame.ip_header_checksum = None
|
||||||
|
test_frame.ip_source_ip = 0xc0a80164
|
||||||
|
test_frame.ip_dest_ip = 0xc0a80165
|
||||||
|
test_frame.udp_source_port = 1
|
||||||
|
test_frame.udp_dest_port = 2
|
||||||
|
test_frame.udp_length = None
|
||||||
|
test_frame.udp_checksum = None
|
||||||
|
test_frame.payload = bytearray((x%256 for x in range(256)))
|
||||||
|
|
||||||
|
test_frame.set_udp_pseudo_header_checksum()
|
||||||
|
|
||||||
|
axis_frame = test_frame.build_axis()
|
||||||
|
|
||||||
|
yield from driver.interfaces[0].start_xmit(axis_frame.data, 0, 34, 6)
|
||||||
|
|
||||||
|
yield sfp0_sink.wait()
|
||||||
|
|
||||||
|
pkt = sfp0_sink.recv()
|
||||||
|
print(pkt)
|
||||||
|
|
||||||
|
sfp0_source.send(pkt)
|
||||||
|
|
||||||
|
yield driver.interfaces[0].wait()
|
||||||
|
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
print(pkt)
|
||||||
|
|
||||||
|
assert pkt.rx_checksum == frame_checksum(pkt.data)
|
||||||
|
|
||||||
|
check_frame = udp_ep.UDPFrame()
|
||||||
|
check_frame.parse_axis(pkt.data)
|
||||||
|
|
||||||
|
assert check_frame.verify_checksums()
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 5: multiple small packets")
|
||||||
|
current_test.next = 5
|
||||||
|
|
||||||
|
count = 64
|
||||||
|
|
||||||
|
pkts = [bytearray([(x+k)%256 for x in range(64)]) for k in range(count)]
|
||||||
|
|
||||||
|
loopback_enable.next = True
|
||||||
|
|
||||||
|
for p in pkts:
|
||||||
|
yield from driver.interfaces[0].start_xmit(p, 0)
|
||||||
|
|
||||||
|
for k in range(count):
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
if not pkt:
|
||||||
|
yield driver.interfaces[0].wait()
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
print(pkt)
|
||||||
|
assert pkt.data == pkts[k]
|
||||||
|
assert frame_checksum(pkt.data) == pkt.rx_checksum
|
||||||
|
|
||||||
|
loopback_enable.next = False
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
yield clk.posedge
|
||||||
|
print("test 6: multiple large packets")
|
||||||
|
current_test.next = 6
|
||||||
|
|
||||||
|
count = 64
|
||||||
|
|
||||||
|
pkts = [bytearray([(x+k)%256 for x in range(1514)]) for k in range(count)]
|
||||||
|
|
||||||
|
loopback_enable.next = True
|
||||||
|
|
||||||
|
for p in pkts:
|
||||||
|
yield from driver.interfaces[0].start_xmit(p, 0)
|
||||||
|
|
||||||
|
for k in range(count):
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
if not pkt:
|
||||||
|
yield driver.interfaces[0].wait()
|
||||||
|
pkt = driver.interfaces[0].recv()
|
||||||
|
|
||||||
|
print(pkt)
|
||||||
|
assert pkt.data == pkts[k]
|
||||||
|
assert frame_checksum(pkt.data) == pkt.rx_checksum
|
||||||
|
|
||||||
|
loopback_enable.next = False
|
||||||
|
|
||||||
|
yield delay(100)
|
||||||
|
|
||||||
|
raise StopSimulation
|
||||||
|
|
||||||
|
return instances()
|
||||||
|
|
||||||
|
def test_bench():
|
||||||
|
sim = Simulation(bench())
|
||||||
|
sim.run()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
print("Running test...")
|
||||||
|
test_bench()
|
381
fpga/mqnic/ZCU106/fpga_pcie/tb/test_fpga_core.v
Normal file
381
fpga/mqnic/ZCU106/fpga_pcie/tb/test_fpga_core.v
Normal file
@ -0,0 +1,381 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright 2019, The Regents of the University of California.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. 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.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE REGENTS OF THE UNIVERSITY OF CALIFORNIA ''AS
|
||||||
|
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF THE UNIVERSITY OF CALIFORNIA OR
|
||||||
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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.
|
||||||
|
|
||||||
|
The views and conclusions contained in the software and documentation are those
|
||||||
|
of the authors and should not be interpreted as representing official policies,
|
||||||
|
either expressed or implied, of The Regents of the University of California.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Language: Verilog 2001
|
||||||
|
|
||||||
|
`timescale 1ns / 1ps
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Testbench for fpga_core
|
||||||
|
*/
|
||||||
|
module test_fpga_core;
|
||||||
|
|
||||||
|
// Parameters
|
||||||
|
parameter AXIS_PCIE_DATA_WIDTH = 128;
|
||||||
|
parameter AXIS_PCIE_KEEP_WIDTH = (AXIS_PCIE_DATA_WIDTH/32);
|
||||||
|
parameter AXIS_PCIE_RC_USER_WIDTH = 75;
|
||||||
|
parameter AXIS_PCIE_RQ_USER_WIDTH = 62;
|
||||||
|
parameter AXIS_PCIE_CQ_USER_WIDTH = 88;
|
||||||
|
parameter AXIS_PCIE_CC_USER_WIDTH = 33;
|
||||||
|
parameter RQ_SEQ_NUM_WIDTH = 6;
|
||||||
|
parameter BAR0_APERTURE = 24;
|
||||||
|
|
||||||
|
// Inputs
|
||||||
|
reg clk = 0;
|
||||||
|
reg rst = 0;
|
||||||
|
reg [7:0] current_test = 0;
|
||||||
|
|
||||||
|
reg clk_250mhz = 0;
|
||||||
|
reg rst_250mhz = 0;
|
||||||
|
reg btnu = 0;
|
||||||
|
reg btnl = 0;
|
||||||
|
reg btnd = 0;
|
||||||
|
reg btnr = 0;
|
||||||
|
reg btnc = 0;
|
||||||
|
reg [7:0] sw = 0;
|
||||||
|
reg i2c_scl_i = 1;
|
||||||
|
reg i2c_sda_i = 1;
|
||||||
|
reg m_axis_rq_tready = 0;
|
||||||
|
reg [AXIS_PCIE_DATA_WIDTH-1:0] s_axis_rc_tdata = 0;
|
||||||
|
reg [AXIS_PCIE_KEEP_WIDTH-1:0] s_axis_rc_tkeep = 0;
|
||||||
|
reg s_axis_rc_tlast = 0;
|
||||||
|
reg [AXIS_PCIE_RC_USER_WIDTH-1:0] s_axis_rc_tuser = 0;
|
||||||
|
reg s_axis_rc_tvalid = 0;
|
||||||
|
reg [AXIS_PCIE_DATA_WIDTH-1:0] s_axis_cq_tdata = 0;
|
||||||
|
reg [AXIS_PCIE_KEEP_WIDTH-1:0] s_axis_cq_tkeep = 0;
|
||||||
|
reg s_axis_cq_tlast = 0;
|
||||||
|
reg [AXIS_PCIE_CQ_USER_WIDTH-1:0] s_axis_cq_tuser = 0;
|
||||||
|
reg s_axis_cq_tvalid = 0;
|
||||||
|
reg m_axis_cc_tready = 0;
|
||||||
|
reg [RQ_SEQ_NUM_WIDTH-1:0] s_axis_rq_seq_num_0 = 0;
|
||||||
|
reg s_axis_rq_seq_num_valid_0 = 0;
|
||||||
|
reg [RQ_SEQ_NUM_WIDTH-1:0] s_axis_rq_seq_num_1 = 0;
|
||||||
|
reg s_axis_rq_seq_num_valid_1 = 0;
|
||||||
|
reg [3:0] pcie_tfc_nph_av = 0;
|
||||||
|
reg [3:0] pcie_tfc_npd_av = 0;
|
||||||
|
reg [2:0] cfg_max_payload = 0;
|
||||||
|
reg [2:0] cfg_max_read_req = 0;
|
||||||
|
reg [31:0] cfg_mgmt_read_data = 0;
|
||||||
|
reg cfg_mgmt_read_write_done = 0;
|
||||||
|
reg [7:0] cfg_fc_ph = 0;
|
||||||
|
reg [11:0] cfg_fc_pd = 0;
|
||||||
|
reg [7:0] cfg_fc_nph = 0;
|
||||||
|
reg [11:0] cfg_fc_npd = 0;
|
||||||
|
reg [7:0] cfg_fc_cplh = 0;
|
||||||
|
reg [11:0] cfg_fc_cpld = 0;
|
||||||
|
reg [3:0] cfg_interrupt_msi_enable = 0;
|
||||||
|
reg [11:0] cfg_interrupt_msi_mmenable = 0;
|
||||||
|
reg cfg_interrupt_msi_mask_update = 0;
|
||||||
|
reg [31:0] cfg_interrupt_msi_data = 0;
|
||||||
|
reg cfg_interrupt_msi_sent = 0;
|
||||||
|
reg cfg_interrupt_msi_fail = 0;
|
||||||
|
reg sfp0_tx_clk = 0;
|
||||||
|
reg sfp0_tx_rst = 0;
|
||||||
|
reg sfp0_rx_clk = 0;
|
||||||
|
reg sfp0_rx_rst = 0;
|
||||||
|
reg [63:0] sfp0_rxd = 0;
|
||||||
|
reg [7:0] sfp0_rxc = 0;
|
||||||
|
reg sfp1_tx_clk = 0;
|
||||||
|
reg sfp1_tx_rst = 0;
|
||||||
|
reg sfp1_rx_clk = 0;
|
||||||
|
reg sfp1_rx_rst = 0;
|
||||||
|
reg [63:0] sfp1_rxd = 0;
|
||||||
|
reg [7:0] sfp1_rxc = 0;
|
||||||
|
|
||||||
|
// Outputs
|
||||||
|
wire [7:0] led;
|
||||||
|
wire i2c_scl_o;
|
||||||
|
wire i2c_scl_t;
|
||||||
|
wire i2c_sda_o;
|
||||||
|
wire i2c_sda_t;
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] m_axis_rq_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] m_axis_rq_tkeep;
|
||||||
|
wire m_axis_rq_tlast;
|
||||||
|
wire [AXIS_PCIE_RQ_USER_WIDTH-1:0] m_axis_rq_tuser;
|
||||||
|
wire m_axis_rq_tvalid;
|
||||||
|
wire s_axis_rc_tready;
|
||||||
|
wire s_axis_cq_tready;
|
||||||
|
wire [AXIS_PCIE_DATA_WIDTH-1:0] m_axis_cc_tdata;
|
||||||
|
wire [AXIS_PCIE_KEEP_WIDTH-1:0] m_axis_cc_tkeep;
|
||||||
|
wire m_axis_cc_tlast;
|
||||||
|
wire [AXIS_PCIE_CC_USER_WIDTH-1:0] m_axis_cc_tuser;
|
||||||
|
wire m_axis_cc_tvalid;
|
||||||
|
wire [9:0] cfg_mgmt_addr;
|
||||||
|
wire [7:0] cfg_mgmt_function_number;
|
||||||
|
wire cfg_mgmt_write;
|
||||||
|
wire [31:0] cfg_mgmt_write_data;
|
||||||
|
wire [3:0] cfg_mgmt_byte_enable;
|
||||||
|
wire cfg_mgmt_read;
|
||||||
|
wire [2:0] cfg_fc_sel;
|
||||||
|
wire [3:0] cfg_interrupt_msi_select;
|
||||||
|
wire [31:0] cfg_interrupt_msi_int;
|
||||||
|
wire [31:0] cfg_interrupt_msi_pending_status;
|
||||||
|
wire cfg_interrupt_msi_pending_status_data_enable;
|
||||||
|
wire [3:0] cfg_interrupt_msi_pending_status_function_num;
|
||||||
|
wire [2:0] cfg_interrupt_msi_attr;
|
||||||
|
wire cfg_interrupt_msi_tph_present;
|
||||||
|
wire [1:0] cfg_interrupt_msi_tph_type;
|
||||||
|
wire [8:0] cfg_interrupt_msi_tph_st_tag;
|
||||||
|
wire [3:0] cfg_interrupt_msi_function_number;
|
||||||
|
wire status_error_cor;
|
||||||
|
wire status_error_uncor;
|
||||||
|
wire [63:0] sfp0_txd;
|
||||||
|
wire [7:0] sfp0_txc;
|
||||||
|
wire sfp0_tx_disable_b;
|
||||||
|
wire [63:0] sfp1_txd;
|
||||||
|
wire [7:0] sfp1_txc;
|
||||||
|
wire sfp1_tx_disable_b;
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
// myhdl integration
|
||||||
|
$from_myhdl(
|
||||||
|
clk_250mhz,
|
||||||
|
rst_250mhz,
|
||||||
|
current_test,
|
||||||
|
btnu,
|
||||||
|
btnl,
|
||||||
|
btnd,
|
||||||
|
btnr,
|
||||||
|
btnc,
|
||||||
|
sw,
|
||||||
|
i2c_scl_i,
|
||||||
|
i2c_sda_i,
|
||||||
|
m_axis_rq_tready,
|
||||||
|
s_axis_rc_tdata,
|
||||||
|
s_axis_rc_tkeep,
|
||||||
|
s_axis_rc_tlast,
|
||||||
|
s_axis_rc_tuser,
|
||||||
|
s_axis_rc_tvalid,
|
||||||
|
s_axis_cq_tdata,
|
||||||
|
s_axis_cq_tkeep,
|
||||||
|
s_axis_cq_tlast,
|
||||||
|
s_axis_cq_tuser,
|
||||||
|
s_axis_cq_tvalid,
|
||||||
|
m_axis_cc_tready,
|
||||||
|
s_axis_rq_seq_num_0,
|
||||||
|
s_axis_rq_seq_num_valid_0,
|
||||||
|
s_axis_rq_seq_num_1,
|
||||||
|
s_axis_rq_seq_num_valid_1,
|
||||||
|
pcie_tfc_nph_av,
|
||||||
|
pcie_tfc_npd_av,
|
||||||
|
cfg_max_payload,
|
||||||
|
cfg_max_read_req,
|
||||||
|
cfg_mgmt_read_data,
|
||||||
|
cfg_mgmt_read_write_done,
|
||||||
|
cfg_fc_ph,
|
||||||
|
cfg_fc_pd,
|
||||||
|
cfg_fc_nph,
|
||||||
|
cfg_fc_npd,
|
||||||
|
cfg_fc_cplh,
|
||||||
|
cfg_fc_cpld,
|
||||||
|
cfg_interrupt_msi_enable,
|
||||||
|
cfg_interrupt_msi_mmenable,
|
||||||
|
cfg_interrupt_msi_mask_update,
|
||||||
|
cfg_interrupt_msi_data,
|
||||||
|
cfg_interrupt_msi_sent,
|
||||||
|
cfg_interrupt_msi_fail,
|
||||||
|
sfp0_tx_clk,
|
||||||
|
sfp0_tx_rst,
|
||||||
|
sfp0_rx_clk,
|
||||||
|
sfp0_rx_rst,
|
||||||
|
sfp0_rxd,
|
||||||
|
sfp0_rxc,
|
||||||
|
sfp1_tx_clk,
|
||||||
|
sfp1_tx_rst,
|
||||||
|
sfp1_rx_clk,
|
||||||
|
sfp1_rx_rst,
|
||||||
|
sfp1_rxd,
|
||||||
|
sfp1_rxc
|
||||||
|
);
|
||||||
|
$to_myhdl(
|
||||||
|
led,
|
||||||
|
i2c_scl_o,
|
||||||
|
i2c_scl_t,
|
||||||
|
i2c_sda_o,
|
||||||
|
i2c_sda_t,
|
||||||
|
m_axis_rq_tdata,
|
||||||
|
m_axis_rq_tkeep,
|
||||||
|
m_axis_rq_tlast,
|
||||||
|
m_axis_rq_tuser,
|
||||||
|
m_axis_rq_tvalid,
|
||||||
|
s_axis_rc_tready,
|
||||||
|
s_axis_cq_tready,
|
||||||
|
m_axis_cc_tdata,
|
||||||
|
m_axis_cc_tkeep,
|
||||||
|
m_axis_cc_tlast,
|
||||||
|
m_axis_cc_tuser,
|
||||||
|
m_axis_cc_tvalid,
|
||||||
|
cfg_mgmt_addr,
|
||||||
|
cfg_mgmt_function_number,
|
||||||
|
cfg_mgmt_write,
|
||||||
|
cfg_mgmt_write_data,
|
||||||
|
cfg_mgmt_byte_enable,
|
||||||
|
cfg_mgmt_read,
|
||||||
|
cfg_fc_sel,
|
||||||
|
cfg_interrupt_msi_select,
|
||||||
|
cfg_interrupt_msi_int,
|
||||||
|
cfg_interrupt_msi_pending_status,
|
||||||
|
cfg_interrupt_msi_pending_status_data_enable,
|
||||||
|
cfg_interrupt_msi_pending_status_function_num,
|
||||||
|
cfg_interrupt_msi_attr,
|
||||||
|
cfg_interrupt_msi_tph_present,
|
||||||
|
cfg_interrupt_msi_tph_type,
|
||||||
|
cfg_interrupt_msi_tph_st_tag,
|
||||||
|
cfg_interrupt_msi_function_number,
|
||||||
|
status_error_cor,
|
||||||
|
status_error_uncor,
|
||||||
|
sfp0_txd,
|
||||||
|
sfp0_txc,
|
||||||
|
sfp0_tx_disable_b,
|
||||||
|
sfp1_txd,
|
||||||
|
sfp1_txc,
|
||||||
|
sfp1_tx_disable_b
|
||||||
|
);
|
||||||
|
|
||||||
|
// dump file
|
||||||
|
$dumpfile("test_fpga_core.lxt");
|
||||||
|
$dumpvars(0, test_fpga_core);
|
||||||
|
end
|
||||||
|
|
||||||
|
fpga_core #(
|
||||||
|
.AXIS_PCIE_DATA_WIDTH(AXIS_PCIE_DATA_WIDTH),
|
||||||
|
.AXIS_PCIE_KEEP_WIDTH(AXIS_PCIE_KEEP_WIDTH),
|
||||||
|
.AXIS_PCIE_RC_USER_WIDTH(AXIS_PCIE_RC_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_RQ_USER_WIDTH(AXIS_PCIE_RQ_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_CQ_USER_WIDTH(AXIS_PCIE_CQ_USER_WIDTH),
|
||||||
|
.AXIS_PCIE_CC_USER_WIDTH(AXIS_PCIE_CC_USER_WIDTH),
|
||||||
|
.RQ_SEQ_NUM_WIDTH(RQ_SEQ_NUM_WIDTH),
|
||||||
|
.BAR0_APERTURE(BAR0_APERTURE)
|
||||||
|
)
|
||||||
|
UUT (
|
||||||
|
.clk_250mhz(clk_250mhz),
|
||||||
|
.rst_250mhz(rst_250mhz),
|
||||||
|
.btnu(btnu),
|
||||||
|
.btnl(btnl),
|
||||||
|
.btnd(btnd),
|
||||||
|
.btnr(btnr),
|
||||||
|
.btnc(btnc),
|
||||||
|
.sw(sw),
|
||||||
|
.led(led),
|
||||||
|
.i2c_scl_i(i2c_scl_i),
|
||||||
|
.i2c_scl_o(i2c_scl_o),
|
||||||
|
.i2c_scl_t(i2c_scl_t),
|
||||||
|
.i2c_sda_i(i2c_sda_i),
|
||||||
|
.i2c_sda_o(i2c_sda_o),
|
||||||
|
.i2c_sda_t(i2c_sda_t),
|
||||||
|
.m_axis_rq_tdata(m_axis_rq_tdata),
|
||||||
|
.m_axis_rq_tkeep(m_axis_rq_tkeep),
|
||||||
|
.m_axis_rq_tlast(m_axis_rq_tlast),
|
||||||
|
.m_axis_rq_tready(m_axis_rq_tready),
|
||||||
|
.m_axis_rq_tuser(m_axis_rq_tuser),
|
||||||
|
.m_axis_rq_tvalid(m_axis_rq_tvalid),
|
||||||
|
.s_axis_rc_tdata(s_axis_rc_tdata),
|
||||||
|
.s_axis_rc_tkeep(s_axis_rc_tkeep),
|
||||||
|
.s_axis_rc_tlast(s_axis_rc_tlast),
|
||||||
|
.s_axis_rc_tready(s_axis_rc_tready),
|
||||||
|
.s_axis_rc_tuser(s_axis_rc_tuser),
|
||||||
|
.s_axis_rc_tvalid(s_axis_rc_tvalid),
|
||||||
|
.s_axis_cq_tdata(s_axis_cq_tdata),
|
||||||
|
.s_axis_cq_tkeep(s_axis_cq_tkeep),
|
||||||
|
.s_axis_cq_tlast(s_axis_cq_tlast),
|
||||||
|
.s_axis_cq_tready(s_axis_cq_tready),
|
||||||
|
.s_axis_cq_tuser(s_axis_cq_tuser),
|
||||||
|
.s_axis_cq_tvalid(s_axis_cq_tvalid),
|
||||||
|
.m_axis_cc_tdata(m_axis_cc_tdata),
|
||||||
|
.m_axis_cc_tkeep(m_axis_cc_tkeep),
|
||||||
|
.m_axis_cc_tlast(m_axis_cc_tlast),
|
||||||
|
.m_axis_cc_tready(m_axis_cc_tready),
|
||||||
|
.m_axis_cc_tuser(m_axis_cc_tuser),
|
||||||
|
.m_axis_cc_tvalid(m_axis_cc_tvalid),
|
||||||
|
.s_axis_rq_seq_num_0(s_axis_rq_seq_num_0),
|
||||||
|
.s_axis_rq_seq_num_valid_0(s_axis_rq_seq_num_valid_0),
|
||||||
|
.s_axis_rq_seq_num_1(s_axis_rq_seq_num_1),
|
||||||
|
.s_axis_rq_seq_num_valid_1(s_axis_rq_seq_num_valid_1),
|
||||||
|
.pcie_tfc_nph_av(pcie_tfc_nph_av),
|
||||||
|
.pcie_tfc_npd_av(pcie_tfc_npd_av),
|
||||||
|
.cfg_max_payload(cfg_max_payload),
|
||||||
|
.cfg_max_read_req(cfg_max_read_req),
|
||||||
|
.cfg_mgmt_addr(cfg_mgmt_addr),
|
||||||
|
.cfg_mgmt_function_number(cfg_mgmt_function_number),
|
||||||
|
.cfg_mgmt_write(cfg_mgmt_write),
|
||||||
|
.cfg_mgmt_write_data(cfg_mgmt_write_data),
|
||||||
|
.cfg_mgmt_byte_enable(cfg_mgmt_byte_enable),
|
||||||
|
.cfg_mgmt_read(cfg_mgmt_read),
|
||||||
|
.cfg_mgmt_read_data(cfg_mgmt_read_data),
|
||||||
|
.cfg_mgmt_read_write_done(cfg_mgmt_read_write_done),
|
||||||
|
.cfg_fc_ph(cfg_fc_ph),
|
||||||
|
.cfg_fc_pd(cfg_fc_pd),
|
||||||
|
.cfg_fc_nph(cfg_fc_nph),
|
||||||
|
.cfg_fc_npd(cfg_fc_npd),
|
||||||
|
.cfg_fc_cplh(cfg_fc_cplh),
|
||||||
|
.cfg_fc_cpld(cfg_fc_cpld),
|
||||||
|
.cfg_fc_sel(cfg_fc_sel),
|
||||||
|
.cfg_interrupt_msi_enable(cfg_interrupt_msi_enable),
|
||||||
|
.cfg_interrupt_msi_mmenable(cfg_interrupt_msi_mmenable),
|
||||||
|
.cfg_interrupt_msi_mask_update(cfg_interrupt_msi_mask_update),
|
||||||
|
.cfg_interrupt_msi_data(cfg_interrupt_msi_data),
|
||||||
|
.cfg_interrupt_msi_select(cfg_interrupt_msi_select),
|
||||||
|
.cfg_interrupt_msi_int(cfg_interrupt_msi_int),
|
||||||
|
.cfg_interrupt_msi_pending_status(cfg_interrupt_msi_pending_status),
|
||||||
|
.cfg_interrupt_msi_pending_status_data_enable(cfg_interrupt_msi_pending_status_data_enable),
|
||||||
|
.cfg_interrupt_msi_pending_status_function_num(cfg_interrupt_msi_pending_status_function_num),
|
||||||
|
.cfg_interrupt_msi_sent(cfg_interrupt_msi_sent),
|
||||||
|
.cfg_interrupt_msi_fail(cfg_interrupt_msi_fail),
|
||||||
|
.cfg_interrupt_msi_attr(cfg_interrupt_msi_attr),
|
||||||
|
.cfg_interrupt_msi_tph_present(cfg_interrupt_msi_tph_present),
|
||||||
|
.cfg_interrupt_msi_tph_type(cfg_interrupt_msi_tph_type),
|
||||||
|
.cfg_interrupt_msi_tph_st_tag(cfg_interrupt_msi_tph_st_tag),
|
||||||
|
.cfg_interrupt_msi_function_number(cfg_interrupt_msi_function_number),
|
||||||
|
.status_error_cor(status_error_cor),
|
||||||
|
.status_error_uncor(status_error_uncor),
|
||||||
|
.sfp0_tx_clk(sfp0_tx_clk),
|
||||||
|
.sfp0_tx_rst(sfp0_tx_rst),
|
||||||
|
.sfp0_txd(sfp0_txd),
|
||||||
|
.sfp0_txc(sfp0_txc),
|
||||||
|
.sfp0_rx_clk(sfp0_rx_clk),
|
||||||
|
.sfp0_rx_rst(sfp0_rx_rst),
|
||||||
|
.sfp0_rxd(sfp0_rxd),
|
||||||
|
.sfp0_rxc(sfp0_rxc),
|
||||||
|
.sfp0_tx_disable_b(sfp0_tx_disable_b),
|
||||||
|
.sfp1_tx_clk(sfp1_tx_clk),
|
||||||
|
.sfp1_tx_rst(sfp1_tx_rst),
|
||||||
|
.sfp1_txd(sfp1_txd),
|
||||||
|
.sfp1_txc(sfp1_txc),
|
||||||
|
.sfp1_rx_clk(sfp1_rx_clk),
|
||||||
|
.sfp1_rx_rst(sfp1_rx_rst),
|
||||||
|
.sfp1_rxd(sfp1_rxd),
|
||||||
|
.sfp1_rxc(sfp1_rxc),
|
||||||
|
.sfp1_tx_disable_b(sfp1_tx_disable_b)
|
||||||
|
);
|
||||||
|
|
||||||
|
endmodule
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/udp_ep.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/udp_ep.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/eth/tb/udp_ep.py
|
1
fpga/mqnic/ZCU106/fpga_pcie/tb/xgmii_ep.py
Symbolic link
1
fpga/mqnic/ZCU106/fpga_pcie/tb/xgmii_ep.py
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../lib/eth/tb/xgmii_ep.py
|
Loading…
x
Reference in New Issue
Block a user