[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH-4.5 v3 0/12] remove maintenance interrupts
Hi all, this patch series removes any needs for maintenance interrupts for both hardware and software interrupts in Xen. It achieves the goal by using the GICH_LR_HW bit for hardware interrupts and by checking the status of the GICH_LR registers on return to guest, clearing the registers that are invalid and handling the lifecycle of the corresponding interrupts in Xen data structures. It also improves priority handling, keeping the highest priority outstanding interrupts in the GICH_LR registers. Changes in v3: - add "no need to set HCR_VI when using the vgic to inject irqs"; - add "s/gic_set_guest_irq/gic_raise_guest_irq"; - add "xen/arm: call gic_clear_lrs on entry to the hypervisor"; - do not use the PENDING and ACTIVE state for HW interrupts; - unify the inflight and non-inflight code paths in vgic_vcpu_inject_irq; - remove "avoid taking unconditionally the vgic.lock in gic_clear_lrs"; - add "xen/arm: gic_events_need_delivery and irq priorities"; - use spin_lock_irqsave and spin_unlock_irqrestore in gic_dump_info. Changes in v2: - do not assume physical IRQ == virtual IRQ; - refactor gic_set_lr; - simplify gic_clear_lrs; - disable/enable the GICH_HCR_UIE bit in GICH_HCR; - only enable GICH_HCR_UIE if this_cpu(lr_mask) == ((1 << nr_lrs) - 1); - add a patch to keep track of the LR number in pending_irq; - add a patch to set GICH_LR_PENDING to inject a second irq while the first one is still active; - add a patch to simplify and reduce the usage of gic.lock; - add a patch to reduce the usage of vgic.lock; - add a patch to use GICH_ELSR[01] to avoid reading all the GICH_LRs in gic_clear_lrs; - add a debug patch to print more info in gic_dump_info. Stefano Stabellini (12): xen/arm: no need to set HCR_VI when using the vgic to inject irqs xen/arm: remove unused virtual parameter from vgic_vcpu_inject_irq xen/arm: support HW interrupts in gic_set_lr xen/arm: do not request maintenance_interrupts xen/arm: set GICH_HCR_UIE if all the LRs are in use xen/arm: keep track of the GICH_LR used for the irq in struct pending_irq xen/arm: s/gic_set_guest_irq/gic_raise_guest_irq xen/arm: call gic_clear_lrs on entry to the hypervisor xen/arm: second irq injection while the first irq is still inflight xen/arm: don't protect GICH and lr_queue accesses with gic.lock xen/arm: gic_events_need_delivery and irq priorities xen/arm: print more info in gic_dump_info, keep gic_lr sync'ed xen/arch/arm/domain.c | 2 +- xen/arch/arm/gic.c | 281 ++++++++++++++++++++++++------------------ xen/arch/arm/irq.c | 2 +- xen/arch/arm/time.c | 2 +- xen/arch/arm/traps.c | 10 ++ xen/arch/arm/vgic.c | 50 ++++---- xen/arch/arm/vtimer.c | 4 +- xen/include/asm-arm/domain.h | 6 +- xen/include/asm-arm/gic.h | 10 +- 9 files changed, 214 insertions(+), 153 deletions(-) git://xenbits.xen.org/people/sstabellini/xen-unstable.git no_maintenance_interrupts-v3 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |