xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Feng Wu <feng.wu@intel.com>
To: xen-devel@lists.xen.org
Cc: Feng Wu <feng.wu@intel.com>
Subject: [PATCH v10 0/7] Add VT-d Posted-Interrupts support
Date: Thu,  3 Dec 2015 16:35:27 +0800	[thread overview]
Message-ID: <1449131734-3578-1-git-send-email-feng.wu@intel.com> (raw)

VT-d Posted-Interrupts is an enhancement to CPU side Posted-Interrupt.
With VT-d Posted-Interrupts enabled, external interrupts from
direct-assigned devices can be delivered to guests without VMM
intervention when guest is running in non-root mode.

You can find the VT-d Posted-Interrtups Spec. in the following URL:
http://www.intel.com/content/www/us/en/intelligent-systems/intel-technology/vt-directed-io-spec.html

Feng Wu (17):
 r   VT-d Posted-intterrupt (PI) design
 ra  vmx: Suppress posting interrupts when 'SN' is set
 r   vt-d: Add API to update IRTE when VT-d PI is used
  a  Update IRTE according to guest interrupt config changes
  a  vmx: Properly handle notification event when vCPU is running
     vmx: VT-d posted-interrupt core logic handling
 ra  Add a command line parameter for VT-d posted-interrupts
 
 r = has been 'Reviewed-by'
 a = has been 'Acked-by'

Feng Wu (7):
  VT-d Posted-intterrupt (PI) design
  vmx: Suppress posting interrupts when 'SN' is set
  vt-d: Add API to update IRTE when VT-d PI is used
  Update IRTE according to guest interrupt config changes
  vmx: Properly handle notification event when vCPU is running
  vmx: VT-d posted-interrupt core logic handling
  Add a command line parameter for VT-d posted-interrupts

 docs/misc/vtd-pi.txt                   | 336 +++++++++++++++++++++++++++++++++
 docs/misc/xen-command-line.markdown    |   9 +-
 xen/arch/x86/hvm/hvm.c                 |   6 +
 xen/arch/x86/hvm/vmx/vmcs.c            |   2 +
 xen/arch/x86/hvm/vmx/vmx.c             | 255 ++++++++++++++++++++++++-
 xen/common/schedule.c                  |   4 +
 xen/drivers/passthrough/io.c           | 123 +++++++++++-
 xen/drivers/passthrough/iommu.c        |   3 +
 xen/drivers/passthrough/vtd/intremap.c | 126 +++++++++++++
 xen/drivers/passthrough/vtd/iommu.h    |   6 +
 xen/include/asm-arm/domain.h           |   2 +
 xen/include/asm-x86/domain.h           |   2 +
 xen/include/asm-x86/hvm/hvm.h          |   2 +
 xen/include/asm-x86/hvm/vmx/vmcs.h     |   9 +
 xen/include/asm-x86/hvm/vmx/vmx.h      |   4 +
 xen/include/asm-x86/iommu.h            |   2 +
 16 files changed, 887 insertions(+), 4 deletions(-)
 create mode 100644 docs/misc/vtd-pi.txt

-- 
2.1.0

             reply	other threads:[~2015-12-03  8:35 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-03  8:35 Feng Wu [this message]
2015-12-03  8:35 ` [PATCH v10 1/7] VT-d Posted-intterrupt (PI) design Feng Wu
2015-12-03  8:35 ` [PATCH v10 2/7] vmx: Suppress posting interrupts when 'SN' is set Feng Wu
2015-12-03  8:35 ` [PATCH v10 3/7] vt-d: Add API to update IRTE when VT-d PI is used Feng Wu
2015-12-10 10:52   ` Tian, Kevin
2015-12-03  8:35 ` [PATCH v10 4/7] Update IRTE according to guest interrupt config changes Feng Wu
2015-12-10 10:53   ` Tian, Kevin
2015-12-03  8:35 ` [PATCH v10 5/7] vmx: Properly handle notification event when vCPU is running Feng Wu
2015-12-03  8:35 ` [PATCH v10 6/7] vmx: VT-d posted-interrupt core logic handling Feng Wu
2015-12-10 11:40   ` Tian, Kevin
2015-12-11  1:58     ` Wu, Feng
2015-12-11  2:27       ` Tian, Kevin
2015-12-11  3:12         ` Wu, Feng
2015-12-21  6:43   ` Wu, Feng
2015-12-21  9:03     ` Dario Faggioli
2015-12-21  9:26       ` Wu, Feng
2015-12-23  2:21   ` Dario Faggioli
2015-12-23  2:28     ` Wu, Feng
2015-12-23  5:16       ` Tian, Kevin
2015-12-23  5:18         ` Wu, Feng
2015-12-23  4:58     ` Wu, Feng
2015-12-23 10:09       ` Jan Beulich
2016-01-18  1:20         ` Wu, Feng
2016-01-18  8:40           ` Jan Beulich
2016-01-18  8:45             ` Wu, Feng
2016-01-18  9:03               ` Jan Beulich
2016-01-19  8:48                 ` Wu, Feng
2016-01-18 15:14   ` Jan Beulich
2016-01-20  7:49     ` Wu, Feng
2016-01-20  8:35       ` Jan Beulich
2016-01-20 11:12         ` Dario Faggioli
2016-01-20 11:18           ` Wu, Feng
2016-01-20 11:20         ` Wu, Feng
2016-01-20 11:35           ` Jan Beulich
2016-01-20 13:30             ` Dario Faggioli
2016-01-20 13:42               ` Wu, Feng
2016-01-25  5:26               ` Wu, Feng
2016-01-25 13:59                 ` Jan Beulich
2016-01-20 13:48             ` Wu, Feng
2016-01-20 14:03               ` Jan Beulich
2016-01-21  9:05     ` Wu, Feng
2016-01-21 10:34       ` Jan Beulich
2015-12-03  8:35 ` [PATCH v10 7/7] Add a command line parameter for VT-d posted-interrupts Feng Wu
2015-12-03 11:19 ` [PATCH v10 0/7] Add VT-d Posted-Interrupts support Jan Beulich
2015-12-03 13:54   ` Wu, Feng
2015-12-10 10:48 ` Tian, Kevin
2015-12-10 13:40   ` Wu, Feng

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=1449131734-3578-1-git-send-email-feng.wu@intel.com \
    --to=feng.wu@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 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).