summaryrefslogtreecommitdiff
path: root/drivers/crypto/intel/qat/qat_common/adf_dc.h
blob: 6cb5e09054a6e123a1e06524fa70bce9db2cb7da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */
/* Copyright(c) 2025 Intel Corporation */
#ifndef ADF_DC_H
#define ADF_DC_H

struct adf_accel_dev;

enum adf_dc_algo {
	QAT_DEFLATE,
	QAT_LZ4,
	QAT_LZ4S,
	QAT_ZSTD,
};

int qat_comp_build_ctx(struct adf_accel_dev *accel_dev, void *ctx, enum adf_dc_algo algo);

#endif /* ADF_DC_H */