raw/octeontx2_ep: add build infra and device probe
[dpdk.git] / drivers / raw / octeontx2_ep / otx2_ep_rawdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2019 Marvell International Ltd.
3  */
4
5 #ifndef _OTX2_EP_RAWDEV_H_
6 #define _OTX2_EP_RAWDEV_H_
7
8 #define PCI_DEVID_OCTEONTX2_EP_VF    0xB203  /* OCTEON TX2 EP mode */
9
10 /* SDP EP VF device */
11 struct sdp_device {
12         /* PCI device pointer */
13         struct rte_pci_device *pci_dev;
14         uint16_t vf_num;
15
16         /* Memory mapped h/w address */
17         uint8_t *hw_addr;
18
19 };
20
21 #endif /* _OTX2_EP_RAWDEV_H_ */