blob: 7b49a1378c905f85b3315cce1995d77d58191742 [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>
27
Marc Zyngier7275acd2013-05-14 14:31:01 +010028#include <kvm/arm_vgic.h>
29#include <kvm/arm_arch_timer.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050030
Christoffer Dalle21f0912015-08-30 13:57:20 +020031#include "trace.h"
32
Marc Zyngier53e72402013-01-23 13:21:58 -050033static struct timecounter *timecounter;
Anup Patel5ae7f872013-04-30 12:02:15 +053034static unsigned int host_vtimer_irq;
Marc Zyngiercabdc5c2016-08-16 15:03:02 +010035static u32 host_vtimer_irq_flags;
Marc Zyngier53e72402013-01-23 13:21:58 -050036
Marc Zyngier9b4a3002016-01-29 19:04:48 +000037void kvm_timer_vcpu_put(struct kvm_vcpu *vcpu)
38{
39 vcpu->arch.timer_cpu.active_cleared_last = false;
40}
41
Marc Zyngier53e72402013-01-23 13:21:58 -050042static cycle_t kvm_phys_timer_read(void)
43{
44 return timecounter->cc->read(timecounter->cc);
45}
46
47static bool timer_is_armed(struct arch_timer_cpu *timer)
48{
49 return timer->armed;
50}
51
52/* timer_arm: as in "arm the timer", not as in ARM the company */
53static void timer_arm(struct arch_timer_cpu *timer, u64 ns)
54{
55 timer->armed = true;
56 hrtimer_start(&timer->timer, ktime_add_ns(ktime_get(), ns),
57 HRTIMER_MODE_ABS);
58}
59
60static void timer_disarm(struct arch_timer_cpu *timer)
61{
62 if (timer_is_armed(timer)) {
63 hrtimer_cancel(&timer->timer);
64 cancel_work_sync(&timer->expired);
65 timer->armed = false;
66 }
67}
68
Marc Zyngier53e72402013-01-23 13:21:58 -050069static irqreturn_t kvm_arch_timer_handler(int irq, void *dev_id)
70{
71 struct kvm_vcpu *vcpu = *(struct kvm_vcpu **)dev_id;
72
73 /*
74 * We disable the timer in the world switch and let it be
75 * handled by kvm_timer_sync_hwstate(). Getting a timer
76 * interrupt at this point is a sure sign of some major
77 * breakage.
78 */
79 pr_warn("Unexpected interrupt %d on vcpu %p\n", irq, vcpu);
80 return IRQ_HANDLED;
81}
82
Christoffer Dall1a748472015-03-13 17:02:55 +000083/*
84 * Work function for handling the backup timer that we schedule when a vcpu is
85 * no longer running, but had a timer programmed to fire in the future.
86 */
Marc Zyngier53e72402013-01-23 13:21:58 -050087static void kvm_timer_inject_irq_work(struct work_struct *work)
88{
89 struct kvm_vcpu *vcpu;
90
91 vcpu = container_of(work, struct kvm_vcpu, arch.timer_cpu.expired);
Marc Zyngier1c5631c2016-04-06 09:37:22 +010092
Christoffer Dall1a748472015-03-13 17:02:55 +000093 /*
94 * If the vcpu is blocked we want to wake it up so that it will see
95 * the timer has expired when entering the guest.
96 */
97 kvm_vcpu_kick(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -050098}
99
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100100static u64 kvm_timer_compute_delta(struct kvm_vcpu *vcpu)
101{
102 cycle_t cval, now;
103
104 cval = vcpu->arch.timer_cpu.cntv_cval;
105 now = kvm_phys_timer_read() - vcpu->kvm->arch.timer.cntvoff;
106
107 if (now < cval) {
108 u64 ns;
109
110 ns = cyclecounter_cyc2ns(timecounter->cc,
111 cval - now,
112 timecounter->mask,
113 &timecounter->frac);
114 return ns;
115 }
116
117 return 0;
118}
119
Marc Zyngier53e72402013-01-23 13:21:58 -0500120static enum hrtimer_restart kvm_timer_expire(struct hrtimer *hrt)
121{
122 struct arch_timer_cpu *timer;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100123 struct kvm_vcpu *vcpu;
124 u64 ns;
125
Marc Zyngier53e72402013-01-23 13:21:58 -0500126 timer = container_of(hrt, struct arch_timer_cpu, timer);
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100127 vcpu = container_of(timer, struct kvm_vcpu, arch.timer_cpu);
128
129 /*
130 * Check that the timer has really expired from the guest's
131 * PoV (NTP on the host may have forced it to expire
132 * early). If we should have slept longer, restart it.
133 */
134 ns = kvm_timer_compute_delta(vcpu);
135 if (unlikely(ns)) {
136 hrtimer_forward_now(hrt, ns_to_ktime(ns));
137 return HRTIMER_RESTART;
138 }
139
Bhaktipriya Shridhar3706fea2016-08-30 23:29:51 +0530140 schedule_work(&timer->expired);
Marc Zyngier53e72402013-01-23 13:21:58 -0500141 return HRTIMER_NORESTART;
142}
143
Christoffer Dalld35268d2015-08-25 19:48:21 +0200144static bool kvm_timer_irq_can_fire(struct kvm_vcpu *vcpu)
145{
146 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
147
148 return !(timer->cntv_ctl & ARCH_TIMER_CTRL_IT_MASK) &&
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200149 (timer->cntv_ctl & ARCH_TIMER_CTRL_ENABLE);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200150}
151
Christoffer Dall1a748472015-03-13 17:02:55 +0000152bool kvm_timer_should_fire(struct kvm_vcpu *vcpu)
153{
154 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
155 cycle_t cval, now;
156
Christoffer Dalld35268d2015-08-25 19:48:21 +0200157 if (!kvm_timer_irq_can_fire(vcpu))
Christoffer Dall1a748472015-03-13 17:02:55 +0000158 return false;
159
160 cval = timer->cntv_cval;
161 now = kvm_phys_timer_read() - vcpu->kvm->arch.timer.cntvoff;
162
163 return cval <= now;
164}
165
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200166static void kvm_timer_update_irq(struct kvm_vcpu *vcpu, bool new_level)
167{
168 int ret;
169 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
170
171 BUG_ON(!vgic_initialized(vcpu->kvm));
172
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000173 timer->active_cleared_last = false;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200174 timer->irq.level = new_level;
Andre Przywaraa7e33ad2016-04-13 11:03:02 +0100175 trace_kvm_timer_update_irq(vcpu->vcpu_id, timer->irq.irq,
Christoffer Dalle21f0912015-08-30 13:57:20 +0200176 timer->irq.level);
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200177 ret = kvm_vgic_inject_mapped_irq(vcpu->kvm, vcpu->vcpu_id,
Andre Przywaraa7e33ad2016-04-13 11:03:02 +0100178 timer->irq.irq,
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200179 timer->irq.level);
180 WARN_ON(ret);
181}
182
183/*
184 * Check if there was a change in the timer state (should we raise or lower
185 * the line level to the GIC).
186 */
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000187static int kvm_timer_update_state(struct kvm_vcpu *vcpu)
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200188{
189 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
190
191 /*
192 * If userspace modified the timer registers via SET_ONE_REG before
193 * the vgic was initialized, we mustn't set the timer->irq.level value
194 * because the guest would never see the interrupt. Instead wait
195 * until we call this function from kvm_timer_flush_hwstate.
196 */
Christoffer Dall41a54482016-05-18 16:26:00 +0100197 if (!vgic_initialized(vcpu->kvm) || !timer->enabled)
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000198 return -ENODEV;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200199
200 if (kvm_timer_should_fire(vcpu) != timer->irq.level)
201 kvm_timer_update_irq(vcpu, !timer->irq.level);
Andre Przywarab3aff6c2016-02-03 16:56:51 +0000202
203 return 0;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200204}
205
Christoffer Dalld35268d2015-08-25 19:48:21 +0200206/*
207 * Schedule the background timer before calling kvm_vcpu_block, so that this
208 * thread is removed from its waitqueue and made runnable when there's a timer
209 * interrupt to handle.
210 */
211void kvm_timer_schedule(struct kvm_vcpu *vcpu)
212{
213 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
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 */
222 if (kvm_timer_should_fire(vcpu))
223 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 */
229 if (!kvm_timer_irq_can_fire(vcpu))
230 return;
231
232 /* The timer has not yet expired, schedule a background timer */
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100233 timer_arm(timer, kvm_timer_compute_delta(vcpu));
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{
251 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
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 */
Andre Przywarae262f412016-04-13 10:03:49 +0100275 phys_active = timer->irq.level ||
Andre Przywaraa7e33ad2016-04-13 11:03:02 +0100276 kvm_vgic_map_is_active(vcpu, timer->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 */
298 if (timer->active_cleared_last && !phys_active)
299 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
306 timer->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{
332 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
333
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 */
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200340 timer->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 */
348 timer->cntv_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
Marc Zyngier53e72402013-01-23 13:21:58 -0500354void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu)
355{
356 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
357
358 INIT_WORK(&timer->expired, kvm_timer_inject_irq_work);
359 hrtimer_init(&timer->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
360 timer->timer.function = kvm_timer_expire;
Marc Zyngier53e72402013-01-23 13:21:58 -0500361}
362
363static void kvm_timer_init_interrupt(void *info)
364{
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100365 enable_percpu_irq(host_vtimer_irq, host_vtimer_irq_flags);
Marc Zyngier53e72402013-01-23 13:21:58 -0500366}
367
Andre Przywara39735a32013-12-13 14:23:26 +0100368int kvm_arm_timer_set_reg(struct kvm_vcpu *vcpu, u64 regid, u64 value)
369{
370 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
371
372 switch (regid) {
373 case KVM_REG_ARM_TIMER_CTL:
374 timer->cntv_ctl = value;
375 break;
376 case KVM_REG_ARM_TIMER_CNT:
377 vcpu->kvm->arch.timer.cntvoff = kvm_phys_timer_read() - value;
378 break;
379 case KVM_REG_ARM_TIMER_CVAL:
380 timer->cntv_cval = value;
381 break;
382 default:
383 return -1;
384 }
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200385
386 kvm_timer_update_state(vcpu);
Andre Przywara39735a32013-12-13 14:23:26 +0100387 return 0;
388}
389
390u64 kvm_arm_timer_get_reg(struct kvm_vcpu *vcpu, u64 regid)
391{
392 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
393
394 switch (regid) {
395 case KVM_REG_ARM_TIMER_CTL:
396 return timer->cntv_ctl;
397 case KVM_REG_ARM_TIMER_CNT:
398 return kvm_phys_timer_read() - vcpu->kvm->arch.timer.cntvoff;
399 case KVM_REG_ARM_TIMER_CVAL:
400 return timer->cntv_cval;
401 }
402 return (u64)-1;
403}
Marc Zyngier53e72402013-01-23 13:21:58 -0500404
Richard Cochranb3c99502016-07-13 17:16:47 +0000405static int kvm_timer_starting_cpu(unsigned int cpu)
Marc Zyngier53e72402013-01-23 13:21:58 -0500406{
Richard Cochranb3c99502016-07-13 17:16:47 +0000407 kvm_timer_init_interrupt(NULL);
408 return 0;
Marc Zyngier53e72402013-01-23 13:21:58 -0500409}
410
Richard Cochranb3c99502016-07-13 17:16:47 +0000411static int kvm_timer_dying_cpu(unsigned int cpu)
412{
413 disable_percpu_irq(host_vtimer_irq);
414 return 0;
415}
Marc Zyngier53e72402013-01-23 13:21:58 -0500416
Marc Zyngier53e72402013-01-23 13:21:58 -0500417int kvm_timer_hyp_init(void)
418{
Julien Grall29c2d6f2016-04-11 16:32:58 +0100419 struct arch_timer_kvm_info *info;
Marc Zyngier53e72402013-01-23 13:21:58 -0500420 int err;
421
Julien Grall29c2d6f2016-04-11 16:32:58 +0100422 info = arch_timer_get_kvm_info();
423 timecounter = &info->timecounter;
Marc Zyngier53e72402013-01-23 13:21:58 -0500424
Julien Grall29c2d6f2016-04-11 16:32:58 +0100425 if (info->virtual_irq <= 0) {
426 kvm_err("kvm_arch_timer: invalid virtual timer IRQ: %d\n",
427 info->virtual_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500428 return -ENODEV;
429 }
Julien Grall29c2d6f2016-04-11 16:32:58 +0100430 host_vtimer_irq = info->virtual_irq;
Marc Zyngier53e72402013-01-23 13:21:58 -0500431
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100432 host_vtimer_irq_flags = irq_get_trigger_type(host_vtimer_irq);
433 if (host_vtimer_irq_flags != IRQF_TRIGGER_HIGH &&
434 host_vtimer_irq_flags != IRQF_TRIGGER_LOW) {
435 kvm_err("Invalid trigger for IRQ%d, assuming level low\n",
436 host_vtimer_irq);
437 host_vtimer_irq_flags = IRQF_TRIGGER_LOW;
438 }
439
Julien Grall29c2d6f2016-04-11 16:32:58 +0100440 err = request_percpu_irq(host_vtimer_irq, kvm_arch_timer_handler,
Marc Zyngier53e72402013-01-23 13:21:58 -0500441 "kvm guest timer", kvm_get_running_vcpus());
442 if (err) {
443 kvm_err("kvm_arch_timer: can't request interrupt %d (%d)\n",
Julien Grall29c2d6f2016-04-11 16:32:58 +0100444 host_vtimer_irq, err);
Paolo Bonzini5d947a12016-09-08 12:45:59 +0200445 return err;
Marc Zyngier53e72402013-01-23 13:21:58 -0500446 }
447
Julien Grall29c2d6f2016-04-11 16:32:58 +0100448 kvm_info("virtual timer IRQ%d\n", host_vtimer_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500449
Richard Cochranb3c99502016-07-13 17:16:47 +0000450 cpuhp_setup_state(CPUHP_AP_KVM_ARM_TIMER_STARTING,
451 "AP_KVM_ARM_TIMER_STARTING", kvm_timer_starting_cpu,
452 kvm_timer_dying_cpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500453 return err;
454}
455
456void kvm_timer_vcpu_terminate(struct kvm_vcpu *vcpu)
457{
458 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
459
460 timer_disarm(timer);
Andre Przywaraa7e33ad2016-04-13 11:03:02 +0100461 kvm_vgic_unmap_phys_irq(vcpu, timer->irq.irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500462}
463
Christoffer Dall41a54482016-05-18 16:26:00 +0100464int kvm_timer_enable(struct kvm_vcpu *vcpu)
Marc Zyngier53e72402013-01-23 13:21:58 -0500465{
Christoffer Dall41a54482016-05-18 16:26:00 +0100466 struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu;
467 struct irq_desc *desc;
468 struct irq_data *data;
469 int phys_irq;
470 int ret;
471
472 if (timer->enabled)
473 return 0;
474
475 /*
476 * Find the physical IRQ number corresponding to the host_vtimer_irq
477 */
478 desc = irq_to_desc(host_vtimer_irq);
479 if (!desc) {
480 kvm_err("%s: no interrupt descriptor\n", __func__);
481 return -EINVAL;
482 }
483
484 data = irq_desc_get_irq_data(desc);
485 while (data->parent_data)
486 data = data->parent_data;
487
488 phys_irq = data->hwirq;
489
490 /*
491 * Tell the VGIC that the virtual interrupt is tied to a
492 * physical interrupt. We do that once per VCPU.
493 */
494 ret = kvm_vgic_map_phys_irq(vcpu, timer->irq.irq, phys_irq);
495 if (ret)
496 return ret;
497
Marc Zyngier53e72402013-01-23 13:21:58 -0500498
Christoffer Dall05971122014-12-12 21:19:23 +0100499 /*
500 * There is a potential race here between VCPUs starting for the first
501 * time, which may be enabling the timer multiple times. That doesn't
502 * hurt though, because we're just setting a variable to the same
503 * variable that it already was. The important thing is that all
504 * VCPUs have the enabled variable set, before entering the guest, if
505 * the arch timers are enabled.
506 */
Bhaktipriya Shridhar3706fea2016-08-30 23:29:51 +0530507 if (timecounter)
Christoffer Dall41a54482016-05-18 16:26:00 +0100508 timer->enabled = 1;
509
510 return 0;
Christoffer Dall05971122014-12-12 21:19:23 +0100511}
512
513void kvm_timer_init(struct kvm *kvm)
514{
515 kvm->arch.timer.cntvoff = kvm_phys_timer_read();
Marc Zyngier53e72402013-01-23 13:21:58 -0500516}