All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Chen, Tiejun" <tiejun.chen@intel.com>
Cc: pbonzini@redhat.com, xen-devel@lists.xen.org,
	qemu-devel@nongnu.org, stefano.stabellini@eu.citrix.com
Subject: Re: [Qemu-devel] [PATCH 2/4] xen:hw:pci-host:piix: create host bridge to passthrough
Date: Wed, 30 Jul 2014 19:45:46 +0200	[thread overview]
Message-ID: <20140730174546.GA28105@redhat.com> (raw)
In-Reply-To: <53D8AABD.8000609@intel.com>

On Wed, Jul 30, 2014 at 04:20:13PM +0800, Chen, Tiejun wrote:
> On 2014/7/29 19:17, Michael S. Tsirkin wrote:
> >On Thu, Jul 24, 2014 at 07:30:27PM +0800, Tiejun Chen wrote:
> >>Implement that pci
> >
> >s/that/a/
> 
> Fixed.
> 
> >
> >>host bridge to specific
> >
> >s/to specific/specific/
> 
> Fixed.
> 
> >
> >>to passthrough. Actually
> >>this just inherit
> >
> >s/inherit/inherits/
> 
> Fixed.
> 
> >
> >>the standard one.
> >>
> >>This is based on http://patchwork.ozlabs.org/patch/363810/.
> >>
> >>Signed-off-by: Tiejun Chen <tiejun.chen@intel.com>
> >>---
> >>  hw/pci-host/piix.c | 43 +++++++++++++++++++++++++++++++++++++++++++
> >>  1 file changed, 43 insertions(+)
> >>
> >>diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c
> >>index e0e0946..9feddf5 100644
> >>--- a/hw/pci-host/piix.c
> >>+++ b/hw/pci-host/piix.c
> >>@@ -34,6 +34,7 @@
> >>  #include "sysemu/sysemu.h"
> >>  #include "hw/i386/ioapic.h"
> >>  #include "qapi/visitor.h"
> >>+#include "hw/xen/xen_pt.h"
> >
> >What call needs this, exactly?
> 
> Another fault when I grab something from the original patches.
> 
> >
> >>
> >>  /*
> >>   * I440FX chipset data sheet.
> >>@@ -44,6 +45,10 @@
> >>  #define I440FX_PCI_HOST_BRIDGE(obj) \
> >>      OBJECT_CHECK(I440FXState, (obj), TYPE_I440FX_PCI_HOST_BRIDGE)
> >>
> >
> >OK cool, but don't you want to put "igd" and "passthrough"
> >somewhere in the name? Maybe "legacy" as well since
> >future drivers will work with existing machine type, right?
> 
> Looks good so what about this prefix, IGD_PT_XXX/igd_pt_xxx?

OK though I think a more verbose PASSTROUGH is a bit clearer.
Is it xen-specific in some way, or usable with kvm/tcg as well?
If specific it needs to include XEN_ prefix as well.

> >
> >Applies to functions and macro names as well.
> >
> >>+#define TYPE_I440FX_XEN_PCI_DEVICE "i440FX-xen"
> >>+#define I440FX_XEN_PCI_DEVICE(obj) \
> >>+    OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_XEN_PCI_DEVICE)
> >>+
> >>  typedef struct I440FXState {
> >>      PCIHostState parent_obj;
> >>      PcPciInfo pci_info;
> >>@@ -305,6 +310,16 @@ static int i440fx_initfn(PCIDevice *dev)
> >>      return 0;
> >>  }
> >>
> >>+static int i440fx_xen_initfn(PCIDevice *dev)
> >>+{
> >>+    PCII440FXState *d = I440FX_XEN_PCI_DEVICE(dev);
> >>+
> >>+    dev->config[I440FX_SMRAM] = 0x02;
> >>+
> >>+    cpu_smm_register(&i440fx_set_smm, d);
> >>+    return 0;
> >>+}
> >>+
> >>  PCIBus *i440fx_init(PCII440FXState **pi440fx_state,
> >>                      int *piix3_devfn,
> >>                      ISABus **isa_bus, qemu_irq *pic,
> >>@@ -704,6 +719,33 @@ static const TypeInfo i440fx_info = {
> >>      .class_init    = i440fx_class_init,
> >>  };
> >>
> >>+static void i440fx_xen_class_init(ObjectClass *klass, void *data)
> >>+{
> >>+    DeviceClass *dc = DEVICE_CLASS(klass);
> >>+    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
> >>+
> >>+    k->init = i440fx_xen_initfn;
> >>+    k->vendor_id = PCI_VENDOR_ID_INTEL;
> >>+    k->device_id = PCI_DEVICE_ID_INTEL_82441;
> >>+    k->revision = 0x02;
> >>+    k->class_id = PCI_CLASS_BRIDGE_ISA;
> >>+    dc->desc = "XEN Host bridge";
> >>+    dc->vmsd = &vmstate_i440fx;
> >>+    /*
> >>+     * PCI-facing part of the host bridge, not usable without the
> >>+     * host-facing part, which can't be device_add'ed, yet.
> >>+     */
> >>+    dc->cannot_instantiate_with_device_add_yet = true;
> >>+    dc->hotpluggable   = false;
> >>+}
> >>+
> >>+static const TypeInfo i440fx_xen_info = {
> >>+    .name          = TYPE_I440FX_XEN_PCI_DEVICE,
> >>+    .parent        = TYPE_PCI_DEVICE,
> >>+    .instance_size = sizeof(PCII440FXState),
> >>+    .class_init    = i440fx_xen_class_init,
> >>+};
> >>+
> >>  static const char *i440fx_pcihost_root_bus_path(PCIHostState *host_bridge,
> >>                                                  PCIBus *rootbus)
> >>  {
> >>@@ -745,6 +787,7 @@ static const TypeInfo i440fx_pcihost_info = {
> >>  static void i440fx_register_types(void)
> >>  {
> >>      type_register_static(&i440fx_info);
> >>+    type_register_static(&i440fx_xen_info);
> >>      type_register_static(&piix3_info);
> >>      type_register_static(&piix3_xen_info);
> >>      type_register_static(&i440fx_pcihost_info);
> >>--
> >>1.9.1
> >
> >

  parent reply	other threads:[~2014-07-30 17:45 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-24 11:30 [Qemu-devel] [PATCH 0/4] xen:passthrough: introduce a separate machine to igd passthrough Tiejun Chen
2014-07-24 11:30 ` [PATCH 1/4] hw:i386:pc_piix: split pc_init1() Tiejun Chen
2014-07-24 11:30 ` [Qemu-devel] " Tiejun Chen
2014-07-29 11:26   ` Michael S. Tsirkin
2014-07-30  8:19     ` Chen, Tiejun
2014-07-30  8:19     ` [Qemu-devel] " Chen, Tiejun
2014-07-30 17:48       ` Michael S. Tsirkin
2014-07-30 17:48       ` Michael S. Tsirkin
2014-07-29 11:26   ` Michael S. Tsirkin
2014-07-24 11:30 ` [Qemu-devel] [PATCH 2/4] xen:hw:pci-host:piix: create host bridge to passthrough Tiejun Chen
2014-07-24 11:30   ` Tiejun Chen
2014-07-29 11:17   ` Michael S. Tsirkin
2014-07-29 11:17   ` [Qemu-devel] " Michael S. Tsirkin
2014-07-30  8:20     ` Chen, Tiejun
2014-07-30  8:20     ` [Qemu-devel] " Chen, Tiejun
2014-07-30 17:45       ` Michael S. Tsirkin
2014-07-30 17:45       ` Michael S. Tsirkin [this message]
2014-07-24 11:30 ` [Qemu-devel] [PATCH 3/4] xen:hw:pci-host:piix: introduce xen_igd_i440fx_init Tiejun Chen
2014-07-29 11:19   ` Michael S. Tsirkin
2014-07-30  8:24     ` Chen, Tiejun
2014-07-30 17:46       ` Michael S. Tsirkin
2014-07-30 17:46       ` Michael S. Tsirkin
2014-07-30  8:24     ` Chen, Tiejun
2014-07-29 11:19   ` Michael S. Tsirkin
2014-07-24 11:30 ` Tiejun Chen
2014-07-24 11:30 ` [Qemu-devel] [PATCH 4/4] xen:hw:i386:pc_piix: introduce new machine for IGD passthrough Tiejun Chen
2014-07-24 11:30   ` Tiejun Chen
2014-07-29 11:29   ` Michael S. Tsirkin
2014-07-29 11:29   ` [Qemu-devel] " Michael S. Tsirkin
2014-07-30  8:31     ` Chen, Tiejun
2014-07-30  8:31     ` [Qemu-devel] " Chen, Tiejun
2014-07-30 17:47       ` Michael S. Tsirkin
2014-07-30 17:47       ` [Qemu-devel] " Michael S. Tsirkin
2014-07-29  5:45 ` [Qemu-devel] [PATCH 0/4] xen:passthrough: introduce a separate machine to igd passthrough Chen, Tiejun
2014-07-29  5:45 ` Chen, Tiejun

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=20140730174546.GA28105@redhat.com \
    --to=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=tiejun.chen@intel.com \
    --cc=xen-devel@lists.xen.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.