net/mlx5: remove redundant check of devargs
[dpdk.git] / drivers / net / mlx5 / windows / mlx5_os.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2020 Mellanox Technologies, Ltd
3  */
4
5 #include <errno.h>
6 #include <stdalign.h>
7 #include <stddef.h>
8 #include <stdint.h>
9 #include <stdlib.h>
10
11 #include <rte_windows.h>
12 #include <ethdev_pci.h>
13
14 #include <mlx5_glue.h>
15 #include <mlx5_devx_cmds.h>
16 #include <mlx5_common.h>
17 #include <mlx5_common_mp.h>
18 #include <mlx5_common_mr.h>
19 #include <mlx5_malloc.h>
20
21 #include "mlx5_defs.h"
22 #include "mlx5.h"
23 #include "mlx5_common_os.h"
24 #include "mlx5_utils.h"
25 #include "mlx5_rxtx.h"
26 #include "mlx5_rx.h"
27 #include "mlx5_tx.h"
28 #include "mlx5_autoconf.h"
29 #include "mlx5_flow.h"
30 #include "mlx5_devx.h"
31
32 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
33
34 /* Spinlock for mlx5_shared_data allocation. */
35 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
36
37 /* rte flow indexed pool configuration. */
38 static struct mlx5_indexed_pool_config icfg[] = {
39         {
40                 .size = sizeof(struct rte_flow),
41                 .trunk_size = 64,
42                 .need_lock = 1,
43                 .release_mem_en = 0,
44                 .malloc = mlx5_malloc,
45                 .free = mlx5_free,
46                 .per_core_cache = 0,
47                 .type = "ctl_flow_ipool",
48         },
49         {
50                 .size = sizeof(struct rte_flow),
51                 .trunk_size = 64,
52                 .grow_trunk = 3,
53                 .grow_shift = 2,
54                 .need_lock = 1,
55                 .release_mem_en = 0,
56                 .malloc = mlx5_malloc,
57                 .free = mlx5_free,
58                 .per_core_cache = 1 << 14,
59                 .type = "rte_flow_ipool",
60         },
61         {
62                 .size = sizeof(struct rte_flow),
63                 .trunk_size = 64,
64                 .grow_trunk = 3,
65                 .grow_shift = 2,
66                 .need_lock = 1,
67                 .release_mem_en = 0,
68                 .malloc = mlx5_malloc,
69                 .free = mlx5_free,
70                 .per_core_cache = 0,
71                 .type = "mcp_flow_ipool",
72         },
73 };
74
75 static void
76 mlx5_queue_counter_id_prepare(struct rte_eth_dev *dev)
77 {
78         struct mlx5_priv *priv = dev->data->dev_private;
79         void *ctx = priv->sh->cdev->ctx;
80
81         priv->q_counters = mlx5_devx_cmd_queue_counter_alloc(ctx);
82         if (!priv->q_counters) {
83                 DRV_LOG(ERR, "Port %d queue counter object cannot be created "
84                         "by DevX - imissed counter will be unavailable",
85                         dev->data->port_id);
86                 return;
87         }
88         priv->counter_set_id = priv->q_counters->id;
89 }
90
91 /**
92  * Initialize shared data between primary and secondary process.
93  *
94  * A memzone is reserved by primary process and secondary processes attach to
95  * the memzone.
96  *
97  * @return
98  *   0 on success, a negative errno value otherwise and rte_errno is set.
99  */
100 static int
101 mlx5_init_shared_data(void)
102 {
103         const struct rte_memzone *mz;
104         int ret = 0;
105
106         rte_spinlock_lock(&mlx5_shared_data_lock);
107         if (mlx5_shared_data == NULL) {
108                 /* Allocate shared memory. */
109                 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
110                                          sizeof(*mlx5_shared_data),
111                                          SOCKET_ID_ANY, 0);
112                 if (mz == NULL) {
113                         DRV_LOG(ERR,
114                                 "Cannot allocate mlx5 shared data");
115                         ret = -rte_errno;
116                         goto error;
117                 }
118                 mlx5_shared_data = mz->addr;
119                 memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
120                 rte_spinlock_init(&mlx5_shared_data->lock);
121         }
122 error:
123         rte_spinlock_unlock(&mlx5_shared_data_lock);
124         return ret;
125 }
126
127 /**
128  * PMD global initialization.
129  *
130  * Independent from individual device, this function initializes global
131  * per-PMD data structures distinguishing primary and secondary processes.
132  * Hence, each initialization is called once per a process.
133  *
134  * @return
135  *   0 on success, a negative errno value otherwise and rte_errno is set.
136  */
137 static int
138 mlx5_init_once(void)
139 {
140         if (mlx5_init_shared_data())
141                 return -rte_errno;
142         return 0;
143 }
144
145 /**
146  * Get mlx5 device attributes.
147  *
148  * @param cdev
149  *   Pointer to mlx5 device.
150  *
151  * @param device_attr
152  *   Pointer to mlx5 device attributes.
153  *
154  * @return
155  *   0 on success, a negative errno value otherwise and rte_errno is set.
156  */
157 int
158 mlx5_os_get_dev_attr(struct mlx5_common_device *cdev,
159                      struct mlx5_dev_attr *device_attr)
160 {
161         struct mlx5_context *mlx5_ctx;
162         void *pv_iseg = NULL;
163         u32 cb_iseg = 0;
164
165         if (!cdev || !cdev->ctx) {
166                 rte_errno = EINVAL;
167                 return -rte_errno;
168         }
169         mlx5_ctx = (struct mlx5_context *)cdev->ctx;
170         memset(device_attr, 0, sizeof(*device_attr));
171         device_attr->max_cq = 1 << cdev->config.hca_attr.log_max_cq;
172         device_attr->max_qp = 1 << cdev->config.hca_attr.log_max_qp;
173         device_attr->max_qp_wr = 1 << cdev->config.hca_attr.log_max_qp_sz;
174         device_attr->max_cqe = 1 << cdev->config.hca_attr.log_max_cq_sz;
175         device_attr->max_mr = 1 << cdev->config.hca_attr.log_max_mrw_sz;
176         device_attr->max_pd = 1 << cdev->config.hca_attr.log_max_pd;
177         device_attr->max_srq = 1 << cdev->config.hca_attr.log_max_srq;
178         device_attr->max_srq_wr = 1 << cdev->config.hca_attr.log_max_srq_sz;
179         device_attr->max_tso = 1 << cdev->config.hca_attr.max_lso_cap;
180         if (cdev->config.hca_attr.rss_ind_tbl_cap) {
181                 device_attr->max_rwq_indirection_table_size =
182                         1 << cdev->config.hca_attr.rss_ind_tbl_cap;
183         }
184         device_attr->sw_parsing_offloads =
185                 mlx5_get_supported_sw_parsing_offloads(&cdev->config.hca_attr);
186         device_attr->tunnel_offloads_caps =
187                 mlx5_get_supported_tunneling_offloads(&cdev->config.hca_attr);
188         pv_iseg = mlx5_glue->query_hca_iseg(mlx5_ctx, &cb_iseg);
189         if (pv_iseg == NULL) {
190                 DRV_LOG(ERR, "Failed to get device hca_iseg");
191                 rte_errno = errno;
192                 return -rte_errno;
193         }
194         snprintf(device_attr->fw_ver, 64, "%x.%x.%04x",
195                  MLX5_GET(initial_seg, pv_iseg, fw_rev_major),
196                  MLX5_GET(initial_seg, pv_iseg, fw_rev_minor),
197                  MLX5_GET(initial_seg, pv_iseg, fw_rev_subminor));
198         return 0;
199 }
200
201 /**
202  * Initialize DR related data within private structure.
203  * Routine checks the reference counter and does actual
204  * resources creation/initialization only if counter is zero.
205  *
206  * @param[in] priv
207  *   Pointer to the private device data structure.
208  *
209  * @return
210  *   Zero on success, positive error code otherwise.
211  */
212 static int
213 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
214 {
215         struct mlx5_dev_ctx_shared *sh = priv->sh;
216         int err = 0;
217
218         if (!sh->flow_tbls)
219                 err = mlx5_alloc_table_hash_list(priv);
220         else
221                 DRV_LOG(DEBUG, "sh->flow_tbls[%p] already created, reuse",
222                         (void *)sh->flow_tbls);
223         return err;
224 }
225 /**
226  * Destroy DR related data within private structure.
227  *
228  * @param[in] priv
229  *   Pointer to the private device data structure.
230  */
231 void
232 mlx5_os_free_shared_dr(struct mlx5_priv *priv)
233 {
234         mlx5_free_table_hash_list(priv);
235 }
236
237 /**
238  * Set the completion channel file descriptor interrupt as non-blocking.
239  * Currently it has no support under Windows.
240  *
241  * @param[in] rxq_obj
242  *   Pointer to RQ channel object, which includes the channel fd
243  *
244  * @param[out] fd
245  *   The file descriptor (representing the interrupt) used in this channel.
246  *
247  * @return
248  *   0 on successfully setting the fd to non-blocking, non-zero otherwise.
249  */
250 int
251 mlx5_os_set_nonblock_channel_fd(int fd)
252 {
253         (void)fd;
254         DRV_LOG(WARNING, "%s: is not supported", __func__);
255         return -ENOTSUP;
256 }
257
258 /**
259  * DV flow counter mode detect and config.
260  *
261  * @param dev
262  *   Pointer to rte_eth_dev structure.
263  *
264  */
265 static void
266 mlx5_flow_counter_mode_config(struct rte_eth_dev *dev __rte_unused)
267 {
268 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
269         struct mlx5_priv *priv = dev->data->dev_private;
270         struct mlx5_dev_ctx_shared *sh = priv->sh;
271         bool fallback;
272
273 #ifndef HAVE_IBV_DEVX_ASYNC
274         fallback = true;
275 #else
276         fallback = false;
277         if (!sh->devx || !priv->config.dv_flow_en ||
278             !priv->config.hca_attr.flow_counters_dump ||
279             !(priv->config.hca_attr.flow_counter_bulk_alloc_bitmap & 0x4) ||
280             (mlx5_flow_dv_discover_counter_offset_support(dev) == -ENOTSUP))
281                 fallback = true;
282 #endif
283         if (fallback)
284                 DRV_LOG(INFO, "Use fall-back DV counter management. Flow "
285                         "counter dump:%d, bulk_alloc_bitmap:0x%hhx.",
286                         priv->config.hca_attr.flow_counters_dump,
287                         priv->config.hca_attr.flow_counter_bulk_alloc_bitmap);
288         /* Initialize fallback mode only on the port initializes sh. */
289         if (sh->refcnt == 1)
290                 sh->cmng.counter_fallback = fallback;
291         else if (fallback != sh->cmng.counter_fallback)
292                 DRV_LOG(WARNING, "Port %d in sh has different fallback mode "
293                         "with others:%d.", PORT_ID(priv), fallback);
294 #endif
295 }
296
297 /**
298  * Spawn an Ethernet device from DevX information.
299  *
300  * @param dpdk_dev
301  *   Backing DPDK device.
302  * @param spawn
303  *   Verbs device parameters (name, port, switch_info) to spawn.
304  * @param config
305  *   Device configuration parameters.
306  *
307  * @return
308  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
309  *   is set. The following errors are defined:
310  *
311  *   EEXIST: device is already spawned
312  */
313 static struct rte_eth_dev *
314 mlx5_dev_spawn(struct rte_device *dpdk_dev,
315                struct mlx5_dev_spawn_data *spawn,
316                struct mlx5_dev_config *config)
317 {
318         const struct mlx5_switch_info *switch_info = &spawn->info;
319         struct mlx5_dev_ctx_shared *sh = NULL;
320         struct mlx5_dev_attr device_attr;
321         struct rte_eth_dev *eth_dev = NULL;
322         struct mlx5_priv *priv = NULL;
323         int err = 0;
324         struct rte_ether_addr mac;
325         char name[RTE_ETH_NAME_MAX_LEN];
326         int own_domain_id = 0;
327         uint16_t port_id;
328         int i;
329
330         /* Build device name. */
331         strlcpy(name, dpdk_dev->name, sizeof(name));
332         /* check if the device is already spawned */
333         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
334                 rte_errno = EEXIST;
335                 return NULL;
336         }
337         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
338         /* Process parameters. */
339         err = mlx5_args(config, dpdk_dev->devargs);
340         if (err) {
341                 err = rte_errno;
342                 DRV_LOG(ERR, "failed to process device arguments: %s",
343                         strerror(rte_errno));
344                 goto error;
345         }
346         sh = mlx5_alloc_shared_dev_ctx(spawn, config);
347         if (!sh)
348                 return NULL;
349         /* Update final values for devargs before check sibling config. */
350         config->dv_esw_en = 0;
351         if (!config->dv_flow_en) {
352                 DRV_LOG(ERR, "Windows flow mode must be DV flow enable.");
353                 err = ENOTSUP;
354                 goto error;
355         }
356         if (!config->dv_esw_en &&
357             config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
358                 DRV_LOG(WARNING,
359                         "Metadata mode %u is not supported (no E-Switch).",
360                         config->dv_xmeta_en);
361                 config->dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
362         }
363         /* Check sibling device configurations. */
364         err = mlx5_dev_check_sibling_config(sh, config, dpdk_dev);
365         if (err)
366                 goto error;
367         /* Initialize the shutdown event in mlx5_dev_spawn to
368          * support mlx5_is_removed for Windows.
369          */
370         err = mlx5_glue->devx_init_showdown_event(sh->cdev->ctx);
371         if (err) {
372                 DRV_LOG(ERR, "failed to init showdown event: %s",
373                         strerror(errno));
374                 goto error;
375         }
376         DRV_LOG(DEBUG, "MPW isn't supported");
377         mlx5_os_get_dev_attr(sh->cdev, &device_attr);
378         config->swp = device_attr.sw_parsing_offloads &
379                 (MLX5_SW_PARSING_CAP | MLX5_SW_PARSING_CSUM_CAP |
380                  MLX5_SW_PARSING_TSO_CAP);
381         config->ind_table_max_size =
382                 sh->device_attr.max_rwq_indirection_table_size;
383         config->tunnel_en = device_attr.tunnel_offloads_caps &
384                 (MLX5_TUNNELED_OFFLOADS_VXLAN_CAP |
385                  MLX5_TUNNELED_OFFLOADS_GRE_CAP |
386                  MLX5_TUNNELED_OFFLOADS_GENEVE_CAP);
387         if (config->tunnel_en) {
388                 DRV_LOG(DEBUG, "tunnel offloading is supported for %s%s%s",
389                 config->tunnel_en &
390                 MLX5_TUNNELED_OFFLOADS_VXLAN_CAP ? "[VXLAN]" : "",
391                 config->tunnel_en &
392                 MLX5_TUNNELED_OFFLOADS_GRE_CAP ? "[GRE]" : "",
393                 config->tunnel_en &
394                 MLX5_TUNNELED_OFFLOADS_GENEVE_CAP ? "[GENEVE]" : ""
395                 );
396         } else {
397                 DRV_LOG(DEBUG, "tunnel offloading is not supported");
398         }
399         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is no supported");
400         config->mpls_en = 0;
401         /* Allocate private eth device data. */
402         priv = mlx5_malloc(MLX5_MEM_ZERO | MLX5_MEM_RTE,
403                            sizeof(*priv),
404                            RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
405         if (priv == NULL) {
406                 DRV_LOG(ERR, "priv allocation failure");
407                 err = ENOMEM;
408                 goto error;
409         }
410         priv->sh = sh;
411         priv->dev_port = spawn->phys_port;
412         priv->pci_dev = spawn->pci_dev;
413         priv->mtu = RTE_ETHER_MTU;
414         priv->mp_id.port_id = port_id;
415         strlcpy(priv->mp_id.name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN);
416         priv->representor = !!switch_info->representor;
417         priv->master = !!switch_info->master;
418         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
419         priv->vport_meta_tag = 0;
420         priv->vport_meta_mask = 0;
421         priv->pf_bond = spawn->pf_bond;
422         priv->vport_id = -1;
423         /* representor_id field keeps the unmodified VF index. */
424         priv->representor_id = -1;
425         /*
426          * Look for sibling devices in order to reuse their switch domain
427          * if any, otherwise allocate one.
428          */
429         MLX5_ETH_FOREACH_DEV(port_id, dpdk_dev) {
430                 const struct mlx5_priv *opriv =
431                         rte_eth_devices[port_id].data->dev_private;
432
433                 if (!opriv ||
434                     opriv->sh != priv->sh ||
435                         opriv->domain_id ==
436                         RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
437                         continue;
438                 priv->domain_id = opriv->domain_id;
439                 break;
440         }
441         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
442                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
443                 if (err) {
444                         err = rte_errno;
445                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
446                                 strerror(rte_errno));
447                         goto error;
448                 }
449                 own_domain_id = 1;
450         }
451         DRV_LOG(DEBUG, "counters are not supported");
452         config->ind_table_max_size =
453                 sh->device_attr.max_rwq_indirection_table_size;
454         /*
455          * Remove this check once DPDK supports larger/variable
456          * indirection tables.
457          */
458         if (config->ind_table_max_size > (unsigned int)RTE_ETH_RSS_RETA_SIZE_512)
459                 config->ind_table_max_size = RTE_ETH_RSS_RETA_SIZE_512;
460         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
461                 config->ind_table_max_size);
462         if (config->hw_padding) {
463                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
464                 config->hw_padding = 0;
465         }
466         config->tso = (sh->device_attr.max_tso > 0);
467         if (config->tso)
468                 config->tso_max_payload_sz = sh->device_attr.max_tso;
469         DRV_LOG(DEBUG, "%sMPS is %s.",
470                 config->mps == MLX5_MPW_ENHANCED ? "enhanced " :
471                 config->mps == MLX5_MPW ? "legacy " : "",
472                 config->mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
473         if (config->cqe_comp) {
474                 DRV_LOG(WARNING, "Rx CQE compression isn't supported.");
475                 config->cqe_comp = 0;
476         }
477         if (sh->devx) {
478                 config->hca_attr = sh->cdev->config.hca_attr;
479                 config->hw_csum = config->hca_attr.csum_cap;
480                 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
481                     (config->hw_csum ? "" : "not "));
482                 config->hw_vlan_strip = config->hca_attr.vlan_cap;
483                 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
484                         (config->hw_vlan_strip ? "" : "not "));
485                 config->hw_fcs_strip = config->hca_attr.scatter_fcs;
486         }
487         if (sh->devx) {
488                 uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)];
489
490                 err = config->hca_attr.access_register_user ?
491                         mlx5_devx_cmd_register_read
492                                 (sh->cdev->ctx, MLX5_REGISTER_ID_MTUTC, 0,
493                                 reg, MLX5_ST_SZ_DW(register_mtutc)) : ENOTSUP;
494                 if (!err) {
495                         uint32_t ts_mode;
496
497                         /* MTUTC register is read successfully. */
498                         ts_mode = MLX5_GET(register_mtutc, reg,
499                                            time_stamp_mode);
500                         if (ts_mode == MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME)
501                                 config->rt_timestamp = 1;
502                 } else {
503                         /* Kernel does not support register reading. */
504                         if (config->hca_attr.dev_freq_khz ==
505                                                  (NS_PER_S / MS_PER_S))
506                                 config->rt_timestamp = 1;
507                 }
508         }
509         if (config->mprq.enabled) {
510                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
511                 config->mprq.enabled = 0;
512         }
513         if (config->max_dump_files_num == 0)
514                 config->max_dump_files_num = 128;
515         eth_dev = rte_eth_dev_allocate(name);
516         if (eth_dev == NULL) {
517                 DRV_LOG(ERR, "can not allocate rte ethdev");
518                 err = ENOMEM;
519                 goto error;
520         }
521         if (priv->representor) {
522                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
523                 eth_dev->data->representor_id = priv->representor_id;
524                 MLX5_ETH_FOREACH_DEV(port_id, dpdk_dev) {
525                         struct mlx5_priv *opriv =
526                                 rte_eth_devices[port_id].data->dev_private;
527                         if (opriv &&
528                             opriv->master &&
529                             opriv->domain_id == priv->domain_id &&
530                             opriv->sh == priv->sh) {
531                                 eth_dev->data->backer_port_id = port_id;
532                                 break;
533                         }
534                 }
535                 if (port_id >= RTE_MAX_ETHPORTS)
536                         eth_dev->data->backer_port_id = eth_dev->data->port_id;
537         }
538         /*
539          * Store associated network device interface index. This index
540          * is permanent throughout the lifetime of device. So, we may store
541          * the ifindex here and use the cached value further.
542          */
543         MLX5_ASSERT(spawn->ifindex);
544         priv->if_index = spawn->ifindex;
545         eth_dev->data->dev_private = priv;
546         priv->dev_data = eth_dev->data;
547         eth_dev->data->mac_addrs = priv->mac;
548         eth_dev->device = dpdk_dev;
549         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
550         /* Configure the first MAC address by default. */
551         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
552                 DRV_LOG(ERR,
553                         "port %u cannot get MAC address, is mlx5_en"
554                         " loaded? (errno: %s).",
555                         eth_dev->data->port_id, strerror(rte_errno));
556                 err = ENODEV;
557                 goto error;
558         }
559         DRV_LOG(INFO,
560                 "port %u MAC address is " RTE_ETHER_ADDR_PRT_FMT,
561                 eth_dev->data->port_id, RTE_ETHER_ADDR_BYTES(&mac));
562 #ifdef RTE_LIBRTE_MLX5_DEBUG
563         {
564                 char ifname[MLX5_NAMESIZE];
565
566                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
567                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
568                                 eth_dev->data->port_id, ifname);
569                 else
570                         DRV_LOG(DEBUG, "port %u ifname is unknown.",
571                                 eth_dev->data->port_id);
572         }
573 #endif
574         /* Get actual MTU if possible. */
575         err = mlx5_get_mtu(eth_dev, &priv->mtu);
576         if (err) {
577                 err = rte_errno;
578                 goto error;
579         }
580         DRV_LOG(DEBUG, "port %u MTU is %u.", eth_dev->data->port_id,
581                 priv->mtu);
582         /* Initialize burst functions to prevent crashes before link-up. */
583         eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy;
584         eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy;
585         eth_dev->dev_ops = &mlx5_dev_ops;
586         eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
587         eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
588         eth_dev->rx_queue_count = mlx5_rx_queue_count;
589         /* Register MAC address. */
590         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
591         priv->ctrl_flows = 0;
592         TAILQ_INIT(&priv->flow_meters);
593         priv->mtr_profile_tbl = mlx5_l3t_create(MLX5_L3T_TYPE_PTR);
594         if (!priv->mtr_profile_tbl)
595                 goto error;
596         /* Bring Ethernet device up. */
597         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up.",
598                 eth_dev->data->port_id);
599         /* nl calls are unsupported - set to -1 not to fail on release */
600         priv->nl_socket_rdma = -1;
601         priv->nl_socket_route = -1;
602         mlx5_set_link_up(eth_dev);
603         /*
604          * Even though the interrupt handler is not installed yet,
605          * interrupts will still trigger on the async_fd from
606          * Verbs context returned by ibv_open_device().
607          */
608         mlx5_link_update(eth_dev, 0);
609         /* Detect minimal data bytes to inline. */
610         mlx5_set_min_inline(spawn, config);
611         /* Store device configuration on private structure. */
612         priv->config = *config;
613         for (i = 0; i < MLX5_FLOW_TYPE_MAXI; i++) {
614                 icfg[i].release_mem_en = !!config->reclaim_mode;
615                 if (config->reclaim_mode)
616                         icfg[i].per_core_cache = 0;
617                 priv->flows[i] = mlx5_ipool_create(&icfg[i]);
618                 if (!priv->flows[i])
619                         goto error;
620         }
621         /* Create context for virtual machine VLAN workaround. */
622         priv->vmwa_context = NULL;
623         if (config->dv_flow_en) {
624                 err = mlx5_alloc_shared_dr(priv);
625                 if (err)
626                         goto error;
627         }
628         /* No supported flow priority number detection. */
629         priv->sh->flow_max_priority = -1;
630         mlx5_set_metadata_mask(eth_dev);
631         if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
632             !priv->sh->dv_regc0_mask) {
633                 DRV_LOG(ERR, "metadata mode %u is not supported "
634                              "(no metadata reg_c[0] is available).",
635                              priv->config.dv_xmeta_en);
636                         err = ENOTSUP;
637                         goto error;
638         }
639         priv->hrxqs = mlx5_list_create("hrxq", eth_dev, true,
640                 mlx5_hrxq_create_cb, mlx5_hrxq_match_cb,
641                 mlx5_hrxq_remove_cb, mlx5_hrxq_clone_cb,
642                 mlx5_hrxq_clone_free_cb);
643         /* Query availability of metadata reg_c's. */
644         if (!priv->sh->metadata_regc_check_flag) {
645                 err = mlx5_flow_discover_mreg_c(eth_dev);
646                 if (err < 0) {
647                         err = -err;
648                         goto error;
649                 }
650         }
651         if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
652                 DRV_LOG(DEBUG,
653                         "port %u extensive metadata register is not supported.",
654                         eth_dev->data->port_id);
655                 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
656                         DRV_LOG(ERR, "metadata mode %u is not supported "
657                                      "(no metadata registers available).",
658                                      priv->config.dv_xmeta_en);
659                         err = ENOTSUP;
660                         goto error;
661                 }
662         }
663         if (sh->devx) {
664                 priv->obj_ops = devx_obj_ops;
665         } else {
666                 DRV_LOG(ERR, "Windows flow must be DevX.");
667                 err = ENOTSUP;
668                 goto error;
669         }
670         mlx5_flow_counter_mode_config(eth_dev);
671         mlx5_queue_counter_id_prepare(eth_dev);
672         return eth_dev;
673 error:
674         if (priv) {
675                 if (priv->mtr_profile_tbl)
676                         mlx5_l3t_destroy(priv->mtr_profile_tbl);
677                 if (own_domain_id)
678                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
679                 mlx5_free(priv);
680                 if (eth_dev != NULL)
681                         eth_dev->data->dev_private = NULL;
682         }
683         if (eth_dev != NULL) {
684                 /* mac_addrs must not be freed alone because part of
685                  * dev_private
686                  **/
687                 eth_dev->data->mac_addrs = NULL;
688                 rte_eth_dev_release_port(eth_dev);
689         }
690         if (sh)
691                 mlx5_free_shared_dev_ctx(sh);
692         MLX5_ASSERT(err > 0);
693         rte_errno = err;
694         return NULL;
695 }
696
697 /**
698  * This function should share events between multiple ports of single IB
699  * device.  Currently it has no support under Windows.
700  *
701  * @param sh
702  *   Pointer to mlx5_dev_ctx_shared object.
703  */
704 void
705 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh)
706 {
707         (void)sh;
708         DRV_LOG(WARNING, "%s: is not supported", __func__);
709 }
710
711 /**
712  * This function should share events between multiple ports of single IB
713  * device.  Currently it has no support under Windows.
714  *
715  * @param dev
716  *   Pointer to mlx5_dev_ctx_shared object.
717  */
718 void
719 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh)
720 {
721         (void)sh;
722         DRV_LOG(WARNING, "%s: is not supported", __func__);
723 }
724
725 /**
726  * Read statistics by a named counter.
727  *
728  * @param[in] priv
729  *   Pointer to the private device data structure.
730  * @param[in] ctr_name
731  *   Pointer to the name of the statistic counter to read
732  * @param[out] stat
733  *   Pointer to read statistic value.
734  * @return
735  *   0 on success and stat is valid, non-zero if failed to read the value
736  *   or counter is not supported.
737  *   rte_errno is set.
738  *
739  */
740 int
741 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
742                       uint64_t *stat)
743 {
744         if (priv->q_counters != NULL && strcmp(ctr_name, "out_of_buffer") == 0)
745                 return mlx5_devx_cmd_queue_counter_query
746                                 (priv->q_counters, 0, (uint32_t *)stat);
747         DRV_LOG(WARNING, "%s: is not supported for the %s counter",
748                 __func__, ctr_name);
749         return -ENOTSUP;
750 }
751
752 /**
753  * Flush device MAC addresses
754  * Currently it has no support under Windows.
755  *
756  * @param dev
757  *   Pointer to Ethernet device structure.
758  *
759  */
760 void
761 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev)
762 {
763         (void)dev;
764         DRV_LOG(WARNING, "%s: is not supported", __func__);
765 }
766
767 /**
768  * Remove a MAC address from device
769  * Currently it has no support under Windows.
770  *
771  * @param dev
772  *   Pointer to Ethernet device structure.
773  * @param index
774  *   MAC address index.
775  */
776 void
777 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
778 {
779         (void)dev;
780         (void)(index);
781         DRV_LOG(WARNING, "%s: is not supported", __func__);
782 }
783
784 /**
785  * Adds a MAC address to the device
786  * Currently it has no support under Windows.
787  *
788  * @param dev
789  *   Pointer to Ethernet device structure.
790  * @param mac_addr
791  *   MAC address to register.
792  * @param index
793  *   MAC address index.
794  *
795  * @return
796  *   0 on success, a negative errno value otherwise
797  */
798 int
799 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
800                      uint32_t index)
801 {
802         (void)index;
803         struct rte_ether_addr lmac;
804
805         if (mlx5_get_mac(dev, &lmac.addr_bytes)) {
806                 DRV_LOG(ERR,
807                         "port %u cannot get MAC address, is mlx5_en"
808                         " loaded? (errno: %s)",
809                         dev->data->port_id, strerror(rte_errno));
810                 return rte_errno;
811         }
812         if (!rte_is_same_ether_addr(&lmac, mac)) {
813                 DRV_LOG(ERR,
814                         "adding new mac address to device is unsupported");
815                 return -ENOTSUP;
816         }
817         return 0;
818 }
819
820 /**
821  * Modify a VF MAC address
822  * Currently it has no support under Windows.
823  *
824  * @param priv
825  *   Pointer to device private data.
826  * @param mac_addr
827  *   MAC address to modify into.
828  * @param iface_idx
829  *   Net device interface index
830  * @param vf_index
831  *   VF index
832  *
833  * @return
834  *   0 on success, a negative errno value otherwise
835  */
836 int
837 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv,
838                            unsigned int iface_idx,
839                            struct rte_ether_addr *mac_addr,
840                            int vf_index)
841 {
842         (void)priv;
843         (void)iface_idx;
844         (void)mac_addr;
845         (void)vf_index;
846         DRV_LOG(WARNING, "%s: is not supported", __func__);
847         return -ENOTSUP;
848 }
849
850 /**
851  * Set device promiscuous mode
852  * Currently it has no support under Windows.
853  *
854  * @param dev
855  *   Pointer to Ethernet device structure.
856  * @param enable
857  *   0 - promiscuous is disabled, otherwise - enabled
858  *
859  * @return
860  *   0 on success, a negative error value otherwise
861  */
862 int
863 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable)
864 {
865         (void)dev;
866         (void)enable;
867         DRV_LOG(WARNING, "%s: is not supported", __func__);
868         return -ENOTSUP;
869 }
870
871 /**
872  * Set device allmulti mode
873  *
874  * @param dev
875  *   Pointer to Ethernet device structure.
876  * @param enable
877  *   0 - all multicase is disabled, otherwise - enabled
878  *
879  * @return
880  *   0 on success, a negative error value otherwise
881  */
882 int
883 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
884 {
885         (void)dev;
886         (void)enable;
887         DRV_LOG(WARNING, "%s: is not supported", __func__);
888         return -ENOTSUP;
889 }
890
891 /**
892  * DPDK callback to register a PCI device.
893  *
894  * This function spawns Ethernet devices out of a given device.
895  *
896  * @param[in] dev
897  *   Pointer to the common device.
898  *
899  * @return
900  *   0 on success, a negative errno value otherwise and rte_errno is set.
901  */
902 int
903 mlx5_os_net_probe(struct mlx5_common_device *cdev)
904 {
905         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(cdev->dev);
906         struct mlx5_dev_spawn_data spawn = {
907                 .pf_bond = -1,
908                 .max_port = 1,
909                 .phys_port = 1,
910                 .phys_dev_name = mlx5_os_get_ctx_device_name(cdev->ctx),
911                 .pci_dev = pci_dev,
912                 .cdev = cdev,
913                 .ifindex = -1, /* Spawn will assign */
914                 .info = (struct mlx5_switch_info){
915                         .name_type = MLX5_PHYS_PORT_NAME_TYPE_UPLINK,
916                 },
917         };
918         struct mlx5_dev_config dev_config = {
919                 .rx_vec_en = 1,
920                 .txq_inline_max = MLX5_ARG_UNSET,
921                 .txq_inline_min = MLX5_ARG_UNSET,
922                 .txq_inline_mpw = MLX5_ARG_UNSET,
923                 .txqs_inline = MLX5_ARG_UNSET,
924                 .mprq = {
925                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
926                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
927                 },
928                 .dv_flow_en = 1,
929                 .log_hp_size = MLX5_ARG_UNSET,
930         };
931         int ret;
932         uint32_t restore;
933
934         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
935                 DRV_LOG(ERR, "Secondary process is not supported on Windows.");
936                 return -ENOTSUP;
937         }
938         ret = mlx5_init_once();
939         if (ret) {
940                 DRV_LOG(ERR, "unable to init PMD global data: %s",
941                         strerror(rte_errno));
942                 return -rte_errno;
943         }
944         /* Device specific configuration. */
945         switch (pci_dev->id.device_id) {
946         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
947         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
948         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
949         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
950         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
951         case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
952         case PCI_DEVICE_ID_MELLANOX_CONNECTXVF:
953                 dev_config.vf = 1;
954                 break;
955         default:
956                 dev_config.vf = 0;
957                 break;
958         }
959         spawn.eth_dev = mlx5_dev_spawn(cdev->dev, &spawn, &dev_config);
960         if (!spawn.eth_dev)
961                 return -rte_errno;
962         restore = spawn.eth_dev->data->dev_flags;
963         rte_eth_copy_pci_info(spawn.eth_dev, pci_dev);
964         /* Restore non-PCI flags cleared by the above call. */
965         spawn.eth_dev->data->dev_flags |= restore;
966         rte_eth_dev_probing_finish(spawn.eth_dev);
967         return 0;
968 }
969
970 /**
971  * Cleanup resources when the last device is closed.
972  */
973 void
974 mlx5_os_net_cleanup(void)
975 {
976 }
977
978 const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops = {0};