net/mlx5: fix unsupported offloads disablement
[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_mr.h"
30 #include "mlx5_flow.h"
31 #include "mlx5_devx.h"
32
33 #define MLX5_TAGS_HLIST_ARRAY_SIZE 8192
34
35 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
36
37 /* Spinlock for mlx5_shared_data allocation. */
38 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
39
40 /**
41  * Initialize shared data between primary and secondary process.
42  *
43  * A memzone is reserved by primary process and secondary processes attach to
44  * the memzone.
45  *
46  * @return
47  *   0 on success, a negative errno value otherwise and rte_errno is set.
48  */
49 static int
50 mlx5_init_shared_data(void)
51 {
52         const struct rte_memzone *mz;
53         int ret = 0;
54
55         rte_spinlock_lock(&mlx5_shared_data_lock);
56         if (mlx5_shared_data == NULL) {
57                 /* Allocate shared memory. */
58                 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
59                                          sizeof(*mlx5_shared_data),
60                                          SOCKET_ID_ANY, 0);
61                 if (mz == NULL) {
62                         DRV_LOG(ERR,
63                                 "Cannot allocate mlx5 shared data");
64                         ret = -rte_errno;
65                         goto error;
66                 }
67                 mlx5_shared_data = mz->addr;
68                 memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
69                 rte_spinlock_init(&mlx5_shared_data->lock);
70         }
71 error:
72         rte_spinlock_unlock(&mlx5_shared_data_lock);
73         return ret;
74 }
75
76 /**
77  * PMD global initialization.
78  *
79  * Independent from individual device, this function initializes global
80  * per-PMD data structures distinguishing primary and secondary processes.
81  * Hence, each initialization is called once per a process.
82  *
83  * @return
84  *   0 on success, a negative errno value otherwise and rte_errno is set.
85  */
86 static int
87 mlx5_init_once(void)
88 {
89         if (mlx5_init_shared_data())
90                 return -rte_errno;
91         return 0;
92 }
93
94 /**
95  * Get mlx5 device attributes.
96  *
97  * @param ctx
98  *   Pointer to device context.
99  *
100  * @param device_attr
101  *   Pointer to mlx5 device attributes.
102  *
103  * @return
104  *   0 on success, non zero error number otherwise
105  */
106 int
107 mlx5_os_get_dev_attr(void *ctx, struct mlx5_dev_attr *device_attr)
108 {
109         struct mlx5_context *mlx5_ctx;
110         struct mlx5_hca_attr hca_attr;
111         void *pv_iseg = NULL;
112         u32 cb_iseg = 0;
113         int err = 0;
114
115         if (!ctx)
116                 return -EINVAL;
117         mlx5_ctx = (struct mlx5_context *)ctx;
118         memset(device_attr, 0, sizeof(*device_attr));
119         err = mlx5_devx_cmd_query_hca_attr(mlx5_ctx, &hca_attr);
120         if (err) {
121                 DRV_LOG(ERR, "Failed to get device hca_cap");
122                 return err;
123         }
124         device_attr->max_cq = 1 << hca_attr.log_max_cq;
125         device_attr->max_qp = 1 << hca_attr.log_max_qp;
126         device_attr->max_qp_wr = 1 << hca_attr.log_max_qp_sz;
127         device_attr->max_cqe = 1 << hca_attr.log_max_cq_sz;
128         device_attr->max_mr = 1 << hca_attr.log_max_mrw_sz;
129         device_attr->max_pd = 1 << hca_attr.log_max_pd;
130         device_attr->max_srq = 1 << hca_attr.log_max_srq;
131         device_attr->max_srq_wr = 1 << hca_attr.log_max_srq_sz;
132         if (hca_attr.rss_ind_tbl_cap) {
133                 device_attr->max_rwq_indirection_table_size =
134                         1 << hca_attr.rss_ind_tbl_cap;
135         }
136         pv_iseg = mlx5_glue->query_hca_iseg(mlx5_ctx, &cb_iseg);
137         if (pv_iseg == NULL) {
138                 DRV_LOG(ERR, "Failed to get device hca_iseg");
139                 return errno;
140         }
141         if (!err) {
142                 snprintf(device_attr->fw_ver, 64, "%x.%x.%04x",
143                         MLX5_GET(initial_seg, pv_iseg, fw_rev_major),
144                         MLX5_GET(initial_seg, pv_iseg, fw_rev_minor),
145                         MLX5_GET(initial_seg, pv_iseg, fw_rev_subminor));
146         }
147         return err;
148 }
149
150 /**
151  * Initialize DR related data within private structure.
152  * Routine checks the reference counter and does actual
153  * resources creation/initialization only if counter is zero.
154  *
155  * @param[in] priv
156  *   Pointer to the private device data structure.
157  *
158  * @return
159  *   Zero on success, positive error code otherwise.
160  */
161 static int
162 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
163 {
164         struct mlx5_dev_ctx_shared *sh = priv->sh;
165         int err = 0;
166
167         if (!sh->flow_tbls)
168                 err = mlx5_alloc_table_hash_list(priv);
169         else
170                 DRV_LOG(DEBUG, "sh->flow_tbls[%p] already created, reuse",
171                         (void *)sh->flow_tbls);
172         return err;
173 }
174 /**
175  * Destroy DR related data within private structure.
176  *
177  * @param[in] priv
178  *   Pointer to the private device data structure.
179  */
180 void
181 mlx5_os_free_shared_dr(struct mlx5_priv *priv)
182 {
183         mlx5_free_table_hash_list(priv);
184 }
185
186 /**
187  * Set the completion channel file descriptor interrupt as non-blocking.
188  * Currently it has no support under Windows.
189  *
190  * @param[in] rxq_obj
191  *   Pointer to RQ channel object, which includes the channel fd
192  *
193  * @param[out] fd
194  *   The file descriptor (representing the intetrrupt) used in this channel.
195  *
196  * @return
197  *   0 on successfully setting the fd to non-blocking, non-zero otherwise.
198  */
199 int
200 mlx5_os_set_nonblock_channel_fd(int fd)
201 {
202         (void)fd;
203         DRV_LOG(WARNING, "%s: is not supported", __func__);
204         return -ENOTSUP;
205 }
206
207 /**
208  * Function API open device under Windows
209  *
210  * This function calls the Windows glue APIs to open a device.
211  *
212  * @param[in] spawn
213  *   Pointer to the device attributes (name, port, etc).
214  * @param[out] config
215  *   Pointer to device configuration structure.
216  * @param[out] sh
217  *   Pointer to shared context structure.
218  *
219  * @return
220  *   0 on success, a positive error value otherwise.
221  */
222 int
223 mlx5_os_open_device(const struct mlx5_dev_spawn_data *spawn,
224                  const struct mlx5_dev_config *config,
225                  struct mlx5_dev_ctx_shared *sh)
226 {
227         RTE_SET_USED(config);
228         int err = 0;
229         struct mlx5_context *mlx5_ctx;
230
231         pthread_mutex_init(&sh->txpp.mutex, NULL);
232         /* Set numa node from pci probe */
233         sh->numa_node = spawn->pci_dev->device.numa_node;
234
235         /* Try to open device with DevX */
236         rte_errno = 0;
237         sh->ctx = mlx5_glue->open_device(spawn->phys_dev);
238         if (!sh->ctx) {
239                 DRV_LOG(ERR, "open_device failed");
240                 err = errno;
241                 return err;
242         }
243         sh->devx = 1;
244         mlx5_ctx = (struct mlx5_context *)sh->ctx;
245         err = mlx5_glue->query_device(spawn->phys_dev, &mlx5_ctx->mlx5_dev);
246         if (err)
247                 DRV_LOG(ERR, "Failed to query device context fields.");
248         return err;
249 }
250
251 /**
252  * DV flow counter mode detect and config.
253  *
254  * @param dev
255  *   Pointer to rte_eth_dev structure.
256  *
257  */
258 static void
259 mlx5_flow_counter_mode_config(struct rte_eth_dev *dev __rte_unused)
260 {
261 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
262         struct mlx5_priv *priv = dev->data->dev_private;
263         struct mlx5_dev_ctx_shared *sh = priv->sh;
264         bool fallback;
265
266 #ifndef HAVE_IBV_DEVX_ASYNC
267         fallback = true;
268 #else
269         fallback = false;
270         if (!priv->config.devx || !priv->config.dv_flow_en ||
271             !priv->config.hca_attr.flow_counters_dump ||
272             !(priv->config.hca_attr.flow_counter_bulk_alloc_bitmap & 0x4) ||
273             (mlx5_flow_dv_discover_counter_offset_support(dev) == -ENOTSUP))
274                 fallback = true;
275 #endif
276         if (fallback)
277                 DRV_LOG(INFO, "Use fall-back DV counter management. Flow "
278                         "counter dump:%d, bulk_alloc_bitmap:0x%hhx.",
279                         priv->config.hca_attr.flow_counters_dump,
280                         priv->config.hca_attr.flow_counter_bulk_alloc_bitmap);
281         /* Initialize fallback mode only on the port initializes sh. */
282         if (sh->refcnt == 1)
283                 sh->cmng.counter_fallback = fallback;
284         else if (fallback != sh->cmng.counter_fallback)
285                 DRV_LOG(WARNING, "Port %d in sh has different fallback mode "
286                         "with others:%d.", PORT_ID(priv), fallback);
287 #endif
288 }
289
290 /**
291  * Spawn an Ethernet device from Verbs information.
292  *
293  * @param dpdk_dev
294  *   Backing DPDK device.
295  * @param spawn
296  *   Verbs device parameters (name, port, switch_info) to spawn.
297  * @param config
298  *   Device configuration parameters.
299  *
300  * @return
301  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
302  *   is set. The following errors are defined:
303  *
304  *   EEXIST: device is already spawned
305  */
306 static struct rte_eth_dev *
307 mlx5_dev_spawn(struct rte_device *dpdk_dev,
308                struct mlx5_dev_spawn_data *spawn,
309                struct mlx5_dev_config *config)
310 {
311         const struct mlx5_switch_info *switch_info = &spawn->info;
312         struct mlx5_dev_ctx_shared *sh = NULL;
313         struct mlx5_dev_attr device_attr;
314         struct rte_eth_dev *eth_dev = NULL;
315         struct mlx5_priv *priv = NULL;
316         int err = 0;
317         unsigned int cqe_comp;
318         struct rte_ether_addr mac;
319         char name[RTE_ETH_NAME_MAX_LEN];
320         int own_domain_id = 0;
321         uint16_t port_id;
322
323         /* Build device name. */
324         strlcpy(name, dpdk_dev->name, sizeof(name));
325         /* check if the device is already spawned */
326         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
327                 rte_errno = EEXIST;
328                 return NULL;
329         }
330         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
331         /*
332          * Some parameters are needed in advance to create device context. We
333          * process the devargs here to get ones, and later process devargs
334          * again to override some hardware settings.
335          */
336         err = mlx5_args(config, dpdk_dev->devargs);
337         if (err) {
338                 err = rte_errno;
339                 DRV_LOG(ERR, "failed to process device arguments: %s",
340                         strerror(rte_errno));
341                 goto error;
342         }
343         mlx5_malloc_mem_select(config->sys_mem_en);
344         sh = mlx5_alloc_shared_dev_ctx(spawn, config);
345         if (!sh)
346                 return NULL;
347         config->devx = sh->devx;
348         /* Initialize the shutdown event in mlx5_dev_spawn to
349          * support mlx5_is_removed for Windows.
350          */
351         err = mlx5_glue->devx_init_showdown_event(sh->ctx);
352         if (err) {
353                 DRV_LOG(ERR, "failed to init showdown event: %s",
354                         strerror(errno));
355                 goto error;
356         }
357         DRV_LOG(DEBUG, "MPW isn't supported");
358         mlx5_os_get_dev_attr(sh->ctx, &device_attr);
359         config->swp = 0;
360         config->ind_table_max_size =
361                 sh->device_attr.max_rwq_indirection_table_size;
362         cqe_comp = 0;
363         config->cqe_comp = cqe_comp;
364         DRV_LOG(DEBUG, "tunnel offloading is not supported");
365         config->tunnel_en = 0;
366         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is no supported");
367         config->mpls_en = 0;
368         /* Allocate private eth device data. */
369         priv = mlx5_malloc(MLX5_MEM_ZERO | MLX5_MEM_RTE,
370                            sizeof(*priv),
371                            RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
372         if (priv == NULL) {
373                 DRV_LOG(ERR, "priv allocation failure");
374                 err = ENOMEM;
375                 goto error;
376         }
377         priv->sh = sh;
378         priv->dev_port = spawn->phys_port;
379         priv->pci_dev = spawn->pci_dev;
380         priv->mtu = RTE_ETHER_MTU;
381         priv->mp_id.port_id = port_id;
382         strlcpy(priv->mp_id.name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN);
383         priv->representor = !!switch_info->representor;
384         priv->master = !!switch_info->master;
385         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
386         priv->vport_meta_tag = 0;
387         priv->vport_meta_mask = 0;
388         priv->pf_bond = spawn->pf_bond;
389         priv->vport_id = -1;
390         /* representor_id field keeps the unmodified VF index. */
391         priv->representor_id = -1;
392         /*
393          * Look for sibling devices in order to reuse their switch domain
394          * if any, otherwise allocate one.
395          */
396         MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
397                 const struct mlx5_priv *opriv =
398                         rte_eth_devices[port_id].data->dev_private;
399
400                 if (!opriv ||
401                     opriv->sh != priv->sh ||
402                         opriv->domain_id ==
403                         RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
404                         continue;
405                 priv->domain_id = opriv->domain_id;
406                 break;
407         }
408         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
409                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
410                 if (err) {
411                         err = rte_errno;
412                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
413                                 strerror(rte_errno));
414                         goto error;
415                 }
416                 own_domain_id = 1;
417         }
418         /* Override some values set by hardware configuration. */
419         mlx5_args(config, dpdk_dev->devargs);
420         err = mlx5_dev_check_sibling_config(priv, config);
421         if (err)
422                 goto error;
423         DRV_LOG(DEBUG, "checksum offloading is %ssupported",
424                 (config->hw_csum ? "" : "not "));
425         DRV_LOG(DEBUG, "counters are not supported");
426         config->ind_table_max_size =
427                 sh->device_attr.max_rwq_indirection_table_size;
428         /*
429          * Remove this check once DPDK supports larger/variable
430          * indirection tables.
431          */
432         if (config->ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
433                 config->ind_table_max_size = ETH_RSS_RETA_SIZE_512;
434         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
435                 config->ind_table_max_size);
436         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
437                 (config->hw_vlan_strip ? "" : "not "));
438         if (config->hw_padding) {
439                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
440                 config->hw_padding = 0;
441         }
442         if (config->tso)
443                 config->tso_max_payload_sz = sh->device_attr.max_tso;
444         DRV_LOG(DEBUG, "%sMPS is %s.",
445                 config->mps == MLX5_MPW_ENHANCED ? "enhanced " :
446                 config->mps == MLX5_MPW ? "legacy " : "",
447                 config->mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
448         if (config->cqe_comp && !cqe_comp) {
449                 DRV_LOG(WARNING, "Rx CQE compression isn't supported.");
450                 config->cqe_comp = 0;
451         }
452         if (config->devx) {
453                 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config->hca_attr);
454                 if (err) {
455                         err = -err;
456                         goto error;
457                 }
458                 /* Check relax ordering support. */
459                 sh->cmng.relaxed_ordering_read = 0;
460                 sh->cmng.relaxed_ordering_write = 0;
461                 if (!haswell_broadwell_cpu) {
462                         sh->cmng.relaxed_ordering_write =
463                                 config->hca_attr.relaxed_ordering_write;
464                         sh->cmng.relaxed_ordering_read =
465                                 config->hca_attr.relaxed_ordering_read;
466                 }
467         }
468         if (config->devx) {
469                 uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)];
470
471                 err = config->hca_attr.access_register_user ?
472                         mlx5_devx_cmd_register_read
473                                 (sh->ctx, MLX5_REGISTER_ID_MTUTC, 0,
474                                 reg, MLX5_ST_SZ_DW(register_mtutc)) : ENOTSUP;
475                 if (!err) {
476                         uint32_t ts_mode;
477
478                         /* MTUTC register is read successfully. */
479                         ts_mode = MLX5_GET(register_mtutc, reg,
480                                            time_stamp_mode);
481                         if (ts_mode == MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME)
482                                 config->rt_timestamp = 1;
483                 } else {
484                         /* Kernel does not support register reading. */
485                         if (config->hca_attr.dev_freq_khz ==
486                                                  (NS_PER_S / MS_PER_S))
487                                 config->rt_timestamp = 1;
488                 }
489                 sh->rq_ts_format = config->hca_attr.rq_ts_format;
490                 sh->sq_ts_format = config->hca_attr.sq_ts_format;
491                 sh->qp_ts_format = config->hca_attr.qp_ts_format;
492         }
493         if (config->mprq.enabled) {
494                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
495                 config->mprq.enabled = 0;
496         }
497         if (config->max_dump_files_num == 0)
498                 config->max_dump_files_num = 128;
499         eth_dev = rte_eth_dev_allocate(name);
500         if (eth_dev == NULL) {
501                 DRV_LOG(ERR, "can not allocate rte ethdev");
502                 err = ENOMEM;
503                 goto error;
504         }
505         if (priv->representor) {
506                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
507                 eth_dev->data->representor_id = priv->representor_id;
508         }
509         /*
510          * Store associated network device interface index. This index
511          * is permanent throughout the lifetime of device. So, we may store
512          * the ifindex here and use the cached value further.
513          */
514         MLX5_ASSERT(spawn->ifindex);
515         priv->if_index = spawn->ifindex;
516         eth_dev->data->dev_private = priv;
517         priv->dev_data = eth_dev->data;
518         eth_dev->data->mac_addrs = priv->mac;
519         eth_dev->device = dpdk_dev;
520         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
521         /* Configure the first MAC address by default. */
522         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
523                 DRV_LOG(ERR,
524                         "port %u cannot get MAC address, is mlx5_en"
525                         " loaded? (errno: %s).",
526                         eth_dev->data->port_id, strerror(rte_errno));
527                 err = ENODEV;
528                 goto error;
529         }
530         DRV_LOG(INFO,
531                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
532                 eth_dev->data->port_id,
533                 mac.addr_bytes[0], mac.addr_bytes[1],
534                 mac.addr_bytes[2], mac.addr_bytes[3],
535                 mac.addr_bytes[4], mac.addr_bytes[5]);
536 #ifdef RTE_LIBRTE_MLX5_DEBUG
537         {
538                 char ifname[MLX5_NAMESIZE];
539
540                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
541                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
542                                 eth_dev->data->port_id, ifname);
543                 else
544                         DRV_LOG(DEBUG, "port %u ifname is unknown.",
545                                 eth_dev->data->port_id);
546         }
547 #endif
548         /* Get actual MTU if possible. */
549         err = mlx5_get_mtu(eth_dev, &priv->mtu);
550         if (err) {
551                 err = rte_errno;
552                 goto error;
553         }
554         DRV_LOG(DEBUG, "port %u MTU is %u.", eth_dev->data->port_id,
555                 priv->mtu);
556         /* Initialize burst functions to prevent crashes before link-up. */
557         eth_dev->rx_pkt_burst = removed_rx_burst;
558         eth_dev->tx_pkt_burst = removed_tx_burst;
559         eth_dev->dev_ops = &mlx5_dev_ops;
560         eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
561         eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
562         eth_dev->rx_queue_count = mlx5_rx_queue_count;
563         /* Register MAC address. */
564         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
565         priv->flows = 0;
566         priv->ctrl_flows = 0;
567         TAILQ_INIT(&priv->flow_meters);
568         TAILQ_INIT(&priv->flow_meter_profiles);
569         /* Bring Ethernet device up. */
570         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up.",
571                 eth_dev->data->port_id);
572         /* nl calls are unsupported - set to -1 not to fail on release */
573         priv->nl_socket_rdma = -1;
574         priv->nl_socket_route = -1;
575         mlx5_set_link_up(eth_dev);
576         /*
577          * Even though the interrupt handler is not installed yet,
578          * interrupts will still trigger on the async_fd from
579          * Verbs context returned by ibv_open_device().
580          */
581         mlx5_link_update(eth_dev, 0);
582         config->dv_esw_en = 0;
583         /* Detect minimal data bytes to inline. */
584         mlx5_set_min_inline(spawn, config);
585         /* Store device configuration on private structure. */
586         priv->config = *config;
587         /* Create context for virtual machine VLAN workaround. */
588         priv->vmwa_context = NULL;
589         if (config->dv_flow_en) {
590                 err = mlx5_alloc_shared_dr(priv);
591                 if (err)
592                         goto error;
593         }
594         /* No supported flow priority number detection. */
595         priv->config.flow_prio = -1;
596         if (!priv->config.dv_esw_en &&
597             priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
598                 DRV_LOG(WARNING, "metadata mode %u is not supported "
599                                  "(no E-Switch)", priv->config.dv_xmeta_en);
600                 priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
601         }
602         mlx5_set_metadata_mask(eth_dev);
603         if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
604             !priv->sh->dv_regc0_mask) {
605                 DRV_LOG(ERR, "metadata mode %u is not supported "
606                              "(no metadata reg_c[0] is available).",
607                              priv->config.dv_xmeta_en);
608                         err = ENOTSUP;
609                         goto error;
610         }
611         mlx5_cache_list_init(&priv->hrxqs, "hrxq", 0, eth_dev,
612                              mlx5_hrxq_create_cb,
613                              mlx5_hrxq_match_cb,
614                              mlx5_hrxq_remove_cb);
615         /* Query availability of metadata reg_c's. */
616         err = mlx5_flow_discover_mreg_c(eth_dev);
617         if (err < 0) {
618                 err = -err;
619                 goto error;
620         }
621         if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
622                 DRV_LOG(DEBUG,
623                         "port %u extensive metadata register is not supported.",
624                         eth_dev->data->port_id);
625                 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
626                         DRV_LOG(ERR, "metadata mode %u is not supported "
627                                      "(no metadata registers available).",
628                                      priv->config.dv_xmeta_en);
629                         err = ENOTSUP;
630                         goto error;
631                 }
632         }
633         if (config->devx && config->dv_flow_en) {
634                 priv->obj_ops = devx_obj_ops;
635         } else {
636                 DRV_LOG(ERR, "Flow mode %u is not supported "
637                                 "(Windows flow must be DevX with DV flow enabled).",
638                                 priv->config.dv_flow_en);
639                 err = ENOTSUP;
640                 goto error;
641         }
642         mlx5_flow_counter_mode_config(eth_dev);
643         return eth_dev;
644 error:
645         if (priv) {
646                 if (own_domain_id)
647                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
648                 mlx5_free(priv);
649                 if (eth_dev != NULL)
650                         eth_dev->data->dev_private = NULL;
651         }
652         if (eth_dev != NULL) {
653                 /* mac_addrs must not be freed alone because part of
654                  * dev_private
655                  **/
656                 eth_dev->data->mac_addrs = NULL;
657                 rte_eth_dev_release_port(eth_dev);
658         }
659         if (sh)
660                 mlx5_free_shared_dev_ctx(sh);
661         MLX5_ASSERT(err > 0);
662         rte_errno = err;
663         return NULL;
664 }
665
666 /**
667  * This function should share events between multiple ports of single IB
668  * device.  Currently it has no support under Windows.
669  *
670  * @param sh
671  *   Pointer to mlx5_dev_ctx_shared object.
672  */
673 void
674 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh)
675 {
676         (void)sh;
677         DRV_LOG(WARNING, "%s: is not supported", __func__);
678 }
679
680 /**
681  * This function should share events between multiple ports of single IB
682  * device.  Currently it has no support under Windows.
683  *
684  * @param dev
685  *   Pointer to mlx5_dev_ctx_shared object.
686  */
687 void
688 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh)
689 {
690         (void)sh;
691         DRV_LOG(WARNING, "%s: is not supported", __func__);
692 }
693
694 /**
695  * Read statistics by a named counter.
696  *
697  * @param[in] priv
698  *   Pointer to the private device data structure.
699  * @param[in] ctr_name
700  *   Pointer to the name of the statistic counter to read
701  * @param[out] stat
702  *   Pointer to read statistic value.
703  * @return
704  *   0 on success and stat is valud, 1 if failed to read the value
705  *   rte_errno is set.
706  *
707  */
708 int
709 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
710                       uint64_t *stat)
711 {
712         RTE_SET_USED(priv);
713         RTE_SET_USED(ctr_name);
714         RTE_SET_USED(stat);
715         DRV_LOG(WARNING, "%s: is not supported", __func__);
716         return -ENOTSUP;
717 }
718
719 /**
720  * Flush device MAC addresses
721  * Currently it has no support under Windows.
722  *
723  * @param dev
724  *   Pointer to Ethernet device structure.
725  *
726  */
727 void
728 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev)
729 {
730         (void)dev;
731         DRV_LOG(WARNING, "%s: is not supported", __func__);
732 }
733
734 /**
735  * Remove a MAC address from device
736  * Currently it has no support under Windows.
737  *
738  * @param dev
739  *   Pointer to Ethernet device structure.
740  * @param index
741  *   MAC address index.
742  */
743 void
744 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
745 {
746         (void)dev;
747         (void)(index);
748         DRV_LOG(WARNING, "%s: is not supported", __func__);
749 }
750
751 /**
752  * Adds a MAC address to the device
753  * Currently it has no support under Windows.
754  *
755  * @param dev
756  *   Pointer to Ethernet device structure.
757  * @param mac_addr
758  *   MAC address to register.
759  * @param index
760  *   MAC address index.
761  *
762  * @return
763  *   0 on success, a negative errno value otherwise
764  */
765 int
766 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
767                      uint32_t index)
768 {
769         (void)index;
770         struct rte_ether_addr lmac;
771
772         if (mlx5_get_mac(dev, &lmac.addr_bytes)) {
773                 DRV_LOG(ERR,
774                         "port %u cannot get MAC address, is mlx5_en"
775                         " loaded? (errno: %s)",
776                         dev->data->port_id, strerror(rte_errno));
777                 return rte_errno;
778         }
779         if (!rte_is_same_ether_addr(&lmac, mac)) {
780                 DRV_LOG(ERR,
781                         "adding new mac address to device is unsupported");
782                 return -ENOTSUP;
783         }
784         return 0;
785 }
786
787 /**
788  * Modify a VF MAC address
789  * Currently it has no support under Windows.
790  *
791  * @param priv
792  *   Pointer to device private data.
793  * @param mac_addr
794  *   MAC address to modify into.
795  * @param iface_idx
796  *   Net device interface index
797  * @param vf_index
798  *   VF index
799  *
800  * @return
801  *   0 on success, a negative errno value otherwise
802  */
803 int
804 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv,
805                            unsigned int iface_idx,
806                            struct rte_ether_addr *mac_addr,
807                            int vf_index)
808 {
809         (void)priv;
810         (void)iface_idx;
811         (void)mac_addr;
812         (void)vf_index;
813         DRV_LOG(WARNING, "%s: is not supported", __func__);
814         return -ENOTSUP;
815 }
816
817 /**
818  * Set device promiscuous mode
819  * Currently it has no support under Windows.
820  *
821  * @param dev
822  *   Pointer to Ethernet device structure.
823  * @param enable
824  *   0 - promiscuous is disabled, otherwise - enabled
825  *
826  * @return
827  *   0 on success, a negative error value otherwise
828  */
829 int
830 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable)
831 {
832         (void)dev;
833         (void)enable;
834         DRV_LOG(WARNING, "%s: is not supported", __func__);
835         return -ENOTSUP;
836 }
837
838 /**
839  * Set device allmulti mode
840  *
841  * @param dev
842  *   Pointer to Ethernet device structure.
843  * @param enable
844  *   0 - all multicase is disabled, otherwise - enabled
845  *
846  * @return
847  *   0 on success, a negative error value otherwise
848  */
849 int
850 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
851 {
852         (void)dev;
853         (void)enable;
854         DRV_LOG(WARNING, "%s: is not supported", __func__);
855         return -ENOTSUP;
856 }
857
858 /**
859  * Detect if a devx_device_bdf object has identical DBDF values to the
860  * rte_pci_addr found in bus/pci probing
861  *
862  * @param[in] devx_bdf
863  *   Pointer to the devx_device_bdf structure.
864  * @param[in] addr
865  *   Pointer to the rte_pci_addr structure.
866  *
867  * @return
868  *   1 on Device match, 0 on mismatch.
869  */
870 static int
871 mlx5_match_devx_bdf_to_addr(struct devx_device_bdf *devx_bdf,
872                             struct rte_pci_addr *addr)
873 {
874         if (addr->domain != (devx_bdf->bus_id >> 8) ||
875             addr->bus != (devx_bdf->bus_id & 0xff) ||
876             addr->devid != devx_bdf->dev_id ||
877             addr->function != devx_bdf->fnc_id) {
878                 return 0;
879         }
880         return 1;
881 }
882
883 /**
884  * Detect if a devx_device_bdf object matches the rte_pci_addr
885  * found in bus/pci probing
886  * Compare both the Native/PF BDF and the raw_bdf representing a VF BDF.
887  *
888  * @param[in] devx_bdf
889  *   Pointer to the devx_device_bdf structure.
890  * @param[in] addr
891  *   Pointer to the rte_pci_addr structure.
892  *
893  * @return
894  *   1 on Device match, 0 on mismatch, rte_errno code on failure.
895  */
896 static int
897 mlx5_match_devx_devices_to_addr(struct devx_device_bdf *devx_bdf,
898                                 struct rte_pci_addr *addr)
899 {
900         int err;
901         struct devx_device mlx5_dev;
902
903         if (mlx5_match_devx_bdf_to_addr(devx_bdf, addr))
904                 return 1;
905         /**
906          * Didn't match on Native/PF BDF, could still
907          * Match a VF BDF, check it next
908          */
909         err = mlx5_glue->query_device(devx_bdf, &mlx5_dev);
910         if (err) {
911                 DRV_LOG(ERR, "query_device failed");
912                 rte_errno = err;
913                 return rte_errno;
914         }
915         if (mlx5_match_devx_bdf_to_addr(&mlx5_dev.raw_bdf, addr))
916                 return 1;
917         return 0;
918 }
919
920 /**
921  * DPDK callback to register a PCI device.
922  *
923  * This function spawns Ethernet devices out of a given PCI device.
924  *
925  * @param[in] pci_drv
926  *   PCI driver structure (mlx5_driver).
927  * @param[in] pci_dev
928  *   PCI device information.
929  *
930  * @return
931  *   0 on success, a negative errno value otherwise and rte_errno is set.
932  */
933 int
934 mlx5_os_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
935                   struct rte_pci_device *pci_dev)
936 {
937         struct devx_device_bdf *devx_bdf_devs, *orig_devx_bdf_devs;
938         /*
939          * Number of found IB Devices matching with requested PCI BDF.
940          * nd != 1 means there are multiple IB devices over the same
941          * PCI device and we have representors and master.
942          */
943         unsigned int nd = 0;
944         /*
945          * Number of found IB device Ports. nd = 1 and np = 1..n means
946          * we have the single multiport IB device, and there may be
947          * representors attached to some of found ports.
948          * Currently not supported.
949          * unsigned int np = 0;
950          */
951
952         /*
953          * Number of DPDK ethernet devices to Spawn - either over
954          * multiple IB devices or multiple ports of single IB device.
955          * Actually this is the number of iterations to spawn.
956          */
957         unsigned int ns = 0;
958         /*
959          * Bonding device
960          *   < 0 - no bonding device (single one)
961          *  >= 0 - bonding device (value is slave PF index)
962          */
963         int bd = -1;
964         struct mlx5_dev_spawn_data *list = NULL;
965         struct mlx5_dev_config dev_config;
966         unsigned int dev_config_vf;
967         int ret, err;
968         uint32_t restore;
969
970         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
971                 DRV_LOG(ERR, "Secondary process is not supported on Windows.");
972                 return -ENOTSUP;
973         }
974         ret = mlx5_init_once();
975         if (ret) {
976                 DRV_LOG(ERR, "unable to init PMD global data: %s",
977                         strerror(rte_errno));
978                 return -rte_errno;
979         }
980         errno = 0;
981         devx_bdf_devs = mlx5_glue->get_device_list(&ret);
982         orig_devx_bdf_devs = devx_bdf_devs;
983         if (!devx_bdf_devs) {
984                 rte_errno = errno ? errno : ENOSYS;
985                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
986                 return -rte_errno;
987         }
988         /*
989          * First scan the list of all Infiniband devices to find
990          * matching ones, gathering into the list.
991          */
992         struct devx_device_bdf *devx_bdf_match[ret + 1];
993
994         while (ret-- > 0) {
995                 err = mlx5_match_devx_devices_to_addr(devx_bdf_devs,
996                     &pci_dev->addr);
997                 if (!err) {
998                         devx_bdf_devs++;
999                         continue;
1000                 }
1001                 if (err != 1) {
1002                         ret = -err;
1003                         goto exit;
1004                 }
1005                 devx_bdf_match[nd++] = devx_bdf_devs;
1006         }
1007         devx_bdf_match[nd] = NULL;
1008         if (!nd) {
1009                 /* No device matches, just complain and bail out. */
1010                 DRV_LOG(WARNING,
1011                         "no DevX device matches PCI device " PCI_PRI_FMT ","
1012                         " is DevX Configured?",
1013                         pci_dev->addr.domain, pci_dev->addr.bus,
1014                         pci_dev->addr.devid, pci_dev->addr.function);
1015                 rte_errno = ENOENT;
1016                 ret = -rte_errno;
1017                 goto exit;
1018         }
1019         /*
1020          * Now we can determine the maximal
1021          * amount of devices to be spawned.
1022          */
1023         list = mlx5_malloc(MLX5_MEM_ZERO,
1024                            sizeof(struct mlx5_dev_spawn_data),
1025                            RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
1026         if (!list) {
1027                 DRV_LOG(ERR, "spawn data array allocation failure");
1028                 rte_errno = ENOMEM;
1029                 ret = -rte_errno;
1030                 goto exit;
1031         }
1032         memset(&list[ns].info, 0, sizeof(list[ns].info));
1033         list[ns].max_port = 1;
1034         list[ns].phys_port = 1;
1035         list[ns].phys_dev = devx_bdf_match[ns];
1036         list[ns].eth_dev = NULL;
1037         list[ns].pci_dev = pci_dev;
1038         list[ns].pf_bond = bd;
1039         list[ns].ifindex = -1; /* Spawn will assign */
1040         list[ns].info =
1041                 (struct mlx5_switch_info){
1042                         .master = 0,
1043                         .representor = 0,
1044                         .name_type = MLX5_PHYS_PORT_NAME_TYPE_UPLINK,
1045                         .port_name = 0,
1046                         .switch_id = 0,
1047                 };
1048         /* Device specific configuration. */
1049         switch (pci_dev->id.device_id) {
1050         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1051         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1052         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1053         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1054         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
1055         case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
1056         case PCI_DEVICE_ID_MELLANOX_CONNECTXVF:
1057                 dev_config_vf = 1;
1058                 break;
1059         default:
1060                 dev_config_vf = 0;
1061                 break;
1062         }
1063         /* Default configuration. */
1064         memset(&dev_config, 0, sizeof(struct mlx5_dev_config));
1065         dev_config.vf = dev_config_vf;
1066         dev_config.mps = 0;
1067         dev_config.dbnc = MLX5_ARG_UNSET;
1068         dev_config.rx_vec_en = 1;
1069         dev_config.txq_inline_max = MLX5_ARG_UNSET;
1070         dev_config.txq_inline_min = MLX5_ARG_UNSET;
1071         dev_config.txq_inline_mpw = MLX5_ARG_UNSET;
1072         dev_config.txqs_inline = MLX5_ARG_UNSET;
1073         dev_config.vf_nl_en = 0;
1074         dev_config.mr_ext_memseg_en = 1;
1075         dev_config.mprq.max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN;
1076         dev_config.mprq.min_rxqs_num = MLX5_MPRQ_MIN_RXQS;
1077         dev_config.dv_esw_en = 0;
1078         dev_config.dv_flow_en = 1;
1079         dev_config.decap_en = 0;
1080         dev_config.log_hp_size = MLX5_ARG_UNSET;
1081         list[ns].eth_dev = mlx5_dev_spawn(&pci_dev->device,
1082                                           &list[ns],
1083                                           &dev_config);
1084         if (!list[ns].eth_dev)
1085                 goto exit;
1086         restore = list[ns].eth_dev->data->dev_flags;
1087         rte_eth_copy_pci_info(list[ns].eth_dev, pci_dev);
1088         /* Restore non-PCI flags cleared by the above call. */
1089         list[ns].eth_dev->data->dev_flags |= restore;
1090         rte_eth_dev_probing_finish(list[ns].eth_dev);
1091         ret = 0;
1092 exit:
1093         /*
1094          * Do the routine cleanup:
1095          * - free allocated spawn data array
1096          * - free the device list
1097          */
1098         if (list)
1099                 mlx5_free(list);
1100         MLX5_ASSERT(orig_devx_bdf_devs);
1101         mlx5_glue->free_device_list(orig_devx_bdf_devs);
1102         return ret;
1103 }
1104
1105 /**
1106  * Set the reg_mr and dereg_mr call backs
1107  *
1108  * @param reg_mr_cb[out]
1109  *   Pointer to reg_mr func
1110  * @param dereg_mr_cb[out]
1111  *   Pointer to dereg_mr func
1112  *
1113  */
1114 void
1115 mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb,
1116                       mlx5_dereg_mr_t *dereg_mr_cb)
1117 {
1118         *reg_mr_cb = mlx5_os_reg_mr;
1119         *dereg_mr_cb = mlx5_os_dereg_mr;
1120 }
1121
1122 /**
1123  * Extract pdn of PD object using DevX
1124  *
1125  * @param[in] pd
1126  *   Pointer to the DevX PD object.
1127  * @param[out] pdn
1128  *   Pointer to the PD object number variable.
1129  *
1130  * @return
1131  *   0 on success, error value otherwise.
1132  */
1133 int
1134 mlx5_os_get_pdn(void *pd, uint32_t *pdn)
1135 {
1136         if (!pd)
1137                 return -EINVAL;
1138
1139         *pdn = ((struct mlx5_pd *)pd)->pdn;
1140         return 0;
1141 }
1142
1143 const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops = {0};