blob: e2bb5bd602270cace47548f9efe56c9f2331e48d [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Marc Zyngier53e72402013-01-23 13:21:58 -05002/*
3 * Copyright (C) 2012 ARM Ltd.
4 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngier53e72402013-01-23 13:21:58 -05005 */
6
7#include <linux/cpu.h>
Marc Zyngier53e72402013-01-23 13:21:58 -05008#include <linux/kvm.h>
9#include <linux/kvm_host.h>
10#include <linux/interrupt.h>
Christoffer Dallb452cb52016-06-04 15:41:00 +010011#include <linux/irq.h>
Christoffer Dall99a1db72017-05-02 20:19:15 +020012#include <linux/uaccess.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050013
Mark Rutland372b7c12013-03-27 15:56:11 +000014#include <clocksource/arm_arch_timer.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050015#include <asm/arch_timer.h>
Andre Przywara84135d32018-07-05 16:48:23 +010016#include <asm/kvm_emulate.h>
Jintack Lim488f94d2016-12-01 14:32:05 -050017#include <asm/kvm_hyp.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050018
Marc Zyngier7275acd2013-05-14 14:31:01 +010019#include <kvm/arm_vgic.h>
20#include <kvm/arm_arch_timer.h>
Marc Zyngier53e72402013-01-23 13:21:58 -050021
Christoffer Dalle21f0912015-08-30 13:57:20 +020022#include "trace.h"
23
Marc Zyngier53e72402013-01-23 13:21:58 -050024static struct timecounter *timecounter;
Anup Patel5ae7f872013-04-30 12:02:15 +053025static unsigned int host_vtimer_irq;
Christoffer Dall9e01dc72019-02-19 14:04:30 +010026static unsigned int host_ptimer_irq;
Marc Zyngiercabdc5c2016-08-16 15:03:02 +010027static u32 host_vtimer_irq_flags;
Christoffer Dall9e01dc72019-02-19 14:04:30 +010028static u32 host_ptimer_irq_flags;
Marc Zyngier53e72402013-01-23 13:21:58 -050029
Christoffer Dalld60d8b62018-01-26 16:06:51 +010030static DEFINE_STATIC_KEY_FALSE(has_gic_active_state);
31
Christoffer Dall85e69ad2017-05-02 20:14:06 +020032static const struct kvm_irq_level default_ptimer_irq = {
33 .irq = 30,
34 .level = 1,
35};
36
37static const struct kvm_irq_level default_vtimer_irq = {
38 .irq = 27,
39 .level = 1,
40};
41
Christoffer Dallb103cc32016-10-16 20:30:38 +020042static bool kvm_timer_irq_can_fire(struct arch_timer_context *timer_ctx);
43static void kvm_timer_update_irq(struct kvm_vcpu *vcpu, bool new_level,
44 struct arch_timer_context *timer_ctx);
Christoffer Dall1c88ab72017-01-06 16:07:48 +010045static bool kvm_timer_should_fire(struct arch_timer_context *timer_ctx);
Andre Przywara84135d32018-07-05 16:48:23 +010046static void kvm_arm_timer_write(struct kvm_vcpu *vcpu,
47 struct arch_timer_context *timer,
48 enum kvm_arch_timer_regs treg,
49 u64 val);
50static u64 kvm_arm_timer_read(struct kvm_vcpu *vcpu,
51 struct arch_timer_context *timer,
52 enum kvm_arch_timer_regs treg);
Marc Zyngier9b4a3002016-01-29 19:04:48 +000053
Jintack Lim7b6b4632017-02-03 10:20:08 -050054u64 kvm_phys_timer_read(void)
Marc Zyngier53e72402013-01-23 13:21:58 -050055{
56 return timecounter->cc->read(timecounter->cc);
57}
58
Christoffer Dallbee038a62019-01-04 13:31:22 +010059static void get_timer_map(struct kvm_vcpu *vcpu, struct timer_map *map)
60{
61 if (has_vhe()) {
62 map->direct_vtimer = vcpu_vtimer(vcpu);
63 map->direct_ptimer = vcpu_ptimer(vcpu);
64 map->emul_ptimer = NULL;
65 } else {
66 map->direct_vtimer = vcpu_vtimer(vcpu);
67 map->direct_ptimer = NULL;
68 map->emul_ptimer = vcpu_ptimer(vcpu);
69 }
70
71 trace_kvm_get_timer_map(vcpu->vcpu_id, map);
72}
73
Christoffer Dalld60d8b62018-01-26 16:06:51 +010074static inline bool userspace_irqchip(struct kvm *kvm)
75{
76 return static_branch_unlikely(&userspace_irqchip_in_use) &&
77 unlikely(!irqchip_in_kernel(kvm));
78}
79
Christoffer Dall8409a062017-06-17 01:09:19 -070080static void soft_timer_start(struct hrtimer *hrt, u64 ns)
Marc Zyngier53e72402013-01-23 13:21:58 -050081{
Christoffer Dall8409a062017-06-17 01:09:19 -070082 hrtimer_start(hrt, ktime_add_ns(ktime_get(), ns),
Marc Zyngier53e72402013-01-23 13:21:58 -050083 HRTIMER_MODE_ABS);
84}
85
Christoffer Dall8a411b02018-11-27 13:48:08 +010086static void soft_timer_cancel(struct hrtimer *hrt)
Marc Zyngier53e72402013-01-23 13:21:58 -050087{
Christoffer Dall8409a062017-06-17 01:09:19 -070088 hrtimer_cancel(hrt);
Marc Zyngier53e72402013-01-23 13:21:58 -050089}
90
Marc Zyngier53e72402013-01-23 13:21:58 -050091static irqreturn_t kvm_arch_timer_handler(int irq, void *dev_id)
92{
93 struct kvm_vcpu *vcpu = *(struct kvm_vcpu **)dev_id;
Christoffer Dall9e01dc72019-02-19 14:04:30 +010094 struct arch_timer_context *ctx;
Christoffer Dallbee038a62019-01-04 13:31:22 +010095 struct timer_map map;
Marc Zyngier53e72402013-01-23 13:21:58 -050096
Christoffer Dall36e5cfd2017-12-14 19:54:50 +010097 /*
98 * We may see a timer interrupt after vcpu_put() has been called which
99 * sets the CPU's vcpu pointer to NULL, because even though the timer
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100100 * has been disabled in timer_save_state(), the hardware interrupt
Christoffer Dall36e5cfd2017-12-14 19:54:50 +0100101 * signal may not have been retired from the interrupt controller yet.
102 */
103 if (!vcpu)
104 return IRQ_HANDLED;
Christoffer Dallb103cc32016-10-16 20:30:38 +0200105
Christoffer Dallbee038a62019-01-04 13:31:22 +0100106 get_timer_map(vcpu, &map);
107
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100108 if (irq == host_vtimer_irq)
Christoffer Dallbee038a62019-01-04 13:31:22 +0100109 ctx = map.direct_vtimer;
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100110 else
Christoffer Dallbee038a62019-01-04 13:31:22 +0100111 ctx = map.direct_ptimer;
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100112
113 if (kvm_timer_should_fire(ctx))
114 kvm_timer_update_irq(vcpu, true, ctx);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200115
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100116 if (userspace_irqchip(vcpu->kvm) &&
117 !static_branch_unlikely(&has_gic_active_state))
118 disable_percpu_irq(host_vtimer_irq);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200119
Marc Zyngier53e72402013-01-23 13:21:58 -0500120 return IRQ_HANDLED;
121}
122
Jintack Lim9171fa22017-02-03 10:20:01 -0500123static u64 kvm_timer_compute_delta(struct arch_timer_context *timer_ctx)
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100124{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100125 u64 cval, now;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100126
Jintack Lim9171fa22017-02-03 10:20:01 -0500127 cval = timer_ctx->cnt_cval;
128 now = kvm_phys_timer_read() - timer_ctx->cntvoff;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100129
130 if (now < cval) {
131 u64 ns;
132
133 ns = cyclecounter_cyc2ns(timecounter->cc,
134 cval - now,
135 timecounter->mask,
136 &timecounter->frac);
137 return ns;
138 }
139
140 return 0;
141}
142
Jintack Limfb280e92017-02-03 10:20:05 -0500143static bool kvm_timer_irq_can_fire(struct arch_timer_context *timer_ctx)
144{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100145 WARN_ON(timer_ctx && timer_ctx->loaded);
146 return timer_ctx &&
147 !(timer_ctx->cnt_ctl & ARCH_TIMER_CTRL_IT_MASK) &&
Jintack Limfb280e92017-02-03 10:20:05 -0500148 (timer_ctx->cnt_ctl & ARCH_TIMER_CTRL_ENABLE);
149}
150
151/*
152 * Returns the earliest expiration time in ns among guest timers.
153 * Note that it will return 0 if none of timers can fire.
154 */
155static u64 kvm_timer_earliest_exp(struct kvm_vcpu *vcpu)
156{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100157 u64 min_delta = ULLONG_MAX;
158 int i;
Jintack Limfb280e92017-02-03 10:20:05 -0500159
Christoffer Dallbee038a62019-01-04 13:31:22 +0100160 for (i = 0; i < NR_KVM_TIMERS; i++) {
161 struct arch_timer_context *ctx = &vcpu->arch.timer_cpu.timers[i];
Jintack Limfb280e92017-02-03 10:20:05 -0500162
Christoffer Dallbee038a62019-01-04 13:31:22 +0100163 WARN(ctx->loaded, "timer %d loaded\n", i);
164 if (kvm_timer_irq_can_fire(ctx))
165 min_delta = min(min_delta, kvm_timer_compute_delta(ctx));
166 }
Jintack Limfb280e92017-02-03 10:20:05 -0500167
168 /* If none of timers can fire, then return 0 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100169 if (min_delta == ULLONG_MAX)
Jintack Limfb280e92017-02-03 10:20:05 -0500170 return 0;
171
Christoffer Dallbee038a62019-01-04 13:31:22 +0100172 return min_delta;
Jintack Limfb280e92017-02-03 10:20:05 -0500173}
174
Christoffer Dall14d61fa2017-06-17 07:33:02 -0700175static enum hrtimer_restart kvm_bg_timer_expire(struct hrtimer *hrt)
Marc Zyngier53e72402013-01-23 13:21:58 -0500176{
177 struct arch_timer_cpu *timer;
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100178 struct kvm_vcpu *vcpu;
179 u64 ns;
180
Christoffer Dall14d61fa2017-06-17 07:33:02 -0700181 timer = container_of(hrt, struct arch_timer_cpu, bg_timer);
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100182 vcpu = container_of(timer, struct kvm_vcpu, arch.timer_cpu);
183
184 /*
185 * Check that the timer has really expired from the guest's
186 * PoV (NTP on the host may have forced it to expire
187 * early). If we should have slept longer, restart it.
188 */
Jintack Limfb280e92017-02-03 10:20:05 -0500189 ns = kvm_timer_earliest_exp(vcpu);
Marc Zyngier1c5631c2016-04-06 09:37:22 +0100190 if (unlikely(ns)) {
191 hrtimer_forward_now(hrt, ns_to_ktime(ns));
192 return HRTIMER_RESTART;
193 }
194
Christoffer Dall8a411b02018-11-27 13:48:08 +0100195 kvm_vcpu_wake_up(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500196 return HRTIMER_NORESTART;
197}
198
Christoffer Dallbee038a62019-01-04 13:31:22 +0100199static enum hrtimer_restart kvm_hrtimer_expire(struct hrtimer *hrt)
Christoffer Dallf2a21292017-06-18 00:32:08 -0700200{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100201 struct arch_timer_context *ctx;
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700202 struct kvm_vcpu *vcpu;
203 u64 ns;
204
Christoffer Dallbee038a62019-01-04 13:31:22 +0100205 ctx = container_of(hrt, struct arch_timer_context, hrtimer);
206 vcpu = ctx->vcpu;
207
208 trace_kvm_timer_hrtimer_expire(ctx);
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700209
210 /*
211 * Check that the timer has really expired from the guest's
212 * PoV (NTP on the host may have forced it to expire
213 * early). If not ready, schedule for a later time.
214 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100215 ns = kvm_timer_compute_delta(ctx);
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700216 if (unlikely(ns)) {
217 hrtimer_forward_now(hrt, ns_to_ktime(ns));
218 return HRTIMER_RESTART;
219 }
220
Christoffer Dallbee038a62019-01-04 13:31:22 +0100221 kvm_timer_update_irq(vcpu, true, ctx);
Christoffer Dallf2a21292017-06-18 00:32:08 -0700222 return HRTIMER_NORESTART;
223}
224
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100225static bool kvm_timer_should_fire(struct arch_timer_context *timer_ctx)
Christoffer Dall1a748472015-03-13 17:02:55 +0000226{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100227 enum kvm_arch_timers index;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100228 u64 cval, now;
Christoffer Dall1a748472015-03-13 17:02:55 +0000229
Christoffer Dallbee038a62019-01-04 13:31:22 +0100230 if (!timer_ctx)
231 return false;
232
Christoffer Dallbee038a62019-01-04 13:31:22 +0100233 index = arch_timer_ctx_index(timer_ctx);
234
235 if (timer_ctx->loaded) {
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100236 u32 cnt_ctl = 0;
Christoffer Dall13e59ec2018-01-25 14:20:19 +0100237
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100238 switch (index) {
239 case TIMER_VTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100240 cnt_ctl = read_sysreg_el0(SYS_CNTV_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100241 break;
242 case TIMER_PTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100243 cnt_ctl = read_sysreg_el0(SYS_CNTP_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100244 break;
245 case NR_KVM_TIMERS:
246 /* GCC is braindead */
247 cnt_ctl = 0;
248 break;
249 }
250
Christoffer Dall13e59ec2018-01-25 14:20:19 +0100251 return (cnt_ctl & ARCH_TIMER_CTRL_ENABLE) &&
252 (cnt_ctl & ARCH_TIMER_CTRL_IT_STAT) &&
253 !(cnt_ctl & ARCH_TIMER_CTRL_IT_MASK);
254 }
255
Jintack Lim9171fa22017-02-03 10:20:01 -0500256 if (!kvm_timer_irq_can_fire(timer_ctx))
Christoffer Dall1a748472015-03-13 17:02:55 +0000257 return false;
258
Jintack Lim9171fa22017-02-03 10:20:01 -0500259 cval = timer_ctx->cnt_cval;
260 now = kvm_phys_timer_read() - timer_ctx->cntvoff;
Christoffer Dall1a748472015-03-13 17:02:55 +0000261
262 return cval <= now;
263}
264
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100265bool kvm_timer_is_pending(struct kvm_vcpu *vcpu)
266{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100267 struct timer_map map;
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100268
Christoffer Dallbee038a62019-01-04 13:31:22 +0100269 get_timer_map(vcpu, &map);
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100270
Christoffer Dallbee038a62019-01-04 13:31:22 +0100271 return kvm_timer_should_fire(map.direct_vtimer) ||
272 kvm_timer_should_fire(map.direct_ptimer) ||
273 kvm_timer_should_fire(map.emul_ptimer);
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100274}
275
Alexander Grafd9e13972016-09-27 21:08:06 +0200276/*
277 * Reflect the timer output level into the kvm_run structure
278 */
279void kvm_timer_update_run(struct kvm_vcpu *vcpu)
280{
281 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
282 struct arch_timer_context *ptimer = vcpu_ptimer(vcpu);
283 struct kvm_sync_regs *regs = &vcpu->run->s.regs;
284
Alexander Grafd9e13972016-09-27 21:08:06 +0200285 /* Populate the device bitmap with the timer states */
286 regs->device_irq_level &= ~(KVM_ARM_DEV_EL1_VTIMER |
287 KVM_ARM_DEV_EL1_PTIMER);
Christoffer Dall13e59ec2018-01-25 14:20:19 +0100288 if (kvm_timer_should_fire(vtimer))
Alexander Grafd9e13972016-09-27 21:08:06 +0200289 regs->device_irq_level |= KVM_ARM_DEV_EL1_VTIMER;
Christoffer Dall13e59ec2018-01-25 14:20:19 +0100290 if (kvm_timer_should_fire(ptimer))
Alexander Grafd9e13972016-09-27 21:08:06 +0200291 regs->device_irq_level |= KVM_ARM_DEV_EL1_PTIMER;
292}
293
Jintack Lim9171fa22017-02-03 10:20:01 -0500294static void kvm_timer_update_irq(struct kvm_vcpu *vcpu, bool new_level,
295 struct arch_timer_context *timer_ctx)
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200296{
297 int ret;
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200298
Jintack Lim9171fa22017-02-03 10:20:01 -0500299 timer_ctx->irq.level = new_level;
300 trace_kvm_timer_update_irq(vcpu->vcpu_id, timer_ctx->irq.irq,
301 timer_ctx->irq.level);
Christoffer Dall11710de2017-02-01 11:03:45 +0100302
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100303 if (!userspace_irqchip(vcpu->kvm)) {
Alexander Grafd9e13972016-09-27 21:08:06 +0200304 ret = kvm_vgic_inject_irq(vcpu->kvm, vcpu->vcpu_id,
305 timer_ctx->irq.irq,
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200306 timer_ctx->irq.level,
307 timer_ctx);
Alexander Grafd9e13972016-09-27 21:08:06 +0200308 WARN_ON(ret);
309 }
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200310}
311
Andrew Jonese4e5a862019-05-27 13:46:19 +0200312/* Only called for a fully emulated timer */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100313static void timer_emulate(struct arch_timer_context *ctx)
Christoffer Dallcda93b72017-06-18 01:41:06 -0700314{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100315 bool should_fire = kvm_timer_should_fire(ctx);
316
317 trace_kvm_timer_emulate(ctx, should_fire);
318
Andrew Jonese4e5a862019-05-27 13:46:19 +0200319 if (should_fire != ctx->irq.level) {
320 kvm_timer_update_irq(ctx->vcpu, should_fire, ctx);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100321 return;
322 }
Christoffer Dallcda93b72017-06-18 01:41:06 -0700323
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700324 /*
Christoffer Dall7afc4dd2018-07-25 10:21:27 +0100325 * If the timer can fire now, we don't need to have a soft timer
326 * scheduled for the future. If the timer cannot fire at all,
327 * then we also don't need a soft timer.
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700328 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100329 if (!kvm_timer_irq_can_fire(ctx)) {
330 soft_timer_cancel(&ctx->hrtimer);
Christoffer Dallcda93b72017-06-18 01:41:06 -0700331 return;
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700332 }
Christoffer Dallcda93b72017-06-18 01:41:06 -0700333
Christoffer Dallbee038a62019-01-04 13:31:22 +0100334 soft_timer_start(&ctx->hrtimer, kvm_timer_compute_delta(ctx));
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200335}
336
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100337static void timer_save_state(struct arch_timer_context *ctx)
Christoffer Dall688c50a2017-01-04 16:10:28 +0100338{
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100339 struct arch_timer_cpu *timer = vcpu_timer(ctx->vcpu);
340 enum kvm_arch_timers index = arch_timer_ctx_index(ctx);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200341 unsigned long flags;
342
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100343 if (!timer->enabled)
344 return;
345
Christoffer Dallb103cc32016-10-16 20:30:38 +0200346 local_irq_save(flags);
347
Christoffer Dallbee038a62019-01-04 13:31:22 +0100348 if (!ctx->loaded)
Christoffer Dallb103cc32016-10-16 20:30:38 +0200349 goto out;
Christoffer Dall688c50a2017-01-04 16:10:28 +0100350
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100351 switch (index) {
352 case TIMER_VTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100353 ctx->cnt_ctl = read_sysreg_el0(SYS_CNTV_CTL);
354 ctx->cnt_cval = read_sysreg_el0(SYS_CNTV_CVAL);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100355
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100356 /* Disable the timer */
Dave Martinfdec2a92019-04-06 11:29:40 +0100357 write_sysreg_el0(0, SYS_CNTV_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100358 isb();
359
360 break;
361 case TIMER_PTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100362 ctx->cnt_ctl = read_sysreg_el0(SYS_CNTP_CTL);
363 ctx->cnt_cval = read_sysreg_el0(SYS_CNTP_CVAL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100364
365 /* Disable the timer */
Dave Martinfdec2a92019-04-06 11:29:40 +0100366 write_sysreg_el0(0, SYS_CNTP_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100367 isb();
368
369 break;
370 case NR_KVM_TIMERS:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100371 BUG();
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100372 }
Christoffer Dallb103cc32016-10-16 20:30:38 +0200373
Christoffer Dallbee038a62019-01-04 13:31:22 +0100374 trace_kvm_timer_save_state(ctx);
375
376 ctx->loaded = false;
Christoffer Dallb103cc32016-10-16 20:30:38 +0200377out:
378 local_irq_restore(flags);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100379}
380
Christoffer Dalld35268d2015-08-25 19:48:21 +0200381/*
382 * Schedule the background timer before calling kvm_vcpu_block, so that this
383 * thread is removed from its waitqueue and made runnable when there's a timer
384 * interrupt to handle.
385 */
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100386static void kvm_timer_blocking(struct kvm_vcpu *vcpu)
Christoffer Dalld35268d2015-08-25 19:48:21 +0200387{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700388 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100389 struct timer_map map;
390
391 get_timer_map(vcpu, &map);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200392
Christoffer Dalld35268d2015-08-25 19:48:21 +0200393 /*
Christoffer Dallbee038a62019-01-04 13:31:22 +0100394 * If no timers are capable of raising interrupts (disabled or
Christoffer Dalld35268d2015-08-25 19:48:21 +0200395 * masked), then there's no more work for us to do.
396 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100397 if (!kvm_timer_irq_can_fire(map.direct_vtimer) &&
398 !kvm_timer_irq_can_fire(map.direct_ptimer) &&
399 !kvm_timer_irq_can_fire(map.emul_ptimer))
Christoffer Dalld35268d2015-08-25 19:48:21 +0200400 return;
401
Jintack Limfb280e92017-02-03 10:20:05 -0500402 /*
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100403 * At least one guest time will expire. Schedule a background timer.
Jintack Limfb280e92017-02-03 10:20:05 -0500404 * Set the earliest expiration time among the guest timers.
405 */
Christoffer Dall14d61fa2017-06-17 07:33:02 -0700406 soft_timer_start(&timer->bg_timer, kvm_timer_earliest_exp(vcpu));
Christoffer Dalld35268d2015-08-25 19:48:21 +0200407}
408
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100409static void kvm_timer_unblocking(struct kvm_vcpu *vcpu)
410{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700411 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100412
413 soft_timer_cancel(&timer->bg_timer);
414}
415
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100416static void timer_restore_state(struct arch_timer_context *ctx)
Christoffer Dall688c50a2017-01-04 16:10:28 +0100417{
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100418 struct arch_timer_cpu *timer = vcpu_timer(ctx->vcpu);
419 enum kvm_arch_timers index = arch_timer_ctx_index(ctx);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200420 unsigned long flags;
421
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100422 if (!timer->enabled)
423 return;
424
Christoffer Dallb103cc32016-10-16 20:30:38 +0200425 local_irq_save(flags);
426
Christoffer Dallbee038a62019-01-04 13:31:22 +0100427 if (ctx->loaded)
Christoffer Dallb103cc32016-10-16 20:30:38 +0200428 goto out;
Christoffer Dall688c50a2017-01-04 16:10:28 +0100429
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100430 switch (index) {
431 case TIMER_VTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100432 write_sysreg_el0(ctx->cnt_cval, SYS_CNTV_CVAL);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100433 isb();
Dave Martinfdec2a92019-04-06 11:29:40 +0100434 write_sysreg_el0(ctx->cnt_ctl, SYS_CNTV_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100435 break;
436 case TIMER_PTIMER:
Dave Martinfdec2a92019-04-06 11:29:40 +0100437 write_sysreg_el0(ctx->cnt_cval, SYS_CNTP_CVAL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100438 isb();
Dave Martinfdec2a92019-04-06 11:29:40 +0100439 write_sysreg_el0(ctx->cnt_ctl, SYS_CNTP_CTL);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100440 break;
441 case NR_KVM_TIMERS:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100442 BUG();
Christoffer Dall688c50a2017-01-04 16:10:28 +0100443 }
Christoffer Dallb103cc32016-10-16 20:30:38 +0200444
Christoffer Dallbee038a62019-01-04 13:31:22 +0100445 trace_kvm_timer_restore_state(ctx);
446
447 ctx->loaded = true;
Christoffer Dallb103cc32016-10-16 20:30:38 +0200448out:
449 local_irq_restore(flags);
Christoffer Dall688c50a2017-01-04 16:10:28 +0100450}
451
Christoffer Dall688c50a2017-01-04 16:10:28 +0100452static void set_cntvoff(u64 cntvoff)
453{
454 u32 low = lower_32_bits(cntvoff);
455 u32 high = upper_32_bits(cntvoff);
456
457 /*
458 * Since kvm_call_hyp doesn't fully support the ARM PCS especially on
459 * 32-bit systems, but rather passes register by register shifted one
460 * place (we put the function address in r0/x0), we cannot simply pass
461 * a 64-bit value as an argument, but have to split the value in two
462 * 32-bit halves.
463 */
464 kvm_call_hyp(__kvm_timer_set_cntvoff, low, high);
465}
466
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100467static inline void set_timer_irq_phys_active(struct arch_timer_context *ctx, bool active)
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100468{
469 int r;
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100470 r = irq_set_irqchip_state(ctx->host_timer_irq, IRQCHIP_STATE_ACTIVE, active);
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100471 WARN_ON(r);
472}
473
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100474static void kvm_timer_vcpu_load_gic(struct arch_timer_context *ctx)
Marc Zyngier53e72402013-01-23 13:21:58 -0500475{
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100476 struct kvm_vcpu *vcpu = ctx->vcpu;
Marc Zyngierbae561c2019-01-20 20:32:31 +0000477 bool phys_active = false;
478
479 /*
480 * Update the timer output so that it is likely to match the
481 * state we're about to restore. If the timer expires between
482 * this point and the register restoration, we'll take the
483 * interrupt anyway.
484 */
485 kvm_timer_update_irq(ctx->vcpu, kvm_timer_should_fire(ctx), ctx);
Marc Zyngier53e72402013-01-23 13:21:58 -0500486
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100487 if (irqchip_in_kernel(vcpu->kvm))
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100488 phys_active = kvm_vgic_map_is_active(vcpu, ctx->irq.irq);
Marc Zyngierbae561c2019-01-20 20:32:31 +0000489
490 phys_active |= ctx->irq.level;
491
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100492 set_timer_irq_phys_active(ctx, phys_active);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200493}
Marc Zyngier9b4a3002016-01-29 19:04:48 +0000494
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100495static void kvm_timer_vcpu_load_nogic(struct kvm_vcpu *vcpu)
Christoffer Dallb103cc32016-10-16 20:30:38 +0200496{
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100497 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
498
499 /*
Christoffer Dall6bc21002019-04-25 13:57:40 +0100500 * Update the timer output so that it is likely to match the
501 * state we're about to restore. If the timer expires between
502 * this point and the register restoration, we'll take the
503 * interrupt anyway.
504 */
505 kvm_timer_update_irq(vcpu, kvm_timer_should_fire(vtimer), vtimer);
506
507 /*
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100508 * When using a userspace irqchip with the architected timers and a
509 * host interrupt controller that doesn't support an active state, we
510 * must still prevent continuously exiting from the guest, and
511 * therefore mask the physical interrupt by disabling it on the host
512 * interrupt controller when the virtual level is high, such that the
513 * guest can make forward progress. Once we detect the output level
514 * being de-asserted, we unmask the interrupt again so that we exit
515 * from the guest when the timer fires.
516 */
517 if (vtimer->irq.level)
518 disable_percpu_irq(host_vtimer_irq);
519 else
520 enable_percpu_irq(host_vtimer_irq, host_vtimer_irq_flags);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200521}
522
523void kvm_timer_vcpu_load(struct kvm_vcpu *vcpu)
524{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700525 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100526 struct timer_map map;
Christoffer Dallb103cc32016-10-16 20:30:38 +0200527
528 if (unlikely(!timer->enabled))
529 return;
530
Christoffer Dallbee038a62019-01-04 13:31:22 +0100531 get_timer_map(vcpu, &map);
532
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100533 if (static_branch_likely(&has_gic_active_state)) {
Christoffer Dallbee038a62019-01-04 13:31:22 +0100534 kvm_timer_vcpu_load_gic(map.direct_vtimer);
535 if (map.direct_ptimer)
536 kvm_timer_vcpu_load_gic(map.direct_ptimer);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100537 } else {
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100538 kvm_timer_vcpu_load_nogic(vcpu);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100539 }
Christoffer Dallb103cc32016-10-16 20:30:38 +0200540
Christoffer Dallbee038a62019-01-04 13:31:22 +0100541 set_cntvoff(map.direct_vtimer->cntvoff);
Christoffer Dall245715c2018-07-25 10:21:28 +0100542
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100543 kvm_timer_unblocking(vcpu);
544
Christoffer Dallbee038a62019-01-04 13:31:22 +0100545 timer_restore_state(map.direct_vtimer);
546 if (map.direct_ptimer)
547 timer_restore_state(map.direct_ptimer);
548
549 if (map.emul_ptimer)
550 timer_emulate(map.emul_ptimer);
Marc Zyngier53e72402013-01-23 13:21:58 -0500551}
552
Alexander Grafd9e13972016-09-27 21:08:06 +0200553bool kvm_timer_should_notify_user(struct kvm_vcpu *vcpu)
554{
555 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
556 struct arch_timer_context *ptimer = vcpu_ptimer(vcpu);
557 struct kvm_sync_regs *sregs = &vcpu->run->s.regs;
558 bool vlevel, plevel;
559
560 if (likely(irqchip_in_kernel(vcpu->kvm)))
561 return false;
562
563 vlevel = sregs->device_irq_level & KVM_ARM_DEV_EL1_VTIMER;
564 plevel = sregs->device_irq_level & KVM_ARM_DEV_EL1_PTIMER;
565
Christoffer Dall13e59ec2018-01-25 14:20:19 +0100566 return kvm_timer_should_fire(vtimer) != vlevel ||
567 kvm_timer_should_fire(ptimer) != plevel;
Alexander Grafd9e13972016-09-27 21:08:06 +0200568}
569
Christoffer Dallb103cc32016-10-16 20:30:38 +0200570void kvm_timer_vcpu_put(struct kvm_vcpu *vcpu)
571{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700572 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100573 struct timer_map map;
Christoffer Dall688c50a2017-01-04 16:10:28 +0100574
Christoffer Dallb103cc32016-10-16 20:30:38 +0200575 if (unlikely(!timer->enabled))
576 return;
577
Christoffer Dallbee038a62019-01-04 13:31:22 +0100578 get_timer_map(vcpu, &map);
579
580 timer_save_state(map.direct_vtimer);
581 if (map.direct_ptimer)
582 timer_save_state(map.direct_ptimer);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200583
584 /*
Christoffer Dallbee038a62019-01-04 13:31:22 +0100585 * Cancel soft timer emulation, because the only case where we
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700586 * need it after a vcpu_put is in the context of a sleeping VCPU, and
587 * in that case we already factor in the deadline for the physical
588 * timer when scheduling the bg_timer.
589 *
590 * In any case, we re-schedule the hrtimer for the physical timer when
591 * coming back to the VCPU thread in kvm_timer_vcpu_load().
592 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100593 if (map.emul_ptimer)
594 soft_timer_cancel(&map.emul_ptimer->hrtimer);
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700595
Christoffer Dallaccb99b2018-11-26 18:21:22 +0100596 if (swait_active(kvm_arch_vcpu_wq(vcpu)))
597 kvm_timer_blocking(vcpu);
598
Christoffer Dallbbdd52c2017-06-18 01:42:55 -0700599 /*
Christoffer Dallb103cc32016-10-16 20:30:38 +0200600 * The kernel may decide to run userspace after calling vcpu_put, so
601 * we reset cntvoff to 0 to ensure a consistent read between user
602 * accesses to the virtual counter and kernel access to the physical
Shanker Donthineni250be9d2018-02-19 09:38:07 -0600603 * counter of non-VHE case. For VHE, the virtual counter uses a fixed
604 * virtual offset of zero, so no need to zero CNTVOFF_EL2 register.
Christoffer Dallb103cc32016-10-16 20:30:38 +0200605 */
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100606 set_cntvoff(0);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200607}
608
Christoffer Dall4c60e362017-10-27 19:34:30 +0200609/*
610 * With a userspace irqchip we have to check if the guest de-asserted the
611 * timer and if so, unmask the timer irq signal on the host interrupt
612 * controller to ensure that we see future timer signals.
613 */
614static void unmask_vtimer_irq_user(struct kvm_vcpu *vcpu)
Christoffer Dallb103cc32016-10-16 20:30:38 +0200615{
616 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
617
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100618 if (!kvm_timer_should_fire(vtimer)) {
619 kvm_timer_update_irq(vcpu, false, vtimer);
620 if (static_branch_likely(&has_gic_active_state))
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100621 set_timer_irq_phys_active(vtimer, false);
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100622 else
623 enable_percpu_irq(host_vtimer_irq, host_vtimer_irq_flags);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200624 }
Alexander Grafd9e13972016-09-27 21:08:06 +0200625}
626
Marc Zyngier53e72402013-01-23 13:21:58 -0500627void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu)
628{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700629 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100630
631 if (unlikely(!timer->enabled))
632 return;
633
634 if (unlikely(!irqchip_in_kernel(vcpu->kvm)))
635 unmask_vtimer_irq_user(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500636}
637
Christoffer Dall85e69ad2017-05-02 20:14:06 +0200638int kvm_timer_vcpu_reset(struct kvm_vcpu *vcpu)
Anup Patel5ae7f872013-04-30 12:02:15 +0530639{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700640 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100641 struct timer_map map;
642
643 get_timer_map(vcpu, &map);
Anup Patel5ae7f872013-04-30 12:02:15 +0530644
645 /*
Christoffer Dall4ad9e162015-09-04 16:24:39 +0200646 * The bits in CNTV_CTL are architecturally reset to UNKNOWN for ARMv8
647 * and to 0 for ARMv7. We provide an implementation that always
648 * resets the timer to be disabled and unmasked and is compliant with
649 * the ARMv7 architecture.
650 */
Christoffer Dallbee038a62019-01-04 13:31:22 +0100651 vcpu_vtimer(vcpu)->cnt_ctl = 0;
652 vcpu_ptimer(vcpu)->cnt_ctl = 0;
Christoffer Dall4ad9e162015-09-04 16:24:39 +0200653
Christoffer Dallbee038a62019-01-04 13:31:22 +0100654 if (timer->enabled) {
655 kvm_timer_update_irq(vcpu, false, vcpu_vtimer(vcpu));
656 kvm_timer_update_irq(vcpu, false, vcpu_ptimer(vcpu));
657
658 if (irqchip_in_kernel(vcpu->kvm)) {
659 kvm_vgic_reset_mapped_irq(vcpu, map.direct_vtimer->irq.irq);
660 if (map.direct_ptimer)
661 kvm_vgic_reset_mapped_irq(vcpu, map.direct_ptimer->irq.irq);
662 }
663 }
664
665 if (map.emul_ptimer)
666 soft_timer_cancel(&map.emul_ptimer->hrtimer);
Christoffer Dall413aa802018-03-05 11:36:38 +0100667
Christoffer Dall41a54482016-05-18 16:26:00 +0100668 return 0;
Anup Patel5ae7f872013-04-30 12:02:15 +0530669}
670
Jintack Lim90de9432017-02-03 10:20:00 -0500671/* Make the updates of cntvoff for all vtimer contexts atomic */
672static void update_vtimer_cntvoff(struct kvm_vcpu *vcpu, u64 cntvoff)
673{
674 int i;
675 struct kvm *kvm = vcpu->kvm;
676 struct kvm_vcpu *tmp;
677
678 mutex_lock(&kvm->lock);
679 kvm_for_each_vcpu(i, tmp, kvm)
680 vcpu_vtimer(tmp)->cntvoff = cntvoff;
681
682 /*
683 * When called from the vcpu create path, the CPU being created is not
684 * included in the loop above, so we just set it here as well.
685 */
686 vcpu_vtimer(vcpu)->cntvoff = cntvoff;
687 mutex_unlock(&kvm->lock);
688}
689
Marc Zyngier53e72402013-01-23 13:21:58 -0500690void kvm_timer_vcpu_init(struct kvm_vcpu *vcpu)
691{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700692 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dall85e69ad2017-05-02 20:14:06 +0200693 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
694 struct arch_timer_context *ptimer = vcpu_ptimer(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500695
Jintack Lim90de9432017-02-03 10:20:00 -0500696 /* Synchronize cntvoff across all vtimers of a VM. */
697 update_vtimer_cntvoff(vcpu, kvm_phys_timer_read());
Christoffer Dalle604dd52018-09-18 10:08:18 -0700698 ptimer->cntvoff = 0;
Jintack Lim90de9432017-02-03 10:20:00 -0500699
Christoffer Dall14d61fa2017-06-17 07:33:02 -0700700 hrtimer_init(&timer->bg_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
701 timer->bg_timer.function = kvm_bg_timer_expire;
Christoffer Dall85e69ad2017-05-02 20:14:06 +0200702
Christoffer Dallbee038a62019-01-04 13:31:22 +0100703 hrtimer_init(&vtimer->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Christoffer Dalle604dd52018-09-18 10:08:18 -0700704 hrtimer_init(&ptimer->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Christoffer Dallbee038a62019-01-04 13:31:22 +0100705 vtimer->hrtimer.function = kvm_hrtimer_expire;
706 ptimer->hrtimer.function = kvm_hrtimer_expire;
Christoffer Dallf2a21292017-06-18 00:32:08 -0700707
Christoffer Dall85e69ad2017-05-02 20:14:06 +0200708 vtimer->irq.irq = default_vtimer_irq.irq;
709 ptimer->irq.irq = default_ptimer_irq.irq;
Christoffer Dallbee038a62019-01-04 13:31:22 +0100710
711 vtimer->host_timer_irq = host_vtimer_irq;
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100712 ptimer->host_timer_irq = host_ptimer_irq;
Christoffer Dallbee038a62019-01-04 13:31:22 +0100713
714 vtimer->host_timer_irq_flags = host_vtimer_irq_flags;
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100715 ptimer->host_timer_irq_flags = host_ptimer_irq_flags;
Christoffer Dalle604dd52018-09-18 10:08:18 -0700716
717 vtimer->vcpu = vcpu;
718 ptimer->vcpu = vcpu;
Marc Zyngier53e72402013-01-23 13:21:58 -0500719}
720
721static void kvm_timer_init_interrupt(void *info)
722{
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100723 enable_percpu_irq(host_vtimer_irq, host_vtimer_irq_flags);
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100724 enable_percpu_irq(host_ptimer_irq, host_ptimer_irq_flags);
Marc Zyngier53e72402013-01-23 13:21:58 -0500725}
726
Andre Przywara39735a32013-12-13 14:23:26 +0100727int kvm_arm_timer_set_reg(struct kvm_vcpu *vcpu, u64 regid, u64 value)
728{
Christoffer Dallbee038a62019-01-04 13:31:22 +0100729 struct arch_timer_context *timer;
Christoffer Dallbee038a62019-01-04 13:31:22 +0100730
Andre Przywara39735a32013-12-13 14:23:26 +0100731 switch (regid) {
732 case KVM_REG_ARM_TIMER_CTL:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100733 timer = vcpu_vtimer(vcpu);
734 kvm_arm_timer_write(vcpu, timer, TIMER_REG_CTL, value);
Andre Przywara39735a32013-12-13 14:23:26 +0100735 break;
736 case KVM_REG_ARM_TIMER_CNT:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100737 timer = vcpu_vtimer(vcpu);
Jintack Lim90de9432017-02-03 10:20:00 -0500738 update_vtimer_cntvoff(vcpu, kvm_phys_timer_read() - value);
Andre Przywara39735a32013-12-13 14:23:26 +0100739 break;
740 case KVM_REG_ARM_TIMER_CVAL:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100741 timer = vcpu_vtimer(vcpu);
742 kvm_arm_timer_write(vcpu, timer, TIMER_REG_CVAL, value);
Andre Przywara39735a32013-12-13 14:23:26 +0100743 break;
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700744 case KVM_REG_ARM_PTIMER_CTL:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100745 timer = vcpu_ptimer(vcpu);
746 kvm_arm_timer_write(vcpu, timer, TIMER_REG_CTL, value);
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700747 break;
748 case KVM_REG_ARM_PTIMER_CVAL:
Christoffer Dallbee038a62019-01-04 13:31:22 +0100749 timer = vcpu_ptimer(vcpu);
750 kvm_arm_timer_write(vcpu, timer, TIMER_REG_CVAL, value);
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700751 break;
752
Andre Przywara39735a32013-12-13 14:23:26 +0100753 default:
754 return -1;
755 }
Christoffer Dall4b4b4512015-08-30 15:01:27 +0200756
Andre Przywara39735a32013-12-13 14:23:26 +0100757 return 0;
758}
759
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700760static u64 read_timer_ctl(struct arch_timer_context *timer)
761{
762 /*
763 * Set ISTATUS bit if it's expired.
764 * Note that according to ARMv8 ARM Issue A.k, ISTATUS bit is
765 * UNKNOWN when ENABLE bit is 0, so we chose to set ISTATUS bit
766 * regardless of ENABLE bit for our implementation convenience.
767 */
768 if (!kvm_timer_compute_delta(timer))
769 return timer->cnt_ctl | ARCH_TIMER_CTRL_IT_STAT;
770 else
771 return timer->cnt_ctl;
772}
773
Andre Przywara39735a32013-12-13 14:23:26 +0100774u64 kvm_arm_timer_get_reg(struct kvm_vcpu *vcpu, u64 regid)
775{
Andre Przywara39735a32013-12-13 14:23:26 +0100776 switch (regid) {
777 case KVM_REG_ARM_TIMER_CTL:
Andre Przywara84135d32018-07-05 16:48:23 +0100778 return kvm_arm_timer_read(vcpu,
779 vcpu_vtimer(vcpu), TIMER_REG_CTL);
Andre Przywara39735a32013-12-13 14:23:26 +0100780 case KVM_REG_ARM_TIMER_CNT:
Andre Przywara84135d32018-07-05 16:48:23 +0100781 return kvm_arm_timer_read(vcpu,
782 vcpu_vtimer(vcpu), TIMER_REG_CNT);
Andre Przywara39735a32013-12-13 14:23:26 +0100783 case KVM_REG_ARM_TIMER_CVAL:
Andre Przywara84135d32018-07-05 16:48:23 +0100784 return kvm_arm_timer_read(vcpu,
785 vcpu_vtimer(vcpu), TIMER_REG_CVAL);
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700786 case KVM_REG_ARM_PTIMER_CTL:
Andre Przywara84135d32018-07-05 16:48:23 +0100787 return kvm_arm_timer_read(vcpu,
788 vcpu_ptimer(vcpu), TIMER_REG_CTL);
Christoffer Dall5c5196d2017-06-16 23:08:57 -0700789 case KVM_REG_ARM_PTIMER_CNT:
Andre Przywara84135d32018-07-05 16:48:23 +0100790 return kvm_arm_timer_read(vcpu,
791 vcpu_vtimer(vcpu), TIMER_REG_CNT);
792 case KVM_REG_ARM_PTIMER_CVAL:
793 return kvm_arm_timer_read(vcpu,
794 vcpu_ptimer(vcpu), TIMER_REG_CVAL);
Andre Przywara39735a32013-12-13 14:23:26 +0100795 }
796 return (u64)-1;
797}
Marc Zyngier53e72402013-01-23 13:21:58 -0500798
Andre Przywara84135d32018-07-05 16:48:23 +0100799static u64 kvm_arm_timer_read(struct kvm_vcpu *vcpu,
800 struct arch_timer_context *timer,
801 enum kvm_arch_timer_regs treg)
802{
803 u64 val;
804
805 switch (treg) {
806 case TIMER_REG_TVAL:
Wei Huang8fa76162019-03-29 15:12:53 -0500807 val = timer->cnt_cval - kvm_phys_timer_read() + timer->cntvoff;
Andre Przywara84135d32018-07-05 16:48:23 +0100808 break;
809
810 case TIMER_REG_CTL:
811 val = read_timer_ctl(timer);
812 break;
813
814 case TIMER_REG_CVAL:
815 val = timer->cnt_cval;
816 break;
817
818 case TIMER_REG_CNT:
819 val = kvm_phys_timer_read() - timer->cntvoff;
820 break;
821
822 default:
823 BUG();
824 }
825
826 return val;
827}
828
829u64 kvm_arm_timer_read_sysreg(struct kvm_vcpu *vcpu,
830 enum kvm_arch_timers tmr,
831 enum kvm_arch_timer_regs treg)
832{
833 u64 val;
834
835 preempt_disable();
836 kvm_timer_vcpu_put(vcpu);
837
838 val = kvm_arm_timer_read(vcpu, vcpu_get_timer(vcpu, tmr), treg);
839
840 kvm_timer_vcpu_load(vcpu);
841 preempt_enable();
842
843 return val;
844}
845
846static void kvm_arm_timer_write(struct kvm_vcpu *vcpu,
847 struct arch_timer_context *timer,
848 enum kvm_arch_timer_regs treg,
849 u64 val)
850{
851 switch (treg) {
852 case TIMER_REG_TVAL:
Wei Huang8fa76162019-03-29 15:12:53 -0500853 timer->cnt_cval = kvm_phys_timer_read() - timer->cntvoff + val;
Andre Przywara84135d32018-07-05 16:48:23 +0100854 break;
855
856 case TIMER_REG_CTL:
857 timer->cnt_ctl = val & ~ARCH_TIMER_CTRL_IT_STAT;
858 break;
859
860 case TIMER_REG_CVAL:
861 timer->cnt_cval = val;
862 break;
863
864 default:
865 BUG();
866 }
867}
868
869void kvm_arm_timer_write_sysreg(struct kvm_vcpu *vcpu,
870 enum kvm_arch_timers tmr,
871 enum kvm_arch_timer_regs treg,
872 u64 val)
873{
874 preempt_disable();
875 kvm_timer_vcpu_put(vcpu);
876
877 kvm_arm_timer_write(vcpu, vcpu_get_timer(vcpu, tmr), treg, val);
878
879 kvm_timer_vcpu_load(vcpu);
880 preempt_enable();
881}
882
Richard Cochranb3c99502016-07-13 17:16:47 +0000883static int kvm_timer_starting_cpu(unsigned int cpu)
Marc Zyngier53e72402013-01-23 13:21:58 -0500884{
Richard Cochranb3c99502016-07-13 17:16:47 +0000885 kvm_timer_init_interrupt(NULL);
886 return 0;
Marc Zyngier53e72402013-01-23 13:21:58 -0500887}
888
Richard Cochranb3c99502016-07-13 17:16:47 +0000889static int kvm_timer_dying_cpu(unsigned int cpu)
890{
891 disable_percpu_irq(host_vtimer_irq);
892 return 0;
893}
Marc Zyngier53e72402013-01-23 13:21:58 -0500894
Marc Zyngierf384dcf2017-12-07 11:46:15 +0000895int kvm_timer_hyp_init(bool has_gic)
Marc Zyngier53e72402013-01-23 13:21:58 -0500896{
Julien Grall29c2d6f2016-04-11 16:32:58 +0100897 struct arch_timer_kvm_info *info;
Marc Zyngier53e72402013-01-23 13:21:58 -0500898 int err;
899
Julien Grall29c2d6f2016-04-11 16:32:58 +0100900 info = arch_timer_get_kvm_info();
901 timecounter = &info->timecounter;
Marc Zyngier53e72402013-01-23 13:21:58 -0500902
Christoffer Dall8e1a0472016-12-05 10:32:11 +0100903 if (!timecounter->cc) {
904 kvm_err("kvm_arch_timer: uninitialized timecounter\n");
905 return -ENODEV;
906 }
907
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100908 /* First, do the virtual EL1 timer irq */
909
Julien Grall29c2d6f2016-04-11 16:32:58 +0100910 if (info->virtual_irq <= 0) {
911 kvm_err("kvm_arch_timer: invalid virtual timer IRQ: %d\n",
912 info->virtual_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500913 return -ENODEV;
914 }
Julien Grall29c2d6f2016-04-11 16:32:58 +0100915 host_vtimer_irq = info->virtual_irq;
Marc Zyngier53e72402013-01-23 13:21:58 -0500916
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100917 host_vtimer_irq_flags = irq_get_trigger_type(host_vtimer_irq);
918 if (host_vtimer_irq_flags != IRQF_TRIGGER_HIGH &&
919 host_vtimer_irq_flags != IRQF_TRIGGER_LOW) {
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100920 kvm_err("Invalid trigger for vtimer IRQ%d, assuming level low\n",
Marc Zyngiercabdc5c2016-08-16 15:03:02 +0100921 host_vtimer_irq);
922 host_vtimer_irq_flags = IRQF_TRIGGER_LOW;
923 }
924
Julien Grall29c2d6f2016-04-11 16:32:58 +0100925 err = request_percpu_irq(host_vtimer_irq, kvm_arch_timer_handler,
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100926 "kvm guest vtimer", kvm_get_running_vcpus());
Marc Zyngier53e72402013-01-23 13:21:58 -0500927 if (err) {
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100928 kvm_err("kvm_arch_timer: can't request vtimer interrupt %d (%d)\n",
Julien Grall29c2d6f2016-04-11 16:32:58 +0100929 host_vtimer_irq, err);
Paolo Bonzini5d947a12016-09-08 12:45:59 +0200930 return err;
Marc Zyngier53e72402013-01-23 13:21:58 -0500931 }
932
Marc Zyngierf384dcf2017-12-07 11:46:15 +0000933 if (has_gic) {
934 err = irq_set_vcpu_affinity(host_vtimer_irq,
935 kvm_get_running_vcpus());
936 if (err) {
937 kvm_err("kvm_arch_timer: error setting vcpu affinity\n");
938 goto out_free_irq;
939 }
Christoffer Dalld60d8b62018-01-26 16:06:51 +0100940
941 static_branch_enable(&has_gic_active_state);
Christoffer Dall40f4cba2017-07-05 12:50:27 +0200942 }
943
Ard Biesheuvel76600422018-03-02 08:16:30 +0000944 kvm_debug("virtual timer IRQ%d\n", host_vtimer_irq);
Marc Zyngier53e72402013-01-23 13:21:58 -0500945
Christoffer Dall9e01dc72019-02-19 14:04:30 +0100946 /* Now let's do the physical EL1 timer irq */
947
948 if (info->physical_irq > 0) {
949 host_ptimer_irq = info->physical_irq;
950 host_ptimer_irq_flags = irq_get_trigger_type(host_ptimer_irq);
951 if (host_ptimer_irq_flags != IRQF_TRIGGER_HIGH &&
952 host_ptimer_irq_flags != IRQF_TRIGGER_LOW) {
953 kvm_err("Invalid trigger for ptimer IRQ%d, assuming level low\n",
954 host_ptimer_irq);
955 host_ptimer_irq_flags = IRQF_TRIGGER_LOW;
956 }
957
958 err = request_percpu_irq(host_ptimer_irq, kvm_arch_timer_handler,
959 "kvm guest ptimer", kvm_get_running_vcpus());
960 if (err) {
961 kvm_err("kvm_arch_timer: can't request ptimer interrupt %d (%d)\n",
962 host_ptimer_irq, err);
963 return err;
964 }
965
966 if (has_gic) {
967 err = irq_set_vcpu_affinity(host_ptimer_irq,
968 kvm_get_running_vcpus());
969 if (err) {
970 kvm_err("kvm_arch_timer: error setting vcpu affinity\n");
971 goto out_free_irq;
972 }
973 }
974
975 kvm_debug("physical timer IRQ%d\n", host_ptimer_irq);
976 } else if (has_vhe()) {
977 kvm_err("kvm_arch_timer: invalid physical timer IRQ: %d\n",
978 info->physical_irq);
979 err = -ENODEV;
980 goto out_free_irq;
981 }
982
Richard Cochranb3c99502016-07-13 17:16:47 +0000983 cpuhp_setup_state(CPUHP_AP_KVM_ARM_TIMER_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +0100984 "kvm/arm/timer:starting", kvm_timer_starting_cpu,
Richard Cochranb3c99502016-07-13 17:16:47 +0000985 kvm_timer_dying_cpu);
Christoffer Dall40f4cba2017-07-05 12:50:27 +0200986 return 0;
987out_free_irq:
988 free_percpu_irq(host_vtimer_irq, kvm_get_running_vcpus());
Marc Zyngier53e72402013-01-23 13:21:58 -0500989 return err;
990}
991
992void kvm_timer_vcpu_terminate(struct kvm_vcpu *vcpu)
993{
Christoffer Dalle604dd52018-09-18 10:08:18 -0700994 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Marc Zyngier53e72402013-01-23 13:21:58 -0500995
Christoffer Dall8a411b02018-11-27 13:48:08 +0100996 soft_timer_cancel(&timer->bg_timer);
Marc Zyngier53e72402013-01-23 13:21:58 -0500997}
998
Christoffer Dallabcb8512017-05-04 13:32:53 +0200999static bool timer_irqs_are_valid(struct kvm_vcpu *vcpu)
Christoffer Dall99a1db72017-05-02 20:19:15 +02001000{
Christoffer Dall99a1db72017-05-02 20:19:15 +02001001 int vtimer_irq, ptimer_irq;
Christoffer Dallabcb8512017-05-04 13:32:53 +02001002 int i, ret;
Christoffer Dall99a1db72017-05-02 20:19:15 +02001003
Christoffer Dall99a1db72017-05-02 20:19:15 +02001004 vtimer_irq = vcpu_vtimer(vcpu)->irq.irq;
Christoffer Dallabcb8512017-05-04 13:32:53 +02001005 ret = kvm_vgic_set_owner(vcpu, vtimer_irq, vcpu_vtimer(vcpu));
1006 if (ret)
Christoffer Dall99a1db72017-05-02 20:19:15 +02001007 return false;
1008
Christoffer Dallabcb8512017-05-04 13:32:53 +02001009 ptimer_irq = vcpu_ptimer(vcpu)->irq.irq;
1010 ret = kvm_vgic_set_owner(vcpu, ptimer_irq, vcpu_ptimer(vcpu));
1011 if (ret)
1012 return false;
1013
1014 kvm_for_each_vcpu(i, vcpu, vcpu->kvm) {
Christoffer Dall99a1db72017-05-02 20:19:15 +02001015 if (vcpu_vtimer(vcpu)->irq.irq != vtimer_irq ||
1016 vcpu_ptimer(vcpu)->irq.irq != ptimer_irq)
1017 return false;
1018 }
1019
1020 return true;
1021}
1022
Christoffer Dall4c60e362017-10-27 19:34:30 +02001023bool kvm_arch_timer_get_input_level(int vintid)
1024{
1025 struct kvm_vcpu *vcpu = kvm_arm_get_running_vcpu();
1026 struct arch_timer_context *timer;
1027
1028 if (vintid == vcpu_vtimer(vcpu)->irq.irq)
1029 timer = vcpu_vtimer(vcpu);
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001030 else if (vintid == vcpu_ptimer(vcpu)->irq.irq)
1031 timer = vcpu_ptimer(vcpu);
Christoffer Dall4c60e362017-10-27 19:34:30 +02001032 else
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001033 BUG();
Christoffer Dall4c60e362017-10-27 19:34:30 +02001034
Christoffer Dall4c60e362017-10-27 19:34:30 +02001035 return kvm_timer_should_fire(timer);
1036}
1037
Christoffer Dall41a54482016-05-18 16:26:00 +01001038int kvm_timer_enable(struct kvm_vcpu *vcpu)
Marc Zyngier53e72402013-01-23 13:21:58 -05001039{
Christoffer Dalle604dd52018-09-18 10:08:18 -07001040 struct arch_timer_cpu *timer = vcpu_timer(vcpu);
Christoffer Dallbee038a62019-01-04 13:31:22 +01001041 struct timer_map map;
Christoffer Dall41a54482016-05-18 16:26:00 +01001042 int ret;
1043
1044 if (timer->enabled)
1045 return 0;
1046
Alexander Grafd9e13972016-09-27 21:08:06 +02001047 /* Without a VGIC we do not map virtual IRQs to physical IRQs */
1048 if (!irqchip_in_kernel(vcpu->kvm))
1049 goto no_vgic;
1050
1051 if (!vgic_initialized(vcpu->kvm))
1052 return -ENODEV;
1053
Christoffer Dallabcb8512017-05-04 13:32:53 +02001054 if (!timer_irqs_are_valid(vcpu)) {
Christoffer Dall99a1db72017-05-02 20:19:15 +02001055 kvm_debug("incorrectly configured timer irqs\n");
1056 return -EINVAL;
1057 }
1058
Christoffer Dallbee038a62019-01-04 13:31:22 +01001059 get_timer_map(vcpu, &map);
1060
1061 ret = kvm_vgic_map_phys_irq(vcpu,
1062 map.direct_vtimer->host_timer_irq,
1063 map.direct_vtimer->irq.irq,
Christoffer Dall4c60e362017-10-27 19:34:30 +02001064 kvm_arch_timer_get_input_level);
Christoffer Dall41a54482016-05-18 16:26:00 +01001065 if (ret)
1066 return ret;
1067
Christoffer Dallbee038a62019-01-04 13:31:22 +01001068 if (map.direct_ptimer) {
1069 ret = kvm_vgic_map_phys_irq(vcpu,
1070 map.direct_ptimer->host_timer_irq,
1071 map.direct_ptimer->irq.irq,
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001072 kvm_arch_timer_get_input_level);
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001073 }
1074
Christoffer Dallbee038a62019-01-04 13:31:22 +01001075 if (ret)
1076 return ret;
1077
Alexander Grafd9e13972016-09-27 21:08:06 +02001078no_vgic:
Longpeng(Mike)fd5ebf92016-11-09 10:50:14 +08001079 timer->enabled = 1;
Christoffer Dall41a54482016-05-18 16:26:00 +01001080 return 0;
Christoffer Dall05971122014-12-12 21:19:23 +01001081}
1082
Jintack Lim488f94d2016-12-01 14:32:05 -05001083/*
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001084 * On VHE system, we only need to configure the EL2 timer trap register once,
1085 * not for every world switch.
Jintack Lim488f94d2016-12-01 14:32:05 -05001086 * The host kernel runs at EL2 with HCR_EL2.TGE == 1,
1087 * and this makes those bits have no effect for the host kernel execution.
1088 */
1089void kvm_timer_init_vhe(void)
1090{
1091 /* When HCR_EL2.E2H ==1, EL1PCEN and EL1PCTEN are shifted by 10 */
1092 u32 cnthctl_shift = 10;
1093 u64 val;
1094
1095 /*
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001096 * VHE systems allow the guest direct access to the EL1 physical
1097 * timer/counter.
Jintack Lim488f94d2016-12-01 14:32:05 -05001098 */
1099 val = read_sysreg(cnthctl_el2);
Christoffer Dall9e01dc72019-02-19 14:04:30 +01001100 val |= (CNTHCTL_EL1PCEN << cnthctl_shift);
Jintack Lim488f94d2016-12-01 14:32:05 -05001101 val |= (CNTHCTL_EL1PCTEN << cnthctl_shift);
1102 write_sysreg(val, cnthctl_el2);
1103}
Christoffer Dall99a1db72017-05-02 20:19:15 +02001104
1105static void set_timer_irqs(struct kvm *kvm, int vtimer_irq, int ptimer_irq)
1106{
1107 struct kvm_vcpu *vcpu;
1108 int i;
1109
1110 kvm_for_each_vcpu(i, vcpu, kvm) {
1111 vcpu_vtimer(vcpu)->irq.irq = vtimer_irq;
1112 vcpu_ptimer(vcpu)->irq.irq = ptimer_irq;
1113 }
1114}
1115
1116int kvm_arm_timer_set_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr)
1117{
1118 int __user *uaddr = (int __user *)(long)attr->addr;
1119 struct arch_timer_context *vtimer = vcpu_vtimer(vcpu);
1120 struct arch_timer_context *ptimer = vcpu_ptimer(vcpu);
1121 int irq;
1122
1123 if (!irqchip_in_kernel(vcpu->kvm))
1124 return -EINVAL;
1125
1126 if (get_user(irq, uaddr))
1127 return -EFAULT;
1128
1129 if (!(irq_is_ppi(irq)))
1130 return -EINVAL;
1131
1132 if (vcpu->arch.timer_cpu.enabled)
1133 return -EBUSY;
1134
1135 switch (attr->attr) {
1136 case KVM_ARM_VCPU_TIMER_IRQ_VTIMER:
1137 set_timer_irqs(vcpu->kvm, irq, ptimer->irq.irq);
1138 break;
1139 case KVM_ARM_VCPU_TIMER_IRQ_PTIMER:
1140 set_timer_irqs(vcpu->kvm, vtimer->irq.irq, irq);
1141 break;
1142 default:
1143 return -ENXIO;
1144 }
1145
1146 return 0;
1147}
1148
1149int kvm_arm_timer_get_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr)
1150{
1151 int __user *uaddr = (int __user *)(long)attr->addr;
1152 struct arch_timer_context *timer;
1153 int irq;
1154
1155 switch (attr->attr) {
1156 case KVM_ARM_VCPU_TIMER_IRQ_VTIMER:
1157 timer = vcpu_vtimer(vcpu);
1158 break;
1159 case KVM_ARM_VCPU_TIMER_IRQ_PTIMER:
1160 timer = vcpu_ptimer(vcpu);
1161 break;
1162 default:
1163 return -ENXIO;
1164 }
1165
1166 irq = timer->irq.irq;
1167 return put_user(irq, uaddr);
1168}
1169
1170int kvm_arm_timer_has_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr)
1171{
1172 switch (attr->attr) {
1173 case KVM_ARM_VCPU_TIMER_IRQ_VTIMER:
1174 case KVM_ARM_VCPU_TIMER_IRQ_PTIMER:
1175 return 0;
1176 }
1177
1178 return -ENXIO;
1179}