net/mlx5: share realtime timestamp configure
[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         struct mlx5_hca_attr *hca_attr = &sh->cdev->config.hca_attr;
272         bool fallback;
273
274 #ifndef HAVE_IBV_DEVX_ASYNC
275         fallback = true;
276 #else
277         fallback = false;
278         if (!sh->cdev->config.devx || !priv->config.dv_flow_en ||
279             !hca_attr->flow_counters_dump ||
280             !(hca_attr->flow_counter_bulk_alloc_bitmap & 0x4) ||
281             (mlx5_flow_dv_discover_counter_offset_support(dev) == -ENOTSUP))
282                 fallback = true;
283 #endif
284         if (fallback)
285                 DRV_LOG(INFO, "Use fall-back DV counter management. Flow "
286                         "counter dump:%d, bulk_alloc_bitmap:0x%hhx.",
287                         hca_attr->flow_counters_dump,
288                         hca_attr->flow_counter_bulk_alloc_bitmap);
289         /* Initialize fallback mode only on the port initializes sh. */
290         if (sh->refcnt == 1)
291                 sh->cmng.counter_fallback = fallback;
292         else if (fallback != sh->cmng.counter_fallback)
293                 DRV_LOG(WARNING, "Port %d in sh has different fallback mode "
294                         "with others:%d.", PORT_ID(priv), fallback);
295 #endif
296 }
297
298 /**
299  * Spawn an Ethernet device from DevX information.
300  *
301  * @param dpdk_dev
302  *   Backing DPDK device.
303  * @param spawn
304  *   Verbs device parameters (name, port, switch_info) to spawn.
305  * @param config
306  *   Device configuration parameters.
307  *
308  * @return
309  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
310  *   is set. The following errors are defined:
311  *
312  *   EEXIST: device is already spawned
313  */
314 static struct rte_eth_dev *
315 mlx5_dev_spawn(struct rte_device *dpdk_dev,
316                struct mlx5_dev_spawn_data *spawn,
317                struct mlx5_dev_config *config)
318 {
319         const struct mlx5_switch_info *switch_info = &spawn->info;
320         struct mlx5_dev_ctx_shared *sh = NULL;
321         struct mlx5_hca_attr *hca_attr;
322         struct rte_eth_dev *eth_dev = NULL;
323         struct mlx5_priv *priv = NULL;
324         int err = 0;
325         struct rte_ether_addr mac;
326         char name[RTE_ETH_NAME_MAX_LEN];
327         int own_domain_id = 0;
328         uint16_t port_id;
329         int i;
330
331         /* Build device name. */
332         strlcpy(name, dpdk_dev->name, sizeof(name));
333         /* check if the device is already spawned */
334         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
335                 rte_errno = EEXIST;
336                 return NULL;
337         }
338         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
339         /* Process parameters. */
340         err = mlx5_args(config, dpdk_dev->devargs);
341         if (err) {
342                 err = rte_errno;
343                 DRV_LOG(ERR, "failed to process device arguments: %s",
344                         strerror(rte_errno));
345                 goto error;
346         }
347         sh = mlx5_alloc_shared_dev_ctx(spawn, config);
348         if (!sh)
349                 return NULL;
350         /* Update final values for devargs before check sibling config. */
351         config->dv_esw_en = 0;
352         if (!config->dv_flow_en) {
353                 DRV_LOG(ERR, "Windows flow mode must be DV flow enable.");
354                 err = ENOTSUP;
355                 goto error;
356         }
357         if (!config->dv_esw_en &&
358             config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
359                 DRV_LOG(WARNING,
360                         "Metadata mode %u is not supported (no E-Switch).",
361                         config->dv_xmeta_en);
362                 config->dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
363         }
364         /* Check sibling device configurations. */
365         err = mlx5_dev_check_sibling_config(sh, config, dpdk_dev);
366         if (err)
367                 goto error;
368         /* Initialize the shutdown event in mlx5_dev_spawn to
369          * support mlx5_is_removed for Windows.
370          */
371         err = mlx5_glue->devx_init_showdown_event(sh->cdev->ctx);
372         if (err) {
373                 DRV_LOG(ERR, "failed to init showdown event: %s",
374                         strerror(errno));
375                 goto error;
376         }
377         DRV_LOG(DEBUG, "MPW isn't supported");
378         config->swp = sh->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 = sh->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->cdev->config.devx) {
478                 hca_attr = &sh->cdev->config.hca_attr;
479                 config->hw_csum = hca_attr->csum_cap;
480                 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
481                         (config->hw_csum ? "" : "not "));
482                 config->hw_vlan_strip = hca_attr->vlan_cap;
483                 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
484                         (config->hw_vlan_strip ? "" : "not "));
485                 config->hw_fcs_strip = hca_attr->scatter_fcs;
486                 mlx5_rt_timestamp_config(sh, config, hca_attr);
487         }
488         if (config->mprq.enabled) {
489                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
490                 config->mprq.enabled = 0;
491         }
492         if (config->max_dump_files_num == 0)
493                 config->max_dump_files_num = 128;
494         eth_dev = rte_eth_dev_allocate(name);
495         if (eth_dev == NULL) {
496                 DRV_LOG(ERR, "can not allocate rte ethdev");
497                 err = ENOMEM;
498                 goto error;
499         }
500         if (priv->representor) {
501                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
502                 eth_dev->data->representor_id = priv->representor_id;
503                 MLX5_ETH_FOREACH_DEV(port_id, dpdk_dev) {
504                         struct mlx5_priv *opriv =
505                                 rte_eth_devices[port_id].data->dev_private;
506                         if (opriv &&
507                             opriv->master &&
508                             opriv->domain_id == priv->domain_id &&
509                             opriv->sh == priv->sh) {
510                                 eth_dev->data->backer_port_id = port_id;
511                                 break;
512                         }
513                 }
514                 if (port_id >= RTE_MAX_ETHPORTS)
515                         eth_dev->data->backer_port_id = eth_dev->data->port_id;
516         }
517         /*
518          * Store associated network device interface index. This index
519          * is permanent throughout the lifetime of device. So, we may store
520          * the ifindex here and use the cached value further.
521          */
522         MLX5_ASSERT(spawn->ifindex);
523         priv->if_index = spawn->ifindex;
524         eth_dev->data->dev_private = priv;
525         priv->dev_data = eth_dev->data;
526         eth_dev->data->mac_addrs = priv->mac;
527         eth_dev->device = dpdk_dev;
528         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
529         /* Configure the first MAC address by default. */
530         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
531                 DRV_LOG(ERR,
532                         "port %u cannot get MAC address, is mlx5_en"
533                         " loaded? (errno: %s).",
534                         eth_dev->data->port_id, strerror(rte_errno));
535                 err = ENODEV;
536                 goto error;
537         }
538         DRV_LOG(INFO,
539                 "port %u MAC address is " RTE_ETHER_ADDR_PRT_FMT,
540                 eth_dev->data->port_id, RTE_ETHER_ADDR_BYTES(&mac));
541 #ifdef RTE_LIBRTE_MLX5_DEBUG
542         {
543                 char ifname[MLX5_NAMESIZE];
544
545                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
546                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
547                                 eth_dev->data->port_id, ifname);
548                 else
549                         DRV_LOG(DEBUG, "port %u ifname is unknown.",
550                                 eth_dev->data->port_id);
551         }
552 #endif
553         /* Get actual MTU if possible. */
554         err = mlx5_get_mtu(eth_dev, &priv->mtu);
555         if (err) {
556                 err = rte_errno;
557                 goto error;
558         }
559         DRV_LOG(DEBUG, "port %u MTU is %u.", eth_dev->data->port_id,
560                 priv->mtu);
561         /* Initialize burst functions to prevent crashes before link-up. */
562         eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy;
563         eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy;
564         eth_dev->dev_ops = &mlx5_dev_ops;
565         eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
566         eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
567         eth_dev->rx_queue_count = mlx5_rx_queue_count;
568         /* Register MAC address. */
569         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
570         priv->ctrl_flows = 0;
571         TAILQ_INIT(&priv->flow_meters);
572         priv->mtr_profile_tbl = mlx5_l3t_create(MLX5_L3T_TYPE_PTR);
573         if (!priv->mtr_profile_tbl)
574                 goto error;
575         /* Bring Ethernet device up. */
576         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up.",
577                 eth_dev->data->port_id);
578         /* nl calls are unsupported - set to -1 not to fail on release */
579         priv->nl_socket_rdma = -1;
580         priv->nl_socket_route = -1;
581         mlx5_set_link_up(eth_dev);
582         /*
583          * Even though the interrupt handler is not installed yet,
584          * interrupts will still trigger on the async_fd from
585          * Verbs context returned by ibv_open_device().
586          */
587         mlx5_link_update(eth_dev, 0);
588         /* Detect minimal data bytes to inline. */
589         mlx5_set_min_inline(spawn, config);
590         /* Store device configuration on private structure. */
591         priv->config = *config;
592         for (i = 0; i < MLX5_FLOW_TYPE_MAXI; i++) {
593                 icfg[i].release_mem_en = !!config->reclaim_mode;
594                 if (config->reclaim_mode)
595                         icfg[i].per_core_cache = 0;
596                 priv->flows[i] = mlx5_ipool_create(&icfg[i]);
597                 if (!priv->flows[i])
598                         goto error;
599         }
600         /* Create context for virtual machine VLAN workaround. */
601         priv->vmwa_context = NULL;
602         if (config->dv_flow_en) {
603                 err = mlx5_alloc_shared_dr(priv);
604                 if (err)
605                         goto error;
606         }
607         /* No supported flow priority number detection. */
608         priv->sh->flow_max_priority = -1;
609         mlx5_set_metadata_mask(eth_dev);
610         if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
611             !priv->sh->dv_regc0_mask) {
612                 DRV_LOG(ERR, "metadata mode %u is not supported "
613                              "(no metadata reg_c[0] is available).",
614                              priv->config.dv_xmeta_en);
615                         err = ENOTSUP;
616                         goto error;
617         }
618         priv->hrxqs = mlx5_list_create("hrxq", eth_dev, true,
619                 mlx5_hrxq_create_cb, mlx5_hrxq_match_cb,
620                 mlx5_hrxq_remove_cb, mlx5_hrxq_clone_cb,
621                 mlx5_hrxq_clone_free_cb);
622         /* Query availability of metadata reg_c's. */
623         if (!priv->sh->metadata_regc_check_flag) {
624                 err = mlx5_flow_discover_mreg_c(eth_dev);
625                 if (err < 0) {
626                         err = -err;
627                         goto error;
628                 }
629         }
630         if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
631                 DRV_LOG(DEBUG,
632                         "port %u extensive metadata register is not supported.",
633                         eth_dev->data->port_id);
634                 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
635                         DRV_LOG(ERR, "metadata mode %u is not supported "
636                                      "(no metadata registers available).",
637                                      priv->config.dv_xmeta_en);
638                         err = ENOTSUP;
639                         goto error;
640                 }
641         }
642         if (sh->cdev->config.devx) {
643                 priv->obj_ops = devx_obj_ops;
644         } else {
645                 DRV_LOG(ERR, "Windows flow must be DevX.");
646                 err = ENOTSUP;
647                 goto error;
648         }
649         mlx5_flow_counter_mode_config(eth_dev);
650         mlx5_queue_counter_id_prepare(eth_dev);
651         return eth_dev;
652 error:
653         if (priv) {
654                 if (priv->mtr_profile_tbl)
655                         mlx5_l3t_destroy(priv->mtr_profile_tbl);
656                 if (own_domain_id)
657                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
658                 mlx5_free(priv);
659                 if (eth_dev != NULL)
660                         eth_dev->data->dev_private = NULL;
661         }
662         if (eth_dev != NULL) {
663                 /* mac_addrs must not be freed alone because part of
664                  * dev_private
665                  **/
666                 eth_dev->data->mac_addrs = NULL;
667                 rte_eth_dev_release_port(eth_dev);
668         }
669         if (sh)
670                 mlx5_free_shared_dev_ctx(sh);
671         MLX5_ASSERT(err > 0);
672         rte_errno = err;
673         return NULL;
674 }
675
676 /**
677  * This function should share events between multiple ports of single IB
678  * device.  Currently it has no support under Windows.
679  *
680  * @param sh
681  *   Pointer to mlx5_dev_ctx_shared object.
682  */
683 void
684 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh)
685 {
686         (void)sh;
687         DRV_LOG(WARNING, "%s: is not supported", __func__);
688 }
689
690 /**
691  * This function should share events between multiple ports of single IB
692  * device.  Currently it has no support under Windows.
693  *
694  * @param dev
695  *   Pointer to mlx5_dev_ctx_shared object.
696  */
697 void
698 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh)
699 {
700         (void)sh;
701         DRV_LOG(WARNING, "%s: is not supported", __func__);
702 }
703
704 /**
705  * Read statistics by a named counter.
706  *
707  * @param[in] priv
708  *   Pointer to the private device data structure.
709  * @param[in] ctr_name
710  *   Pointer to the name of the statistic counter to read
711  * @param[out] stat
712  *   Pointer to read statistic value.
713  * @return
714  *   0 on success and stat is valid, non-zero if failed to read the value
715  *   or counter is not supported.
716  *   rte_errno is set.
717  *
718  */
719 int
720 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
721                       uint64_t *stat)
722 {
723         if (priv->q_counters != NULL && strcmp(ctr_name, "out_of_buffer") == 0)
724                 return mlx5_devx_cmd_queue_counter_query
725                                 (priv->q_counters, 0, (uint32_t *)stat);
726         DRV_LOG(WARNING, "%s: is not supported for the %s counter",
727                 __func__, ctr_name);
728         return -ENOTSUP;
729 }
730
731 /**
732  * Flush device MAC addresses
733  * Currently it has no support under Windows.
734  *
735  * @param dev
736  *   Pointer to Ethernet device structure.
737  *
738  */
739 void
740 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev)
741 {
742         (void)dev;
743         DRV_LOG(WARNING, "%s: is not supported", __func__);
744 }
745
746 /**
747  * Remove a MAC address from device
748  * Currently it has no support under Windows.
749  *
750  * @param dev
751  *   Pointer to Ethernet device structure.
752  * @param index
753  *   MAC address index.
754  */
755 void
756 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
757 {
758         (void)dev;
759         (void)(index);
760         DRV_LOG(WARNING, "%s: is not supported", __func__);
761 }
762
763 /**
764  * Adds a MAC address to the device
765  * Currently it has no support under Windows.
766  *
767  * @param dev
768  *   Pointer to Ethernet device structure.
769  * @param mac_addr
770  *   MAC address to register.
771  * @param index
772  *   MAC address index.
773  *
774  * @return
775  *   0 on success, a negative errno value otherwise
776  */
777 int
778 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
779                      uint32_t index)
780 {
781         (void)index;
782         struct rte_ether_addr lmac;
783
784         if (mlx5_get_mac(dev, &lmac.addr_bytes)) {
785                 DRV_LOG(ERR,
786                         "port %u cannot get MAC address, is mlx5_en"
787                         " loaded? (errno: %s)",
788                         dev->data->port_id, strerror(rte_errno));
789                 return rte_errno;
790         }
791         if (!rte_is_same_ether_addr(&lmac, mac)) {
792                 DRV_LOG(ERR,
793                         "adding new mac address to device is unsupported");
794                 return -ENOTSUP;
795         }
796         return 0;
797 }
798
799 /**
800  * Modify a VF MAC address
801  * Currently it has no support under Windows.
802  *
803  * @param priv
804  *   Pointer to device private data.
805  * @param mac_addr
806  *   MAC address to modify into.
807  * @param iface_idx
808  *   Net device interface index
809  * @param vf_index
810  *   VF index
811  *
812  * @return
813  *   0 on success, a negative errno value otherwise
814  */
815 int
816 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv,
817                            unsigned int iface_idx,
818                            struct rte_ether_addr *mac_addr,
819                            int vf_index)
820 {
821         (void)priv;
822         (void)iface_idx;
823         (void)mac_addr;
824         (void)vf_index;
825         DRV_LOG(WARNING, "%s: is not supported", __func__);
826         return -ENOTSUP;
827 }
828
829 /**
830  * Set device promiscuous mode
831  * Currently it has no support under Windows.
832  *
833  * @param dev
834  *   Pointer to Ethernet device structure.
835  * @param enable
836  *   0 - promiscuous is disabled, otherwise - enabled
837  *
838  * @return
839  *   0 on success, a negative error value otherwise
840  */
841 int
842 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable)
843 {
844         (void)dev;
845         (void)enable;
846         DRV_LOG(WARNING, "%s: is not supported", __func__);
847         return -ENOTSUP;
848 }
849
850 /**
851  * Set device allmulti mode
852  *
853  * @param dev
854  *   Pointer to Ethernet device structure.
855  * @param enable
856  *   0 - all multicase is disabled, otherwise - enabled
857  *
858  * @return
859  *   0 on success, a negative error value otherwise
860  */
861 int
862 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
863 {
864         (void)dev;
865         (void)enable;
866         DRV_LOG(WARNING, "%s: is not supported", __func__);
867         return -ENOTSUP;
868 }
869
870 /**
871  * DPDK callback to register a PCI device.
872  *
873  * This function spawns Ethernet devices out of a given device.
874  *
875  * @param[in] dev
876  *   Pointer to the common device.
877  *
878  * @return
879  *   0 on success, a negative errno value otherwise and rte_errno is set.
880  */
881 int
882 mlx5_os_net_probe(struct mlx5_common_device *cdev)
883 {
884         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(cdev->dev);
885         struct mlx5_dev_spawn_data spawn = {
886                 .pf_bond = -1,
887                 .max_port = 1,
888                 .phys_port = 1,
889                 .phys_dev_name = mlx5_os_get_ctx_device_name(cdev->ctx),
890                 .pci_dev = pci_dev,
891                 .cdev = cdev,
892                 .ifindex = -1, /* Spawn will assign */
893                 .info = (struct mlx5_switch_info){
894                         .name_type = MLX5_PHYS_PORT_NAME_TYPE_UPLINK,
895                 },
896         };
897         struct mlx5_dev_config dev_config = {
898                 .rx_vec_en = 1,
899                 .txq_inline_max = MLX5_ARG_UNSET,
900                 .txq_inline_min = MLX5_ARG_UNSET,
901                 .txq_inline_mpw = MLX5_ARG_UNSET,
902                 .txqs_inline = MLX5_ARG_UNSET,
903                 .mprq = {
904                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
905                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
906                 },
907                 .dv_flow_en = 1,
908                 .log_hp_size = MLX5_ARG_UNSET,
909                 .vf = mlx5_dev_is_vf_pci(pci_dev),
910         };
911         int ret;
912         uint32_t restore;
913
914         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
915                 DRV_LOG(ERR, "Secondary process is not supported on Windows.");
916                 return -ENOTSUP;
917         }
918         ret = mlx5_init_once();
919         if (ret) {
920                 DRV_LOG(ERR, "unable to init PMD global data: %s",
921                         strerror(rte_errno));
922                 return -rte_errno;
923         }
924         spawn.eth_dev = mlx5_dev_spawn(cdev->dev, &spawn, &dev_config);
925         if (!spawn.eth_dev)
926                 return -rte_errno;
927         restore = spawn.eth_dev->data->dev_flags;
928         rte_eth_copy_pci_info(spawn.eth_dev, pci_dev);
929         /* Restore non-PCI flags cleared by the above call. */
930         spawn.eth_dev->data->dev_flags |= restore;
931         rte_eth_dev_probing_finish(spawn.eth_dev);
932         return 0;
933 }
934
935 /**
936  * Cleanup resources when the last device is closed.
937  */
938 void
939 mlx5_os_net_cleanup(void)
940 {
941 }
942
943 const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops = {0};