Linux USB
 help / color / mirror / Atom feed
From: "Nícolas F. R. A. Prado" <nfraprado@collabora.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Shuah Khan <shuah@kernel.org>,
	Bjorn Helgaas <bhelgaas@google.com>,
	devicetree@vger.kernel.org, linux-pci@vger.kernel.org,
	linux-usb@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
	linux-kselftest@vger.kernel.org, kernel@collabora.com,
	linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH 2/2] kselftest: devices: Add board file for google,spherion
Date: Fri, 27 Oct 2023 16:31:13 -0400	[thread overview]
Message-ID: <3bcd3794-cd19-4772-8da2-772821a756b5@notapiano> (raw)
In-Reply-To: <2023102747-conclude-backside-a579@gregkh>

On Fri, Oct 27, 2023 at 12:48:35PM +0200, Greg Kroah-Hartman wrote:
> On Wed, Oct 25, 2023 at 08:32:42AM -0400, Nícolas F. R. A. Prado wrote:
> > On Wed, Oct 25, 2023 at 12:32:15PM +0200, Greg Kroah-Hartman wrote:
> > > On Tue, Oct 24, 2023 at 05:18:00PM -0400, Nícolas F. R. A. Prado wrote:
> > > > Add the list of devices expected to be probed from the USB and PCI
> > > > busses on the google,spherion machine. The USB host controller at
> > > > 11200000 is shared between two busses, for USB2 and USB3, so an
> > > > additional match is used to select the USB2 bus.
> > > > 
> > > > Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
> > > > ---
> > > > 
> > > >  tools/testing/selftests/devices/boards/google,spherion | 3 +++
> > > >  1 file changed, 3 insertions(+)
> > > >  create mode 100644 tools/testing/selftests/devices/boards/google,spherion
> > > > 
> > > > diff --git a/tools/testing/selftests/devices/boards/google,spherion b/tools/testing/selftests/devices/boards/google,spherion
> > > > new file mode 100644
> > > > index 000000000000..ba86ffcfe43c
> > > > --- /dev/null
> > > > +++ b/tools/testing/selftests/devices/boards/google,spherion
> > > > @@ -0,0 +1,3 @@
> > > > +usb camera 11200000,PRODUCT=.*/2/.* 1.4.1 1 0,1
> > > > +usb bluetooth 11200000,PRODUCT=.*/2/.* 1.4.2 1 0,1
> > > > +pci wifi 11230000 0.0/0.0
> > > 
> > > USB busses (and PCI ids) are not determinisitic and can, and will,
> > > change values randomly.  So while it is nice to test "did the devices
> > > show up properly", you can not do that based on bus ids at all, sorry.
> > > 
> > > Unless I'm reading these values wrong?  What are the fields
> > > representing?  Perhaps a comment at the top to describe them so that we
> > > know how to parse them?
> > 
> > Hi Greg,
> > 
> > I have described the fields in the commit message of patch 1. Here they are:
> > 
> > usb <test_name> <controller_address>[,<additional_match>] <ports_path> <configuration> <interfaces>
> > 
> > pci <test_name> <controller_address> <device-function_pairs_path>
> 
> That's not a good place to document them, we'll never find them, and I
> obviously missed it as well.
> 
> Please put it in a comment at the top of this file _AND_ in a comment in
> the script that parses these files.

Fair enough, will do so in the next version.

> 
> > I'm aware that bus IDs are assigned at runtime, and that's exactly why I've
> > avoided those in the test definitions, instead describing the hardware topology,
> > which won't ever change.
> > 
> > And just to be extra clear, by hardware topology I mean:
> > 
> > For USB, we find the USB bus based on the address of its controller (and
> > optionally its productID if two busses share the same controller for USB2 and
> > USB3),
> 
> What exactly do you mean by "address" of a controller?  That will be
> unique per bus-type that the controller lives on, right?

Well, in its current form the test is targetted at DT-based platforms, so by
address I mean the MMIO address of the host controller, as defined in the
controller's node in the DT.

In order to expand the coverage of the test to non-DT platforms as well, yes,
we'll need to allow describing controllers that are under some bus, rather than
at a fixed memory address. I'm already planning to do that as a next step.

> 
> > and then find the device by following the ports at each hub. The
> > configuration number and interfaces then describe what interfaces to check for
> > presence and driver binding.
> 
> Ok, good, hub and port locations _should_ be stable, but note they have
> changed at times so you will have to deal with that for the next 20+
> years, are you ok with that?

If the locations changed it means we have a new hardware revision. I'd expect
most of those occurences to result in new compatible strings or DMI identifiers,
which we could then use to run a different set of tests, using the new hub and
port locations, since this is effectively a different piece of hardware.

> 
> > For PCI, we find the controller again based on its address, and follow the
> > device-function pairs at each level in the topology until we arrive at the
> > desired device.
> 
> "address"?  What exactly do you mean by this value?  For PCI, that will
> change.

Same as for USB.

> 
> > We don't rely on the USB bus number, nor on the PCI domain and bus number, since
> > these are all assigned at runtime.
> 
> You are relying on a specific sysfs tree as well, are you able to handle
> it when new devices get added to the middle of a device path?  That
> sometimes happens in sysfs too.

Right, I'm relying on the fact that the PCI topology is reflected into the sysfs
topology, meaning the sysfs directories for devices on a PCI bus are direct
descendants of the directory for the PCI bridge exposing that bus. That's the
only place I'm aware of which exposes the PCI topology.

In any case, although simplistic, this approach has worked well so far on the
platforms I've tested on.

Thanks,
Nícolas

      reply	other threads:[~2023-10-27 20:31 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-24 21:17 [RFC PATCH 0/2] Add test to verify probe of devices from discoverable busses on DT platforms Nícolas F. R. A. Prado
2023-10-24 21:17 ` [RFC PATCH 1/2] kselftest: Add test to verify probe of devices from discoverable busses Nícolas F. R. A. Prado
2023-10-24 21:18 ` [RFC PATCH 2/2] kselftest: devices: Add board file for google,spherion Nícolas F. R. A. Prado
2023-10-25 10:32   ` Greg Kroah-Hartman
2023-10-25 12:32     ` Nícolas F. R. A. Prado
2023-10-27 10:48       ` Greg Kroah-Hartman
2023-10-27 20:31         ` Nícolas F. R. A. Prado [this message]

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=3bcd3794-cd19-4772-8da2-772821a756b5@notapiano \
    --to=nfraprado@collabora.com \
    --cc=bhelgaas@google.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=kernel@collabora.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=shuah@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox