From: Niklas Schnelle <niks@kernel.org>
To: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Lukas Wunner" <lukas@wunner.de>
Cc: Bjorn Helgaas <helgaas@kernel.org>,
linux-pci@vger.kernel.org,
Jonathan Cameron <Jonathan.Cameron@huawei.com>,
Mika Westerberg <mika.westerberg@linux.intel.com>,
"Maciej W. Rozycki" <macro@orcam.me.uk>
Subject: Re: [PATCH for-linus] PCI: Honor Max Link Speed when determining supported speeds
Date: Fri, 13 Dec 2024 19:49:52 +0100 [thread overview]
Message-ID: <e34ace63dfb3331cb36778d13696457a92e39892.camel@kernel.org> (raw)
In-Reply-To: <71784f5660f0f5d9927f01b7313a1395155f9214.camel@kernel.org>
On Fri, 2024-12-13 at 18:41 +0100, Niklas Schnelle wrote:
> On Fri, 2024-12-13 at 12:12 +0200, Ilpo Järvinen wrote:
> > On Thu, 12 Dec 2024, Lukas Wunner wrote:
> >
> > > On Thu, Dec 12, 2024 at 04:33:23PM +0200, Ilpo Järvinen wrote:
> > > > On Thu, 12 Dec 2024, Lukas Wunner wrote:
> > > > > --- a/drivers/pci/pci.c
> > > > > +++ b/drivers/pci/pci.c
> > > > > @@ -6240,12 +6240,14 @@ u8 pcie_get_supported_speeds(struct pci_dev *dev)
> > > > > pcie_capability_read_dword(dev, PCI_EXP_LNKCAP2, &lnkcap2);
> > > > > speeds = lnkcap2 & PCI_EXP_LNKCAP2_SLS;
> > > > >
> > > > > + /* Ignore speeds higher than Max Link Speed */
> > > > > + pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &lnkcap);
> > > > > + speeds &= GENMASK(lnkcap & PCI_EXP_LNKCAP_SLS, 0);
> > > >
> >
>
> ---8<---
>
> > As in more broader terms there are other kinds of broken devices this
> > code doesn't handle. If PCI_EXP_LNKCAP2_SLS is empty of bits but the
> > device has >5GT/s in PCI_EXP_LNKCAP_SLS, this function will return 0.
>
> On second look I don't think it will. If lnkcap2 & PCI_EXP_LNKCAP2_SLS
> is 0 it will proceed to the synthesize part and rely on
> PCI_EXP_LNKCAP_SLS alone. The potentially broken part I see is when
> lnkcap2 has bits set but lnkcap doesn't which is also when the
> GENMASK(…, 1) would become weird. Not sure what the right handling for
> that is though.
Never mind, I missed the >5 GT/s bit. Though I think that returning 0
speeds is probably the safest bet for a broken device, no?
next prev parent reply other threads:[~2024-12-13 18:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 8:56 [PATCH for-linus] PCI: Honor Max Link Speed when determining supported speeds Lukas Wunner
2024-12-12 14:33 ` Ilpo Järvinen
2024-12-12 20:10 ` Niklas Schnelle
2024-12-12 22:13 ` Lukas Wunner
2024-12-13 10:12 ` Ilpo Järvinen
2024-12-13 17:21 ` Niklas Schnelle
2024-12-13 17:41 ` Niklas Schnelle
2024-12-13 18:49 ` Niklas Schnelle [this message]
2024-12-12 16:11 ` Bjorn Helgaas
2024-12-12 16:58 ` Niklas Schnelle
2024-12-12 19:40 ` Niklas Schnelle
2024-12-13 9:43 ` Lukas Wunner
2024-12-13 17:22 ` Niklas Schnelle
2024-12-13 9:16 ` Lukas Wunner
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=e34ace63dfb3331cb36778d13696457a92e39892.camel@kernel.org \
--to=niks@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=helgaas@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=linux-pci@vger.kernel.org \
--cc=lukas@wunner.de \
--cc=macro@orcam.me.uk \
--cc=mika.westerberg@linux.intel.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 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.