[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 09/19] spapr: populate PHB DRC entries for root D
From: |
Greg Kurz |
Subject: |
[Qemu-devel] [PATCH v3 09/19] spapr: populate PHB DRC entries for root DT node |
Date: |
Thu, 17 Jan 2019 18:15:25 +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 5be8f76351fd..83ec79caf48e 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1350,6 +1350,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-devel] [PATCH v3 03/19] xics: Disintricate allocation and type setting of interrupts, (continued)
- [Qemu-devel] [PATCH v3 04/19] spapr/xive: Don't set irq type in spapr_xive_irq_claim(), Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 05/19] spapr: Set irq type in a dedicated function, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 06/19] spapr: Identify LSIs of all possible PHBs at machine init, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 08/19] spapr: create DR connectors for PHBs, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 09/19] spapr: populate PHB DRC entries for root DT node,
Greg Kurz <=
- [Qemu-devel] [PATCH v3 07/19] spapr_pci: add PHB unrealize, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 10/19] spapr_events: add support for phb hotplug events, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 13/19] spapr_pci: add ibm, my-drc-index property for PHB hotplug, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 11/19] qdev: pass an Object * to qbus_set_hotplug_handler(), Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 12/19] spapr_pci: provide node start offset via spapr_populate_pci_dt(), Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 14/19] spapr: Factor out setting of "phandle" DT property to sPAPR irq frontend, Greg Kurz, 2019/01/17
- [Qemu-devel] [PATCH v3 16/19] spapr: Expose the name of the interrupt controller node, Greg Kurz, 2019/01/17