blob: 5261f98ae68687204d84c12de526beeced273c37 [file] [log] [blame]
Marc Zyngier53e72402013-01-23 13:21:58 -05001/*
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#include <linux/cpu.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050020#include <linux/kvm.h>
21#include <linux/kvm_host.h>
22#include <linux/interrupt.h>
Christoffer Dallb452cb52016-06-04 15:41:00 +010023#include <linux/irq.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050024
Mark Rutland372b7c12013-03-27 15:56:11 +000025#include <clocksource/arm_arch_timer.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050026#include <asm/arch_timer.h>
Jintack Lim488f94d2016-12-01 14:32:05 -050027#include <asm/kvm_hyp.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050028
Marc Zyngier7275acd2013-05-14 14:31:01 +010029#include <kvm/arm_vgic.h>
30#include <kvm/arm_arch_timer.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050031
Christoffer Dalle21f0912015-08-30 13:57:20 +020032#include "trace.h"
33
Marc Zyngier53e72402013-01-23 13:21:58 -050034static struct timecounter *timecounter;
Anup Patel5ae7f872013-04-30 12:02:15 +053035static unsigned int host_vtimer_irq;
Marc Zyngiercabdc5c2016-08-16 15:03:02 +010036static u32 host_vtimer_irq_flags;
Marc Zyngier53e72402013-01-23 13:21:58 -050037
Marc Zyngier9b4a3002016-01-29 19:04:48 +000038void kvm_timer_vcpu_put(struct kvm_vcpu *vcpu)
39{
Jintack Limfbb4aee2017-02-03 10:19:59 -050040 vcpu_vtimer(vcpu)->active_cleared_last = false;
Marc Zyngier9b4a3002016-01-29 19:04:48 +000041}
42
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010043static u64 kvm_phys_timer_read(void)
Marc Zyngier53e72402013-01-23 13:21:58 -050044{
45 return timecounter->cc->read(timecounter->cc);
46}
47
48static bool timer_is_armed(struct arch_timer_cpu *timer)
49{
50 return timer->armed;
51}
52
53/* timer_arm: as in "arm the timer", not as in ARM the company */
54static void timer_arm(struct arch_timer_cpu *timer, u64 ns)
55{
56 timer->armed = true;
57 hrtimer_start(&timer->timer, ktime_add_ns(ktime_get(), ns),
58 HRTIMER_MODE_ABS);
59}
60
61static void timer_disarm(struct arch_timer_cpu *timer)
62{
63 if (timer_is_armed(timer)) {
64 hrtimer_cancel(&timer->timer);
65 cancel_work_sync(&timer->expired);
66 timer->armed = false;
67 }
68}
69
Marc Zyngier53e72402013-01-23 13:21:58 -050070static irqreturn_t kvm_arch_timer_handler(int irq, void *dev_id)
71{
72 struct kvm_vcpu *vcpu = *(struct kvm_vcpu **)dev_id;
73
74 /*
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
78 * breakage.
79 */
80 pr_warn("Unexpected interrupt %d on vcpu %p\n", irq, vcpu);
81 return IRQ_HANDLED;
82}
83
Christoffer Dall1a748472015-03-13 17:02:55 +000084/*
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.
87 */
Marc Zyngier53e72402013-01-23 13:21:58 -050088static void kvm_timer_inject_irq_work(struct work_struct *work)
89{
90 struct kvm_vcpu *vcpu;
91
92 vcpu = container_of(work, struct kvm_vcpu, arch.timer_cpu.expired);
Marc Zyngier1c5631c2016-04-06 09:37:22 +010093
Christoffer Dall1a748472015-03-13 17:02:55 +000094 /*
95 * If the vcpu is blocked we want to wake it up so that it will see
96 * the timer has expired when entering the guest.
97 */
98 kvm_vcpu_kick(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -050099}
100
Jintack Lim9171fa22017-02-03 10:20:01 -0500101static u64 kvm_timer_compute_delta(struct arch_timer_context *timer_ctx)
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100102{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100103 u64 cval, now;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100104
Jintack Lim9171fa22017-02-03 10:20:01 -0500105 cval = timer_ctx->cnt_cval;
106 now = kvm_phys_timer_read() - timer_ctx->cntvoff;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100107
108 if (now < cval) {
109 u64 ns;
110
111 ns = cyclecounter_cyc2ns(timecounter->cc,
112 cval - now,
113 timecounter->mask,
114 &timecounter->frac);
115 return ns;
116 }
117
118 return 0;
119}
120
Marc Zyngier53e72402013-01-23 13:21:58 -0500121static enum hrtimer_restart kvm_timer_expire(struct hrtimer *hrt)
122{
123 struct arch_timer_cpu *timer;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100124 struct kvm_vcpu *vcpu;
125 u64 ns;
126
Marc Zyngier53e72402013-01-23 13:21:58 -0500127 timer = container_of(hrt, struct arch_timer_cpu, timer);
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100128 vcpu = container_of(timer, struct kvm_vcpu, arch.timer_cpu);
129
130 /*
131 * Check that the timer has really expired from the guest's
132 * PoV (NTP on the host may have forced it to expire
133 * early). If we should have slept longer, restart it.
134 */
Jintack Lim9171fa22017-02-03 10:20:01 -0500135 ns = kvm_timer_compute_delta(vcpu_vtimer(vcpu));
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100136 if (unlikely(ns)) {
137 hrtimer_forward_now(hrt, ns_to_ktime(ns));
138 return HRTIMER_RESTART;
139 }
140
Bhaktipriya Shridhar3706fea2016-08-30 23:29:51 +0530141 schedule_work(&timer->expired);
Marc Zyngier53e72402013-01-23 13:21:58 -0500142 return HRTIMER_NORESTART;
143}
144
Jintack Lim9171fa22017-02-03 10:20:01 -0500145static bool kvm_timer_irq_can_fire(struct arch_timer_context *timer_ctx)
Christoffer Dalld35268d2015-08-25 19:48:21 +0200146{
Jintack Lim9171fa22017-02-03 10:20:01 -0500147 return !(timer_ctx->cnt_ctl & ARCH_TIMER_CTRL_IT_MASK) &&
148 (timer_ctx->cnt_ctl & ARCH_TIMER_CTRL_ENABLE);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200149}
150
Jintack Lim9171fa22017-02-03 10:20:01 -0500151bool kvm_timer_should_fire(struct arch_timer_context *timer_ctx)
Christoffer Dall1a748472015-03-13 17:02:55 +0000152{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100153 u64 cval, now;
Christoffer Dall1a748472015-03-13 17:02:55 +0000154
Jintack Lim9171fa22017-02-03 10:20:01 -0500155 if (!kvm_timer_irq_can_fire(timer_ctx))
Christoffer Dall1a748472015-03-13 17:02:55 +0000156 return false;
157
Jintack Lim9171fa22017-02-03 10:20:01 -0500158 cval = timer_ctx->cnt_cval;
159 now = kvm_phys_timer_read() - timer_ctx->cntvoff;
Christoffer Dall1a748472015-03-13 17:02:55 +0000160
161 return cval <= now;
162}
163
Jintack Lim9171fa22017-02-03 10:20:01 -0500164static void kvm_timer_update_irq(struct kvm_vcpu *vcpu, bool new_level,
165 struct arch_timer_context *timer_ctx)
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200166{
167 int ret;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200168
169 BUG_ON(!vgic_initialized(vcpu->kvm));
170
Jintack Lim9171fa22017-02-03 10:20:01 -0500171 timer_ctx->active_cleared_last = false;
172 timer_ctx->irq.level = new_level;
173 trace_kvm_timer_update_irq(vcpu->vcpu_id, timer_ctx->irq.irq,
174 timer_ctx->irq.level);
Christoffer Dall11710de2017-02-01 11:03:45 +0100175
Jintack Lim9171fa22017-02-03 10:20:01 -0500176 ret = kvm_vgic_inject_irq(vcpu->kvm, vcpu->vcpu_id, timer_ctx->irq.irq,
177 timer_ctx->irq.level);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200178 WARN_ON(ret);
179}
180
181/*
182 * Check if there was a change in the timer state (should we raise or lower
183 * the line level to the GIC).
184 */
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000185static int kvm_timer_update_state(struct kvm_vcpu *vcpu)
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200186{
187 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
Jintack Limfbb4aee2017-02-03 10:19:59 -0500188 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200189
190 /*
191 * If userspace modified the timer registers via SET_ONE_REG before
Jintack Limfbb4aee2017-02-03 10:19:59 -0500192 * the vgic was initialized, we mustn't set the vtimer->irq.level value
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200193 * because the guest would never see the interrupt. Instead wait
194 * until we call this function from kvm_timer_flush_hwstate.
195 */
Christoffer Dall41a54482016-05-18 16:26:00 +0100196 if (!vgic_initialized(vcpu->kvm) || !timer->enabled)
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000197 return -ENODEV;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200198
Jintack Lim9171fa22017-02-03 10:20:01 -0500199 if (kvm_timer_should_fire(vtimer) != vtimer->irq.level)
200 kvm_timer_update_irq(vcpu, !vtimer->irq.level, vtimer);
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000201
202 return 0;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200203}
204
Christoffer Dalld35268d2015-08-25 19:48:21 +0200205/*
206 * Schedule the background timer before calling kvm_vcpu_block, so that this
207 * thread is removed from its waitqueue and made runnable when there's a timer
208 * interrupt to handle.
209 */
210void kvm_timer_schedule(struct kvm_vcpu *vcpu)
211{
212 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
Jintack Lim9171fa22017-02-03 10:20:01 -0500213 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200214
215 BUG_ON(timer_is_armed(timer));
216
217 /*
218 * No need to schedule a background timer if the guest timer has
219 * already expired, because kvm_vcpu_block will return before putting
220 * the thread to sleep.
221 */
Jintack Lim9171fa22017-02-03 10:20:01 -0500222 if (kvm_timer_should_fire(vtimer))
Christoffer Dalld35268d2015-08-25 19:48:21 +0200223 return;
224
225 /*
226 * If the timer is not capable of raising interrupts (disabled or
227 * masked), then there's no more work for us to do.
228 */
Jintack Lim9171fa22017-02-03 10:20:01 -0500229 if (!kvm_timer_irq_can_fire(vtimer))
Christoffer Dalld35268d2015-08-25 19:48:21 +0200230 return;
231
232 /* The timer has not yet expired, schedule a background timer */
Jintack Lim9171fa22017-02-03 10:20:01 -0500233 timer_arm(timer, kvm_timer_compute_delta(vtimer));
Christoffer Dalld35268d2015-08-25 19:48:21 +0200234}
235
236void kvm_timer_unschedule(struct kvm_vcpu *vcpu)
237{
238 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
239 timer_disarm(timer);
240}
241
Marc Zyngier53e72402013-01-23 13:21:58 -0500242/**
243 * kvm_timer_flush_hwstate - prepare to move the virt timer to the cpu
244 * @vcpu: The vcpu pointer
245 *
Christoffer Dalld35268d2015-08-25 19:48:21 +0200246 * Check if the virtual timer has expired while we were running in the host,
247 * and inject an interrupt if that was the case.
Marc Zyngier53e72402013-01-23 13:21:58 -0500248 */
249void kvm_timer_flush_hwstate(struct kvm_vcpu *vcpu)
250{
Jintack Limfbb4aee2017-02-03 10:19:59 -0500251 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Christoffer Dallcff92112015-10-16 12:41:21 +0200252 bool phys_active;
253 int ret;
Marc Zyngier53e72402013-01-23 13:21:58 -0500254
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000255 if (kvm_timer_update_state(vcpu))
256 return;
Christoffer Dallcff92112015-10-16 12:41:21 +0200257
258 /*
Christoffer Dall0e3dfda2015-11-24 16:23:05 +0100259 * If we enter the guest with the virtual input level to the VGIC
260 * asserted, then we have already told the VGIC what we need to, and
261 * we don't need to exit from the guest until the guest deactivates
262 * the already injected interrupt, so therefore we should set the
263 * hardware active state to prevent unnecessary exits from the guest.
264 *
265 * Also, if we enter the guest with the virtual timer interrupt active,
266 * then it must be active on the physical distributor, because we set
267 * the HW bit and the guest must be able to deactivate the virtual and
268 * physical interrupt at the same time.
269 *
270 * Conversely, if the virtual input level is deasserted and the virtual
271 * interrupt is not active, then always clear the hardware active state
272 * to ensure that hardware interrupts from the timer triggers a guest
273 * exit.
274 */
Jintack Limfbb4aee2017-02-03 10:19:59 -0500275 phys_active = vtimer->irq.level ||
276 kvm_vgic_map_is_active(vcpu, vtimer->irq.irq);
Christoffer Dallcff92112015-10-16 12:41:21 +0200277
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000278 /*
279 * We want to avoid hitting the (re)distributor as much as
280 * possible, as this is a potentially expensive MMIO access
281 * (not to mention locks in the irq layer), and a solution for
282 * this is to cache the "active" state in memory.
283 *
284 * Things to consider: we cannot cache an "active set" state,
285 * because the HW can change this behind our back (it becomes
286 * "clear" in the HW). We must then restrict the caching to
287 * the "clear" state.
288 *
289 * The cache is invalidated on:
290 * - vcpu put, indicating that the HW cannot be trusted to be
291 * in a sane state on the next vcpu load,
292 * - any change in the interrupt state
293 *
294 * Usage conditions:
295 * - cached value is "active clear"
296 * - value to be programmed is "active clear"
297 */
Jintack Limfbb4aee2017-02-03 10:19:59 -0500298 if (vtimer->active_cleared_last && !phys_active)
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000299 return;
300
Christoffer Dallb452cb52016-06-04 15:41:00 +0100301 ret = irq_set_irqchip_state(host_vtimer_irq,
Christoffer Dallcff92112015-10-16 12:41:21 +0200302 IRQCHIP_STATE_ACTIVE,
303 phys_active);
304 WARN_ON(ret);
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000305
Jintack Limfbb4aee2017-02-03 10:19:59 -0500306 vtimer->active_cleared_last = !phys_active;
Marc Zyngier53e72402013-01-23 13:21:58 -0500307}
308
309/**
310 * kvm_timer_sync_hwstate - sync timer state from cpu
311 * @vcpu: The vcpu pointer
312 *
Christoffer Dalld35268d2015-08-25 19:48:21 +0200313 * Check if the virtual timer has expired while we were running in the guest,
314 * and inject an interrupt if that was the case.
Marc Zyngier53e72402013-01-23 13:21:58 -0500315 */
316void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu)
317{
318 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
Marc Zyngier53e72402013-01-23 13:21:58 -0500319
Marc Zyngier53e72402013-01-23 13:21:58 -0500320 BUG_ON(timer_is_armed(timer));
321
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200322 /*
323 * The guest could have modified the timer registers or the timer
324 * could have expired, update the timer state.
325 */
326 kvm_timer_update_state(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500327}
328
Marc Zyngierf120cd62014-06-23 13:59:13 +0100329int kvm_timer_vcpu_reset(struct kvm_vcpu *vcpu,
330 const struct kvm_irq_level *irq)
Anup Patel5ae7f872013-04-30 12:02:15 +0530331{
Jintack Limfbb4aee2017-02-03 10:19:59 -0500332 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Anup Patel5ae7f872013-04-30 12:02:15 +0530333
334 /*
335 * The vcpu timer irq number cannot be determined in
336 * kvm_timer_vcpu_init() because it is called much before
337 * kvm_vcpu_set_target(). To handle this, we determine
338 * vcpu timer irq number when the vcpu is reset.
339 */
Jintack Limfbb4aee2017-02-03 10:19:59 -0500340 vtimer->irq.irq = irq->irq;
Marc Zyngierf120cd62014-06-23 13:59:13 +0100341
342 /*
Christoffer Dall4ad9e162015-09-04 16:24:39 +0200343 * The bits in CNTV_CTL are architecturally reset to UNKNOWN for ARMv8
344 * and to 0 for ARMv7. We provide an implementation that always
345 * resets the timer to be disabled and unmasked and is compliant with
346 * the ARMv7 architecture.
347 */
Jintack Limfbb4aee2017-02-03 10:19:59 -0500348 vtimer->cnt_ctl = 0;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200349 kvm_timer_update_state(vcpu);
Christoffer Dall4ad9e162015-09-04 16:24:39 +0200350
Christoffer Dall41a54482016-05-18 16:26:00 +0100351 return 0;
Anup Patel5ae7f872013-04-30 12:02:15 +0530352}
353
Jintack Lim90de9432017-02-03 10:20:00 -0500354/* Make the updates of cntvoff for all vtimer contexts atomic */
355static void update_vtimer_cntvoff(struct kvm_vcpu *vcpu, u64 cntvoff)
356{
357 int i;
358 struct kvm *kvm = vcpu->kvm;
359 struct kvm_vcpu *tmp;
360
361 mutex_lock(&kvm->lock);
362 kvm_for_each_vcpu(i, tmp, kvm)
363 vcpu_vtimer(tmp)->cntvoff = cntvoff;
364
365 /*
366 * When called from the vcpu create path, the CPU being created is not
367 * included in the loop above, so we just set it here as well.
368 */
369 vcpu_vtimer(vcpu)->cntvoff = cntvoff;
370 mutex_unlock(&kvm->lock);
371}
372
Marc Zyngier53e72402013-01-23 13:21:58 -0500373void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu)
374{
375 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
376
Jintack Lim90de9432017-02-03 10:20:00 -0500377 /* Synchronize cntvoff across all vtimers of a VM. */
378 update_vtimer_cntvoff(vcpu, kvm_phys_timer_read());
379
Marc Zyngier53e72402013-01-23 13:21:58 -0500380 INIT_WORK(&timer->expired, kvm_timer_inject_irq_work);
381 hrtimer_init(&timer->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
382 timer->timer.function = kvm_timer_expire;
Marc Zyngier53e72402013-01-23 13:21:58 -0500383}
384
385static void kvm_timer_init_interrupt(void *info)
386{
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100387 enable_percpu_irq(host_vtimer_irq, host_vtimer_irq_flags);
Marc Zyngier53e72402013-01-23 13:21:58 -0500388}
389
Andre Przywara39735a32013-12-13 14:23:26 +0100390int kvm_arm_timer_set_reg(struct kvm_vcpu *vcpu, u64 regid, u64 value)
391{
Jintack Limfbb4aee2017-02-03 10:19:59 -0500392 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Andre Przywara39735a32013-12-13 14:23:26 +0100393
394 switch (regid) {
395 case KVM_REG_ARM_TIMER_CTL:
Jintack Limfbb4aee2017-02-03 10:19:59 -0500396 vtimer->cnt_ctl = value;
Andre Przywara39735a32013-12-13 14:23:26 +0100397 break;
398 case KVM_REG_ARM_TIMER_CNT:
Jintack Lim90de9432017-02-03 10:20:00 -0500399 update_vtimer_cntvoff(vcpu, kvm_phys_timer_read() - value);
Andre Przywara39735a32013-12-13 14:23:26 +0100400 break;
401 case KVM_REG_ARM_TIMER_CVAL:
Jintack Limfbb4aee2017-02-03 10:19:59 -0500402 vtimer->cnt_cval = value;
Andre Przywara39735a32013-12-13 14:23:26 +0100403 break;
404 default:
405 return -1;
406 }
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200407
408 kvm_timer_update_state(vcpu);
Andre Przywara39735a32013-12-13 14:23:26 +0100409 return 0;
410}
411
412u64 kvm_arm_timer_get_reg(struct kvm_vcpu *vcpu, u64 regid)
413{
Jintack Limfbb4aee2017-02-03 10:19:59 -0500414 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Andre Przywara39735a32013-12-13 14:23:26 +0100415
416 switch (regid) {
417 case KVM_REG_ARM_TIMER_CTL:
Jintack Limfbb4aee2017-02-03 10:19:59 -0500418 return vtimer->cnt_ctl;
Andre Przywara39735a32013-12-13 14:23:26 +0100419 case KVM_REG_ARM_TIMER_CNT:
Jintack Lim90de9432017-02-03 10:20:00 -0500420 return kvm_phys_timer_read() - vtimer->cntvoff;
Andre Przywara39735a32013-12-13 14:23:26 +0100421 case KVM_REG_ARM_TIMER_CVAL:
Jintack Limfbb4aee2017-02-03 10:19:59 -0500422 return vtimer->cnt_cval;
Andre Przywara39735a32013-12-13 14:23:26 +0100423 }
424 return (u64)-1;
425}
Marc Zyngier53e72402013-01-23 13:21:58 -0500426
Richard Cochranb3c99502016-07-13 17:16:47 +0000427static int kvm_timer_starting_cpu(unsigned int cpu)
Marc Zyngier53e72402013-01-23 13:21:58 -0500428{
Richard Cochranb3c99502016-07-13 17:16:47 +0000429 kvm_timer_init_interrupt(NULL);
430 return 0;
Marc Zyngier53e72402013-01-23 13:21:58 -0500431}
432
Richard Cochranb3c99502016-07-13 17:16:47 +0000433static int kvm_timer_dying_cpu(unsigned int cpu)
434{
435 disable_percpu_irq(host_vtimer_irq);
436 return 0;
437}
Marc Zyngier53e72402013-01-23 13:21:58 -0500438
Marc Zyngier53e72402013-01-23 13:21:58 -0500439int kvm_timer_hyp_init(void)
440{
Julien Grall29c2d6f2016-04-11 16:32:58 +0100441 struct arch_timer_kvm_info *info;
Marc Zyngier53e72402013-01-23 13:21:58 -0500442 int err;
443
Julien Grall29c2d6f2016-04-11 16:32:58 +0100444 info = arch_timer_get_kvm_info();
445 timecounter = &info->timecounter;
Marc Zyngier53e72402013-01-23 13:21:58 -0500446
Christoffer Dall8e1a0472016-12-05 10:32:11 +0100447 if (!timecounter->cc) {
448 kvm_err("kvm_arch_timer: uninitialized timecounter\n");
449 return -ENODEV;
450 }
451
Julien Grall29c2d6f2016-04-11 16:32:58 +0100452 if (info->virtual_irq <= 0) {
453 kvm_err("kvm_arch_timer: invalid virtual timer IRQ: %d\n",
454 info->virtual_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500455 return -ENODEV;
456 }
Julien Grall29c2d6f2016-04-11 16:32:58 +0100457 host_vtimer_irq = info->virtual_irq;
Marc Zyngier53e72402013-01-23 13:21:58 -0500458
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100459 host_vtimer_irq_flags = irq_get_trigger_type(host_vtimer_irq);
460 if (host_vtimer_irq_flags != IRQF_TRIGGER_HIGH &&
461 host_vtimer_irq_flags != IRQF_TRIGGER_LOW) {
462 kvm_err("Invalid trigger for IRQ%d, assuming level low\n",
463 host_vtimer_irq);
464 host_vtimer_irq_flags = IRQF_TRIGGER_LOW;
465 }
466
Julien Grall29c2d6f2016-04-11 16:32:58 +0100467 err = request_percpu_irq(host_vtimer_irq, kvm_arch_timer_handler,
Marc Zyngier53e72402013-01-23 13:21:58 -0500468 "kvm guest timer", kvm_get_running_vcpus());
469 if (err) {
470 kvm_err("kvm_arch_timer: can't request interrupt %d (%d)\n",
Julien Grall29c2d6f2016-04-11 16:32:58 +0100471 host_vtimer_irq, err);
Paolo Bonzini5d947a12016-09-08 12:45:59 +0200472 return err;
Marc Zyngier53e72402013-01-23 13:21:58 -0500473 }
474
Julien Grall29c2d6f2016-04-11 16:32:58 +0100475 kvm_info("virtual timer IRQ%d\n", host_vtimer_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500476
Richard Cochranb3c99502016-07-13 17:16:47 +0000477 cpuhp_setup_state(CPUHP_AP_KVM_ARM_TIMER_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +0100478 "kvm/arm/timer:starting", kvm_timer_starting_cpu,
Richard Cochranb3c99502016-07-13 17:16:47 +0000479 kvm_timer_dying_cpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500480 return err;
481}
482
483void kvm_timer_vcpu_terminate(struct kvm_vcpu *vcpu)
484{
485 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
Jintack Limfbb4aee2017-02-03 10:19:59 -0500486 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500487
488 timer_disarm(timer);
Jintack Limfbb4aee2017-02-03 10:19:59 -0500489 kvm_vgic_unmap_phys_irq(vcpu, vtimer->irq.irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500490}
491
Christoffer Dall41a54482016-05-18 16:26:00 +0100492int kvm_timer_enable(struct kvm_vcpu *vcpu)
Marc Zyngier53e72402013-01-23 13:21:58 -0500493{
Christoffer Dall41a54482016-05-18 16:26:00 +0100494 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
Jintack Limfbb4aee2017-02-03 10:19:59 -0500495 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
Christoffer Dall41a54482016-05-18 16:26:00 +0100496 struct irq_desc *desc;
497 struct irq_data *data;
498 int phys_irq;
499 int ret;
500
501 if (timer->enabled)
502 return 0;
503
504 /*
505 * Find the physical IRQ number corresponding to the host_vtimer_irq
506 */
507 desc = irq_to_desc(host_vtimer_irq);
508 if (!desc) {
509 kvm_err("%s: no interrupt descriptor\n", __func__);
510 return -EINVAL;
511 }
512
513 data = irq_desc_get_irq_data(desc);
514 while (data->parent_data)
515 data = data->parent_data;
516
517 phys_irq = data->hwirq;
518
519 /*
520 * Tell the VGIC that the virtual interrupt is tied to a
521 * physical interrupt. We do that once per VCPU.
522 */
Jintack Limfbb4aee2017-02-03 10:19:59 -0500523 ret = kvm_vgic_map_phys_irq(vcpu, vtimer->irq.irq, phys_irq);
Christoffer Dall41a54482016-05-18 16:26:00 +0100524 if (ret)
525 return ret;
526
Longpeng(Mike)fd5ebf92016-11-09 10:50:14 +0800527 timer->enabled = 1;
Christoffer Dall41a54482016-05-18 16:26:00 +0100528
529 return 0;
Christoffer Dall05971122014-12-12 21:19:23 +0100530}
531
Jintack Lim488f94d2016-12-01 14:32:05 -0500532/*
533 * On VHE system, we only need to configure trap on physical timer and counter
534 * accesses in EL0 and EL1 once, not for every world switch.
535 * The host kernel runs at EL2 with HCR_EL2.TGE == 1,
536 * and this makes those bits have no effect for the host kernel execution.
537 */
538void kvm_timer_init_vhe(void)
539{
540 /* When HCR_EL2.E2H ==1, EL1PCEN and EL1PCTEN are shifted by 10 */
541 u32 cnthctl_shift = 10;
542 u64 val;
543
544 /*
545 * Disallow physical timer access for the guest.
546 * Physical counter access is allowed.
547 */
548 val = read_sysreg(cnthctl_el2);
549 val &= ~(CNTHCTL_EL1PCEN << cnthctl_shift);
550 val |= (CNTHCTL_EL1PCTEN << cnthctl_shift);
551 write_sysreg(val, cnthctl_el2);
552}