diff options
| -rw-r--r-- | arch/arm/include/asm/xen/events.h | 18 | ||||
| -rw-r--r-- | arch/arm/xen/enlighten.c | 33 | ||||
| -rw-r--r-- | arch/x86/xen/enlighten.c | 1 | ||||
| -rw-r--r-- | arch/x86/xen/irq.c | 1 | ||||
| -rw-r--r-- | arch/x86/xen/xen-ops.h | 1 | ||||
| -rw-r--r-- | drivers/xen/events.c | 17 | ||||
| -rw-r--r-- | include/xen/events.h | 2 |
7 files changed, 69 insertions, 4 deletions
diff --git a/arch/arm/include/asm/xen/events.h b/arch/arm/include/asm/xen/events.h new file mode 100644 index 000000000000..94b4e9020b02 --- /dev/null +++ b/arch/arm/include/asm/xen/events.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #ifndef _ASM_ARM_XEN_EVENTS_H | ||
| 2 | #define _ASM_ARM_XEN_EVENTS_H | ||
| 3 | |||
| 4 | #include <asm/ptrace.h> | ||
| 5 | |||
| 6 | enum ipi_vector { | ||
| 7 | XEN_PLACEHOLDER_VECTOR, | ||
| 8 | |||
| 9 | /* Xen IPIs go here */ | ||
| 10 | XEN_NR_IPIS, | ||
| 11 | }; | ||
| 12 | |||
| 13 | static inline int xen_irqs_disabled(struct pt_regs *regs) | ||
| 14 | { | ||
| 15 | return raw_irqs_disabled_flags(regs->ARM_cpsr); | ||
| 16 | } | ||
| 17 | |||
| 18 | #endif /* _ASM_ARM_XEN_EVENTS_H */ | ||
diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index 036a4d84e861..bad67ad43c2d 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | #include <xen/xen.h> | 1 | #include <xen/xen.h> |
| 2 | #include <xen/events.h> | ||
| 2 | #include <xen/grant_table.h> | 3 | #include <xen/grant_table.h> |
| 3 | #include <xen/hvm.h> | 4 | #include <xen/hvm.h> |
| 4 | #include <xen/interface/xen.h> | 5 | #include <xen/interface/xen.h> |
| @@ -9,6 +10,8 @@ | |||
| 9 | #include <xen/xenbus.h> | 10 | #include <xen/xenbus.h> |
| 10 | #include <asm/xen/hypervisor.h> | 11 | #include <asm/xen/hypervisor.h> |
| 11 | #include <asm/xen/hypercall.h> | 12 | #include <asm/xen/hypercall.h> |
| 13 | #include <linux/interrupt.h> | ||
| 14 | #include <linux/irqreturn.h> | ||
| 12 | #include <linux/module.h> | 15 | #include <linux/module.h> |
| 13 | #include <linux/of.h> | 16 | #include <linux/of.h> |
| 14 | #include <linux/of_irq.h> | 17 | #include <linux/of_irq.h> |
| @@ -33,6 +36,8 @@ EXPORT_SYMBOL_GPL(xen_have_vector_callback); | |||
| 33 | int xen_platform_pci_unplug = XEN_UNPLUG_ALL; | 36 | int xen_platform_pci_unplug = XEN_UNPLUG_ALL; |
| 34 | EXPORT_SYMBOL_GPL(xen_platform_pci_unplug); | 37 | EXPORT_SYMBOL_GPL(xen_platform_pci_unplug); |
| 35 | 38 | ||
| 39 | static __read_mostly int xen_events_irq = -1; | ||
| 40 | |||
| 36 | int xen_remap_domain_mfn_range(struct vm_area_struct *vma, | 41 | int xen_remap_domain_mfn_range(struct vm_area_struct *vma, |
| 37 | unsigned long addr, | 42 | unsigned long addr, |
| 38 | unsigned long mfn, int nr, | 43 | unsigned long mfn, int nr, |
| @@ -74,6 +79,9 @@ static int __init xen_guest_init(void) | |||
| 74 | if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res)) | 79 | if (of_address_to_resource(node, GRANT_TABLE_PHYSADDR, &res)) |
| 75 | return 0; | 80 | return 0; |
| 76 | xen_hvm_resume_frames = res.start >> PAGE_SHIFT; | 81 | xen_hvm_resume_frames = res.start >> PAGE_SHIFT; |
| 82 | xen_events_irq = irq_of_parse_and_map(node, 0); | ||
| 83 | pr_info("Xen %s support found, events_irq=%d gnttab_frame_pfn=%lx\n", | ||
| 84 | version, xen_events_irq, xen_hvm_resume_frames); | ||
| 77 | xen_domain_type = XEN_HVM_DOMAIN; | 85 | xen_domain_type = XEN_HVM_DOMAIN; |
| 78 | 86 | ||
| 79 | xen_setup_features(); | 87 | xen_setup_features(); |
| @@ -115,3 +123,28 @@ static int __init xen_guest_init(void) | |||
| 115 | return 0; | 123 | return 0; |
| 116 | } | 124 | } |
| 117 | core_initcall(xen_guest_init); | 125 | core_initcall(xen_guest_init); |
| 126 | |||
| 127 | static irqreturn_t xen_arm_callback(int irq, void *arg) | ||
| 128 | { | ||
| 129 | xen_hvm_evtchn_do_upcall(); | ||
| 130 | return IRQ_HANDLED; | ||
| 131 | } | ||
| 132 | |||
| 133 | static int __init xen_init_events(void) | ||
| 134 | { | ||
| 135 | if (!xen_domain() || xen_events_irq < 0) | ||
| 136 | return -ENODEV; | ||
| 137 | |||
| 138 | xen_init_IRQ(); | ||
| 139 | |||
| 140 | if (request_percpu_irq(xen_events_irq, xen_arm_callback, | ||
| 141 | "events", xen_vcpu)) { | ||
| 142 | pr_err("Error requesting IRQ %d\n", xen_events_irq); | ||
| 143 | return -EINVAL; | ||
| 144 | } | ||
| 145 | |||
| 146 | enable_percpu_irq(xen_events_irq, 0); | ||
| 147 | |||
| 148 | return 0; | ||
| 149 | } | ||
| 150 | postcore_initcall(xen_init_events); | ||
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 47b3acdc2ac5..689a4c9da866 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/memblock.h> | 33 | #include <linux/memblock.h> |
| 34 | 34 | ||
| 35 | #include <xen/xen.h> | 35 | #include <xen/xen.h> |
| 36 | #include <xen/events.h> | ||
| 36 | #include <xen/interface/xen.h> | 37 | #include <xen/interface/xen.h> |
| 37 | #include <xen/interface/version.h> | 38 | #include <xen/interface/version.h> |
| 38 | #include <xen/interface/physdev.h> | 39 | #include <xen/interface/physdev.h> |
diff --git a/arch/x86/xen/irq.c b/arch/x86/xen/irq.c index 157337657971..01a4dc015ae1 100644 --- a/arch/x86/xen/irq.c +++ b/arch/x86/xen/irq.c | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #include <xen/interface/xen.h> | 5 | #include <xen/interface/xen.h> |
| 6 | #include <xen/interface/sched.h> | 6 | #include <xen/interface/sched.h> |
| 7 | #include <xen/interface/vcpu.h> | 7 | #include <xen/interface/vcpu.h> |
| 8 | #include <xen/events.h> | ||
| 8 | 9 | ||
| 9 | #include <asm/xen/hypercall.h> | 10 | #include <asm/xen/hypercall.h> |
| 10 | #include <asm/xen/hypervisor.h> | 11 | #include <asm/xen/hypervisor.h> |
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h index bb5a8105ea86..a95b41744ad0 100644 --- a/arch/x86/xen/xen-ops.h +++ b/arch/x86/xen/xen-ops.h | |||
| @@ -35,7 +35,6 @@ void xen_set_pat(u64); | |||
| 35 | 35 | ||
| 36 | char * __init xen_memory_setup(void); | 36 | char * __init xen_memory_setup(void); |
| 37 | void __init xen_arch_setup(void); | 37 | void __init xen_arch_setup(void); |
| 38 | void __init xen_init_IRQ(void); | ||
| 39 | void xen_enable_sysenter(void); | 38 | void xen_enable_sysenter(void); |
| 40 | void xen_enable_syscall(void); | 39 | void xen_enable_syscall(void); |
| 41 | void xen_vcpu_restore(void); | 40 | void xen_vcpu_restore(void); |
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index c60d1629c916..8672211555bb 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c | |||
| @@ -31,14 +31,16 @@ | |||
| 31 | #include <linux/irqnr.h> | 31 | #include <linux/irqnr.h> |
| 32 | #include <linux/pci.h> | 32 | #include <linux/pci.h> |
| 33 | 33 | ||
| 34 | #ifdef CONFIG_X86 | ||
| 34 | #include <asm/desc.h> | 35 | #include <asm/desc.h> |
| 35 | #include <asm/ptrace.h> | 36 | #include <asm/ptrace.h> |
| 36 | #include <asm/irq.h> | 37 | #include <asm/irq.h> |
| 37 | #include <asm/idle.h> | 38 | #include <asm/idle.h> |
| 38 | #include <asm/io_apic.h> | 39 | #include <asm/io_apic.h> |
| 39 | #include <asm/sync_bitops.h> | ||
| 40 | #include <asm/xen/page.h> | 40 | #include <asm/xen/page.h> |
| 41 | #include <asm/xen/pci.h> | 41 | #include <asm/xen/pci.h> |
| 42 | #endif | ||
| 43 | #include <asm/sync_bitops.h> | ||
| 42 | #include <asm/xen/hypercall.h> | 44 | #include <asm/xen/hypercall.h> |
| 43 | #include <asm/xen/hypervisor.h> | 45 | #include <asm/xen/hypervisor.h> |
| 44 | 46 | ||
| @@ -50,6 +52,9 @@ | |||
| 50 | #include <xen/interface/event_channel.h> | 52 | #include <xen/interface/event_channel.h> |
| 51 | #include <xen/interface/hvm/hvm_op.h> | 53 | #include <xen/interface/hvm/hvm_op.h> |
| 52 | #include <xen/interface/hvm/params.h> | 54 | #include <xen/interface/hvm/params.h> |
| 55 | #include <xen/interface/physdev.h> | ||
| 56 | #include <xen/interface/sched.h> | ||
| 57 | #include <asm/hw_irq.h> | ||
| 53 | 58 | ||
| 54 | /* | 59 | /* |
| 55 | * This lock protects updates to the following mapping and reference-count | 60 | * This lock protects updates to the following mapping and reference-count |
| @@ -1386,7 +1391,9 @@ void xen_evtchn_do_upcall(struct pt_regs *regs) | |||
| 1386 | { | 1391 | { |
| 1387 | struct pt_regs *old_regs = set_irq_regs(regs); | 1392 | struct pt_regs *old_regs = set_irq_regs(regs); |
| 1388 | 1393 | ||
| 1394 | #ifdef CONFIG_X86 | ||
| 1389 | exit_idle(); | 1395 | exit_idle(); |
| 1396 | #endif | ||
| 1390 | irq_enter(); | 1397 | irq_enter(); |
| 1391 | 1398 | ||
| 1392 | __xen_evtchn_do_upcall(); | 1399 | __xen_evtchn_do_upcall(); |
| @@ -1795,9 +1802,9 @@ void xen_callback_vector(void) | |||
| 1795 | void xen_callback_vector(void) {} | 1802 | void xen_callback_vector(void) {} |
| 1796 | #endif | 1803 | #endif |
| 1797 | 1804 | ||
| 1798 | void __init xen_init_IRQ(void) | 1805 | void xen_init_IRQ(void) |
| 1799 | { | 1806 | { |
| 1800 | int i, rc; | 1807 | int i; |
| 1801 | 1808 | ||
| 1802 | evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq), | 1809 | evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq), |
| 1803 | GFP_KERNEL); | 1810 | GFP_KERNEL); |
| @@ -1813,6 +1820,7 @@ void __init xen_init_IRQ(void) | |||
| 1813 | 1820 | ||
| 1814 | pirq_needs_eoi = pirq_needs_eoi_flag; | 1821 | pirq_needs_eoi = pirq_needs_eoi_flag; |
| 1815 | 1822 | ||
| 1823 | #ifdef CONFIG_X86 | ||
| 1816 | if (xen_hvm_domain()) { | 1824 | if (xen_hvm_domain()) { |
| 1817 | xen_callback_vector(); | 1825 | xen_callback_vector(); |
| 1818 | native_init_IRQ(); | 1826 | native_init_IRQ(); |
| @@ -1820,6 +1828,7 @@ void __init xen_init_IRQ(void) | |||
| 1820 | * __acpi_register_gsi can point at the right function */ | 1828 | * __acpi_register_gsi can point at the right function */ |
| 1821 | pci_xen_hvm_init(); | 1829 | pci_xen_hvm_init(); |
| 1822 | } else { | 1830 | } else { |
| 1831 | int rc; | ||
| 1823 | struct physdev_pirq_eoi_gmfn eoi_gmfn; | 1832 | struct physdev_pirq_eoi_gmfn eoi_gmfn; |
| 1824 | 1833 | ||
| 1825 | irq_ctx_init(smp_processor_id()); | 1834 | irq_ctx_init(smp_processor_id()); |
| @@ -1835,4 +1844,6 @@ void __init xen_init_IRQ(void) | |||
| 1835 | } else | 1844 | } else |
| 1836 | pirq_needs_eoi = pirq_check_eoi_map; | 1845 | pirq_needs_eoi = pirq_check_eoi_map; |
| 1837 | } | 1846 | } |
| 1847 | #endif | ||
| 1838 | } | 1848 | } |
| 1849 | EXPORT_SYMBOL_GPL(xen_init_IRQ); | ||
diff --git a/include/xen/events.h b/include/xen/events.h index 04399b28e821..c6bfe01acf6b 100644 --- a/include/xen/events.h +++ b/include/xen/events.h | |||
| @@ -109,4 +109,6 @@ int xen_irq_from_gsi(unsigned gsi); | |||
| 109 | /* Determine whether to ignore this IRQ if it is passed to a guest. */ | 109 | /* Determine whether to ignore this IRQ if it is passed to a guest. */ |
| 110 | int xen_test_irq_shared(int irq); | 110 | int xen_test_irq_shared(int irq); |
| 111 | 111 | ||
| 112 | /* initialize Xen IRQ subsystem */ | ||
| 113 | void xen_init_IRQ(void); | ||
| 112 | #endif /* _XEN_EVENTS_H */ | 114 | #endif /* _XEN_EVENTS_H */ |
