irq.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. #include "ioapic.h"
  28. #include "lapic.h"
  29. #define PIC_NUM_PINS 16
  30. struct kvm;
  31. struct kvm_vcpu;
  32. typedef void irq_request_func(void *opaque, int level);
  33. struct kvm_kpic_state {
  34. u8 last_irr; /* edge detection */
  35. u8 irr; /* interrupt request register */
  36. u8 imr; /* interrupt mask register */
  37. u8 isr; /* interrupt service register */
  38. u8 priority_add; /* highest irq priority */
  39. u8 irq_base;
  40. u8 read_reg_select;
  41. u8 poll;
  42. u8 special_mask;
  43. u8 init_state;
  44. u8 auto_eoi;
  45. u8 rotate_on_auto_eoi;
  46. u8 special_fully_nested_mode;
  47. u8 init4; /* true if 4 byte init */
  48. u8 elcr; /* PIIX edge/trigger selection */
  49. u8 elcr_mask;
  50. struct kvm_pic *pics_state;
  51. };
  52. struct kvm_pic {
  53. struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
  54. irq_request_func *irq_request;
  55. void *irq_request_opaque;
  56. int output; /* intr from master PIC */
  57. struct kvm_io_device dev;
  58. };
  59. struct kvm_pic *kvm_create_pic(struct kvm *kvm);
  60. void kvm_pic_set_irq(void *opaque, int irq, int level);
  61. int kvm_pic_read_irq(struct kvm_pic *s);
  62. void kvm_pic_update_irq(struct kvm_pic *s);
  63. static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
  64. {
  65. return kvm->arch.vpic;
  66. }
  67. static inline int irqchip_in_kernel(struct kvm *kvm)
  68. {
  69. return pic_irqchip(kvm) != NULL;
  70. }
  71. void kvm_pic_reset(struct kvm_kpic_state *s);
  72. void kvm_timer_intr_post(struct kvm_vcpu *vcpu, int vec);
  73. void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
  74. void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
  75. void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
  76. void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu);
  77. void __kvm_migrate_timers(struct kvm_vcpu *vcpu);
  78. int pit_has_pending_timer(struct kvm_vcpu *vcpu);
  79. int apic_has_pending_timer(struct kvm_vcpu *vcpu);
  80. #endif