ioapic.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #ifndef __KVM_IO_APIC_H
  2. #define __KVM_IO_APIC_H
  3. #include <linux/kvm_host.h>
  4. #include "iodev.h"
  5. struct kvm;
  6. struct kvm_vcpu;
  7. #define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS
  8. #define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */
  9. #define IOAPIC_EDGE_TRIG 0
  10. #define IOAPIC_LEVEL_TRIG 1
  11. #define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000
  12. #define IOAPIC_MEM_LENGTH 0x100
  13. /* Direct registers. */
  14. #define IOAPIC_REG_SELECT 0x00
  15. #define IOAPIC_REG_WINDOW 0x10
  16. #define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */
  17. /* Indirect registers. */
  18. #define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */
  19. #define IOAPIC_REG_VERSION 0x01
  20. #define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */
  21. /*ioapic delivery mode*/
  22. #define IOAPIC_FIXED 0x0
  23. #define IOAPIC_LOWEST_PRIORITY 0x1
  24. #define IOAPIC_PMI 0x2
  25. #define IOAPIC_NMI 0x4
  26. #define IOAPIC_INIT 0x5
  27. #define IOAPIC_EXTINT 0x7
  28. struct kvm_ioapic {
  29. u64 base_address;
  30. u32 ioregsel;
  31. u32 id;
  32. u32 irr;
  33. u32 pad;
  34. union kvm_ioapic_redirect_entry redirtbl[IOAPIC_NUM_PINS];
  35. struct kvm_io_device dev;
  36. struct kvm *kvm;
  37. void (*ack_notifier)(void *opaque, int irq);
  38. };
  39. #ifdef DEBUG
  40. #define ASSERT(x) \
  41. do { \
  42. if (!(x)) { \
  43. printk(KERN_EMERG "assertion failed %s: %d: %s\n", \
  44. __FILE__, __LINE__, #x); \
  45. BUG(); \
  46. } \
  47. } while (0)
  48. #else
  49. #define ASSERT(x) do { } while (0)
  50. #endif
  51. static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
  52. {
  53. return kvm->arch.vioapic;
  54. }
  55. int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
  56. int short_hand, int dest, int dest_mode);
  57. int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2);
  58. void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode);
  59. int kvm_ioapic_init(struct kvm *kvm);
  60. int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level);
  61. void kvm_ioapic_reset(struct kvm_ioapic *ioapic);
  62. int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src,
  63. struct kvm_lapic_irq *irq);
  64. #endif