Home
last modified time | relevance | path

Searched refs:hw_feat (Results 1 – 4 of 4) sorted by relevance

/dpdk/drivers/net/axgbe/
H A Daxgbe_ethdev.c498 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_dev_mac_addr_add() local
656 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_dev_mac_addr_remove() local
671 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_dev_set_mc_addr_list() local
699 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_dev_uc_hash_table_set() local
722 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_dev_uc_all_hash_table_set() local
1953 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_get_all_hw_features() local
1960 memset(hw_feat, 0, sizeof(*hw_feat)); in axgbe_get_all_hw_features()
2048 hw_feat->rx_q_cnt++; in axgbe_get_all_hw_features()
2052 hw_feat->tc_cnt++; in axgbe_get_all_hw_features()
2055 hw_feat->rx_fifo_size = 1 << (hw_feat->rx_fifo_size + 7); in axgbe_get_all_hw_features()
[all …]
H A Daxgbe_dev.c997 for (i = 0; i < pdata->hw_feat.tc_cnt; i++) { in axgbe_config_mtl_mode()
1057 pdata->hw_feat.rx_fifo_size); in axgbe_config_rx_fifo_size()
1088 pdata->hw_feat.tx_fifo_size); in axgbe_config_tx_fifo_size()
1115 qptc = pdata->tx_q_count / pdata->hw_feat.tc_cnt; in axgbe_config_queue_mapping()
1116 qptc_extra = pdata->tx_q_count % pdata->hw_feat.tc_cnt; in axgbe_config_queue_mapping()
1118 for (i = 0, queue = 0; i < pdata->hw_feat.tc_cnt; i++) { in axgbe_config_queue_mapping()
1155 q_count = RTE_MAX(pdata->hw_feat.tx_q_cnt, pdata->hw_feat.rx_q_cnt); in axgbe_enable_mtl_interrupts()
1245 struct axgbe_hw_features *hw_feat = &pdata->hw_feat; in axgbe_config_mac_hash_table() local
1252 if (hw_feat->hash_table_size) { in axgbe_config_mac_hash_table()
1253 pdata->hash_table_shift = 26 - (hw_feat->hash_table_size >> 7); in axgbe_config_mac_hash_table()
[all …]
H A Daxgbe_rxtx.c617 struct axgbe_hw_features *hw_feat; in axgbe_dev_fw_version_get() local
621 hw_feat = &pdata->hw_feat; in axgbe_dev_fw_version_get()
624 AXGMAC_GET_BITS(hw_feat->version, MAC_VR, USERVER), in axgbe_dev_fw_version_get()
625 AXGMAC_GET_BITS(hw_feat->version, MAC_VR, DEVID), in axgbe_dev_fw_version_get()
626 AXGMAC_GET_BITS(hw_feat->version, MAC_VR, SNPSVER)); in axgbe_dev_fw_version_get()
671 if (AXGMAC_GET_BITS(pdata->hw_feat.version, MAC_VR, SNPSVER) > 0x20) in axgbe_prepare_tx_stop()
H A Daxgbe_ethdev.h626 struct axgbe_hw_features hw_feat; member