mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-09 17:08:38 -08:00
example/KCU105: Add support for 10GBASE-R on KCU105
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
@@ -15,7 +15,17 @@ Authors:
|
||||
/*
|
||||
* FPGA top-level module
|
||||
*/
|
||||
module fpga
|
||||
module fpga #
|
||||
(
|
||||
// simulation (set to avoid vendor primitives)
|
||||
parameter logic SIM = 1'b0,
|
||||
// vendor ("GENERIC", "XILINX", "ALTERA")
|
||||
parameter string VENDOR = "XILINX",
|
||||
// device family
|
||||
parameter string FAMILY = "kintexu",
|
||||
// SFP rate selection (0 for 1G, 1 for 10G)
|
||||
parameter logic SFP_RATE = 1'b1
|
||||
)
|
||||
(
|
||||
/*
|
||||
* Clock: 125MHz LVDS
|
||||
@@ -59,19 +69,14 @@ module fpga
|
||||
/*
|
||||
* Ethernet: SFP+
|
||||
*/
|
||||
input wire logic sfp0_rx_p,
|
||||
input wire logic sfp0_rx_n,
|
||||
output wire logic sfp0_tx_p,
|
||||
output wire logic sfp0_tx_n,
|
||||
input wire logic sfp1_rx_p,
|
||||
input wire logic sfp1_rx_n,
|
||||
output wire logic sfp1_tx_p,
|
||||
output wire logic sfp1_tx_n,
|
||||
input wire logic [1:0] sfp_rx_p,
|
||||
input wire logic [1:0] sfp_rx_n,
|
||||
output wire logic [1:0] sfp_tx_p,
|
||||
output wire logic [1:0] sfp_tx_n,
|
||||
input wire logic sfp_mgt_refclk_0_p,
|
||||
input wire logic sfp_mgt_refclk_0_n,
|
||||
|
||||
output wire logic sfp0_tx_disable_b,
|
||||
output wire logic sfp1_tx_disable_b
|
||||
output wire logic [1:0] sfp_tx_disable_b
|
||||
);
|
||||
|
||||
// Clock and reset
|
||||
@@ -346,176 +351,186 @@ eth_pcspma (
|
||||
.signal_detect (1'b1)
|
||||
);
|
||||
|
||||
// 1000BASE-X SFP
|
||||
// SFP+
|
||||
wire [1:0] sfp_tx_p_int;
|
||||
wire [1:0] sfp_tx_n_int;
|
||||
|
||||
wire sfp0_gmii_clk_int;
|
||||
wire sfp0_gmii_rst_int;
|
||||
wire sfp0_gmii_clk_en_int;
|
||||
wire [7:0] sfp0_gmii_txd_int;
|
||||
wire sfp0_gmii_tx_en_int;
|
||||
wire sfp0_gmii_tx_en_int = 1'b1;
|
||||
wire sfp0_gmii_tx_er_int;
|
||||
wire [7:0] sfp0_gmii_rxd_int;
|
||||
wire sfp0_gmii_rx_dv_int;
|
||||
wire sfp0_gmii_rx_er_int;
|
||||
|
||||
wire sfp0_gmii_gtrefclk;
|
||||
wire sfp0_gmii_txuserclk;
|
||||
wire sfp0_gmii_txuserclk2;
|
||||
wire sfp0_gmii_rxuserclk;
|
||||
wire sfp0_gmii_rxuserclk2;
|
||||
wire sfp0_gmii_resetdone;
|
||||
wire sfp0_gmii_pmareset;
|
||||
wire sfp0_gmii_mmcm_locked;
|
||||
|
||||
assign sfp0_gmii_clk_int = sfp0_gmii_txuserclk2;
|
||||
|
||||
taxi_sync_reset #(
|
||||
.N(4)
|
||||
)
|
||||
sync_reset_sfp0_inst (
|
||||
.clk(sfp0_gmii_clk_int),
|
||||
.rst(rst_125mhz_int || !sfp0_gmii_resetdone),
|
||||
.out(sfp0_gmii_rst_int)
|
||||
);
|
||||
|
||||
wire [15:0] sfp0_status_vect;
|
||||
|
||||
wire sfp0_status_link_status = sfp0_status_vect[0];
|
||||
wire sfp0_status_link_synchronization = sfp0_status_vect[1];
|
||||
wire sfp0_status_rudi_c = sfp0_status_vect[2];
|
||||
wire sfp0_status_rudi_i = sfp0_status_vect[3];
|
||||
wire sfp0_status_rudi_invalid = sfp0_status_vect[4];
|
||||
wire sfp0_status_rxdisperr = sfp0_status_vect[5];
|
||||
wire sfp0_status_rxnotintable = sfp0_status_vect[6];
|
||||
wire sfp0_status_phy_link_status = sfp0_status_vect[7];
|
||||
wire [1:0] sfp0_status_remote_fault_encdg = sfp0_status_vect[9:8];
|
||||
wire [1:0] sfp0_status_speed = sfp0_status_vect[11:10];
|
||||
wire sfp0_status_duplex = sfp0_status_vect[12];
|
||||
wire sfp0_status_remote_fault = sfp0_status_vect[13];
|
||||
wire [1:0] sfp0_status_pause = sfp0_status_vect[15:14];
|
||||
|
||||
wire [4:0] sfp0_config_vect;
|
||||
|
||||
assign sfp0_config_vect[4] = 1'b0; // autonegotiation enable
|
||||
assign sfp0_config_vect[3] = 1'b0; // isolate
|
||||
assign sfp0_config_vect[2] = 1'b0; // power down
|
||||
assign sfp0_config_vect[1] = 1'b0; // loopback enable
|
||||
assign sfp0_config_vect[0] = 1'b0; // unidirectional enable
|
||||
|
||||
basex_pcs_pma_0
|
||||
sfp0_pcspma (
|
||||
.gtrefclk_p(sfp_mgt_refclk_0_p),
|
||||
.gtrefclk_n(sfp_mgt_refclk_0_n),
|
||||
.gtrefclk_out(sfp0_gmii_gtrefclk),
|
||||
.txn(sfp0_tx_n),
|
||||
.txp(sfp0_tx_p),
|
||||
.rxn(sfp0_rx_n),
|
||||
.rxp(sfp0_rx_p),
|
||||
.independent_clock_bufg(clk_62mhz_int),
|
||||
.userclk_out(sfp0_gmii_txuserclk),
|
||||
.userclk2_out(sfp0_gmii_txuserclk2),
|
||||
.rxuserclk_out(sfp0_gmii_rxuserclk),
|
||||
.rxuserclk2_out(sfp0_gmii_rxuserclk2),
|
||||
.gtpowergood(),
|
||||
.resetdone(sfp0_gmii_resetdone),
|
||||
.pma_reset_out(sfp0_gmii_pmareset),
|
||||
.mmcm_locked_out(sfp0_gmii_mmcm_locked),
|
||||
.gmii_txd(sfp0_gmii_txd_int),
|
||||
.gmii_tx_en(sfp0_gmii_tx_en_int),
|
||||
.gmii_tx_er(sfp0_gmii_tx_er_int),
|
||||
.gmii_rxd(sfp0_gmii_rxd_int),
|
||||
.gmii_rx_dv(sfp0_gmii_rx_dv_int),
|
||||
.gmii_rx_er(sfp0_gmii_rx_er_int),
|
||||
.gmii_isolate(),
|
||||
.configuration_vector(sfp0_config_vect),
|
||||
.status_vector(sfp0_status_vect),
|
||||
.reset(rst_125mhz_int),
|
||||
.signal_detect(1'b1)
|
||||
);
|
||||
|
||||
assign sfp0_gmii_clk_en_int = 1'b1;
|
||||
|
||||
wire sfp1_gmii_clk_int;
|
||||
wire sfp1_gmii_rst_int;
|
||||
wire sfp1_gmii_clk_en_int;
|
||||
wire [7:0] sfp1_gmii_txd_int;
|
||||
wire sfp1_gmii_tx_en_int;
|
||||
wire sfp1_gmii_tx_en_int = 1'b1;
|
||||
wire sfp1_gmii_tx_er_int;
|
||||
wire [7:0] sfp1_gmii_rxd_int;
|
||||
wire sfp1_gmii_rx_dv_int;
|
||||
wire sfp1_gmii_rx_er_int;
|
||||
|
||||
wire sfp1_gmii_txuserclk2 = sfp0_gmii_txuserclk2;
|
||||
wire sfp1_gmii_resetdone;
|
||||
|
||||
assign sfp1_gmii_clk_int = sfp1_gmii_txuserclk2;
|
||||
|
||||
taxi_sync_reset #(
|
||||
.N(4)
|
||||
)
|
||||
sync_reset_sfp1_inst (
|
||||
.clk(sfp1_gmii_clk_int),
|
||||
.rst(rst_125mhz_int || !sfp1_gmii_resetdone),
|
||||
.out(sfp1_gmii_rst_int)
|
||||
);
|
||||
|
||||
wire [15:0] sfp1_status_vect;
|
||||
|
||||
wire sfp1_status_link_status = sfp1_status_vect[0];
|
||||
wire sfp1_status_link_synchronization = sfp1_status_vect[1];
|
||||
wire sfp1_status_rudi_c = sfp1_status_vect[2];
|
||||
wire sfp1_status_rudi_i = sfp1_status_vect[3];
|
||||
wire sfp1_status_rudi_invalid = sfp1_status_vect[4];
|
||||
wire sfp1_status_rxdisperr = sfp1_status_vect[5];
|
||||
wire sfp1_status_rxnotintable = sfp1_status_vect[6];
|
||||
wire sfp1_status_phy_link_status = sfp1_status_vect[7];
|
||||
wire [1:0] sfp1_status_remote_fault_encdg = sfp1_status_vect[9:8];
|
||||
wire [1:0] sfp1_status_speed = sfp1_status_vect[11:10];
|
||||
wire sfp1_status_duplex = sfp1_status_vect[12];
|
||||
wire sfp1_status_remote_fault = sfp1_status_vect[13];
|
||||
wire [1:0] sfp1_status_pause = sfp1_status_vect[15:14];
|
||||
if (SFP_RATE == 0) begin : sfp_phy
|
||||
// 1000BASE-X
|
||||
|
||||
wire [4:0] sfp1_config_vect;
|
||||
wire sfp0_gmii_gtrefclk;
|
||||
wire sfp0_gmii_txuserclk;
|
||||
wire sfp0_gmii_txuserclk2;
|
||||
wire sfp0_gmii_rxuserclk;
|
||||
wire sfp0_gmii_rxuserclk2;
|
||||
wire sfp0_gmii_resetdone;
|
||||
wire sfp0_gmii_pmareset;
|
||||
wire sfp0_gmii_mmcm_locked;
|
||||
|
||||
assign sfp1_config_vect[4] = 1'b0; // autonegotiation enable
|
||||
assign sfp1_config_vect[3] = 1'b0; // isolate
|
||||
assign sfp1_config_vect[2] = 1'b0; // power down
|
||||
assign sfp1_config_vect[1] = 1'b0; // loopback enable
|
||||
assign sfp1_config_vect[0] = 1'b0; // unidirectional enable
|
||||
assign sfp0_gmii_clk_int = sfp0_gmii_txuserclk2;
|
||||
|
||||
basex_pcs_pma_1
|
||||
sfp1_pcspma (
|
||||
.gtrefclk(sfp0_gmii_gtrefclk),
|
||||
.txn(sfp1_tx_n),
|
||||
.txp(sfp1_tx_p),
|
||||
.rxn(sfp1_rx_n),
|
||||
.rxp(sfp1_rx_p),
|
||||
.independent_clock_bufg(clk_62mhz_int),
|
||||
.txoutclk(),
|
||||
.gtpowergood(),
|
||||
.rxoutclk(),
|
||||
.resetdone(sfp1_gmii_resetdone),
|
||||
.cplllock(),
|
||||
.mmcm_reset(),
|
||||
.userclk(sfp0_gmii_txuserclk),
|
||||
.userclk2(sfp0_gmii_txuserclk2),
|
||||
.pma_reset(sfp0_gmii_pmareset),
|
||||
.mmcm_locked(sfp0_gmii_mmcm_locked),
|
||||
.rxuserclk(sfp0_gmii_txuserclk),
|
||||
.rxuserclk2(sfp0_gmii_txuserclk2),
|
||||
.gmii_txd(sfp1_gmii_txd_int),
|
||||
.gmii_tx_en(sfp1_gmii_tx_en_int),
|
||||
.gmii_tx_er(sfp1_gmii_tx_er_int),
|
||||
.gmii_rxd(sfp1_gmii_rxd_int),
|
||||
.gmii_rx_dv(sfp1_gmii_rx_dv_int),
|
||||
.gmii_rx_er(sfp1_gmii_rx_er_int),
|
||||
.gmii_isolate(),
|
||||
.configuration_vector(sfp1_config_vect),
|
||||
.status_vector(sfp1_status_vect),
|
||||
.reset(rst_125mhz_int),
|
||||
.signal_detect(1'b1)
|
||||
);
|
||||
taxi_sync_reset #(
|
||||
.N(4)
|
||||
)
|
||||
sync_reset_sfp0_inst (
|
||||
.clk(sfp0_gmii_clk_int),
|
||||
.rst(rst_125mhz_int || !sfp0_gmii_resetdone),
|
||||
.out(sfp0_gmii_rst_int)
|
||||
);
|
||||
|
||||
assign sfp1_gmii_clk_en_int = 1'b1;
|
||||
wire sfp0_status_link_status = sfp0_status_vect[0];
|
||||
wire sfp0_status_link_synchronization = sfp0_status_vect[1];
|
||||
wire sfp0_status_rudi_c = sfp0_status_vect[2];
|
||||
wire sfp0_status_rudi_i = sfp0_status_vect[3];
|
||||
wire sfp0_status_rudi_invalid = sfp0_status_vect[4];
|
||||
wire sfp0_status_rxdisperr = sfp0_status_vect[5];
|
||||
wire sfp0_status_rxnotintable = sfp0_status_vect[6];
|
||||
wire sfp0_status_phy_link_status = sfp0_status_vect[7];
|
||||
wire [1:0] sfp0_status_remote_fault_encdg = sfp0_status_vect[9:8];
|
||||
wire [1:0] sfp0_status_speed = sfp0_status_vect[11:10];
|
||||
wire sfp0_status_duplex = sfp0_status_vect[12];
|
||||
wire sfp0_status_remote_fault = sfp0_status_vect[13];
|
||||
wire [1:0] sfp0_status_pause = sfp0_status_vect[15:14];
|
||||
|
||||
wire [4:0] sfp0_config_vect;
|
||||
|
||||
assign sfp0_config_vect[4] = 1'b0; // autonegotiation enable
|
||||
assign sfp0_config_vect[3] = 1'b0; // isolate
|
||||
assign sfp0_config_vect[2] = 1'b0; // power down
|
||||
assign sfp0_config_vect[1] = 1'b0; // loopback enable
|
||||
assign sfp0_config_vect[0] = 1'b0; // unidirectional enable
|
||||
|
||||
basex_pcs_pma_0
|
||||
sfp0_pcspma (
|
||||
.gtrefclk_p(sfp_mgt_refclk_0_p),
|
||||
.gtrefclk_n(sfp_mgt_refclk_0_n),
|
||||
.gtrefclk_out(sfp0_gmii_gtrefclk),
|
||||
.txn(sfp_tx_n[0]),
|
||||
.txp(sfp_tx_p[0]),
|
||||
.rxn(sfp_rx_n[0]),
|
||||
.rxp(sfp_rx_p[0]),
|
||||
.independent_clock_bufg(clk_62mhz_int),
|
||||
.userclk_out(sfp0_gmii_txuserclk),
|
||||
.userclk2_out(sfp0_gmii_txuserclk2),
|
||||
.rxuserclk_out(sfp0_gmii_rxuserclk),
|
||||
.rxuserclk2_out(sfp0_gmii_rxuserclk2),
|
||||
.gtpowergood(),
|
||||
.resetdone(sfp0_gmii_resetdone),
|
||||
.pma_reset_out(sfp0_gmii_pmareset),
|
||||
.mmcm_locked_out(sfp0_gmii_mmcm_locked),
|
||||
.gmii_txd(sfp0_gmii_txd_int),
|
||||
.gmii_tx_en(sfp0_gmii_tx_en_int),
|
||||
.gmii_tx_er(sfp0_gmii_tx_er_int),
|
||||
.gmii_rxd(sfp0_gmii_rxd_int),
|
||||
.gmii_rx_dv(sfp0_gmii_rx_dv_int),
|
||||
.gmii_rx_er(sfp0_gmii_rx_er_int),
|
||||
.gmii_isolate(),
|
||||
.configuration_vector(sfp0_config_vect),
|
||||
.status_vector(sfp0_status_vect),
|
||||
.reset(rst_125mhz_int),
|
||||
.signal_detect(1'b1)
|
||||
);
|
||||
|
||||
wire sfp1_gmii_txuserclk2 = sfp0_gmii_txuserclk2;
|
||||
wire sfp1_gmii_resetdone;
|
||||
|
||||
assign sfp1_gmii_clk_int = sfp1_gmii_txuserclk2;
|
||||
|
||||
taxi_sync_reset #(
|
||||
.N(4)
|
||||
)
|
||||
sync_reset_sfp1_inst (
|
||||
.clk(sfp1_gmii_clk_int),
|
||||
.rst(rst_125mhz_int || !sfp1_gmii_resetdone),
|
||||
.out(sfp1_gmii_rst_int)
|
||||
);
|
||||
|
||||
wire sfp1_status_link_status = sfp1_status_vect[0];
|
||||
wire sfp1_status_link_synchronization = sfp1_status_vect[1];
|
||||
wire sfp1_status_rudi_c = sfp1_status_vect[2];
|
||||
wire sfp1_status_rudi_i = sfp1_status_vect[3];
|
||||
wire sfp1_status_rudi_invalid = sfp1_status_vect[4];
|
||||
wire sfp1_status_rxdisperr = sfp1_status_vect[5];
|
||||
wire sfp1_status_rxnotintable = sfp1_status_vect[6];
|
||||
wire sfp1_status_phy_link_status = sfp1_status_vect[7];
|
||||
wire [1:0] sfp1_status_remote_fault_encdg = sfp1_status_vect[9:8];
|
||||
wire [1:0] sfp1_status_speed = sfp1_status_vect[11:10];
|
||||
wire sfp1_status_duplex = sfp1_status_vect[12];
|
||||
wire sfp1_status_remote_fault = sfp1_status_vect[13];
|
||||
wire [1:0] sfp1_status_pause = sfp1_status_vect[15:14];
|
||||
|
||||
wire [4:0] sfp1_config_vect;
|
||||
|
||||
assign sfp1_config_vect[4] = 1'b0; // autonegotiation enable
|
||||
assign sfp1_config_vect[3] = 1'b0; // isolate
|
||||
assign sfp1_config_vect[2] = 1'b0; // power down
|
||||
assign sfp1_config_vect[1] = 1'b0; // loopback enable
|
||||
assign sfp1_config_vect[0] = 1'b0; // unidirectional enable
|
||||
|
||||
basex_pcs_pma_1
|
||||
sfp1_pcspma (
|
||||
.gtrefclk(sfp0_gmii_gtrefclk),
|
||||
.txn(sfp_tx_n[1]),
|
||||
.txp(sfp_tx_p[1]),
|
||||
.rxn(sfp_rx_n[1]),
|
||||
.rxp(sfp_rx_p[1]),
|
||||
.independent_clock_bufg(clk_62mhz_int),
|
||||
.txoutclk(),
|
||||
.gtpowergood(),
|
||||
.rxoutclk(),
|
||||
.resetdone(sfp1_gmii_resetdone),
|
||||
.cplllock(),
|
||||
.mmcm_reset(),
|
||||
.userclk(sfp0_gmii_txuserclk),
|
||||
.userclk2(sfp0_gmii_txuserclk2),
|
||||
.pma_reset(sfp0_gmii_pmareset),
|
||||
.mmcm_locked(sfp0_gmii_mmcm_locked),
|
||||
.rxuserclk(sfp0_gmii_txuserclk),
|
||||
.rxuserclk2(sfp0_gmii_txuserclk2),
|
||||
.gmii_txd(sfp1_gmii_txd_int),
|
||||
.gmii_tx_en(sfp1_gmii_tx_en_int),
|
||||
.gmii_tx_er(sfp1_gmii_tx_er_int),
|
||||
.gmii_rxd(sfp1_gmii_rxd_int),
|
||||
.gmii_rx_dv(sfp1_gmii_rx_dv_int),
|
||||
.gmii_rx_er(sfp1_gmii_rx_er_int),
|
||||
.gmii_isolate(),
|
||||
.configuration_vector(sfp1_config_vect),
|
||||
.status_vector(sfp1_status_vect),
|
||||
.reset(rst_125mhz_int),
|
||||
.signal_detect(1'b1)
|
||||
);
|
||||
|
||||
end else begin
|
||||
// 10GBASE-R
|
||||
|
||||
assign sfp_tx_p = sfp_tx_p_int;
|
||||
assign sfp_tx_n = sfp_tx_n_int;
|
||||
|
||||
end
|
||||
|
||||
// SGMII interface debug:
|
||||
// SW12:1 (sw[3]) off for payload byte, on for status vector
|
||||
@@ -525,7 +540,12 @@ assign sfp1_gmii_clk_en_int = 1'b1;
|
||||
wire [15:0] sel_sv = sw[2] ? (sw[1] ? sfp1_status_vect : sfp0_status_vect) : sgmii_status_vect;
|
||||
assign led = sw[3] ? (sw[0] ? sel_sv[15:8] : sel_sv[7:0]) : led_int;
|
||||
|
||||
fpga_core
|
||||
fpga_core #(
|
||||
.SIM(SIM),
|
||||
.VENDOR(VENDOR),
|
||||
.FAMILY(FAMILY),
|
||||
.SFP_RATE(SFP_RATE)
|
||||
)
|
||||
core_inst (
|
||||
/*
|
||||
* Clock: 125MHz
|
||||
@@ -569,8 +589,15 @@ core_inst (
|
||||
.phy_int_n(phy_int_n),
|
||||
|
||||
/*
|
||||
* Ethernet: 1000BASE-X SFP
|
||||
* Ethernet: SFP+
|
||||
*/
|
||||
.sfp_rx_p(sfp_rx_p),
|
||||
.sfp_rx_n(sfp_rx_n),
|
||||
.sfp_tx_p(sfp_tx_p_int),
|
||||
.sfp_tx_n(sfp_tx_n_int),
|
||||
.sfp_mgt_refclk_0_p(sfp_mgt_refclk_0_p),
|
||||
.sfp_mgt_refclk_0_n(sfp_mgt_refclk_0_n),
|
||||
|
||||
.sfp0_gmii_clk(sfp0_gmii_clk_int),
|
||||
.sfp0_gmii_rst(sfp0_gmii_rst_int),
|
||||
.sfp0_gmii_clk_en(sfp0_gmii_clk_en_int),
|
||||
@@ -580,7 +607,6 @@ core_inst (
|
||||
.sfp0_gmii_txd(sfp0_gmii_txd_int),
|
||||
.sfp0_gmii_tx_en(sfp0_gmii_tx_en_int),
|
||||
.sfp0_gmii_tx_er(sfp0_gmii_tx_er_int),
|
||||
.sfp0_tx_disable_b(sfp0_tx_disable_b),
|
||||
|
||||
.sfp1_gmii_clk(sfp1_gmii_clk_int),
|
||||
.sfp1_gmii_rst(sfp1_gmii_rst_int),
|
||||
@@ -591,7 +617,8 @@ core_inst (
|
||||
.sfp1_gmii_txd(sfp1_gmii_txd_int),
|
||||
.sfp1_gmii_tx_en(sfp1_gmii_tx_en_int),
|
||||
.sfp1_gmii_tx_er(sfp1_gmii_tx_er_int),
|
||||
.sfp1_tx_disable_b(sfp1_tx_disable_b)
|
||||
|
||||
.sfp_tx_disable_b(sfp_tx_disable_b)
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
||||
@@ -15,7 +15,17 @@ Authors:
|
||||
/*
|
||||
* FPGA core logic
|
||||
*/
|
||||
module fpga_core
|
||||
module fpga_core #
|
||||
(
|
||||
// simulation (set to avoid vendor primitives)
|
||||
parameter logic SIM = 1'b0,
|
||||
// vendor ("GENERIC", "XILINX", "ALTERA")
|
||||
parameter string VENDOR = "XILINX",
|
||||
// device family
|
||||
parameter string FAMILY = "kintexu",
|
||||
// SFP rate selection (0 for 1G, 1 for 10G)
|
||||
parameter logic SFP_RATE = 1'b1
|
||||
)
|
||||
(
|
||||
/*
|
||||
* Clock: 125MHz
|
||||
@@ -59,8 +69,16 @@ module fpga_core
|
||||
input wire logic phy_int_n,
|
||||
|
||||
/*
|
||||
* Ethernet: 1000BASE-X SFP
|
||||
* Ethernet: SFP+
|
||||
*/
|
||||
input wire logic [1:0] sfp_rx_p,
|
||||
input wire logic [1:0] sfp_rx_n,
|
||||
output wire logic [1:0] sfp_tx_p,
|
||||
output wire logic [1:0] sfp_tx_n,
|
||||
input wire logic sfp_mgt_refclk_0_p,
|
||||
input wire logic sfp_mgt_refclk_0_n,
|
||||
|
||||
|
||||
input wire logic sfp0_gmii_clk,
|
||||
input wire logic sfp0_gmii_rst,
|
||||
input wire logic sfp0_gmii_clk_en,
|
||||
@@ -70,7 +88,6 @@ module fpga_core
|
||||
output wire logic [7:0] sfp0_gmii_txd,
|
||||
output wire logic sfp0_gmii_tx_en,
|
||||
output wire logic sfp0_gmii_tx_er,
|
||||
output wire logic sfp0_tx_disable_b,
|
||||
|
||||
input wire logic sfp1_gmii_clk,
|
||||
input wire logic sfp1_gmii_rst,
|
||||
@@ -81,7 +98,8 @@ module fpga_core
|
||||
output wire logic [7:0] sfp1_gmii_txd,
|
||||
output wire logic sfp1_gmii_tx_en,
|
||||
output wire logic sfp1_gmii_tx_er,
|
||||
output wire logic sfp1_tx_disable_b
|
||||
|
||||
output wire logic [1:0] sfp_tx_disable_b
|
||||
);
|
||||
|
||||
assign led = sw;
|
||||
@@ -199,146 +217,434 @@ eth_mac_inst (
|
||||
);
|
||||
|
||||
// SFP+
|
||||
assign sfp0_tx_disable_b = 1'b1;
|
||||
assign sfp1_tx_disable_b = 1'b1;
|
||||
assign sfp_tx_disable_b = '1;
|
||||
|
||||
taxi_axis_if #(.DATA_W(8), .ID_W(8)) axis_sfp0_eth();
|
||||
taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_sfp0_tx_cpl();
|
||||
if (SFP_RATE == 0) begin : sfp_mac
|
||||
|
||||
taxi_axis_if #(.DATA_W(8), .ID_W(8)) axis_sfp1_eth();
|
||||
taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_sfp1_tx_cpl();
|
||||
taxi_axis_if #(.DATA_W(8), .ID_W(8)) axis_sfp0_eth();
|
||||
taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_sfp0_tx_cpl();
|
||||
|
||||
taxi_eth_mac_1g_fifo #(
|
||||
.PADDING_EN(1),
|
||||
.MIN_FRAME_LEN(64),
|
||||
.TX_FIFO_DEPTH(16384),
|
||||
.TX_FRAME_FIFO(1),
|
||||
.RX_FIFO_DEPTH(16384),
|
||||
.RX_FRAME_FIFO(1)
|
||||
)
|
||||
sfp0_eth_mac_inst (
|
||||
.rx_clk(sfp0_gmii_clk),
|
||||
.rx_rst(sfp0_gmii_rst),
|
||||
.tx_clk(sfp0_gmii_clk),
|
||||
.tx_rst(sfp0_gmii_rst),
|
||||
.logic_clk(clk),
|
||||
.logic_rst(rst),
|
||||
taxi_axis_if #(.DATA_W(8), .ID_W(8)) axis_sfp1_eth();
|
||||
taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_sfp1_tx_cpl();
|
||||
|
||||
/*
|
||||
* Transmit interface (AXI stream)
|
||||
*/
|
||||
.s_axis_tx(axis_sfp0_eth),
|
||||
.m_axis_tx_cpl(axis_sfp0_tx_cpl),
|
||||
taxi_eth_mac_1g_fifo #(
|
||||
.PADDING_EN(1),
|
||||
.MIN_FRAME_LEN(64),
|
||||
.TX_FIFO_DEPTH(16384),
|
||||
.TX_FRAME_FIFO(1),
|
||||
.RX_FIFO_DEPTH(16384),
|
||||
.RX_FRAME_FIFO(1)
|
||||
)
|
||||
sfp0_eth_mac_inst (
|
||||
.rx_clk(sfp0_gmii_clk),
|
||||
.rx_rst(sfp0_gmii_rst),
|
||||
.tx_clk(sfp0_gmii_clk),
|
||||
.tx_rst(sfp0_gmii_rst),
|
||||
.logic_clk(clk),
|
||||
.logic_rst(rst),
|
||||
|
||||
/*
|
||||
* Receive interface (AXI stream)
|
||||
*/
|
||||
.m_axis_rx(axis_sfp0_eth),
|
||||
/*
|
||||
* Transmit interface (AXI stream)
|
||||
*/
|
||||
.s_axis_tx(axis_sfp0_eth),
|
||||
.m_axis_tx_cpl(axis_sfp0_tx_cpl),
|
||||
|
||||
/*
|
||||
* GMII interface
|
||||
*/
|
||||
.gmii_rxd(sfp0_gmii_rxd),
|
||||
.gmii_rx_dv(sfp0_gmii_rx_dv),
|
||||
.gmii_rx_er(sfp0_gmii_rx_er),
|
||||
.gmii_txd(sfp0_gmii_txd),
|
||||
.gmii_tx_en(sfp0_gmii_tx_en),
|
||||
.gmii_tx_er(sfp0_gmii_tx_er),
|
||||
/*
|
||||
* Receive interface (AXI stream)
|
||||
*/
|
||||
.m_axis_rx(axis_sfp0_eth),
|
||||
|
||||
/*
|
||||
* Control
|
||||
*/
|
||||
.rx_clk_enable(sfp0_gmii_clk_en),
|
||||
.tx_clk_enable(sfp0_gmii_clk_en),
|
||||
.rx_mii_select(1'b0),
|
||||
.tx_mii_select(1'b0),
|
||||
/*
|
||||
* GMII interface
|
||||
*/
|
||||
.gmii_rxd(sfp0_gmii_rxd),
|
||||
.gmii_rx_dv(sfp0_gmii_rx_dv),
|
||||
.gmii_rx_er(sfp0_gmii_rx_er),
|
||||
.gmii_txd(sfp0_gmii_txd),
|
||||
.gmii_tx_en(sfp0_gmii_tx_en),
|
||||
.gmii_tx_er(sfp0_gmii_tx_er),
|
||||
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.tx_error_underflow(),
|
||||
.tx_fifo_overflow(),
|
||||
.tx_fifo_bad_frame(),
|
||||
.tx_fifo_good_frame(),
|
||||
.rx_error_bad_frame(),
|
||||
.rx_error_bad_fcs(),
|
||||
.rx_fifo_overflow(),
|
||||
.rx_fifo_bad_frame(),
|
||||
.rx_fifo_good_frame(),
|
||||
/*
|
||||
* Control
|
||||
*/
|
||||
.rx_clk_enable(sfp0_gmii_clk_en),
|
||||
.tx_clk_enable(sfp0_gmii_clk_en),
|
||||
.rx_mii_select(1'b0),
|
||||
.tx_mii_select(1'b0),
|
||||
|
||||
/*
|
||||
* Configuration
|
||||
*/
|
||||
.cfg_ifg(8'd12),
|
||||
.cfg_tx_enable(1'b1),
|
||||
.cfg_rx_enable(1'b1)
|
||||
);
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.tx_error_underflow(),
|
||||
.tx_fifo_overflow(),
|
||||
.tx_fifo_bad_frame(),
|
||||
.tx_fifo_good_frame(),
|
||||
.rx_error_bad_frame(),
|
||||
.rx_error_bad_fcs(),
|
||||
.rx_fifo_overflow(),
|
||||
.rx_fifo_bad_frame(),
|
||||
.rx_fifo_good_frame(),
|
||||
|
||||
taxi_eth_mac_1g_fifo #(
|
||||
.PADDING_EN(1),
|
||||
.MIN_FRAME_LEN(64),
|
||||
.TX_FIFO_DEPTH(16384),
|
||||
.TX_FRAME_FIFO(1),
|
||||
.RX_FIFO_DEPTH(16384),
|
||||
.RX_FRAME_FIFO(1)
|
||||
)
|
||||
sfp1_eth_mac_inst (
|
||||
.rx_clk(sfp1_gmii_clk),
|
||||
.rx_rst(sfp1_gmii_rst),
|
||||
.tx_clk(sfp1_gmii_clk),
|
||||
.tx_rst(sfp1_gmii_rst),
|
||||
.logic_clk(clk),
|
||||
.logic_rst(rst),
|
||||
/*
|
||||
* Configuration
|
||||
*/
|
||||
.cfg_ifg(8'd12),
|
||||
.cfg_tx_enable(1'b1),
|
||||
.cfg_rx_enable(1'b1)
|
||||
);
|
||||
|
||||
/*
|
||||
* Transmit interface (AXI stream)
|
||||
*/
|
||||
.s_axis_tx(axis_sfp1_eth),
|
||||
.m_axis_tx_cpl(axis_sfp1_tx_cpl),
|
||||
taxi_eth_mac_1g_fifo #(
|
||||
.PADDING_EN(1),
|
||||
.MIN_FRAME_LEN(64),
|
||||
.TX_FIFO_DEPTH(16384),
|
||||
.TX_FRAME_FIFO(1),
|
||||
.RX_FIFO_DEPTH(16384),
|
||||
.RX_FRAME_FIFO(1)
|
||||
)
|
||||
sfp1_eth_mac_inst (
|
||||
.rx_clk(sfp1_gmii_clk),
|
||||
.rx_rst(sfp1_gmii_rst),
|
||||
.tx_clk(sfp1_gmii_clk),
|
||||
.tx_rst(sfp1_gmii_rst),
|
||||
.logic_clk(clk),
|
||||
.logic_rst(rst),
|
||||
|
||||
/*
|
||||
* Receive interface (AXI stream)
|
||||
*/
|
||||
.m_axis_rx(axis_sfp1_eth),
|
||||
/*
|
||||
* Transmit interface (AXI stream)
|
||||
*/
|
||||
.s_axis_tx(axis_sfp1_eth),
|
||||
.m_axis_tx_cpl(axis_sfp1_tx_cpl),
|
||||
|
||||
/*
|
||||
* GMII interface
|
||||
*/
|
||||
.gmii_rxd(sfp1_gmii_rxd),
|
||||
.gmii_rx_dv(sfp1_gmii_rx_dv),
|
||||
.gmii_rx_er(sfp1_gmii_rx_er),
|
||||
.gmii_txd(sfp1_gmii_txd),
|
||||
.gmii_tx_en(sfp1_gmii_tx_en),
|
||||
.gmii_tx_er(sfp1_gmii_tx_er),
|
||||
/*
|
||||
* Receive interface (AXI stream)
|
||||
*/
|
||||
.m_axis_rx(axis_sfp1_eth),
|
||||
|
||||
/*
|
||||
* Control
|
||||
*/
|
||||
.rx_clk_enable(sfp1_gmii_clk_en),
|
||||
.tx_clk_enable(sfp1_gmii_clk_en),
|
||||
.rx_mii_select(1'b0),
|
||||
.tx_mii_select(1'b0),
|
||||
/*
|
||||
* GMII interface
|
||||
*/
|
||||
.gmii_rxd(sfp1_gmii_rxd),
|
||||
.gmii_rx_dv(sfp1_gmii_rx_dv),
|
||||
.gmii_rx_er(sfp1_gmii_rx_er),
|
||||
.gmii_txd(sfp1_gmii_txd),
|
||||
.gmii_tx_en(sfp1_gmii_tx_en),
|
||||
.gmii_tx_er(sfp1_gmii_tx_er),
|
||||
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.tx_error_underflow(),
|
||||
.tx_fifo_overflow(),
|
||||
.tx_fifo_bad_frame(),
|
||||
.tx_fifo_good_frame(),
|
||||
.rx_error_bad_frame(),
|
||||
.rx_error_bad_fcs(),
|
||||
.rx_fifo_overflow(),
|
||||
.rx_fifo_bad_frame(),
|
||||
.rx_fifo_good_frame(),
|
||||
/*
|
||||
* Control
|
||||
*/
|
||||
.rx_clk_enable(sfp1_gmii_clk_en),
|
||||
.tx_clk_enable(sfp1_gmii_clk_en),
|
||||
.rx_mii_select(1'b0),
|
||||
.tx_mii_select(1'b0),
|
||||
|
||||
/*
|
||||
* Configuration
|
||||
*/
|
||||
.cfg_ifg(8'd12),
|
||||
.cfg_tx_enable(1'b1),
|
||||
.cfg_rx_enable(1'b1)
|
||||
);
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.tx_error_underflow(),
|
||||
.tx_fifo_overflow(),
|
||||
.tx_fifo_bad_frame(),
|
||||
.tx_fifo_good_frame(),
|
||||
.rx_error_bad_frame(),
|
||||
.rx_error_bad_fcs(),
|
||||
.rx_fifo_overflow(),
|
||||
.rx_fifo_bad_frame(),
|
||||
.rx_fifo_good_frame(),
|
||||
|
||||
/*
|
||||
* Configuration
|
||||
*/
|
||||
.cfg_ifg(8'd12),
|
||||
.cfg_tx_enable(1'b1),
|
||||
.cfg_rx_enable(1'b1)
|
||||
);
|
||||
|
||||
end else begin : sfp_mac
|
||||
|
||||
wire [1:0] sfp_tx_clk;
|
||||
wire [1:0] sfp_tx_rst;
|
||||
wire [1:0] sfp_rx_clk;
|
||||
wire [1:0] sfp_rx_rst;
|
||||
|
||||
wire [1:0] sfp_rx_status;
|
||||
|
||||
wire sfp_gtpowergood;
|
||||
|
||||
wire sfp_mgt_refclk_0;
|
||||
wire sfp_mgt_refclk_0_int;
|
||||
wire sfp_mgt_refclk_0_bufg;
|
||||
|
||||
wire sfp_rst;
|
||||
|
||||
taxi_axis_if #(.DATA_W(64), .ID_W(8)) axis_sfp_tx[1:0]();
|
||||
taxi_axis_if #(.DATA_W(96), .KEEP_W(1), .ID_W(8)) axis_sfp_tx_cpl[1:0]();
|
||||
taxi_axis_if #(.DATA_W(64), .ID_W(8)) axis_sfp_rx[1:0]();
|
||||
|
||||
if (SIM) begin
|
||||
|
||||
assign sfp_gtpowergood = 1'b1;
|
||||
|
||||
assign sfp_mgt_refclk_0 = sfp_mgt_refclk_0_p;
|
||||
assign sfp_mgt_refclk_0_int = sfp_mgt_refclk_0_p;
|
||||
assign sfp_mgt_refclk_0_bufg = sfp_mgt_refclk_0_int;
|
||||
|
||||
end else begin
|
||||
|
||||
IBUFDS_GTE3 ibufds_gte3_sfp_mgt_refclk_0_inst (
|
||||
.I (sfp_mgt_refclk_0_p),
|
||||
.IB (sfp_mgt_refclk_0_n),
|
||||
.CEB (1'b0),
|
||||
.O (sfp_mgt_refclk_0),
|
||||
.ODIV2 (sfp_mgt_refclk_0_int)
|
||||
);
|
||||
|
||||
BUFG_GT bufg_gt_sfp_mgt_refclk_0_inst (
|
||||
.CE (sfp_gtpowergood),
|
||||
.CEMASK (1'b1),
|
||||
.CLR (1'b0),
|
||||
.CLRMASK (1'b1),
|
||||
.DIV (3'd0),
|
||||
.I (sfp_mgt_refclk_0_int),
|
||||
.O (sfp_mgt_refclk_0_bufg)
|
||||
);
|
||||
|
||||
end
|
||||
|
||||
taxi_sync_reset #(
|
||||
.N(4)
|
||||
)
|
||||
sfp_sync_reset_inst (
|
||||
.clk(sfp_mgt_refclk_0_bufg),
|
||||
.rst(rst),
|
||||
.out(sfp_rst)
|
||||
);
|
||||
|
||||
taxi_eth_mac_25g_us #(
|
||||
.SIM(SIM),
|
||||
.VENDOR(VENDOR),
|
||||
.FAMILY(FAMILY),
|
||||
|
||||
.CNT(2),
|
||||
|
||||
// GT type
|
||||
.GT_TYPE("GTH"),
|
||||
|
||||
// PHY parameters
|
||||
.PADDING_EN(1'b1),
|
||||
.DIC_EN(1'b1),
|
||||
.MIN_FRAME_LEN(64),
|
||||
.PTP_TS_EN(1'b0),
|
||||
.PTP_TS_FMT_TOD(1'b1),
|
||||
.PTP_TS_W(96),
|
||||
.PRBS31_EN(1'b0),
|
||||
.TX_SERDES_PIPELINE(1),
|
||||
.RX_SERDES_PIPELINE(1),
|
||||
.COUNT_125US(125000/6.4)
|
||||
)
|
||||
sfp_mac_inst (
|
||||
.xcvr_ctrl_clk(clk),
|
||||
.xcvr_ctrl_rst(sfp_rst),
|
||||
|
||||
/*
|
||||
* Common
|
||||
*/
|
||||
.xcvr_gtpowergood_out(sfp_gtpowergood),
|
||||
.xcvr_gtrefclk00_in(sfp_mgt_refclk_0),
|
||||
.xcvr_qpll0lock_out(),
|
||||
.xcvr_qpll0clk_out(),
|
||||
.xcvr_qpll0refclk_out(),
|
||||
|
||||
/*
|
||||
* Serial data
|
||||
*/
|
||||
.xcvr_txp(sfp_tx_p),
|
||||
.xcvr_txn(sfp_tx_n),
|
||||
.xcvr_rxp(sfp_rx_p),
|
||||
.xcvr_rxn(sfp_rx_n),
|
||||
|
||||
/*
|
||||
* MAC clocks
|
||||
*/
|
||||
.rx_clk(sfp_rx_clk),
|
||||
.rx_rst_in('0),
|
||||
.rx_rst_out(sfp_rx_rst),
|
||||
.tx_clk(sfp_tx_clk),
|
||||
.tx_rst_in('0),
|
||||
.tx_rst_out(sfp_tx_rst),
|
||||
.ptp_sample_clk('0),
|
||||
|
||||
/*
|
||||
* Transmit interface (AXI stream)
|
||||
*/
|
||||
.s_axis_tx(axis_sfp_tx),
|
||||
.m_axis_tx_cpl(axis_sfp_tx_cpl),
|
||||
|
||||
/*
|
||||
* Receive interface (AXI stream)
|
||||
*/
|
||||
.m_axis_rx(axis_sfp_rx),
|
||||
|
||||
/*
|
||||
* PTP clock
|
||||
*/
|
||||
.tx_ptp_ts('0),
|
||||
.tx_ptp_ts_step('0),
|
||||
.rx_ptp_ts('0),
|
||||
.rx_ptp_ts_step('0),
|
||||
|
||||
|
||||
/*
|
||||
* Link-level Flow Control (LFC) (IEEE 802.3 annex 31B PAUSE)
|
||||
*/
|
||||
.tx_lfc_req('0),
|
||||
.tx_lfc_resend('0),
|
||||
.rx_lfc_en('0),
|
||||
.rx_lfc_req(),
|
||||
.rx_lfc_ack('0),
|
||||
|
||||
/*
|
||||
* Priority Flow Control (PFC) (IEEE 802.3 annex 31D PFC)
|
||||
*/
|
||||
.tx_pfc_req('0),
|
||||
.tx_pfc_resend('0),
|
||||
.rx_pfc_en('0),
|
||||
.rx_pfc_req(),
|
||||
.rx_pfc_ack('0),
|
||||
|
||||
/*
|
||||
* Pause interface
|
||||
*/
|
||||
.tx_lfc_pause_en('0),
|
||||
.tx_pause_req('0),
|
||||
.tx_pause_ack(),
|
||||
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.tx_start_packet(),
|
||||
.tx_error_underflow(),
|
||||
.rx_start_packet(),
|
||||
.rx_error_count(),
|
||||
.rx_error_bad_frame(),
|
||||
.rx_error_bad_fcs(),
|
||||
.rx_bad_block(),
|
||||
.rx_sequence_error(),
|
||||
.rx_block_lock(),
|
||||
.rx_high_ber(),
|
||||
.rx_status(sfp_rx_status),
|
||||
.stat_tx_mcf(),
|
||||
.stat_rx_mcf(),
|
||||
.stat_tx_lfc_pkt(),
|
||||
.stat_tx_lfc_xon(),
|
||||
.stat_tx_lfc_xoff(),
|
||||
.stat_tx_lfc_paused(),
|
||||
.stat_tx_pfc_pkt(),
|
||||
.stat_tx_pfc_xon(),
|
||||
.stat_tx_pfc_xoff(),
|
||||
.stat_tx_pfc_paused(),
|
||||
.stat_rx_lfc_pkt(),
|
||||
.stat_rx_lfc_xon(),
|
||||
.stat_rx_lfc_xoff(),
|
||||
.stat_rx_lfc_paused(),
|
||||
.stat_rx_pfc_pkt(),
|
||||
.stat_rx_pfc_xon(),
|
||||
.stat_rx_pfc_xoff(),
|
||||
.stat_rx_pfc_paused(),
|
||||
|
||||
/*
|
||||
* Configuration
|
||||
*/
|
||||
.cfg_ifg('{2{8'd12}}),
|
||||
.cfg_tx_enable('1),
|
||||
.cfg_rx_enable('1),
|
||||
.cfg_tx_prbs31_enable('0),
|
||||
.cfg_rx_prbs31_enable('0),
|
||||
.cfg_mcf_rx_eth_dst_mcast('{2{48'h01_80_C2_00_00_01}}),
|
||||
.cfg_mcf_rx_check_eth_dst_mcast('1),
|
||||
.cfg_mcf_rx_eth_dst_ucast('{2{48'd0}}),
|
||||
.cfg_mcf_rx_check_eth_dst_ucast('0),
|
||||
.cfg_mcf_rx_eth_src('{2{48'd0}}),
|
||||
.cfg_mcf_rx_check_eth_src('0),
|
||||
.cfg_mcf_rx_eth_type('{2{16'h8808}}),
|
||||
.cfg_mcf_rx_opcode_lfc('{2{16'h0001}}),
|
||||
.cfg_mcf_rx_check_opcode_lfc('1),
|
||||
.cfg_mcf_rx_opcode_pfc('{2{16'h0101}}),
|
||||
.cfg_mcf_rx_check_opcode_pfc('1),
|
||||
.cfg_mcf_rx_forward('0),
|
||||
.cfg_mcf_rx_enable('0),
|
||||
.cfg_tx_lfc_eth_dst('{2{48'h01_80_C2_00_00_01}}),
|
||||
.cfg_tx_lfc_eth_src('{2{48'h80_23_31_43_54_4C}}),
|
||||
.cfg_tx_lfc_eth_type('{2{16'h8808}}),
|
||||
.cfg_tx_lfc_opcode('{2{16'h0001}}),
|
||||
.cfg_tx_lfc_en('0),
|
||||
.cfg_tx_lfc_quanta('{2{16'hffff}}),
|
||||
.cfg_tx_lfc_refresh('{2{16'h7fff}}),
|
||||
.cfg_tx_pfc_eth_dst('{2{48'h01_80_C2_00_00_01}}),
|
||||
.cfg_tx_pfc_eth_src('{2{48'h80_23_31_43_54_4C}}),
|
||||
.cfg_tx_pfc_eth_type('{2{16'h8808}}),
|
||||
.cfg_tx_pfc_opcode('{2{16'h0101}}),
|
||||
.cfg_tx_pfc_en('0),
|
||||
.cfg_tx_pfc_quanta('{2{'{8{16'hffff}}}}),
|
||||
.cfg_tx_pfc_refresh('{2{'{8{16'h7fff}}}}),
|
||||
.cfg_rx_lfc_opcode('{2{16'h0001}}),
|
||||
.cfg_rx_lfc_en('0),
|
||||
.cfg_rx_pfc_opcode('{2{16'h0101}}),
|
||||
.cfg_rx_pfc_en('0)
|
||||
);
|
||||
|
||||
for (genvar n = 0; n < 2; n = n + 1) begin : sfp_ch
|
||||
|
||||
taxi_axis_async_fifo #(
|
||||
.DEPTH(16384),
|
||||
.RAM_PIPELINE(2),
|
||||
.FRAME_FIFO(1),
|
||||
.USER_BAD_FRAME_VALUE(1'b1),
|
||||
.USER_BAD_FRAME_MASK(1'b1),
|
||||
.DROP_OVERSIZE_FRAME(1),
|
||||
.DROP_BAD_FRAME(1),
|
||||
.DROP_WHEN_FULL(1)
|
||||
)
|
||||
ch_fifo (
|
||||
/*
|
||||
* AXI4-Stream input (sink)
|
||||
*/
|
||||
.s_clk(sfp_rx_clk[n]),
|
||||
.s_rst(sfp_rx_rst[n]),
|
||||
.s_axis(axis_sfp_rx[n]),
|
||||
|
||||
/*
|
||||
* AXI4-Stream output (source)
|
||||
*/
|
||||
.m_clk(sfp_tx_clk[n]),
|
||||
.m_rst(sfp_tx_rst[n]),
|
||||
.m_axis(axis_sfp_tx[n]),
|
||||
|
||||
/*
|
||||
* Pause
|
||||
*/
|
||||
.s_pause_req(1'b0),
|
||||
.s_pause_ack(),
|
||||
.m_pause_req(1'b0),
|
||||
.m_pause_ack(),
|
||||
|
||||
/*
|
||||
* Status
|
||||
*/
|
||||
.s_status_depth(),
|
||||
.s_status_depth_commit(),
|
||||
.s_status_overflow(),
|
||||
.s_status_bad_frame(),
|
||||
.s_status_good_frame(),
|
||||
.m_status_depth(),
|
||||
.m_status_depth_commit(),
|
||||
.m_status_overflow(),
|
||||
.m_status_bad_frame(),
|
||||
.m_status_good_frame()
|
||||
);
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
||||
Reference in New Issue
Block a user