Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 1 | #ifndef __KVM_IO_APIC_H |
| 2 | #define __KVM_IO_APIC_H |
| 3 | |
| 4 | #include <linux/kvm_host.h> |
| 5 | |
Andre Przywara | af669ac | 2015-03-26 14:39:29 +0000 | [diff] [blame] | 6 | #include <kvm/iodev.h> |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 7 | |
| 8 | struct kvm; |
| 9 | struct kvm_vcpu; |
| 10 | |
| 11 | #define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 12 | #define MAX_NR_RESERVED_IOAPIC_PINS KVM_MAX_IRQ_ROUTES |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 13 | #define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */ |
| 14 | #define IOAPIC_EDGE_TRIG 0 |
| 15 | #define IOAPIC_LEVEL_TRIG 1 |
| 16 | |
| 17 | #define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000 |
| 18 | #define IOAPIC_MEM_LENGTH 0x100 |
| 19 | |
| 20 | /* Direct registers. */ |
| 21 | #define IOAPIC_REG_SELECT 0x00 |
| 22 | #define IOAPIC_REG_WINDOW 0x10 |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 23 | |
| 24 | /* Indirect registers. */ |
| 25 | #define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */ |
| 26 | #define IOAPIC_REG_VERSION 0x01 |
| 27 | #define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */ |
| 28 | |
| 29 | /*ioapic delivery mode*/ |
| 30 | #define IOAPIC_FIXED 0x0 |
| 31 | #define IOAPIC_LOWEST_PRIORITY 0x1 |
| 32 | #define IOAPIC_PMI 0x2 |
| 33 | #define IOAPIC_NMI 0x4 |
| 34 | #define IOAPIC_INIT 0x5 |
| 35 | #define IOAPIC_EXTINT 0x7 |
| 36 | |
Yang Zhang | 8dc6aade | 2013-04-11 19:21:36 +0800 | [diff] [blame] | 37 | #ifdef CONFIG_X86 |
| 38 | #define RTC_GSI 8 |
| 39 | #else |
| 40 | #define RTC_GSI -1U |
| 41 | #endif |
| 42 | |
Joerg Roedel | 9e4aabe | 2016-02-29 16:04:43 +0100 | [diff] [blame] | 43 | struct dest_map { |
Joerg Roedel | 9daa500 | 2016-02-29 16:04:44 +0100 | [diff] [blame] | 44 | /* vcpu bitmap where IRQ has been sent */ |
Radim Krčmář | 81cdb25 | 2016-11-23 21:15:27 +0100 | [diff] [blame^] | 45 | DECLARE_BITMAP(map, KVM_MAX_VCPU_ID); |
Joerg Roedel | 9daa500 | 2016-02-29 16:04:44 +0100 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Vector sent to a given vcpu, only valid when |
| 49 | * the vcpu's bit in map is set |
| 50 | */ |
Radim Krčmář | 81cdb25 | 2016-11-23 21:15:27 +0100 | [diff] [blame^] | 51 | u8 vectors[KVM_MAX_VCPU_ID]; |
Joerg Roedel | 9e4aabe | 2016-02-29 16:04:43 +0100 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | |
Yang Zhang | 8dc6aade | 2013-04-11 19:21:36 +0800 | [diff] [blame] | 55 | struct rtc_status { |
| 56 | int pending_eoi; |
Joerg Roedel | 9e4aabe | 2016-02-29 16:04:43 +0100 | [diff] [blame] | 57 | struct dest_map dest_map; |
Yang Zhang | 8dc6aade | 2013-04-11 19:21:36 +0800 | [diff] [blame] | 58 | }; |
| 59 | |
Paolo Bonzini | cb5281a | 2014-12-17 18:17:20 +0100 | [diff] [blame] | 60 | union kvm_ioapic_redirect_entry { |
| 61 | u64 bits; |
| 62 | struct { |
| 63 | u8 vector; |
| 64 | u8 delivery_mode:3; |
| 65 | u8 dest_mode:1; |
| 66 | u8 delivery_status:1; |
| 67 | u8 polarity:1; |
| 68 | u8 remote_irr:1; |
| 69 | u8 trig_mode:1; |
| 70 | u8 mask:1; |
| 71 | u8 reserve:7; |
| 72 | u8 reserved[4]; |
| 73 | u8 dest_id; |
| 74 | } fields; |
| 75 | }; |
| 76 | |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 77 | struct kvm_ioapic { |
| 78 | u64 base_address; |
| 79 | u32 ioregsel; |
| 80 | u32 id; |
| 81 | u32 irr; |
| 82 | u32 pad; |
Sheng Yang | cf9e4e1 | 2009-02-11 16:03:36 +0800 | [diff] [blame] | 83 | union kvm_ioapic_redirect_entry redirtbl[IOAPIC_NUM_PINS]; |
Gleb Natapov | 1a6e4a8 | 2009-08-24 11:54:19 +0300 | [diff] [blame] | 84 | unsigned long irq_states[IOAPIC_NUM_PINS]; |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 85 | struct kvm_io_device dev; |
| 86 | struct kvm *kvm; |
Marcelo Tosatti | f524472 | 2008-07-26 17:01:00 -0300 | [diff] [blame] | 87 | void (*ack_notifier)(void *opaque, int irq); |
Marcelo Tosatti | 46a47b1 | 2010-04-23 14:03:38 -0300 | [diff] [blame] | 88 | spinlock_t lock; |
Yang Zhang | 8dc6aade | 2013-04-11 19:21:36 +0800 | [diff] [blame] | 89 | struct rtc_status rtc_status; |
Zhang Haoyu | 184564e | 2014-09-11 16:47:04 +0800 | [diff] [blame] | 90 | struct delayed_work eoi_inject; |
| 91 | u32 irq_eoi[IOAPIC_NUM_PINS]; |
Wincy Van | 5bda6ee | 2014-12-24 11:14:29 +0800 | [diff] [blame] | 92 | u32 irr_delivered; |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | #ifdef DEBUG |
| 96 | #define ASSERT(x) \ |
| 97 | do { \ |
| 98 | if (!(x)) { \ |
| 99 | printk(KERN_EMERG "assertion failed %s: %d: %s\n", \ |
| 100 | __FILE__, __LINE__, #x); \ |
| 101 | BUG(); \ |
| 102 | } \ |
| 103 | } while (0) |
| 104 | #else |
| 105 | #define ASSERT(x) do { } while (0) |
| 106 | #endif |
| 107 | |
| 108 | static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm) |
| 109 | { |
| 110 | return kvm->arch.vioapic; |
| 111 | } |
| 112 | |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 113 | static inline int ioapic_in_kernel(struct kvm *kvm) |
| 114 | { |
| 115 | int ret; |
| 116 | |
| 117 | ret = (ioapic_irqchip(kvm) != NULL); |
| 118 | return ret; |
| 119 | } |
| 120 | |
Yang Zhang | 1060691 | 2013-04-11 19:21:38 +0800 | [diff] [blame] | 121 | void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu); |
Radim Krčmář | 52c233a | 2015-01-29 22:48:48 +0100 | [diff] [blame] | 122 | bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source, |
Nadav Amit | 394457a | 2014-10-03 00:30:52 +0300 | [diff] [blame] | 123 | int short_hand, unsigned int dest, int dest_mode); |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 124 | int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2); |
Yang Zhang | 1fcc789 | 2013-04-11 19:21:35 +0800 | [diff] [blame] | 125 | void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, |
| 126 | int trigger_mode); |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 127 | int kvm_ioapic_init(struct kvm *kvm); |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 128 | void kvm_ioapic_destroy(struct kvm *kvm); |
Michael S. Tsirkin | 1a577b72 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 129 | int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 130 | int level, bool line_status); |
Michael S. Tsirkin | 1a577b72 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 131 | void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id); |
Gleb Natapov | 58c2dde | 2009-03-05 16:35:04 +0200 | [diff] [blame] | 132 | int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src, |
Joerg Roedel | 9e4aabe | 2016-02-29 16:04:43 +0100 | [diff] [blame] | 133 | struct kvm_lapic_irq *irq, |
| 134 | struct dest_map *dest_map); |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 135 | int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state); |
| 136 | int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state); |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 137 | void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, |
| 138 | ulong *ioapic_handled_vectors); |
| 139 | void kvm_scan_ioapic_routes(struct kvm_vcpu *vcpu, |
| 140 | ulong *ioapic_handled_vectors); |
Zhang Xiantao | 8247019 | 2007-12-17 13:59:56 +0800 | [diff] [blame] | 141 | #endif |