xref: /dpdk/drivers/crypto/octeontx/otx_cryptodev.h (revision 12a652a02b080f26a1e9fd0169a58d6bcbe7b03c)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Cavium, Inc
3  */
4 
5 #ifndef _OTX_CRYPTODEV_H_
6 #define _OTX_CRYPTODEV_H_
7 
8 /* Cavium OCTEON TX crypto PMD device name */
9 #define CRYPTODEV_NAME_OCTEONTX_PMD	crypto_octeontx
10 
11 /* Device ID */
12 #define PCI_VENDOR_ID_CAVIUM		0x177d
13 #define CPT_81XX_PCI_VF_DEVICE_ID	0xa041
14 
15 #define CPT_LOGTYPE otx_cpt_logtype
16 
17 extern int otx_cpt_logtype;
18 
19 /*
20  * Crypto device driver ID
21  */
22 extern uint8_t otx_cryptodev_driver_id;
23 
24 #endif /* _OTX_CRYPTODEV_H_ */
25