New upstream version 18.08
[deb_dpdk.git] / drivers / compress / qat / qat_comp_pmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2018 Intel Corporation
3  */
4
5 #ifndef _QAT_COMP_PMD_H_
6 #define _QAT_COMP_PMD_H_
7
8 #ifdef RTE_LIBRTE_COMPRESSDEV
9
10 #include <rte_compressdev.h>
11 #include <rte_compressdev_pmd.h>
12
13 #include "qat_device.h"
14
15 /** private data structure for a QAT compression device.
16  * This QAT device is a device offering only a compression service,
17  * there can be one of these on each qat_pci_device (VF).
18  */
19 struct qat_comp_dev_private {
20         struct qat_pci_device *qat_dev;
21         /**< The qat pci device hosting the service */
22         struct rte_compressdev *compressdev;
23         /**< The pointer to this compression device structure */
24         const struct rte_compressdev_capabilities *qat_dev_capabilities;
25         /* QAT device compression capabilities */
26         const struct rte_memzone *interm_buff_mz;
27         /**< The device's memory for intermediate buffers */
28         struct rte_mempool *xformpool;
29         /**< The device's pool for qat_comp_xforms */
30 };
31
32 int
33 qat_comp_dev_create(struct qat_pci_device *qat_pci_dev);
34
35 int
36 qat_comp_dev_destroy(struct qat_pci_device *qat_pci_dev);
37
38 #endif
39 #endif /* _QAT_COMP_PMD_H_ */