eth: Add default IFG setting to Ethernet MAC TX modules

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-03-26 20:13:47 -07:00
parent b0bdf8ee17
commit 75a3909c37
5 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ module taxi_axis_baser_tx_64 #
/* /*
* Configuration * Configuration
*/ */
input wire logic [7:0] cfg_ifg, input wire logic [7:0] cfg_ifg = 8'd12,
input wire logic cfg_tx_enable, input wire logic cfg_tx_enable,
/* /*

View File

@@ -55,7 +55,7 @@ module taxi_axis_gmii_tx #
/* /*
* Configuration * Configuration
*/ */
input wire logic [7:0] cfg_ifg, input wire logic [7:0] cfg_ifg = 8'd12,
input wire logic cfg_tx_enable, input wire logic cfg_tx_enable,
/* /*

View File

@@ -50,7 +50,7 @@ module taxi_axis_xgmii_tx_32 #
/* /*
* Configuration * Configuration
*/ */
input wire logic [7:0] cfg_ifg, input wire logic [7:0] cfg_ifg = 8'd12,
input wire logic cfg_tx_enable, input wire logic cfg_tx_enable,
/* /*

View File

@@ -51,7 +51,7 @@ module taxi_axis_xgmii_tx_64 #
/* /*
* Configuration * Configuration
*/ */
input wire logic [7:0] cfg_ifg, input wire logic [7:0] cfg_ifg = 8'd12,
input wire logic cfg_tx_enable, input wire logic cfg_tx_enable,
/* /*

View File

@@ -61,7 +61,7 @@ module taxi_eth_mac_phy_10g_tx #
/* /*
* Configuration * Configuration
*/ */
input wire logic [7:0] cfg_ifg, input wire logic [7:0] cfg_ifg = 8'd12,
input wire logic cfg_tx_enable, input wire logic cfg_tx_enable,
input wire logic cfg_tx_prbs31_enable input wire logic cfg_tx_prbs31_enable
); );