replay: remove some dead code
[qemu/ar7.git] / hw / ppc / spapr_pci.c
blob88ce87f130a51048731cc3a12fbb98c5fd94a77a
1 /*
2 * QEMU sPAPR PCI host originated from Uninorth PCI host
4 * Copyright (c) 2011 Alexey Kardashevskiy, IBM Corporation.
5 * Copyright (C) 2011 David Gibson, IBM Corporation.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "cpu.h"
29 #include "hw/irq.h"
30 #include "hw/sysbus.h"
31 #include "migration/vmstate.h"
32 #include "hw/pci/pci.h"
33 #include "hw/pci/msi.h"
34 #include "hw/pci/msix.h"
35 #include "hw/pci/pci_host.h"
36 #include "hw/ppc/spapr.h"
37 #include "hw/pci-host/spapr.h"
38 #include "exec/address-spaces.h"
39 #include "exec/ram_addr.h"
40 #include <libfdt.h>
41 #include "trace.h"
42 #include "qemu/error-report.h"
43 #include "qemu/module.h"
44 #include "qapi/qmp/qerror.h"
45 #include "hw/ppc/fdt.h"
46 #include "hw/pci/pci_bridge.h"
47 #include "hw/pci/pci_bus.h"
48 #include "hw/pci/pci_ids.h"
49 #include "hw/ppc/spapr_drc.h"
50 #include "hw/qdev-properties.h"
51 #include "sysemu/device_tree.h"
52 #include "sysemu/kvm.h"
53 #include "sysemu/hostmem.h"
54 #include "sysemu/numa.h"
55 #include "hw/ppc/spapr_numa.h"
57 /* Copied from the kernel arch/powerpc/platforms/pseries/msi.c */
58 #define RTAS_QUERY_FN 0
59 #define RTAS_CHANGE_FN 1
60 #define RTAS_RESET_FN 2
61 #define RTAS_CHANGE_MSI_FN 3
62 #define RTAS_CHANGE_MSIX_FN 4
64 /* Interrupt types to return on RTAS_CHANGE_* */
65 #define RTAS_TYPE_MSI 1
66 #define RTAS_TYPE_MSIX 2
68 SpaprPhbState *spapr_pci_find_phb(SpaprMachineState *spapr, uint64_t buid)
70 SpaprPhbState *sphb;
72 QLIST_FOREACH(sphb, &spapr->phbs, list) {
73 if (sphb->buid != buid) {
74 continue;
76 return sphb;
79 return NULL;
82 PCIDevice *spapr_pci_find_dev(SpaprMachineState *spapr, uint64_t buid,
83 uint32_t config_addr)
85 SpaprPhbState *sphb = spapr_pci_find_phb(spapr, buid);
86 PCIHostState *phb = PCI_HOST_BRIDGE(sphb);
87 int bus_num = (config_addr >> 16) & 0xFF;
88 int devfn = (config_addr >> 8) & 0xFF;
90 if (!phb) {
91 return NULL;
94 return pci_find_device(phb->bus, bus_num, devfn);
97 static uint32_t rtas_pci_cfgaddr(uint32_t arg)
99 /* This handles the encoding of extended config space addresses */
100 return ((arg >> 20) & 0xf00) | (arg & 0xff);
103 static void finish_read_pci_config(SpaprMachineState *spapr, uint64_t buid,
104 uint32_t addr, uint32_t size,
105 target_ulong rets)
107 PCIDevice *pci_dev;
108 uint32_t val;
110 if ((size != 1) && (size != 2) && (size != 4)) {
111 /* access must be 1, 2 or 4 bytes */
112 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
113 return;
116 pci_dev = spapr_pci_find_dev(spapr, buid, addr);
117 addr = rtas_pci_cfgaddr(addr);
119 if (!pci_dev || (addr % size) || (addr >= pci_config_size(pci_dev))) {
120 /* Access must be to a valid device, within bounds and
121 * naturally aligned */
122 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
123 return;
126 val = pci_host_config_read_common(pci_dev, addr,
127 pci_config_size(pci_dev), size);
129 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
130 rtas_st(rets, 1, val);
133 static void rtas_ibm_read_pci_config(PowerPCCPU *cpu, SpaprMachineState *spapr,
134 uint32_t token, uint32_t nargs,
135 target_ulong args,
136 uint32_t nret, target_ulong rets)
138 uint64_t buid;
139 uint32_t size, addr;
141 if ((nargs != 4) || (nret != 2)) {
142 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
143 return;
146 buid = rtas_ldq(args, 1);
147 size = rtas_ld(args, 3);
148 addr = rtas_ld(args, 0);
150 finish_read_pci_config(spapr, buid, addr, size, rets);
153 static void rtas_read_pci_config(PowerPCCPU *cpu, SpaprMachineState *spapr,
154 uint32_t token, uint32_t nargs,
155 target_ulong args,
156 uint32_t nret, target_ulong rets)
158 uint32_t size, addr;
160 if ((nargs != 2) || (nret != 2)) {
161 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
162 return;
165 size = rtas_ld(args, 1);
166 addr = rtas_ld(args, 0);
168 finish_read_pci_config(spapr, 0, addr, size, rets);
171 static void finish_write_pci_config(SpaprMachineState *spapr, uint64_t buid,
172 uint32_t addr, uint32_t size,
173 uint32_t val, target_ulong rets)
175 PCIDevice *pci_dev;
177 if ((size != 1) && (size != 2) && (size != 4)) {
178 /* access must be 1, 2 or 4 bytes */
179 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
180 return;
183 pci_dev = spapr_pci_find_dev(spapr, buid, addr);
184 addr = rtas_pci_cfgaddr(addr);
186 if (!pci_dev || (addr % size) || (addr >= pci_config_size(pci_dev))) {
187 /* Access must be to a valid device, within bounds and
188 * naturally aligned */
189 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
190 return;
193 pci_host_config_write_common(pci_dev, addr, pci_config_size(pci_dev),
194 val, size);
196 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
199 static void rtas_ibm_write_pci_config(PowerPCCPU *cpu, SpaprMachineState *spapr,
200 uint32_t token, uint32_t nargs,
201 target_ulong args,
202 uint32_t nret, target_ulong rets)
204 uint64_t buid;
205 uint32_t val, size, addr;
207 if ((nargs != 5) || (nret != 1)) {
208 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
209 return;
212 buid = rtas_ldq(args, 1);
213 val = rtas_ld(args, 4);
214 size = rtas_ld(args, 3);
215 addr = rtas_ld(args, 0);
217 finish_write_pci_config(spapr, buid, addr, size, val, rets);
220 static void rtas_write_pci_config(PowerPCCPU *cpu, SpaprMachineState *spapr,
221 uint32_t token, uint32_t nargs,
222 target_ulong args,
223 uint32_t nret, target_ulong rets)
225 uint32_t val, size, addr;
227 if ((nargs != 3) || (nret != 1)) {
228 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
229 return;
233 val = rtas_ld(args, 2);
234 size = rtas_ld(args, 1);
235 addr = rtas_ld(args, 0);
237 finish_write_pci_config(spapr, 0, addr, size, val, rets);
241 * Set MSI/MSIX message data.
242 * This is required for msi_notify()/msix_notify() which
243 * will write at the addresses via spapr_msi_write().
245 * If hwaddr == 0, all entries will have .data == first_irq i.e.
246 * table will be reset.
248 static void spapr_msi_setmsg(PCIDevice *pdev, hwaddr addr, bool msix,
249 unsigned first_irq, unsigned req_num)
251 unsigned i;
252 MSIMessage msg = { .address = addr, .data = first_irq };
254 if (!msix) {
255 msi_set_message(pdev, msg);
256 trace_spapr_pci_msi_setup(pdev->name, 0, msg.address);
257 return;
260 for (i = 0; i < req_num; ++i) {
261 msix_set_message(pdev, i, msg);
262 trace_spapr_pci_msi_setup(pdev->name, i, msg.address);
263 if (addr) {
264 ++msg.data;
269 static void rtas_ibm_change_msi(PowerPCCPU *cpu, SpaprMachineState *spapr,
270 uint32_t token, uint32_t nargs,
271 target_ulong args, uint32_t nret,
272 target_ulong rets)
274 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
275 uint32_t config_addr = rtas_ld(args, 0);
276 uint64_t buid = rtas_ldq(args, 1);
277 unsigned int func = rtas_ld(args, 3);
278 unsigned int req_num = rtas_ld(args, 4); /* 0 == remove all */
279 unsigned int seq_num = rtas_ld(args, 5);
280 unsigned int ret_intr_type;
281 unsigned int irq, max_irqs = 0;
282 SpaprPhbState *phb = NULL;
283 PCIDevice *pdev = NULL;
284 SpaprPciMsi *msi;
285 int *config_addr_key;
286 Error *err = NULL;
287 int i;
289 /* Fins SpaprPhbState */
290 phb = spapr_pci_find_phb(spapr, buid);
291 if (phb) {
292 pdev = spapr_pci_find_dev(spapr, buid, config_addr);
294 if (!phb || !pdev) {
295 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
296 return;
299 switch (func) {
300 case RTAS_CHANGE_FN:
301 if (msi_present(pdev)) {
302 ret_intr_type = RTAS_TYPE_MSI;
303 } else if (msix_present(pdev)) {
304 ret_intr_type = RTAS_TYPE_MSIX;
305 } else {
306 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
307 return;
309 break;
310 case RTAS_CHANGE_MSI_FN:
311 if (msi_present(pdev)) {
312 ret_intr_type = RTAS_TYPE_MSI;
313 } else {
314 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
315 return;
317 break;
318 case RTAS_CHANGE_MSIX_FN:
319 if (msix_present(pdev)) {
320 ret_intr_type = RTAS_TYPE_MSIX;
321 } else {
322 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
323 return;
325 break;
326 default:
327 error_report("rtas_ibm_change_msi(%u) is not implemented", func);
328 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
329 return;
332 msi = (SpaprPciMsi *) g_hash_table_lookup(phb->msi, &config_addr);
334 /* Releasing MSIs */
335 if (!req_num) {
336 if (!msi) {
337 trace_spapr_pci_msi("Releasing wrong config", config_addr);
338 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
339 return;
342 if (msi_present(pdev)) {
343 spapr_msi_setmsg(pdev, 0, false, 0, 0);
345 if (msix_present(pdev)) {
346 spapr_msi_setmsg(pdev, 0, true, 0, 0);
348 g_hash_table_remove(phb->msi, &config_addr);
350 trace_spapr_pci_msi("Released MSIs", config_addr);
351 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
352 rtas_st(rets, 1, 0);
353 return;
356 /* Enabling MSI */
358 /* Check if the device supports as many IRQs as requested */
359 if (ret_intr_type == RTAS_TYPE_MSI) {
360 max_irqs = msi_nr_vectors_allocated(pdev);
361 } else if (ret_intr_type == RTAS_TYPE_MSIX) {
362 max_irqs = pdev->msix_entries_nr;
364 if (!max_irqs) {
365 error_report("Requested interrupt type %d is not enabled for device %x",
366 ret_intr_type, config_addr);
367 rtas_st(rets, 0, -1); /* Hardware error */
368 return;
370 /* Correct the number if the guest asked for too many */
371 if (req_num > max_irqs) {
372 trace_spapr_pci_msi_retry(config_addr, req_num, max_irqs);
373 req_num = max_irqs;
374 irq = 0; /* to avoid misleading trace */
375 goto out;
378 /* Allocate MSIs */
379 if (smc->legacy_irq_allocation) {
380 irq = spapr_irq_find(spapr, req_num, ret_intr_type == RTAS_TYPE_MSI,
381 &err);
382 } else {
383 irq = spapr_irq_msi_alloc(spapr, req_num,
384 ret_intr_type == RTAS_TYPE_MSI, &err);
386 if (err) {
387 error_reportf_err(err, "Can't allocate MSIs for device %x: ",
388 config_addr);
389 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
390 return;
393 for (i = 0; i < req_num; i++) {
394 spapr_irq_claim(spapr, irq + i, false, &err);
395 if (err) {
396 if (i) {
397 spapr_irq_free(spapr, irq, i);
399 if (!smc->legacy_irq_allocation) {
400 spapr_irq_msi_free(spapr, irq, req_num);
402 error_reportf_err(err, "Can't allocate MSIs for device %x: ",
403 config_addr);
404 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
405 return;
409 /* Release previous MSIs */
410 if (msi) {
411 g_hash_table_remove(phb->msi, &config_addr);
414 /* Setup MSI/MSIX vectors in the device (via cfgspace or MSIX BAR) */
415 spapr_msi_setmsg(pdev, SPAPR_PCI_MSI_WINDOW, ret_intr_type == RTAS_TYPE_MSIX,
416 irq, req_num);
418 /* Add MSI device to cache */
419 msi = g_new(SpaprPciMsi, 1);
420 msi->first_irq = irq;
421 msi->num = req_num;
422 config_addr_key = g_new(int, 1);
423 *config_addr_key = config_addr;
424 g_hash_table_insert(phb->msi, config_addr_key, msi);
426 out:
427 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
428 rtas_st(rets, 1, req_num);
429 rtas_st(rets, 2, ++seq_num);
430 if (nret > 3) {
431 rtas_st(rets, 3, ret_intr_type);
434 trace_spapr_pci_rtas_ibm_change_msi(config_addr, func, req_num, irq);
437 static void rtas_ibm_query_interrupt_source_number(PowerPCCPU *cpu,
438 SpaprMachineState *spapr,
439 uint32_t token,
440 uint32_t nargs,
441 target_ulong args,
442 uint32_t nret,
443 target_ulong rets)
445 uint32_t config_addr = rtas_ld(args, 0);
446 uint64_t buid = rtas_ldq(args, 1);
447 unsigned int intr_src_num = -1, ioa_intr_num = rtas_ld(args, 3);
448 SpaprPhbState *phb = NULL;
449 PCIDevice *pdev = NULL;
450 SpaprPciMsi *msi;
452 /* Find SpaprPhbState */
453 phb = spapr_pci_find_phb(spapr, buid);
454 if (phb) {
455 pdev = spapr_pci_find_dev(spapr, buid, config_addr);
457 if (!phb || !pdev) {
458 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
459 return;
462 /* Find device descriptor and start IRQ */
463 msi = (SpaprPciMsi *) g_hash_table_lookup(phb->msi, &config_addr);
464 if (!msi || !msi->first_irq || !msi->num || (ioa_intr_num >= msi->num)) {
465 trace_spapr_pci_msi("Failed to return vector", config_addr);
466 rtas_st(rets, 0, RTAS_OUT_HW_ERROR);
467 return;
469 intr_src_num = msi->first_irq + ioa_intr_num;
470 trace_spapr_pci_rtas_ibm_query_interrupt_source_number(ioa_intr_num,
471 intr_src_num);
473 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
474 rtas_st(rets, 1, intr_src_num);
475 rtas_st(rets, 2, 1);/* 0 == level; 1 == edge */
478 static void rtas_ibm_set_eeh_option(PowerPCCPU *cpu,
479 SpaprMachineState *spapr,
480 uint32_t token, uint32_t nargs,
481 target_ulong args, uint32_t nret,
482 target_ulong rets)
484 SpaprPhbState *sphb;
485 uint32_t addr, option;
486 uint64_t buid;
487 int ret;
489 if ((nargs != 4) || (nret != 1)) {
490 goto param_error_exit;
493 buid = rtas_ldq(args, 1);
494 addr = rtas_ld(args, 0);
495 option = rtas_ld(args, 3);
497 sphb = spapr_pci_find_phb(spapr, buid);
498 if (!sphb) {
499 goto param_error_exit;
502 if (!spapr_phb_eeh_available(sphb)) {
503 goto param_error_exit;
506 ret = spapr_phb_vfio_eeh_set_option(sphb, addr, option);
507 rtas_st(rets, 0, ret);
508 return;
510 param_error_exit:
511 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
514 static void rtas_ibm_get_config_addr_info2(PowerPCCPU *cpu,
515 SpaprMachineState *spapr,
516 uint32_t token, uint32_t nargs,
517 target_ulong args, uint32_t nret,
518 target_ulong rets)
520 SpaprPhbState *sphb;
521 PCIDevice *pdev;
522 uint32_t addr, option;
523 uint64_t buid;
525 if ((nargs != 4) || (nret != 2)) {
526 goto param_error_exit;
529 buid = rtas_ldq(args, 1);
530 sphb = spapr_pci_find_phb(spapr, buid);
531 if (!sphb) {
532 goto param_error_exit;
535 if (!spapr_phb_eeh_available(sphb)) {
536 goto param_error_exit;
540 * We always have PE address of form "00BB0001". "BB"
541 * represents the bus number of PE's primary bus.
543 option = rtas_ld(args, 3);
544 switch (option) {
545 case RTAS_GET_PE_ADDR:
546 addr = rtas_ld(args, 0);
547 pdev = spapr_pci_find_dev(spapr, buid, addr);
548 if (!pdev) {
549 goto param_error_exit;
552 rtas_st(rets, 1, (pci_bus_num(pci_get_bus(pdev)) << 16) + 1);
553 break;
554 case RTAS_GET_PE_MODE:
555 rtas_st(rets, 1, RTAS_PE_MODE_SHARED);
556 break;
557 default:
558 goto param_error_exit;
561 rtas_st(rets, 0, RTAS_OUT_SUCCESS);
562 return;
564 param_error_exit:
565 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
568 static void rtas_ibm_read_slot_reset_state2(PowerPCCPU *cpu,
569 SpaprMachineState *spapr,
570 uint32_t token, uint32_t nargs,
571 target_ulong args, uint32_t nret,
572 target_ulong rets)
574 SpaprPhbState *sphb;
575 uint64_t buid;
576 int state, ret;
578 if ((nargs != 3) || (nret != 4 && nret != 5)) {
579 goto param_error_exit;
582 buid = rtas_ldq(args, 1);
583 sphb = spapr_pci_find_phb(spapr, buid);
584 if (!sphb) {
585 goto param_error_exit;
588 if (!spapr_phb_eeh_available(sphb)) {
589 goto param_error_exit;
592 ret = spapr_phb_vfio_eeh_get_state(sphb, &state);
593 rtas_st(rets, 0, ret);
594 if (ret != RTAS_OUT_SUCCESS) {
595 return;
598 rtas_st(rets, 1, state);
599 rtas_st(rets, 2, RTAS_EEH_SUPPORT);
600 rtas_st(rets, 3, RTAS_EEH_PE_UNAVAIL_INFO);
601 if (nret >= 5) {
602 rtas_st(rets, 4, RTAS_EEH_PE_RECOVER_INFO);
604 return;
606 param_error_exit:
607 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
610 static void rtas_ibm_set_slot_reset(PowerPCCPU *cpu,
611 SpaprMachineState *spapr,
612 uint32_t token, uint32_t nargs,
613 target_ulong args, uint32_t nret,
614 target_ulong rets)
616 SpaprPhbState *sphb;
617 uint32_t option;
618 uint64_t buid;
619 int ret;
621 if ((nargs != 4) || (nret != 1)) {
622 goto param_error_exit;
625 buid = rtas_ldq(args, 1);
626 option = rtas_ld(args, 3);
627 sphb = spapr_pci_find_phb(spapr, buid);
628 if (!sphb) {
629 goto param_error_exit;
632 if (!spapr_phb_eeh_available(sphb)) {
633 goto param_error_exit;
636 ret = spapr_phb_vfio_eeh_reset(sphb, option);
637 rtas_st(rets, 0, ret);
638 return;
640 param_error_exit:
641 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
644 static void rtas_ibm_configure_pe(PowerPCCPU *cpu,
645 SpaprMachineState *spapr,
646 uint32_t token, uint32_t nargs,
647 target_ulong args, uint32_t nret,
648 target_ulong rets)
650 SpaprPhbState *sphb;
651 uint64_t buid;
652 int ret;
654 if ((nargs != 3) || (nret != 1)) {
655 goto param_error_exit;
658 buid = rtas_ldq(args, 1);
659 sphb = spapr_pci_find_phb(spapr, buid);
660 if (!sphb) {
661 goto param_error_exit;
664 if (!spapr_phb_eeh_available(sphb)) {
665 goto param_error_exit;
668 ret = spapr_phb_vfio_eeh_configure(sphb);
669 rtas_st(rets, 0, ret);
670 return;
672 param_error_exit:
673 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
676 /* To support it later */
677 static void rtas_ibm_slot_error_detail(PowerPCCPU *cpu,
678 SpaprMachineState *spapr,
679 uint32_t token, uint32_t nargs,
680 target_ulong args, uint32_t nret,
681 target_ulong rets)
683 SpaprPhbState *sphb;
684 int option;
685 uint64_t buid;
687 if ((nargs != 8) || (nret != 1)) {
688 goto param_error_exit;
691 buid = rtas_ldq(args, 1);
692 sphb = spapr_pci_find_phb(spapr, buid);
693 if (!sphb) {
694 goto param_error_exit;
697 if (!spapr_phb_eeh_available(sphb)) {
698 goto param_error_exit;
701 option = rtas_ld(args, 7);
702 switch (option) {
703 case RTAS_SLOT_TEMP_ERR_LOG:
704 case RTAS_SLOT_PERM_ERR_LOG:
705 break;
706 default:
707 goto param_error_exit;
710 /* We don't have error log yet */
711 rtas_st(rets, 0, RTAS_OUT_NO_ERRORS_FOUND);
712 return;
714 param_error_exit:
715 rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR);
718 static void pci_spapr_set_irq(void *opaque, int irq_num, int level)
721 * Here we use the number returned by pci_swizzle_map_irq_fn to find a
722 * corresponding qemu_irq.
724 SpaprPhbState *phb = opaque;
725 SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
727 trace_spapr_pci_lsi_set(phb->dtbusname, irq_num, phb->lsi_table[irq_num].irq);
728 qemu_set_irq(spapr_qirq(spapr, phb->lsi_table[irq_num].irq), level);
731 static PCIINTxRoute spapr_route_intx_pin_to_irq(void *opaque, int pin)
733 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(opaque);
734 PCIINTxRoute route;
736 route.mode = PCI_INTX_ENABLED;
737 route.irq = sphb->lsi_table[pin].irq;
739 return route;
743 * MSI/MSIX memory region implementation.
744 * The handler handles both MSI and MSIX.
745 * The vector number is encoded in least bits in data.
747 static void spapr_msi_write(void *opaque, hwaddr addr,
748 uint64_t data, unsigned size)
750 SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
751 uint32_t irq = data;
753 trace_spapr_pci_msi_write(addr, data, irq);
755 qemu_irq_pulse(spapr_qirq(spapr, irq));
758 static const MemoryRegionOps spapr_msi_ops = {
759 /* There is no .read as the read result is undefined by PCI spec */
760 .read = NULL,
761 .write = spapr_msi_write,
762 .endianness = DEVICE_LITTLE_ENDIAN
766 * PHB PCI device
768 static AddressSpace *spapr_pci_dma_iommu(PCIBus *bus, void *opaque, int devfn)
770 SpaprPhbState *phb = opaque;
772 return &phb->iommu_as;
775 static char *spapr_phb_vfio_get_loc_code(SpaprPhbState *sphb, PCIDevice *pdev)
777 char *path = NULL, *buf = NULL, *host = NULL;
779 /* Get the PCI VFIO host id */
780 host = object_property_get_str(OBJECT(pdev), "host", NULL);
781 if (!host) {
782 goto err_out;
785 /* Construct the path of the file that will give us the DT location */
786 path = g_strdup_printf("/sys/bus/pci/devices/%s/devspec", host);
787 g_free(host);
788 if (!g_file_get_contents(path, &buf, NULL, NULL)) {
789 goto err_out;
791 g_free(path);
793 /* Construct and read from host device tree the loc-code */
794 path = g_strdup_printf("/proc/device-tree%s/ibm,loc-code", buf);
795 g_free(buf);
796 if (!g_file_get_contents(path, &buf, NULL, NULL)) {
797 goto err_out;
799 return buf;
801 err_out:
802 g_free(path);
803 return NULL;
806 static char *spapr_phb_get_loc_code(SpaprPhbState *sphb, PCIDevice *pdev)
808 char *buf;
809 const char *devtype = "qemu";
810 uint32_t busnr = pci_bus_num(PCI_BUS(qdev_get_parent_bus(DEVICE(pdev))));
812 if (object_dynamic_cast(OBJECT(pdev), "vfio-pci")) {
813 buf = spapr_phb_vfio_get_loc_code(sphb, pdev);
814 if (buf) {
815 return buf;
817 devtype = "vfio";
820 * For emulated devices and VFIO-failure case, make up
821 * the loc-code.
823 buf = g_strdup_printf("%s_%s:%04x:%02x:%02x.%x",
824 devtype, pdev->name, sphb->index, busnr,
825 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
826 return buf;
829 /* Macros to operate with address in OF binding to PCI */
830 #define b_x(x, p, l) (((x) & ((1<<(l))-1)) << (p))
831 #define b_n(x) b_x((x), 31, 1) /* 0 if relocatable */
832 #define b_p(x) b_x((x), 30, 1) /* 1 if prefetchable */
833 #define b_t(x) b_x((x), 29, 1) /* 1 if the address is aliased */
834 #define b_ss(x) b_x((x), 24, 2) /* the space code */
835 #define b_bbbbbbbb(x) b_x((x), 16, 8) /* bus number */
836 #define b_ddddd(x) b_x((x), 11, 5) /* device number */
837 #define b_fff(x) b_x((x), 8, 3) /* function number */
838 #define b_rrrrrrrr(x) b_x((x), 0, 8) /* register number */
840 /* for 'reg' OF properties */
841 #define RESOURCE_CELLS_SIZE 2
842 #define RESOURCE_CELLS_ADDRESS 3
844 typedef struct ResourceFields {
845 uint32_t phys_hi;
846 uint32_t phys_mid;
847 uint32_t phys_lo;
848 uint32_t size_hi;
849 uint32_t size_lo;
850 } QEMU_PACKED ResourceFields;
852 typedef struct ResourceProps {
853 ResourceFields reg[8];
854 uint32_t reg_len;
855 } ResourceProps;
857 /* fill in the 'reg' OF properties for
858 * a PCI device. 'reg' describes resource requirements for a
859 * device's IO/MEM regions.
861 * the property is an array of ('phys-addr', 'size') pairs describing
862 * the addressable regions of the PCI device, where 'phys-addr' is a
863 * RESOURCE_CELLS_ADDRESS-tuple of 32-bit integers corresponding to
864 * (phys.hi, phys.mid, phys.lo), and 'size' is a
865 * RESOURCE_CELLS_SIZE-tuple corresponding to (size.hi, size.lo).
867 * phys.hi = 0xYYXXXXZZ, where:
868 * 0xYY = npt000ss
869 * ||| |
870 * ||| +-- space code
871 * ||| |
872 * ||| + 00 if configuration space
873 * ||| + 01 if IO region,
874 * ||| + 10 if 32-bit MEM region
875 * ||| + 11 if 64-bit MEM region
876 * |||
877 * ||+------ for non-relocatable IO: 1 if aliased
878 * || for relocatable IO: 1 if below 64KB
879 * || for MEM: 1 if below 1MB
880 * |+------- 1 if region is prefetchable
881 * +-------- 1 if region is non-relocatable
882 * 0xXXXX = bbbbbbbb dddddfff, encoding bus, slot, and function
883 * bits respectively
884 * 0xZZ = rrrrrrrr, the register number of the BAR corresponding
885 * to the region
887 * phys.mid and phys.lo correspond respectively to the hi/lo portions
888 * of the actual address of the region.
890 * note also that addresses defined in this property are, at least
891 * for PAPR guests, relative to the PHBs IO/MEM windows, and
892 * correspond directly to the addresses in the BARs.
894 * in accordance with PCI Bus Binding to Open Firmware,
895 * IEEE Std 1275-1994, section 4.1.1, as implemented by PAPR+ v2.7,
896 * Appendix C.
898 static void populate_resource_props(PCIDevice *d, ResourceProps *rp)
900 int bus_num = pci_bus_num(PCI_BUS(qdev_get_parent_bus(DEVICE(d))));
901 uint32_t dev_id = (b_bbbbbbbb(bus_num) |
902 b_ddddd(PCI_SLOT(d->devfn)) |
903 b_fff(PCI_FUNC(d->devfn)));
904 ResourceFields *reg;
905 int i, reg_idx = 0;
907 /* config space region */
908 reg = &rp->reg[reg_idx++];
909 reg->phys_hi = cpu_to_be32(dev_id);
910 reg->phys_mid = 0;
911 reg->phys_lo = 0;
912 reg->size_hi = 0;
913 reg->size_lo = 0;
915 for (i = 0; i < PCI_NUM_REGIONS; i++) {
916 if (!d->io_regions[i].size) {
917 continue;
920 reg = &rp->reg[reg_idx++];
922 reg->phys_hi = cpu_to_be32(dev_id | b_rrrrrrrr(pci_bar(d, i)));
923 if (d->io_regions[i].type & PCI_BASE_ADDRESS_SPACE_IO) {
924 reg->phys_hi |= cpu_to_be32(b_ss(1));
925 } else if (d->io_regions[i].type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
926 reg->phys_hi |= cpu_to_be32(b_ss(3));
927 } else {
928 reg->phys_hi |= cpu_to_be32(b_ss(2));
930 reg->phys_mid = 0;
931 reg->phys_lo = 0;
932 reg->size_hi = cpu_to_be32(d->io_regions[i].size >> 32);
933 reg->size_lo = cpu_to_be32(d->io_regions[i].size);
936 rp->reg_len = reg_idx * sizeof(ResourceFields);
939 typedef struct PCIClass PCIClass;
940 typedef struct PCISubClass PCISubClass;
941 typedef struct PCIIFace PCIIFace;
943 struct PCIIFace {
944 int iface;
945 const char *name;
948 struct PCISubClass {
949 int subclass;
950 const char *name;
951 const PCIIFace *iface;
954 struct PCIClass {
955 const char *name;
956 const PCISubClass *subc;
959 static const PCISubClass undef_subclass[] = {
960 { PCI_CLASS_NOT_DEFINED_VGA, "display", NULL },
961 { 0xFF, NULL, NULL },
964 static const PCISubClass mass_subclass[] = {
965 { PCI_CLASS_STORAGE_SCSI, "scsi", NULL },
966 { PCI_CLASS_STORAGE_IDE, "ide", NULL },
967 { PCI_CLASS_STORAGE_FLOPPY, "fdc", NULL },
968 { PCI_CLASS_STORAGE_IPI, "ipi", NULL },
969 { PCI_CLASS_STORAGE_RAID, "raid", NULL },
970 { PCI_CLASS_STORAGE_ATA, "ata", NULL },
971 { PCI_CLASS_STORAGE_SATA, "sata", NULL },
972 { PCI_CLASS_STORAGE_SAS, "sas", NULL },
973 { 0xFF, NULL, NULL },
976 static const PCISubClass net_subclass[] = {
977 { PCI_CLASS_NETWORK_ETHERNET, "ethernet", NULL },
978 { PCI_CLASS_NETWORK_TOKEN_RING, "token-ring", NULL },
979 { PCI_CLASS_NETWORK_FDDI, "fddi", NULL },
980 { PCI_CLASS_NETWORK_ATM, "atm", NULL },
981 { PCI_CLASS_NETWORK_ISDN, "isdn", NULL },
982 { PCI_CLASS_NETWORK_WORLDFIP, "worldfip", NULL },
983 { PCI_CLASS_NETWORK_PICMG214, "picmg", NULL },
984 { 0xFF, NULL, NULL },
987 static const PCISubClass displ_subclass[] = {
988 { PCI_CLASS_DISPLAY_VGA, "vga", NULL },
989 { PCI_CLASS_DISPLAY_XGA, "xga", NULL },
990 { PCI_CLASS_DISPLAY_3D, "3d-controller", NULL },
991 { 0xFF, NULL, NULL },
994 static const PCISubClass media_subclass[] = {
995 { PCI_CLASS_MULTIMEDIA_VIDEO, "video", NULL },
996 { PCI_CLASS_MULTIMEDIA_AUDIO, "sound", NULL },
997 { PCI_CLASS_MULTIMEDIA_PHONE, "telephony", NULL },
998 { 0xFF, NULL, NULL },
1001 static const PCISubClass mem_subclass[] = {
1002 { PCI_CLASS_MEMORY_RAM, "memory", NULL },
1003 { PCI_CLASS_MEMORY_FLASH, "flash", NULL },
1004 { 0xFF, NULL, NULL },
1007 static const PCISubClass bridg_subclass[] = {
1008 { PCI_CLASS_BRIDGE_HOST, "host", NULL },
1009 { PCI_CLASS_BRIDGE_ISA, "isa", NULL },
1010 { PCI_CLASS_BRIDGE_EISA, "eisa", NULL },
1011 { PCI_CLASS_BRIDGE_MC, "mca", NULL },
1012 { PCI_CLASS_BRIDGE_PCI, "pci", NULL },
1013 { PCI_CLASS_BRIDGE_PCMCIA, "pcmcia", NULL },
1014 { PCI_CLASS_BRIDGE_NUBUS, "nubus", NULL },
1015 { PCI_CLASS_BRIDGE_CARDBUS, "cardbus", NULL },
1016 { PCI_CLASS_BRIDGE_RACEWAY, "raceway", NULL },
1017 { PCI_CLASS_BRIDGE_PCI_SEMITP, "semi-transparent-pci", NULL },
1018 { PCI_CLASS_BRIDGE_IB_PCI, "infiniband", NULL },
1019 { 0xFF, NULL, NULL },
1022 static const PCISubClass comm_subclass[] = {
1023 { PCI_CLASS_COMMUNICATION_SERIAL, "serial", NULL },
1024 { PCI_CLASS_COMMUNICATION_PARALLEL, "parallel", NULL },
1025 { PCI_CLASS_COMMUNICATION_MULTISERIAL, "multiport-serial", NULL },
1026 { PCI_CLASS_COMMUNICATION_MODEM, "modem", NULL },
1027 { PCI_CLASS_COMMUNICATION_GPIB, "gpib", NULL },
1028 { PCI_CLASS_COMMUNICATION_SC, "smart-card", NULL },
1029 { 0xFF, NULL, NULL, },
1032 static const PCIIFace pic_iface[] = {
1033 { PCI_CLASS_SYSTEM_PIC_IOAPIC, "io-apic" },
1034 { PCI_CLASS_SYSTEM_PIC_IOXAPIC, "io-xapic" },
1035 { 0xFF, NULL },
1038 static const PCISubClass sys_subclass[] = {
1039 { PCI_CLASS_SYSTEM_PIC, "interrupt-controller", pic_iface },
1040 { PCI_CLASS_SYSTEM_DMA, "dma-controller", NULL },
1041 { PCI_CLASS_SYSTEM_TIMER, "timer", NULL },
1042 { PCI_CLASS_SYSTEM_RTC, "rtc", NULL },
1043 { PCI_CLASS_SYSTEM_PCI_HOTPLUG, "hot-plug-controller", NULL },
1044 { PCI_CLASS_SYSTEM_SDHCI, "sd-host-controller", NULL },
1045 { 0xFF, NULL, NULL },
1048 static const PCISubClass inp_subclass[] = {
1049 { PCI_CLASS_INPUT_KEYBOARD, "keyboard", NULL },
1050 { PCI_CLASS_INPUT_PEN, "pen", NULL },
1051 { PCI_CLASS_INPUT_MOUSE, "mouse", NULL },
1052 { PCI_CLASS_INPUT_SCANNER, "scanner", NULL },
1053 { PCI_CLASS_INPUT_GAMEPORT, "gameport", NULL },
1054 { 0xFF, NULL, NULL },
1057 static const PCISubClass dock_subclass[] = {
1058 { PCI_CLASS_DOCKING_GENERIC, "dock", NULL },
1059 { 0xFF, NULL, NULL },
1062 static const PCISubClass cpu_subclass[] = {
1063 { PCI_CLASS_PROCESSOR_PENTIUM, "pentium", NULL },
1064 { PCI_CLASS_PROCESSOR_POWERPC, "powerpc", NULL },
1065 { PCI_CLASS_PROCESSOR_MIPS, "mips", NULL },
1066 { PCI_CLASS_PROCESSOR_CO, "co-processor", NULL },
1067 { 0xFF, NULL, NULL },
1070 static const PCIIFace usb_iface[] = {
1071 { PCI_CLASS_SERIAL_USB_UHCI, "usb-uhci" },
1072 { PCI_CLASS_SERIAL_USB_OHCI, "usb-ohci", },
1073 { PCI_CLASS_SERIAL_USB_EHCI, "usb-ehci" },
1074 { PCI_CLASS_SERIAL_USB_XHCI, "usb-xhci" },
1075 { PCI_CLASS_SERIAL_USB_UNKNOWN, "usb-unknown" },
1076 { PCI_CLASS_SERIAL_USB_DEVICE, "usb-device" },
1077 { 0xFF, NULL },
1080 static const PCISubClass ser_subclass[] = {
1081 { PCI_CLASS_SERIAL_FIREWIRE, "firewire", NULL },
1082 { PCI_CLASS_SERIAL_ACCESS, "access-bus", NULL },
1083 { PCI_CLASS_SERIAL_SSA, "ssa", NULL },
1084 { PCI_CLASS_SERIAL_USB, "usb", usb_iface },
1085 { PCI_CLASS_SERIAL_FIBER, "fibre-channel", NULL },
1086 { PCI_CLASS_SERIAL_SMBUS, "smb", NULL },
1087 { PCI_CLASS_SERIAL_IB, "infiniband", NULL },
1088 { PCI_CLASS_SERIAL_IPMI, "ipmi", NULL },
1089 { PCI_CLASS_SERIAL_SERCOS, "sercos", NULL },
1090 { PCI_CLASS_SERIAL_CANBUS, "canbus", NULL },
1091 { 0xFF, NULL, NULL },
1094 static const PCISubClass wrl_subclass[] = {
1095 { PCI_CLASS_WIRELESS_IRDA, "irda", NULL },
1096 { PCI_CLASS_WIRELESS_CIR, "consumer-ir", NULL },
1097 { PCI_CLASS_WIRELESS_RF_CONTROLLER, "rf-controller", NULL },
1098 { PCI_CLASS_WIRELESS_BLUETOOTH, "bluetooth", NULL },
1099 { PCI_CLASS_WIRELESS_BROADBAND, "broadband", NULL },
1100 { 0xFF, NULL, NULL },
1103 static const PCISubClass sat_subclass[] = {
1104 { PCI_CLASS_SATELLITE_TV, "satellite-tv", NULL },
1105 { PCI_CLASS_SATELLITE_AUDIO, "satellite-audio", NULL },
1106 { PCI_CLASS_SATELLITE_VOICE, "satellite-voice", NULL },
1107 { PCI_CLASS_SATELLITE_DATA, "satellite-data", NULL },
1108 { 0xFF, NULL, NULL },
1111 static const PCISubClass crypt_subclass[] = {
1112 { PCI_CLASS_CRYPT_NETWORK, "network-encryption", NULL },
1113 { PCI_CLASS_CRYPT_ENTERTAINMENT,
1114 "entertainment-encryption", NULL },
1115 { 0xFF, NULL, NULL },
1118 static const PCISubClass spc_subclass[] = {
1119 { PCI_CLASS_SP_DPIO, "dpio", NULL },
1120 { PCI_CLASS_SP_PERF, "counter", NULL },
1121 { PCI_CLASS_SP_SYNCH, "measurement", NULL },
1122 { PCI_CLASS_SP_MANAGEMENT, "management-card", NULL },
1123 { 0xFF, NULL, NULL },
1126 static const PCIClass pci_classes[] = {
1127 { "legacy-device", undef_subclass },
1128 { "mass-storage", mass_subclass },
1129 { "network", net_subclass },
1130 { "display", displ_subclass, },
1131 { "multimedia-device", media_subclass },
1132 { "memory-controller", mem_subclass },
1133 { "unknown-bridge", bridg_subclass },
1134 { "communication-controller", comm_subclass},
1135 { "system-peripheral", sys_subclass },
1136 { "input-controller", inp_subclass },
1137 { "docking-station", dock_subclass },
1138 { "cpu", cpu_subclass },
1139 { "serial-bus", ser_subclass },
1140 { "wireless-controller", wrl_subclass },
1141 { "intelligent-io", NULL },
1142 { "satellite-device", sat_subclass },
1143 { "encryption", crypt_subclass },
1144 { "data-processing-controller", spc_subclass },
1147 static const char *dt_name_from_class(uint8_t class, uint8_t subclass,
1148 uint8_t iface)
1150 const PCIClass *pclass;
1151 const PCISubClass *psubclass;
1152 const PCIIFace *piface;
1153 const char *name;
1155 if (class >= ARRAY_SIZE(pci_classes)) {
1156 return "pci";
1159 pclass = pci_classes + class;
1160 name = pclass->name;
1162 if (pclass->subc == NULL) {
1163 return name;
1166 psubclass = pclass->subc;
1167 while ((psubclass->subclass & 0xff) != 0xff) {
1168 if ((psubclass->subclass & 0xff) == subclass) {
1169 name = psubclass->name;
1170 break;
1172 psubclass++;
1175 piface = psubclass->iface;
1176 if (piface == NULL) {
1177 return name;
1179 while ((piface->iface & 0xff) != 0xff) {
1180 if ((piface->iface & 0xff) == iface) {
1181 name = piface->name;
1182 break;
1184 piface++;
1187 return name;
1191 * DRC helper functions
1194 static uint32_t drc_id_from_devfn(SpaprPhbState *phb,
1195 uint8_t chassis, int32_t devfn)
1197 return (phb->index << 16) | (chassis << 8) | devfn;
1200 static SpaprDrc *drc_from_devfn(SpaprPhbState *phb,
1201 uint8_t chassis, int32_t devfn)
1203 return spapr_drc_by_id(TYPE_SPAPR_DRC_PCI,
1204 drc_id_from_devfn(phb, chassis, devfn));
1207 static uint8_t chassis_from_bus(PCIBus *bus)
1209 if (pci_bus_is_root(bus)) {
1210 return 0;
1211 } else {
1212 PCIDevice *bridge = pci_bridge_get_device(bus);
1214 return object_property_get_uint(OBJECT(bridge), "chassis_nr",
1215 &error_abort);
1219 static SpaprDrc *drc_from_dev(SpaprPhbState *phb, PCIDevice *dev)
1221 uint8_t chassis = chassis_from_bus(pci_get_bus(dev));
1223 return drc_from_devfn(phb, chassis, dev->devfn);
1226 static void add_drcs(SpaprPhbState *phb, PCIBus *bus)
1228 Object *owner;
1229 int i;
1230 uint8_t chassis;
1232 if (!phb->dr_enabled) {
1233 return;
1236 chassis = chassis_from_bus(bus);
1238 if (pci_bus_is_root(bus)) {
1239 owner = OBJECT(phb);
1240 } else {
1241 owner = OBJECT(pci_bridge_get_device(bus));
1244 for (i = 0; i < PCI_SLOT_MAX * PCI_FUNC_MAX; i++) {
1245 spapr_dr_connector_new(owner, TYPE_SPAPR_DRC_PCI,
1246 drc_id_from_devfn(phb, chassis, i));
1250 static void remove_drcs(SpaprPhbState *phb, PCIBus *bus)
1252 int i;
1253 uint8_t chassis;
1255 if (!phb->dr_enabled) {
1256 return;
1259 chassis = chassis_from_bus(bus);
1261 for (i = PCI_SLOT_MAX * PCI_FUNC_MAX - 1; i >= 0; i--) {
1262 SpaprDrc *drc = drc_from_devfn(phb, chassis, i);
1264 if (drc) {
1265 object_unparent(OBJECT(drc));
1270 typedef struct PciWalkFdt {
1271 void *fdt;
1272 int offset;
1273 SpaprPhbState *sphb;
1274 int err;
1275 } PciWalkFdt;
1277 static int spapr_dt_pci_device(SpaprPhbState *sphb, PCIDevice *dev,
1278 void *fdt, int parent_offset);
1280 static void spapr_dt_pci_device_cb(PCIBus *bus, PCIDevice *pdev,
1281 void *opaque)
1283 PciWalkFdt *p = opaque;
1284 int err;
1286 if (p->err) {
1287 /* Something's already broken, don't keep going */
1288 return;
1291 err = spapr_dt_pci_device(p->sphb, pdev, p->fdt, p->offset);
1292 if (err < 0) {
1293 p->err = err;
1297 /* Augment PCI device node with bridge specific information */
1298 static int spapr_dt_pci_bus(SpaprPhbState *sphb, PCIBus *bus,
1299 void *fdt, int offset)
1301 Object *owner;
1302 PciWalkFdt cbinfo = {
1303 .fdt = fdt,
1304 .offset = offset,
1305 .sphb = sphb,
1306 .err = 0,
1308 int ret;
1310 _FDT(fdt_setprop_cell(fdt, offset, "#address-cells",
1311 RESOURCE_CELLS_ADDRESS));
1312 _FDT(fdt_setprop_cell(fdt, offset, "#size-cells",
1313 RESOURCE_CELLS_SIZE));
1315 assert(bus);
1316 pci_for_each_device_reverse(bus, pci_bus_num(bus),
1317 spapr_dt_pci_device_cb, &cbinfo);
1318 if (cbinfo.err) {
1319 return cbinfo.err;
1322 if (pci_bus_is_root(bus)) {
1323 owner = OBJECT(sphb);
1324 } else {
1325 owner = OBJECT(pci_bridge_get_device(bus));
1328 ret = spapr_dt_drc(fdt, offset, owner,
1329 SPAPR_DR_CONNECTOR_TYPE_PCI);
1330 if (ret) {
1331 return ret;
1334 return offset;
1337 /* create OF node for pci device and required OF DT properties */
1338 static int spapr_dt_pci_device(SpaprPhbState *sphb, PCIDevice *dev,
1339 void *fdt, int parent_offset)
1341 int offset;
1342 const gchar *basename;
1343 gchar *nodename;
1344 int slot = PCI_SLOT(dev->devfn);
1345 int func = PCI_FUNC(dev->devfn);
1346 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
1347 ResourceProps rp;
1348 SpaprDrc *drc = drc_from_dev(sphb, dev);
1349 uint32_t vendor_id = pci_default_read_config(dev, PCI_VENDOR_ID, 2);
1350 uint32_t device_id = pci_default_read_config(dev, PCI_DEVICE_ID, 2);
1351 uint32_t revision_id = pci_default_read_config(dev, PCI_REVISION_ID, 1);
1352 uint32_t ccode = pci_default_read_config(dev, PCI_CLASS_PROG, 3);
1353 uint32_t irq_pin = pci_default_read_config(dev, PCI_INTERRUPT_PIN, 1);
1354 uint32_t subsystem_id = pci_default_read_config(dev, PCI_SUBSYSTEM_ID, 2);
1355 uint32_t subsystem_vendor_id =
1356 pci_default_read_config(dev, PCI_SUBSYSTEM_VENDOR_ID, 2);
1357 uint32_t cache_line_size =
1358 pci_default_read_config(dev, PCI_CACHE_LINE_SIZE, 1);
1359 uint32_t pci_status = pci_default_read_config(dev, PCI_STATUS, 2);
1360 gchar *loc_code;
1362 basename = dt_name_from_class((ccode >> 16) & 0xff, (ccode >> 8) & 0xff,
1363 ccode & 0xff);
1365 if (func != 0) {
1366 nodename = g_strdup_printf("%s@%x,%x", basename, slot, func);
1367 } else {
1368 nodename = g_strdup_printf("%s@%x", basename, slot);
1371 _FDT(offset = fdt_add_subnode(fdt, parent_offset, nodename));
1373 g_free(nodename);
1375 /* in accordance with PAPR+ v2.7 13.6.3, Table 181 */
1376 _FDT(fdt_setprop_cell(fdt, offset, "vendor-id", vendor_id));
1377 _FDT(fdt_setprop_cell(fdt, offset, "device-id", device_id));
1378 _FDT(fdt_setprop_cell(fdt, offset, "revision-id", revision_id));
1380 _FDT(fdt_setprop_cell(fdt, offset, "class-code", ccode));
1381 if (irq_pin) {
1382 _FDT(fdt_setprop_cell(fdt, offset, "interrupts", irq_pin));
1385 if (subsystem_id) {
1386 _FDT(fdt_setprop_cell(fdt, offset, "subsystem-id", subsystem_id));
1389 if (subsystem_vendor_id) {
1390 _FDT(fdt_setprop_cell(fdt, offset, "subsystem-vendor-id",
1391 subsystem_vendor_id));
1394 _FDT(fdt_setprop_cell(fdt, offset, "cache-line-size", cache_line_size));
1397 /* the following fdt cells are masked off the pci status register */
1398 _FDT(fdt_setprop_cell(fdt, offset, "devsel-speed",
1399 PCI_STATUS_DEVSEL_MASK & pci_status));
1401 if (pci_status & PCI_STATUS_FAST_BACK) {
1402 _FDT(fdt_setprop(fdt, offset, "fast-back-to-back", NULL, 0));
1404 if (pci_status & PCI_STATUS_66MHZ) {
1405 _FDT(fdt_setprop(fdt, offset, "66mhz-capable", NULL, 0));
1407 if (pci_status & PCI_STATUS_UDF) {
1408 _FDT(fdt_setprop(fdt, offset, "udf-supported", NULL, 0));
1411 loc_code = spapr_phb_get_loc_code(sphb, dev);
1412 _FDT(fdt_setprop_string(fdt, offset, "ibm,loc-code", loc_code));
1413 g_free(loc_code);
1415 if (drc) {
1416 _FDT(fdt_setprop_cell(fdt, offset, "ibm,my-drc-index",
1417 spapr_drc_index(drc)));
1420 if (msi_present(dev)) {
1421 uint32_t max_msi = msi_nr_vectors_allocated(dev);
1422 if (max_msi) {
1423 _FDT(fdt_setprop_cell(fdt, offset, "ibm,req#msi", max_msi));
1426 if (msix_present(dev)) {
1427 uint32_t max_msix = dev->msix_entries_nr;
1428 if (max_msix) {
1429 _FDT(fdt_setprop_cell(fdt, offset, "ibm,req#msi-x", max_msix));
1433 populate_resource_props(dev, &rp);
1434 _FDT(fdt_setprop(fdt, offset, "reg", (uint8_t *)rp.reg, rp.reg_len));
1436 if (sphb->pcie_ecs && pci_is_express(dev)) {
1437 _FDT(fdt_setprop_cell(fdt, offset, "ibm,pci-config-space-type", 0x1));
1440 spapr_phb_nvgpu_populate_pcidev_dt(dev, fdt, offset, sphb);
1442 if (!pc->is_bridge) {
1443 /* Properties only for non-bridges */
1444 uint32_t min_grant = pci_default_read_config(dev, PCI_MIN_GNT, 1);
1445 uint32_t max_latency = pci_default_read_config(dev, PCI_MAX_LAT, 1);
1446 _FDT(fdt_setprop_cell(fdt, offset, "min-grant", min_grant));
1447 _FDT(fdt_setprop_cell(fdt, offset, "max-latency", max_latency));
1448 return offset;
1449 } else {
1450 PCIBus *sec_bus = pci_bridge_get_sec_bus(PCI_BRIDGE(dev));
1452 return spapr_dt_pci_bus(sphb, sec_bus, fdt, offset);
1456 /* Callback to be called during DRC release. */
1457 void spapr_phb_remove_pci_device_cb(DeviceState *dev)
1459 HotplugHandler *hotplug_ctrl = qdev_get_hotplug_handler(dev);
1461 hotplug_handler_unplug(hotplug_ctrl, dev, &error_abort);
1462 object_unparent(OBJECT(dev));
1465 int spapr_pci_dt_populate(SpaprDrc *drc, SpaprMachineState *spapr,
1466 void *fdt, int *fdt_start_offset, Error **errp)
1468 HotplugHandler *plug_handler = qdev_get_hotplug_handler(drc->dev);
1469 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(plug_handler);
1470 PCIDevice *pdev = PCI_DEVICE(drc->dev);
1472 *fdt_start_offset = spapr_dt_pci_device(sphb, pdev, fdt, 0);
1473 return 0;
1476 static void spapr_pci_bridge_plug(SpaprPhbState *phb,
1477 PCIBridge *bridge)
1479 PCIBus *bus = pci_bridge_get_sec_bus(bridge);
1481 add_drcs(phb, bus);
1484 /* Returns non-zero if the value of "chassis_nr" is already in use */
1485 static int check_chassis_nr(Object *obj, void *opaque)
1487 int new_chassis_nr =
1488 object_property_get_uint(opaque, "chassis_nr", &error_abort);
1489 int chassis_nr =
1490 object_property_get_uint(obj, "chassis_nr", NULL);
1492 if (!object_dynamic_cast(obj, TYPE_PCI_BRIDGE)) {
1493 return 0;
1496 /* Skip unsupported bridge types */
1497 if (!chassis_nr) {
1498 return 0;
1501 /* Skip self */
1502 if (obj == opaque) {
1503 return 0;
1506 return chassis_nr == new_chassis_nr;
1509 static bool bridge_has_valid_chassis_nr(Object *bridge, Error **errp)
1511 int chassis_nr =
1512 object_property_get_uint(bridge, "chassis_nr", NULL);
1515 * slotid_cap_init() already ensures that "chassis_nr" isn't null for
1516 * standard PCI bridges, so this really tells if "chassis_nr" is present
1517 * or not.
1519 if (!chassis_nr) {
1520 error_setg(errp, "PCI Bridge lacks a \"chassis_nr\" property");
1521 error_append_hint(errp, "Try -device pci-bridge instead.\n");
1522 return false;
1525 /* We want unique values for "chassis_nr" */
1526 if (object_child_foreach_recursive(object_get_root(), check_chassis_nr,
1527 bridge)) {
1528 error_setg(errp, "Bridge chassis %d already in use", chassis_nr);
1529 return false;
1532 return true;
1535 static void spapr_pci_plug(HotplugHandler *plug_handler,
1536 DeviceState *plugged_dev, Error **errp)
1538 SpaprPhbState *phb = SPAPR_PCI_HOST_BRIDGE(DEVICE(plug_handler));
1539 PCIDevice *pdev = PCI_DEVICE(plugged_dev);
1540 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(plugged_dev);
1541 SpaprDrc *drc = drc_from_dev(phb, pdev);
1542 PCIBus *bus = PCI_BUS(qdev_get_parent_bus(DEVICE(pdev)));
1543 uint32_t slotnr = PCI_SLOT(pdev->devfn);
1545 /* if DR is disabled we don't need to do anything in the case of
1546 * hotplug or coldplug callbacks
1548 if (!phb->dr_enabled) {
1549 /* if this is a hotplug operation initiated by the user
1550 * we need to let them know it's not enabled
1552 if (plugged_dev->hotplugged) {
1553 error_setg(errp, QERR_BUS_NO_HOTPLUG,
1554 object_get_typename(OBJECT(phb)));
1556 return;
1559 g_assert(drc);
1561 if (pc->is_bridge) {
1562 if (!bridge_has_valid_chassis_nr(OBJECT(plugged_dev), errp)) {
1563 return;
1565 spapr_pci_bridge_plug(phb, PCI_BRIDGE(plugged_dev));
1568 /* Following the QEMU convention used for PCIe multifunction
1569 * hotplug, we do not allow functions to be hotplugged to a
1570 * slot that already has function 0 present
1572 if (plugged_dev->hotplugged && bus->devices[PCI_DEVFN(slotnr, 0)] &&
1573 PCI_FUNC(pdev->devfn) != 0) {
1574 error_setg(errp, "PCI: slot %d function 0 already occupied by %s,"
1575 " additional functions can no longer be exposed to guest.",
1576 slotnr, bus->devices[PCI_DEVFN(slotnr, 0)]->name);
1577 return;
1580 if (!spapr_drc_attach(drc, DEVICE(pdev), errp)) {
1581 return;
1584 /* If this is function 0, signal hotplug for all the device functions.
1585 * Otherwise defer sending the hotplug event.
1587 if (!spapr_drc_hotplugged(plugged_dev)) {
1588 spapr_drc_reset(drc);
1589 } else if (PCI_FUNC(pdev->devfn) == 0) {
1590 int i;
1591 uint8_t chassis = chassis_from_bus(pci_get_bus(pdev));
1593 for (i = 0; i < 8; i++) {
1594 SpaprDrc *func_drc;
1595 SpaprDrcClass *func_drck;
1596 SpaprDREntitySense state;
1598 func_drc = drc_from_devfn(phb, chassis, PCI_DEVFN(slotnr, i));
1599 func_drck = SPAPR_DR_CONNECTOR_GET_CLASS(func_drc);
1600 state = func_drck->dr_entity_sense(func_drc);
1602 if (state == SPAPR_DR_ENTITY_SENSE_PRESENT) {
1603 spapr_hotplug_req_add_by_index(func_drc);
1609 static void spapr_pci_bridge_unplug(SpaprPhbState *phb,
1610 PCIBridge *bridge)
1612 PCIBus *bus = pci_bridge_get_sec_bus(bridge);
1614 remove_drcs(phb, bus);
1617 static void spapr_pci_unplug(HotplugHandler *plug_handler,
1618 DeviceState *plugged_dev, Error **errp)
1620 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(plugged_dev);
1621 SpaprPhbState *phb = SPAPR_PCI_HOST_BRIDGE(DEVICE(plug_handler));
1623 /* some version guests do not wait for completion of a device
1624 * cleanup (generally done asynchronously by the kernel) before
1625 * signaling to QEMU that the device is safe, but instead sleep
1626 * for some 'safe' period of time. unfortunately on a busy host
1627 * this sleep isn't guaranteed to be long enough, resulting in
1628 * bad things like IRQ lines being left asserted during final
1629 * device removal. to deal with this we call reset just prior
1630 * to finalizing the device, which will put the device back into
1631 * an 'idle' state, as the device cleanup code expects.
1633 pci_device_reset(PCI_DEVICE(plugged_dev));
1635 if (pc->is_bridge) {
1636 spapr_pci_bridge_unplug(phb, PCI_BRIDGE(plugged_dev));
1637 return;
1640 qdev_unrealize(plugged_dev);
1643 static void spapr_pci_unplug_request(HotplugHandler *plug_handler,
1644 DeviceState *plugged_dev, Error **errp)
1646 SpaprPhbState *phb = SPAPR_PCI_HOST_BRIDGE(DEVICE(plug_handler));
1647 PCIDevice *pdev = PCI_DEVICE(plugged_dev);
1648 SpaprDrc *drc = drc_from_dev(phb, pdev);
1650 if (!phb->dr_enabled) {
1651 error_setg(errp, QERR_BUS_NO_HOTPLUG,
1652 object_get_typename(OBJECT(phb)));
1653 return;
1656 g_assert(drc);
1657 g_assert(drc->dev == plugged_dev);
1659 if (!spapr_drc_unplug_requested(drc)) {
1660 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(plugged_dev);
1661 uint32_t slotnr = PCI_SLOT(pdev->devfn);
1662 SpaprDrc *func_drc;
1663 SpaprDrcClass *func_drck;
1664 SpaprDREntitySense state;
1665 int i;
1666 uint8_t chassis = chassis_from_bus(pci_get_bus(pdev));
1668 if (pc->is_bridge) {
1669 error_setg(errp, "PCI: Hot unplug of PCI bridges not supported");
1670 return;
1672 if (object_property_get_uint(OBJECT(pdev), "nvlink2-tgt", NULL)) {
1673 error_setg(errp, "PCI: Cannot unplug NVLink2 devices");
1674 return;
1677 /* ensure any other present functions are pending unplug */
1678 if (PCI_FUNC(pdev->devfn) == 0) {
1679 for (i = 1; i < 8; i++) {
1680 func_drc = drc_from_devfn(phb, chassis, PCI_DEVFN(slotnr, i));
1681 func_drck = SPAPR_DR_CONNECTOR_GET_CLASS(func_drc);
1682 state = func_drck->dr_entity_sense(func_drc);
1683 if (state == SPAPR_DR_ENTITY_SENSE_PRESENT
1684 && !spapr_drc_unplug_requested(func_drc)) {
1686 * Attempting to remove function 0 of a multifunction
1687 * device will will cascade into removing all child
1688 * functions, even if their unplug weren't requested
1689 * beforehand.
1691 spapr_drc_detach(func_drc);
1696 spapr_drc_detach(drc);
1698 /* if this isn't func 0, defer unplug event. otherwise signal removal
1699 * for all present functions
1701 if (PCI_FUNC(pdev->devfn) == 0) {
1702 for (i = 7; i >= 0; i--) {
1703 func_drc = drc_from_devfn(phb, chassis, PCI_DEVFN(slotnr, i));
1704 func_drck = SPAPR_DR_CONNECTOR_GET_CLASS(func_drc);
1705 state = func_drck->dr_entity_sense(func_drc);
1706 if (state == SPAPR_DR_ENTITY_SENSE_PRESENT) {
1707 spapr_hotplug_req_remove_by_index(func_drc);
1714 static void spapr_phb_finalizefn(Object *obj)
1716 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(obj);
1718 g_free(sphb->dtbusname);
1719 sphb->dtbusname = NULL;
1722 static void spapr_phb_unrealize(DeviceState *dev)
1724 SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
1725 SysBusDevice *s = SYS_BUS_DEVICE(dev);
1726 PCIHostState *phb = PCI_HOST_BRIDGE(s);
1727 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(phb);
1728 SpaprTceTable *tcet;
1729 int i;
1730 const unsigned windows_supported = spapr_phb_windows_supported(sphb);
1732 spapr_phb_nvgpu_free(sphb);
1734 if (sphb->msi) {
1735 g_hash_table_unref(sphb->msi);
1736 sphb->msi = NULL;
1740 * Remove IO/MMIO subregions and aliases, rest should get cleaned
1741 * via PHB's unrealize->object_finalize
1743 for (i = windows_supported - 1; i >= 0; i--) {
1744 tcet = spapr_tce_find_by_liobn(sphb->dma_liobn[i]);
1745 if (tcet) {
1746 memory_region_del_subregion(&sphb->iommu_root,
1747 spapr_tce_get_iommu(tcet));
1751 remove_drcs(sphb, phb->bus);
1753 for (i = PCI_NUM_PINS - 1; i >= 0; i--) {
1754 if (sphb->lsi_table[i].irq) {
1755 spapr_irq_free(spapr, sphb->lsi_table[i].irq, 1);
1756 sphb->lsi_table[i].irq = 0;
1760 QLIST_REMOVE(sphb, list);
1762 memory_region_del_subregion(&sphb->iommu_root, &sphb->msiwindow);
1765 * An attached PCI device may have memory listeners, eg. VFIO PCI. We have
1766 * unmapped all sections. Remove the listeners now, before destroying the
1767 * address space.
1769 address_space_remove_listeners(&sphb->iommu_as);
1770 address_space_destroy(&sphb->iommu_as);
1772 qbus_set_hotplug_handler(BUS(phb->bus), NULL);
1773 pci_unregister_root_bus(phb->bus);
1775 memory_region_del_subregion(get_system_memory(), &sphb->iowindow);
1776 if (sphb->mem64_win_pciaddr != (hwaddr)-1) {
1777 memory_region_del_subregion(get_system_memory(), &sphb->mem64window);
1779 memory_region_del_subregion(get_system_memory(), &sphb->mem32window);
1782 static void spapr_phb_destroy_msi(gpointer opaque)
1784 SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
1785 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
1786 SpaprPciMsi *msi = opaque;
1788 if (!smc->legacy_irq_allocation) {
1789 spapr_irq_msi_free(spapr, msi->first_irq, msi->num);
1791 spapr_irq_free(spapr, msi->first_irq, msi->num);
1792 g_free(msi);
1795 static void spapr_phb_realize(DeviceState *dev, Error **errp)
1797 ERRP_GUARD();
1798 /* We don't use SPAPR_MACHINE() in order to exit gracefully if the user
1799 * tries to add a sPAPR PHB to a non-pseries machine.
1801 SpaprMachineState *spapr =
1802 (SpaprMachineState *) object_dynamic_cast(qdev_get_machine(),
1803 TYPE_SPAPR_MACHINE);
1804 SpaprMachineClass *smc = spapr ? SPAPR_MACHINE_GET_CLASS(spapr) : NULL;
1805 SysBusDevice *s = SYS_BUS_DEVICE(dev);
1806 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(s);
1807 PCIHostState *phb = PCI_HOST_BRIDGE(s);
1808 MachineState *ms = MACHINE(spapr);
1809 char *namebuf;
1810 int i;
1811 PCIBus *bus;
1812 uint64_t msi_window_size = 4096;
1813 SpaprTceTable *tcet;
1814 const unsigned windows_supported = spapr_phb_windows_supported(sphb);
1816 if (!spapr) {
1817 error_setg(errp, TYPE_SPAPR_PCI_HOST_BRIDGE " needs a pseries machine");
1818 return;
1821 assert(sphb->index != (uint32_t)-1); /* checked in spapr_phb_pre_plug() */
1823 if (sphb->mem64_win_size != 0) {
1824 if (sphb->mem_win_size > SPAPR_PCI_MEM32_WIN_SIZE) {
1825 error_setg(errp, "32-bit memory window of size 0x%"HWADDR_PRIx
1826 " (max 2 GiB)", sphb->mem_win_size);
1827 return;
1830 /* 64-bit window defaults to identity mapping */
1831 sphb->mem64_win_pciaddr = sphb->mem64_win_addr;
1832 } else if (sphb->mem_win_size > SPAPR_PCI_MEM32_WIN_SIZE) {
1834 * For compatibility with old configuration, if no 64-bit MMIO
1835 * window is specified, but the ordinary (32-bit) memory
1836 * window is specified as > 2GiB, we treat it as a 2GiB 32-bit
1837 * window, with a 64-bit MMIO window following on immediately
1838 * afterwards
1840 sphb->mem64_win_size = sphb->mem_win_size - SPAPR_PCI_MEM32_WIN_SIZE;
1841 sphb->mem64_win_addr = sphb->mem_win_addr + SPAPR_PCI_MEM32_WIN_SIZE;
1842 sphb->mem64_win_pciaddr =
1843 SPAPR_PCI_MEM_WIN_BUS_OFFSET + SPAPR_PCI_MEM32_WIN_SIZE;
1844 sphb->mem_win_size = SPAPR_PCI_MEM32_WIN_SIZE;
1847 if (spapr_pci_find_phb(spapr, sphb->buid)) {
1848 SpaprPhbState *s;
1850 error_setg(errp, "PCI host bridges must have unique indexes");
1851 error_append_hint(errp, "The following indexes are already in use:");
1852 QLIST_FOREACH(s, &spapr->phbs, list) {
1853 error_append_hint(errp, " %d", s->index);
1855 error_append_hint(errp, "\nTry another value for the index property\n");
1856 return;
1859 if (sphb->numa_node != -1 &&
1860 (sphb->numa_node >= MAX_NODES ||
1861 !ms->numa_state->nodes[sphb->numa_node].present)) {
1862 error_setg(errp, "Invalid NUMA node ID for PCI host bridge");
1863 return;
1866 sphb->dtbusname = g_strdup_printf("pci@%" PRIx64, sphb->buid);
1868 /* Initialize memory regions */
1869 namebuf = g_strdup_printf("%s.mmio", sphb->dtbusname);
1870 memory_region_init(&sphb->memspace, OBJECT(sphb), namebuf, UINT64_MAX);
1871 g_free(namebuf);
1873 namebuf = g_strdup_printf("%s.mmio32-alias", sphb->dtbusname);
1874 memory_region_init_alias(&sphb->mem32window, OBJECT(sphb),
1875 namebuf, &sphb->memspace,
1876 SPAPR_PCI_MEM_WIN_BUS_OFFSET, sphb->mem_win_size);
1877 g_free(namebuf);
1878 memory_region_add_subregion(get_system_memory(), sphb->mem_win_addr,
1879 &sphb->mem32window);
1881 if (sphb->mem64_win_size != 0) {
1882 namebuf = g_strdup_printf("%s.mmio64-alias", sphb->dtbusname);
1883 memory_region_init_alias(&sphb->mem64window, OBJECT(sphb),
1884 namebuf, &sphb->memspace,
1885 sphb->mem64_win_pciaddr, sphb->mem64_win_size);
1886 g_free(namebuf);
1888 memory_region_add_subregion(get_system_memory(),
1889 sphb->mem64_win_addr,
1890 &sphb->mem64window);
1893 /* Initialize IO regions */
1894 namebuf = g_strdup_printf("%s.io", sphb->dtbusname);
1895 memory_region_init(&sphb->iospace, OBJECT(sphb),
1896 namebuf, SPAPR_PCI_IO_WIN_SIZE);
1897 g_free(namebuf);
1899 namebuf = g_strdup_printf("%s.io-alias", sphb->dtbusname);
1900 memory_region_init_alias(&sphb->iowindow, OBJECT(sphb), namebuf,
1901 &sphb->iospace, 0, SPAPR_PCI_IO_WIN_SIZE);
1902 g_free(namebuf);
1903 memory_region_add_subregion(get_system_memory(), sphb->io_win_addr,
1904 &sphb->iowindow);
1906 bus = pci_register_root_bus(dev, NULL,
1907 pci_spapr_set_irq, pci_swizzle_map_irq_fn, sphb,
1908 &sphb->memspace, &sphb->iospace,
1909 PCI_DEVFN(0, 0), PCI_NUM_PINS,
1910 TYPE_PCI_BUS);
1913 * Despite resembling a vanilla PCI bus in most ways, the PAPR
1914 * para-virtualized PCI bus *does* permit PCI-E extended config
1915 * space access
1917 if (sphb->pcie_ecs) {
1918 bus->flags |= PCI_BUS_EXTENDED_CONFIG_SPACE;
1920 phb->bus = bus;
1921 qbus_set_hotplug_handler(BUS(phb->bus), OBJECT(sphb));
1924 * Initialize PHB address space.
1925 * By default there will be at least one subregion for default
1926 * 32bit DMA window.
1927 * Later the guest might want to create another DMA window
1928 * which will become another memory subregion.
1930 namebuf = g_strdup_printf("%s.iommu-root", sphb->dtbusname);
1931 memory_region_init(&sphb->iommu_root, OBJECT(sphb),
1932 namebuf, UINT64_MAX);
1933 g_free(namebuf);
1934 address_space_init(&sphb->iommu_as, &sphb->iommu_root,
1935 sphb->dtbusname);
1938 * As MSI/MSIX interrupts trigger by writing at MSI/MSIX vectors,
1939 * we need to allocate some memory to catch those writes coming
1940 * from msi_notify()/msix_notify().
1941 * As MSIMessage:addr is going to be the same and MSIMessage:data
1942 * is going to be a VIRQ number, 4 bytes of the MSI MR will only
1943 * be used.
1945 * For KVM we want to ensure that this memory is a full page so that
1946 * our memory slot is of page size granularity.
1948 if (kvm_enabled()) {
1949 msi_window_size = qemu_real_host_page_size;
1952 memory_region_init_io(&sphb->msiwindow, OBJECT(sphb), &spapr_msi_ops, spapr,
1953 "msi", msi_window_size);
1954 memory_region_add_subregion(&sphb->iommu_root, SPAPR_PCI_MSI_WINDOW,
1955 &sphb->msiwindow);
1957 pci_setup_iommu(bus, spapr_pci_dma_iommu, sphb);
1959 pci_bus_set_route_irq_fn(bus, spapr_route_intx_pin_to_irq);
1961 QLIST_INSERT_HEAD(&spapr->phbs, sphb, list);
1963 /* Initialize the LSI table */
1964 for (i = 0; i < PCI_NUM_PINS; i++) {
1965 int irq = SPAPR_IRQ_PCI_LSI + sphb->index * PCI_NUM_PINS + i;
1967 if (smc->legacy_irq_allocation) {
1968 irq = spapr_irq_findone(spapr, errp);
1969 if (irq < 0) {
1970 error_prepend(errp, "can't allocate LSIs: ");
1972 * Older machines will never support PHB hotplug, ie, this is an
1973 * init only path and QEMU will terminate. No need to rollback.
1975 return;
1979 if (spapr_irq_claim(spapr, irq, true, errp) < 0) {
1980 error_prepend(errp, "can't allocate LSIs: ");
1981 goto unrealize;
1984 sphb->lsi_table[i].irq = irq;
1987 /* allocate connectors for child PCI devices */
1988 add_drcs(sphb, phb->bus);
1990 /* DMA setup */
1991 for (i = 0; i < windows_supported; ++i) {
1992 tcet = spapr_tce_new_table(DEVICE(sphb), sphb->dma_liobn[i]);
1993 if (!tcet) {
1994 error_setg(errp, "Creating window#%d failed for %s",
1995 i, sphb->dtbusname);
1996 goto unrealize;
1998 memory_region_add_subregion(&sphb->iommu_root, 0,
1999 spapr_tce_get_iommu(tcet));
2002 sphb->msi = g_hash_table_new_full(g_int_hash, g_int_equal, g_free,
2003 spapr_phb_destroy_msi);
2004 return;
2006 unrealize:
2007 spapr_phb_unrealize(dev);
2010 static int spapr_phb_children_reset(Object *child, void *opaque)
2012 DeviceState *dev = (DeviceState *) object_dynamic_cast(child, TYPE_DEVICE);
2014 if (dev) {
2015 device_legacy_reset(dev);
2018 return 0;
2021 void spapr_phb_dma_reset(SpaprPhbState *sphb)
2023 int i;
2024 SpaprTceTable *tcet;
2026 for (i = 0; i < SPAPR_PCI_DMA_MAX_WINDOWS; ++i) {
2027 tcet = spapr_tce_find_by_liobn(sphb->dma_liobn[i]);
2029 if (tcet && tcet->nb_table) {
2030 spapr_tce_table_disable(tcet);
2034 /* Register default 32bit DMA window */
2035 tcet = spapr_tce_find_by_liobn(sphb->dma_liobn[0]);
2036 spapr_tce_table_enable(tcet, SPAPR_TCE_PAGE_SHIFT, sphb->dma_win_addr,
2037 sphb->dma_win_size >> SPAPR_TCE_PAGE_SHIFT);
2040 static void spapr_phb_reset(DeviceState *qdev)
2042 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(qdev);
2043 Error *err = NULL;
2045 spapr_phb_dma_reset(sphb);
2046 spapr_phb_nvgpu_free(sphb);
2047 spapr_phb_nvgpu_setup(sphb, &err);
2048 if (err) {
2049 error_report_err(err);
2052 /* Reset the IOMMU state */
2053 object_child_foreach(OBJECT(qdev), spapr_phb_children_reset, NULL);
2055 if (spapr_phb_eeh_available(SPAPR_PCI_HOST_BRIDGE(qdev))) {
2056 spapr_phb_vfio_reset(qdev);
2059 g_hash_table_remove_all(sphb->msi);
2062 static Property spapr_phb_properties[] = {
2063 DEFINE_PROP_UINT32("index", SpaprPhbState, index, -1),
2064 DEFINE_PROP_UINT64("mem_win_size", SpaprPhbState, mem_win_size,
2065 SPAPR_PCI_MEM32_WIN_SIZE),
2066 DEFINE_PROP_UINT64("mem64_win_size", SpaprPhbState, mem64_win_size,
2067 SPAPR_PCI_MEM64_WIN_SIZE),
2068 DEFINE_PROP_UINT64("io_win_size", SpaprPhbState, io_win_size,
2069 SPAPR_PCI_IO_WIN_SIZE),
2070 DEFINE_PROP_BOOL("dynamic-reconfiguration", SpaprPhbState, dr_enabled,
2071 true),
2072 /* Default DMA window is 0..1GB */
2073 DEFINE_PROP_UINT64("dma_win_addr", SpaprPhbState, dma_win_addr, 0),
2074 DEFINE_PROP_UINT64("dma_win_size", SpaprPhbState, dma_win_size, 0x40000000),
2075 DEFINE_PROP_UINT64("dma64_win_addr", SpaprPhbState, dma64_win_addr,
2076 0x800000000000000ULL),
2077 DEFINE_PROP_BOOL("ddw", SpaprPhbState, ddw_enabled, true),
2078 DEFINE_PROP_UINT64("pgsz", SpaprPhbState, page_size_mask,
2079 (1ULL << 12) | (1ULL << 16)
2080 | (1ULL << 21) | (1ULL << 24)),
2081 DEFINE_PROP_UINT32("numa_node", SpaprPhbState, numa_node, -1),
2082 DEFINE_PROP_BOOL("pre-2.8-migration", SpaprPhbState,
2083 pre_2_8_migration, false),
2084 DEFINE_PROP_BOOL("pcie-extended-configuration-space", SpaprPhbState,
2085 pcie_ecs, true),
2086 DEFINE_PROP_UINT64("gpa", SpaprPhbState, nv2_gpa_win_addr, 0),
2087 DEFINE_PROP_UINT64("atsd", SpaprPhbState, nv2_atsd_win_addr, 0),
2088 DEFINE_PROP_BOOL("pre-5.1-associativity", SpaprPhbState,
2089 pre_5_1_assoc, false),
2090 DEFINE_PROP_END_OF_LIST(),
2093 static const VMStateDescription vmstate_spapr_pci_lsi = {
2094 .name = "spapr_pci/lsi",
2095 .version_id = 1,
2096 .minimum_version_id = 1,
2097 .fields = (VMStateField[]) {
2098 VMSTATE_UINT32_EQUAL(irq, SpaprPciLsi, NULL),
2100 VMSTATE_END_OF_LIST()
2104 static const VMStateDescription vmstate_spapr_pci_msi = {
2105 .name = "spapr_pci/msi",
2106 .version_id = 1,
2107 .minimum_version_id = 1,
2108 .fields = (VMStateField []) {
2109 VMSTATE_UINT32(key, SpaprPciMsiMig),
2110 VMSTATE_UINT32(value.first_irq, SpaprPciMsiMig),
2111 VMSTATE_UINT32(value.num, SpaprPciMsiMig),
2112 VMSTATE_END_OF_LIST()
2116 static int spapr_pci_pre_save(void *opaque)
2118 SpaprPhbState *sphb = opaque;
2119 GHashTableIter iter;
2120 gpointer key, value;
2121 int i;
2123 if (sphb->pre_2_8_migration) {
2124 sphb->mig_liobn = sphb->dma_liobn[0];
2125 sphb->mig_mem_win_addr = sphb->mem_win_addr;
2126 sphb->mig_mem_win_size = sphb->mem_win_size;
2127 sphb->mig_io_win_addr = sphb->io_win_addr;
2128 sphb->mig_io_win_size = sphb->io_win_size;
2130 if ((sphb->mem64_win_size != 0)
2131 && (sphb->mem64_win_addr
2132 == (sphb->mem_win_addr + sphb->mem_win_size))) {
2133 sphb->mig_mem_win_size += sphb->mem64_win_size;
2137 g_free(sphb->msi_devs);
2138 sphb->msi_devs = NULL;
2139 sphb->msi_devs_num = g_hash_table_size(sphb->msi);
2140 if (!sphb->msi_devs_num) {
2141 return 0;
2143 sphb->msi_devs = g_new(SpaprPciMsiMig, sphb->msi_devs_num);
2145 g_hash_table_iter_init(&iter, sphb->msi);
2146 for (i = 0; g_hash_table_iter_next(&iter, &key, &value); ++i) {
2147 sphb->msi_devs[i].key = *(uint32_t *) key;
2148 sphb->msi_devs[i].value = *(SpaprPciMsi *) value;
2151 return 0;
2154 static int spapr_pci_post_load(void *opaque, int version_id)
2156 SpaprPhbState *sphb = opaque;
2157 gpointer key, value;
2158 int i;
2160 for (i = 0; i < sphb->msi_devs_num; ++i) {
2161 key = g_memdup(&sphb->msi_devs[i].key,
2162 sizeof(sphb->msi_devs[i].key));
2163 value = g_memdup(&sphb->msi_devs[i].value,
2164 sizeof(sphb->msi_devs[i].value));
2165 g_hash_table_insert(sphb->msi, key, value);
2167 g_free(sphb->msi_devs);
2168 sphb->msi_devs = NULL;
2169 sphb->msi_devs_num = 0;
2171 return 0;
2174 static bool pre_2_8_migration(void *opaque, int version_id)
2176 SpaprPhbState *sphb = opaque;
2178 return sphb->pre_2_8_migration;
2181 static const VMStateDescription vmstate_spapr_pci = {
2182 .name = "spapr_pci",
2183 .version_id = 2,
2184 .minimum_version_id = 2,
2185 .pre_save = spapr_pci_pre_save,
2186 .post_load = spapr_pci_post_load,
2187 .fields = (VMStateField[]) {
2188 VMSTATE_UINT64_EQUAL(buid, SpaprPhbState, NULL),
2189 VMSTATE_UINT32_TEST(mig_liobn, SpaprPhbState, pre_2_8_migration),
2190 VMSTATE_UINT64_TEST(mig_mem_win_addr, SpaprPhbState, pre_2_8_migration),
2191 VMSTATE_UINT64_TEST(mig_mem_win_size, SpaprPhbState, pre_2_8_migration),
2192 VMSTATE_UINT64_TEST(mig_io_win_addr, SpaprPhbState, pre_2_8_migration),
2193 VMSTATE_UINT64_TEST(mig_io_win_size, SpaprPhbState, pre_2_8_migration),
2194 VMSTATE_STRUCT_ARRAY(lsi_table, SpaprPhbState, PCI_NUM_PINS, 0,
2195 vmstate_spapr_pci_lsi, SpaprPciLsi),
2196 VMSTATE_INT32(msi_devs_num, SpaprPhbState),
2197 VMSTATE_STRUCT_VARRAY_ALLOC(msi_devs, SpaprPhbState, msi_devs_num, 0,
2198 vmstate_spapr_pci_msi, SpaprPciMsiMig),
2199 VMSTATE_END_OF_LIST()
2203 static const char *spapr_phb_root_bus_path(PCIHostState *host_bridge,
2204 PCIBus *rootbus)
2206 SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(host_bridge);
2208 return sphb->dtbusname;
2211 static void spapr_phb_class_init(ObjectClass *klass, void *data)
2213 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
2214 DeviceClass *dc = DEVICE_CLASS(klass);
2215 HotplugHandlerClass *hp = HOTPLUG_HANDLER_CLASS(klass);
2217 hc->root_bus_path = spapr_phb_root_bus_path;
2218 dc->realize = spapr_phb_realize;
2219 dc->unrealize = spapr_phb_unrealize;
2220 device_class_set_props(dc, spapr_phb_properties);
2221 dc->reset = spapr_phb_reset;
2222 dc->vmsd = &vmstate_spapr_pci;
2223 /* Supported by TYPE_SPAPR_MACHINE */
2224 dc->user_creatable = true;
2225 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
2226 hp->plug = spapr_pci_plug;
2227 hp->unplug = spapr_pci_unplug;
2228 hp->unplug_request = spapr_pci_unplug_request;
2231 static const TypeInfo spapr_phb_info = {
2232 .name = TYPE_SPAPR_PCI_HOST_BRIDGE,
2233 .parent = TYPE_PCI_HOST_BRIDGE,
2234 .instance_size = sizeof(SpaprPhbState),
2235 .instance_finalize = spapr_phb_finalizefn,
2236 .class_init = spapr_phb_class_init,
2237 .interfaces = (InterfaceInfo[]) {
2238 { TYPE_HOTPLUG_HANDLER },
2243 static void spapr_phb_pci_enumerate_bridge(PCIBus *bus, PCIDevice *pdev,
2244 void *opaque)
2246 unsigned int *bus_no = opaque;
2247 PCIBus *sec_bus = NULL;
2249 if ((pci_default_read_config(pdev, PCI_HEADER_TYPE, 1) !=
2250 PCI_HEADER_TYPE_BRIDGE)) {
2251 return;
2254 (*bus_no)++;
2255 pci_default_write_config(pdev, PCI_PRIMARY_BUS, pci_dev_bus_num(pdev), 1);
2256 pci_default_write_config(pdev, PCI_SECONDARY_BUS, *bus_no, 1);
2257 pci_default_write_config(pdev, PCI_SUBORDINATE_BUS, *bus_no, 1);
2259 sec_bus = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev));
2260 if (!sec_bus) {
2261 return;
2264 pci_for_each_device(sec_bus, pci_bus_num(sec_bus),
2265 spapr_phb_pci_enumerate_bridge, bus_no);
2266 pci_default_write_config(pdev, PCI_SUBORDINATE_BUS, *bus_no, 1);
2269 static void spapr_phb_pci_enumerate(SpaprPhbState *phb)
2271 PCIBus *bus = PCI_HOST_BRIDGE(phb)->bus;
2272 unsigned int bus_no = 0;
2274 pci_for_each_device(bus, pci_bus_num(bus),
2275 spapr_phb_pci_enumerate_bridge,
2276 &bus_no);
2280 int spapr_dt_phb(SpaprMachineState *spapr, SpaprPhbState *phb,
2281 uint32_t intc_phandle, void *fdt, int *node_offset)
2283 int bus_off, i, j, ret;
2284 uint32_t bus_range[] = { cpu_to_be32(0), cpu_to_be32(0xff) };
2285 struct {
2286 uint32_t hi;
2287 uint64_t child;
2288 uint64_t parent;
2289 uint64_t size;
2290 } QEMU_PACKED ranges[] = {
2292 cpu_to_be32(b_ss(1)), cpu_to_be64(0),
2293 cpu_to_be64(phb->io_win_addr),
2294 cpu_to_be64(memory_region_size(&phb->iospace)),
2297 cpu_to_be32(b_ss(2)), cpu_to_be64(SPAPR_PCI_MEM_WIN_BUS_OFFSET),
2298 cpu_to_be64(phb->mem_win_addr),
2299 cpu_to_be64(phb->mem_win_size),
2302 cpu_to_be32(b_ss(3)), cpu_to_be64(phb->mem64_win_pciaddr),
2303 cpu_to_be64(phb->mem64_win_addr),
2304 cpu_to_be64(phb->mem64_win_size),
2307 const unsigned sizeof_ranges =
2308 (phb->mem64_win_size ? 3 : 2) * sizeof(ranges[0]);
2309 uint64_t bus_reg[] = { cpu_to_be64(phb->buid), 0 };
2310 uint32_t interrupt_map_mask[] = {
2311 cpu_to_be32(b_ddddd(-1)|b_fff(0)), 0x0, 0x0, cpu_to_be32(-1)};
2312 uint32_t interrupt_map[PCI_SLOT_MAX * PCI_NUM_PINS][7];
2313 uint32_t ddw_applicable[] = {
2314 cpu_to_be32(RTAS_IBM_QUERY_PE_DMA_WINDOW),
2315 cpu_to_be32(RTAS_IBM_CREATE_PE_DMA_WINDOW),
2316 cpu_to_be32(RTAS_IBM_REMOVE_PE_DMA_WINDOW)
2318 uint32_t ddw_extensions[] = {
2319 cpu_to_be32(1),
2320 cpu_to_be32(RTAS_IBM_RESET_PE_DMA_WINDOW)
2322 SpaprTceTable *tcet;
2323 SpaprDrc *drc;
2324 Error *err = NULL;
2326 /* Start populating the FDT */
2327 _FDT(bus_off = fdt_add_subnode(fdt, 0, phb->dtbusname));
2328 if (node_offset) {
2329 *node_offset = bus_off;
2332 /* Write PHB properties */
2333 _FDT(fdt_setprop_string(fdt, bus_off, "device_type", "pci"));
2334 _FDT(fdt_setprop_string(fdt, bus_off, "compatible", "IBM,Logical_PHB"));
2335 _FDT(fdt_setprop_cell(fdt, bus_off, "#interrupt-cells", 0x1));
2336 _FDT(fdt_setprop(fdt, bus_off, "used-by-rtas", NULL, 0));
2337 _FDT(fdt_setprop(fdt, bus_off, "bus-range", &bus_range, sizeof(bus_range)));
2338 _FDT(fdt_setprop(fdt, bus_off, "ranges", &ranges, sizeof_ranges));
2339 _FDT(fdt_setprop(fdt, bus_off, "reg", &bus_reg, sizeof(bus_reg)));
2340 _FDT(fdt_setprop_cell(fdt, bus_off, "ibm,pci-config-space-type", 0x1));
2341 _FDT(fdt_setprop_cell(fdt, bus_off, "ibm,pe-total-#msi",
2342 spapr_irq_nr_msis(spapr)));
2344 /* Dynamic DMA window */
2345 if (phb->ddw_enabled) {
2346 _FDT(fdt_setprop(fdt, bus_off, "ibm,ddw-applicable", &ddw_applicable,
2347 sizeof(ddw_applicable)));
2348 _FDT(fdt_setprop(fdt, bus_off, "ibm,ddw-extensions",
2349 &ddw_extensions, sizeof(ddw_extensions)));
2352 /* Advertise NUMA via ibm,associativity */
2353 if (phb->numa_node != -1) {
2354 spapr_numa_write_associativity_dt(spapr, fdt, bus_off, phb->numa_node);
2357 /* Build the interrupt-map, this must matches what is done
2358 * in pci_swizzle_map_irq_fn
2360 _FDT(fdt_setprop(fdt, bus_off, "interrupt-map-mask",
2361 &interrupt_map_mask, sizeof(interrupt_map_mask)));
2362 for (i = 0; i < PCI_SLOT_MAX; i++) {
2363 for (j = 0; j < PCI_NUM_PINS; j++) {
2364 uint32_t *irqmap = interrupt_map[i*PCI_NUM_PINS + j];
2365 int lsi_num = pci_swizzle(i, j);
2367 irqmap[0] = cpu_to_be32(b_ddddd(i)|b_fff(0));
2368 irqmap[1] = 0;
2369 irqmap[2] = 0;
2370 irqmap[3] = cpu_to_be32(j+1);
2371 irqmap[4] = cpu_to_be32(intc_phandle);
2372 spapr_dt_irq(&irqmap[5], phb->lsi_table[lsi_num].irq, true);
2375 /* Write interrupt map */
2376 _FDT(fdt_setprop(fdt, bus_off, "interrupt-map", &interrupt_map,
2377 sizeof(interrupt_map)));
2379 tcet = spapr_tce_find_by_liobn(phb->dma_liobn[0]);
2380 if (!tcet) {
2381 return -1;
2383 spapr_dma_dt(fdt, bus_off, "ibm,dma-window",
2384 tcet->liobn, tcet->bus_offset,
2385 tcet->nb_table << tcet->page_shift);
2387 drc = spapr_drc_by_id(TYPE_SPAPR_DRC_PHB, phb->index);
2388 if (drc) {
2389 uint32_t drc_index = cpu_to_be32(spapr_drc_index(drc));
2391 _FDT(fdt_setprop(fdt, bus_off, "ibm,my-drc-index", &drc_index,
2392 sizeof(drc_index)));
2395 /* Walk the bridges and program the bus numbers*/
2396 spapr_phb_pci_enumerate(phb);
2397 _FDT(fdt_setprop_cell(fdt, bus_off, "qemu,phb-enumerated", 0x1));
2399 /* Walk the bridge and subordinate buses */
2400 ret = spapr_dt_pci_bus(phb, PCI_HOST_BRIDGE(phb)->bus, fdt, bus_off);
2401 if (ret < 0) {
2402 return ret;
2405 spapr_phb_nvgpu_populate_dt(phb, fdt, bus_off, &err);
2406 if (err) {
2407 error_report_err(err);
2409 spapr_phb_nvgpu_ram_populate_dt(phb, fdt);
2411 return 0;
2414 void spapr_pci_rtas_init(void)
2416 spapr_rtas_register(RTAS_READ_PCI_CONFIG, "read-pci-config",
2417 rtas_read_pci_config);
2418 spapr_rtas_register(RTAS_WRITE_PCI_CONFIG, "write-pci-config",
2419 rtas_write_pci_config);
2420 spapr_rtas_register(RTAS_IBM_READ_PCI_CONFIG, "ibm,read-pci-config",
2421 rtas_ibm_read_pci_config);
2422 spapr_rtas_register(RTAS_IBM_WRITE_PCI_CONFIG, "ibm,write-pci-config",
2423 rtas_ibm_write_pci_config);
2424 if (msi_nonbroken) {
2425 spapr_rtas_register(RTAS_IBM_QUERY_INTERRUPT_SOURCE_NUMBER,
2426 "ibm,query-interrupt-source-number",
2427 rtas_ibm_query_interrupt_source_number);
2428 spapr_rtas_register(RTAS_IBM_CHANGE_MSI, "ibm,change-msi",
2429 rtas_ibm_change_msi);
2432 spapr_rtas_register(RTAS_IBM_SET_EEH_OPTION,
2433 "ibm,set-eeh-option",
2434 rtas_ibm_set_eeh_option);
2435 spapr_rtas_register(RTAS_IBM_GET_CONFIG_ADDR_INFO2,
2436 "ibm,get-config-addr-info2",
2437 rtas_ibm_get_config_addr_info2);
2438 spapr_rtas_register(RTAS_IBM_READ_SLOT_RESET_STATE2,
2439 "ibm,read-slot-reset-state2",
2440 rtas_ibm_read_slot_reset_state2);
2441 spapr_rtas_register(RTAS_IBM_SET_SLOT_RESET,
2442 "ibm,set-slot-reset",
2443 rtas_ibm_set_slot_reset);
2444 spapr_rtas_register(RTAS_IBM_CONFIGURE_PE,
2445 "ibm,configure-pe",
2446 rtas_ibm_configure_pe);
2447 spapr_rtas_register(RTAS_IBM_SLOT_ERROR_DETAIL,
2448 "ibm,slot-error-detail",
2449 rtas_ibm_slot_error_detail);
2452 static void spapr_pci_register_types(void)
2454 type_register_static(&spapr_phb_info);
2457 type_init(spapr_pci_register_types)
2459 static int spapr_switch_one_vga(DeviceState *dev, void *opaque)
2461 bool be = *(bool *)opaque;
2463 if (object_dynamic_cast(OBJECT(dev), "VGA")
2464 || object_dynamic_cast(OBJECT(dev), "secondary-vga")
2465 || object_dynamic_cast(OBJECT(dev), "bochs-display")
2466 || object_dynamic_cast(OBJECT(dev), "virtio-vga")) {
2467 object_property_set_bool(OBJECT(dev), "big-endian-framebuffer", be,
2468 &error_abort);
2470 return 0;
2473 void spapr_pci_switch_vga(bool big_endian)
2475 SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
2476 SpaprPhbState *sphb;
2479 * For backward compatibility with existing guests, we switch
2480 * the endianness of the VGA controller when changing the guest
2481 * interrupt mode
2483 QLIST_FOREACH(sphb, &spapr->phbs, list) {
2484 BusState *bus = &PCI_HOST_BRIDGE(sphb)->bus->qbus;
2485 qbus_walk_children(bus, spapr_switch_one_vga, NULL, NULL, NULL,
2486 &big_endian);