Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / include / uapi / misc / uacce / hisi_qm.h
blob6435f0bcb556cda8bc801619bfdd15dceed33976
1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2 #ifndef _UAPI_HISI_QM_H
3 #define _UAPI_HISI_QM_H
5 #include <linux/types.h>
7 /**
8 * struct hisi_qp_ctx - User data for hisi qp.
9 * @id: qp_index return to user space
10 * @qc_type: Accelerator algorithm type
12 struct hisi_qp_ctx {
13 __u16 id;
14 __u16 qc_type;
17 #define HISI_QM_API_VER_BASE "hisi_qm_v1"
18 #define HISI_QM_API_VER2_BASE "hisi_qm_v2"
20 /* UACCE_CMD_QM_SET_QP_CTX: Set qp algorithm type */
21 #define UACCE_CMD_QM_SET_QP_CTX _IOWR('H', 10, struct hisi_qp_ctx)
23 #endif