irq.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * irq.h: in kernel interrupt controller related definitions
  3. * Copyright (c) 2007, Intel Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  16. * Place - Suite 330, Boston, MA 02111-1307 USA.
  17. * Authors:
  18. * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
  19. *
  20. */
  21. #ifndef __IRQ_H
  22. #define __IRQ_H
  23. #include <linux/mm_types.h>
  24. #include <linux/hrtimer.h>
  25. #include <linux/kvm_host.h>
  26. #include <linux/spinlock.h>
  27. #include <kvm/iodev.h>
  28. #include "ioapic.h"
  29. #include "lapic.h"
  30. #define PIC_NUM_PINS 16
  31. #define SELECT_PIC(irq) \
  32. ((irq) < 8 ? KVM_IRQCHIP_PIC_MASTER : KVM_IRQCHIP_PIC_SLAVE)
  33. struct kvm;
  34. struct kvm_vcpu;
  35. struct kvm_kpic_state {
  36. u8 last_irr; /* edge detection */
  37. u8 irr; /* interrupt request register */
  38. u8 imr; /* interrupt mask register */
  39. u8 isr; /* interrupt service register */
  40. u8 priority_add; /* highest irq priority */
  41. u8 irq_base;
  42. u8 read_reg_select;
  43. u8 poll;
  44. u8 special_mask;
  45. u8 init_state;
  46. u8 auto_eoi;
  47. u8 rotate_on_auto_eoi;
  48. u8 special_fully_nested_mode;
  49. u8 init4; /* true if 4 byte init */
  50. u8 elcr; /* PIIX edge/trigger selection */
  51. u8 elcr_mask;
  52. u8 isr_ack; /* interrupt ack detection */
  53. struct kvm_pic *pics_state;
  54. };
  55. struct kvm_pic {
  56. spinlock_t lock;
  57. bool wakeup_needed;
  58. unsigned pending_acks;
  59. struct kvm *kvm;
  60. struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
  61. int output; /* intr from master PIC */
  62. struct kvm_io_device dev_master;
  63. struct kvm_io_device dev_slave;
  64. struct kvm_io_device dev_eclr;
  65. void (*ack_notifier)(void *opaque, int irq);
  66. unsigned long irq_states[PIC_NUM_PINS];
  67. };
  68. int kvm_pic_init(struct kvm *kvm);
  69. void kvm_pic_destroy(struct kvm *kvm);
  70. int kvm_pic_read_irq(struct kvm *kvm);
  71. void kvm_pic_update_irq(struct kvm_pic *s);
  72. static inline int pic_in_kernel(struct kvm *kvm)
  73. {
  74. int mode = kvm->arch.irqchip_mode;
  75. /* Matches smp_wmb() when setting irqchip_mode */
  76. smp_rmb();
  77. return mode == KVM_IRQCHIP_KERNEL;
  78. }
  79. static inline int irqchip_split(struct kvm *kvm)
  80. {
  81. int mode = kvm->arch.irqchip_mode;
  82. /* Matches smp_wmb() when setting irqchip_mode */
  83. smp_rmb();
  84. return mode == KVM_IRQCHIP_SPLIT;
  85. }
  86. static inline int irqchip_kernel(struct kvm *kvm)
  87. {
  88. int mode = kvm->arch.irqchip_mode;
  89. /* Matches smp_wmb() when setting irqchip_mode */
  90. smp_rmb();
  91. return mode == KVM_IRQCHIP_KERNEL;
  92. }
  93. static inline int irqchip_in_kernel(struct kvm *kvm)
  94. {
  95. int mode = kvm->arch.irqchip_mode;
  96. /* Matches smp_wmb() when setting irqchip_mode */
  97. smp_rmb();
  98. return mode != KVM_IRQCHIP_NONE;
  99. }
  100. bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args);
  101. void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
  102. void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
  103. void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu);
  104. void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
  105. void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu);
  106. void __kvm_migrate_timers(struct kvm_vcpu *vcpu);
  107. int apic_has_pending_timer(struct kvm_vcpu *vcpu);
  108. int kvm_setup_default_irq_routing(struct kvm *kvm);
  109. int kvm_setup_empty_irq_routing(struct kvm *kvm);
  110. #endif