diff options
| author | Marc Zyngier <marc.zyngier@arm.com> | 2013-05-14 09:31:01 -0400 |
|---|---|---|
| committer | Gleb Natapov <gleb@redhat.com> | 2013-05-19 08:13:08 -0400 |
| commit | 7275acdfe29ba03ad2f6e150386900c4e2d43fb1 (patch) | |
| tree | 453d397f2d35e6f7f432fbd72f4b370f2606b665 /include | |
| parent | 35af577aacb2fd2a6b407953044aea1cf0546fad (diff) | |
ARM: KVM: move GIC/timer code to a common location
As KVM/arm64 is looming on the horizon, it makes sense to move some
of the common code to a single location in order to reduce duplication.
The code could live anywhere. Actually, most of KVM is already built
with a bunch of ugly ../../.. hacks in the various Makefiles, so we're
not exactly talking about style here. But maybe it is time to start
moving into a less ugly direction.
The include files must be in a "public" location, as they are accessed
from non-KVM files (arch/arm/kernel/asm-offsets.c).
For this purpose, introduce two new locations:
- virt/kvm/arm/ : x86 and ia64 already share the ioapic code in
virt/kvm, so this could be seen as a (very ugly) precedent.
- include/kvm/ : there is already an include/xen, and while the
intent is slightly different, this seems as good a location as
any
Eventually, we should probably have independant Makefiles at every
levels (just like everywhere else in the kernel), but this is just
the first step.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/kvm/arm_arch_timer.h | 85 | ||||
| -rw-r--r-- | include/kvm/arm_vgic.h | 220 |
2 files changed, 305 insertions, 0 deletions
diff --git a/include/kvm/arm_arch_timer.h b/include/kvm/arm_arch_timer.h new file mode 100644 index 000000000000..68cb9e1dfb81 --- /dev/null +++ b/include/kvm/arm_arch_timer.h | |||
| @@ -0,0 +1,85 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2012 ARM Ltd. | ||
| 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __ASM_ARM_KVM_ARCH_TIMER_H | ||
| 20 | #define __ASM_ARM_KVM_ARCH_TIMER_H | ||
| 21 | |||
| 22 | #include <linux/clocksource.h> | ||
| 23 | #include <linux/hrtimer.h> | ||
| 24 | #include <linux/workqueue.h> | ||
| 25 | |||
| 26 | struct arch_timer_kvm { | ||
| 27 | #ifdef CONFIG_KVM_ARM_TIMER | ||
| 28 | /* Is the timer enabled */ | ||
| 29 | bool enabled; | ||
| 30 | |||
| 31 | /* Virtual offset */ | ||
| 32 | cycle_t cntvoff; | ||
| 33 | #endif | ||
| 34 | }; | ||
| 35 | |||
| 36 | struct arch_timer_cpu { | ||
| 37 | #ifdef CONFIG_KVM_ARM_TIMER | ||
| 38 | /* Registers: control register, timer value */ | ||
| 39 | u32 cntv_ctl; /* Saved/restored */ | ||
| 40 | cycle_t cntv_cval; /* Saved/restored */ | ||
| 41 | |||
| 42 | /* | ||
| 43 | * Anything that is not used directly from assembly code goes | ||
| 44 | * here. | ||
| 45 | */ | ||
| 46 | |||
| 47 | /* Background timer used when the guest is not running */ | ||
| 48 | struct hrtimer timer; | ||
| 49 | |||
| 50 | /* Work queued with the above timer expires */ | ||
| 51 | struct work_struct expired; | ||
| 52 | |||
| 53 | /* Background timer active */ | ||
| 54 | bool armed; | ||
| 55 | |||
| 56 | /* Timer IRQ */ | ||
| 57 | const struct kvm_irq_level *irq; | ||
| 58 | #endif | ||
| 59 | }; | ||
| 60 | |||
| 61 | #ifdef CONFIG_KVM_ARM_TIMER | ||
| 62 | int kvm_timer_hyp_init(void); | ||
| 63 | int kvm_timer_init(struct kvm *kvm); | ||
| 64 | void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu); | ||
| 65 | void kvm_timer_flush_hwstate(struct kvm_vcpu *vcpu); | ||
| 66 | void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu); | ||
| 67 | void kvm_timer_vcpu_terminate(struct kvm_vcpu *vcpu); | ||
| 68 | #else | ||
| 69 | static inline int kvm_timer_hyp_init(void) | ||
| 70 | { | ||
| 71 | return 0; | ||
| 72 | }; | ||
| 73 | |||
| 74 | static inline int kvm_timer_init(struct kvm *kvm) | ||
| 75 | { | ||
| 76 | return 0; | ||
| 77 | } | ||
| 78 | |||
| 79 | static inline void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu) {} | ||
| 80 | static inline void kvm_timer_flush_hwstate(struct kvm_vcpu *vcpu) {} | ||
| 81 | static inline void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu) {} | ||
| 82 | static inline void kvm_timer_vcpu_terminate(struct kvm_vcpu *vcpu) {} | ||
| 83 | #endif | ||
| 84 | |||
| 85 | #endif | ||
diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h new file mode 100644 index 000000000000..343744e4809c --- /dev/null +++ b/include/kvm/arm_vgic.h | |||
| @@ -0,0 +1,220 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2012 ARM Ltd. | ||
| 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __ASM_ARM_KVM_VGIC_H | ||
| 20 | #define __ASM_ARM_KVM_VGIC_H | ||
| 21 | |||
| 22 | #include <linux/kernel.h> | ||
| 23 | #include <linux/kvm.h> | ||
| 24 | #include <linux/irqreturn.h> | ||
| 25 | #include <linux/spinlock.h> | ||
| 26 | #include <linux/types.h> | ||
| 27 | #include <linux/irqchip/arm-gic.h> | ||
| 28 | |||
| 29 | #define VGIC_NR_IRQS 128 | ||
| 30 | #define VGIC_NR_SGIS 16 | ||
| 31 | #define VGIC_NR_PPIS 16 | ||
| 32 | #define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS) | ||
| 33 | #define VGIC_NR_SHARED_IRQS (VGIC_NR_IRQS - VGIC_NR_PRIVATE_IRQS) | ||
| 34 | #define VGIC_MAX_CPUS KVM_MAX_VCPUS | ||
| 35 | #define VGIC_MAX_LRS (1 << 6) | ||
| 36 | |||
| 37 | /* Sanity checks... */ | ||
| 38 | #if (VGIC_MAX_CPUS > 8) | ||
| 39 | #error Invalid number of CPU interfaces | ||
| 40 | #endif | ||
| 41 | |||
| 42 | #if (VGIC_NR_IRQS & 31) | ||
| 43 | #error "VGIC_NR_IRQS must be a multiple of 32" | ||
| 44 | #endif | ||
| 45 | |||
| 46 | #if (VGIC_NR_IRQS > 1024) | ||
| 47 | #error "VGIC_NR_IRQS must be <= 1024" | ||
| 48 | #endif | ||
| 49 | |||
| 50 | /* | ||
| 51 | * The GIC distributor registers describing interrupts have two parts: | ||
| 52 | * - 32 per-CPU interrupts (SGI + PPI) | ||
| 53 | * - a bunch of shared interrupts (SPI) | ||
| 54 | */ | ||
| 55 | struct vgic_bitmap { | ||
| 56 | union { | ||
| 57 | u32 reg[VGIC_NR_PRIVATE_IRQS / 32]; | ||
| 58 | DECLARE_BITMAP(reg_ul, VGIC_NR_PRIVATE_IRQS); | ||
| 59 | } percpu[VGIC_MAX_CPUS]; | ||
| 60 | union { | ||
| 61 | u32 reg[VGIC_NR_SHARED_IRQS / 32]; | ||
| 62 | DECLARE_BITMAP(reg_ul, VGIC_NR_SHARED_IRQS); | ||
| 63 | } shared; | ||
| 64 | }; | ||
| 65 | |||
| 66 | struct vgic_bytemap { | ||
| 67 | u32 percpu[VGIC_MAX_CPUS][VGIC_NR_PRIVATE_IRQS / 4]; | ||
| 68 | u32 shared[VGIC_NR_SHARED_IRQS / 4]; | ||
| 69 | }; | ||
| 70 | |||
| 71 | struct vgic_dist { | ||
| 72 | #ifdef CONFIG_KVM_ARM_VGIC | ||
| 73 | spinlock_t lock; | ||
| 74 | bool ready; | ||
| 75 | |||
| 76 | /* Virtual control interface mapping */ | ||
| 77 | void __iomem *vctrl_base; | ||
| 78 | |||
| 79 | /* Distributor and vcpu interface mapping in the guest */ | ||
| 80 | phys_addr_t vgic_dist_base; | ||
| 81 | phys_addr_t vgic_cpu_base; | ||
| 82 | |||
| 83 | /* Distributor enabled */ | ||
| 84 | u32 enabled; | ||
| 85 | |||
| 86 | /* Interrupt enabled (one bit per IRQ) */ | ||
| 87 | struct vgic_bitmap irq_enabled; | ||
| 88 | |||
| 89 | /* Interrupt 'pin' level */ | ||
| 90 | struct vgic_bitmap irq_state; | ||
| 91 | |||
| 92 | /* Level-triggered interrupt in progress */ | ||
| 93 | struct vgic_bitmap irq_active; | ||
| 94 | |||
| 95 | /* Interrupt priority. Not used yet. */ | ||
| 96 | struct vgic_bytemap irq_priority; | ||
| 97 | |||
| 98 | /* Level/edge triggered */ | ||
| 99 | struct vgic_bitmap irq_cfg; | ||
| 100 | |||
| 101 | /* Source CPU per SGI and target CPU */ | ||
| 102 | u8 irq_sgi_sources[VGIC_MAX_CPUS][VGIC_NR_SGIS]; | ||
| 103 | |||
| 104 | /* Target CPU for each IRQ */ | ||
| 105 | u8 irq_spi_cpu[VGIC_NR_SHARED_IRQS]; | ||
| 106 | struct vgic_bitmap irq_spi_target[VGIC_MAX_CPUS]; | ||
| 107 | |||
| 108 | /* Bitmap indicating which CPU has something pending */ | ||
