All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: qemu-devel@nongnu.org, "Aditya Gupta" <adityag@linux.ibm.com>,
	"Alexander Graf" <graf@amazon.com>,
	"Alexandre Iooss" <erdnaxe@crans.org>,
	"Alexey Kardashevskiy" <aik@ozlabs.ru>,
	"Alistair Francis" <Alistair.Francis@wdc.com>,
	"Alistair Francis" <alistair@alistair23.me>,
	"Antony Pavlov" <antonynpavlov@gmail.com>,
	"Artyom Tarasenko" <atar4qemu@gmail.com>,
	"Bernhard Beschow" <shentey@gmail.com>,
	"Bibo Mao" <maobibo@loongson.cn>,
	"Brian Cain" <brian.cain@oss.qualcomm.com>,
	"Chao Liu" <chao.liu@processmission.com>,
	"Christian Borntraeger" <borntraeger@linux.ibm.com>,
	"Clément Chigot" <chigot@adacore.com>,
	"Cédric Le Goater" <clg@kaod.org>,
	"Dorjoy Chowdhury" <dorjoychy111@gmail.com>,
	"Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
	"Eric Farman" <farman@linux.ibm.com>,
	"Farhan Ali" <alifm@linux.ibm.com>,
	"Felipe Balbi" <balbi@kernel.org>,
	"Francisco Iglesias" <francisco.iglesias@amd.com>,
	"Frederic Konrad" <konrad.frederic@yahoo.fr>,
	"Gaurav Sharma" <gaurav.sharma_7@nxp.com>,
	"Gautam Gala" <ggala@linux.ibm.com>,
	"Glenn Miles" <milesg@linux.ibm.com>,
	"Halil Pasic" <pasic@linux.ibm.com>,
	"Hao Wu" <wuhaotsh@google.com>,
	"Harsh Prateek Bora" <harshpb@linux.ibm.com>,
	"Helge Deller" <deller@gmx.de>,
	"Hendrik Brueckner" <brueckner@linux.ibm.com>,
	"Hervé Poussineau" <hpoussin@reactos.org>,
	"Huacai Chen" <chenhuacai@kernel.org>,
	"Jan Kiszka" <jan.kiszka@web.de>,
	"Jared Rossi" <jrossi@linux.ibm.com>,
	"Joel Stanley" <joel@jms.id.au>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Manos Pitsidianakis" <manos.pitsidianakis@linaro.org>,
	"Mark Cave-Ayland" <mark.cave-ayland@ilande.co.uk>,
	"Matthew Rosato" <mjrosato@linux.ibm.com>,
	"Max Filippov" <jcmvbkbc@gmail.com>,
	"Michael Rolnik" <mrolnik@gmail.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Nicholas Piggin" <npiggin@gmail.com>,
	"Niek Linnenbank" <nieklinnenbank@gmail.com>,
	"Palmer Dabbelt" <palmer@dabbelt.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Philippe Mathieu-Daudé" <philmd@mailo.com>,
	"Pierrick Bouvier" <pierrick.bouvier@oss.qualcomm.com>,
	"Ran Wang" <wangran@bosc.ac.cn>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	"Sai Pavan Boddu" <sai.pavan.boddu@amd.com>,
	"Samuel Tardieu" <sam@rfc1149.net>,
	"Sergio Lopez" <slp@redhat.com>, "Song Gao" <17746591750@163.com>,
	"Stafford Horne" <shorne@gmail.com>,
	"Subbaraya Sundeep" <sundeep.lkml@gmail.com>,
	"Thomas Huth" <th.huth+qemu@posteo.eu>,
	"Tyrone Ting" <kfting@nuvoton.com>,
	qemu-arm@nongnu.org, qemu-ppc@nongnu.org, qemu-riscv@nongnu.org,
	qemu-s390x@nongnu.org
Subject: Re: Call to clean up QOM onboard devices lacking a parent
Date: Mon, 13 Jul 2026 08:43:04 +0200	[thread overview]
Message-ID: <874ii3wft3.fsf@pond.sub.org> (raw)
In-Reply-To: <69d31293-b6db-a411-141b-234c7d823bbe@eik.bme.hu> (BALATON Zoltan's message of "Fri, 10 Jul 2026 14:13:13 +0200 (CEST)")

BALATON Zoltan <balaton@eik.bme.hu> writes:

> On Fri, 10 Jul 2026, Markus Armbruster wrote:
>> BALATON Zoltan <balaton@eik.bme.hu> writes:
>>
>>> On Thu, 9 Jul 2026, Markus Armbruster wrote:
>>>> A QOM object must be the child of exactly one parent.  This defines the
>>>> QOM composition tree.  The link from parent to child is a property of
>>>> the parent, and therefore has a name that is unique within its parent.
>>>> An object's canonical QOM path is these names on the path from root to
>>>> object in the QOM composition tree separated by '/'.
>>>>
>>>> For devices:
>>>>
>>>> * If a device is plugged in with -device / device_add, and it has an ID,
>>>>   we make it a child of /machine/peripheral/ with name ID.  If it
>>>>   doesn't have an ID, we make it a child of /machine/peripheral-anon/
>>>>   with name device[N], where N counts up from zero.  The canonical QOM
>>>>   path /machine/peripheral/ID is stable.  The canonical QOM path
>>>>   /machine/peripheral-anon/device[N] isn't: it depends on the number of
>>>>   devices already there.
>>>>
>>>> * If a device is part of another device, it should be its child.  The
>>>>   child's canonical QOM path is the parent's plus '/CHILD-NAME'.  Stable
>>>>   as long as the parent's path and the child name are.
>>>>
>>>> * "Should" because we have a lot of code that fails to pick the parent.
>>>>   When such a device gets realized, we make it a child of
>>>>   /machine/unattached/ orphanage with name device[N], where N counts up
>>>>   from zero.  The canonical QOM path /machine/unattached/device[N]
>>>>   depends on the number of children already in the orphanage, which
>>>>   makes it unstable.
>>>>
>>>>   Letting code get away with not picking a parent was a mistake.  I
>>>>   guess it "saved" us some thinking about what's part of what when
>>>>   converting existing devices to QOM.  In other words, it enabled sloppy
>>>>   hardware modeling.  We've been "saving" thinking ever since.
>>>>
>>>>   I want /machine/unattached/ to be empty.  If an onboard device isn't
>>>>   part of another device, put it into /machine/ with a sensible name.
>>>
>>> The last time this came up I've asked a few questions but did not get an answer:
>>>
>>> 1. What's the use of the QOM composition tree? I never needed it and apart from being able to admire it in info qom-tree I don't know if it's used for anything. For a long time I did not even know about info qom-tree because I only needed info qtree and info mtree and rarely if ever need to look at the qom-tree. If it has no real use I'm happy to not think about it.
>>>
>>> 2. What is a QOM parent? There were proposals to parent devices to their bus if they have any, that's what qtree shows anyway. If it's something else it should be better defined somewhere.
>>>
>>> Without getting answers for these questions I don't think I'm able to fix the machines I maintain.
>>
>> Unfortunately, I don't have the time to teach a class on QOM basics
>> today.  The text you quoted explains what QOM parent and canonical QOM
>> path are, albeit briefly.  It also explains how to pick the QOM parent
>> properly, what happens when you neglect to pick one, and why that's
>> undesirable.  I'm going to elaborate a bit.
>
> I read that text but understood it describes what is done now and missed the part where it says how to pick a parent.
>
>> A fully constructed QOM object is part of the QOM composition tree.
>> This is a fundamental property of QOM's design.
>>
>> A QOM object can be composed of sub-objects.  Its sub-objects are its
>> children in the composition tree.  That's why it's named *composition*
>> tree.
>
> OK so this is clear for a SoC or a multifunction device where we mostly do that now, for example hw/isa/vt82c686.c has object_initialize_child for its parts (which is the only reason we need an init method and could do without it otherwise). For PPC460EX we don't model the SoC as this is old code that was cleaned up a bit but never completed to convert everything so the machine still creates the SoC parts and wires them as a lot of older machines did. I intended to improve the PCIe emulation on sam460ex and clean up that part during that but haven't got to it yet. I guess other devices like isa have the same problem that they predate even QOM so was not fully converted yet.

Yes, many of the early conversions were superficial.

Once problematic code exists, it gets imitated.  We shouldn't blame the
victims.

> What should own sysbus devices? The machine? Or is it the bus which owns the devices connected to it?

If the sysbus device is part of another device, it should be below it in
the composition tree.  Whether to connect it directly or via its bus is
arguably a matter of taste.  Would be nice if we could agree on a
convention there.

If it's not part of another device (say a chip soldered onto the
mainboard), then put it into /machine with a sensible name.

> Another problem is that machines usually use convenience functions to create devices such as sysbus_create_simple and pci_create_simple so if these devices need to be attached to the machine then these convenience functions should take care of that not the board code. It's rare that a device does object_new or object_initialize to get a device and it would be inconvenient to then cast the result to object and parent it somewhere where the functions that created the device could do this.

Alex Graf just posted RFC patches "qom: Make composition-tree parenting
mandatory".  I haven't hat a chance to examine them, but patch titles
suggest the series takes care of that.

>> Canonical QOM paths are visible at external interfaces both as input and
>> as output.  A few quick examples:
>>
>> * QMP command query-cpus-fast reports a CPU's canonical QOM path.  For
>>   some machines, we get something like "/machine/unattached/device[0]".
>>   Fine as long as the client treats it as an opaque handle.  For other
>>   machines, we get something like "/machine/soc/cpu", which is clearly
>>   better.
>
> As you say does not matter what is it called if it's just a handle.

True!  Still, nice names help humans with debugging and such.  We should
go for them whenever practical.

>> * Error messages use canonical QOM paths to identify devices.  With
>>   properly modeled hardware, these paths are actually helpful for
>>   humans.  Something like "/machine/unattached/device[7]" not so much.
>
> Never seen such error message. Usually errors also say what device it is from so usually straightforward to know where it comes from.

Such error messages definitely exist.  Random pick,
hw/net/can/flexcan.c:

            error_setg(errp, "%s: flexcan_connect_to_bus failed",
                       dev->canonical_path);

Many trace points and log entries show canonical QOM paths, too.

>> * QMP command device-sync-config accepts a QOM path argument.  With
>>   properly modeled hardware, you can use a stable canonical QOM path.
>>   But when the device is in the /machine/unattached orphanage, its
>>   canonical QOM path is unstable.  A client has to first search the
>>   orphanage to find today's path.
>
> Never needed to use device-sync-config. It's not even documented at https://www.qemu.org/docs/master/system/monitor.html#qemu-monitor so I have no idea what this command does. Found some info here:
> https://www.qemu.org/docs/master/devel/qdev-api.html but I don't know about any device implementing that so it's probably a rare thing.

To learn what a QMP command does, start with the "QEMU QMP Reference
Manual".  All commands are documented there, or else QEMU fails to
build.  Can't enforce the documentation to be *good*, though.  So if you
find something that's bad, post a patch or file a bug.

If my point was "device-sync-config needs this", an argument "who cares
for device-sync-config" could perhaps be made.  It is not.  My point is
that canonical QOM paths are part of external interfaces *by design*.
device-sync-config is merely the first example I found for use of QOM
paths in QMP input.

>> Further questions?
>
> Basically the question was why should I think about this if things work now and nobody complained about it so it looked like it just bothers you that there are some unparented objects that could be put in some other category, but it's not a real issue for any common problem other than esthetics. I'm OK with solving that within QOM or qdev or somewhere where I don't have to think about it when writing board code. Imposing it on the board code looks like additional complexity and yet another thing to confuse new people trying to create a machine so unless there's a good reason to require that I'd do without it.
>
> Where are stable QOM paths needed?

Once again: they are part of external interfaces.

> If you can't predict them and still need to query it first then it likely does not matter what is the path as it's just used to query and refer to a device as a handle so in that case we may just forget the path hierarchy and make it flat and that would also solve your issue with unparented devices.

That's not how QOM works.

You are welcome to propose a redesign of QOM.



      reply	other threads:[~2026-07-13  6:43 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-09 14:59 Call to clean up QOM onboard devices lacking a parent Markus Armbruster
2026-07-09 16:02 ` BALATON Zoltan
2026-07-09 16:45   ` Graf (AWS), Alexander
2026-07-10  6:25     ` Markus Armbruster
2026-07-10  7:38       ` Graf (AWS), Alexander
2026-07-10  8:03         ` Markus Armbruster
2026-07-10  7:05   ` Markus Armbruster
2026-07-10 12:13     ` BALATON Zoltan
2026-07-13  6:43       ` Markus Armbruster [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=874ii3wft3.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=17746591750@163.com \
    --cc=Alistair.Francis@wdc.com \
    --cc=adityag@linux.ibm.com \
    --cc=aik@ozlabs.ru \
    --cc=alifm@linux.ibm.com \
    --cc=alistair@alistair23.me \
    --cc=antonynpavlov@gmail.com \
    --cc=atar4qemu@gmail.com \
    --cc=balaton@eik.bme.hu \
    --cc=balbi@kernel.org \
    --cc=borntraeger@linux.ibm.com \
    --cc=brian.cain@oss.qualcomm.com \
    --cc=brueckner@linux.ibm.com \
    --cc=chao.liu@processmission.com \
    --cc=chenhuacai@kernel.org \
    --cc=chigot@adacore.com \
    --cc=clg@kaod.org \
    --cc=deller@gmx.de \
    --cc=dorjoychy111@gmail.com \
    --cc=edgar.iglesias@gmail.com \
    --cc=erdnaxe@crans.org \
    --cc=farman@linux.ibm.com \
    --cc=francisco.iglesias@amd.com \
    --cc=gaurav.sharma_7@nxp.com \
    --cc=ggala@linux.ibm.com \
    --cc=graf@amazon.com \
    --cc=harshpb@linux.ibm.com \
    --cc=hpoussin@reactos.org \
    --cc=jan.kiszka@web.de \
    --cc=jcmvbkbc@gmail.com \
    --cc=joel@jms.id.au \
    --cc=jrossi@linux.ibm.com \
    --cc=kfting@nuvoton.com \
    --cc=konrad.frederic@yahoo.fr \
    --cc=laurent@vivier.eu \
    --cc=manos.pitsidianakis@linaro.org \
    --cc=maobibo@loongson.cn \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=milesg@linux.ibm.com \
    --cc=mjrosato@linux.ibm.com \
    --cc=mrolnik@gmail.com \
    --cc=mst@redhat.com \
    --cc=nieklinnenbank@gmail.com \
    --cc=npiggin@gmail.com \
    --cc=palmer@dabbelt.com \
    --cc=pasic@linux.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@mailo.com \
    --cc=pierrick.bouvier@oss.qualcomm.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=qemu-riscv@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=sai.pavan.boddu@amd.com \
    --cc=sam@rfc1149.net \
    --cc=shentey@gmail.com \
    --cc=shorne@gmail.com \
    --cc=slp@redhat.com \
    --cc=sundeep.lkml@gmail.com \
    --cc=th.huth+qemu@posteo.eu \
    --cc=wangran@bosc.ac.cn \
    --cc=wuhaotsh@google.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.