aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2010-10-04 13:43:27 -0400
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2010-10-18 10:49:29 -0400
commit15ebbb82bac700db3c91e662fb70cb3559e9d930 (patch)
tree9bb317f4dc9081eaef8d8170c7d55180eab4e5c1
parentd9a8814f27080cec6126fca3ef0c210d9f56181e (diff)
xen: fix shared irq device passthrough
In driver/xen/events.c, whether bind_pirq is shareable or not is determined by desc->action is NULL or not. But in __setup_irq, startup(irq) is invoked before desc->action is assigned with new action. So desc->action in startup_irq is always NULL, and bind_pirq is always not shareable. This results in pt_irq_create_bind failure when passthrough a device which shares irq to other devices. This patch doesn't use probing_irq to determine if pirq is shareable or not, instead set shareable flag in irq_info according to trigger mode in xen_allocate_pirq. Set level triggered interrupts shareable. Thus use this flag to set bind_pirq flag accordingly. [v2: arch/x86/xen/pci.c no more, so file skipped] Signed-off-by: Weidong Han <weidong.han@intel.com> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
-rw-r--r--drivers/xen/events.c11
-rw-r--r--include/xen/events.h2
2 files changed, 9 insertions, 4 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 4e0f868517be..cd504092299b 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -97,6 +97,7 @@ struct irq_info
97 } u; 97 } u;
98}; 98};
99#define PIRQ_NEEDS_EOI (1 << 0) 99#define PIRQ_NEEDS_EOI (1 << 0)
100#define PIRQ_SHAREABLE (1 << 1)
100 101
101static struct irq_info *irq_info; 102static struct irq_info *irq_info;
102 103
@@ -445,6 +446,7 @@ static unsigned int startup_pirq(unsigned int irq)
445 struct evtchn_bind_pirq bind_pirq; 446 struct evtchn_bind_pirq bind_pirq;
446 struct irq_info *info = info_for_irq(irq); 447 struct irq_info *info = info_for_irq(irq);
447 int evtchn = evtchn_from_irq(irq); 448 int evtchn = evtchn_from_irq(irq);
449 int rc;
448 450
449 BUG_ON(info->type != IRQT_PIRQ); 451 BUG_ON(info->type != IRQT_PIRQ);
450 452
@@ -453,8 +455,10 @@ static unsigned int startup_pirq(unsigned int irq)
453 455
454 bind_pirq.pirq = irq; 456 bind_pirq.pirq = irq;
455 /* NB. We are happy to share unless we are probing. */ 457 /* NB. We are happy to share unless we are probing. */
456 bind_pirq.flags = probing_irq(irq) ? 0 : BIND_PIRQ__WILL_SHARE; 458 bind_pirq.flags = info->u.pirq.flags & PIRQ_SHAREABLE ?
457 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq) != 0) { 459 BIND_PIRQ__WILL_SHARE : 0;
460 rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq);
461 if (rc != 0) {
458 if (!probing_irq(irq)) 462 if (!probing_irq(irq))
459 printk(KERN_INFO "Failed to obtain physical IRQ %d\n", 463 printk(KERN_INFO "Failed to obtain physical IRQ %d\n",
460 irq); 464 irq);
@@ -564,7 +568,7 @@ static int find_irq_by_gsi(unsigned gsi)
564 * event channel until the irq actually started up. Return an 568 * event channel until the irq actually started up. Return an
565 * existing irq if we've already got one for the gsi. 569 * existing irq if we've already got one for the gsi.
566 */ 570 */
567int xen_allocate_pirq(unsigned gsi, char *name) 571int xen_allocate_pirq(unsigned gsi, int shareable, char *name)
568{ 572{
569 int irq; 573 int irq;
570 struct physdev_irq irq_op; 574 struct physdev_irq irq_op;
@@ -596,6 +600,7 @@ int xen_allocate_pirq(unsigned gsi, char *name)
596 } 600 }
597 601
598 irq_info[irq] = mk_pirq_info(0, gsi, irq_op.vector); 602 irq_info[irq] = mk_pirq_info(0, gsi, irq_op.vector);
603 irq_info[irq].u.pirq.flags |= shareable ? PIRQ_SHAREABLE : 0;
599 604
600out: 605out:
601 spin_unlock(&irq_mapping_update_lock); 606 spin_unlock(&irq_mapping_update_lock);
diff --git a/include/xen/events.h b/include/xen/events.h
index 2532f8bd2401..d7a4ca7d17b5 100644
--- a/include/xen/events.h
+++ b/include/xen/events.h
@@ -70,7 +70,7 @@ void xen_hvm_evtchn_do_upcall(void);
70/* Allocate an irq for a physical interrupt, given a gsi. "Legacy" 70/* Allocate an irq for a physical interrupt, given a gsi. "Legacy"
71 * GSIs are identity mapped; others are dynamically allocated as 71 * GSIs are identity mapped; others are dynamically allocated as
72 * usual. */ 72 * usual. */
73int xen_allocate_pirq(unsigned gsi, char *name); 73int xen_allocate_pirq(unsigned gsi, int shareable, char *name);
74 74
75/* Return vector allocated to pirq */ 75/* Return vector allocated to pirq */
76int xen_vector_from_irq(unsigned pirq); 76int xen_vector_from_irq(unsigned pirq);