kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: "kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"eddie.dong@intel.com" <eddie.dong@intel.com>,
	Alexander Graf <agraf@suse.de>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	"Gabriel L. Somlo" <gsomlo@gmail.com>,
	pbonzini@redhat.com
Subject: [PATCH RFC] kvm: ignore apic polarity
Date: Thu, 27 Feb 2014 19:05:49 +0200	[thread overview]
Message-ID: <20140227170549.GA23037@redhat.com> (raw)
In-Reply-To: <20140216162300.GI30056@redhat.com>

apic polarity in KVM does not work: too many things assume active high.
Let's not pretend it works, let's just ignore polarity flag.  If we ever
want to emulate it exactly, this will need a feature flag anyway.

Also report this to userspace: this makes it
possible to report the interrupt active-low
in ACPI, this way we are closer to real hardware.

This patch fixes OSX running on KVM.

Reported-by: "Gabriel L. Somlo" <gsomlo@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

---

Gabriel, could you confirm this fixes OSX for you?
If you can play with linux tweaking interrupt
to active low, that would be very nice too:
it's weekend here.

diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
index 902f124..db29b27 100644
--- a/include/uapi/linux/kvm.h
+++ b/include/uapi/linux/kvm.h
@@ -674,6 +676,7 @@ struct kvm_ppc_smmu_info {
 #define KVM_CAP_ARM_EL1_32BIT 93
 #define KVM_CAP_SPAPR_MULTITCE 94
 #define KVM_CAP_EXT_EMUL_CPUID 95
+#define KVM_CAP_X86_IOAPIC_POLARITY_IGNORED 96
 
 #ifdef KVM_CAP_IRQ_ROUTING
 
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c
index 2d68297..ad170b4 100644
--- a/virt/kvm/ioapic.c
+++ b/virt/kvm/ioapic.c
@@ -328,7 +328,6 @@ int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
 	irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
 					 irq_source_id, level);
 	entry = ioapic->redirtbl[irq];
-	irq_level ^= entry.fields.polarity;
 	if (!irq_level) {
 		ioapic->irr &= ~mask;
 		ret = 1;

  parent reply	other threads:[~2014-02-27 17:59 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20140130204423.GK29329@ERROL.INI.CMU.EDU>
2014-02-11 18:23 ` RFC: ioapic polarity vs. qemu os-x guest Gabriel L. Somlo
2014-02-11 19:54   ` Michael S. Tsirkin
2014-02-11 21:35     ` Gabriel L. Somlo
2014-02-14 21:13     ` Gabriel L. Somlo
2014-02-14 21:21       ` Alexander Graf
2014-02-14 22:06         ` Gabriel L. Somlo
2014-02-14 22:13           ` Alexander Graf
2014-02-16 11:18             ` Michael S. Tsirkin
2014-02-16 11:41             ` Michael S. Tsirkin
2014-02-16 14:47               ` Alex Williamson
2014-02-16 16:23                 ` Michael S. Tsirkin
2014-02-17 17:57                   ` Gabriel L. Somlo
2014-02-17 18:01                     ` Gabriel L. Somlo
2014-02-17 18:06                       ` Paolo Bonzini
2014-02-17 19:38                         ` Gabriel L. Somlo
2014-02-18  0:58                           ` Gabriel L. Somlo
2014-02-27 17:05                   ` Michael S. Tsirkin [this message]
2014-02-27 21:41                     ` [PATCH RFC] kvm: ignore apic polarity Gabriel L. Somlo
2014-02-27 22:30                       ` Paolo Bonzini
2014-02-27 23:13                         ` Gabriel L. Somlo
2014-02-27 23:31                           ` Paolo Bonzini
2014-02-28  4:06                             ` [RFC PATCH v2] kvm: x86: ignore ioapic polarity Gabriel L. Somlo
2014-03-02 14:55                               ` Michael S. Tsirkin
2014-03-13 10:53                               ` Paolo Bonzini
2014-03-13 13:43                                 ` Gabriel L. Somlo
2014-02-28  4:55                         ` [PATCH RFC] kvm: ignore apic polarity Michael S. Tsirkin
2014-02-28  8:10                           ` Paolo Bonzini
2014-02-28  8:11                           ` Paolo Bonzini
2014-03-01  5:03                     ` Alex Williamson
2014-02-16 11:34       ` RFC: ioapic polarity vs. qemu os-x guest Michael S. Tsirkin
2014-02-16 15:12         ` [Qemu-devel] " Peter Maydell
2014-02-16 11:37       ` 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=20140227170549.GA23037@redhat.com \
    --to=mst@redhat.com \
    --cc=agraf@suse.de \
    --cc=alex.williamson@redhat.com \
    --cc=eddie.dong@intel.com \
    --cc=gsomlo@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@redhat.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).