common/mlx5: add per-lcore sharing flag in object list
[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, "counters are not supported");
424         config->ind_table_max_size =
425                 sh->device_attr.max_rwq_indirection_table_size;
426         /*
427          * Remove this check once DPDK supports larger/variable
428          * indirection tables.
429          */
430         if (config->ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
431                 config->ind_table_max_size = ETH_RSS_RETA_SIZE_512;
432         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
433                 config->ind_table_max_size);
434         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
435                 (config->hw_vlan_strip ? "" : "not "));
436         if (config->hw_padding) {
437                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
438                 config->hw_padding = 0;
439         }
440         if (config->tso)
441                 config->tso_max_payload_sz = sh->device_attr.max_tso;
442         DRV_LOG(DEBUG, "%sMPS is %s.",
443                 config->mps == MLX5_MPW_ENHANCED ? "enhanced " :
444                 config->mps == MLX5_MPW ? "legacy " : "",
445                 config->mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
446         if (config->cqe_comp && !cqe_comp) {
447                 DRV_LOG(WARNING, "Rx CQE compression isn't supported.");
448                 config->cqe_comp = 0;
449         }
450         if (config->devx) {
451                 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config->hca_attr);
452                 if (err) {
453                         err = -err;
454                         goto error;
455                 }
456                 /* Check relax ordering support. */
457                 sh->cmng.relaxed_ordering_read = 0;
458                 sh->cmng.relaxed_ordering_write = 0;
459                 if (!haswell_broadwell_cpu) {
460                         sh->cmng.relaxed_ordering_write =
461                                 config->hca_attr.relaxed_ordering_write;
462                         sh->cmng.relaxed_ordering_read =
463                                 config->hca_attr.relaxed_ordering_read;
464                 }
465                 config->hw_csum = config->hca_attr.csum_cap;
466                 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
467                     (config->hw_csum ? "" : "not "));
468         }
469         if (config->devx) {
470                 uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)];
471
472                 err = config->hca_attr.access_register_user ?
473                         mlx5_devx_cmd_register_read
474                                 (sh->ctx, MLX5_REGISTER_ID_MTUTC, 0,
475                                 reg, MLX5_ST_SZ_DW(register_mtutc)) : ENOTSUP;
476                 if (!err) {
477                         uint32_t ts_mode;
478
479                         /* MTUTC register is read successfully. */
480                         ts_mode = MLX5_GET(register_mtutc, reg,
481                                            time_stamp_mode);
482                         if (ts_mode == MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME)
483                                 config->rt_timestamp = 1;
484                 } else {
485                         /* Kernel does not support register reading. */
486                         if (config->hca_attr.dev_freq_khz ==
487                                                  (NS_PER_S / MS_PER_S))
488                                 config->rt_timestamp = 1;
489                 }
490                 sh->rq_ts_format = config->hca_attr.rq_ts_format;
491                 sh->sq_ts_format = config->hca_attr.sq_ts_format;
492                 sh->qp_ts_format = config->hca_attr.qp_ts_format;
493         }
494         if (config->mprq.enabled) {
495                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
496                 config->mprq.enabled = 0;
497         }
498         if (config->max_dump_files_num == 0)
499                 config->max_dump_files_num = 128;
500         eth_dev = rte_eth_dev_allocate(name);
501         if (eth_dev == NULL) {
502                 DRV_LOG(ERR, "can not allocate rte ethdev");
503                 err = ENOMEM;
504                 goto error;
505         }
506         if (priv->representor) {
507                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
508                 eth_dev->data->representor_id = priv->representor_id;
509         }
510         /*
511          * Store associated network device interface index. This index
512          * is permanent throughout the lifetime of device. So, we may store
513          * the ifindex here and use the cached value further.
514          */
515         MLX5_ASSERT(spawn->ifindex);
516         priv->if_index = spawn->ifindex;
517         eth_dev->data->dev_private = priv;
518         priv->dev_data = eth_dev->data;
519         eth_dev->data->mac_addrs = priv->mac;
520         eth_dev->device = dpdk_dev;
521         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
522         /* Configure the first MAC address by default. */
523         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
524                 DRV_LOG(ERR,
525                         "port %u cannot get MAC address, is mlx5_en"
526                         " loaded? (errno: %s).",
527                         eth_dev->data->port_id, strerror(rte_errno));
528                 err = ENODEV;
529                 goto error;
530         }
531         DRV_LOG(INFO,
532                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
533                 eth_dev->data->port_id,
534                 mac.addr_bytes[0], mac.addr_bytes[1],
535                 mac.addr_bytes[2], mac.addr_bytes[3],
536                 mac.addr_bytes[4], mac.addr_bytes[5]);
537 #ifdef RTE_LIBRTE_MLX5_DEBUG
538         {
539                 char ifname[MLX5_NAMESIZE];
540
541                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
542                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
543                                 eth_dev->data->port_id, ifname);
544                 else
545                         DRV_LOG(DEBUG, "port %u ifname is unknown.",
546                                 eth_dev->data->port_id);
547         }
548 #endif
549         /* Get actual MTU if possible. */
550         err = mlx5_get_mtu(eth_dev, &priv->mtu);
551         if (err) {
552                 err = rte_errno;
553                 goto error;
554         }
555         DRV_LOG(DEBUG, "port %u MTU is %u.", eth_dev->data->port_id,
556                 priv->mtu);
557         /* Initialize burst functions to prevent crashes before link-up. */
558         eth_dev->rx_pkt_burst = removed_rx_burst;
559         eth_dev->tx_pkt_burst = removed_tx_burst;
560         eth_dev->dev_ops = &mlx5_dev_ops;
561         eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
562         eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
563         eth_dev->rx_queue_count = mlx5_rx_queue_count;
564         /* Register MAC address. */
565         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
566         priv->ctrl_flows = 0;
567         TAILQ_INIT(&priv->flow_meters);
568         priv->mtr_profile_tbl = mlx5_l3t_create(MLX5_L3T_TYPE_PTR);
569         if (!priv->mtr_profile_tbl)
570                 goto error;
571         /* Bring Ethernet device up. */
572         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up.",
573                 eth_dev->data->port_id);
574         /* nl calls are unsupported - set to -1 not to fail on release */
575         priv->nl_socket_rdma = -1;
576         priv->nl_socket_route = -1;
577         mlx5_set_link_up(eth_dev);
578         /*
579          * Even though the interrupt handler is not installed yet,
580          * interrupts will still trigger on the async_fd from
581          * Verbs context returned by ibv_open_device().
582          */
583         mlx5_link_update(eth_dev, 0);
584         config->dv_esw_en = 0;
585         /* Detect minimal data bytes to inline. */
586         mlx5_set_min_inline(spawn, config);
587         /* Store device configuration on private structure. */
588         priv->config = *config;
589         /* Create context for virtual machine VLAN workaround. */
590         priv->vmwa_context = NULL;
591         if (config->dv_flow_en) {
592                 err = mlx5_alloc_shared_dr(priv);
593                 if (err)
594                         goto error;
595         }
596         /* No supported flow priority number detection. */
597         priv->config.flow_prio = -1;
598         if (!priv->config.dv_esw_en &&
599             priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
600                 DRV_LOG(WARNING, "metadata mode %u is not supported "
601                                  "(no E-Switch)", priv->config.dv_xmeta_en);
602                 priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
603         }
604         mlx5_set_metadata_mask(eth_dev);
605         if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
606             !priv->sh->dv_regc0_mask) {
607                 DRV_LOG(ERR, "metadata mode %u is not supported "
608                              "(no metadata reg_c[0] is available).",
609                              priv->config.dv_xmeta_en);
610                         err = ENOTSUP;
611                         goto error;
612         }
613         priv->hrxqs = mlx5_list_create("hrxq", eth_dev, true,
614                 mlx5_hrxq_create_cb, mlx5_hrxq_match_cb,
615                 mlx5_hrxq_remove_cb, mlx5_hrxq_clone_cb,
616                 mlx5_hrxq_clone_free_cb);
617         /* Query availability of metadata reg_c's. */
618         err = mlx5_flow_discover_mreg_c(eth_dev);
619         if (err < 0) {
620                 err = -err;
621                 goto error;
622         }
623         if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
624                 DRV_LOG(DEBUG,
625                         "port %u extensive metadata register is not supported.",
626                         eth_dev->data->port_id);
627                 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
628                         DRV_LOG(ERR, "metadata mode %u is not supported "
629                                      "(no metadata registers available).",
630                                      priv->config.dv_xmeta_en);
631                         err = ENOTSUP;
632                         goto error;
633                 }
634         }
635         if (config->devx && config->dv_flow_en) {
636                 priv->obj_ops = devx_obj_ops;
637         } else {
638                 DRV_LOG(ERR, "Flow mode %u is not supported "
639                                 "(Windows flow must be DevX with DV flow enabled).",
640                                 priv->config.dv_flow_en);
641                 err = ENOTSUP;
642                 goto error;
643         }
644         mlx5_flow_counter_mode_config(eth_dev);
645         return eth_dev;
646 error:
647         if (priv) {
648                 if (priv->mtr_profile_tbl)
649                         mlx5_l3t_destroy(priv->mtr_profile_tbl);
650                 if (own_domain_id)
651                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
652                 mlx5_free(priv);
653                 if (eth_dev != NULL)
654                         eth_dev->data->dev_private = NULL;
655         }
656         if (eth_dev != NULL) {
657                 /* mac_addrs must not be freed alone because part of
658                  * dev_private
659                  **/
660                 eth_dev->data->mac_addrs = NULL;
661                 rte_eth_dev_release_port(eth_dev);
662         }
663         if (sh)
664                 mlx5_free_shared_dev_ctx(sh);
665         MLX5_ASSERT(err > 0);
666         rte_errno = err;
667         return NULL;
668 }
669
670 /**
671  * This function should share events between multiple ports of single IB
672  * device.  Currently it has no support under Windows.
673  *
674  * @param sh
675  *   Pointer to mlx5_dev_ctx_shared object.
676  */
677 void
678 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh)
679 {
680         (void)sh;
681         DRV_LOG(WARNING, "%s: is not supported", __func__);
682 }
683
684 /**
685  * This function should share events between multiple ports of single IB
686  * device.  Currently it has no support under Windows.
687  *
688  * @param dev
689  *   Pointer to mlx5_dev_ctx_shared object.
690  */
691 void
692 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh)
693 {
694         (void)sh;
695         DRV_LOG(WARNING, "%s: is not supported", __func__);
696 }
697
698 /**
699  * Read statistics by a named counter.
700  *
701  * @param[in] priv
702  *   Pointer to the private device data structure.
703  * @param[in] ctr_name
704  *   Pointer to the name of the statistic counter to read
705  * @param[out] stat
706  *   Pointer to read statistic value.
707  * @return
708  *   0 on success and stat is valud, 1 if failed to read the value
709  *   rte_errno is set.
710  *
711  */
712 int
713 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
714                       uint64_t *stat)
715 {
716         RTE_SET_USED(priv);
717         RTE_SET_USED(ctr_name);
718         RTE_SET_USED(stat);
719         DRV_LOG(WARNING, "%s: is not supported", __func__);
720         return -ENOTSUP;
721 }
722
723 /**
724  * Flush device MAC addresses
725  * Currently it has no support under Windows.
726  *
727  * @param dev
728  *   Pointer to Ethernet device structure.
729  *
730  */
731 void
732 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev)
733 {
734         (void)dev;
735         DRV_LOG(WARNING, "%s: is not supported", __func__);
736 }
737
738 /**
739  * Remove a MAC address from device
740  * Currently it has no support under Windows.
741  *
742  * @param dev
743  *   Pointer to Ethernet device structure.
744  * @param index
745  *   MAC address index.
746  */
747 void
748 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
749 {
750         (void)dev;
751         (void)(index);
752         DRV_LOG(WARNING, "%s: is not supported", __func__);
753 }
754
755 /**
756  * Adds a MAC address to the device
757  * Currently it has no support under Windows.
758  *
759  * @param dev
760  *   Pointer to Ethernet device structure.
761  * @param mac_addr
762  *   MAC address to register.
763  * @param index
764  *   MAC address index.
765  *
766  * @return
767  *   0 on success, a negative errno value otherwise
768  */
769 int
770 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
771                      uint32_t index)
772 {
773         (void)index;
774         struct rte_ether_addr lmac;
775
776         if (mlx5_get_mac(dev, &lmac.addr_bytes)) {
777                 DRV_LOG(ERR,
778                         "port %u cannot get MAC address, is mlx5_en"
779                         " loaded? (errno: %s)",
780                         dev->data->port_id, strerror(rte_errno));
781                 return rte_errno;
782         }
783         if (!rte_is_same_ether_addr(&lmac, mac)) {
784                 DRV_LOG(ERR,
785                         "adding new mac address to device is unsupported");
786                 return -ENOTSUP;
787         }
788         return 0;
789 }
790
791 /**
792  * Modify a VF MAC address
793  * Currently it has no support under Windows.
794  *
795  * @param priv
796  *   Pointer to device private data.
797  * @param mac_addr
798  *   MAC address to modify into.
799  * @param iface_idx
800  *   Net device interface index
801  * @param vf_index
802  *   VF index
803  *
804  * @return
805  *   0 on success, a negative errno value otherwise
806  */
807 int
808 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv,
809                            unsigned int iface_idx,
810                            struct rte_ether_addr *mac_addr,
811                            int vf_index)
812 {
813         (void)priv;
814         (void)iface_idx;
815         (void)mac_addr;
816         (void)vf_index;
817         DRV_LOG(WARNING, "%s: is not supported", __func__);
818         return -ENOTSUP;
819 }
820
821 /**
822  * Set device promiscuous mode
823  * Currently it has no support under Windows.
824  *
825  * @param dev
826  *   Pointer to Ethernet device structure.
827  * @param enable
828  *   0 - promiscuous is disabled, otherwise - enabled
829  *
830  * @return
831  *   0 on success, a negative error value otherwise
832  */
833 int
834 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable)
835 {
836         (void)dev;
837         (void)enable;
838         DRV_LOG(WARNING, "%s: is not supported", __func__);
839         return -ENOTSUP;
840 }
841
842 /**
843  * Set device allmulti mode
844  *
845  * @param dev
846  *   Pointer to Ethernet device structure.
847  * @param enable
848  *   0 - all multicase is disabled, otherwise - enabled
849  *
850  * @return
851  *   0 on success, a negative error value otherwise
852  */
853 int
854 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
855 {
856         (void)dev;
857         (void)enable;
858         DRV_LOG(WARNING, "%s: is not supported", __func__);
859         return -ENOTSUP;
860 }
861
862 /**
863  * Detect if a devx_device_bdf object has identical DBDF values to the
864  * rte_pci_addr found in bus/pci probing
865  *
866  * @param[in] devx_bdf
867  *   Pointer to the devx_device_bdf structure.
868  * @param[in] addr
869  *   Pointer to the rte_pci_addr structure.
870  *
871  * @return
872  *   1 on Device match, 0 on mismatch.
873  */
874 static int
875 mlx5_match_devx_bdf_to_addr(struct devx_device_bdf *devx_bdf,
876                             struct rte_pci_addr *addr)
877 {
878         if (addr->domain != (devx_bdf->bus_id >> 8) ||
879             addr->bus != (devx_bdf->bus_id & 0xff) ||
880             addr->devid != devx_bdf->dev_id ||
881             addr->function != devx_bdf->fnc_id) {
882                 return 0;
883         }
884         return 1;
885 }
886
887 /**
888  * Detect if a devx_device_bdf object matches the rte_pci_addr
889  * found in bus/pci probing
890  * Compare both the Native/PF BDF and the raw_bdf representing a VF BDF.
891  *
892  * @param[in] devx_bdf
893  *   Pointer to the devx_device_bdf structure.
894  * @param[in] addr
895  *   Pointer to the rte_pci_addr structure.
896  *
897  * @return
898  *   1 on Device match, 0 on mismatch, rte_errno code on failure.
899  */
900 static int
901 mlx5_match_devx_devices_to_addr(struct devx_device_bdf *devx_bdf,
902                                 struct rte_pci_addr *addr)
903 {
904         int err;
905         struct devx_device mlx5_dev;
906
907         if (mlx5_match_devx_bdf_to_addr(devx_bdf, addr))
908                 return 1;
909         /**
910          * Didn't match on Native/PF BDF, could still
911          * Match a VF BDF, check it next
912          */
913         err = mlx5_glue->query_device(devx_bdf, &mlx5_dev);
914         if (err) {
915                 DRV_LOG(ERR, "query_device failed");
916                 rte_errno = err;
917                 return rte_errno;
918         }
919         if (mlx5_match_devx_bdf_to_addr(&mlx5_dev.raw_bdf, addr))
920                 return 1;
921         return 0;
922 }
923
924 /**
925  * DPDK callback to register a PCI device.
926  *
927  * This function spawns Ethernet devices out of a given PCI device.
928  *
929  * @param[in] pci_drv
930  *   PCI driver structure (mlx5_driver).
931  * @param[in] pci_dev
932  *   PCI device information.
933  *
934  * @return
935  *   0 on success, a negative errno value otherwise and rte_errno is set.
936  */
937 int
938 mlx5_os_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
939                   struct rte_pci_device *pci_dev)
940 {
941         struct devx_device_bdf *devx_bdf_devs, *orig_devx_bdf_devs;
942         /*
943          * Number of found IB Devices matching with requested PCI BDF.
944          * nd != 1 means there are multiple IB devices over the same
945          * PCI device and we have representors and master.
946          */
947         unsigned int nd = 0;
948         /*
949          * Number of found IB device Ports. nd = 1 and np = 1..n means
950          * we have the single multiport IB device, and there may be
951          * representors attached to some of found ports.
952          * Currently not supported.
953          * unsigned int np = 0;
954          */
955
956         /*
957          * Number of DPDK ethernet devices to Spawn - either over
958          * multiple IB devices or multiple ports of single IB device.
959          * Actually this is the number of iterations to spawn.
960          */
961         unsigned int ns = 0;
962         /*
963          * Bonding device
964          *   < 0 - no bonding device (single one)
965          *  >= 0 - bonding device (value is slave PF index)
966          */
967         int bd = -1;
968         struct mlx5_dev_spawn_data *list = NULL;
969         struct mlx5_dev_config dev_config;
970         unsigned int dev_config_vf;
971         int ret, err;
972         uint32_t restore;
973
974         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
975                 DRV_LOG(ERR, "Secondary process is not supported on Windows.");
976                 return -ENOTSUP;
977         }
978         ret = mlx5_init_once();
979         if (ret) {
980                 DRV_LOG(ERR, "unable to init PMD global data: %s",
981                         strerror(rte_errno));
982                 return -rte_errno;
983         }
984         errno = 0;
985         devx_bdf_devs = mlx5_glue->get_device_list(&ret);
986         orig_devx_bdf_devs = devx_bdf_devs;
987         if (!devx_bdf_devs) {
988                 rte_errno = errno ? errno : ENOSYS;
989                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
990                 return -rte_errno;
991         }
992         /*
993          * First scan the list of all Infiniband devices to find
994          * matching ones, gathering into the list.
995          */
996         struct devx_device_bdf *devx_bdf_match[ret + 1];
997
998         while (ret-- > 0) {
999                 err = mlx5_match_devx_devices_to_addr(devx_bdf_devs,
1000                     &pci_dev->addr);
1001                 if (!err) {
1002                         devx_bdf_devs++;
1003                         continue;
1004                 }
1005                 if (err != 1) {
1006                         ret = -err;
1007                         goto exit;
1008                 }
1009                 devx_bdf_match[nd++] = devx_bdf_devs;
1010         }
1011         devx_bdf_match[nd] = NULL;
1012         if (!nd) {
1013                 /* No device matches, just complain and bail out. */
1014                 DRV_LOG(WARNING,
1015                         "no DevX device matches PCI device " PCI_PRI_FMT ","
1016                         " is DevX Configured?",
1017                         pci_dev->addr.domain, pci_dev->addr.bus,
1018                         pci_dev->addr.devid, pci_dev->addr.function);
1019                 rte_errno = ENOENT;
1020                 ret = -rte_errno;
1021                 goto exit;
1022         }
1023         /*
1024          * Now we can determine the maximal
1025          * amount of devices to be spawned.
1026          */
1027         list = mlx5_malloc(MLX5_MEM_ZERO,
1028                            sizeof(struct mlx5_dev_spawn_data),
1029                            RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
1030         if (!list) {
1031                 DRV_LOG(ERR, "spawn data array allocation failure");
1032                 rte_errno = ENOMEM;
1033                 ret = -rte_errno;
1034                 goto exit;
1035         }
1036         memset(&list[ns].info, 0, sizeof(list[ns].info));
1037         list[ns].max_port = 1;
1038         list[ns].phys_port = 1;
1039         list[ns].phys_dev = devx_bdf_match[ns];
1040         list[ns].eth_dev = NULL;
1041         list[ns].pci_dev = pci_dev;
1042         list[ns].pf_bond = bd;
1043         list[ns].ifindex = -1; /* Spawn will assign */
1044         list[ns].info =
1045                 (struct mlx5_switch_info){
1046                         .master = 0,
1047                         .representor = 0,
1048                         .name_type = MLX5_PHYS_PORT_NAME_TYPE_UPLINK,
1049                         .port_name = 0,
1050                         .switch_id = 0,
1051                 };
1052         /* Device specific configuration. */
1053         switch (pci_dev->id.device_id) {
1054         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1055         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1056         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1057         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1058         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
1059         case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
1060         case PCI_DEVICE_ID_MELLANOX_CONNECTXVF:
1061                 dev_config_vf = 1;
1062                 break;
1063         default:
1064                 dev_config_vf = 0;
1065                 break;
1066         }
1067         /* Default configuration. */
1068         memset(&dev_config, 0, sizeof(struct mlx5_dev_config));
1069         dev_config.vf = dev_config_vf;
1070         dev_config.mps = 0;
1071         dev_config.dbnc = MLX5_ARG_UNSET;
1072         dev_config.rx_vec_en = 1;
1073         dev_config.txq_inline_max = MLX5_ARG_UNSET;
1074         dev_config.txq_inline_min = MLX5_ARG_UNSET;
1075         dev_config.txq_inline_mpw = MLX5_ARG_UNSET;
1076         dev_config.txqs_inline = MLX5_ARG_UNSET;
1077         dev_config.vf_nl_en = 0;
1078         dev_config.mr_ext_memseg_en = 1;
1079         dev_config.mprq.max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN;
1080         dev_config.mprq.min_rxqs_num = MLX5_MPRQ_MIN_RXQS;
1081         dev_config.dv_esw_en = 0;
1082         dev_config.dv_flow_en = 1;
1083         dev_config.decap_en = 0;
1084         dev_config.log_hp_size = MLX5_ARG_UNSET;
1085         list[ns].eth_dev = mlx5_dev_spawn(&pci_dev->device,
1086                                           &list[ns],
1087                                           &dev_config);
1088         if (!list[ns].eth_dev)
1089                 goto exit;
1090         restore = list[ns].eth_dev->data->dev_flags;
1091         rte_eth_copy_pci_info(list[ns].eth_dev, pci_dev);
1092         /* Restore non-PCI flags cleared by the above call. */
1093         list[ns].eth_dev->data->dev_flags |= restore;
1094         rte_eth_dev_probing_finish(list[ns].eth_dev);
1095         ret = 0;
1096 exit:
1097         /*
1098          * Do the routine cleanup:
1099          * - free allocated spawn data array
1100          * - free the device list
1101          */
1102         if (list)
1103                 mlx5_free(list);
1104         MLX5_ASSERT(orig_devx_bdf_devs);
1105         mlx5_glue->free_device_list(orig_devx_bdf_devs);
1106         return ret;
1107 }
1108
1109 /**
1110  * Set the reg_mr and dereg_mr call backs
1111  *
1112  * @param reg_mr_cb[out]
1113  *   Pointer to reg_mr func
1114  * @param dereg_mr_cb[out]
1115  *   Pointer to dereg_mr func
1116  *
1117  */
1118 void
1119 mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb,
1120                       mlx5_dereg_mr_t *dereg_mr_cb)
1121 {
1122         *reg_mr_cb = mlx5_os_reg_mr;
1123         *dereg_mr_cb = mlx5_os_dereg_mr;
1124 }
1125
1126 /**
1127  * Extract pdn of PD object using DevX
1128  *
1129  * @param[in] pd
1130  *   Pointer to the DevX PD object.
1131  * @param[out] pdn
1132  *   Pointer to the PD object number variable.
1133  *
1134  * @return
1135  *   0 on success, error value otherwise.
1136  */
1137 int
1138 mlx5_os_get_pdn(void *pd, uint32_t *pdn)
1139 {
1140         if (!pd)
1141                 return -EINVAL;
1142
1143         *pdn = ((struct mlx5_pd *)pd)->pdn;
1144         return 0;
1145 }
1146
1147 const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops = {0};