irq.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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 "iodev.h"
  27. struct kvm;
  28. struct kvm_vcpu;
  29. typedef void irq_request_func(void *opaque, int level);
  30. struct kvm_kpic_state {
  31. u8 last_irr; /* edge detection */
  32. u8 irr; /* interrupt request register */
  33. u8 imr; /* interrupt mask register */
  34. u8 isr; /* interrupt service register */
  35. u8 priority_add; /* highest irq priority */
  36. u8 irq_base;
  37. u8 read_reg_select;
  38. u8 poll;
  39. u8 special_mask;
  40. u8 init_state;
  41. u8 auto_eoi;
  42. u8 rotate_on_auto_eoi;
  43. u8 special_fully_nested_mode;
  44. u8 init4; /* true if 4 byte init */
  45. u8 elcr; /* PIIX edge/trigger selection */
  46. u8 elcr_mask;
  47. struct kvm_pic *pics_state;
  48. };
  49. struct kvm_pic {
  50. struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
  51. irq_request_func *irq_request;
  52. void *irq_request_opaque;
  53. int output; /* intr from master PIC */
  54. struct kvm_io_device dev;
  55. };
  56. struct kvm_pic *kvm_create_pic(struct kvm *kvm);
  57. void kvm_pic_set_irq(void *opaque, int irq, int level);
  58. int kvm_pic_read_irq(struct kvm_pic *s);
  59. void kvm_pic_update_irq(struct kvm_pic *s);
  60. #define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS
  61. #define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */
  62. #define IOAPIC_EDGE_TRIG 0
  63. #define IOAPIC_LEVEL_TRIG 1
  64. #define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000
  65. #define IOAPIC_MEM_LENGTH 0x100
  66. /* Direct registers. */
  67. #define IOAPIC_REG_SELECT 0x00
  68. #define IOAPIC_REG_WINDOW 0x10
  69. #define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */
  70. /* Indirect registers. */
  71. #define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */
  72. #define IOAPIC_REG_VERSION 0x01
  73. #define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */
  74. /*ioapic delivery mode*/
  75. #define IOAPIC_FIXED 0x0
  76. #define IOAPIC_LOWEST_PRIORITY 0x1
  77. #define IOAPIC_PMI 0x2
  78. #define IOAPIC_NMI 0x4
  79. #define IOAPIC_INIT 0x5
  80. #define IOAPIC_EXTINT 0x7
  81. struct kvm_ioapic {
  82. u64 base_address;
  83. u32 ioregsel;
  84. u32 id;
  85. u32 irr;
  86. u32 pad;
  87. union ioapic_redir_entry {
  88. u64 bits;
  89. struct {
  90. u8 vector;
  91. u8 delivery_mode:3;
  92. u8 dest_mode:1;
  93. u8 delivery_status:1;
  94. u8 polarity:1;
  95. u8 remote_irr:1;
  96. u8 trig_mode:1;
  97. u8 mask:1;
  98. u8 reserve:7;
  99. u8 reserved[4];
  100. u8 dest_id;
  101. } fields;
  102. } redirtbl[IOAPIC_NUM_PINS];
  103. struct kvm_io_device dev;
  104. struct kvm *kvm;
  105. };
  106. struct kvm_lapic {
  107. unsigned long base_address;
  108. struct kvm_io_device dev;
  109. struct {
  110. atomic_t pending;
  111. s64 period; /* unit: ns */
  112. u32 divide_count;
  113. ktime_t last_update;
  114. struct hrtimer dev;
  115. } timer;
  116. struct kvm_vcpu *vcpu;
  117. struct page *regs_page;
  118. void *regs;
  119. };
  120. #ifdef DEBUG
  121. #define ASSERT(x) \
  122. do { \
  123. if (!(x)) { \
  124. printk(KERN_EMERG "assertion failed %s: %d: %s\n", \
  125. __FILE__, __LINE__, #x); \
  126. BUG(); \
  127. } \
  128. } while (0)
  129. #else
  130. #define ASSERT(x) do { } while (0)
  131. #endif
  132. static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
  133. {
  134. return kvm->arch.vpic;
  135. }
  136. static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
  137. {
  138. return kvm->arch.vioapic;
  139. }
  140. static inline int irqchip_in_kernel(struct kvm *kvm)
  141. {
  142. return pic_irqchip(kvm) != NULL;
  143. }
  144. void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
  145. int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu);
  146. int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu);
  147. int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu);
  148. int kvm_create_lapic(struct kvm_vcpu *vcpu);
  149. void kvm_lapic_reset(struct kvm_vcpu *vcpu);
  150. void kvm_pic_reset(struct kvm_kpic_state *s);
  151. void kvm_ioapic_reset(struct kvm_ioapic *ioapic);
  152. void kvm_free_lapic(struct kvm_vcpu *vcpu);
  153. u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu);
  154. void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8);
  155. void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value);
  156. struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
  157. unsigned long bitmap);
  158. u64 kvm_get_apic_base(struct kvm_vcpu *vcpu);
  159. void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data);
  160. int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest);
  161. void kvm_ioapic_update_eoi(struct kvm *kvm, int vector);
  162. int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda);
  163. int kvm_apic_set_irq(struct kvm_vcpu *vcpu, u8 vec, u8 trig);
  164. void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu);
  165. int kvm_ioapic_init(struct kvm *kvm);
  166. void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level);
  167. int kvm_lapic_enabled(struct kvm_vcpu *vcpu);
  168. int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu);
  169. void kvm_apic_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
  170. void kvm_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
  171. void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
  172. void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
  173. void kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
  174. #endif