diff options
Diffstat (limited to 'arch/s390/kvm/interrupt.c')
-rw-r--r-- | arch/s390/kvm/interrupt.c | 59 |
1 files changed, 39 insertions, 20 deletions
diff --git a/arch/s390/kvm/interrupt.c b/arch/s390/kvm/interrupt.c index 0189356fe209..f04f5301b1b4 100644 --- a/arch/s390/kvm/interrupt.c +++ b/arch/s390/kvm/interrupt.c | |||
@@ -12,6 +12,8 @@ | |||
12 | 12 | ||
13 | #include <asm/lowcore.h> | 13 | #include <asm/lowcore.h> |
14 | #include <asm/uaccess.h> | 14 | #include <asm/uaccess.h> |
15 | #include <linux/hrtimer.h> | ||
16 | #include <linux/interrupt.h> | ||
15 | #include <linux/kvm_host.h> | 17 | #include <linux/kvm_host.h> |
16 | #include <linux/signal.h> | 18 | #include <linux/signal.h> |
17 | #include "kvm-s390.h" | 19 | #include "kvm-s390.h" |
@@ -299,13 +301,13 @@ int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu) | |||
299 | } | 301 | } |
300 | 302 | ||
301 | if ((!rc) && atomic_read(&fi->active)) { | 303 | if ((!rc) && atomic_read(&fi->active)) { |
302 | spin_lock_bh(&fi->lock); | 304 | spin_lock(&fi->lock); |
303 | list_for_each_entry(inti, &fi->list, list) | 305 | list_for_each_entry(inti, &fi->list, list) |
304 | if (__interrupt_is_deliverable(vcpu, inti)) { | 306 | if (__interrupt_is_deliverable(vcpu, inti)) { |
305 | rc = 1; | 307 | rc = 1; |
306 | break; | 308 | break; |
307 | } | 309 | } |
308 | spin_unlock_bh(&fi->lock); | 310 | spin_unlock(&fi->lock); |
309 | } | 311 | } |
310 | 312 | ||
311 | if ((!rc) && (vcpu->arch.sie_block->ckc < | 313 | if ((!rc) && (vcpu->arch.sie_block->ckc < |
@@ -318,6 +320,12 @@ int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu) | |||
318 | return rc; | 320 | return rc; |
319 | } | 321 | } |
320 | 322 | ||
323 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) | ||
324 | { | ||
325 | /* do real check here */ | ||
326 | return 1; | ||
327 | } | ||
328 | |||
321 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) | 329 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) |
322 | { | 330 | { |
323 | return 0; | 331 | return 0; |
@@ -355,14 +363,12 @@ int kvm_s390_handle_wait(struct kvm_vcpu *vcpu) | |||
355 | return 0; | 363 | return 0; |
356 | } | 364 | } |
357 | 365 | ||
358 | sltime = (vcpu->arch.sie_block->ckc - now) / (0xf4240000ul / HZ) + 1; | 366 | sltime = ((vcpu->arch.sie_block->ckc - now)*125)>>9; |
359 | 367 | ||
360 | vcpu->arch.ckc_timer.expires = jiffies + sltime; | 368 | hrtimer_start(&vcpu->arch.ckc_timer, ktime_set (0, sltime) , HRTIMER_MODE_REL); |
361 | 369 | VCPU_EVENT(vcpu, 5, "enabled wait via clock comparator: %llx ns", sltime); | |
362 | add_timer(&vcpu->arch.ckc_timer); | ||
363 | VCPU_EVENT(vcpu, 5, "enabled wait timer:%llx jiffies", sltime); | ||
364 | no_timer: | 370 | no_timer: |
365 | spin_lock_bh(&vcpu->arch.local_int.float_int->lock); | 371 | spin_lock(&vcpu->arch.local_int.float_int->lock); |
366 | spin_lock_bh(&vcpu->arch.local_int.lock); | 372 | spin_lock_bh(&vcpu->arch.local_int.lock); |
367 | add_wait_queue(&vcpu->arch.local_int.wq, &wait); | 373 | add_wait_queue(&vcpu->arch.local_int.wq, &wait); |
368 | while (list_empty(&vcpu->arch.local_int.list) && | 374 | while (list_empty(&vcpu->arch.local_int.list) && |
@@ -371,33 +377,46 @@ no_timer: | |||
371 | !signal_pending(current)) { | 377 | !signal_pending(current)) { |
372 | set_current_state(TASK_INTERRUPTIBLE); | 378 | set_current_state(TASK_INTERRUPTIBLE); |
373 | spin_unlock_bh(&vcpu->arch.local_int.lock); | 379 | spin_unlock_bh(&vcpu->arch.local_int.lock); |
374 | spin_unlock_bh(&vcpu->arch.local_int.float_int->lock); | 380 | spin_unlock(&vcpu->arch.local_int.float_int->lock); |
375 | vcpu_put(vcpu); | 381 | vcpu_put(vcpu); |
376 | schedule(); | 382 | schedule(); |
377 | vcpu_load(vcpu); | 383 | vcpu_load(vcpu); |
378 | spin_lock_bh(&vcpu->arch.local_int.float_int->lock); | 384 | spin_lock(&vcpu->arch.local_int.float_int->lock); |
379 | spin_lock_bh(&vcpu->arch.local_int.lock); | 385 | spin_lock_bh(&vcpu->arch.local_int.lock); |
380 | } | 386 | } |
381 | __unset_cpu_idle(vcpu); | 387 | __unset_cpu_idle(vcpu); |
382 | __set_current_state(TASK_RUNNING); | 388 | __set_current_state(TASK_RUNNING); |
383 | remove_wait_queue(&vcpu->wq, &wait); | 389 | remove_wait_queue(&vcpu->wq, &wait); |
384 | spin_unlock_bh(&vcpu->arch.local_int.lock); | 390 | spin_unlock_bh(&vcpu->arch.local_int.lock); |
385 | spin_unlock_bh(&vcpu->arch.local_int.float_int->lock); | 391 | spin_unlock(&vcpu->arch.local_int.float_int->lock); |
386 | del_timer(&vcpu->arch.ckc_timer); | 392 | hrtimer_try_to_cancel(&vcpu->arch.ckc_timer); |
387 | return 0; | 393 | return 0; |
388 | } | 394 | } |
389 | 395 | ||
390 | void kvm_s390_idle_wakeup(unsigned long data) | 396 | void kvm_s390_tasklet(unsigned long parm) |
391 | { | 397 | { |
392 | struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data; | 398 | struct kvm_vcpu *vcpu = (struct kvm_vcpu *) parm; |
393 | 399 | ||
394 | spin_lock_bh(&vcpu->arch.local_int.lock); | 400 | spin_lock(&vcpu->arch.local_int.lock); |
395 | vcpu->arch.local_int.timer_due = 1; | 401 | vcpu->arch.local_int.timer_due = 1; |
396 | if (waitqueue_active(&vcpu->arch.local_int.wq)) | 402 | if (waitqueue_active(&vcpu->arch.local_int.wq)) |
397 | wake_up_interruptible(&vcpu->arch.local_int.wq); | 403 | wake_up_interruptible(&vcpu->arch.local_int.wq); |
398 | spin_unlock_bh(&vcpu->arch.local_int.lock); | 404 | spin_unlock(&vcpu->arch.local_int.lock); |
399 | } | 405 | } |
400 | 406 | ||
407 | /* | ||
408 | * low level hrtimer wake routine. Because this runs in hardirq context | ||
409 | * we schedule a tasklet to do the real work. | ||
410 | */ | ||
411 | enum hrtimer_restart kvm_s390_idle_wakeup(struct hrtimer *timer) | ||
412 | { | ||
413 | struct kvm_vcpu *vcpu; | ||
414 | |||
415 | vcpu = container_of(timer, struct kvm_vcpu, arch.ckc_timer); | ||
416 | tasklet_schedule(&vcpu->arch.tasklet); | ||
417 | |||
418 | return HRTIMER_NORESTART; | ||
419 | } | ||
401 | 420 | ||
402 | void kvm_s390_deliver_pending_interrupts(struct kvm_vcpu *vcpu) | 421 | void kvm_s390_deliver_pending_interrupts(struct kvm_vcpu *vcpu) |
403 | { | 422 | { |
@@ -436,7 +455,7 @@ void kvm_s390_deliver_pending_interrupts(struct kvm_vcpu *vcpu) | |||
436 | if (atomic_read(&fi->active)) { | 455 | if (atomic_read(&fi->active)) { |
437 | do { | 456 | do { |
438 | deliver = 0; | 457 | deliver = 0; |
439 | spin_lock_bh(&fi->lock); | 458 | spin_lock(&fi->lock); |
440 | list_for_each_entry_safe(inti, n, &fi->list, list) { | 459 | list_for_each_entry_safe(inti, n, &fi->list, list) { |
441 | if (__interrupt_is_deliverable(vcpu, inti)) { | 460 | if (__interrupt_is_deliverable(vcpu, inti)) { |
442 | list_del(&inti->list); | 461 | list_del(&inti->list); |
@@ -447,7 +466,7 @@ void kvm_s390_deliver_pending_interrupts(struct kvm_vcpu *vcpu) | |||
447 | } | 466 | } |
448 | if (list_empty(&fi->list)) | 467 | if (list_empty(&fi->list)) |
449 | atomic_set(&fi->active, 0); | 468 | atomic_set(&fi->active, 0); |
450 | spin_unlock_bh(&fi->lock); | 469 | spin_unlock(&fi->lock); |
451 | if (deliver) { | 470 | if (deliver) { |
452 | __do_deliver_interrupt(vcpu, inti); | 471 | __do_deliver_interrupt(vcpu, inti); |
453 | kfree(inti); | 472 | kfree(inti); |
@@ -512,7 +531,7 @@ int kvm_s390_inject_vm(struct kvm *kvm, | |||
512 | 531 | ||
513 | mutex_lock(&kvm->lock); | 532 | mutex_lock(&kvm->lock); |
514 | fi = &kvm->arch.float_int; | 533 | fi = &kvm->arch.float_int; |
515 | spin_lock_bh(&fi->lock); | 534 | spin_lock(&fi->lock); |
516 | list_add_tail(&inti->list, &fi->list); | 535 | list_add_tail(&inti->list, &fi->list); |
517 | atomic_set(&fi->active, 1); | 536 | atomic_set(&fi->active, 1); |
518 | sigcpu = find_first_bit(fi->idle_mask, KVM_MAX_VCPUS); | 537 | sigcpu = find_first_bit(fi->idle_mask, KVM_MAX_VCPUS); |
@@ -529,7 +548,7 @@ int kvm_s390_inject_vm(struct kvm *kvm, | |||
529 | if (waitqueue_active(&li->wq)) | 548 | if (waitqueue_active(&li->wq)) |
530 | wake_up_interruptible(&li->wq); | 549 | wake_up_interruptible(&li->wq); |
531 | spin_unlock_bh(&li->lock); | 550 | spin_unlock_bh(&li->lock); |
532 | spin_unlock_bh(&fi->lock); | 551 | spin_unlock(&fi->lock); |
533 | mutex_unlock(&kvm->lock); | 552 | mutex_unlock(&kvm->lock); |
534 | return 0; | 553 | return 0; |
535 | } | 554 | } |