DPDK  18.05.1
rte_compressdev_pmd.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017-2018 Intel Corporation
3  */
4 
5 #ifndef _RTE_COMPRESSDEV_PMD_H_
6 #define _RTE_COMPRESSDEV_PMD_H_
7 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 #include <string.h>
21 
22 #include <rte_dev.h>
23 #include <rte_common.h>
24 
25 #include "rte_compressdev.h"
26 #include "rte_compressdev_internal.h"
27 
28 #define RTE_COMPRESSDEV_PMD_NAME_ARG ("name")
29 #define RTE_COMPRESSDEV_PMD_SOCKET_ID_ARG ("socket_id")
30 
31 static const char * const compressdev_pmd_valid_params[] = {
32  RTE_COMPRESSDEV_PMD_NAME_ARG,
33  RTE_COMPRESSDEV_PMD_SOCKET_ID_ARG
34 };
35 
40 struct rte_compressdev_pmd_init_params {
41  char name[RTE_COMPRESSDEV_NAME_MAX_LEN];
42  int socket_id;
43 };
44 
48  struct rte_compressdev_data *data[RTE_COMPRESS_MAX_DEVS];
50  uint8_t nb_devs;
51  uint8_t max_devs;
52 };
53 
55 extern struct rte_compressdev *rte_compressdevs;
58 
67 struct rte_compressdev * __rte_experimental
68 rte_compressdev_pmd_get_named_dev(const char *name);
69 
86 typedef int (*compressdev_configure_t)(struct rte_compressdev *dev,
87  struct rte_compressdev_config *config);
88 
97 typedef int (*compressdev_start_t)(struct rte_compressdev *dev);
98 
105 typedef void (*compressdev_stop_t)(struct rte_compressdev *dev);
106 
116 typedef int (*compressdev_close_t)(struct rte_compressdev *dev);
117 
118 
127 typedef void (*compressdev_stats_get_t)(struct rte_compressdev *dev,
128  struct rte_compressdev_stats *stats);
129 
130 
137 typedef void (*compressdev_stats_reset_t)(struct rte_compressdev *dev);
138 
139 
146 typedef void (*compressdev_info_get_t)(struct rte_compressdev *dev,
147  struct rte_compressdev_info *dev_info);
148 
164  uint16_t qp_id, uint32_t max_inflight_ops, int socket_id);
165 
178  uint16_t qp_id);
179 
188 typedef uint32_t (*compressdev_queue_pair_count_t)(struct rte_compressdev *dev);
189 
206 typedef int (*compressdev_stream_create_t)(struct rte_compressdev *dev,
207  const struct rte_comp_xform *xform, void **stream);
208 
223 typedef int (*compressdev_stream_free_t)(struct rte_compressdev *dev,
224  void *stream);
225 
244  const struct rte_comp_xform *xform, void **private_xform);
245 
260  void *private_xform);
261 
290 };
291 
307 struct rte_compressdev * __rte_experimental
308 rte_compressdev_pmd_allocate(const char *name, int socket_id);
309 
322 int __rte_experimental
323 rte_compressdev_pmd_release_device(struct rte_compressdev *dev);
324 
325 
344 int __rte_experimental
345 rte_compressdev_pmd_parse_input_args(
346  struct rte_compressdev_pmd_init_params *params,
347  const char *args);
348 
365 struct rte_compressdev * __rte_experimental
366 rte_compressdev_pmd_create(const char *name,
367  struct rte_device *device,
368  size_t private_data_size,
369  struct rte_compressdev_pmd_init_params *params);
370 
383 int __rte_experimental
384 rte_compressdev_pmd_destroy(struct rte_compressdev *dev);
385 
386 #ifdef __cplusplus
387 }
388 #endif
389 
390 #endif /* _RTE_COMPRESSDEV_PMD_H_ */