All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Richard Henderson <richard.henderson@linaro.org>,
	qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [PATCH] q35: turn off power_controller_present when acpi hotplug is enabled
Date: Tue, 16 Nov 2021 20:26:41 +0100	[thread overview]
Message-ID: <20211116202641.463bd07a@redhat.com> (raw)
In-Reply-To: <20211116090433.3212549-1-kraxel@redhat.com>

On Tue, 16 Nov 2021 10:04:33 +0100
Gerd Hoffmann <kraxel@redhat.com> wrote:

> Disable power control for pcie slots in case acpi hotplug is enabled
> (6.2+ only for compatibility reasons).  This makes sure we don't get
> unpleasant surprises with pci devices not being functional due to slot
> power being turned off.
> 
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  hw/i386/pc_q35.c | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index e1e100316d93..869ca4c130f0 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -247,9 +247,16 @@ static void pc_q35_init(MachineState *machine)
>                                                   "x-keep-pci-slot-hpc",
>                                                   NULL);
>  
> -    if (!keep_pci_slot_hpc && acpi_pcihp) {
> -        object_register_sugar_prop(TYPE_PCIE_SLOT, "x-native-hotplug",
> -                                   "false", true);
> +    if (acpi_pcihp) {
> +        if (keep_pci_slot_hpc) {
> +            /* 6.2+ default: acpi-hotplug=on native-hotplug=on power-ctrl=off */
> +            object_register_sugar_prop(TYPE_PCIE_SLOT, COMPAT_PROP_PCP,
> +                                       "false", true);

that will also turn off COMPAT_PROP_PCP on ports attached to PXBs,
where ACPI hotplug is not used and native one is active.
So question is if it's expected behavior?

> +        } else {
> +            /* 6.1 default: acpi-hotplug=on native-hotplug=off */
> +            object_register_sugar_prop(TYPE_PCIE_SLOT, "x-native-hotplug",
> +                                       "false", true);
> +        }
>      }
>  
>      /* irq lines */



  reply	other threads:[~2021-11-16 19:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-16  9:04 [PATCH] q35: turn off power_controller_present when acpi hotplug is enabled Gerd Hoffmann
2021-11-16 19:26 ` Igor Mammedov [this message]
2021-11-17  8:22   ` Gerd Hoffmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211116202641.463bd07a@redhat.com \
    --to=imammedo@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.