common/mlx5: share MR management
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_PMD_MLX5_RXTX_H_
7 #define RTE_PMD_MLX5_RXTX_H_
8
9 #include <stddef.h>
10 #include <stdint.h>
11 #include <sys/queue.h>
12
13 #include <rte_mbuf.h>
14 #include <rte_mempool.h>
15 #include <rte_common.h>
16 #include <rte_hexdump.h>
17 #include <rte_spinlock.h>
18 #include <rte_io.h>
19 #include <rte_cycles.h>
20
21 #include <mlx5_common.h>
22 #include <mlx5_common_mr.h>
23
24 #include "mlx5_utils.h"
25 #include "mlx5.h"
26 #include "mlx5_autoconf.h"
27
28 struct mlx5_priv;
29
30 /* mlx5_rxtx.c */
31
32 extern uint32_t mlx5_ptype_table[];
33 extern uint8_t mlx5_cksum_table[];
34 extern uint8_t mlx5_swp_types_table[];
35
36 void mlx5_set_ptype_table(void);
37 void mlx5_set_cksum_table(void);
38 void mlx5_set_swp_types_table(void);
39 void mlx5_dump_debug_information(const char *path, const char *title,
40                                  const void *buf, unsigned int len);
41 int mlx5_queue_state_modify_primary(struct rte_eth_dev *dev,
42                         const struct mlx5_mp_arg_queue_state_modify *sm);
43 int mlx5_queue_state_modify(struct rte_eth_dev *dev,
44                             struct mlx5_mp_arg_queue_state_modify *sm);
45
46 /* mlx5_mr.c */
47
48 void mlx5_mr_flush_local_cache(struct mlx5_mr_ctrl *mr_ctrl);
49 int mlx5_net_dma_map(struct rte_device *rte_dev, void *addr, uint64_t iova,
50                      size_t len);
51 int mlx5_net_dma_unmap(struct rte_device *rte_dev, void *addr, uint64_t iova,
52                        size_t len);
53
54 /**
55  * Get Memory Pool (MP) from mbuf. If mbuf is indirect, the pool from which the
56  * cloned mbuf is allocated is returned instead.
57  *
58  * @param buf
59  *   Pointer to mbuf.
60  *
61  * @return
62  *   Memory pool where data is located for given mbuf.
63  */
64 static inline struct rte_mempool *
65 mlx5_mb2mp(struct rte_mbuf *buf)
66 {
67         if (unlikely(RTE_MBUF_CLONED(buf)))
68                 return rte_mbuf_from_indirect(buf)->pool;
69         return buf->pool;
70 }
71
72 #endif /* RTE_PMD_MLX5_RXTX_H_ */