From: "Leonardo Brás" <leobras@redhat.com>
To: Peter Xu <peterx@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>
Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
Juan Quintela <quintela@redhat.com>,
qemu-devel@nongnu.org, Julia Suvorova <jusual@redhat.com>,
Igor Mammedov <imammedo@redhat.com>,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH 1/1] pcie: Add hotplug detect state register to w1cmask
Date: Tue, 04 Jul 2023 03:20:36 -0300 [thread overview]
Message-ID: <2364a62d0cc278c43dd19da4aceeee70513990e1.camel@redhat.com> (raw)
In-Reply-To: <ee67338be410a91a03e5514520141404be0e26f5.camel@redhat.com>
Hello Peter and Michael, I have a few updates on this:
On Mon, 2023-07-03 at 02:20 -0300, Leonardo Brás wrote:
> Hello Peter and Michael, thanks for reviewing!
>
>
> On Thu, 2023-06-29 at 16:56 -0400, Peter Xu wrote:
> > On Thu, Jun 29, 2023 at 04:06:53PM -0400, Michael S. Tsirkin wrote:
> > > On Thu, Jun 29, 2023 at 04:01:41PM -0400, Peter Xu wrote:
> > > > On Thu, Jun 29, 2023 at 03:33:06PM -0400, Michael S. Tsirkin wrote:
> > > > > On Thu, Jun 29, 2023 at 01:01:53PM -0400, Peter Xu wrote:
> > > > > > Hi, Leo,
> > > > > >
> > > > > > Thanks for figuring this out. Let me copy a few more potential reviewers
> > > > > > from commit 17858a1695 ("hw/acpi/ich9: Set ACPI PCI hot-plug as default on
> > > > > > Q35").
> > > > > >
> > > > > > On Thu, Jun 29, 2023 at 06:05:00AM -0300, Leonardo Bras wrote:
> > > > > > > When trying to migrate a machine type pc-q35-6.0 or lower, with this
> > > > > > > cmdline options:
> > > > > > >
> > > > > > > -device driver=pcie-root-port,port=18,chassis=19,id=pcie-root-port18,bus=pcie.0,addr=0x12 \
> > > > > > > -device driver=nec-usb-xhci,p2=4,p3=4,id=nex-usb-xhci0,bus=pcie-root-port18,addr=0x12.0x1
> > > > > > >
> > > > > > > the following bug happens after all ram pages were sent:
> > > > > > >
> > > > > > > qemu-kvm: get_pci_config_device: Bad config data: i=0x6e read: 0 device: 40 cmask: ff wmask: 0 w1cmask:19
> > > > > > > qemu-kvm: Failed to load PCIDevice:config
> > > > > > > qemu-kvm: Failed to load pcie-root-port:parent_obj.parent_obj.parent_obj
> > > > > > > qemu-kvm: error while loading state for instance 0x0 of device '0000:00:12.0/pcie-root-port'
> > > > > > > qemu-kvm: load of migration failed: Invalid argument
> > > > > > >
> > > > > > > This happens on pc-q35-6.0 or lower because of:
> > > > > > > { "ICH9-LPC", ACPI_PM_PROP_ACPI_PCIHP_BRIDGE, "off" }
> > > > > > >
> > > > > > > In this scenario, hotplug_handler_plug() calls pcie_cap_slot_plug_cb(),
> > > > > > > which sets the bus dev->config byte 0x6e with bit PCI_EXP_SLTSTA_PDS to
> > > > > > > signal PCI hotplug for the guest. After a while the guest will deal with
> > > > > > > this hotplug and qemu will clear the above bit.
> > > > >
> > > > > Presence Detect State – This bit indicates the presence of an
> > > > > adapter in the slot, reflected by the logical “OR” of the Physical
> > > > > Layer in-band presence detect mechanism and, if present, any
> > > > > out-of-band presence detect mechanism defined for the slot’s
> > > > > corresponding form factor. Note that the in-band presence
> > > > > detect mechanism requires that power be applied to an adapter
> > > > > for its presence to be detected. Consequently, form factors that
> > > > > require a power controller for hot-plug must implement a
> > > > > physical pin presence detect mechanism.
> > > > > RO
> > > > > Defined encodings are:
> > > > > 0b Slot Empty
> > > > > 1b Card Present in slot
> > > > > This bit must be implemented on all Downstream Ports that
> > > > > implement slots. For Downstream Ports not connected to slots
> > > > > (where the Slot Implemented bit of the PCI Express Capabilities
> > > > > register is 0b), this bit must be hardwired to 1b.
>
> Thank you for providing this doc!
> I am new to PCI stuff, could you please point this doc?
(I mean, the link to the documentation)
>
> > > > >
> > > > >
> > > > > And this seems to match what QEMU is doing: it clears on unplug
> > > > > not after guest deals with hotplug.
>
> Oh, that's weird.
> It should not unplug the device, so IIUC it should not clear the bit.
> Maybe something weird is happening in the guest, I will take a look.
Updates on this:
You are right! For some reason the guest is hot-unplugging the device under some
conditions, so there is another bug on this for me to look after.
>
> > > > >
> > > > >
> > > > > > > Then, during migration, get_pci_config_device() will compare the
> > > > > > > configs of both the freshly created device and the one that is being
> > > > > > > received via migration, which will differ due to the PCI_EXP_SLTSTA_PDS bit
> > > > > > > and cause the bug to reproduce.
> > > > >
> > > > > So bit is set on source.
> > > > > But why is the bit cleared on destination? This is the part I don't get.
>
> No, bit is set when the device is created by qemu.
> After some time running (boot process completion) the bit is cleared.
The 'after some time' here is about the guest hot-unplugging the device.
>
> The receiving end of migration will then create the device with the bit set, and
> then wait for migration. After the source device is received, the compare fails
> due to those bits being different.
>
But anyway, there is some chance the device will be hot-unplugged by the guest
OS for any reason, so we need to cover this scenario so it does not break
migration.
>
>
> > > >
> > > > My understanding is that when ACPI_PM_PROP_ACPI_PCIHP_BRIDGE is off for the
> > > > device, we just won't ever PCI_EXP_SLTSTA_PDS bit?
> > >
> > > Why?
> >
> > Never mind, spoke too soon, sorry. :(
> >
> > I thought pcie_cap_slot_plug_cb() can skip the set, but then I just found
> > that dev->hotplugged is not what I imagined there.
> >
> > Leo should know better.
>
> There is a difference of which hotplug function is called based on the
> ACPI_PM_PROP_ACPI_PCIHP_BRIDGE option:
>
> When ACPI_PM_PROP_ACPI_PCIHP_BRIDGE=="off", hotplug_handler_plug() calls
> pcie_cap_slot_plug_cb() which sets the bus dev->config byte 0x6e with bit
> PCI_EXP_SLTSTA_PDS.
>
> When ACPI_PM_PROP_ACPI_PCIHP_BRIDGE=="on", hotplug_handler_plug() calls
> ich9_pm_device_plug_cb(), which does not set this bit.
>
> >
> > >
> > >
> > > > >
> > > > >
> > > > > > > To avoid this fake incompatibility, there are two fields in PCIDevice that
> > > > > > > can help:
> > > > > > >
> > > > > > > .wmask: Used to implement R/W bytes, and
> > > > > > > .w1cmask: Used to implement RW1C(Write 1 to Clear) bytes
> > > > > >
> > > > > > Is there one more option to clear the bit in cmask?
>
> We could clear the bit for .cmask . I suggested w1cmask because I previously
> understood that bit was guest-writeable.
IIUC, the bit is guest-writeable, so we should use .wmask instead of .cmask .
Is this correct?
>
> > > > > >
> > > > > > IIUC w1cmask means the guest can now write to this bit, but afaiu from the
> > > > > > pcie spec it's RO.
> > > > >
> > > > > Yes this bit must be RO.
>
> My bad, I assumed behavior based on how the guest was working, and this gone
> wrong. With above documentation provided, I would suggest clearing the .config
> mask related bit so qemu skips checking this one.
>
> What is your opinion on that?
>
> > > > >
> > > > > > >
> > > > > > > According to pcie_cap_slot_init() the slot status register
> > > > > > > (PCI_EXP_SLTSTA), in which PCI_EXP_SLTSTA_PDS is a flag, seems to fall
> > > > > > > under w1cmask field, with makes sense due to the way signaling the hotplug
> > > > > > > works.
> > > > > > >
> > > > > > > So, add PCI_EXP_SLTSTA_PDS bit to w1cmask, so the fake incompatibility on
> > > > > > > get_pci_config_device() does not abort the migration.
> > > > > > >
> > > > > > > Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=2215819
> > > > > > > Signed-off-by: Leonardo Bras <leobras@redhat.com>
> > > > > >
> > > > > > Do we need a Fixes: and also the need to copy stable?
> > > > > >
> > > > > > > ---
> > > > > > > hw/pci/pcie.c | 2 +-
> > > > > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > > > > >
> > > > > > > diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c
> > > > > > > index b8c24cf45f..2def1765a5 100644
> > > > > > > --- a/hw/pci/pcie.c
> > > > > > > +++ b/hw/pci/pcie.c
> > > > > > > @@ -657,7 +657,7 @@ void pcie_cap_slot_init(PCIDevice *dev, PCIESlot *s)
> > > > > > > PCI_EXP_SLTCTL_EIC);
> > > > > > >
> > > > > > > pci_word_test_and_set_mask(dev->w1cmask + pos + PCI_EXP_SLTSTA,
> > > > > > > - PCI_EXP_HP_EV_SUPPORTED);
> > > > > > > + PCI_EXP_HP_EV_SUPPORTED | PCI_EXP_SLTSTA_PDS);
> > > > > > >
> > > > > > > dev->exp.hpev_notified = false;
> > > > > > >
> > > > > > > --
> > > > > > > 2.41.0
> > > > > > >
> > > > > >
> > > > > > --
> > > > > > Peter Xu
> > > > >
> > > >
> > > > --
> > > > Peter Xu
> > >
> >
>
next prev parent reply other threads:[~2023-07-04 6:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-29 9:05 [PATCH 1/1] pcie: Add hotplug detect state register to w1cmask Leonardo Bras
2023-06-29 17:01 ` Peter Xu
2023-06-29 19:33 ` Michael S. Tsirkin
2023-06-29 20:01 ` Peter Xu
2023-06-29 20:06 ` Michael S. Tsirkin
2023-06-29 20:56 ` Peter Xu
2023-07-03 5:20 ` Leonardo Brás
2023-07-04 6:20 ` Leonardo Brás [this message]
2023-07-04 6:43 ` Michael S. Tsirkin
2023-07-05 6:40 ` Leonardo Bras Soares Passos
2023-07-06 4:19 ` Leonardo Bras Soares Passos
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=2364a62d0cc278c43dd19da4aceeee70513990e1.camel@redhat.com \
--to=leobras@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=imammedo@redhat.com \
--cc=jusual@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/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 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).