hw/pci/pcie: Do not set HPC flag if acpihp is used
Instead of changing the hot-plug type in _OSC register, do not set the 'Hot-Plug Capable' flag. This way guest will choose ACPI hot-plug if it is preferred and leave the option to use SHPC with pcie-pci-bridge. The ability to control hot-plug for each downstream port is retained, while 'hotplug=off' on the port means all hot-plug types are disabled. Signed-off-by: Julia Suvorova <jusual@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Message-Id: <20210713004205.775386-4-jusual@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
c0e427d6eb
commit
3f3cbbb236
@ -31,6 +31,7 @@
|
|||||||
#include "hw/pci/pci.h"
|
#include "hw/pci/pci.h"
|
||||||
#include "hw/pci/pci_bridge.h"
|
#include "hw/pci/pci_bridge.h"
|
||||||
#include "hw/pci/pci_host.h"
|
#include "hw/pci/pci_host.h"
|
||||||
|
#include "hw/pci/pcie_port.h"
|
||||||
#include "hw/i386/acpi-build.h"
|
#include "hw/i386/acpi-build.h"
|
||||||
#include "hw/acpi/acpi.h"
|
#include "hw/acpi/acpi.h"
|
||||||
#include "hw/pci/pci_bus.h"
|
#include "hw/pci/pci_bus.h"
|
||||||
@ -336,6 +337,13 @@ void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s,
|
|||||||
object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)) {
|
object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)) {
|
||||||
PCIBus *sec = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev));
|
PCIBus *sec = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev));
|
||||||
|
|
||||||
|
/* Remove all hot-plug handlers if hot-plug is disabled on slot */
|
||||||
|
if (object_dynamic_cast(OBJECT(dev), TYPE_PCIE_SLOT) &&
|
||||||
|
!PCIE_SLOT(pdev)->hotplug) {
|
||||||
|
qbus_set_hotplug_handler(BUS(sec), NULL);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
qbus_set_hotplug_handler(BUS(sec), OBJECT(hotplug_dev));
|
qbus_set_hotplug_handler(BUS(sec), OBJECT(hotplug_dev));
|
||||||
/* We don't have to overwrite any other hotplug handler yet */
|
/* We don't have to overwrite any other hotplug handler yet */
|
||||||
assert(QLIST_EMPTY(&sec->child));
|
assert(QLIST_EMPTY(&sec->child));
|
||||||
|
@ -584,7 +584,6 @@ static void machine_set_memdev(Object *obj, const char *value, Error **errp)
|
|||||||
ms->ram_memdev_id = g_strdup(value);
|
ms->ram_memdev_id = g_strdup(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void machine_init_notify(Notifier *notifier, void *data)
|
static void machine_init_notify(Notifier *notifier, void *data)
|
||||||
{
|
{
|
||||||
MachineState *machine = MACHINE(qdev_get_machine());
|
MachineState *machine = MACHINE(qdev_get_machine());
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include "sysemu/kvm.h"
|
#include "sysemu/kvm.h"
|
||||||
#include "hw/kvm/clock.h"
|
#include "hw/kvm/clock.h"
|
||||||
#include "hw/pci-host/q35.h"
|
#include "hw/pci-host/q35.h"
|
||||||
|
#include "hw/pci/pcie_port.h"
|
||||||
#include "hw/qdev-properties.h"
|
#include "hw/qdev-properties.h"
|
||||||
#include "hw/i386/x86.h"
|
#include "hw/i386/x86.h"
|
||||||
#include "hw/i386/pc.h"
|
#include "hw/i386/pc.h"
|
||||||
@ -136,6 +137,7 @@ static void pc_q35_init(MachineState *machine)
|
|||||||
ram_addr_t lowmem;
|
ram_addr_t lowmem;
|
||||||
DriveInfo *hd[MAX_SATA_PORTS];
|
DriveInfo *hd[MAX_SATA_PORTS];
|
||||||
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
||||||
|
bool acpi_pcihp;
|
||||||
|
|
||||||
/* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory
|
/* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory
|
||||||
* and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping
|
* and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping
|
||||||
@ -236,6 +238,15 @@ static void pc_q35_init(MachineState *machine)
|
|||||||
object_property_set_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
|
object_property_set_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
|
||||||
OBJECT(lpc), &error_abort);
|
OBJECT(lpc), &error_abort);
|
||||||
|
|
||||||
|
acpi_pcihp = object_property_get_bool(OBJECT(lpc),
|
||||||
|
"acpi-pci-hotplug-with-bridge-support",
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
if (acpi_pcihp) {
|
||||||
|
object_register_sugar_prop(TYPE_PCIE_SLOT, "native-hotplug",
|
||||||
|
"false", true);
|
||||||
|
}
|
||||||
|
|
||||||
/* irq lines */
|
/* irq lines */
|
||||||
gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled);
|
gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled);
|
||||||
|
|
||||||
|
@ -529,7 +529,13 @@ void pcie_cap_slot_init(PCIDevice *dev, PCIESlot *s)
|
|||||||
PCI_EXP_SLTCAP_PIP |
|
PCI_EXP_SLTCAP_PIP |
|
||||||
PCI_EXP_SLTCAP_AIP |
|
PCI_EXP_SLTCAP_AIP |
|
||||||
PCI_EXP_SLTCAP_ABP);
|
PCI_EXP_SLTCAP_ABP);
|
||||||
if (s->hotplug) {
|
|
||||||
|
/*
|
||||||
|
* Enable native hot-plug on all hot-plugged bridges unless
|
||||||
|
* hot-plug is disabled on the slot.
|
||||||
|
*/
|
||||||
|
if (s->hotplug &&
|
||||||
|
(s->native_hotplug || DEVICE(dev)->hotplugged)) {
|
||||||
pci_long_test_and_set_mask(dev->config + pos + PCI_EXP_SLTCAP,
|
pci_long_test_and_set_mask(dev->config + pos + PCI_EXP_SLTCAP,
|
||||||
PCI_EXP_SLTCAP_HPS |
|
PCI_EXP_SLTCAP_HPS |
|
||||||
PCI_EXP_SLTCAP_HPC);
|
PCI_EXP_SLTCAP_HPC);
|
||||||
|
@ -148,6 +148,7 @@ static Property pcie_slot_props[] = {
|
|||||||
DEFINE_PROP_UINT8("chassis", PCIESlot, chassis, 0),
|
DEFINE_PROP_UINT8("chassis", PCIESlot, chassis, 0),
|
||||||
DEFINE_PROP_UINT16("slot", PCIESlot, slot, 0),
|
DEFINE_PROP_UINT16("slot", PCIESlot, slot, 0),
|
||||||
DEFINE_PROP_BOOL("hotplug", PCIESlot, hotplug, true),
|
DEFINE_PROP_BOOL("hotplug", PCIESlot, hotplug, true),
|
||||||
|
DEFINE_PROP_BOOL("native-hotplug", PCIESlot, native_hotplug, true),
|
||||||
DEFINE_PROP_END_OF_LIST()
|
DEFINE_PROP_END_OF_LIST()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -57,8 +57,11 @@ struct PCIESlot {
|
|||||||
/* Disable ACS (really for a pcie_root_port) */
|
/* Disable ACS (really for a pcie_root_port) */
|
||||||
bool disable_acs;
|
bool disable_acs;
|
||||||
|
|
||||||
/* Indicates whether hot-plug is enabled on the slot */
|
/* Indicates whether any type of hot-plug is allowed on the slot */
|
||||||
bool hotplug;
|
bool hotplug;
|
||||||
|
|
||||||
|
bool native_hotplug;
|
||||||
|
|
||||||
QLIST_ENTRY(PCIESlot) next;
|
QLIST_ENTRY(PCIESlot) next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user