2 * Copyright (C) 2012 ARM Ltd.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
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.
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.
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
19 #include <linux/cpu.h>
20 #include <linux/kvm.h>
21 #include <linux/kvm_host.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
25 #include <clocksource/arm_arch_timer.h>
26 #include <asm/arch_timer.h>
28 #include <kvm/arm_vgic.h>
29 #include <kvm/arm_arch_timer.h>
33 static struct timecounter
*timecounter
;
34 static struct workqueue_struct
*wqueue
;
35 static unsigned int host_vtimer_irq
;
36 static u32 host_vtimer_irq_flags
;
38 void kvm_timer_vcpu_put(struct kvm_vcpu
*vcpu
)
40 vcpu
->arch
.timer_cpu
.active_cleared_last
= false;
43 static cycle_t
kvm_phys_timer_read(void)
45 return timecounter
->cc
->read(timecounter
->cc
);
48 static bool timer_is_armed(struct arch_timer_cpu
*timer
)
53 /* timer_arm: as in "arm the timer", not as in ARM the company */
54 static void timer_arm(struct arch_timer_cpu
*timer
, u64 ns
)
57 hrtimer_start(&timer
->timer
, ktime_add_ns(ktime_get(), ns
),
61 static void timer_disarm(struct arch_timer_cpu
*timer
)
63 if (timer_is_armed(timer
)) {
64 hrtimer_cancel(&timer
->timer
);
65 cancel_work_sync(&timer
->expired
);
70 static irqreturn_t
kvm_arch_timer_handler(int irq
, void *dev_id
)
72 struct kvm_vcpu
*vcpu
= *(struct kvm_vcpu
**)dev_id
;
75 * We disable the timer in the world switch and let it be
76 * handled by kvm_timer_sync_hwstate(). Getting a timer
77 * interrupt at this point is a sure sign of some major
80 pr_warn("Unexpected interrupt %d on vcpu %p\n", irq
, vcpu
);
85 * Work function for handling the backup timer that we schedule when a vcpu is
86 * no longer running, but had a timer programmed to fire in the future.
88 static void kvm_timer_inject_irq_work(struct work_struct
*work
)
90 struct kvm_vcpu
*vcpu
;
92 vcpu
= container_of(work
, struct kvm_vcpu
, arch
.timer_cpu
.expired
);
93 vcpu
->arch
.timer_cpu
.armed
= false;
95 WARN_ON(!kvm_timer_should_fire(vcpu
));
98 * If the vcpu is blocked we want to wake it up so that it will see
99 * the timer has expired when entering the guest.
104 static u64
kvm_timer_compute_delta(struct kvm_vcpu
*vcpu
)
108 cval
= vcpu
->arch
.timer_cpu
.cntv_cval
;
109 now
= kvm_phys_timer_read() - vcpu
->kvm
->arch
.timer
.cntvoff
;
114 ns
= cyclecounter_cyc2ns(timecounter
->cc
,
124 static enum hrtimer_restart
kvm_timer_expire(struct hrtimer
*hrt
)
126 struct arch_timer_cpu
*timer
;
127 struct kvm_vcpu
*vcpu
;
130 timer
= container_of(hrt
, struct arch_timer_cpu
, timer
);
131 vcpu
= container_of(timer
, struct kvm_vcpu
, arch
.timer_cpu
);
134 * Check that the timer has really expired from the guest's
135 * PoV (NTP on the host may have forced it to expire
136 * early). If we should have slept longer, restart it.
138 ns
= kvm_timer_compute_delta(vcpu
);
140 hrtimer_forward_now(hrt
, ns_to_ktime(ns
));
141 return HRTIMER_RESTART
;
144 queue_work(wqueue
, &timer
->expired
);
145 return HRTIMER_NORESTART
;
148 static bool kvm_timer_irq_can_fire(struct kvm_vcpu
*vcpu
)
150 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
152 return !(timer
->cntv_ctl
& ARCH_TIMER_CTRL_IT_MASK
) &&
153 (timer
->cntv_ctl
& ARCH_TIMER_CTRL_ENABLE
);
156 bool kvm_timer_should_fire(struct kvm_vcpu
*vcpu
)
158 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
161 if (!kvm_timer_irq_can_fire(vcpu
))
164 cval
= timer
->cntv_cval
;
165 now
= kvm_phys_timer_read() - vcpu
->kvm
->arch
.timer
.cntvoff
;
170 static void kvm_timer_update_irq(struct kvm_vcpu
*vcpu
, bool new_level
)
173 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
175 BUG_ON(!vgic_initialized(vcpu
->kvm
));
177 timer
->active_cleared_last
= false;
178 timer
->irq
.level
= new_level
;
179 trace_kvm_timer_update_irq(vcpu
->vcpu_id
, timer
->irq
.irq
,
181 ret
= kvm_vgic_inject_mapped_irq(vcpu
->kvm
, vcpu
->vcpu_id
,
188 * Check if there was a change in the timer state (should we raise or lower
189 * the line level to the GIC).
191 static int kvm_timer_update_state(struct kvm_vcpu
*vcpu
)
193 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
196 * If userspace modified the timer registers via SET_ONE_REG before
197 * the vgic was initialized, we mustn't set the timer->irq.level value
198 * because the guest would never see the interrupt. Instead wait
199 * until we call this function from kvm_timer_flush_hwstate.
201 if (!vgic_initialized(vcpu
->kvm
) || !timer
->enabled
)
204 if (kvm_timer_should_fire(vcpu
) != timer
->irq
.level
)
205 kvm_timer_update_irq(vcpu
, !timer
->irq
.level
);
211 * Schedule the background timer before calling kvm_vcpu_block, so that this
212 * thread is removed from its waitqueue and made runnable when there's a timer
213 * interrupt to handle.
215 void kvm_timer_schedule(struct kvm_vcpu
*vcpu
)
217 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
219 BUG_ON(timer_is_armed(timer
));
222 * No need to schedule a background timer if the guest timer has
223 * already expired, because kvm_vcpu_block will return before putting
224 * the thread to sleep.
226 if (kvm_timer_should_fire(vcpu
))
230 * If the timer is not capable of raising interrupts (disabled or
231 * masked), then there's no more work for us to do.
233 if (!kvm_timer_irq_can_fire(vcpu
))
236 /* The timer has not yet expired, schedule a background timer */
237 timer_arm(timer
, kvm_timer_compute_delta(vcpu
));
240 void kvm_timer_unschedule(struct kvm_vcpu
*vcpu
)
242 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
247 * kvm_timer_flush_hwstate - prepare to move the virt timer to the cpu
248 * @vcpu: The vcpu pointer
250 * Check if the virtual timer has expired while we were running in the host,
251 * and inject an interrupt if that was the case.
253 void kvm_timer_flush_hwstate(struct kvm_vcpu
*vcpu
)
255 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
259 if (kvm_timer_update_state(vcpu
))
263 * If we enter the guest with the virtual input level to the VGIC
264 * asserted, then we have already told the VGIC what we need to, and
265 * we don't need to exit from the guest until the guest deactivates
266 * the already injected interrupt, so therefore we should set the
267 * hardware active state to prevent unnecessary exits from the guest.
269 * Also, if we enter the guest with the virtual timer interrupt active,
270 * then it must be active on the physical distributor, because we set
271 * the HW bit and the guest must be able to deactivate the virtual and
272 * physical interrupt at the same time.
274 * Conversely, if the virtual input level is deasserted and the virtual
275 * interrupt is not active, then always clear the hardware active state
276 * to ensure that hardware interrupts from the timer triggers a guest
279 phys_active
= timer
->irq
.level
||
280 kvm_vgic_map_is_active(vcpu
, timer
->irq
.irq
);
283 * We want to avoid hitting the (re)distributor as much as
284 * possible, as this is a potentially expensive MMIO access
285 * (not to mention locks in the irq layer), and a solution for
286 * this is to cache the "active" state in memory.
288 * Things to consider: we cannot cache an "active set" state,
289 * because the HW can change this behind our back (it becomes
290 * "clear" in the HW). We must then restrict the caching to
293 * The cache is invalidated on:
294 * - vcpu put, indicating that the HW cannot be trusted to be
295 * in a sane state on the next vcpu load,
296 * - any change in the interrupt state
299 * - cached value is "active clear"
300 * - value to be programmed is "active clear"
302 if (timer
->active_cleared_last
&& !phys_active
)
305 ret
= irq_set_irqchip_state(host_vtimer_irq
,
306 IRQCHIP_STATE_ACTIVE
,
310 timer
->active_cleared_last
= !phys_active
;
314 * kvm_timer_sync_hwstate - sync timer state from cpu
315 * @vcpu: The vcpu pointer
317 * Check if the virtual timer has expired while we were running in the guest,
318 * and inject an interrupt if that was the case.
320 void kvm_timer_sync_hwstate(struct kvm_vcpu
*vcpu
)
322 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
324 BUG_ON(timer_is_armed(timer
));
327 * The guest could have modified the timer registers or the timer
328 * could have expired, update the timer state.
330 kvm_timer_update_state(vcpu
);
333 int kvm_timer_vcpu_reset(struct kvm_vcpu
*vcpu
,
334 const struct kvm_irq_level
*irq
)
336 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
339 * The vcpu timer irq number cannot be determined in
340 * kvm_timer_vcpu_init() because it is called much before
341 * kvm_vcpu_set_target(). To handle this, we determine
342 * vcpu timer irq number when the vcpu is reset.
344 timer
->irq
.irq
= irq
->irq
;
347 * The bits in CNTV_CTL are architecturally reset to UNKNOWN for ARMv8
348 * and to 0 for ARMv7. We provide an implementation that always
349 * resets the timer to be disabled and unmasked and is compliant with
350 * the ARMv7 architecture.
353 kvm_timer_update_state(vcpu
);
358 void kvm_timer_vcpu_init(struct kvm_vcpu
*vcpu
)
360 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
362 INIT_WORK(&timer
->expired
, kvm_timer_inject_irq_work
);
363 hrtimer_init(&timer
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_ABS
);
364 timer
->timer
.function
= kvm_timer_expire
;
367 static void kvm_timer_init_interrupt(void *info
)
369 enable_percpu_irq(host_vtimer_irq
, host_vtimer_irq_flags
);
372 int kvm_arm_timer_set_reg(struct kvm_vcpu
*vcpu
, u64 regid
, u64 value
)
374 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
377 case KVM_REG_ARM_TIMER_CTL
:
378 timer
->cntv_ctl
= value
;
380 case KVM_REG_ARM_TIMER_CNT
:
381 vcpu
->kvm
->arch
.timer
.cntvoff
= kvm_phys_timer_read() - value
;
383 case KVM_REG_ARM_TIMER_CVAL
:
384 timer
->cntv_cval
= value
;
390 kvm_timer_update_state(vcpu
);
394 u64
kvm_arm_timer_get_reg(struct kvm_vcpu
*vcpu
, u64 regid
)
396 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
399 case KVM_REG_ARM_TIMER_CTL
:
400 return timer
->cntv_ctl
;
401 case KVM_REG_ARM_TIMER_CNT
:
402 return kvm_phys_timer_read() - vcpu
->kvm
->arch
.timer
.cntvoff
;
403 case KVM_REG_ARM_TIMER_CVAL
:
404 return timer
->cntv_cval
;
409 static int kvm_timer_starting_cpu(unsigned int cpu
)
411 kvm_timer_init_interrupt(NULL
);
415 static int kvm_timer_dying_cpu(unsigned int cpu
)
417 disable_percpu_irq(host_vtimer_irq
);
421 int kvm_timer_hyp_init(void)
423 struct arch_timer_kvm_info
*info
;
426 info
= arch_timer_get_kvm_info();
427 timecounter
= &info
->timecounter
;
429 if (info
->virtual_irq
<= 0) {
430 kvm_err("kvm_arch_timer: invalid virtual timer IRQ: %d\n",
434 host_vtimer_irq
= info
->virtual_irq
;
436 host_vtimer_irq_flags
= irq_get_trigger_type(host_vtimer_irq
);
437 if (host_vtimer_irq_flags
!= IRQF_TRIGGER_HIGH
&&
438 host_vtimer_irq_flags
!= IRQF_TRIGGER_LOW
) {
439 kvm_err("Invalid trigger for IRQ%d, assuming level low\n",
441 host_vtimer_irq_flags
= IRQF_TRIGGER_LOW
;
444 err
= request_percpu_irq(host_vtimer_irq
, kvm_arch_timer_handler
,
445 "kvm guest timer", kvm_get_running_vcpus());
447 kvm_err("kvm_arch_timer: can't request interrupt %d (%d)\n",
448 host_vtimer_irq
, err
);
452 wqueue
= create_singlethread_workqueue("kvm_arch_timer");
458 kvm_info("virtual timer IRQ%d\n", host_vtimer_irq
);
460 cpuhp_setup_state(CPUHP_AP_KVM_ARM_TIMER_STARTING
,
461 "AP_KVM_ARM_TIMER_STARTING", kvm_timer_starting_cpu
,
462 kvm_timer_dying_cpu
);
465 free_percpu_irq(host_vtimer_irq
, kvm_get_running_vcpus());
470 void kvm_timer_vcpu_terminate(struct kvm_vcpu
*vcpu
)
472 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
475 kvm_vgic_unmap_phys_irq(vcpu
, timer
->irq
.irq
);
478 int kvm_timer_enable(struct kvm_vcpu
*vcpu
)
480 struct arch_timer_cpu
*timer
= &vcpu
->arch
.timer_cpu
;
481 struct irq_desc
*desc
;
482 struct irq_data
*data
;
490 * Find the physical IRQ number corresponding to the host_vtimer_irq
492 desc
= irq_to_desc(host_vtimer_irq
);
494 kvm_err("%s: no interrupt descriptor\n", __func__
);
498 data
= irq_desc_get_irq_data(desc
);
499 while (data
->parent_data
)
500 data
= data
->parent_data
;
502 phys_irq
= data
->hwirq
;
505 * Tell the VGIC that the virtual interrupt is tied to a
506 * physical interrupt. We do that once per VCPU.
508 ret
= kvm_vgic_map_phys_irq(vcpu
, timer
->irq
.irq
, phys_irq
);
514 * There is a potential race here between VCPUs starting for the first
515 * time, which may be enabling the timer multiple times. That doesn't
516 * hurt though, because we're just setting a variable to the same
517 * variable that it already was. The important thing is that all
518 * VCPUs have the enabled variable set, before entering the guest, if
519 * the arch timers are enabled.
521 if (timecounter
&& wqueue
)
527 void kvm_timer_init(struct kvm
*kvm
)
529 kvm
->arch
.timer
.cntvoff
= kvm_phys_timer_read();