search for: ienable

Displaying 5 results from an estimated 5 matches for "ienable".

Did you mean: enable
2013 Oct 08
3
Re: [PATCH v4 1/9] xen/arm: Implement hvm save and restore
...> + >> +static void vgic_irq_rank_save(struct vgic_rank *ext, >> + struct vgic_irq_rank *rank) >> +{ >> + spin_lock(&rank->lock); >> + /* Some of VGIC registers are not used yet, it is for a future usage */ >> + /* IENABLE, IACTIVE, IPEND, PENDSGI registers */ >> + ext->ienable = rank->ienable; >> + ext->iactive = rank->iactive; >> + ext->ipend = rank->ipend; >> + ext->pendsgi = rank->pendsgi; >> + /* ICFG */ >> + ext->icfg[0] = rank-&g...
2013 May 06
2
[PATCH v2] xen/gic: EOI irqs on the right pcpu
...irq_to_desc(irq); - else + cpumask_clear(&n->eoimask); + /* Assume we received the IRQ on the current pcpu */ + cpumask_set_cpu(smp_processor_id(), &n->eoimask); + } else { n->desc = NULL; + } /* the irq is enabled */ if ( rank->ienable & (1 << (irq % 32)) ) diff --git a/xen/include/asm-arm/domain.h b/xen/include/asm-arm/domain.h index cca7416..5561531 100644 --- a/xen/include/asm-arm/domain.h +++ b/xen/include/asm-arm/domain.h @@ -3,6 +3,7 @@ #include <xen/config.h> #include <xen/cache.h> +#include <x...
2013 Mar 21
27
[PATCH 0/4] xen/arm: guest SMP support
Hi all, this small patch series implement guest SMP support for ARM, using the ARM PSCI interface for secondary cpu bringup. Stefano Stabellini (4): xen/arm: basic PSCI support, implement cpu_on xen/arm: support for guest SGI xen/arm: support vcpu_op hypercalls xen: move VCPUOP_register_vcpu_info to common code xen/arch/arm/domain.c | 66 ++++++++++++++++++++++++
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone, this is the fourth version of the patch series that introduces ARMv7 with virtualization extensions support in Xen. The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile Express simulator. See the following announce email for more informations about what we are trying to achieve, as well as the original git history: See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone, this is the very first version of the patch series that introduces ARMv7 with virtualization extensions support in Xen. The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile Express simulator. See the following announce email for more informations about what we are trying to achieve, as well as the original git history: See