[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v4 08/15] spapr: populate PHB DRC entries for root D
From: |
Greg Kurz |
Subject: |
[qemu-s390x] [PATCH v4 08/15] spapr: populate PHB DRC entries for root DT node |
Date: |
Tue, 12 Feb 2019 19:24:46 +0100 |
User-agent: |
StGit/unknown-version |
From: Nathan Fontenot <address@hidden>
This add entries to the root OF node to advertise our PHBs as being
DR-capable in accordance with PAPR specification.
Signed-off-by: Nathan Fontenot <address@hidden>
Signed-off-by: Michael Roth <address@hidden>
Reviewed-by: David Gibson <address@hidden>
Signed-off-by: Greg Kurz <address@hidden>
---
hw/ppc/spapr.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 590c67805e52..03183c52f57b 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1348,6 +1348,14 @@ static void *spapr_build_fdt(sPAPRMachineState *spapr)
exit(1);
}
+ if (smc->dr_phb_enabled) {
+ ret = spapr_drc_populate_dt(fdt, 0, NULL, SPAPR_DR_CONNECTOR_TYPE_PHB);
+ if (ret < 0) {
+ error_report("Couldn't set up PHB DR device tree properties");
+ exit(1);
+ }
+ }
+
return fdt;
}
- Re: [qemu-s390x] [PATCH v4 03/15] spapr_irq: Set LSIs at interrupt controller init, (continued)
- [qemu-s390x] [PATCH v4 05/15] spapr_irq: Expose the phandle of the interrupt controller, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 07/15] spapr: create DR connectors for PHBs, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 06/15] spapr_pci: add PHB unrealize, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 10/15] qdev: pass an Object * to qbus_set_hotplug_handler(), Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 08/15] spapr: populate PHB DRC entries for root DT node,
Greg Kurz <=
- [qemu-s390x] [PATCH v4 09/15] spapr_events: add support for phb hotplug events, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 13/15] spapr_drc: Allow FDT fragment to be added later, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 11/15] spapr_pci: provide node start offset via spapr_populate_pci_dt(), Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 12/15] spapr_pci: add ibm, my-drc-index property for PHB hotplug, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 15/15] spapr: enable PHB hotplug for default pseries machine type, Greg Kurz, 2019/02/12
- [qemu-s390x] [PATCH v4 14/15] spapr: add hotplug hooks for PHB hotplug, Greg Kurz, 2019/02/12