qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Avi Kivity <avi@redhat.com>
Cc: Blue Swirl <blauwirbel@gmail.com>,
	"Liu >> \"Liu, Jinsong\"" <jinsong.liu@intel.com>,
	qemu-devel <qemu-devel@nongnu.org>,
	Paul Brook <paul@codesourcery.com>
Subject: Re: [Qemu-devel] [PATCH v2 0/7] APIC/IOAPIC cleanup
Date: Sun, 22 Aug 2010 13:52:27 -0500	[thread overview]
Message-ID: <4C7171EB.7090301@codemonkey.ws> (raw)
In-Reply-To: <4C70EFC9.2050404@redhat.com>

On 08/22/2010 04:37 AM, Avi Kivity wrote:
>  On 08/19/2010 11:49 PM, Anthony Liguori wrote:
>>> The bus does not need to have any connection to existence or
>>> non-existence of real buses. In SoCs or ASICs, all devices and buses
>>> may reside inside a chip.
>>
>> Well, I think this is part of the trouble with the current qdev 
>> object model.  There are really two distinct types of devices.  There 
>> are chips that have pins whereas the meaning of those pins are 
>> defined by the chip itself.  For instance, a UART16650A is a chip 
>> that has a well defined pin layout.
>>
>> Then there are buses which typically multiplex signals for many 
>> devices over a single set of wires.  Usually you need some type of 
>> logic that decodes the bus signals to the actual chips that sit on 
>> the card.
>>
>> So really, I think this suggests that some devices shouldn't have any 
>> requirement to sit on a bus.  A UART16650A does not sit on bus.  It 
>> sits on a card and is wired to the ISA bus or is sometimes wired 
>> directly to pins on a CPU on a SoC.
>
> I don't think we want to model individual resistors on a serial card 
> as separate qdev objects.  We want the serial card itself to be a qdev 
> (as it is a hotpluggable entity) and the individual serial interfaces 
> on that card (as they are duplicates of each other and of interest to 
> the user).

You're missing the fundamental problem which arises because we've 
introduced an object model without thinking through how devices ought to 
be modelled.

All devices should have a DeviceState associated with them.  Otherwise, 
there's really no point in having qdev at all.

We have lots of devices today that don't have DeviceState's associated 
with them because the have a separate qdev representation with a 
reference to the non-DeviceState object.

We have non-DeviceState objects because otherwise we end up with an 
inheritance diamond.  We have this problem because we want to have 
relationships like: DeviceState <- SystemDeviceState <- ISADevice <- 
ISASerialDevice.

But ISASerialDevice is not the only type of serial device.  You can also 
have a SystemSerialDevice that's directly attached to the System bus.  
That means you'd have to have:

SerialDevice -> ISASerialDevice -> SystemDeviceState -> DeviceState
                      -> SystemSerialDevice -> SystemDeviceState -> 
DeviceState

Which is a classic MI diamond.  The only way to resolve this modelling 
problem is to split out the common code and rely on a has-a relationship 
instead of an is-a.  That gives you:

ISASerialDevice->SystemDeviceState->DeviceState
SystemSerialDevice->SystemDeviceState->DeviceState

ISASerialDevice has-a SerialDevice
SystemSerialDevice has-a SerialDevice

And since we want SerialDevice inherit from a DeviceState (recall, all 
devices should have DeviceStates):

SerialDevice->DeviceState

No more MI diamond and all devices have DeviceStates.  Coincidentally, 
it matches more closely how hardware works..

Generally speaking, any time we have one device that needs to sit on 
multiple busses, we're going to have to model it in this fashion.

Regards,

Anthony Liguori

  reply	other threads:[~2010-08-22 18:52 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-12 21:14 [Qemu-devel] [PATCH v2 0/7] APIC/IOAPIC cleanup Blue Swirl
2010-06-13 16:56 ` [Qemu-devel] " Jan Kiszka
2010-06-13 17:03   ` Andreas Färber
2010-06-13 17:53     ` Blue Swirl
2010-06-13 18:17       ` Andreas Färber
2010-06-13 17:49   ` Blue Swirl
2010-08-19 19:33 ` [Qemu-devel] " Anthony Liguori
2010-08-19 20:09   ` Blue Swirl
2010-08-19 20:49     ` Anthony Liguori
2010-08-19 21:21       ` Blue Swirl
2010-08-19 21:51         ` Anthony Liguori
2010-08-19 22:52           ` malc
2010-08-20  1:01             ` Anthony Liguori
2010-08-20 10:00               ` malc
2010-08-20  8:42           ` [Qemu-devel] " Paolo Bonzini
2010-08-20 17:01           ` [Qemu-devel] " Markus Armbruster
2010-08-20 18:38             ` Anthony Liguori
2010-08-22 20:28               ` Avi Kivity
2010-08-22 21:02                 ` Anthony Liguori
2010-08-23  5:46                   ` Avi Kivity
2010-08-23 13:23                     ` Anthony Liguori
2010-08-23 13:42                       ` Avi Kivity
2010-08-23 13:48                         ` Anthony Liguori
2010-08-23 14:00                           ` Avi Kivity
2010-08-23 14:26                             ` Anthony Liguori
2010-08-23 14:32                               ` Avi Kivity
2010-08-23 14:47                                 ` Anthony Liguori
2010-08-23 15:10                                   ` Markus Armbruster
2010-08-23 16:05                                     ` Anthony Liguori
2010-08-23 17:36                                       ` Markus Armbruster
2010-08-23 17:47                                         ` Anthony Liguori
2010-08-23 18:24                                       ` [Qemu-devel] " Jan Kiszka
2010-08-23 18:29                                         ` Anthony Liguori
2010-08-23 15:14                                   ` [Qemu-devel] " Avi Kivity
2010-08-23 16:02                                     ` Anthony Liguori
2010-08-24  9:51                                       ` Avi Kivity
2010-08-20 19:26           ` Blue Swirl
2010-08-20 10:35       ` [Qemu-devel] " Jan Kiszka
2010-08-22  9:37       ` [Qemu-devel] " Avi Kivity
2010-08-22 18:52         ` Anthony Liguori [this message]
2010-08-22 19:44           ` Avi Kivity
2010-08-22 20:03             ` Anthony Liguori
2010-08-22 20:33               ` Avi Kivity
2010-08-22 21:06                 ` Anthony Liguori
2010-08-23  5:49                   ` Avi Kivity
2010-08-23  9:09                     ` [Qemu-devel] " Jan Kiszka
2010-08-23  9:25                       ` Avi Kivity
2010-08-23 10:11                         ` Alexander Graf
2010-08-23 10:15                           ` Avi Kivity
2010-08-23 10:18                             ` Alexander Graf
2010-08-23 10:25                               ` Avi Kivity
2010-08-22 21:07             ` [Qemu-devel] " Anthony Liguori
2010-08-23  5:48               ` Avi Kivity
2010-08-22  9:13   ` Avi Kivity

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=4C7171EB.7090301@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=avi@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=jinsong.liu@intel.com \
    --cc=paul@codesourcery.com \
    --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 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).