crypto/octeontx2: add init sequence in probe
[dpdk.git] / drivers / crypto / octeontx2 / otx2_cryptodev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (C) 2019 Marvell International Ltd.
3  */
4
5 #ifndef _OTX2_CRYPTODEV_H_
6 #define _OTX2_CRYPTODEV_H_
7
8 #include "cpt_common.h"
9
10 #include "otx2_dev.h"
11
12 /* Marvell OCTEON TX2 Crypto PMD device name */
13 #define CRYPTODEV_NAME_OCTEONTX2_PMD    crypto_octeontx2
14
15 #define OTX2_CPT_MAX_LFS                64
16 #define OTX2_CPT_MAX_QUEUES_PER_VF      64
17
18 /**
19  * Device private data
20  */
21 struct otx2_cpt_vf {
22         struct otx2_dev otx2_dev;
23         /**< Base class */
24         uint16_t max_queues;
25         /**< Max queues supported */
26 };
27
28 #define CPT_LOGTYPE otx2_cpt_logtype
29
30 extern int otx2_cpt_logtype;
31
32 /*
33  * Crypto device driver ID
34  */
35 uint8_t otx2_cryptodev_driver_id;
36
37 #endif /* _OTX2_CRYPTODEV_H_ */