From: Tiejun Chen <tiejun.chen@intel.com>
To: mst@redhat.com
Cc: pbonzini@redhat.com, xen-devel@lists.xensource.com,
qemu-devel@nongnu.org, stefano.stabellini@eu.citrix.com
Subject: [Qemu-devel] [v2][PATCH 0/5] xen: introduce new machine for IGD passthrough
Date: Thu, 31 Jul 2014 14:31:34 +0800 [thread overview]
Message-ID: <1406788299-8394-1-git-send-email-tiejun.chen@intel.com> (raw)
v2:
* Fix some coding style
* New patch to separate i440fx_init
* Just add prefix with XEN_IGD_PASSTHROUGH/xen_igd_passthrough
* Based on patch #2 to regenerate
* Unify prefix with XEN_IGD_PASSTHROUGH/xen_igd_passthrough like patch #3
* Test: boot with a preinstalled ubuntu 14.04
./i386-softmmu/qemu-system-i386 -hda test.img -m 2560 -boot c -machine pc
As we discussed we need to create a separate machine to support current
IGD passthrough.
----------------------------------------------------------------
Tiejun Chen (5):
hw:i386:pc_piix: split pc_init1()
hw:pci-host:piix: split i440fx_init
xen:hw:pci-host:piix: create host bridge to passthrough
xen:hw:pci-host:piix: introduce xen_igd_passthrough_i440fx_init
xen:hw:i386:pc_piix: introduce new machine for IGD passthrough
hw/i386/pc_piix.c | 222 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
hw/pci-host/piix.c | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------
include/hw/i386/pc.h | 11 +++++++++
3 files changed, 358 insertions(+), 40 deletions(-)
Thanks
Tiejun
WARNING: multiple messages have this Message-ID (diff)
From: Tiejun Chen <tiejun.chen@intel.com>
To: mst@redhat.com
Cc: pbonzini@redhat.com, xen-devel@lists.xensource.com,
qemu-devel@nongnu.org, stefano.stabellini@eu.citrix.com
Subject: [v2][PATCH 0/5] xen: introduce new machine for IGD passthrough
Date: Thu, 31 Jul 2014 14:31:34 +0800 [thread overview]
Message-ID: <1406788299-8394-1-git-send-email-tiejun.chen@intel.com> (raw)
v2:
* Fix some coding style
* New patch to separate i440fx_init
* Just add prefix with XEN_IGD_PASSTHROUGH/xen_igd_passthrough
* Based on patch #2 to regenerate
* Unify prefix with XEN_IGD_PASSTHROUGH/xen_igd_passthrough like patch #3
* Test: boot with a preinstalled ubuntu 14.04
./i386-softmmu/qemu-system-i386 -hda test.img -m 2560 -boot c -machine pc
As we discussed we need to create a separate machine to support current
IGD passthrough.
----------------------------------------------------------------
Tiejun Chen (5):
hw:i386:pc_piix: split pc_init1()
hw:pci-host:piix: split i440fx_init
xen:hw:pci-host:piix: create host bridge to passthrough
xen:hw:pci-host:piix: introduce xen_igd_passthrough_i440fx_init
xen:hw:i386:pc_piix: introduce new machine for IGD passthrough
hw/i386/pc_piix.c | 222 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
hw/pci-host/piix.c | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------
include/hw/i386/pc.h | 11 +++++++++
3 files changed, 358 insertions(+), 40 deletions(-)
Thanks
Tiejun
next reply other threads:[~2014-07-31 6:35 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-31 6:31 Tiejun Chen [this message]
2014-07-31 6:31 ` [v2][PATCH 0/5] xen: introduce new machine for IGD passthrough Tiejun Chen
2014-07-31 6:31 ` [Qemu-devel] [v2][PATCH 1/5] hw:i386:pc_piix: split pc_init1() Tiejun Chen
2014-07-31 6:31 ` Tiejun Chen
2014-07-31 6:31 ` [Qemu-devel] [v2][PATCH 2/5] hw:pci-host:piix: split i440fx_init Tiejun Chen
2014-07-31 6:31 ` Tiejun Chen
2014-07-31 9:10 ` [Qemu-devel] " Michael S. Tsirkin
2014-07-31 9:10 ` Michael S. Tsirkin
2014-07-31 9:26 ` [Qemu-devel] " Chen, Tiejun
2014-07-31 9:26 ` Chen, Tiejun
2014-07-31 9:53 ` [Qemu-devel] " Michael S. Tsirkin
2014-07-31 9:53 ` Michael S. Tsirkin
2014-07-31 10:12 ` [Qemu-devel] " Chen, Tiejun
2014-07-31 10:12 ` Chen, Tiejun
2014-07-31 12:10 ` [Qemu-devel] " Chen, Tiejun
2014-07-31 12:10 ` Chen, Tiejun
2014-07-31 15:47 ` [Qemu-devel] " Michael S. Tsirkin
2014-07-31 15:47 ` Michael S. Tsirkin
2014-08-01 2:40 ` [Qemu-devel] " Chen, Tiejun
2014-08-01 2:40 ` Chen, Tiejun
2014-07-31 15:44 ` [Qemu-devel] " Michael S. Tsirkin
2014-07-31 15:44 ` Michael S. Tsirkin
2014-08-01 2:35 ` [Qemu-devel] " Chen, Tiejun
2014-08-01 2:35 ` Chen, Tiejun
2014-08-04 7:11 ` [Qemu-devel] " Chen, Tiejun
2014-08-04 7:11 ` Chen, Tiejun
2014-07-31 6:31 ` [Qemu-devel] [v2][PATCH 3/5] xen:hw:pci-host:piix: create host bridge to passthrough Tiejun Chen
2014-07-31 6:31 ` Tiejun Chen
2014-07-31 6:31 ` [Qemu-devel] [v2][PATCH 4/5] xen:hw:pci-host:piix: introduce xen_igd_passthrough_i440fx_init Tiejun Chen
2014-07-31 6:31 ` Tiejun Chen
2014-07-31 6:31 ` [Qemu-devel] [v2][PATCH 5/5] xen:hw:i386:pc_piix: introduce new machine for IGD passthrough Tiejun Chen
2014-07-31 6:31 ` Tiejun Chen
2014-07-31 8:58 ` [Qemu-devel] [v2][PATCH 0/5] xen: " Michael S. Tsirkin
2014-07-31 8:58 ` Michael S. Tsirkin
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=1406788299-8394-1-git-send-email-tiejun.chen@intel.com \
--to=tiejun.chen@intel.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.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.