crypto/nitrox: introduce Nitrox driver
[dpdk.git] / drivers / crypto / nitrox / nitrox_device.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2019 Marvell International Ltd.
3  */
4
5 #ifndef _NITROX_DEVICE_H_
6 #define _NITROX_DEVICE_H_
7
8 #include <rte_bus_pci.h>
9 #include <rte_cryptodev.h>
10
11 struct nitrox_device {
12         TAILQ_ENTRY(nitrox_device) next;
13         struct rte_pci_device *pdev;
14         uint8_t *bar_addr;
15         uint16_t nr_queues;
16 };
17
18 #endif /* _NITROX_DEVICE_H_ */