blob: 15578f180e596bee481f10451ec375b6ceb37f26 [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
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
26 *
27 * Authors:
28 * Sheng Yang <sheng.yang@intel.com>
29 * Based on QEMU and Xen.
30 */
31
Joe Perchesa78d96262009-12-09 10:45:35 -080032#define pr_fmt(fmt) "pit: " fmt
33
Sheng Yang78376992008-01-28 05:10:22 +080034#include <linux/kvm_host.h>
35
36#include "irq.h"
37#include "i8254.h"
38
39#ifndef CONFIG_X86_64
Roman Zippel6f6d6a12008-05-01 04:34:28 -070040#define mod_64(x, y) ((x) - (y) * div64_u64(x, y))
Sheng Yang78376992008-01-28 05:10:22 +080041#else
42#define mod_64(x, y) ((x) % (y))
43#endif
44
45#define RW_STATE_LSB 1
46#define RW_STATE_MSB 2
47#define RW_STATE_WORD0 3
48#define RW_STATE_WORD1 4
49
50/* Compute with 96 bit intermediate result: (a*b)/c */
51static u64 muldiv64(u64 a, u32 b, u32 c)
52{
53 union {
54 u64 ll;
55 struct {
56 u32 low, high;
57 } l;
58 } u, res;
59 u64 rl, rh;
60
61 u.ll = a;
62 rl = (u64)u.l.low * (u64)b;
63 rh = (u64)u.l.high * (u64)b;
64 rh += (rl >> 32);
Roman Zippel6f6d6a12008-05-01 04:34:28 -070065 res.l.high = div64_u64(rh, c);
66 res.l.low = div64_u64(((mod_64(rh, c) << 32) + (rl & 0xffffffff)), c);
Sheng Yang78376992008-01-28 05:10:22 +080067 return res.ll;
68}
69
70static void pit_set_gate(struct kvm *kvm, int channel, u32 val)
71{
72 struct kvm_kpit_channel_state *c =
73 &kvm->arch.vpit->pit_state.channels[channel];
74
75 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
76
77 switch (c->mode) {
78 default:
79 case 0:
80 case 4:
81 /* XXX: just disable/enable counting */
82 break;
83 case 1:
84 case 2:
85 case 3:
86 case 5:
87 /* Restart counting on rising edge. */
88 if (c->gate < val)
89 c->count_load_time = ktime_get();
90 break;
91 }
92
93 c->gate = val;
94}
95
Harvey Harrison8b2cf732008-04-27 12:14:13 -070096static int pit_get_gate(struct kvm *kvm, int channel)
Sheng Yang78376992008-01-28 05:10:22 +080097{
98 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
99
100 return kvm->arch.vpit->pit_state.channels[channel].gate;
101}
102
Marcelo Tosattifd668422009-02-23 10:57:40 -0300103static s64 __kpit_elapsed(struct kvm *kvm)
104{
105 s64 elapsed;
106 ktime_t remaining;
107 struct kvm_kpit_state *ps = &kvm->arch.vpit->pit_state;
108
Marcelo Tosatti0ff77872009-07-02 20:02:15 -0300109 if (!ps->pit_timer.period)
110 return 0;
111
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300112 /*
113 * The Counter does not stop when it reaches zero. In
114 * Modes 0, 1, 4, and 5 the Counter ``wraps around'' to
115 * the highest count, either FFFF hex for binary counting
116 * or 9999 for BCD counting, and continues counting.
117 * Modes 2 and 3 are periodic; the Counter reloads
118 * itself with the initial count and continues counting
119 * from there.
120 */
Marcelo Tosattiace15462009-10-08 10:55:03 -0300121 remaining = hrtimer_get_remaining(&ps->pit_timer.timer);
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300122 elapsed = ps->pit_timer.period - ktime_to_ns(remaining);
123 elapsed = mod_64(elapsed, ps->pit_timer.period);
Marcelo Tosattifd668422009-02-23 10:57:40 -0300124
125 return elapsed;
126}
127
128static s64 kpit_elapsed(struct kvm *kvm, struct kvm_kpit_channel_state *c,
129 int channel)
130{
131 if (channel == 0)
132 return __kpit_elapsed(kvm);
133
134 return ktime_to_ns(ktime_sub(ktime_get(), c->count_load_time));
135}
136
Sheng Yang78376992008-01-28 05:10:22 +0800137static int pit_get_count(struct kvm *kvm, int channel)
138{
139 struct kvm_kpit_channel_state *c =
140 &kvm->arch.vpit->pit_state.channels[channel];
141 s64 d, t;
142 int counter;
143
144 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
145
Marcelo Tosattifd668422009-02-23 10:57:40 -0300146 t = kpit_elapsed(kvm, c, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800147 d = muldiv64(t, KVM_PIT_FREQ, NSEC_PER_SEC);
148
149 switch (c->mode) {
150 case 0:
151 case 1:
152 case 4:
153 case 5:
154 counter = (c->count - d) & 0xffff;
155 break;
156 case 3:
157 /* XXX: may be incorrect for odd counts */
158 counter = c->count - (mod_64((2 * d), c->count));
159 break;
160 default:
161 counter = c->count - mod_64(d, c->count);
162 break;
163 }
164 return counter;
165}
166
167static int pit_get_out(struct kvm *kvm, int channel)
168{
169 struct kvm_kpit_channel_state *c =
170 &kvm->arch.vpit->pit_state.channels[channel];
171 s64 d, t;
172 int out;
173
174 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
175
Marcelo Tosattifd668422009-02-23 10:57:40 -0300176 t = kpit_elapsed(kvm, c, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800177 d = muldiv64(t, KVM_PIT_FREQ, NSEC_PER_SEC);
178
179 switch (c->mode) {
180 default:
181 case 0:
182 out = (d >= c->count);
183 break;
184 case 1:
185 out = (d < c->count);
186 break;
187 case 2:
188 out = ((mod_64(d, c->count) == 0) && (d != 0));
189 break;
190 case 3:
191 out = (mod_64(d, c->count) < ((c->count + 1) >> 1));
192 break;
193 case 4:
194 case 5:
195 out = (d == c->count);
196 break;
197 }
198
199 return out;
200}
201
202static void pit_latch_count(struct kvm *kvm, int channel)
203{
204 struct kvm_kpit_channel_state *c =
205 &kvm->arch.vpit->pit_state.channels[channel];
206
207 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
208
209 if (!c->count_latched) {
210 c->latched_count = pit_get_count(kvm, channel);
211 c->count_latched = c->rw_mode;
212 }
213}
214
215static void pit_latch_status(struct kvm *kvm, int channel)
216{
217 struct kvm_kpit_channel_state *c =
218 &kvm->arch.vpit->pit_state.channels[channel];
219
220 WARN_ON(!mutex_is_locked(&kvm->arch.vpit->pit_state.lock));
221
222 if (!c->status_latched) {
223 /* TODO: Return NULL COUNT (bit 6). */
224 c->status = ((pit_get_out(kvm, channel) << 7) |
225 (c->rw_mode << 4) |
226 (c->mode << 1) |
227 c->bcd);
228 c->status_latched = 1;
229 }
230}
231
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300232int pit_has_pending_timer(struct kvm_vcpu *vcpu)
233{
234 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
235
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300236 if (pit && kvm_vcpu_is_bsp(vcpu) && pit->pit_state.irq_ack)
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300237 return atomic_read(&pit->pit_state.pit_timer.pending);
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300238 return 0;
239}
240
Harvey Harrisonee032c92008-08-11 16:54:20 -0700241static void kvm_pit_ack_irq(struct kvm_irq_ack_notifier *kian)
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300242{
243 struct kvm_kpit_state *ps = container_of(kian, struct kvm_kpit_state,
244 irq_ack_notifier);
245 spin_lock(&ps->inject_lock);
246 if (atomic_dec_return(&ps->pit_timer.pending) < 0)
Avi Kivitydc7404c2008-08-17 16:03:46 +0300247 atomic_inc(&ps->pit_timer.pending);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300248 ps->irq_ack = 1;
249 spin_unlock(&ps->inject_lock);
250}
251
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300252void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu)
253{
254 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
255 struct hrtimer *timer;
256
Gleb Natapovc5af89b2009-06-09 15:56:26 +0300257 if (!kvm_vcpu_is_bsp(vcpu) || !pit)
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300258 return;
259
260 timer = &pit->pit_state.pit_timer.timer;
261 if (hrtimer_cancel(timer))
Arjan van de Venbeb20d52008-09-01 14:55:57 -0700262 hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300263}
264
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300265static void destroy_pit_timer(struct kvm_timer *pt)
Sheng Yang78376992008-01-28 05:10:22 +0800266{
Joe Perchesa78d96262009-12-09 10:45:35 -0800267 pr_debug("execute del timer!\n");
Sheng Yang78376992008-01-28 05:10:22 +0800268 hrtimer_cancel(&pt->timer);
269}
270
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300271static bool kpit_is_periodic(struct kvm_timer *ktimer)
272{
273 struct kvm_kpit_state *ps = container_of(ktimer, struct kvm_kpit_state,
274 pit_timer);
275 return ps->is_periodic;
276}
277
Hannes Eder386eb6e2009-03-10 22:51:09 +0100278static struct kvm_timer_ops kpit_ops = {
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300279 .is_periodic = kpit_is_periodic,
280};
281
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300282static void create_pit_timer(struct kvm_kpit_state *ps, u32 val, int is_period)
Sheng Yang78376992008-01-28 05:10:22 +0800283{
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300284 struct kvm_timer *pt = &ps->pit_timer;
Sheng Yang78376992008-01-28 05:10:22 +0800285 s64 interval;
286
287 interval = muldiv64(val, NSEC_PER_SEC, KVM_PIT_FREQ);
288
Joe Perchesa78d96262009-12-09 10:45:35 -0800289 pr_debug("create pit timer, interval is %llu nsec\n", interval);
Sheng Yang78376992008-01-28 05:10:22 +0800290
291 /* TODO The new value only affected after the retriggered */
292 hrtimer_cancel(&pt->timer);
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300293 pt->period = interval;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300294 ps->is_periodic = is_period;
295
296 pt->timer.function = kvm_timer_fn;
297 pt->t_ops = &kpit_ops;
298 pt->kvm = ps->pit->kvm;
Gleb Natapov1ed0ce02009-06-09 15:56:27 +0300299 pt->vcpu = pt->kvm->bsp_vcpu;
Marcelo Tosattid3c7b772009-02-23 10:57:41 -0300300
Sheng Yang78376992008-01-28 05:10:22 +0800301 atomic_set(&pt->pending, 0);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300302 ps->irq_ack = 1;
Sheng Yang78376992008-01-28 05:10:22 +0800303
304 hrtimer_start(&pt->timer, ktime_add_ns(ktime_get(), interval),
305 HRTIMER_MODE_ABS);
306}
307
308static void pit_load_count(struct kvm *kvm, int channel, u32 val)
309{
310 struct kvm_kpit_state *ps = &kvm->arch.vpit->pit_state;
311
312 WARN_ON(!mutex_is_locked(&ps->lock));
313
Joe Perchesa78d96262009-12-09 10:45:35 -0800314 pr_debug("load_count val is %d, channel is %d\n", val, channel);
Sheng Yang78376992008-01-28 05:10:22 +0800315
316 /*
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300317 * The largest possible initial count is 0; this is equivalent
318 * to 216 for binary counting and 104 for BCD counting.
Sheng Yang78376992008-01-28 05:10:22 +0800319 */
320 if (val == 0)
321 val = 0x10000;
322
Sheng Yang78376992008-01-28 05:10:22 +0800323 ps->channels[channel].count = val;
324
Marcelo Tosattifd668422009-02-23 10:57:40 -0300325 if (channel != 0) {
326 ps->channels[channel].count_load_time = ktime_get();
Sheng Yang78376992008-01-28 05:10:22 +0800327 return;
Marcelo Tosattifd668422009-02-23 10:57:40 -0300328 }
Sheng Yang78376992008-01-28 05:10:22 +0800329
330 /* Two types of timer
331 * mode 1 is one shot, mode 2 is period, otherwise del timer */
332 switch (ps->channels[0].mode) {
Marcelo Tosattiede2ccc2009-04-08 13:14:19 -0300333 case 0:
Sheng Yang78376992008-01-28 05:10:22 +0800334 case 1:
Marcelo Tosattiece15ba2008-04-30 13:23:54 -0300335 /* FIXME: enhance mode 4 precision */
336 case 4:
Beth Kone9f42752009-07-07 11:50:38 -0400337 if (!(ps->flags & KVM_PIT_FLAGS_HPET_LEGACY)) {
338 create_pit_timer(ps, val, 0);
339 }
Sheng Yang78376992008-01-28 05:10:22 +0800340 break;
341 case 2:
Aurelien Jarnof6975542008-05-02 17:02:23 +0200342 case 3:
Beth Kone9f42752009-07-07 11:50:38 -0400343 if (!(ps->flags & KVM_PIT_FLAGS_HPET_LEGACY)){
344 create_pit_timer(ps, val, 1);
345 }
Sheng Yang78376992008-01-28 05:10:22 +0800346 break;
347 default:
348 destroy_pit_timer(&ps->pit_timer);
349 }
350}
351
Beth Kone9f42752009-07-07 11:50:38 -0400352void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_start)
Sheng Yange0f63cb2008-03-04 00:50:59 +0800353{
Beth Kone9f42752009-07-07 11:50:38 -0400354 u8 saved_mode;
355 if (hpet_legacy_start) {
356 /* save existing mode for later reenablement */
357 saved_mode = kvm->arch.vpit->pit_state.channels[0].mode;
358 kvm->arch.vpit->pit_state.channels[0].mode = 0xff; /* disable timer */
359 pit_load_count(kvm, channel, val);
360 kvm->arch.vpit->pit_state.channels[0].mode = saved_mode;
361 } else {
362 pit_load_count(kvm, channel, val);
363 }
Sheng Yange0f63cb2008-03-04 00:50:59 +0800364}
365
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400366static inline struct kvm_pit *dev_to_pit(struct kvm_io_device *dev)
367{
368 return container_of(dev, struct kvm_pit, dev);
369}
370
371static inline struct kvm_pit *speaker_to_pit(struct kvm_io_device *dev)
372{
373 return container_of(dev, struct kvm_pit, speaker_dev);
374}
375
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300376static inline int pit_in_range(gpa_t addr)
377{
378 return ((addr >= KVM_PIT_BASE_ADDRESS) &&
379 (addr < KVM_PIT_BASE_ADDRESS + KVM_PIT_MEM_LENGTH));
380}
381
382static int pit_ioport_write(struct kvm_io_device *this,
383 gpa_t addr, int len, const void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800384{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400385 struct kvm_pit *pit = dev_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800386 struct kvm_kpit_state *pit_state = &pit->pit_state;
387 struct kvm *kvm = pit->kvm;
388 int channel, access;
389 struct kvm_kpit_channel_state *s;
390 u32 val = *(u32 *) data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300391 if (!pit_in_range(addr))
392 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800393
394 val &= 0xff;
395 addr &= KVM_PIT_CHANNEL_MASK;
396
397 mutex_lock(&pit_state->lock);
398
399 if (val != 0)
Joe Perchesa78d96262009-12-09 10:45:35 -0800400 pr_debug("write addr is 0x%x, len is %d, val is 0x%x\n",
401 (unsigned int)addr, len, val);
Sheng Yang78376992008-01-28 05:10:22 +0800402
403 if (addr == 3) {
404 channel = val >> 6;
405 if (channel == 3) {
406 /* Read-Back Command. */
407 for (channel = 0; channel < 3; channel++) {
408 s = &pit_state->channels[channel];
409 if (val & (2 << channel)) {
410 if (!(val & 0x20))
411 pit_latch_count(kvm, channel);
412 if (!(val & 0x10))
413 pit_latch_status(kvm, channel);
414 }
415 }
416 } else {
417 /* Select Counter <channel>. */
418 s = &pit_state->channels[channel];
419 access = (val >> 4) & KVM_PIT_CHANNEL_MASK;
420 if (access == 0) {
421 pit_latch_count(kvm, channel);
422 } else {
423 s->rw_mode = access;
424 s->read_state = access;
425 s->write_state = access;
426 s->mode = (val >> 1) & 7;
427 if (s->mode > 5)
428 s->mode -= 4;
429 s->bcd = val & 1;
430 }
431 }
432 } else {
433 /* Write Count. */
434 s = &pit_state->channels[addr];
435 switch (s->write_state) {
436 default:
437 case RW_STATE_LSB:
438 pit_load_count(kvm, addr, val);
439 break;
440 case RW_STATE_MSB:
441 pit_load_count(kvm, addr, val << 8);
442 break;
443 case RW_STATE_WORD0:
444 s->write_latch = val;
445 s->write_state = RW_STATE_WORD1;
446 break;
447 case RW_STATE_WORD1:
448 pit_load_count(kvm, addr, s->write_latch | (val << 8));
449 s->write_state = RW_STATE_WORD0;
450 break;
451 }
452 }
453
454 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300455 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800456}
457
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300458static int pit_ioport_read(struct kvm_io_device *this,
459 gpa_t addr, int len, void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800460{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400461 struct kvm_pit *pit = dev_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800462 struct kvm_kpit_state *pit_state = &pit->pit_state;
463 struct kvm *kvm = pit->kvm;
464 int ret, count;
465 struct kvm_kpit_channel_state *s;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300466 if (!pit_in_range(addr))
467 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800468
469 addr &= KVM_PIT_CHANNEL_MASK;
Marcelo Tosattiee73f652010-01-29 17:28:41 -0200470 if (addr == 3)
471 return 0;
472
Sheng Yang78376992008-01-28 05:10:22 +0800473 s = &pit_state->channels[addr];
474
475 mutex_lock(&pit_state->lock);
476
477 if (s->status_latched) {
478 s->status_latched = 0;
479 ret = s->status;
480 } else if (s->count_latched) {
481 switch (s->count_latched) {
482 default:
483 case RW_STATE_LSB:
484 ret = s->latched_count & 0xff;
485 s->count_latched = 0;
486 break;
487 case RW_STATE_MSB:
488 ret = s->latched_count >> 8;
489 s->count_latched = 0;
490 break;
491 case RW_STATE_WORD0:
492 ret = s->latched_count & 0xff;
493 s->count_latched = RW_STATE_MSB;
494 break;
495 }
496 } else {
497 switch (s->read_state) {
498 default:
499 case RW_STATE_LSB:
500 count = pit_get_count(kvm, addr);
501 ret = count & 0xff;
502 break;
503 case RW_STATE_MSB:
504 count = pit_get_count(kvm, addr);
505 ret = (count >> 8) & 0xff;
506 break;
507 case RW_STATE_WORD0:
508 count = pit_get_count(kvm, addr);
509 ret = count & 0xff;
510 s->read_state = RW_STATE_WORD1;
511 break;
512 case RW_STATE_WORD1:
513 count = pit_get_count(kvm, addr);
514 ret = (count >> 8) & 0xff;
515 s->read_state = RW_STATE_WORD0;
516 break;
517 }
518 }
519
520 if (len > sizeof(ret))
521 len = sizeof(ret);
522 memcpy(data, (char *)&ret, len);
523
524 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300525 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800526}
527
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300528static int speaker_ioport_write(struct kvm_io_device *this,
529 gpa_t addr, int len, const void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800530{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400531 struct kvm_pit *pit = speaker_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800532 struct kvm_kpit_state *pit_state = &pit->pit_state;
533 struct kvm *kvm = pit->kvm;
534 u32 val = *(u32 *) data;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300535 if (addr != KVM_SPEAKER_BASE_ADDRESS)
536 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800537
538 mutex_lock(&pit_state->lock);
539 pit_state->speaker_data_on = (val >> 1) & 1;
540 pit_set_gate(kvm, 2, val & 1);
541 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300542 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800543}
544
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300545static int speaker_ioport_read(struct kvm_io_device *this,
546 gpa_t addr, int len, void *data)
Sheng Yang78376992008-01-28 05:10:22 +0800547{
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400548 struct kvm_pit *pit = speaker_to_pit(this);
Sheng Yang78376992008-01-28 05:10:22 +0800549 struct kvm_kpit_state *pit_state = &pit->pit_state;
550 struct kvm *kvm = pit->kvm;
551 unsigned int refresh_clock;
552 int ret;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300553 if (addr != KVM_SPEAKER_BASE_ADDRESS)
554 return -EOPNOTSUPP;
Sheng Yang78376992008-01-28 05:10:22 +0800555
556 /* Refresh clock toggles at about 15us. We approximate as 2^14ns. */
557 refresh_clock = ((unsigned int)ktime_to_ns(ktime_get()) >> 14) & 1;
558
559 mutex_lock(&pit_state->lock);
560 ret = ((pit_state->speaker_data_on << 1) | pit_get_gate(kvm, 2) |
561 (pit_get_out(kvm, 2) << 5) | (refresh_clock << 4));
562 if (len > sizeof(ret))
563 len = sizeof(ret);
564 memcpy(data, (char *)&ret, len);
565 mutex_unlock(&pit_state->lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300566 return 0;
Sheng Yang78376992008-01-28 05:10:22 +0800567}
568
Sheng Yang308b0f22008-03-13 10:22:26 +0800569void kvm_pit_reset(struct kvm_pit *pit)
Sheng Yang78376992008-01-28 05:10:22 +0800570{
571 int i;
Sheng Yang308b0f22008-03-13 10:22:26 +0800572 struct kvm_kpit_channel_state *c;
573
574 mutex_lock(&pit->pit_state.lock);
Beth Kone9f42752009-07-07 11:50:38 -0400575 pit->pit_state.flags = 0;
Sheng Yang308b0f22008-03-13 10:22:26 +0800576 for (i = 0; i < 3; i++) {
577 c = &pit->pit_state.channels[i];
578 c->mode = 0xff;
579 c->gate = (i != 2);
580 pit_load_count(pit->kvm, i, 0);
581 }
582 mutex_unlock(&pit->pit_state.lock);
583
584 atomic_set(&pit->pit_state.pit_timer.pending, 0);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300585 pit->pit_state.irq_ack = 1;
Sheng Yang308b0f22008-03-13 10:22:26 +0800586}
587
Avi Kivity4780c6592009-01-04 18:06:06 +0200588static void pit_mask_notifer(struct kvm_irq_mask_notifier *kimn, bool mask)
589{
590 struct kvm_pit *pit = container_of(kimn, struct kvm_pit, mask_notifier);
591
592 if (!mask) {
593 atomic_set(&pit->pit_state.pit_timer.pending, 0);
594 pit->pit_state.irq_ack = 1;
595 }
596}
597
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400598static const struct kvm_io_device_ops pit_dev_ops = {
599 .read = pit_ioport_read,
600 .write = pit_ioport_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400601};
602
603static const struct kvm_io_device_ops speaker_dev_ops = {
604 .read = speaker_ioport_read,
605 .write = speaker_ioport_write,
Gregory Haskinsd76685c2009-06-01 12:54:50 -0400606};
607
Michael S. Tsirkin6c474692009-06-29 22:24:26 +0300608/* Caller must have writers lock on slots_lock */
Jan Kiszkac5ff41c2009-05-14 22:42:53 +0200609struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags)
Sheng Yang308b0f22008-03-13 10:22:26 +0800610{
Sheng Yang78376992008-01-28 05:10:22 +0800611 struct kvm_pit *pit;
612 struct kvm_kpit_state *pit_state;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400613 int ret;
Sheng Yang78376992008-01-28 05:10:22 +0800614
615 pit = kzalloc(sizeof(struct kvm_pit), GFP_KERNEL);
616 if (!pit)
617 return NULL;
618
Sheng Yang5550af42008-10-15 20:15:06 +0800619 pit->irq_source_id = kvm_request_irq_source_id(kvm);
Avi Kivitye17d1dc2008-11-11 13:09:36 +0200620 if (pit->irq_source_id < 0) {
621 kfree(pit);
Sheng Yang5550af42008-10-15 20:15:06 +0800622 return NULL;
Avi Kivitye17d1dc2008-11-11 13:09:36 +0200623 }
Sheng Yang5550af42008-10-15 20:15:06 +0800624
Sheng Yang78376992008-01-28 05:10:22 +0800625 mutex_init(&pit->pit_state.lock);
626 mutex_lock(&pit->pit_state.lock);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300627 spin_lock_init(&pit->pit_state.inject_lock);
Sheng Yang78376992008-01-28 05:10:22 +0800628
Sheng Yang78376992008-01-28 05:10:22 +0800629 kvm->arch.vpit = pit;
630 pit->kvm = kvm;
631
632 pit_state = &pit->pit_state;
633 pit_state->pit = pit;
634 hrtimer_init(&pit_state->pit_timer.timer,
635 CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300636 pit_state->irq_ack_notifier.gsi = 0;
637 pit_state->irq_ack_notifier.irq_acked = kvm_pit_ack_irq;
638 kvm_register_irq_ack_notifier(kvm, &pit_state->irq_ack_notifier);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -0200639 pit_state->pit_timer.reinject = true;
Sheng Yang78376992008-01-28 05:10:22 +0800640 mutex_unlock(&pit->pit_state.lock);
641
Sheng Yang308b0f22008-03-13 10:22:26 +0800642 kvm_pit_reset(pit);
Sheng Yang78376992008-01-28 05:10:22 +0800643
Avi Kivity4780c6592009-01-04 18:06:06 +0200644 pit->mask_notifier.func = pit_mask_notifer;
645 kvm_register_irq_mask_notifier(kvm, 0, &pit->mask_notifier);
646
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400647 kvm_iodevice_init(&pit->dev, &pit_dev_ops);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400648 ret = __kvm_io_bus_register_dev(&kvm->pio_bus, &pit->dev);
649 if (ret < 0)
650 goto fail;
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400651
652 if (flags & KVM_PIT_SPEAKER_DUMMY) {
653 kvm_iodevice_init(&pit->speaker_dev, &speaker_dev_ops);
Gregory Haskins090b7af2009-07-07 17:08:44 -0400654 ret = __kvm_io_bus_register_dev(&kvm->pio_bus,
655 &pit->speaker_dev);
656 if (ret < 0)
657 goto fail_unregister;
Gregory Haskins6b66ac12009-06-01 12:54:56 -0400658 }
659
Sheng Yang78376992008-01-28 05:10:22 +0800660 return pit;
Gregory Haskins090b7af2009-07-07 17:08:44 -0400661
662fail_unregister:
663 __kvm_io_bus_unregister_dev(&kvm->pio_bus, &pit->dev);
664
665fail:
666 if (pit->irq_source_id >= 0)
667 kvm_free_irq_source_id(kvm, pit->irq_source_id);
668
669 kfree(pit);
670 return NULL;
Sheng Yang78376992008-01-28 05:10:22 +0800671}
672
673void kvm_free_pit(struct kvm *kvm)
674{
675 struct hrtimer *timer;
676
677 if (kvm->arch.vpit) {
Avi Kivity4780c6592009-01-04 18:06:06 +0200678 kvm_unregister_irq_mask_notifier(kvm, 0,
679 &kvm->arch.vpit->mask_notifier);
Gleb Natapov84fde242009-07-16 17:03:30 +0300680 kvm_unregister_irq_ack_notifier(kvm,
681 &kvm->arch.vpit->pit_state.irq_ack_notifier);
Sheng Yang78376992008-01-28 05:10:22 +0800682 mutex_lock(&kvm->arch.vpit->pit_state.lock);
683 timer = &kvm->arch.vpit->pit_state.pit_timer.timer;
684 hrtimer_cancel(timer);
Sheng Yang5550af42008-10-15 20:15:06 +0800685 kvm_free_irq_source_id(kvm, kvm->arch.vpit->irq_source_id);
Sheng Yang78376992008-01-28 05:10:22 +0800686 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
687 kfree(kvm->arch.vpit);
688 }
689}
690
Harvey Harrison8b2cf732008-04-27 12:14:13 -0700691static void __inject_pit_timer_intr(struct kvm *kvm)
Sheng Yang78376992008-01-28 05:10:22 +0800692{
Jan Kiszka23930f92008-09-26 09:30:52 +0200693 struct kvm_vcpu *vcpu;
694 int i;
695
Sheng Yang5550af42008-10-15 20:15:06 +0800696 kvm_set_irq(kvm, kvm->arch.vpit->irq_source_id, 0, 1);
697 kvm_set_irq(kvm, kvm->arch.vpit->irq_source_id, 0, 0);
Jan Kiszka23930f92008-09-26 09:30:52 +0200698
699 /*
Jan Kiszka8fdb2352008-10-20 10:20:02 +0200700 * Provides NMI watchdog support via Virtual Wire mode.
701 * The route is: PIT -> PIC -> LVT0 in NMI mode.
702 *
703 * Note: Our Virtual Wire implementation is simplified, only
704 * propagating PIT interrupts to all VCPUs when they have set
705 * LVT0 to NMI delivery. Other PIC interrupts are just sent to
706 * VCPU0, and only if its LVT0 is in EXTINT mode.
Jan Kiszka23930f92008-09-26 09:30:52 +0200707 */
Jan Kiszkacc6e4622008-10-20 10:20:03 +0200708 if (kvm->arch.vapics_in_nmi_mode > 0)
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300709 kvm_for_each_vcpu(i, vcpu, kvm)
710 kvm_apic_nmi_wd_deliver(vcpu);
Sheng Yang78376992008-01-28 05:10:22 +0800711}
712
713void kvm_inject_pit_timer_irqs(struct kvm_vcpu *vcpu)
714{
715 struct kvm_pit *pit = vcpu->kvm->arch.vpit;
716 struct kvm *kvm = vcpu->kvm;
717 struct kvm_kpit_state *ps;
718
Bartlomiej Zolnierkiewicz95fb4eb2009-07-29 00:46:38 +0200719 if (pit) {
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300720 int inject = 0;
Sheng Yang78376992008-01-28 05:10:22 +0800721 ps = &pit->pit_state;
722
Marcelo Tosatti3cf57fe2008-07-26 17:01:01 -0300723 /* Try to inject pending interrupts when
724 * last one has been acked.
725 */
726 spin_lock(&ps->inject_lock);
727 if (atomic_read(&ps->pit_timer.pending) && ps->irq_ack) {
728 ps->irq_ack = 0;
729 inject = 1;
730 }
731 spin_unlock(&ps->inject_lock);
732 if (inject)
Sheng Yang78376992008-01-28 05:10:22 +0800733 __inject_pit_timer_intr(kvm);
Sheng Yang78376992008-01-28 05:10:22 +0800734 }
735}