qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] hw/pxb-pcie: fix PCI Express hotplug support
@ 2017-02-02 22:05 Marcel Apfelbaum
  2017-02-02 22:34 ` Michael S. Tsirkin
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Apfelbaum @ 2017-02-02 22:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: mst, imammedo, marcel

Add the missing osc method for pxb-pcie devices

Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
---

Note: The patch is based on the fact that Q35's osc method is quite generic.

Thanks,
Marcel

 hw/i386/acpi-build.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index 1c928ab..555aab3 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -1964,6 +1964,11 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
             aml_append(dev, aml_name_decl("_UID", aml_int(bus_num)));
             aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0A03")));
             aml_append(dev, aml_name_decl("_BBN", aml_int(bus_num)));
+            if (pci_bus_is_express(bus)) {
+                aml_append(dev, aml_name_decl("SUPP", aml_int(0)));
+                aml_append(dev, aml_name_decl("CTRL", aml_int(0)));
+                aml_append(dev, build_q35_osc_method());
+            }
 
             if (numa_node != NUMA_NODE_UNASSIGNED) {
                 aml_append(dev, aml_name_decl("_PXM", aml_int(numa_node)));
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-02-02 22:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-02 22:05 [Qemu-devel] [PATCH] hw/pxb-pcie: fix PCI Express hotplug support Marcel Apfelbaum
2017-02-02 22:34 ` Michael S. Tsirkin
2017-02-02 22:44   ` Marcel Apfelbaum
2017-02-02 22:49     ` Michael S. Tsirkin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).