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