All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Markus Armbruster <armbru@redhat.com>
Cc: "QEMU Developers" <qemu-devel@nongnu.org>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: Re: ensuring a machine's buses have unique names
Date: Tue, 21 Sep 2021 14:20:57 +0100	[thread overview]
Message-ID: <CAFEAcA_ExFiv3AurBAtTan10yuXRnsHMQS0yHa-vJpwB9u4HoA@mail.gmail.com> (raw)
In-Reply-To: <87mtoe4g40.fsf@dusky.pond.sub.org>

On Wed, 15 Sept 2021 at 05:28, Markus Armbruster <armbru@redhat.com> wrote:
>
> Peter Maydell <peter.maydell@linaro.org> writes:
> > I'm not sure how best to sort this tangle out. We could:
> >  * make controller devices pass in NULL as bus name; this
> >    means that some bus names will change, which is an annoying
> >    breakage but for these minor bus types we can probably
> >    get away with it. This brings these buses into line with
> >    how we've been handling uniqueness for ide and scsi.
>
> To gauge the breakage, we need a list of the affected bus names.

Looking through, there are a few single-use or special
purpose buses I'm going to ignore for now (eg vmbus, or
the s390 ones). The four big bus types where controllers
often specify a bus name and override the 'autogenerate
unique name' handling are pci, ssi, sd, and i2c. (pci mostly
gets away with it I expect by machines only having one pci
bus.) Of those, I've gone through i2c. These are all the
places where we create a specifically-named i2c bus (via
i2c_init_bus()), together with the affected boards:

   hw/arm/pxa2xx.c
    - the PXA SoC code creates both the intended-for-use
      i2c buses (which get auto-names) and also several i2c
      buses intended for internal board-code use only which
      are all given the same name "dummy".
      Boards: connex, verdex, tosa, mainstone, akita, spitz,
      borzoi, terrier, z2
   hw/arm/stellaris.c
    - The i2c controller names its bus "i2c". There is only one i2c
      controller on these boards, so no name conflicts.
      Boards: lm3s811evb, lm3s6965evb
   hw/display/ati.c
    - The ATI VGA device has an on-board i2c controller which it
      connects the DDC that holds the EDID information. The bus is
      always named "ati-vga.ddc", so if you have multiple of this
      PCI device in the system the buses have the same names.
   hw/display/sm501.c
    - Same as ATI, but the bus name is "sm501.i2c"
   hw/i2c/aspeed_i2c.c
    - This I2C controller has either 14 or 16 (!) different i2c
      buses, and it assigns them names "aspeed.i2c.N" for N = 0,1,2,...
      The board code mostly seems to use these to wire up various
      on-board i2c devices.
      Boards: palmetto-bmc, supermicrox11-bmc, ast2500-evb, romulus-bmc,
      swift-bmc, sonorapass-bmc, witherspoon-bmc, ast2600-evb,
      tacoma-bmc, g220a-bmc, quanta-q71l-bmc, rainier-bmc
   hw/i2c/bitbang_i2c.c
    - the "GPIO to I2C bridge" device always names its bus "i2c".
      Used only on musicpal, which only creates one of these buses.
      Boards: musicpal
   hw/i2c/exynos4210_i2c.c
    - This i2c controller always names its bus "i2c". There are 9
      of these controllers on the board, so they all have clashing
      names.
      Boards: nuri, smdkc210
   hw/i2c/i2c_mux_pca954x.c
    - This is an i2c multiplexer. All the child buses are named
      "i2c-bus". The multiplexer is used by the aspeed and npcm7xx
      boards. (There's a programmable way to get at individual
      downstream i2c buses despite the name clash; none of the boards
      using this multiplexer actually connect any devices downstream of
      it yet.)
      Boards: palmetto-bmc, supermicrox11-bmc, ast2500-evb, romulus-bmc,
      swift-bmc, sonorapass-bmc, witherspoon-bmc, ast2600-evb,
      tacoma-bmc, g220a-bmc, quanta-q71l-bmc, rainier-bmc,
      npcm750-evb, quanta-gsj, quanta-gbs-bmc, kudo-bmc
   hw/i2c/mpc_i2c.c
    - This controller always names its bus "i2c". There is only one
      of these controllers in the machine.
      Boards: ppce500, mpc8544ds
   hw/i2c/npcm7xx_smbus.c
    - This controller always names its bus "i2c-bus". There are multiple
      controllers on the boards. The name also clashes with the one used
      by the pca954x muxes on these boards (see above).
      Boards: npcm750-evb, quanta-gsj, quanta-gbs-bmc, kudo-bmc
   hw/i2c/pm_smbus.c
    - This is the PC SMBUS implementation (it is not a QOM device...)
      The bus is always called "i2c".
      Boards: haven't worked through; at least all the x86 PC-like
      boards, I guess
   hw/i2c/ppc4xx_i2c.c
    - This controller always names its bus "i2c". The taihu and
      ref405ep have only one controller, but sam460ex has two which
      will have non-unique names.
      Boards: taihu, ref405ep, sam460ex
   hw/i2c/versatile_i2c.c
    - This controller always names its bus "i2c". The MPS boards all
      have multiples of this controller with clashing names; the others
      have only one controller.
      Boards: mps2-an385, mps2-an386, mps2-an500, mps2-an511,
      mps2-an505, mps2-an521, mps3-an524, mps3-an547,
      realview-eb, realview-eb-mpcore, realview-pb-a8, realview-pbx-a9,
      versatileab, versatilepb, vexpress-a9, vexpress-a15

In a lot of these cases I suspect the i2c controllers are
provided either to allow connection of various internal-to-the-board
devices, or simply so that guest OS bootup code that initializes
the i2c controller doesn't fall over. However since there's
nothing stopping users from creating i2c devices themselves
on the commandline, some people might be doing that.

In some of these cases (eg the i2c bus on the ATI VGA driver)
I suspect the desired behaviour is "unique bus name based on
a standard template, eg 'ati-vga.ddc.0/1/...'. It sounds like
we can't do that, though. (Also they probably don't want to
permit users to command-line plug i2c devices into it...)

thanks
-- PMM


  reply	other threads:[~2021-09-21 13:22 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-12 11:05 ensuring a machine's buses have unique names Peter Maydell
2021-08-26 13:00 ` Peter Maydell
2021-08-26 14:08 ` Markus Armbruster
2021-09-14 15:25   ` Peter Maydell
2021-09-15  4:28     ` Markus Armbruster
2021-09-21 13:20       ` Peter Maydell [this message]
2021-09-21 15:48         ` BALATON Zoltan
2021-09-22  4:37           ` Markus Armbruster
2021-09-22  9:58             ` BALATON Zoltan
2021-09-22 13:07               ` Markus Armbruster
2021-09-22  7:02         ` Markus Armbruster
2021-09-22  8:14           ` Cédric Le Goater
2021-09-22  4:46     ` Markus Armbruster

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=CAFEAcA_ExFiv3AurBAtTan10yuXRnsHMQS0yHa-vJpwB9u4HoA@mail.gmail.com \
    --to=peter.maydell@linaro.org \
    --cc=armbru@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=qemu-devel@nongnu.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.