blob: 188d82762c1bbcbaba59d33c0d87857adf536dba [file] [log] [blame]
Sheng Yang78376992008-01-28 05:10:22 +08001/*
2 * 8253/8254 interval timer emulation
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 * Copyright (c) 2006 Intel Corporation
6 * Copyright (c) 2007 Keir Fraser, XenSource Inc
7 * Copyright (c) 2008 Intel Corporation
Avi Kivity221d0592010-05-23 18:37:00 +03008 * Copyright 2009 Red Hat, Inc. and/or its affilates.
Sheng Yang78376992008-01-28 05:10:22 +08009 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 *
28 * Authors:
29 * Sheng Yang <sheng.yang@intel.com>
30 * Based on QEMU and Xen.
31 */
32
Joe Perchesa78d96262009-12-09 10:45:35 -080033#define pr_fmt(fmt) "pit: " fmt
34
Sheng Yang78376992008-01-28 05:10:22 +080035#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Sheng Yang78376992008-01-28 05:10:22 +080037
38#include "irq.h"
39#include "i8254.h"
40
41#ifndef CONFIG_X86_64
Roman Zippel6f6d6a12008-05-01 04:34:28 -070042#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
Sheng Yang78376992008-01-28 05:10:22 +080043#else
44#define mod_64(x, y) ((x) % (y))
45#endif
46
47#define RW_STATE_LSB 1
48#define RW_STATE_MSB 2
49#define RW_STATE_WORD0 3
50#define RW_STATE_WORD1 4
51
52/* Compute with 96 bit intermediate result: (a*b)/c */
53static u64 muldiv64(u64 a, u32 b, u32 c)
54{
55 union {
56 u64 ll;
57 struct {
58 u32 low, high;
59 } l;
60 } u, res;
61 u64 rl, rh;
62
63 u.ll = a;
64 rl = (u64)u.l.low * (u64)b;
65 rh = (u64)u.l.high * (u64)b;
66 rh += (rl >> 32);
Roman Zippel6f6d6a12008-05-01 04:34:28 -070067 res.l.high = div64_u64(rh, c);
68 res.l.low = div64_u64(((mod_64(rh, c) << 32) + (rl & 0xffffffff)), c);
Sheng Yang78376992008-01-28 05:10:22 +080069 return res.ll;
70}
71
72static void pit_set_gate(struct kvm *kvm, int channel, u32 val)
73{
74 struct kvm_kpit_channel_state *c =
75 &kvm->arch.vpit->pit_state.channels[channel];
76
77 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
78
79 switch (c->mode) {
80 default:
81 case 0:
82 case 4:
83 /* XXX: just disable/enable counting */
84 break;
85 case 1:
86 case 2:
87 case 3:
88 case 5:
89 /* Restart counting on rising edge. */
90 if (c->gate < val)
91 c->count_load_time = ktime_get();
92 break;
93 }
94
95 c->gate = val;
96}
97
Harvey Harrison8b2cf732008-04-27 12:14:13 -070098static int pit_get_gate(struct kvm *kvm, int channel)
Sheng Yang78376992008-01-28 05:10:22 +080099{
100 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
101
102 return kvm->arch.vpit->pit_state.channels[channel].gate;
103}
104
Marcelo Tosattifd668422009-02-23 10:57:40 -0300105static s64 __kpit_elapsed(struct kvm *kvm)
106{
107 s64 elapsed;
108 ktime_t remaining;
109 struct kvm_kpit_state *ps = &kvm->arch.vpit->pit_state;
110
Marcelo Tosatti0ff77872009-07-02 20:02:15 -0300111 if (!ps->pit_timer.period)
112 return 0;
113
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300114 /*
115 * The Counter does not stop when it reaches zero. In
116 * Modes 0, 1, 4, and 5 the Counter ``wraps around'' to
117 * the highest count, either FFFF hex for binary counting
118 * or 9999 for BCD counting, and continues counting.
119 * Modes 2 and 3 are periodic; the Counter reloads
120 * itself with the initial count and continues counting
121 * from there.
122 */
Marcelo Tosattiace15462009-10-08 10:55:03 -0300123 remaining = hrtimer_get_remaining(&ps->pit_timer.timer);
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300124 elapsed = ps->pit_timer.period - ktime_to_ns(remaining);
125 elapsed = mod_64(elapsed, ps->pit_timer.period);
Marcelo Tosattifd668422009-02-23 10:57:40 -0300126
127 return elapsed;
128}
129
130static s64 kpit_elapsed(struct kvm *kvm, struct kvm_kpit_channel_state *c,
131 int channel)
132{
133 if (channel == 0)
134 return __kpit_elapsed(kvm);
135
136 return ktime_to_ns(ktime_sub(ktime_get(), c->count_load_time));
137}
138
Sheng Yang78376992008-01-28 05:10:22 +0800139static int pit_get_count(struct kvm *kvm, int channel)
140{
141 struct kvm_kpit_channel_state *c =
142 &kvm->arch.vpit->pit_state.channels[channel];
143 s64 d, t;
144 int counter;
145
146 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
147
Marcelo Tosattifd668422009-02-23 10:57:40 -0300148 t = kpit_elapsed(kvm, c, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800149 d = muldiv64(t, KVM_PIT_FREQ, NSEC_PER_SEC);
150
151 switch (c->mode) {
152 case 0:
153 case 1:
154 case 4:
155 case 5:
156 counter = (c->count - d) & 0xffff;
157 break;
158 case 3:
159 /* XXX: may be incorrect for odd counts */
160 counter = c->count - (mod_64((2 * d), c->count));
161 break;
162 default:
163 counter = c->count - mod_64(d, c->count);
164 break;
165 }
166 return counter;
167}
168
169static int pit_get_out(struct kvm *kvm, int channel)
170{
171 struct kvm_kpit_channel_state *c =
172 &kvm->arch.vpit->pit_state.channels[channel];
173 s64 d, t;
174 int out;
175
176 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
177
Marcelo Tosattifd668422009-02-23 10:57:40 -0300178 t = kpit_elapsed(kvm, c, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800179 d = muldiv64(t, KVM_PIT_FREQ, NSEC_PER_SEC);
180
181 switch (c->mode) {
182 default:
183 case 0:
184 out = (d >= c->count);
185 break;
186 case 1:
187 out = (d < c->count);
188 break;
189 case 2:
190 out = ((mod_64(d, c->count) == 0) && (d != 0));
191 break;
192 case 3:
193 out = (mod_64(d, c->count) < ((c->count + 1) >> 1));
194 break;
195 case 4:
196 case 5:
197 out = (d == c->count);
198 break;
199 }
200
201 return out;
202}
203
204static void pit_latch_count(struct kvm *kvm, int channel)
205{
206 struct kvm_kpit_channel_state *c =
207 &kvm->arch.vpit->pit_state.channels[channel];
208
209 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
210
211 if (!c->count_latched) {
212 c->latched_count = pit_get_count(kvm, channel);
213 c->count_latched = c->rw_mode;
214 }
215}
216
217static void pit_latch_status(struct kvm *kvm, int channel)
218{
219 struct kvm_kpit_channel_state *c =
220 &kvm->arch.vpit->pit_state.channels[channel];
221
222 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
223
224 if (!c->status_latched) {
225 /* TODO: Return NULL COUNT (bit 6). */
226 c->status = ((pit_get_out(kvm, channel) << 7) |
227 (c->rw_mode << 4) |
228 (c->mode << 1) |
229 c->bcd);
230 c->status_latched = 1;
231 }
232}
233
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300234int pit_has_pending_timer(struct kvm_vcpu *vcpu)
235{
236 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
237
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300238 if (pit && kvm_vcpu_is_bsp(vcpu) && pit->pit_state.irq_ack)
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300239 return atomic_read(&pit->pit_state.pit_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300240 return 0;
241}
242
Harvey Harrisonee032c92008-08-11 16:54:20 -0700243static void kvm_pit_ack_irq(struct kvm_irq_ack_notifier *kian)
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300244{
245 struct kvm_kpit_state *ps = container_of(kian, struct kvm_kpit_state,
246 irq_ack_notifier);
Thomas Gleixnerfa8273e2010-02-17 14:00:41 +0000247 raw_spin_lock(&ps->inject_lock);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300248 if (atomic_dec_return(&ps->pit_timer.pending) < 0)
Avi Kivitydc7404c2008-08-17 16:03:46 +0300249 atomic_inc(&ps->pit_timer.pending);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300250 ps->irq_ack = 1;
Thomas Gleixnerfa8273e2010-02-17 14:00:41 +0000251 raw_spin_unlock(&ps->inject_lock);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300252}
253
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300254void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu)
255{
256 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
257 struct hrtimer *timer;
258
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300259 if (!kvm_vcpu_is_bsp(vcpu) || !pit)
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300260 return;
261
262 timer = &pit->pit_state.pit_timer.timer;
263 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d52008-09-01 14:55:57 -0700264 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300265}
266
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300267static void destroy_pit_timer(struct kvm_timer *pt)
Sheng Yang78376992008-01-28 05:10:22 +0800268{
Joe Perchesa78d96262009-12-09 10:45:35 -0800269 pr_debug("execute del timer!\n");
Sheng Yang78376992008-01-28 05:10:22 +0800270 hrtimer_cancel(&pt->timer);
271}
272
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300273static bool kpit_is_periodic(struct kvm_timer *ktimer)
274{
275 struct kvm_kpit_state *ps = container_of(ktimer, struct kvm_kpit_state,
276 pit_timer);
277 return ps->is_periodic;
278}
279
Hannes Eder386eb6e2009-03-10 22:51:09 +0100280static struct kvm_timer_ops kpit_ops = {
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300281 .is_periodic = kpit_is_periodic,
282};
283
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300284static void create_pit_timer(struct kvm_kpit_state *ps, u32 val, int is_period)
Sheng Yang78376992008-01-28 05:10:22 +0800285{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300286 struct kvm_timer *pt = &ps->pit_timer;
Sheng Yang78376992008-01-28 05:10:22 +0800287 s64 interval;
288
289 interval = muldiv64(val, NSEC_PER_SEC, KVM_PIT_FREQ);
290
Joe Perchesa78d96262009-12-09 10:45:35 -0800291 pr_debug("create pit timer, interval is %llu nsec\n", interval);
Sheng Yang78376992008-01-28 05:10:22 +0800292
293 /* TODO The new value only affected after the retriggered */
294 hrtimer_cancel(&pt->timer);
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300295 pt->period = interval;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300296 ps->is_periodic = is_period;
297
298 pt->timer.function = kvm_timer_fn;
299 pt->t_ops = &kpit_ops;
300 pt->kvm = ps->pit->kvm;
Gleb Natapov1ed0ce02009-06-09 15:56:27 +0300301 pt->vcpu = pt->kvm->bsp_vcpu;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300302
Sheng Yang78376992008-01-28 05:10:22 +0800303 atomic_set(&pt->pending, 0);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300304 ps->irq_ack = 1;
Sheng Yang78376992008-01-28 05:10:22 +0800305
306 hrtimer_start(&pt->timer, ktime_add_ns(ktime_get(), interval),
307 HRTIMER_MODE_ABS);
308}
309
310static void pit_load_count(struct kvm *kvm, int channel, u32 val)
311{
312 struct kvm_kpit_state *ps = &kvm->arch.vpit->pit_state;
313
314 WARN_ON(!mutex_is_locked(&ps->lock));
315
Joe Perchesa78d96262009-12-09 10:45:35 -0800316 pr_debug("load_count val is %d, channel is %d\n", val, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800317
318 /*
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300319 * The largest possible initial count is 0; this is equivalent
320 * to 216 for binary counting and 104 for BCD counting.
Sheng Yang78376992008-01-28 05:10:22 +0800321 */
322 if (val == 0)
323 val = 0x10000;
324
Sheng Yang78376992008-01-28 05:10:22 +0800325 ps->channels[channel].count = val;
326
Marcelo Tosattifd668422009-02-23 10:57:40 -0300327 if (channel != 0) {
328 ps->channels[channel].count_load_time = ktime_get();
Sheng Yang78376992008-01-28 05:10:22 +0800329 return;
Marcelo Tosattifd668422009-02-23 10:57:40 -0300330 }
Sheng Yang78376992008-01-28 05:10:22 +0800331
332 /* Two types of timer
333 * mode 1 is one shot, mode 2 is period, otherwise del timer */
334 switch (ps->channels[0].mode) {
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300335 case 0:
Sheng Yang78376992008-01-28 05:10:22 +0800336 case 1:
Marcelo Tosattiece15ba2008-04-30 13:23:54 -0300337 /* FIXME: enhance mode 4 precision */
338 case 4:
Beth Kone9f42752009-07-07 11:50:38 -0400339 if (!(ps->flags & KVM_PIT_FLAGS_HPET_LEGACY)) {
340 create_pit_timer(ps, val, 0);
341 }
Sheng Yang78376992008-01-28 05:10:22 +0800342 break;
343 case 2:
Aurelien Jarnof6975542008-05-02 17:02:23 +0200344 case 3:
Beth Kone9f42752009-07-07 11:50:38 -0400345 if (!(ps->flags & KVM_PIT_FLAGS_HPET_LEGACY)){
346 create_pit_timer(ps, val, 1);
347 }
Sheng Yang78376992008-01-28 05:10:22 +0800348 break;
349 default:
350 destroy_pit_timer(&ps->pit_timer);
351 }
352}
353
Beth Kone9f42752009-07-07 11:50:38 -0400354void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_start)
Sheng Yange0f63cb2008-03-04 00:50:59 +0800355{
Beth Kone9f42752009-07-07 11:50:38 -0400356 u8 saved_mode;
357 if (hpet_legacy_start) {
358 /* save existing mode for later reenablement */
359 saved_mode = kvm->arch.vpit->pit_state.channels[0].mode;
360 kvm->arch.vpit->pit_state.channels[0].mode = 0xff; /* disable timer */
361 pit_load_count(kvm, channel, val);
362 kvm->arch.vpit->pit_state.channels[0].mode = saved_mode;
363 } else {
364 pit_load_count(kvm, channel, val);
365 }
Sheng Yange0f63cb2008-03-04 00:50:59 +0800366}
367
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400368static inline struct kvm_pit *dev_to_pit(struct kvm_io_device *dev)
369{
370 return container_of(dev, struct kvm_pit, dev);
371}
372
373static inline struct kvm_pit *speaker_to_pit(struct kvm_io_device *dev)
374{
375 return container_of(dev, struct kvm_pit, speaker_dev);
376}
377
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300378static inline int pit_in_range(gpa_t addr)
379{
380 return ((addr >= KVM_PIT_BASE_ADDRESS) &&
381 (addr < KVM_PIT_BASE_ADDRESS + KVM_PIT_MEM_LENGTH));
382}
383
384static int pit_ioport_write(struct kvm_io_device *this,
385 gpa_t addr, int len, const void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800386{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400387 struct kvm_pit *pit = dev_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800388 struct kvm_kpit_state *pit_state = &pit->pit_state;
389 struct kvm *kvm = pit->kvm;
390 int channel, access;
391 struct kvm_kpit_channel_state *s;
392 u32 val = *(u32 *) data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300393 if (!pit_in_range(addr))
394 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800395
396 val &= 0xff;
397 addr &= KVM_PIT_CHANNEL_MASK;
398
399 mutex_lock(&pit_state->lock);
400
401 if (val != 0)
Joe Perchesa78d96262009-12-09 10:45:35 -0800402 pr_debug("write addr is 0x%x, len is %d, val is 0x%x\n",
403 (unsigned int)addr, len, val);
Sheng Yang78376992008-01-28 05:10:22 +0800404
405 if (addr == 3) {
406 channel = val >> 6;
407 if (channel == 3) {
408 /* Read-Back Command. */
409 for (channel = 0; channel < 3; channel++) {
410 s = &pit_state->channels[channel];
411 if (val & (2 << channel)) {
412 if (!(val & 0x20))
413 pit_latch_count(kvm, channel);
414 if (!(val & 0x10))
415 pit_latch_status(kvm, channel);
416 }
417 }
418 } else {
419 /* Select Counter <channel>. */
420 s = &pit_state->channels[channel];
421 access = (val >> 4) & KVM_PIT_CHANNEL_MASK;
422 if (access == 0) {
423 pit_latch_count(kvm, channel);
424 } else {
425 s->rw_mode = access;
426 s->read_state = access;
427 s->write_state = access;
428 s->mode = (val >> 1) & 7;
429 if (s->mode > 5)
430 s->mode -= 4;
431 s->bcd = val & 1;
432 }
433 }
434 } else {
435 /* Write Count. */
436 s = &pit_state->channels[addr];
437 switch (s->write_state) {
438 default:
439 case RW_STATE_LSB:
440 pit_load_count(kvm, addr, val);
441 break;
442 case RW_STATE_MSB:
443 pit_load_count(kvm, addr, val << 8);
444 break;
445 case RW_STATE_WORD0:
446 s->write_latch = val;
447 s->write_state = RW_STATE_WORD1;
448 break;
449 case RW_STATE_WORD1:
450 pit_load_count(kvm, addr, s->write_latch | (val << 8));
451 s->write_state = RW_STATE_WORD0;
452 break;
453 }
454 }
455
456 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300457 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800458}
459
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300460static int pit_ioport_read(struct kvm_io_device *this,
461 gpa_t addr, int len, void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800462{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400463 struct kvm_pit *pit = dev_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800464 struct kvm_kpit_state *pit_state = &pit->pit_state;
465 struct kvm *kvm = pit->kvm;
466 int ret, count;
467 struct kvm_kpit_channel_state *s;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300468 if (!pit_in_range(addr))
469 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800470
471 addr &= KVM_PIT_CHANNEL_MASK;
Marcelo Tosattiee73f652010-01-29 17:28:41 -0200472 if (addr == 3)
473 return 0;
474
Sheng Yang78376992008-01-28 05:10:22 +0800475 s = &pit_state->channels[addr];
476
477 mutex_lock(&pit_state->lock);
478
479 if (s->status_latched) {
480 s->status_latched = 0;
481 ret = s->status;
482 } else if (s->count_latched) {
483 switch (s->count_latched) {
484 default:
485 case RW_STATE_LSB:
486 ret = s->latched_count & 0xff;
487 s->count_latched = 0;
488 break;
489 case RW_STATE_MSB:
490 ret = s->latched_count >> 8;
491 s->count_latched = 0;
492 break;
493 case RW_STATE_WORD0:
494 ret = s->latched_count & 0xff;
495 s->count_latched = RW_STATE_MSB;
496 break;
497 }
498 } else {
499 switch (s->read_state) {
500 default:
501 case RW_STATE_LSB:
502 count = pit_get_count(kvm, addr);
503 ret = count & 0xff;
504 break;
505 case RW_STATE_MSB:
506 count = pit_get_count(kvm, addr);
507 ret = (count >> 8) & 0xff;
508 break;
509 case RW_STATE_WORD0:
510 count = pit_get_count(kvm, addr);
511 ret = count & 0xff;
512 s->read_state = RW_STATE_WORD1;
513 break;
514 case RW_STATE_WORD1:
515 count = pit_get_count(kvm, addr);
516 ret = (count >> 8) & 0xff;
517 s->read_state = RW_STATE_WORD0;
518 break;
519 }
520 }
521
522 if (len > sizeof(ret))
523 len = sizeof(ret);
524 memcpy(data, (char *)&ret, len);
525
526 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300527 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800528}
529
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300530static int speaker_ioport_write(struct kvm_io_device *this,
531 gpa_t addr, int len, const void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800532{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400533 struct kvm_pit *pit = speaker_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800534 struct kvm_kpit_state *pit_state = &pit->pit_state;
535 struct kvm *kvm = pit->kvm;
536 u32 val = *(u32 *) data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300537 if (addr != KVM_SPEAKER_BASE_ADDRESS)
538 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800539
540 mutex_lock(&pit_state->lock);
541 pit_state->speaker_data_on = (val >> 1) & 1;
542 pit_set_gate(kvm, 2, val & 1);
543 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300544 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800545}
546
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300547static int speaker_ioport_read(struct kvm_io_device *this,
548 gpa_t addr, int len, void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800549{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400550 struct kvm_pit *pit = speaker_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800551 struct kvm_kpit_state *pit_state = &pit->pit_state;
552 struct kvm *kvm = pit->kvm;
553 unsigned int refresh_clock;
554 int ret;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300555 if (addr != KVM_SPEAKER_BASE_ADDRESS)
556 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800557
558 /* Refresh clock toggles at about 15us. We approximate as 2^14ns. */
559 refresh_clock = ((unsigned int)ktime_to_ns(ktime_get()) >> 14) & 1;
560
561 mutex_lock(&pit_state->lock);
562 ret = ((pit_state->speaker_data_on << 1) | pit_get_gate(kvm, 2) |
563 (pit_get_out(kvm, 2) << 5) | (refresh_clock << 4));
564 if (len > sizeof(ret))
565 len = sizeof(ret);
566 memcpy(data, (char *)&ret, len);
567 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300568 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800569}
570
Sheng Yang308b0f22008-03-13 10:22:26 +0800571void kvm_pit_reset(struct kvm_pit *pit)
Sheng Yang78376992008-01-28 05:10:22 +0800572{
573 int i;
Sheng Yang308b0f22008-03-13 10:22:26 +0800574 struct kvm_kpit_channel_state *c;
575
576 mutex_lock(&pit->pit_state.lock);
Beth Kone9f42752009-07-07 11:50:38 -0400577 pit->pit_state.flags = 0;
Sheng Yang308b0f22008-03-13 10:22:26 +0800578 for (i = 0; i < 3; i++) {
579 c = &pit->pit_state.channels[i];
580 c->mode = 0xff;
581 c->gate = (i != 2);
582 pit_load_count(pit->kvm, i, 0);
583 }
584 mutex_unlock(&pit->pit_state.lock);
585
586 atomic_set(&pit->pit_state.pit_timer.pending, 0);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300587 pit->pit_state.irq_ack = 1;
Sheng Yang308b0f22008-03-13 10:22:26 +0800588}
589
Avi Kivity4780c6592009-01-04 18:06:06 +0200590static void pit_mask_notifer(struct kvm_irq_mask_notifier *kimn, bool mask)
591{
592 struct kvm_pit *pit = container_of(kimn, struct kvm_pit, mask_notifier);
593
594 if (!mask) {
595 atomic_set(&pit->pit_state.pit_timer.pending, 0);
596 pit->pit_state.irq_ack = 1;
597 }
598}
599
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400600static const struct kvm_io_device_ops pit_dev_ops = {
601 .read = pit_ioport_read,
602 .write = pit_ioport_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400603};
604
605static const struct kvm_io_device_ops speaker_dev_ops = {
606 .read = speaker_ioport_read,
607 .write = speaker_ioport_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400608};
609
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200610/* Caller must hold slots_lock */
Jan Kiszkac5ff41c2009-05-14 22:42:53 +0200611struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags)
Sheng Yang308b0f22008-03-13 10:22:26 +0800612{
Sheng Yang78376992008-01-28 05:10:22 +0800613 struct kvm_pit *pit;
614 struct kvm_kpit_state *pit_state;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400615 int ret;
Sheng Yang78376992008-01-28 05:10:22 +0800616
617 pit = kzalloc(sizeof(struct kvm_pit), GFP_KERNEL);
618 if (!pit)
619 return NULL;
620
Sheng Yang5550af42008-10-15 20:15:06 +0800621 pit->irq_source_id = kvm_request_irq_source_id(kvm);
Avi Kivitye17d1dc2008-11-11 13:09:36 +0200622 if (pit->irq_source_id < 0) {
623 kfree(pit);
Sheng Yang5550af42008-10-15 20:15:06 +0800624 return NULL;
Avi Kivitye17d1dc2008-11-11 13:09:36 +0200625 }
Sheng Yang5550af42008-10-15 20:15:06 +0800626
Sheng Yang78376992008-01-28 05:10:22 +0800627 mutex_init(&pit->pit_state.lock);
628 mutex_lock(&pit->pit_state.lock);
Thomas Gleixnerfa8273e2010-02-17 14:00:41 +0000629 raw_spin_lock_init(&pit->pit_state.inject_lock);
Sheng Yang78376992008-01-28 05:10:22 +0800630
Sheng Yang78376992008-01-28 05:10:22 +0800631 kvm->arch.vpit = pit;
632 pit->kvm = kvm;
633
634 pit_state = &pit->pit_state;
635 pit_state->pit = pit;
636 hrtimer_init(&pit_state->pit_timer.timer,
637 CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300638 pit_state->irq_ack_notifier.gsi = 0;
639 pit_state->irq_ack_notifier.irq_acked = kvm_pit_ack_irq;
640 kvm_register_irq_ack_notifier(kvm, &pit_state->irq_ack_notifier);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -0200641 pit_state->pit_timer.reinject = true;
Sheng Yang78376992008-01-28 05:10:22 +0800642 mutex_unlock(&pit->pit_state.lock);
643
Sheng Yang308b0f22008-03-13 10:22:26 +0800644 kvm_pit_reset(pit);
Sheng Yang78376992008-01-28 05:10:22 +0800645
Avi Kivity4780c6592009-01-04 18:06:06 +0200646 pit->mask_notifier.func = pit_mask_notifer;
647 kvm_register_irq_mask_notifier(kvm, 0, &pit->mask_notifier);
648
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400649 kvm_iodevice_init(&pit->dev, &pit_dev_ops);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200650 ret = kvm_io_bus_register_dev(kvm, KVM_PIO_BUS, &pit->dev);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400651 if (ret < 0)
652 goto fail;
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400653
654 if (flags & KVM_PIT_SPEAKER_DUMMY) {
655 kvm_iodevice_init(&pit->speaker_dev, &speaker_dev_ops);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200656 ret = kvm_io_bus_register_dev(kvm, KVM_PIO_BUS,
Gregory Haskins090b7af2009-07-07 17:08:44 -0400657 &pit->speaker_dev);
658 if (ret < 0)
659 goto fail_unregister;
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400660 }
661
Sheng Yang78376992008-01-28 05:10:22 +0800662 return pit;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400663
664fail_unregister:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200665 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS, &pit->dev);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400666
667fail:
Wei Yongjund225f532010-02-08 17:03:51 +0800668 kvm_unregister_irq_mask_notifier(kvm, 0, &pit->mask_notifier);
669 kvm_unregister_irq_ack_notifier(kvm, &pit_state->irq_ack_notifier);
670 kvm_free_irq_source_id(kvm, pit->irq_source_id);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400671
672 kfree(pit);
673 return NULL;
Sheng Yang78376992008-01-28 05:10:22 +0800674}
675
676void kvm_free_pit(struct kvm *kvm)
677{
678 struct hrtimer *timer;
679
680 if (kvm->arch.vpit) {
Avi Kivity4780c6592009-01-04 18:06:06 +0200681 kvm_unregister_irq_mask_notifier(kvm, 0,
682 &kvm->arch.vpit->mask_notifier);
Gleb Natapov84fde242009-07-16 17:03:30 +0300683 kvm_unregister_irq_ack_notifier(kvm,
684 &kvm->arch.vpit->pit_state.irq_ack_notifier);
Sheng Yang78376992008-01-28 05:10:22 +0800685 mutex_lock(&kvm->arch.vpit->pit_state.lock);
686 timer = &kvm->arch.vpit->pit_state.pit_timer.timer;
687 hrtimer_cancel(timer);
Sheng Yang5550af42008-10-15 20:15:06 +0800688 kvm_free_irq_source_id(kvm, kvm->arch.vpit->irq_source_id);
Sheng Yang78376992008-01-28 05:10:22 +0800689 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
690 kfree(kvm->arch.vpit);
691 }
692}
693
Harvey Harrison8b2cf732008-04-27 12:14:13 -0700694static void __inject_pit_timer_intr(struct kvm *kvm)
Sheng Yang78376992008-01-28 05:10:22 +0800695{
Jan Kiszka23930f92008-09-26 09:30:52 +0200696 struct kvm_vcpu *vcpu;
697 int i;
698
Sheng Yang5550af42008-10-15 20:15:06 +0800699 kvm_set_irq(kvm, kvm->arch.vpit->irq_source_id, 0, 1);
700 kvm_set_irq(kvm, kvm->arch.vpit->irq_source_id, 0, 0);
Jan Kiszka23930f92008-09-26 09:30:52 +0200701
702 /*
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200703 * Provides NMI watchdog support via Virtual Wire mode.
704 * The route is: PIT -> PIC -> LVT0 in NMI mode.
705 *
706 * Note: Our Virtual Wire implementation is simplified, only
707 * propagating PIT interrupts to all VCPUs when they have set
708 * LVT0 to NMI delivery. Other PIC interrupts are just sent to
709 * VCPU0, and only if its LVT0 is in EXTINT mode.
Jan Kiszka23930f92008-09-26 09:30:52 +0200710 */
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200711 if (kvm->arch.vapics_in_nmi_mode > 0)
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300712 kvm_for_each_vcpu(i, vcpu, kvm)
713 kvm_apic_nmi_wd_deliver(vcpu);
Sheng Yang78376992008-01-28 05:10:22 +0800714}
715
716void kvm_inject_pit_timer_irqs(struct kvm_vcpu *vcpu)
717{
718 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
719 struct kvm *kvm = vcpu->kvm;
720 struct kvm_kpit_state *ps;
721
Bartlomiej Zolnierkiewicz95fb4eb2009-07-29 00:46:38 +0200722 if (pit) {
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300723 int inject = 0;
Sheng Yang78376992008-01-28 05:10:22 +0800724 ps = &pit->pit_state;
725
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300726 /* Try to inject pending interrupts when
727 * last one has been acked.
728 */
Thomas Gleixnerfa8273e2010-02-17 14:00:41 +0000729 raw_spin_lock(&ps->inject_lock);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300730 if (atomic_read(&ps->pit_timer.pending) && ps->irq_ack) {
731 ps->irq_ack = 0;
732 inject = 1;
733 }
Thomas Gleixnerfa8273e2010-02-17 14:00:41 +0000734 raw_spin_unlock(&ps->inject_lock);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300735 if (inject)
Sheng Yang78376992008-01-28 05:10:22 +0800736 __inject_pit_timer_intr(kvm);
Sheng Yang78376992008-01-28 05:10:22 +0800737 }
738}