xref: /spdk/module/accel/dpdk_compressdev/accel_dpdk_compressdev.h (revision 60982c759db49b4f4579f16e3b24df0725ba4b94)
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright (C) 2022 Intel Corporation.
3  *   All rights reserved.
4  */
5 
6 #include "spdk/stdinc.h"
7 
8 enum compress_pmd {
9 	COMPRESS_PMD_AUTO = 0,
10 	COMPRESS_PMD_QAT_ONLY,
11 	COMPRESS_PMD_MLX5_PCI_ONLY,
12 	COMPRESS_PMD_MAX,
13 };
14 
15 void accel_dpdk_compressdev_enable(void);
16 int accel_compressdev_enable_probe(enum compress_pmd *opts);
17