]>
Commit | Line | Data |
---|---|---|
69b91039 FB |
1 | /* |
2 | * QEMU PCI bus manager | |
3 | * | |
4 | * Copyright (c) 2004 Fabrice Bellard | |
5fafdf24 | 5 | * |
69b91039 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
87ecb68b PB |
24 | #include "hw.h" |
25 | #include "pci.h" | |
783753fd | 26 | #include "pci_bridge.h" |
cfb0a50a | 27 | #include "pci_internals.h" |
376253ec | 28 | #include "monitor.h" |
87ecb68b | 29 | #include "net.h" |
880345c4 | 30 | #include "sysemu.h" |
c2039bd0 | 31 | #include "loader.h" |
bf1b0071 | 32 | #include "range.h" |
79627472 | 33 | #include "qmp-commands.h" |
cbd2d434 JK |
34 | #include "msi.h" |
35 | #include "msix.h" | |
69b91039 FB |
36 | |
37 | //#define DEBUG_PCI | |
d8d2e079 | 38 | #ifdef DEBUG_PCI |
2e49d64a | 39 | # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) |
d8d2e079 IY |
40 | #else |
41 | # define PCI_DPRINTF(format, ...) do { } while (0) | |
42 | #endif | |
69b91039 | 43 | |
10c4c98a | 44 | static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent); |
4f43c1ff | 45 | static char *pcibus_get_dev_path(DeviceState *dev); |
5e0259e7 | 46 | static char *pcibus_get_fw_dev_path(DeviceState *dev); |
9bb33586 | 47 | static int pcibus_reset(BusState *qbus); |
10c4c98a | 48 | |
cfb0a50a | 49 | struct BusInfo pci_bus_info = { |
10c4c98a GH |
50 | .name = "PCI", |
51 | .size = sizeof(PCIBus), | |
52 | .print_dev = pcibus_dev_print, | |
4f43c1ff | 53 | .get_dev_path = pcibus_get_dev_path, |
5e0259e7 | 54 | .get_fw_dev_path = pcibus_get_fw_dev_path, |
9bb33586 | 55 | .reset = pcibus_reset, |
ee6847d1 | 56 | .props = (Property[]) { |
54586bd1 | 57 | DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1), |
8c52c8f3 | 58 | DEFINE_PROP_STRING("romfile", PCIDevice, romfile), |
88169ddf | 59 | DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1), |
49823868 IY |
60 | DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present, |
61 | QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false), | |
b1aeb926 IY |
62 | DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present, |
63 | QEMU_PCI_CAP_SERR_BITNR, true), | |
54586bd1 | 64 | DEFINE_PROP_END_OF_LIST() |
ee6847d1 | 65 | } |
30468f78 | 66 | }; |
69b91039 | 67 | |
d662210a | 68 | static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num); |
1941d19c | 69 | static void pci_update_mappings(PCIDevice *d); |
d537cf6c | 70 | static void pci_set_irq(void *opaque, int irq_num, int level); |
ab85ceb1 | 71 | static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom); |
230741dc | 72 | static void pci_del_option_rom(PCIDevice *pdev); |
1941d19c | 73 | |
d350d97d AL |
74 | static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET; |
75 | static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; | |
e822a52a IY |
76 | |
77 | struct PCIHostBus { | |
78 | int domain; | |
79 | struct PCIBus *bus; | |
80 | QLIST_ENTRY(PCIHostBus) next; | |
81 | }; | |
82 | static QLIST_HEAD(, PCIHostBus) host_buses; | |
30468f78 | 83 | |
2d1e9f96 JQ |
84 | static const VMStateDescription vmstate_pcibus = { |
85 | .name = "PCIBUS", | |
86 | .version_id = 1, | |
87 | .minimum_version_id = 1, | |
88 | .minimum_version_id_old = 1, | |
89 | .fields = (VMStateField []) { | |
90 | VMSTATE_INT32_EQUAL(nirq, PCIBus), | |
c7bde572 | 91 | VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t), |
2d1e9f96 | 92 | VMSTATE_END_OF_LIST() |
52fc1d83 | 93 | } |
2d1e9f96 | 94 | }; |
b3b11697 | 95 | static int pci_bar(PCIDevice *d, int reg) |
5330de09 | 96 | { |
b3b11697 IY |
97 | uint8_t type; |
98 | ||
99 | if (reg != PCI_ROM_SLOT) | |
100 | return PCI_BASE_ADDRESS_0 + reg * 4; | |
101 | ||
102 | type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; | |
103 | return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS; | |
5330de09 MT |
104 | } |
105 | ||
d036bb21 MT |
106 | static inline int pci_irq_state(PCIDevice *d, int irq_num) |
107 | { | |
108 | return (d->irq_state >> irq_num) & 0x1; | |
109 | } | |
110 | ||
111 | static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level) | |
112 | { | |
113 | d->irq_state &= ~(0x1 << irq_num); | |
114 | d->irq_state |= level << irq_num; | |
115 | } | |
116 | ||
117 | static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change) | |
118 | { | |
119 | PCIBus *bus; | |
120 | for (;;) { | |
121 | bus = pci_dev->bus; | |
122 | irq_num = bus->map_irq(pci_dev, irq_num); | |
123 | if (bus->set_irq) | |
124 | break; | |
125 | pci_dev = bus->parent_dev; | |
126 | } | |
127 | bus->irq_count[irq_num] += change; | |
128 | bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0); | |
129 | } | |
130 | ||
9ddf8437 IY |
131 | int pci_bus_get_irq_level(PCIBus *bus, int irq_num) |
132 | { | |
133 | assert(irq_num >= 0); | |
134 | assert(irq_num < bus->nirq); | |
135 | return !!bus->irq_count[irq_num]; | |
136 | } | |
137 | ||
f9bf77dd MT |
138 | /* Update interrupt status bit in config space on interrupt |
139 | * state change. */ | |
140 | static void pci_update_irq_status(PCIDevice *dev) | |
141 | { | |
142 | if (dev->irq_state) { | |
143 | dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT; | |
144 | } else { | |
145 | dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; | |
146 | } | |
147 | } | |
148 | ||
4c92325b IY |
149 | void pci_device_deassert_intx(PCIDevice *dev) |
150 | { | |
151 | int i; | |
152 | for (i = 0; i < PCI_NUM_PINS; ++i) { | |
153 | qemu_set_irq(dev->irq[i], 0); | |
154 | } | |
155 | } | |
156 | ||
0ead87c8 IY |
157 | /* |
158 | * This function is called on #RST and FLR. | |
159 | * FLR if PCI_EXP_DEVCTL_BCR_FLR is set | |
160 | */ | |
161 | void pci_device_reset(PCIDevice *dev) | |
5330de09 | 162 | { |
c0b1905b | 163 | int r; |
6fc4925b AL |
164 | |
165 | qdev_reset_all(&dev->qdev); | |
c0b1905b | 166 | |
d036bb21 | 167 | dev->irq_state = 0; |
f9bf77dd | 168 | pci_update_irq_status(dev); |
4c92325b | 169 | pci_device_deassert_intx(dev); |
ebabb67a | 170 | /* Clear all writable bits */ |
99443c21 | 171 | pci_word_test_and_clear_mask(dev->config + PCI_COMMAND, |
f9aebe2e MT |
172 | pci_get_word(dev->wmask + PCI_COMMAND) | |
173 | pci_get_word(dev->w1cmask + PCI_COMMAND)); | |
89d437df IY |
174 | pci_word_test_and_clear_mask(dev->config + PCI_STATUS, |
175 | pci_get_word(dev->wmask + PCI_STATUS) | | |
176 | pci_get_word(dev->w1cmask + PCI_STATUS)); | |
c0b1905b MT |
177 | dev->config[PCI_CACHE_LINE_SIZE] = 0x0; |
178 | dev->config[PCI_INTERRUPT_LINE] = 0x0; | |
179 | for (r = 0; r < PCI_NUM_REGIONS; ++r) { | |
71ebd6dc IY |
180 | PCIIORegion *region = &dev->io_regions[r]; |
181 | if (!region->size) { | |
c0b1905b MT |
182 | continue; |
183 | } | |
71ebd6dc IY |
184 | |
185 | if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) && | |
186 | region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { | |
187 | pci_set_quad(dev->config + pci_bar(dev, r), region->type); | |
188 | } else { | |
189 | pci_set_long(dev->config + pci_bar(dev, r), region->type); | |
190 | } | |
c0b1905b MT |
191 | } |
192 | pci_update_mappings(dev); | |
cbd2d434 JK |
193 | |
194 | msi_reset(dev); | |
195 | msix_reset(dev); | |
5330de09 MT |
196 | } |
197 | ||
9bb33586 IY |
198 | /* |
199 | * Trigger pci bus reset under a given bus. | |
200 | * To be called on RST# assert. | |
201 | */ | |
202 | void pci_bus_reset(PCIBus *bus) | |
6eaa6847 | 203 | { |
6eaa6847 GN |
204 | int i; |
205 | ||
206 | for (i = 0; i < bus->nirq; i++) { | |
207 | bus->irq_count[i] = 0; | |
208 | } | |
5330de09 MT |
209 | for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { |
210 | if (bus->devices[i]) { | |
211 | pci_device_reset(bus->devices[i]); | |
212 | } | |
6eaa6847 GN |
213 | } |
214 | } | |
215 | ||
9bb33586 IY |
216 | static int pcibus_reset(BusState *qbus) |
217 | { | |
218 | pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus)); | |
219 | ||
220 | /* topology traverse is done by pci_bus_reset(). | |
221 | Tell qbus/qdev walker not to traverse the tree */ | |
222 | return 1; | |
223 | } | |
224 | ||
e822a52a IY |
225 | static void pci_host_bus_register(int domain, PCIBus *bus) |
226 | { | |
227 | struct PCIHostBus *host; | |
7267c094 | 228 | host = g_malloc0(sizeof(*host)); |
e822a52a IY |
229 | host->domain = domain; |
230 | host->bus = bus; | |
231 | QLIST_INSERT_HEAD(&host_buses, host, next); | |
232 | } | |
233 | ||
c469e1dd | 234 | PCIBus *pci_find_root_bus(int domain) |
e822a52a IY |
235 | { |
236 | struct PCIHostBus *host; | |
237 | ||
238 | QLIST_FOREACH(host, &host_buses, next) { | |
239 | if (host->domain == domain) { | |
240 | return host->bus; | |
241 | } | |
242 | } | |
243 | ||
244 | return NULL; | |
245 | } | |
246 | ||
e075e788 IY |
247 | int pci_find_domain(const PCIBus *bus) |
248 | { | |
249 | PCIDevice *d; | |
250 | struct PCIHostBus *host; | |
251 | ||
252 | /* obtain root bus */ | |
253 | while ((d = bus->parent_dev) != NULL) { | |
254 | bus = d->bus; | |
255 | } | |
256 | ||
257 | QLIST_FOREACH(host, &host_buses, next) { | |
258 | if (host->bus == bus) { | |
259 | return host->domain; | |
260 | } | |
261 | } | |
262 | ||
263 | abort(); /* should not be reached */ | |
264 | return -1; | |
265 | } | |
266 | ||
21eea4b3 | 267 | void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent, |
1e39101c | 268 | const char *name, |
aee97b84 AK |
269 | MemoryRegion *address_space_mem, |
270 | MemoryRegion *address_space_io, | |
1e39101c | 271 | uint8_t devfn_min) |
30468f78 | 272 | { |
21eea4b3 | 273 | qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name); |
6fa84913 | 274 | assert(PCI_FUNC(devfn_min) == 0); |
502a5395 | 275 | bus->devfn_min = devfn_min; |
5968eca3 AK |
276 | bus->address_space_mem = address_space_mem; |
277 | bus->address_space_io = address_space_io; | |
e822a52a IY |
278 | |
279 | /* host bridge */ | |
280 | QLIST_INIT(&bus->child); | |
281 | pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */ | |
282 | ||
0be71e32 | 283 | vmstate_register(NULL, -1, &vmstate_pcibus, bus); |
21eea4b3 GH |
284 | } |
285 | ||
1e39101c | 286 | PCIBus *pci_bus_new(DeviceState *parent, const char *name, |
aee97b84 AK |
287 | MemoryRegion *address_space_mem, |
288 | MemoryRegion *address_space_io, | |
289 | uint8_t devfn_min) | |
21eea4b3 GH |
290 | { |
291 | PCIBus *bus; | |
292 | ||
7267c094 | 293 | bus = g_malloc0(sizeof(*bus)); |
21eea4b3 | 294 | bus->qbus.qdev_allocated = 1; |
aee97b84 AK |
295 | pci_bus_new_inplace(bus, parent, name, address_space_mem, |
296 | address_space_io, devfn_min); | |
21eea4b3 GH |
297 | return bus; |
298 | } | |
299 | ||
300 | void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, | |
301 | void *irq_opaque, int nirq) | |
302 | { | |
303 | bus->set_irq = set_irq; | |
304 | bus->map_irq = map_irq; | |
305 | bus->irq_opaque = irq_opaque; | |
306 | bus->nirq = nirq; | |
7267c094 | 307 | bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0])); |
21eea4b3 GH |
308 | } |
309 | ||
87c30546 | 310 | void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev) |
ee995ffb GH |
311 | { |
312 | bus->qbus.allow_hotplug = 1; | |
313 | bus->hotplug = hotplug; | |
87c30546 | 314 | bus->hotplug_qdev = qdev; |
ee995ffb GH |
315 | } |
316 | ||
21eea4b3 GH |
317 | PCIBus *pci_register_bus(DeviceState *parent, const char *name, |
318 | pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, | |
1e39101c | 319 | void *irq_opaque, |
aee97b84 AK |
320 | MemoryRegion *address_space_mem, |
321 | MemoryRegion *address_space_io, | |
1e39101c | 322 | uint8_t devfn_min, int nirq) |
21eea4b3 GH |
323 | { |
324 | PCIBus *bus; | |
325 | ||
aee97b84 AK |
326 | bus = pci_bus_new(parent, name, address_space_mem, |
327 | address_space_io, devfn_min); | |
21eea4b3 | 328 | pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq); |
30468f78 FB |
329 | return bus; |
330 | } | |
69b91039 | 331 | |
502a5395 PB |
332 | int pci_bus_num(PCIBus *s) |
333 | { | |
e94ff650 IY |
334 | if (!s->parent_dev) |
335 | return 0; /* pci host bridge */ | |
336 | return s->parent_dev->config[PCI_SECONDARY_BUS]; | |
502a5395 PB |
337 | } |
338 | ||
73534f2f | 339 | static int get_pci_config_device(QEMUFile *f, void *pv, size_t size) |
30ca2aab | 340 | { |
73534f2f | 341 | PCIDevice *s = container_of(pv, PCIDevice, config); |
a9f49946 | 342 | uint8_t *config; |
52fc1d83 AZ |
343 | int i; |
344 | ||
a9f49946 | 345 | assert(size == pci_config_size(s)); |
7267c094 | 346 | config = g_malloc(size); |
a9f49946 IY |
347 | |
348 | qemu_get_buffer(f, config, size); | |
349 | for (i = 0; i < size; ++i) { | |
f9aebe2e MT |
350 | if ((config[i] ^ s->config[i]) & |
351 | s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) { | |
7267c094 | 352 | g_free(config); |
bd4b65ee | 353 | return -EINVAL; |
a9f49946 IY |
354 | } |
355 | } | |
356 | memcpy(s->config, config, size); | |
bd4b65ee | 357 | |
1941d19c | 358 | pci_update_mappings(s); |
52fc1d83 | 359 | |
7267c094 | 360 | g_free(config); |
30ca2aab FB |
361 | return 0; |
362 | } | |
363 | ||
73534f2f | 364 | /* just put buffer */ |
84e2e3eb | 365 | static void put_pci_config_device(QEMUFile *f, void *pv, size_t size) |
73534f2f | 366 | { |
dbe73d7f | 367 | const uint8_t **v = pv; |
a9f49946 | 368 | assert(size == pci_config_size(container_of(pv, PCIDevice, config))); |
dbe73d7f | 369 | qemu_put_buffer(f, *v, size); |
73534f2f JQ |
370 | } |
371 | ||
372 | static VMStateInfo vmstate_info_pci_config = { | |
373 | .name = "pci config", | |
374 | .get = get_pci_config_device, | |
375 | .put = put_pci_config_device, | |
376 | }; | |
377 | ||
d036bb21 MT |
378 | static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size) |
379 | { | |
c3f8f611 | 380 | PCIDevice *s = container_of(pv, PCIDevice, irq_state); |
d036bb21 MT |
381 | uint32_t irq_state[PCI_NUM_PINS]; |
382 | int i; | |
383 | for (i = 0; i < PCI_NUM_PINS; ++i) { | |
384 | irq_state[i] = qemu_get_be32(f); | |
385 | if (irq_state[i] != 0x1 && irq_state[i] != 0) { | |
386 | fprintf(stderr, "irq state %d: must be 0 or 1.\n", | |
387 | irq_state[i]); | |
388 | return -EINVAL; | |
389 | } | |
390 | } | |
391 | ||
392 | for (i = 0; i < PCI_NUM_PINS; ++i) { | |
393 | pci_set_irq_state(s, i, irq_state[i]); | |
394 | } | |
395 | ||
396 | return 0; | |
397 | } | |
398 | ||
399 | static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size) | |
400 | { | |
401 | int i; | |
c3f8f611 | 402 | PCIDevice *s = container_of(pv, PCIDevice, irq_state); |
d036bb21 MT |
403 | |
404 | for (i = 0; i < PCI_NUM_PINS; ++i) { | |
405 | qemu_put_be32(f, pci_irq_state(s, i)); | |
406 | } | |
407 | } | |
408 | ||
409 | static VMStateInfo vmstate_info_pci_irq_state = { | |
410 | .name = "pci irq state", | |
411 | .get = get_pci_irq_state, | |
412 | .put = put_pci_irq_state, | |
413 | }; | |
414 | ||
73534f2f JQ |
415 | const VMStateDescription vmstate_pci_device = { |
416 | .name = "PCIDevice", | |
417 | .version_id = 2, | |
418 | .minimum_version_id = 1, | |
419 | .minimum_version_id_old = 1, | |
420 | .fields = (VMStateField []) { | |
421 | VMSTATE_INT32_LE(version_id, PCIDevice), | |
a9f49946 IY |
422 | VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, |
423 | vmstate_info_pci_config, | |
424 | PCI_CONFIG_SPACE_SIZE), | |
d036bb21 MT |
425 | VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, |
426 | vmstate_info_pci_irq_state, | |
427 | PCI_NUM_PINS * sizeof(int32_t)), | |
a9f49946 IY |
428 | VMSTATE_END_OF_LIST() |
429 | } | |
430 | }; | |
431 | ||
432 | const VMStateDescription vmstate_pcie_device = { | |
433 | .name = "PCIDevice", | |
434 | .version_id = 2, | |
435 | .minimum_version_id = 1, | |
436 | .minimum_version_id_old = 1, | |
437 | .fields = (VMStateField []) { | |
438 | VMSTATE_INT32_LE(version_id, PCIDevice), | |
439 | VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, | |
440 | vmstate_info_pci_config, | |
441 | PCIE_CONFIG_SPACE_SIZE), | |
d036bb21 MT |
442 | VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, |
443 | vmstate_info_pci_irq_state, | |
444 | PCI_NUM_PINS * sizeof(int32_t)), | |
73534f2f JQ |
445 | VMSTATE_END_OF_LIST() |
446 | } | |
447 | }; | |
448 | ||
a9f49946 IY |
449 | static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s) |
450 | { | |
451 | return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device; | |
452 | } | |
453 | ||
73534f2f JQ |
454 | void pci_device_save(PCIDevice *s, QEMUFile *f) |
455 | { | |
f9bf77dd MT |
456 | /* Clear interrupt status bit: it is implicit |
457 | * in irq_state which we are saving. | |
458 | * This makes us compatible with old devices | |
459 | * which never set or clear this bit. */ | |
460 | s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; | |
a9f49946 | 461 | vmstate_save_state(f, pci_get_vmstate(s), s); |
f9bf77dd MT |
462 | /* Restore the interrupt status bit. */ |
463 | pci_update_irq_status(s); | |
73534f2f JQ |
464 | } |
465 | ||
466 | int pci_device_load(PCIDevice *s, QEMUFile *f) | |
467 | { | |
f9bf77dd MT |
468 | int ret; |
469 | ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id); | |
470 | /* Restore the interrupt status bit. */ | |
471 | pci_update_irq_status(s); | |
472 | return ret; | |
73534f2f JQ |
473 | } |
474 | ||
5e434f4e | 475 | static void pci_set_default_subsystem_id(PCIDevice *pci_dev) |
d350d97d | 476 | { |
5e434f4e IY |
477 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, |
478 | pci_default_sub_vendor_id); | |
479 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, | |
480 | pci_default_sub_device_id); | |
d350d97d AL |
481 | } |
482 | ||
880345c4 | 483 | /* |
43c945f1 IY |
484 | * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL |
485 | * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error | |
880345c4 | 486 | */ |
94a09e2c | 487 | static int pci_parse_devaddr(const char *addr, int *domp, int *busp, |
43c945f1 | 488 | unsigned int *slotp, unsigned int *funcp) |
880345c4 AL |
489 | { |
490 | const char *p; | |
491 | char *e; | |
492 | unsigned long val; | |
493 | unsigned long dom = 0, bus = 0; | |
43c945f1 IY |
494 | unsigned int slot = 0; |
495 | unsigned int func = 0; | |
880345c4 AL |
496 | |
497 | p = addr; | |
498 | val = strtoul(p, &e, 16); | |
499 | if (e == p) | |
500 | return -1; | |
501 | if (*e == ':') { | |
502 | bus = val; | |
503 | p = e + 1; | |
504 | val = strtoul(p, &e, 16); | |
505 | if (e == p) | |
506 | return -1; | |
507 | if (*e == ':') { | |
508 | dom = bus; | |
509 | bus = val; | |
510 | p = e + 1; | |
511 | val = strtoul(p, &e, 16); | |
512 | if (e == p) | |
513 | return -1; | |
514 | } | |
515 | } | |
516 | ||
880345c4 AL |
517 | slot = val; |
518 | ||
43c945f1 IY |
519 | if (funcp != NULL) { |
520 | if (*e != '.') | |
521 | return -1; | |
522 | ||
523 | p = e + 1; | |
524 | val = strtoul(p, &e, 16); | |
525 | if (e == p) | |
526 | return -1; | |
527 | ||
528 | func = val; | |
529 | } | |
530 | ||
531 | /* if funcp == NULL func is 0 */ | |
532 | if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7) | |
533 | return -1; | |
534 | ||
880345c4 AL |
535 | if (*e) |
536 | return -1; | |
537 | ||
880345c4 AL |
538 | *domp = dom; |
539 | *busp = bus; | |
540 | *slotp = slot; | |
43c945f1 IY |
541 | if (funcp != NULL) |
542 | *funcp = func; | |
880345c4 AL |
543 | return 0; |
544 | } | |
545 | ||
e9283f8b JK |
546 | int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp, |
547 | unsigned *slotp) | |
880345c4 | 548 | { |
e9283f8b JK |
549 | /* strip legacy tag */ |
550 | if (!strncmp(addr, "pci_addr=", 9)) { | |
551 | addr += 9; | |
552 | } | |
43c945f1 | 553 | if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) { |
e9283f8b | 554 | monitor_printf(mon, "Invalid pci address\n"); |
880345c4 | 555 | return -1; |
e9283f8b JK |
556 | } |
557 | return 0; | |
880345c4 AL |
558 | } |
559 | ||
49bd1458 | 560 | PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr) |
5607c388 MA |
561 | { |
562 | int dom, bus; | |
563 | unsigned slot; | |
564 | ||
565 | if (!devaddr) { | |
566 | *devfnp = -1; | |
d662210a | 567 | return pci_find_bus_nr(pci_find_root_bus(0), 0); |
5607c388 MA |
568 | } |
569 | ||
43c945f1 | 570 | if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) { |
5607c388 MA |
571 | return NULL; |
572 | } | |
573 | ||
6ff534b6 | 574 | *devfnp = PCI_DEVFN(slot, 0); |
d662210a | 575 | return pci_find_bus_nr(pci_find_root_bus(dom), bus); |
5607c388 MA |
576 | } |
577 | ||
bd4b65ee MT |
578 | static void pci_init_cmask(PCIDevice *dev) |
579 | { | |
580 | pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff); | |
581 | pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff); | |
582 | dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST; | |
583 | dev->cmask[PCI_REVISION_ID] = 0xff; | |
584 | dev->cmask[PCI_CLASS_PROG] = 0xff; | |
585 | pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff); | |
586 | dev->cmask[PCI_HEADER_TYPE] = 0xff; | |
587 | dev->cmask[PCI_CAPABILITY_LIST] = 0xff; | |
588 | } | |
589 | ||
b7ee1603 MT |
590 | static void pci_init_wmask(PCIDevice *dev) |
591 | { | |
a9f49946 IY |
592 | int config_size = pci_config_size(dev); |
593 | ||
b7ee1603 MT |
594 | dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff; |
595 | dev->wmask[PCI_INTERRUPT_LINE] = 0xff; | |
67a51b48 | 596 | pci_set_word(dev->wmask + PCI_COMMAND, |
a7b15a5c MT |
597 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | |
598 | PCI_COMMAND_INTX_DISABLE); | |
b1aeb926 IY |
599 | if (dev->cap_present & QEMU_PCI_CAP_SERR) { |
600 | pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR); | |
601 | } | |
3e21ffc9 IY |
602 | |
603 | memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff, | |
604 | config_size - PCI_CONFIG_HEADER_SIZE); | |
b7ee1603 MT |
605 | } |
606 | ||
89d437df IY |
607 | static void pci_init_w1cmask(PCIDevice *dev) |
608 | { | |
609 | /* | |
f6bdfcc9 | 610 | * Note: It's okay to set w1cmask even for readonly bits as |
89d437df IY |
611 | * long as their value is hardwired to 0. |
612 | */ | |
613 | pci_set_word(dev->w1cmask + PCI_STATUS, | |
614 | PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT | | |
615 | PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT | | |
616 | PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY); | |
617 | } | |
618 | ||
d5f27e88 | 619 | static void pci_init_mask_bridge(PCIDevice *d) |
fb231628 IY |
620 | { |
621 | /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and | |
622 | PCI_SEC_LETENCY_TIMER */ | |
623 | memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4); | |
624 | ||
625 | /* base and limit */ | |
626 | d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff; | |
627 | d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff; | |
628 | pci_set_word(d->wmask + PCI_MEMORY_BASE, | |
629 | PCI_MEMORY_RANGE_MASK & 0xffff); | |
630 | pci_set_word(d->wmask + PCI_MEMORY_LIMIT, | |
631 | PCI_MEMORY_RANGE_MASK & 0xffff); | |
632 | pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE, | |
633 | PCI_PREF_RANGE_MASK & 0xffff); | |
634 | pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT, | |
635 | PCI_PREF_RANGE_MASK & 0xffff); | |
636 | ||
637 | /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */ | |
638 | memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8); | |
639 | ||
d5f27e88 | 640 | /* Supported memory and i/o types */ |
68917102 MT |
641 | d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16; |
642 | d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16; | |
d5f27e88 MT |
643 | pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE, |
644 | PCI_PREF_RANGE_TYPE_64); | |
645 | pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT, | |
646 | PCI_PREF_RANGE_TYPE_64); | |
647 | ||
f6bdfcc9 MT |
648 | /* TODO: add this define to pci_regs.h in linux and then in qemu. */ |
649 | #define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */ | |
650 | #define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */ | |
651 | #define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */ | |
652 | #define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */ | |
653 | #define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */ | |
654 | pci_set_word(d->wmask + PCI_BRIDGE_CONTROL, | |
655 | PCI_BRIDGE_CTL_PARITY | | |
656 | PCI_BRIDGE_CTL_SERR | | |
657 | PCI_BRIDGE_CTL_ISA | | |
658 | PCI_BRIDGE_CTL_VGA | | |
659 | PCI_BRIDGE_CTL_VGA_16BIT | | |
660 | PCI_BRIDGE_CTL_MASTER_ABORT | | |
661 | PCI_BRIDGE_CTL_BUS_RESET | | |
662 | PCI_BRIDGE_CTL_FAST_BACK | | |
663 | PCI_BRIDGE_CTL_DISCARD | | |
664 | PCI_BRIDGE_CTL_SEC_DISCARD | | |
f6bdfcc9 MT |
665 | PCI_BRIDGE_CTL_DISCARD_SERR); |
666 | /* Below does not do anything as we never set this bit, put here for | |
667 | * completeness. */ | |
668 | pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL, | |
669 | PCI_BRIDGE_CTL_DISCARD_STATUS); | |
d5f27e88 | 670 | d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK; |
15ab7a75 | 671 | d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK; |
d5f27e88 MT |
672 | pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE, |
673 | PCI_PREF_RANGE_TYPE_MASK); | |
15ab7a75 MT |
674 | pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT, |
675 | PCI_PREF_RANGE_TYPE_MASK); | |
fb231628 IY |
676 | } |
677 | ||
6eab3de1 IY |
678 | static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev) |
679 | { | |
680 | uint8_t slot = PCI_SLOT(dev->devfn); | |
681 | uint8_t func; | |
682 | ||
683 | if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { | |
684 | dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION; | |
685 | } | |
686 | ||
687 | /* | |
b0cd712c | 688 | * multifunction bit is interpreted in two ways as follows. |
6eab3de1 IY |
689 | * - all functions must set the bit to 1. |
690 | * Example: Intel X53 | |
691 | * - function 0 must set the bit, but the rest function (> 0) | |
692 | * is allowed to leave the bit to 0. | |
693 | * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10, | |
694 | * | |
695 | * So OS (at least Linux) checks the bit of only function 0, | |
696 | * and doesn't see the bit of function > 0. | |
697 | * | |
698 | * The below check allows both interpretation. | |
699 | */ | |
700 | if (PCI_FUNC(dev->devfn)) { | |
701 | PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)]; | |
702 | if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) { | |
703 | /* function 0 should set multifunction bit */ | |
704 | error_report("PCI: single function device can't be populated " | |
705 | "in function %x.%x", slot, PCI_FUNC(dev->devfn)); | |
706 | return -1; | |
707 | } | |
708 | return 0; | |
709 | } | |
710 | ||
711 | if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { | |
712 | return 0; | |
713 | } | |
714 | /* function 0 indicates single function, so function > 0 must be NULL */ | |
715 | for (func = 1; func < PCI_FUNC_MAX; ++func) { | |
716 | if (bus->devices[PCI_DEVFN(slot, func)]) { | |
717 | error_report("PCI: %x.0 indicates single function, " | |
718 | "but %x.%x is already populated.", | |
719 | slot, slot, func); | |
720 | return -1; | |
721 | } | |
722 | } | |
723 | return 0; | |
724 | } | |
725 | ||
a9f49946 IY |
726 | static void pci_config_alloc(PCIDevice *pci_dev) |
727 | { | |
728 | int config_size = pci_config_size(pci_dev); | |
729 | ||
7267c094 AL |
730 | pci_dev->config = g_malloc0(config_size); |
731 | pci_dev->cmask = g_malloc0(config_size); | |
732 | pci_dev->wmask = g_malloc0(config_size); | |
733 | pci_dev->w1cmask = g_malloc0(config_size); | |
734 | pci_dev->used = g_malloc0(config_size); | |
a9f49946 IY |
735 | } |
736 | ||
737 | static void pci_config_free(PCIDevice *pci_dev) | |
738 | { | |
7267c094 AL |
739 | g_free(pci_dev->config); |
740 | g_free(pci_dev->cmask); | |
741 | g_free(pci_dev->wmask); | |
742 | g_free(pci_dev->w1cmask); | |
743 | g_free(pci_dev->used); | |
a9f49946 IY |
744 | } |
745 | ||
69b91039 | 746 | /* -1 for devfn means auto assign */ |
6b1b92d3 | 747 | static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus, |
40021f08 | 748 | const char *name, int devfn) |
69b91039 | 749 | { |
40021f08 AL |
750 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); |
751 | PCIConfigReadFunc *config_read = pc->config_read; | |
752 | PCIConfigWriteFunc *config_write = pc->config_write; | |
113f89df | 753 | |
69b91039 | 754 | if (devfn < 0) { |
b47b0706 | 755 | for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices); |
6fa84913 | 756 | devfn += PCI_FUNC_MAX) { |
30468f78 | 757 | if (!bus->devices[devfn]) |
69b91039 FB |
758 | goto found; |
759 | } | |
3709c1b7 | 760 | error_report("PCI: no slot/function available for %s, all in use", name); |
09e3acc6 | 761 | return NULL; |
69b91039 | 762 | found: ; |
07b7d053 | 763 | } else if (bus->devices[devfn]) { |
3709c1b7 DB |
764 | error_report("PCI: slot %d function %d not available for %s, in use by %s", |
765 | PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name); | |
09e3acc6 | 766 | return NULL; |
69b91039 | 767 | } |
30468f78 | 768 | pci_dev->bus = bus; |
69b91039 FB |
769 | pci_dev->devfn = devfn; |
770 | pstrcpy(pci_dev->name, sizeof(pci_dev->name), name); | |
d036bb21 | 771 | pci_dev->irq_state = 0; |
a9f49946 | 772 | pci_config_alloc(pci_dev); |
fb231628 | 773 | |
40021f08 AL |
774 | pci_config_set_vendor_id(pci_dev->config, pc->vendor_id); |
775 | pci_config_set_device_id(pci_dev->config, pc->device_id); | |
776 | pci_config_set_revision(pci_dev->config, pc->revision); | |
777 | pci_config_set_class(pci_dev->config, pc->class_id); | |
113f89df | 778 | |
40021f08 AL |
779 | if (!pc->is_bridge) { |
780 | if (pc->subsystem_vendor_id || pc->subsystem_id) { | |
113f89df | 781 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, |
40021f08 | 782 | pc->subsystem_vendor_id); |
113f89df | 783 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, |
40021f08 | 784 | pc->subsystem_id); |
113f89df IY |
785 | } else { |
786 | pci_set_default_subsystem_id(pci_dev); | |
787 | } | |
788 | } else { | |
789 | /* subsystem_vendor_id/subsystem_id are only for header type 0 */ | |
40021f08 AL |
790 | assert(!pc->subsystem_vendor_id); |
791 | assert(!pc->subsystem_id); | |
fb231628 | 792 | } |
bd4b65ee | 793 | pci_init_cmask(pci_dev); |
b7ee1603 | 794 | pci_init_wmask(pci_dev); |
89d437df | 795 | pci_init_w1cmask(pci_dev); |
40021f08 | 796 | if (pc->is_bridge) { |
d5f27e88 | 797 | pci_init_mask_bridge(pci_dev); |
fb231628 | 798 | } |
6eab3de1 IY |
799 | if (pci_init_multifunction(bus, pci_dev)) { |
800 | pci_config_free(pci_dev); | |
801 | return NULL; | |
802 | } | |
0ac32c83 FB |
803 | |
804 | if (!config_read) | |
805 | config_read = pci_default_read_config; | |
806 | if (!config_write) | |
807 | config_write = pci_default_write_config; | |
69b91039 FB |
808 | pci_dev->config_read = config_read; |
809 | pci_dev->config_write = config_write; | |
30468f78 | 810 | bus->devices[devfn] = pci_dev; |
e369cad7 | 811 | pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS); |
f16c4abf | 812 | pci_dev->version_id = 2; /* Current pci device vmstate version */ |
69b91039 FB |
813 | return pci_dev; |
814 | } | |
815 | ||
925fe64a AW |
816 | static void do_pci_unregister_device(PCIDevice *pci_dev) |
817 | { | |
818 | qemu_free_irqs(pci_dev->irq); | |
819 | pci_dev->bus->devices[pci_dev->devfn] = NULL; | |
820 | pci_config_free(pci_dev); | |
821 | } | |
822 | ||
5851e08c AL |
823 | static void pci_unregister_io_regions(PCIDevice *pci_dev) |
824 | { | |
825 | PCIIORegion *r; | |
826 | int i; | |
827 | ||
828 | for(i = 0; i < PCI_NUM_REGIONS; i++) { | |
829 | r = &pci_dev->io_regions[i]; | |
182f9c8a | 830 | if (!r->size || r->addr == PCI_BAR_UNMAPPED) |
5851e08c | 831 | continue; |
03952339 | 832 | memory_region_del_subregion(r->address_space, r->memory); |
5851e08c AL |
833 | } |
834 | } | |
835 | ||
a36a344d | 836 | static int pci_unregister_device(DeviceState *dev) |
5851e08c | 837 | { |
40021f08 AL |
838 | PCIDevice *pci_dev = PCI_DEVICE(dev); |
839 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); | |
5851e08c AL |
840 | int ret = 0; |
841 | ||
40021f08 AL |
842 | if (pc->exit) |
843 | ret = pc->exit(pci_dev); | |
5851e08c AL |
844 | if (ret) |
845 | return ret; | |
846 | ||
847 | pci_unregister_io_regions(pci_dev); | |
230741dc | 848 | pci_del_option_rom(pci_dev); |
925fe64a | 849 | do_pci_unregister_device(pci_dev); |
5851e08c AL |
850 | return 0; |
851 | } | |
852 | ||
e824b2cc AK |
853 | void pci_register_bar(PCIDevice *pci_dev, int region_num, |
854 | uint8_t type, MemoryRegion *memory) | |
69b91039 FB |
855 | { |
856 | PCIIORegion *r; | |
d7ce493a | 857 | uint32_t addr; |
5a9ff381 | 858 | uint64_t wmask; |
cfc0be25 | 859 | pcibus_t size = memory_region_size(memory); |
a4c20c6a | 860 | |
2bbb9c2f IY |
861 | assert(region_num >= 0); |
862 | assert(region_num < PCI_NUM_REGIONS); | |
a4c20c6a AL |
863 | if (size & (size-1)) { |
864 | fprintf(stderr, "ERROR: PCI region size must be pow2 " | |
89e8b13c | 865 | "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size); |
a4c20c6a AL |
866 | exit(1); |
867 | } | |
868 | ||
69b91039 | 869 | r = &pci_dev->io_regions[region_num]; |
182f9c8a | 870 | r->addr = PCI_BAR_UNMAPPED; |
69b91039 FB |
871 | r->size = size; |
872 | r->type = type; | |
79ff8cb0 | 873 | r->memory = NULL; |
b7ee1603 MT |
874 | |
875 | wmask = ~(size - 1); | |
b3b11697 | 876 | addr = pci_bar(pci_dev, region_num); |
d7ce493a | 877 | if (region_num == PCI_ROM_SLOT) { |
ebabb67a | 878 | /* ROM enable bit is writable */ |
5330de09 | 879 | wmask |= PCI_ROM_ADDRESS_ENABLE; |
d7ce493a | 880 | } |
b0ff8eb2 | 881 | pci_set_long(pci_dev->config + addr, type); |
14421258 IY |
882 | if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) && |
883 | r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { | |
884 | pci_set_quad(pci_dev->wmask + addr, wmask); | |
885 | pci_set_quad(pci_dev->cmask + addr, ~0ULL); | |
886 | } else { | |
887 | pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff); | |
888 | pci_set_long(pci_dev->cmask + addr, 0xffffffff); | |
889 | } | |
79ff8cb0 | 890 | pci_dev->io_regions[region_num].memory = memory; |
5968eca3 | 891 | pci_dev->io_regions[region_num].address_space |
cfc0be25 | 892 | = type & PCI_BASE_ADDRESS_SPACE_IO |
5968eca3 AK |
893 | ? pci_dev->bus->address_space_io |
894 | : pci_dev->bus->address_space_mem; | |
79ff8cb0 AK |
895 | } |
896 | ||
16a96f28 AK |
897 | pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num) |
898 | { | |
899 | return pci_dev->io_regions[region_num].addr; | |
900 | } | |
901 | ||
876a350d MT |
902 | static pcibus_t pci_bar_address(PCIDevice *d, |
903 | int reg, uint8_t type, pcibus_t size) | |
904 | { | |
905 | pcibus_t new_addr, last_addr; | |
906 | int bar = pci_bar(d, reg); | |
907 | uint16_t cmd = pci_get_word(d->config + PCI_COMMAND); | |
908 | ||
909 | if (type & PCI_BASE_ADDRESS_SPACE_IO) { | |
910 | if (!(cmd & PCI_COMMAND_IO)) { | |
911 | return PCI_BAR_UNMAPPED; | |
912 | } | |
913 | new_addr = pci_get_long(d->config + bar) & ~(size - 1); | |
914 | last_addr = new_addr + size - 1; | |
915 | /* NOTE: we have only 64K ioports on PC */ | |
916 | if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) { | |
917 | return PCI_BAR_UNMAPPED; | |
918 | } | |
919 | return new_addr; | |
920 | } | |
921 | ||
922 | if (!(cmd & PCI_COMMAND_MEMORY)) { | |
923 | return PCI_BAR_UNMAPPED; | |
924 | } | |
925 | if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) { | |
926 | new_addr = pci_get_quad(d->config + bar); | |
927 | } else { | |
928 | new_addr = pci_get_long(d->config + bar); | |
929 | } | |
930 | /* the ROM slot has a specific enable bit */ | |
931 | if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) { | |
932 | return PCI_BAR_UNMAPPED; | |
933 | } | |
934 | new_addr &= ~(size - 1); | |
935 | last_addr = new_addr + size - 1; | |
936 | /* NOTE: we do not support wrapping */ | |
937 | /* XXX: as we cannot support really dynamic | |
938 | mappings, we handle specific values as invalid | |
939 | mappings. */ | |
940 | if (last_addr <= new_addr || new_addr == 0 || | |
941 | last_addr == PCI_BAR_UNMAPPED) { | |
942 | return PCI_BAR_UNMAPPED; | |
943 | } | |
944 | ||
945 | /* Now pcibus_t is 64bit. | |
946 | * Check if 32 bit BAR wraps around explicitly. | |
947 | * Without this, PC ide doesn't work well. | |
948 | * TODO: remove this work around. | |
949 | */ | |
950 | if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) { | |
951 | return PCI_BAR_UNMAPPED; | |
952 | } | |
953 | ||
954 | /* | |
955 | * OS is allowed to set BAR beyond its addressable | |
956 | * bits. For example, 32 bit OS can set 64bit bar | |
957 | * to >4G. Check it. TODO: we might need to support | |
958 | * it in the future for e.g. PAE. | |
959 | */ | |
960 | if (last_addr >= TARGET_PHYS_ADDR_MAX) { | |
961 | return PCI_BAR_UNMAPPED; | |
962 | } | |
963 | ||
964 | return new_addr; | |
965 | } | |
966 | ||
0ac32c83 FB |
967 | static void pci_update_mappings(PCIDevice *d) |
968 | { | |
969 | PCIIORegion *r; | |
876a350d | 970 | int i; |
7df32ca0 | 971 | pcibus_t new_addr; |
3b46e624 | 972 | |
8a8696a3 | 973 | for(i = 0; i < PCI_NUM_REGIONS; i++) { |
0ac32c83 | 974 | r = &d->io_regions[i]; |
a9688570 IY |
975 | |
976 | /* this region isn't registered */ | |
ec503442 | 977 | if (!r->size) |
a9688570 IY |
978 | continue; |
979 | ||
876a350d | 980 | new_addr = pci_bar_address(d, i, r->type, r->size); |
a9688570 IY |
981 | |
982 | /* This bar isn't changed */ | |
7df32ca0 | 983 | if (new_addr == r->addr) |
a9688570 IY |
984 | continue; |
985 | ||
986 | /* now do the real mapping */ | |
987 | if (r->addr != PCI_BAR_UNMAPPED) { | |
03952339 | 988 | memory_region_del_subregion(r->address_space, r->memory); |
0ac32c83 | 989 | } |
a9688570 IY |
990 | r->addr = new_addr; |
991 | if (r->addr != PCI_BAR_UNMAPPED) { | |
8b881e77 AK |
992 | memory_region_add_subregion_overlap(r->address_space, |
993 | r->addr, r->memory, 1); | |
a9688570 | 994 | } |
0ac32c83 FB |
995 | } |
996 | } | |
997 | ||
a7b15a5c MT |
998 | static inline int pci_irq_disabled(PCIDevice *d) |
999 | { | |
1000 | return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE; | |
1001 | } | |
1002 | ||
1003 | /* Called after interrupt disabled field update in config space, | |
1004 | * assert/deassert interrupts if necessary. | |
1005 | * Gets original interrupt disable bit value (before update). */ | |
1006 | static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled) | |
1007 | { | |
1008 | int i, disabled = pci_irq_disabled(d); | |
1009 | if (disabled == was_irq_disabled) | |
1010 | return; | |
1011 | for (i = 0; i < PCI_NUM_PINS; ++i) { | |
1012 | int state = pci_irq_state(d, i); | |
1013 | pci_change_irq_level(d, i, disabled ? -state : state); | |
1014 | } | |
1015 | } | |
1016 | ||
5fafdf24 | 1017 | uint32_t pci_default_read_config(PCIDevice *d, |
0ac32c83 | 1018 | uint32_t address, int len) |
69b91039 | 1019 | { |
5029fe12 | 1020 | uint32_t val = 0; |
42e4126b | 1021 | |
5029fe12 IY |
1022 | memcpy(&val, d->config + address, len); |
1023 | return le32_to_cpu(val); | |
0ac32c83 FB |
1024 | } |
1025 | ||
b7ee1603 | 1026 | void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l) |
0ac32c83 | 1027 | { |
a7b15a5c | 1028 | int i, was_irq_disabled = pci_irq_disabled(d); |
0ac32c83 | 1029 | |
42e4126b | 1030 | for (i = 0; i < l; val >>= 8, ++i) { |
91011d4f | 1031 | uint8_t wmask = d->wmask[addr + i]; |
92ba5f51 IY |
1032 | uint8_t w1cmask = d->w1cmask[addr + i]; |
1033 | assert(!(wmask & w1cmask)); | |
91011d4f | 1034 | d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask); |
92ba5f51 | 1035 | d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */ |
0ac32c83 | 1036 | } |
260c0cd3 | 1037 | if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) || |
edb00035 IY |
1038 | ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) || |
1039 | ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) || | |
260c0cd3 | 1040 | range_covers_byte(addr, l, PCI_COMMAND)) |
0ac32c83 | 1041 | pci_update_mappings(d); |
a7b15a5c MT |
1042 | |
1043 | if (range_covers_byte(addr, l, PCI_COMMAND)) | |
1044 | pci_update_irq_disabled(d, was_irq_disabled); | |
95d65800 JK |
1045 | |
1046 | msi_write_config(d, addr, val, l); | |
1047 | msix_write_config(d, addr, val, l); | |
69b91039 FB |
1048 | } |
1049 | ||
502a5395 PB |
1050 | /***********************************************************/ |
1051 | /* generic PCI irq support */ | |
30468f78 | 1052 | |
502a5395 | 1053 | /* 0 <= irq_num <= 3. level must be 0 or 1 */ |
d537cf6c | 1054 | static void pci_set_irq(void *opaque, int irq_num, int level) |
69b91039 | 1055 | { |
a60380a5 | 1056 | PCIDevice *pci_dev = opaque; |
80b3ada7 | 1057 | int change; |
3b46e624 | 1058 | |
d036bb21 | 1059 | change = level - pci_irq_state(pci_dev, irq_num); |
80b3ada7 PB |
1060 | if (!change) |
1061 | return; | |
d2b59317 | 1062 | |
d036bb21 | 1063 | pci_set_irq_state(pci_dev, irq_num, level); |
f9bf77dd | 1064 | pci_update_irq_status(pci_dev); |
a7b15a5c MT |
1065 | if (pci_irq_disabled(pci_dev)) |
1066 | return; | |
d036bb21 | 1067 | pci_change_irq_level(pci_dev, irq_num, change); |
69b91039 FB |
1068 | } |
1069 | ||
502a5395 PB |
1070 | /***********************************************************/ |
1071 | /* monitor info on PCI */ | |
0ac32c83 | 1072 | |
6650ee6d PB |
1073 | typedef struct { |
1074 | uint16_t class; | |
1075 | const char *desc; | |
5e0259e7 GN |
1076 | const char *fw_name; |
1077 | uint16_t fw_ign_bits; | |
6650ee6d PB |
1078 | } pci_class_desc; |
1079 | ||
09bc878a | 1080 | static const pci_class_desc pci_class_descriptions[] = |
6650ee6d | 1081 | { |
5e0259e7 GN |
1082 | { 0x0001, "VGA controller", "display"}, |
1083 | { 0x0100, "SCSI controller", "scsi"}, | |
1084 | { 0x0101, "IDE controller", "ide"}, | |
1085 | { 0x0102, "Floppy controller", "fdc"}, | |
1086 | { 0x0103, "IPI controller", "ipi"}, | |
1087 | { 0x0104, "RAID controller", "raid"}, | |
dcb5b19a TS |
1088 | { 0x0106, "SATA controller"}, |
1089 | { 0x0107, "SAS controller"}, | |
1090 | { 0x0180, "Storage controller"}, | |
5e0259e7 GN |
1091 | { 0x0200, "Ethernet controller", "ethernet"}, |
1092 | { 0x0201, "Token Ring controller", "token-ring"}, | |
1093 | { 0x0202, "FDDI controller", "fddi"}, | |
1094 | { 0x0203, "ATM controller", "atm"}, | |
dcb5b19a | 1095 | { 0x0280, "Network controller"}, |
5e0259e7 | 1096 | { 0x0300, "VGA controller", "display", 0x00ff}, |
dcb5b19a TS |
1097 | { 0x0301, "XGA controller"}, |
1098 | { 0x0302, "3D controller"}, | |
1099 | { 0x0380, "Display controller"}, | |
5e0259e7 GN |
1100 | { 0x0400, "Video controller", "video"}, |
1101 | { 0x0401, "Audio controller", "sound"}, | |
dcb5b19a | 1102 | { 0x0402, "Phone"}, |
602ef4d9 | 1103 | { 0x0403, "Audio controller", "sound"}, |
dcb5b19a | 1104 | { 0x0480, "Multimedia controller"}, |
5e0259e7 GN |
1105 | { 0x0500, "RAM controller", "memory"}, |
1106 | { 0x0501, "Flash controller", "flash"}, | |
dcb5b19a | 1107 | { 0x0580, "Memory controller"}, |
5e0259e7 GN |
1108 | { 0x0600, "Host bridge", "host"}, |
1109 | { 0x0601, "ISA bridge", "isa"}, | |
1110 | { 0x0602, "EISA bridge", "eisa"}, | |
1111 | { 0x0603, "MC bridge", "mca"}, | |
1112 | { 0x0604, "PCI bridge", "pci"}, | |
1113 | { 0x0605, "PCMCIA bridge", "pcmcia"}, | |
1114 | { 0x0606, "NUBUS bridge", "nubus"}, | |
1115 | { 0x0607, "CARDBUS bridge", "cardbus"}, | |
dcb5b19a TS |
1116 | { 0x0608, "RACEWAY bridge"}, |
1117 | { 0x0680, "Bridge"}, | |
5e0259e7 GN |
1118 | { 0x0700, "Serial port", "serial"}, |
1119 | { 0x0701, "Parallel port", "parallel"}, | |
1120 | { 0x0800, "Interrupt controller", "interrupt-controller"}, | |
1121 | { 0x0801, "DMA controller", "dma-controller"}, | |
1122 | { 0x0802, "Timer", "timer"}, | |
1123 | { 0x0803, "RTC", "rtc"}, | |
1124 | { 0x0900, "Keyboard", "keyboard"}, | |
1125 | { 0x0901, "Pen", "pen"}, | |
1126 | { 0x0902, "Mouse", "mouse"}, | |
1127 | { 0x0A00, "Dock station", "dock", 0x00ff}, | |
1128 | { 0x0B00, "i386 cpu", "cpu", 0x00ff}, | |
1129 | { 0x0c00, "Fireware contorller", "fireware"}, | |
1130 | { 0x0c01, "Access bus controller", "access-bus"}, | |
1131 | { 0x0c02, "SSA controller", "ssa"}, | |
1132 | { 0x0c03, "USB controller", "usb"}, | |
1133 | { 0x0c04, "Fibre channel controller", "fibre-channel"}, | |
6650ee6d PB |
1134 | { 0, NULL} |
1135 | }; | |
1136 | ||
163c8a59 LC |
1137 | static void pci_for_each_device_under_bus(PCIBus *bus, |
1138 | void (*fn)(PCIBus *b, PCIDevice *d)) | |
30468f78 | 1139 | { |
163c8a59 LC |
1140 | PCIDevice *d; |
1141 | int devfn; | |
30468f78 | 1142 | |
163c8a59 LC |
1143 | for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { |
1144 | d = bus->devices[devfn]; | |
1145 | if (d) { | |
1146 | fn(bus, d); | |
1147 | } | |
1148 | } | |
1149 | } | |
1150 | ||
1151 | void pci_for_each_device(PCIBus *bus, int bus_num, | |
1152 | void (*fn)(PCIBus *b, PCIDevice *d)) | |
1153 | { | |
d662210a | 1154 | bus = pci_find_bus_nr(bus, bus_num); |
163c8a59 LC |
1155 | |
1156 | if (bus) { | |
1157 | pci_for_each_device_under_bus(bus, fn); | |
1158 | } | |
1159 | } | |
1160 | ||
79627472 | 1161 | static const pci_class_desc *get_class_desc(int class) |
163c8a59 | 1162 | { |
79627472 | 1163 | const pci_class_desc *desc; |
163c8a59 | 1164 | |
79627472 LC |
1165 | desc = pci_class_descriptions; |
1166 | while (desc->desc && class != desc->class) { | |
1167 | desc++; | |
30468f78 | 1168 | } |
b4dccd8d | 1169 | |
79627472 LC |
1170 | return desc; |
1171 | } | |
14421258 | 1172 | |
79627472 | 1173 | static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num); |
163c8a59 | 1174 | |
79627472 LC |
1175 | static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev) |
1176 | { | |
1177 | PciMemoryRegionList *head = NULL, *cur_item = NULL; | |
1178 | int i; | |
163c8a59 | 1179 | |
79627472 LC |
1180 | for (i = 0; i < PCI_NUM_REGIONS; i++) { |
1181 | const PCIIORegion *r = &dev->io_regions[i]; | |
1182 | PciMemoryRegionList *region; | |
1183 | ||
1184 | if (!r->size) { | |
1185 | continue; | |
502a5395 | 1186 | } |
163c8a59 | 1187 | |
79627472 LC |
1188 | region = g_malloc0(sizeof(*region)); |
1189 | region->value = g_malloc0(sizeof(*region->value)); | |
163c8a59 | 1190 | |
79627472 LC |
1191 | if (r->type & PCI_BASE_ADDRESS_SPACE_IO) { |
1192 | region->value->type = g_strdup("io"); | |
1193 | } else { | |
1194 | region->value->type = g_strdup("memory"); | |
1195 | region->value->has_prefetch = true; | |
1196 | region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH); | |
1197 | region->value->has_mem_type_64 = true; | |
1198 | region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64); | |
d5e4acf7 | 1199 | } |
163c8a59 | 1200 | |
79627472 LC |
1201 | region->value->bar = i; |
1202 | region->value->address = r->addr; | |
1203 | region->value->size = r->size; | |
163c8a59 | 1204 | |
79627472 LC |
1205 | /* XXX: waiting for the qapi to support GSList */ |
1206 | if (!cur_item) { | |
1207 | head = cur_item = region; | |
1208 | } else { | |
1209 | cur_item->next = region; | |
1210 | cur_item = region; | |
163c8a59 | 1211 | } |
80b3ada7 | 1212 | } |
384d8876 | 1213 | |
79627472 | 1214 | return head; |
163c8a59 LC |
1215 | } |
1216 | ||
79627472 LC |
1217 | static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus, |
1218 | int bus_num) | |
163c8a59 | 1219 | { |
79627472 | 1220 | PciBridgeInfo *info; |
163c8a59 | 1221 | |
79627472 | 1222 | info = g_malloc0(sizeof(*info)); |
163c8a59 | 1223 | |
79627472 LC |
1224 | info->bus.number = dev->config[PCI_PRIMARY_BUS]; |
1225 | info->bus.secondary = dev->config[PCI_SECONDARY_BUS]; | |
1226 | info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS]; | |
163c8a59 | 1227 | |
79627472 LC |
1228 | info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range)); |
1229 | info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO); | |
1230 | info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO); | |
163c8a59 | 1231 | |
79627472 LC |
1232 | info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range)); |
1233 | info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); | |
1234 | info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); | |
163c8a59 | 1235 | |
79627472 LC |
1236 | info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range)); |
1237 | info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); | |
1238 | info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); | |
163c8a59 | 1239 | |
79627472 | 1240 | if (dev->config[PCI_SECONDARY_BUS] != 0) { |
d662210a | 1241 | PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]); |
79627472 LC |
1242 | if (child_bus) { |
1243 | info->has_devices = true; | |
1244 | info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]); | |
1245 | } | |
163c8a59 LC |
1246 | } |
1247 | ||
79627472 | 1248 | return info; |
163c8a59 LC |
1249 | } |
1250 | ||
79627472 LC |
1251 | static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus, |
1252 | int bus_num) | |
163c8a59 | 1253 | { |
79627472 LC |
1254 | const pci_class_desc *desc; |
1255 | PciDeviceInfo *info; | |
b5937f29 | 1256 | uint8_t type; |
79627472 | 1257 | int class; |
163c8a59 | 1258 | |
79627472 LC |
1259 | info = g_malloc0(sizeof(*info)); |
1260 | info->bus = bus_num; | |
1261 | info->slot = PCI_SLOT(dev->devfn); | |
1262 | info->function = PCI_FUNC(dev->devfn); | |
1263 | ||
1264 | class = pci_get_word(dev->config + PCI_CLASS_DEVICE); | |
1265 | info->class_info.class = class; | |
1266 | desc = get_class_desc(class); | |
1267 | if (desc->desc) { | |
1268 | info->class_info.has_desc = true; | |
1269 | info->class_info.desc = g_strdup(desc->desc); | |
1270 | } | |
1271 | ||
1272 | info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID); | |
1273 | info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID); | |
1274 | info->regions = qmp_query_pci_regions(dev); | |
1275 | info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : ""); | |
163c8a59 LC |
1276 | |
1277 | if (dev->config[PCI_INTERRUPT_PIN] != 0) { | |
79627472 LC |
1278 | info->has_irq = true; |
1279 | info->irq = dev->config[PCI_INTERRUPT_LINE]; | |
163c8a59 LC |
1280 | } |
1281 | ||
b5937f29 IY |
1282 | type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; |
1283 | if (type == PCI_HEADER_TYPE_BRIDGE) { | |
79627472 LC |
1284 | info->has_pci_bridge = true; |
1285 | info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num); | |
163c8a59 LC |
1286 | } |
1287 | ||
79627472 | 1288 | return info; |
163c8a59 LC |
1289 | } |
1290 | ||
79627472 | 1291 | static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num) |
384d8876 | 1292 | { |
79627472 | 1293 | PciDeviceInfoList *info, *head = NULL, *cur_item = NULL; |
163c8a59 | 1294 | PCIDevice *dev; |
79627472 | 1295 | int devfn; |
163c8a59 LC |
1296 | |
1297 | for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { | |
1298 | dev = bus->devices[devfn]; | |
1299 | if (dev) { | |
79627472 LC |
1300 | info = g_malloc0(sizeof(*info)); |
1301 | info->value = qmp_query_pci_device(dev, bus, bus_num); | |
1302 | ||
1303 | /* XXX: waiting for the qapi to support GSList */ | |
1304 | if (!cur_item) { | |
1305 | head = cur_item = info; | |
1306 | } else { | |
1307 | cur_item->next = info; | |
1308 | cur_item = info; | |
1309 | } | |
163c8a59 | 1310 | } |
1074df4f | 1311 | } |
163c8a59 | 1312 | |
79627472 | 1313 | return head; |
1074df4f IY |
1314 | } |
1315 | ||
79627472 | 1316 | static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num) |
1074df4f | 1317 | { |
79627472 LC |
1318 | PciInfo *info = NULL; |
1319 | ||
d662210a | 1320 | bus = pci_find_bus_nr(bus, bus_num); |
502a5395 | 1321 | if (bus) { |
79627472 LC |
1322 | info = g_malloc0(sizeof(*info)); |
1323 | info->bus = bus_num; | |
1324 | info->devices = qmp_query_pci_devices(bus, bus_num); | |
f2aa58c6 | 1325 | } |
163c8a59 | 1326 | |
79627472 | 1327 | return info; |
f2aa58c6 FB |
1328 | } |
1329 | ||
79627472 | 1330 | PciInfoList *qmp_query_pci(Error **errp) |
f2aa58c6 | 1331 | { |
79627472 | 1332 | PciInfoList *info, *head = NULL, *cur_item = NULL; |
e822a52a | 1333 | struct PCIHostBus *host; |
163c8a59 | 1334 | |
e822a52a | 1335 | QLIST_FOREACH(host, &host_buses, next) { |
79627472 LC |
1336 | info = g_malloc0(sizeof(*info)); |
1337 | info->value = qmp_query_pci_bus(host->bus, 0); | |
1338 | ||
1339 | /* XXX: waiting for the qapi to support GSList */ | |
1340 | if (!cur_item) { | |
1341 | head = cur_item = info; | |
1342 | } else { | |
1343 | cur_item->next = info; | |
1344 | cur_item = info; | |
163c8a59 | 1345 | } |
e822a52a | 1346 | } |
163c8a59 | 1347 | |
79627472 | 1348 | return head; |
77d4bc34 | 1349 | } |
a41b2ff2 | 1350 | |
cb457d76 AL |
1351 | static const char * const pci_nic_models[] = { |
1352 | "ne2k_pci", | |
1353 | "i82551", | |
1354 | "i82557b", | |
1355 | "i82559er", | |
1356 | "rtl8139", | |
1357 | "e1000", | |
1358 | "pcnet", | |
1359 | "virtio", | |
1360 | NULL | |
1361 | }; | |
1362 | ||
9d07d757 PB |
1363 | static const char * const pci_nic_names[] = { |
1364 | "ne2k_pci", | |
1365 | "i82551", | |
1366 | "i82557b", | |
1367 | "i82559er", | |
1368 | "rtl8139", | |
1369 | "e1000", | |
1370 | "pcnet", | |
53c25cea | 1371 | "virtio-net-pci", |
cb457d76 AL |
1372 | NULL |
1373 | }; | |
1374 | ||
a41b2ff2 | 1375 | /* Initialize a PCI NIC. */ |
33e66b86 | 1376 | /* FIXME callers should check for failure, but don't */ |
5607c388 MA |
1377 | PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model, |
1378 | const char *default_devaddr) | |
a41b2ff2 | 1379 | { |
5607c388 | 1380 | const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr; |
07caea31 MA |
1381 | PCIBus *bus; |
1382 | int devfn; | |
5607c388 | 1383 | PCIDevice *pci_dev; |
9d07d757 | 1384 | DeviceState *dev; |
cb457d76 AL |
1385 | int i; |
1386 | ||
07caea31 MA |
1387 | i = qemu_find_nic_model(nd, pci_nic_models, default_model); |
1388 | if (i < 0) | |
1389 | return NULL; | |
1390 | ||
1391 | bus = pci_get_bus_devfn(&devfn, devaddr); | |
1392 | if (!bus) { | |
1ecda02b MA |
1393 | error_report("Invalid PCI device address %s for device %s", |
1394 | devaddr, pci_nic_names[i]); | |
07caea31 MA |
1395 | return NULL; |
1396 | } | |
1397 | ||
499cf102 | 1398 | pci_dev = pci_create(bus, devfn, pci_nic_names[i]); |
9ee05825 | 1399 | dev = &pci_dev->qdev; |
1cc33683 | 1400 | qdev_set_nic_properties(dev, nd); |
07caea31 MA |
1401 | if (qdev_init(dev) < 0) |
1402 | return NULL; | |
9ee05825 | 1403 | return pci_dev; |
a41b2ff2 PB |
1404 | } |
1405 | ||
07caea31 MA |
1406 | PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model, |
1407 | const char *default_devaddr) | |
1408 | { | |
1409 | PCIDevice *res; | |
1410 | ||
1411 | if (qemu_show_nic_models(nd->model, pci_nic_models)) | |
1412 | exit(0); | |
1413 | ||
1414 | res = pci_nic_init(nd, default_model, default_devaddr); | |
1415 | if (!res) | |
1416 | exit(1); | |
1417 | return res; | |
1418 | } | |
1419 | ||
929176c3 MT |
1420 | /* Whether a given bus number is in range of the secondary |
1421 | * bus of the given bridge device. */ | |
1422 | static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num) | |
1423 | { | |
1424 | return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) & | |
1425 | PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ && | |
1426 | dev->config[PCI_SECONDARY_BUS] < bus_num && | |
1427 | bus_num <= dev->config[PCI_SUBORDINATE_BUS]; | |
1428 | } | |
1429 | ||
d662210a | 1430 | static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num) |
3ae80618 | 1431 | { |
470e6363 | 1432 | PCIBus *sec; |
3ae80618 | 1433 | |
470e6363 | 1434 | if (!bus) { |
e822a52a | 1435 | return NULL; |
470e6363 | 1436 | } |
3ae80618 | 1437 | |
e822a52a IY |
1438 | if (pci_bus_num(bus) == bus_num) { |
1439 | return bus; | |
1440 | } | |
1441 | ||
929176c3 MT |
1442 | /* Consider all bus numbers in range for the host pci bridge. */ |
1443 | if (bus->parent_dev && | |
1444 | !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) { | |
1445 | return NULL; | |
1446 | } | |
1447 | ||
e822a52a | 1448 | /* try child bus */ |
929176c3 MT |
1449 | for (; bus; bus = sec) { |
1450 | QLIST_FOREACH(sec, &bus->child, sibling) { | |
1451 | assert(sec->parent_dev); | |
1452 | if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) { | |
1453 | return sec; | |
1454 | } | |
1455 | if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) { | |
1456 | break; | |
c021f8e6 | 1457 | } |
e822a52a IY |
1458 | } |
1459 | } | |
1460 | ||
1461 | return NULL; | |
3ae80618 AL |
1462 | } |
1463 | ||
5256d8bf | 1464 | PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn) |
3ae80618 | 1465 | { |
d662210a | 1466 | bus = pci_find_bus_nr(bus, bus_num); |
3ae80618 AL |
1467 | |
1468 | if (!bus) | |
1469 | return NULL; | |
1470 | ||
5256d8bf | 1471 | return bus->devices[devfn]; |
3ae80618 AL |
1472 | } |
1473 | ||
d307af79 | 1474 | static int pci_qdev_init(DeviceState *qdev) |
6b1b92d3 PB |
1475 | { |
1476 | PCIDevice *pci_dev = (PCIDevice *)qdev; | |
40021f08 | 1477 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); |
6b1b92d3 | 1478 | PCIBus *bus; |
113f89df | 1479 | int rc; |
ab85ceb1 | 1480 | bool is_default_rom; |
6b1b92d3 | 1481 | |
a9f49946 | 1482 | /* initialize cap_present for pci_is_express() and pci_config_size() */ |
40021f08 | 1483 | if (pc->is_express) { |
a9f49946 IY |
1484 | pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS; |
1485 | } | |
1486 | ||
02e2da45 | 1487 | bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev)); |
6e008585 AL |
1488 | pci_dev = do_pci_register_device(pci_dev, bus, |
1489 | object_get_typename(OBJECT(qdev)), | |
1490 | pci_dev->devfn); | |
09e3acc6 GH |
1491 | if (pci_dev == NULL) |
1492 | return -1; | |
40021f08 | 1493 | if (qdev->hotplugged && pc->no_hotplug) { |
f79f2bfc | 1494 | qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(pci_dev))); |
180c22e1 GH |
1495 | do_pci_unregister_device(pci_dev); |
1496 | return -1; | |
1497 | } | |
40021f08 AL |
1498 | if (pc->init) { |
1499 | rc = pc->init(pci_dev); | |
c2afc922 IY |
1500 | if (rc != 0) { |
1501 | do_pci_unregister_device(pci_dev); | |
1502 | return rc; | |
1503 | } | |
925fe64a | 1504 | } |
8c52c8f3 GH |
1505 | |
1506 | /* rom loading */ | |
ab85ceb1 | 1507 | is_default_rom = false; |
40021f08 AL |
1508 | if (pci_dev->romfile == NULL && pc->romfile != NULL) { |
1509 | pci_dev->romfile = g_strdup(pc->romfile); | |
ab85ceb1 SW |
1510 | is_default_rom = true; |
1511 | } | |
1512 | pci_add_option_rom(pci_dev, is_default_rom); | |
8c52c8f3 | 1513 | |
5beb8ad5 | 1514 | if (bus->hotplug) { |
e927d487 MT |
1515 | /* Let buses differentiate between hotplug and when device is |
1516 | * enabled during qemu machine creation. */ | |
1517 | rc = bus->hotplug(bus->hotplug_qdev, pci_dev, | |
1518 | qdev->hotplugged ? PCI_HOTPLUG_ENABLED: | |
1519 | PCI_COLDPLUG_ENABLED); | |
a213ff63 IY |
1520 | if (rc != 0) { |
1521 | int r = pci_unregister_device(&pci_dev->qdev); | |
1522 | assert(!r); | |
1523 | return rc; | |
1524 | } | |
1525 | } | |
ee995ffb GH |
1526 | return 0; |
1527 | } | |
1528 | ||
1529 | static int pci_unplug_device(DeviceState *qdev) | |
1530 | { | |
40021f08 AL |
1531 | PCIDevice *dev = PCI_DEVICE(qdev); |
1532 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); | |
ee995ffb | 1533 | |
40021f08 | 1534 | if (pc->no_hotplug) { |
f79f2bfc | 1535 | qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(dev))); |
180c22e1 GH |
1536 | return -1; |
1537 | } | |
e927d487 MT |
1538 | return dev->bus->hotplug(dev->bus->hotplug_qdev, dev, |
1539 | PCI_HOTPLUG_DISABLED); | |
6b1b92d3 PB |
1540 | } |
1541 | ||
49823868 IY |
1542 | PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction, |
1543 | const char *name) | |
6b1b92d3 PB |
1544 | { |
1545 | DeviceState *dev; | |
1546 | ||
02e2da45 | 1547 | dev = qdev_create(&bus->qbus, name); |
a6307b08 | 1548 | qdev_prop_set_uint32(dev, "addr", devfn); |
49823868 | 1549 | qdev_prop_set_bit(dev, "multifunction", multifunction); |
40021f08 | 1550 | return PCI_DEVICE(dev); |
71077c1c | 1551 | } |
6b1b92d3 | 1552 | |
49823868 IY |
1553 | PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn, |
1554 | bool multifunction, | |
1555 | const char *name) | |
71077c1c | 1556 | { |
49823868 | 1557 | PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name); |
e23a1b33 | 1558 | qdev_init_nofail(&dev->qdev); |
71077c1c | 1559 | return dev; |
6b1b92d3 | 1560 | } |
6f4cbd39 | 1561 | |
49823868 IY |
1562 | PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name) |
1563 | { | |
1564 | return pci_create_multifunction(bus, devfn, false, name); | |
1565 | } | |
1566 | ||
1567 | PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name) | |
1568 | { | |
1569 | return pci_create_simple_multifunction(bus, devfn, false, name); | |
1570 | } | |
1571 | ||
6f4cbd39 MT |
1572 | static int pci_find_space(PCIDevice *pdev, uint8_t size) |
1573 | { | |
a9f49946 | 1574 | int config_size = pci_config_size(pdev); |
6f4cbd39 MT |
1575 | int offset = PCI_CONFIG_HEADER_SIZE; |
1576 | int i; | |
a9f49946 | 1577 | for (i = PCI_CONFIG_HEADER_SIZE; i < config_size; ++i) |
6f4cbd39 MT |
1578 | if (pdev->used[i]) |
1579 | offset = i + 1; | |
1580 | else if (i - offset + 1 == size) | |
1581 | return offset; | |
1582 | return 0; | |
1583 | } | |
1584 | ||
1585 | static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id, | |
1586 | uint8_t *prev_p) | |
1587 | { | |
1588 | uint8_t next, prev; | |
1589 | ||
1590 | if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST)) | |
1591 | return 0; | |
1592 | ||
1593 | for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); | |
1594 | prev = next + PCI_CAP_LIST_NEXT) | |
1595 | if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id) | |
1596 | break; | |
1597 | ||
1598 | if (prev_p) | |
1599 | *prev_p = prev; | |
1600 | return next; | |
1601 | } | |
1602 | ||
c9abe111 JK |
1603 | static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset) |
1604 | { | |
1605 | uint8_t next, prev, found = 0; | |
1606 | ||
1607 | if (!(pdev->used[offset])) { | |
1608 | return 0; | |
1609 | } | |
1610 | ||
1611 | assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST); | |
1612 | ||
1613 | for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); | |
1614 | prev = next + PCI_CAP_LIST_NEXT) { | |
1615 | if (next <= offset && next > found) { | |
1616 | found = next; | |
1617 | } | |
1618 | } | |
1619 | return found; | |
1620 | } | |
1621 | ||
ab85ceb1 SW |
1622 | /* Patch the PCI vendor and device ids in a PCI rom image if necessary. |
1623 | This is needed for an option rom which is used for more than one device. */ | |
1624 | static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size) | |
1625 | { | |
1626 | uint16_t vendor_id; | |
1627 | uint16_t device_id; | |
1628 | uint16_t rom_vendor_id; | |
1629 | uint16_t rom_device_id; | |
1630 | uint16_t rom_magic; | |
1631 | uint16_t pcir_offset; | |
1632 | uint8_t checksum; | |
1633 | ||
1634 | /* Words in rom data are little endian (like in PCI configuration), | |
1635 | so they can be read / written with pci_get_word / pci_set_word. */ | |
1636 | ||
1637 | /* Only a valid rom will be patched. */ | |
1638 | rom_magic = pci_get_word(ptr); | |
1639 | if (rom_magic != 0xaa55) { | |
1640 | PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic); | |
1641 | return; | |
1642 | } | |
1643 | pcir_offset = pci_get_word(ptr + 0x18); | |
1644 | if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) { | |
1645 | PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset); | |
1646 | return; | |
1647 | } | |
1648 | ||
1649 | vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID); | |
1650 | device_id = pci_get_word(pdev->config + PCI_DEVICE_ID); | |
1651 | rom_vendor_id = pci_get_word(ptr + pcir_offset + 4); | |
1652 | rom_device_id = pci_get_word(ptr + pcir_offset + 6); | |
1653 | ||
1654 | PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile, | |
1655 | vendor_id, device_id, rom_vendor_id, rom_device_id); | |
1656 | ||
1657 | checksum = ptr[6]; | |
1658 | ||
1659 | if (vendor_id != rom_vendor_id) { | |
1660 | /* Patch vendor id and checksum (at offset 6 for etherboot roms). */ | |
1661 | checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8); | |
1662 | checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8); | |
1663 | PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); | |
1664 | ptr[6] = checksum; | |
1665 | pci_set_word(ptr + pcir_offset + 4, vendor_id); | |
1666 | } | |
1667 | ||
1668 | if (device_id != rom_device_id) { | |
1669 | /* Patch device id and checksum (at offset 6 for etherboot roms). */ | |
1670 | checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8); | |
1671 | checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8); | |
1672 | PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); | |
1673 | ptr[6] = checksum; | |
1674 | pci_set_word(ptr + pcir_offset + 6, device_id); | |
1675 | } | |
1676 | } | |
1677 | ||
c2039bd0 | 1678 | /* Add an option rom for the device */ |
ab85ceb1 | 1679 | static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom) |
c2039bd0 AL |
1680 | { |
1681 | int size; | |
1682 | char *path; | |
1683 | void *ptr; | |
1724f049 | 1684 | char name[32]; |
4be9f0d1 | 1685 | const VMStateDescription *vmsd; |
c2039bd0 | 1686 | |
8c52c8f3 GH |
1687 | if (!pdev->romfile) |
1688 | return 0; | |
1689 | if (strlen(pdev->romfile) == 0) | |
1690 | return 0; | |
1691 | ||
88169ddf GH |
1692 | if (!pdev->rom_bar) { |
1693 | /* | |
1694 | * Load rom via fw_cfg instead of creating a rom bar, | |
1695 | * for 0.11 compatibility. | |
1696 | */ | |
1697 | int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE); | |
1698 | if (class == 0x0300) { | |
1699 | rom_add_vga(pdev->romfile); | |
1700 | } else { | |
2e55e842 | 1701 | rom_add_option(pdev->romfile, -1); |
88169ddf GH |
1702 | } |
1703 | return 0; | |
1704 | } | |
1705 | ||
8c52c8f3 | 1706 | path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile); |
c2039bd0 | 1707 | if (path == NULL) { |
7267c094 | 1708 | path = g_strdup(pdev->romfile); |
c2039bd0 AL |
1709 | } |
1710 | ||
1711 | size = get_image_size(path); | |
8c52c8f3 | 1712 | if (size < 0) { |
1ecda02b MA |
1713 | error_report("%s: failed to find romfile \"%s\"", |
1714 | __FUNCTION__, pdev->romfile); | |
7267c094 | 1715 | g_free(path); |
8c52c8f3 GH |
1716 | return -1; |
1717 | } | |
c2039bd0 AL |
1718 | if (size & (size - 1)) { |
1719 | size = 1 << qemu_fls(size); | |
1720 | } | |
1721 | ||
4be9f0d1 AL |
1722 | vmsd = qdev_get_vmsd(DEVICE(pdev)); |
1723 | ||
1724 | if (vmsd) { | |
1725 | snprintf(name, sizeof(name), "%s.rom", vmsd->name); | |
1726 | } else { | |
f79f2bfc | 1727 | snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev))); |
4be9f0d1 | 1728 | } |
14caaf7f | 1729 | pdev->has_rom = true; |
c5705a77 AK |
1730 | memory_region_init_ram(&pdev->rom, name, size); |
1731 | vmstate_register_ram(&pdev->rom, &pdev->qdev); | |
14caaf7f | 1732 | ptr = memory_region_get_ram_ptr(&pdev->rom); |
c2039bd0 | 1733 | load_image(path, ptr); |
7267c094 | 1734 | g_free(path); |
c2039bd0 | 1735 | |
ab85ceb1 SW |
1736 | if (is_default_rom) { |
1737 | /* Only the default rom images will be patched (if needed). */ | |
1738 | pci_patch_ids(pdev, ptr, size); | |
1739 | } | |
1740 | ||
8c12f191 JB |
1741 | qemu_put_ram_ptr(ptr); |
1742 | ||
e824b2cc | 1743 | pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom); |
c2039bd0 AL |
1744 | |
1745 | return 0; | |
1746 | } | |
1747 | ||
230741dc AW |
1748 | static void pci_del_option_rom(PCIDevice *pdev) |
1749 | { | |
14caaf7f | 1750 | if (!pdev->has_rom) |
230741dc AW |
1751 | return; |
1752 | ||
c5705a77 | 1753 | vmstate_unregister_ram(&pdev->rom, &pdev->qdev); |
14caaf7f AK |
1754 | memory_region_destroy(&pdev->rom); |
1755 | pdev->has_rom = false; | |
230741dc AW |
1756 | } |
1757 | ||
ca77089d IY |
1758 | /* |
1759 | * if !offset | |
1760 | * Reserve space and add capability to the linked list in pci config space | |
1761 | * | |
1762 | * if offset = 0, | |
1763 | * Find and reserve space and add capability to the linked list | |
1764 | * in pci config space */ | |
1765 | int pci_add_capability(PCIDevice *pdev, uint8_t cap_id, | |
1766 | uint8_t offset, uint8_t size) | |
6f4cbd39 | 1767 | { |
ca77089d | 1768 | uint8_t *config; |
c9abe111 JK |
1769 | int i, overlapping_cap; |
1770 | ||
ca77089d IY |
1771 | if (!offset) { |
1772 | offset = pci_find_space(pdev, size); | |
1773 | if (!offset) { | |
1774 | return -ENOSPC; | |
1775 | } | |
c9abe111 JK |
1776 | } else { |
1777 | /* Verify that capabilities don't overlap. Note: device assignment | |
1778 | * depends on this check to verify that the device is not broken. | |
1779 | * Should never trigger for emulated devices, but it's helpful | |
1780 | * for debugging these. */ | |
1781 | for (i = offset; i < offset + size; i++) { | |
1782 | overlapping_cap = pci_find_capability_at_offset(pdev, i); | |
1783 | if (overlapping_cap) { | |
1784 | fprintf(stderr, "ERROR: %04x:%02x:%02x.%x " | |
1785 | "Attempt to add PCI capability %x at offset " | |
1786 | "%x overlaps existing capability %x at offset %x\n", | |
1787 | pci_find_domain(pdev->bus), pci_bus_num(pdev->bus), | |
1788 | PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), | |
1789 | cap_id, offset, overlapping_cap, i); | |
1790 | return -EINVAL; | |
1791 | } | |
1792 | } | |
ca77089d IY |
1793 | } |
1794 | ||
1795 | config = pdev->config + offset; | |
6f4cbd39 MT |
1796 | config[PCI_CAP_LIST_ID] = cap_id; |
1797 | config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST]; | |
1798 | pdev->config[PCI_CAPABILITY_LIST] = offset; | |
1799 | pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST; | |
1800 | memset(pdev->used + offset, 0xFF, size); | |
1801 | /* Make capability read-only by default */ | |
1802 | memset(pdev->wmask + offset, 0, size); | |
bd4b65ee MT |
1803 | /* Check capability by default */ |
1804 | memset(pdev->cmask + offset, 0xFF, size); | |
6f4cbd39 MT |
1805 | return offset; |
1806 | } | |
1807 | ||
1808 | /* Unlink capability from the pci config space. */ | |
1809 | void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size) | |
1810 | { | |
1811 | uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev); | |
1812 | if (!offset) | |
1813 | return; | |
1814 | pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT]; | |
ebabb67a | 1815 | /* Make capability writable again */ |
6f4cbd39 | 1816 | memset(pdev->wmask + offset, 0xff, size); |
1a4f5971 | 1817 | memset(pdev->w1cmask + offset, 0, size); |
bd4b65ee MT |
1818 | /* Clear cmask as device-specific registers can't be checked */ |
1819 | memset(pdev->cmask + offset, 0, size); | |
6f4cbd39 MT |
1820 | memset(pdev->used + offset, 0, size); |
1821 | ||
1822 | if (!pdev->config[PCI_CAPABILITY_LIST]) | |
1823 | pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST; | |
1824 | } | |
1825 | ||
6f4cbd39 MT |
1826 | uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id) |
1827 | { | |
1828 | return pci_find_capability_list(pdev, cap_id, NULL); | |
1829 | } | |
10c4c98a GH |
1830 | |
1831 | static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent) | |
1832 | { | |
1833 | PCIDevice *d = (PCIDevice *)dev; | |
1834 | const pci_class_desc *desc; | |
1835 | char ctxt[64]; | |
1836 | PCIIORegion *r; | |
1837 | int i, class; | |
1838 | ||
b0ff8eb2 | 1839 | class = pci_get_word(d->config + PCI_CLASS_DEVICE); |
10c4c98a GH |
1840 | desc = pci_class_descriptions; |
1841 | while (desc->desc && class != desc->class) | |
1842 | desc++; | |
1843 | if (desc->desc) { | |
1844 | snprintf(ctxt, sizeof(ctxt), "%s", desc->desc); | |
1845 | } else { | |
1846 | snprintf(ctxt, sizeof(ctxt), "Class %04x", class); | |
1847 | } | |
1848 | ||
1849 | monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, " | |
1850 | "pci id %04x:%04x (sub %04x:%04x)\n", | |
7f5feab4 | 1851 | indent, "", ctxt, pci_bus_num(d->bus), |
e822a52a | 1852 | PCI_SLOT(d->devfn), PCI_FUNC(d->devfn), |
b0ff8eb2 IY |
1853 | pci_get_word(d->config + PCI_VENDOR_ID), |
1854 | pci_get_word(d->config + PCI_DEVICE_ID), | |
1855 | pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID), | |
1856 | pci_get_word(d->config + PCI_SUBSYSTEM_ID)); | |
10c4c98a GH |
1857 | for (i = 0; i < PCI_NUM_REGIONS; i++) { |
1858 | r = &d->io_regions[i]; | |
1859 | if (!r->size) | |
1860 | continue; | |
89e8b13c IY |
1861 | monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS |
1862 | " [0x%"FMT_PCIBUS"]\n", | |
1863 | indent, "", | |
0392a017 | 1864 | i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem", |
10c4c98a GH |
1865 | r->addr, r->addr + r->size - 1); |
1866 | } | |
1867 | } | |
03587182 | 1868 | |
5e0259e7 GN |
1869 | static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len) |
1870 | { | |
1871 | PCIDevice *d = (PCIDevice *)dev; | |
1872 | const char *name = NULL; | |
1873 | const pci_class_desc *desc = pci_class_descriptions; | |
1874 | int class = pci_get_word(d->config + PCI_CLASS_DEVICE); | |
1875 | ||
1876 | while (desc->desc && | |
1877 | (class & ~desc->fw_ign_bits) != | |
1878 | (desc->class & ~desc->fw_ign_bits)) { | |
1879 | desc++; | |
1880 | } | |
1881 | ||
1882 | if (desc->desc) { | |
1883 | name = desc->fw_name; | |
1884 | } | |
1885 | ||
1886 | if (name) { | |
1887 | pstrcpy(buf, len, name); | |
1888 | } else { | |
1889 | snprintf(buf, len, "pci%04x,%04x", | |
1890 | pci_get_word(d->config + PCI_VENDOR_ID), | |
1891 | pci_get_word(d->config + PCI_DEVICE_ID)); | |
1892 | } | |
1893 | ||
1894 | return buf; | |
1895 | } | |
1896 | ||
1897 | static char *pcibus_get_fw_dev_path(DeviceState *dev) | |
1898 | { | |
1899 | PCIDevice *d = (PCIDevice *)dev; | |
1900 | char path[50], name[33]; | |
1901 | int off; | |
1902 | ||
1903 | off = snprintf(path, sizeof(path), "%s@%x", | |
1904 | pci_dev_fw_name(dev, name, sizeof name), | |
1905 | PCI_SLOT(d->devfn)); | |
1906 | if (PCI_FUNC(d->devfn)) | |
1907 | snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn)); | |
1908 | return strdup(path); | |
1909 | } | |
1910 | ||
4f43c1ff AW |
1911 | static char *pcibus_get_dev_path(DeviceState *dev) |
1912 | { | |
a6a7005d MT |
1913 | PCIDevice *d = container_of(dev, PCIDevice, qdev); |
1914 | PCIDevice *t; | |
1915 | int slot_depth; | |
1916 | /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function. | |
1917 | * 00 is added here to make this format compatible with | |
1918 | * domain:Bus:Slot.Func for systems without nested PCI bridges. | |
1919 | * Slot.Function list specifies the slot and function numbers for all | |
1920 | * devices on the path from root to the specific device. */ | |
2991181a MT |
1921 | char domain[] = "DDDD:00"; |
1922 | char slot[] = ":SS.F"; | |
1923 | int domain_len = sizeof domain - 1 /* For '\0' */; | |
1924 | int slot_len = sizeof slot - 1 /* For '\0' */; | |
a6a7005d MT |
1925 | int path_len; |
1926 | char *path, *p; | |
2991181a | 1927 | int s; |
a6a7005d MT |
1928 | |
1929 | /* Calculate # of slots on path between device and root. */; | |
1930 | slot_depth = 0; | |
1931 | for (t = d; t; t = t->bus->parent_dev) { | |
1932 | ++slot_depth; | |
1933 | } | |
1934 | ||
1935 | path_len = domain_len + slot_len * slot_depth; | |
1936 | ||
1937 | /* Allocate memory, fill in the terminating null byte. */ | |
7267c094 | 1938 | path = g_malloc(path_len + 1 /* For '\0' */); |
a6a7005d MT |
1939 | path[path_len] = '\0'; |
1940 | ||
1941 | /* First field is the domain. */ | |
2991181a MT |
1942 | s = snprintf(domain, sizeof domain, "%04x:00", pci_find_domain(d->bus)); |
1943 | assert(s == domain_len); | |
1944 | memcpy(path, domain, domain_len); | |
a6a7005d MT |
1945 | |
1946 | /* Fill in slot numbers. We walk up from device to root, so need to print | |
1947 | * them in the reverse order, last to first. */ | |
1948 | p = path + path_len; | |
1949 | for (t = d; t; t = t->bus->parent_dev) { | |
1950 | p -= slot_len; | |
2991181a | 1951 | s = snprintf(slot, sizeof slot, ":%02x.%x", |
4c900518 | 1952 | PCI_SLOT(t->devfn), PCI_FUNC(t->devfn)); |
2991181a MT |
1953 | assert(s == slot_len); |
1954 | memcpy(p, slot, slot_len); | |
a6a7005d MT |
1955 | } |
1956 | ||
1957 | return path; | |
4f43c1ff AW |
1958 | } |
1959 | ||
f3006dd1 IY |
1960 | static int pci_qdev_find_recursive(PCIBus *bus, |
1961 | const char *id, PCIDevice **pdev) | |
1962 | { | |
1963 | DeviceState *qdev = qdev_find_recursive(&bus->qbus, id); | |
1964 | if (!qdev) { | |
1965 | return -ENODEV; | |
1966 | } | |
1967 | ||
1968 | /* roughly check if given qdev is pci device */ | |
4be9f0d1 | 1969 | if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) { |
40021f08 | 1970 | *pdev = PCI_DEVICE(qdev); |
f3006dd1 IY |
1971 | return 0; |
1972 | } | |
1973 | return -EINVAL; | |
1974 | } | |
1975 | ||
1976 | int pci_qdev_find_device(const char *id, PCIDevice **pdev) | |
1977 | { | |
1978 | struct PCIHostBus *host; | |
1979 | int rc = -ENODEV; | |
1980 | ||
1981 | QLIST_FOREACH(host, &host_buses, next) { | |
1982 | int tmp = pci_qdev_find_recursive(host->bus, id, pdev); | |
1983 | if (!tmp) { | |
1984 | rc = 0; | |
1985 | break; | |
1986 | } | |
1987 | if (tmp != -ENODEV) { | |
1988 | rc = tmp; | |
1989 | } | |
1990 | } | |
1991 | ||
1992 | return rc; | |
1993 | } | |
f5e6fed8 AK |
1994 | |
1995 | MemoryRegion *pci_address_space(PCIDevice *dev) | |
1996 | { | |
1997 | return dev->bus->address_space_mem; | |
1998 | } | |
e11d6439 RH |
1999 | |
2000 | MemoryRegion *pci_address_space_io(PCIDevice *dev) | |
2001 | { | |
2002 | return dev->bus->address_space_io; | |
2003 | } | |
40021f08 | 2004 | |
39bffca2 AL |
2005 | static void pci_device_class_init(ObjectClass *klass, void *data) |
2006 | { | |
2007 | DeviceClass *k = DEVICE_CLASS(klass); | |
2008 | k->init = pci_qdev_init; | |
2009 | k->unplug = pci_unplug_device; | |
2010 | k->exit = pci_unregister_device; | |
2011 | k->bus_info = &pci_bus_info; | |
2012 | } | |
2013 | ||
40021f08 AL |
2014 | static TypeInfo pci_device_type_info = { |
2015 | .name = TYPE_PCI_DEVICE, | |
2016 | .parent = TYPE_DEVICE, | |
2017 | .instance_size = sizeof(PCIDevice), | |
2018 | .abstract = true, | |
2019 | .class_size = sizeof(PCIDeviceClass), | |
39bffca2 | 2020 | .class_init = pci_device_class_init, |
40021f08 AL |
2021 | }; |
2022 | ||
83f7d43a | 2023 | static void pci_register_types(void) |
40021f08 AL |
2024 | { |
2025 | type_register_static(&pci_device_type_info); | |
2026 | } | |
2027 | ||
83f7d43a | 2028 | type_init(pci_register_types) |