]>
Commit | Line | Data |
---|---|---|
9fe1ebeb AK |
1 | /* |
2 | * Virtio PCI Bindings | |
3 | * | |
4 | * Copyright IBM, Corp. 2007 | |
5 | * Copyright (c) 2009 CodeSourcery | |
6 | * | |
7 | * Authors: | |
8 | * Anthony Liguori <[email protected]> | |
9 | * Paul Brook <[email protected]> | |
10 | * | |
11 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
12 | * the COPYING file in the top-level directory. | |
13 | */ | |
14 | ||
15 | #ifndef QEMU_VIRTIO_PCI_H | |
16 | #define QEMU_VIRTIO_PCI_H | |
17 | ||
cf7c3f0c | 18 | #include "hw/pci/msi.h" |
0d09e41a | 19 | #include "hw/virtio/virtio-bus.h" |
b307d308 | 20 | |
085bccb7 FK |
21 | typedef struct VirtIOPCIProxy VirtIOPCIProxy; |
22 | ||
0a2acf5e FK |
23 | /* virtio-pci-bus */ |
24 | ||
25 | typedef struct VirtioBusState VirtioPCIBusState; | |
26 | typedef struct VirtioBusClass VirtioPCIBusClass; | |
27 | ||
28 | #define TYPE_VIRTIO_PCI_BUS "virtio-pci-bus" | |
29 | #define VIRTIO_PCI_BUS(obj) \ | |
30 | OBJECT_CHECK(VirtioPCIBusState, (obj), TYPE_VIRTIO_PCI_BUS) | |
31 | #define VIRTIO_PCI_BUS_GET_CLASS(obj) \ | |
32 | OBJECT_GET_CLASS(VirtioPCIBusClass, obj, TYPE_VIRTIO_PCI_BUS) | |
33 | #define VIRTIO_PCI_BUS_CLASS(klass) \ | |
34 | OBJECT_CLASS_CHECK(VirtioPCIBusClass, klass, TYPE_VIRTIO_PCI_BUS) | |
9fe1ebeb | 35 | |
fc1769b7 MA |
36 | enum { |
37 | VIRTIO_PCI_FLAG_BUS_MASTER_BUG_MIGRATION_BIT, | |
38 | VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, | |
fc1769b7 MA |
39 | VIRTIO_PCI_FLAG_MIGRATE_EXTRA_BIT, |
40 | VIRTIO_PCI_FLAG_MODERN_PIO_NOTIFY_BIT, | |
41 | VIRTIO_PCI_FLAG_DISABLE_PCIE_BIT, | |
d9997d89 | 42 | VIRTIO_PCI_FLAG_PAGE_PER_VQ_BIT, |
615c4ed2 | 43 | VIRTIO_PCI_FLAG_ATS_BIT, |
c2cabb34 | 44 | VIRTIO_PCI_FLAG_INIT_DEVERR_BIT, |
d584f1b9 | 45 | VIRTIO_PCI_FLAG_INIT_LNKCTL_BIT, |
27ce0f3a | 46 | VIRTIO_PCI_FLAG_INIT_PM_BIT, |
eb1556c4 | 47 | VIRTIO_PCI_FLAG_INIT_FLR_BIT, |
fc1769b7 MA |
48 | }; |
49 | ||
68a27b20 | 50 | /* Need to activate work-arounds for buggy guests at vmstate load. */ |
68a27b20 MT |
51 | #define VIRTIO_PCI_FLAG_BUS_MASTER_BUG_MIGRATION \ |
52 | (1 << VIRTIO_PCI_FLAG_BUS_MASTER_BUG_MIGRATION_BIT) | |
53 | ||
5745e38a AK |
54 | /* Performance improves when virtqueue kick processing is decoupled from the |
55 | * vcpu thread using ioeventfd for some devices. */ | |
5745e38a AK |
56 | #define VIRTIO_PCI_FLAG_USE_IOEVENTFD (1 << VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT) |
57 | ||
e266d421 | 58 | /* virtio version flags */ |
1811e64c | 59 | #define VIRTIO_PCI_FLAG_DISABLE_PCIE (1 << VIRTIO_PCI_FLAG_DISABLE_PCIE_BIT) |
e266d421 | 60 | |
a6df8adf | 61 | /* migrate extra state */ |
a6df8adf JW |
62 | #define VIRTIO_PCI_FLAG_MIGRATE_EXTRA (1 << VIRTIO_PCI_FLAG_MIGRATE_EXTRA_BIT) |
63 | ||
9824d2a3 | 64 | /* have pio notification for modern device ? */ |
9824d2a3 JW |
65 | #define VIRTIO_PCI_FLAG_MODERN_PIO_NOTIFY \ |
66 | (1 << VIRTIO_PCI_FLAG_MODERN_PIO_NOTIFY_BIT) | |
67 | ||
d9997d89 MA |
68 | /* page per vq flag to be used by split drivers within guests */ |
69 | #define VIRTIO_PCI_FLAG_PAGE_PER_VQ \ | |
70 | (1 << VIRTIO_PCI_FLAG_PAGE_PER_VQ_BIT) | |
71 | ||
615c4ed2 JW |
72 | /* address space translation service */ |
73 | #define VIRTIO_PCI_FLAG_ATS (1 << VIRTIO_PCI_FLAG_ATS_BIT) | |
74 | ||
c2cabb34 MA |
75 | /* Init error enabling flags */ |
76 | #define VIRTIO_PCI_FLAG_INIT_DEVERR (1 << VIRTIO_PCI_FLAG_INIT_DEVERR_BIT) | |
77 | ||
d584f1b9 MA |
78 | /* Init Link Control register */ |
79 | #define VIRTIO_PCI_FLAG_INIT_LNKCTL (1 << VIRTIO_PCI_FLAG_INIT_LNKCTL_BIT) | |
80 | ||
27ce0f3a MA |
81 | /* Init Power Management */ |
82 | #define VIRTIO_PCI_FLAG_INIT_PM (1 << VIRTIO_PCI_FLAG_INIT_PM_BIT) | |
83 | ||
eb1556c4 JS |
84 | /* Init Function Level Reset capability */ |
85 | #define VIRTIO_PCI_FLAG_INIT_FLR (1 << VIRTIO_PCI_FLAG_INIT_FLR_BIT) | |
86 | ||
7d37d351 | 87 | typedef struct { |
774345f9 | 88 | MSIMessage msg; |
7d37d351 JK |
89 | int virq; |
90 | unsigned int users; | |
91 | } VirtIOIRQFD; | |
92 | ||
085bccb7 FK |
93 | /* |
94 | * virtio-pci: This is the PCIDevice which has a virtio-pci-bus. | |
95 | */ | |
96 | #define TYPE_VIRTIO_PCI "virtio-pci" | |
97 | #define VIRTIO_PCI_GET_CLASS(obj) \ | |
98 | OBJECT_GET_CLASS(VirtioPCIClass, obj, TYPE_VIRTIO_PCI) | |
99 | #define VIRTIO_PCI_CLASS(klass) \ | |
100 | OBJECT_CLASS_CHECK(VirtioPCIClass, klass, TYPE_VIRTIO_PCI) | |
101 | #define VIRTIO_PCI(obj) \ | |
102 | OBJECT_CHECK(VirtIOPCIProxy, (obj), TYPE_VIRTIO_PCI) | |
103 | ||
104 | typedef struct VirtioPCIClass { | |
105 | PCIDeviceClass parent_class; | |
0560b0e9 | 106 | DeviceRealize parent_dc_realize; |
fc079951 | 107 | void (*realize)(VirtIOPCIProxy *vpci_dev, Error **errp); |
085bccb7 FK |
108 | } VirtioPCIClass; |
109 | ||
588255ad GH |
110 | typedef struct VirtIOPCIRegion { |
111 | MemoryRegion mr; | |
a3cc2e81 | 112 | uint32_t offset; |
b6ce27a5 | 113 | uint32_t size; |
fc004905 | 114 | uint32_t type; |
588255ad GH |
115 | } VirtIOPCIRegion; |
116 | ||
a6df8adf JW |
117 | typedef struct VirtIOPCIQueue { |
118 | uint16_t num; | |
119 | bool enabled; | |
120 | uint32_t desc[2]; | |
121 | uint32_t avail[2]; | |
122 | uint32_t used[2]; | |
123 | } VirtIOPCIQueue; | |
124 | ||
085bccb7 | 125 | struct VirtIOPCIProxy { |
9fe1ebeb | 126 | PCIDevice pci_dev; |
da146d0a | 127 | MemoryRegion bar; |
a93c8d82 AK |
128 | union { |
129 | struct { | |
130 | VirtIOPCIRegion common; | |
131 | VirtIOPCIRegion isr; | |
132 | VirtIOPCIRegion device; | |
133 | VirtIOPCIRegion notify; | |
134 | VirtIOPCIRegion notify_pio; | |
135 | }; | |
136 | VirtIOPCIRegion regs[5]; | |
137 | }; | |
dfb8e184 | 138 | MemoryRegion modern_bar; |
9824d2a3 | 139 | MemoryRegion io_bar; |
7a25126d CF |
140 | uint32_t legacy_io_bar_idx; |
141 | uint32_t msix_bar_idx; | |
142 | uint32_t modern_io_bar_idx; | |
143 | uint32_t modern_mem_bar_idx; | |
ada434cd | 144 | int config_cap; |
9fe1ebeb | 145 | uint32_t flags; |
9a4c0e22 | 146 | bool disable_modern; |
66d1c4c1 | 147 | bool ignore_backend_features; |
9a4c0e22 | 148 | OnOffAuto disable_legacy; |
9fe1ebeb AK |
149 | uint32_t class_code; |
150 | uint32_t nvectors; | |
dfb8e184 MT |
151 | uint32_t dfselect; |
152 | uint32_t gfselect; | |
153 | uint32_t guest_features[2]; | |
a6df8adf | 154 | VirtIOPCIQueue vqs[VIRTIO_QUEUE_MAX]; |
dfb8e184 | 155 | |
7d37d351 | 156 | VirtIOIRQFD *vector_irqfd; |
2d620f59 | 157 | int nvqs_with_notifiers; |
085bccb7 FK |
158 | VirtioBusState bus; |
159 | }; | |
9fe1ebeb | 160 | |
9a4c0e22 MA |
161 | static inline bool virtio_pci_modern(VirtIOPCIProxy *proxy) |
162 | { | |
dd56040d | 163 | return !proxy->disable_modern; |
9a4c0e22 MA |
164 | } |
165 | ||
166 | static inline bool virtio_pci_legacy(VirtIOPCIProxy *proxy) | |
167 | { | |
dd56040d | 168 | return proxy->disable_legacy == ON_OFF_AUTO_OFF; |
9a4c0e22 MA |
169 | } |
170 | ||
dd56040d | 171 | static inline void virtio_pci_force_virtio_1(VirtIOPCIProxy *proxy) |
9a4c0e22 | 172 | { |
dd56040d DDAG |
173 | proxy->disable_modern = false; |
174 | proxy->disable_legacy = ON_OFF_AUTO_ON; | |
9a4c0e22 | 175 | } |
bc7b90a0 | 176 | |
d1b4259f MC |
177 | static inline void virtio_pci_disable_modern(VirtIOPCIProxy *proxy) |
178 | { | |
dd56040d | 179 | proxy->disable_modern = true; |
d1b4259f MC |
180 | } |
181 | ||
f958c8aa GH |
182 | /* |
183 | * virtio-input-pci: This extends VirtioPCIProxy. | |
184 | */ | |
185 | #define TYPE_VIRTIO_INPUT_PCI "virtio-input-pci" | |
710e2d90 | 186 | |
befeac45 MT |
187 | /* Virtio ABI version, if we increment this, we break the guest driver. */ |
188 | #define VIRTIO_PCI_ABI_VERSION 0 | |
189 | ||
a4ee4c8b EH |
190 | /* Input for virtio_pci_types_register() */ |
191 | typedef struct VirtioPCIDeviceTypeInfo { | |
192 | /* | |
193 | * Common base class for the subclasses below. | |
194 | * | |
195 | * Required only if transitional_name or non_transitional_name is set. | |
196 | * | |
197 | * We need a separate base type instead of making all types | |
198 | * inherit from generic_name for two reasons: | |
199 | * 1) generic_name implements INTERFACE_PCIE_DEVICE, but | |
200 | * transitional_name does not. | |
201 | * 2) generic_name has the "disable-legacy" and "disable-modern" | |
202 | * properties, transitional_name and non_transitional name don't. | |
203 | */ | |
204 | const char *base_name; | |
205 | /* | |
206 | * Generic device type. Optional. | |
207 | * | |
208 | * Supports both transitional and non-transitional modes, | |
209 | * using the disable-legacy and disable-modern properties. | |
210 | * If disable-legacy=auto, (non-)transitional mode is selected | |
211 | * depending on the bus where the device is plugged. | |
212 | * | |
213 | * Implements both INTERFACE_PCIE_DEVICE and INTERFACE_CONVENTIONAL_PCI_DEVICE, | |
214 | * but PCI Express is supported only in non-transitional mode. | |
215 | * | |
216 | * The only type implemented by QEMU 3.1 and older. | |
217 | */ | |
218 | const char *generic_name; | |
219 | /* | |
220 | * The transitional device type. Optional. | |
221 | * | |
222 | * Implements both INTERFACE_PCIE_DEVICE and INTERFACE_CONVENTIONAL_PCI_DEVICE. | |
223 | */ | |
224 | const char *transitional_name; | |
225 | /* | |
226 | * The non-transitional device type. Optional. | |
227 | * | |
228 | * Implements INTERFACE_CONVENTIONAL_PCI_DEVICE only. | |
229 | */ | |
230 | const char *non_transitional_name; | |
231 | ||
232 | /* Parent type. If NULL, TYPE_VIRTIO_PCI is used */ | |
233 | const char *parent; | |
234 | ||
235 | /* Same as TypeInfo fields: */ | |
236 | size_t instance_size; | |
8ea90ee6 | 237 | size_t class_size; |
a4ee4c8b EH |
238 | void (*instance_init)(Object *obj); |
239 | void (*class_init)(ObjectClass *klass, void *data); | |
1e33b513 | 240 | InterfaceInfo *interfaces; |
a4ee4c8b EH |
241 | } VirtioPCIDeviceTypeInfo; |
242 | ||
243 | /* Register virtio-pci type(s). @t must be static. */ | |
244 | void virtio_pci_types_register(const VirtioPCIDeviceTypeInfo *t); | |
245 | ||
9fe1ebeb | 246 | #endif |