1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2020 Intel Corporation
11 #include <rte_interrupts.h>
12 #include <rte_debug.h>
14 #include <rte_atomic.h>
16 #include <rte_ether.h>
17 #include <rte_ethdev_pci.h>
18 #include <rte_kvargs.h>
19 #include <rte_malloc.h>
20 #include <rte_memzone.h>
23 #include <iavf_devids.h>
25 #include "ice_generic_flow.h"
26 #include "ice_dcf_ethdev.h"
30 ice_dcf_recv_pkts(__rte_unused void *rx_queue,
31 __rte_unused struct rte_mbuf **bufs,
32 __rte_unused uint16_t nb_pkts)
38 ice_dcf_xmit_pkts(__rte_unused void *tx_queue,
39 __rte_unused struct rte_mbuf **bufs,
40 __rte_unused uint16_t nb_pkts)
46 ice_dcf_dev_start(struct rte_eth_dev *dev)
48 dev->data->dev_link.link_status = ETH_LINK_UP;
54 ice_dcf_dev_stop(struct rte_eth_dev *dev)
56 dev->data->dev_link.link_status = ETH_LINK_DOWN;
60 ice_dcf_dev_configure(__rte_unused struct rte_eth_dev *dev)
66 ice_dcf_dev_info_get(struct rte_eth_dev *dev,
67 struct rte_eth_dev_info *dev_info)
69 struct ice_dcf_adapter *adapter = dev->data->dev_private;
70 struct ice_dcf_hw *hw = &adapter->real_hw;
72 dev_info->max_mac_addrs = 1;
73 dev_info->max_rx_queues = hw->vsi_res->num_queue_pairs;
74 dev_info->max_tx_queues = hw->vsi_res->num_queue_pairs;
75 dev_info->min_rx_bufsize = ICE_BUF_SIZE_MIN;
76 dev_info->max_rx_pktlen = ICE_FRAME_SIZE_MAX;
77 dev_info->hash_key_size = hw->vf_res->rss_key_size;
78 dev_info->reta_size = hw->vf_res->rss_lut_size;
79 dev_info->flow_type_rss_offloads = ICE_RSS_OFFLOAD_ALL;
81 dev_info->rx_offload_capa =
82 DEV_RX_OFFLOAD_VLAN_STRIP |
83 DEV_RX_OFFLOAD_IPV4_CKSUM |
84 DEV_RX_OFFLOAD_UDP_CKSUM |
85 DEV_RX_OFFLOAD_TCP_CKSUM |
86 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
87 DEV_RX_OFFLOAD_SCATTER |
88 DEV_RX_OFFLOAD_JUMBO_FRAME |
89 DEV_RX_OFFLOAD_VLAN_FILTER |
90 DEV_RX_OFFLOAD_RSS_HASH;
91 dev_info->tx_offload_capa =
92 DEV_TX_OFFLOAD_VLAN_INSERT |
93 DEV_TX_OFFLOAD_IPV4_CKSUM |
94 DEV_TX_OFFLOAD_UDP_CKSUM |
95 DEV_TX_OFFLOAD_TCP_CKSUM |
96 DEV_TX_OFFLOAD_SCTP_CKSUM |
97 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
98 DEV_TX_OFFLOAD_TCP_TSO |
99 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
100 DEV_TX_OFFLOAD_GRE_TNL_TSO |
101 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
102 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
103 DEV_TX_OFFLOAD_MULTI_SEGS;
105 dev_info->default_rxconf = (struct rte_eth_rxconf) {
107 .pthresh = ICE_DEFAULT_RX_PTHRESH,
108 .hthresh = ICE_DEFAULT_RX_HTHRESH,
109 .wthresh = ICE_DEFAULT_RX_WTHRESH,
111 .rx_free_thresh = ICE_DEFAULT_RX_FREE_THRESH,
116 dev_info->default_txconf = (struct rte_eth_txconf) {
118 .pthresh = ICE_DEFAULT_TX_PTHRESH,
119 .hthresh = ICE_DEFAULT_TX_HTHRESH,
120 .wthresh = ICE_DEFAULT_TX_WTHRESH,
122 .tx_free_thresh = ICE_DEFAULT_TX_FREE_THRESH,
123 .tx_rs_thresh = ICE_DEFAULT_TX_RSBIT_THRESH,
127 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
128 .nb_max = ICE_MAX_RING_DESC,
129 .nb_min = ICE_MIN_RING_DESC,
130 .nb_align = ICE_ALIGN_RING_DESC,
133 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
134 .nb_max = ICE_MAX_RING_DESC,
135 .nb_min = ICE_MIN_RING_DESC,
136 .nb_align = ICE_ALIGN_RING_DESC,
143 ice_dcf_stats_get(__rte_unused struct rte_eth_dev *dev,
144 __rte_unused struct rte_eth_stats *igb_stats)
150 ice_dcf_stats_reset(__rte_unused struct rte_eth_dev *dev)
156 ice_dcf_dev_promiscuous_enable(__rte_unused struct rte_eth_dev *dev)
162 ice_dcf_dev_promiscuous_disable(__rte_unused struct rte_eth_dev *dev)
168 ice_dcf_dev_allmulticast_enable(__rte_unused struct rte_eth_dev *dev)
174 ice_dcf_dev_allmulticast_disable(__rte_unused struct rte_eth_dev *dev)
180 ice_dcf_dev_filter_ctrl(struct rte_eth_dev *dev,
181 enum rte_filter_type filter_type,
182 enum rte_filter_op filter_op,
190 switch (filter_type) {
191 case RTE_ETH_FILTER_GENERIC:
192 if (filter_op != RTE_ETH_FILTER_GET)
194 *(const void **)arg = &ice_flow_ops;
198 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
208 ice_dcf_dev_close(struct rte_eth_dev *dev)
210 struct ice_dcf_adapter *adapter = dev->data->dev_private;
212 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
216 dev->rx_pkt_burst = NULL;
217 dev->tx_pkt_burst = NULL;
219 ice_dcf_uninit_parent_adapter(dev);
220 ice_dcf_uninit_hw(dev, &adapter->real_hw);
224 ice_dcf_queue_release(__rte_unused void *q)
229 ice_dcf_link_update(__rte_unused struct rte_eth_dev *dev,
230 __rte_unused int wait_to_complete)
236 ice_dcf_rx_queue_setup(struct rte_eth_dev *dev,
237 uint16_t rx_queue_id,
238 __rte_unused uint16_t nb_rx_desc,
239 __rte_unused unsigned int socket_id,
240 __rte_unused const struct rte_eth_rxconf *rx_conf,
241 __rte_unused struct rte_mempool *mb_pool)
243 struct ice_dcf_adapter *adapter = dev->data->dev_private;
245 dev->data->rx_queues[rx_queue_id] = &adapter->rxqs[rx_queue_id];
251 ice_dcf_tx_queue_setup(struct rte_eth_dev *dev,
252 uint16_t tx_queue_id,
253 __rte_unused uint16_t nb_tx_desc,
254 __rte_unused unsigned int socket_id,
255 __rte_unused const struct rte_eth_txconf *tx_conf)
257 struct ice_dcf_adapter *adapter = dev->data->dev_private;
259 dev->data->tx_queues[tx_queue_id] = &adapter->txqs[tx_queue_id];
264 static const struct eth_dev_ops ice_dcf_eth_dev_ops = {
265 .dev_start = ice_dcf_dev_start,
266 .dev_stop = ice_dcf_dev_stop,
267 .dev_close = ice_dcf_dev_close,
268 .dev_configure = ice_dcf_dev_configure,
269 .dev_infos_get = ice_dcf_dev_info_get,
270 .rx_queue_setup = ice_dcf_rx_queue_setup,
271 .tx_queue_setup = ice_dcf_tx_queue_setup,
272 .rx_queue_release = ice_dcf_queue_release,
273 .tx_queue_release = ice_dcf_queue_release,
274 .link_update = ice_dcf_link_update,
275 .stats_get = ice_dcf_stats_get,
276 .stats_reset = ice_dcf_stats_reset,
277 .promiscuous_enable = ice_dcf_dev_promiscuous_enable,
278 .promiscuous_disable = ice_dcf_dev_promiscuous_disable,
279 .allmulticast_enable = ice_dcf_dev_allmulticast_enable,
280 .allmulticast_disable = ice_dcf_dev_allmulticast_disable,
281 .filter_ctrl = ice_dcf_dev_filter_ctrl,
285 ice_dcf_dev_init(struct rte_eth_dev *eth_dev)
287 struct ice_dcf_adapter *adapter = eth_dev->data->dev_private;
289 eth_dev->dev_ops = &ice_dcf_eth_dev_ops;
290 eth_dev->rx_pkt_burst = ice_dcf_recv_pkts;
291 eth_dev->tx_pkt_burst = ice_dcf_xmit_pkts;
293 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
296 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
298 adapter->real_hw.vc_event_msg_cb = ice_dcf_handle_pf_event_msg;
299 if (ice_dcf_init_hw(eth_dev, &adapter->real_hw) != 0) {
300 PMD_INIT_LOG(ERR, "Failed to init DCF hardware");
304 if (ice_dcf_init_parent_adapter(eth_dev) != 0) {
305 PMD_INIT_LOG(ERR, "Failed to init DCF parent adapter");
306 ice_dcf_uninit_hw(eth_dev, &adapter->real_hw);
314 ice_dcf_dev_uninit(struct rte_eth_dev *eth_dev)
316 ice_dcf_dev_close(eth_dev);
322 ice_dcf_cap_check_handler(__rte_unused const char *key,
323 const char *value, __rte_unused void *opaque)
325 if (strcmp(value, "dcf"))
332 ice_dcf_cap_selected(struct rte_devargs *devargs)
334 struct rte_kvargs *kvlist;
335 const char *key = "cap";
341 kvlist = rte_kvargs_parse(devargs->args, NULL);
345 if (!rte_kvargs_count(kvlist, key))
348 /* dcf capability selected when there's a key-value pair: cap=dcf */
349 if (rte_kvargs_process(kvlist, key,
350 ice_dcf_cap_check_handler, NULL) < 0)
356 rte_kvargs_free(kvlist);
360 static int eth_ice_dcf_pci_probe(__rte_unused struct rte_pci_driver *pci_drv,
361 struct rte_pci_device *pci_dev)
363 if (!ice_dcf_cap_selected(pci_dev->device.devargs))
366 return rte_eth_dev_pci_generic_probe(pci_dev,
367 sizeof(struct ice_dcf_adapter),
371 static int eth_ice_dcf_pci_remove(struct rte_pci_device *pci_dev)
373 return rte_eth_dev_pci_generic_remove(pci_dev, ice_dcf_dev_uninit);
376 static const struct rte_pci_id pci_id_ice_dcf_map[] = {
377 { RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF) },
378 { .vendor_id = 0, /* sentinel */ },
381 static struct rte_pci_driver rte_ice_dcf_pmd = {
382 .id_table = pci_id_ice_dcf_map,
383 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
384 .probe = eth_ice_dcf_pci_probe,
385 .remove = eth_ice_dcf_pci_remove,
388 RTE_PMD_REGISTER_PCI(net_ice_dcf, rte_ice_dcf_pmd);
389 RTE_PMD_REGISTER_PCI_TABLE(net_ice_dcf, pci_id_ice_dcf_map);
390 RTE_PMD_REGISTER_KMOD_DEP(net_ice_dcf, "* igb_uio | vfio-pci");
391 RTE_PMD_REGISTER_PARAM_STRING(net_ice_dcf, "cap=dcf");