irq.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * irq.c: API for in kernel interrupt controller
  3. * Copyright (c) 2007, Intel Corporation.
  4. * Copyright 2009 Red Hat, Inc. and/or its affiliates.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  17. * Place - Suite 330, Boston, MA 02111-1307 USA.
  18. * Authors:
  19. * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
  20. *
  21. */
  22. #include <linux/module.h>
  23. #include <linux/kvm_host.h>
  24. #include "irq.h"
  25. #include "i8254.h"
  26. #include "x86.h"
  27. /*
  28. * check if there are pending timer events
  29. * to be processed.
  30. */
  31. int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
  32. {
  33. return apic_has_pending_timer(vcpu);
  34. }
  35. EXPORT_SYMBOL(kvm_cpu_has_pending_timer);
  36. /*
  37. * check if there is pending interrupt without
  38. * intack.
  39. */
  40. int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
  41. {
  42. struct kvm_pic *s;
  43. if (!irqchip_in_kernel(v->kvm))
  44. return v->arch.interrupt.pending;
  45. if (kvm_apic_has_interrupt(v) == -1) { /* LAPIC */
  46. if (kvm_apic_accept_pic_intr(v)) {
  47. s = pic_irqchip(v->kvm); /* PIC */
  48. return s->output;
  49. } else
  50. return 0;
  51. }
  52. return 1;
  53. }
  54. EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);
  55. /*
  56. * Read pending interrupt vector and intack.
  57. */
  58. int kvm_cpu_get_interrupt(struct kvm_vcpu *v)
  59. {
  60. struct kvm_pic *s;
  61. int vector;
  62. if (!irqchip_in_kernel(v->kvm))
  63. return v->arch.interrupt.nr;
  64. vector = kvm_get_apic_interrupt(v); /* APIC */
  65. if (vector == -1) {
  66. if (kvm_apic_accept_pic_intr(v)) {
  67. s = pic_irqchip(v->kvm);
  68. s->output = 0; /* PIC */
  69. vector = kvm_pic_read_irq(v->kvm);
  70. }
  71. }
  72. return vector;
  73. }
  74. EXPORT_SYMBOL_GPL(kvm_cpu_get_interrupt);
  75. void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu)
  76. {
  77. kvm_inject_apic_timer_irqs(vcpu);
  78. /* TODO: PIT, RTC etc. */
  79. }
  80. EXPORT_SYMBOL_GPL(kvm_inject_pending_timer_irqs);
  81. void __kvm_migrate_timers(struct kvm_vcpu *vcpu)
  82. {
  83. __kvm_migrate_apic_timer(vcpu);
  84. __kvm_migrate_pit_timer(vcpu);
  85. }