crypto/octeontx2: add PMD skeleton
[dpdk.git] / drivers / crypto / octeontx2 / otx2_cryptodev_ops.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (C) 2019 Marvell International Ltd.
3  */
4
5 #include <rte_cryptodev_pmd.h>
6
7 #include "otx2_cryptodev_ops.h"
8
9 struct rte_cryptodev_ops otx2_cpt_ops = {
10         /* Device control ops */
11         .dev_configure = NULL,
12         .dev_start = NULL,
13         .dev_stop = NULL,
14         .dev_close = NULL,
15         .dev_infos_get = NULL,
16
17         .stats_get = NULL,
18         .stats_reset = NULL,
19         .queue_pair_setup = NULL,
20         .queue_pair_release = NULL,
21         .queue_pair_count = NULL,
22
23         /* Symmetric crypto ops */
24         .sym_session_get_size = NULL,
25         .sym_session_configure = NULL,
26         .sym_session_clear = NULL,
27 };