1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_VIRTIO_PCI_LEGACY_H
3 #define _LINUX_VIRTIO_PCI_LEGACY_H
5 #include "linux/mod_devicetable.h"
7 #include <linux/virtio_pci.h>
9 struct virtio_pci_legacy_device
{
10 struct pci_dev
*pci_dev
;
12 /* Where to read and clear interrupt */
14 /* The IO mapping for the PCI config space (legacy mode only) */
17 struct virtio_device_id id
;
20 u64
vp_legacy_get_features(struct virtio_pci_legacy_device
*ldev
);
21 u64
vp_legacy_get_driver_features(struct virtio_pci_legacy_device
*ldev
);
22 void vp_legacy_set_features(struct virtio_pci_legacy_device
*ldev
,
24 u8
vp_legacy_get_status(struct virtio_pci_legacy_device
*ldev
);
25 void vp_legacy_set_status(struct virtio_pci_legacy_device
*ldev
,
27 u16
vp_legacy_queue_vector(struct virtio_pci_legacy_device
*ldev
,
29 u16
vp_legacy_config_vector(struct virtio_pci_legacy_device
*ldev
,
31 void vp_legacy_set_queue_address(struct virtio_pci_legacy_device
*ldev
,
32 u16 index
, u32 queue_pfn
);
33 bool vp_legacy_get_queue_enable(struct virtio_pci_legacy_device
*ldev
,
35 u16
vp_legacy_get_queue_size(struct virtio_pci_legacy_device
*ldev
,
37 int vp_legacy_probe(struct virtio_pci_legacy_device
*ldev
);
38 void vp_legacy_remove(struct virtio_pci_legacy_device
*ldev
);