]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/kvm_host.h
KVM: remove in_range from io devices
[net-next-2.6.git] / include / linux / kvm_host.h
CommitLineData
edf88417
AK
1#ifndef __KVM_HOST_H
2#define __KVM_HOST_H
6aa8b732
AK
3
4/*
5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
7 */
8
9#include <linux/types.h>
e56a7a28 10#include <linux/hardirq.h>
6aa8b732
AK
11#include <linux/list.h>
12#include <linux/mutex.h>
13#include <linux/spinlock.h>
06ff0d37
MR
14#include <linux/signal.h>
15#include <linux/sched.h>
6aa8b732 16#include <linux/mm.h>
15ad7146 17#include <linux/preempt.h>
d4c9ff2d 18#include <linux/marker.h>
0937c48d 19#include <linux/msi.h>
e8edc6e0 20#include <asm/signal.h>
6aa8b732 21
6aa8b732 22#include <linux/kvm.h>
102d8325 23#include <linux/kvm_para.h>
6aa8b732 24
edf88417 25#include <linux/kvm_types.h>
d77a39d9 26
edf88417 27#include <asm/kvm_host.h>
d657a98e 28
d9e368d6
AK
29/*
30 * vcpu->requests bit members
31 */
3176bc3e 32#define KVM_REQ_TLB_FLUSH 0
2f52d58c 33#define KVM_REQ_MIGRATE_TIMER 1
b209749f 34#define KVM_REQ_REPORT_TPR_ACCESS 2
2e53d63a 35#define KVM_REQ_MMU_RELOAD 3
71c4dfaf 36#define KVM_REQ_TRIPLE_FAULT 4
06e05645 37#define KVM_REQ_PENDING_TIMER 5
d7690175 38#define KVM_REQ_UNHALT 6
4731d4c7 39#define KVM_REQ_MMU_SYNC 7
c8076604 40#define KVM_REQ_KVMCLOCK_UPDATE 8
32f88400 41#define KVM_REQ_KICK 9
6aa8b732 42
5550af4d
SY
43#define KVM_USERSPACE_IRQ_SOURCE_ID 0
44
6c474694 45struct kvm;
6aa8b732 46struct kvm_vcpu;
c16f862d 47extern struct kmem_cache *kvm_vcpu_cache;
6aa8b732 48
2eeb2e94
GH
49/*
50 * It would be nice to use something smarter than a linear search, TBD...
51 * Thankfully we dont expect many devices to register (famous last words :),
52 * so until then it will suffice. At least its abstracted so we can change
53 * in one place.
54 */
55struct kvm_io_bus {
56 int dev_count;
57#define NR_IOBUS_DEVS 6
58 struct kvm_io_device *devs[NR_IOBUS_DEVS];
59};
60
61void kvm_io_bus_init(struct kvm_io_bus *bus);
62void kvm_io_bus_destroy(struct kvm_io_bus *bus);
bda9020e
MT
63int kvm_io_bus_write(struct kvm_io_bus *bus, gpa_t addr, int len,
64 const void *val);
65int kvm_io_bus_read(struct kvm_io_bus *bus, gpa_t addr, int len,
66 void *val);
6c474694
MT
67void __kvm_io_bus_register_dev(struct kvm_io_bus *bus,
68 struct kvm_io_device *dev);
69void kvm_io_bus_register_dev(struct kvm *kvm, struct kvm_io_bus *bus,
2eeb2e94
GH
70 struct kvm_io_device *dev);
71
d17fbbf7
ZX
72struct kvm_vcpu {
73 struct kvm *kvm;
31bb117e 74#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 75 struct preempt_notifier preempt_notifier;
31bb117e 76#endif
d17fbbf7
ZX
77 int vcpu_id;
78 struct mutex mutex;
79 int cpu;
80 struct kvm_run *run;
d17fbbf7 81 unsigned long requests;
d0bfb940 82 unsigned long guest_debug;
d17fbbf7
ZX
83 int fpu_active;
84 int guest_fpu_loaded;
85 wait_queue_head_t wq;
86 int sigset_active;
87 sigset_t sigset;
88 struct kvm_vcpu_stat stat;
89
34c16eec 90#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
91 int mmio_needed;
92 int mmio_read_completed;
93 int mmio_is_write;
94 int mmio_size;
95 unsigned char mmio_data[8];
6aa8b732 96 gpa_t mmio_phys_addr;
34c16eec 97#endif
1165f5fe 98
d657a98e
ZX
99 struct kvm_vcpu_arch arch;
100};
101
6aa8b732
AK
102struct kvm_memory_slot {
103 gfn_t base_gfn;
104 unsigned long npages;
105 unsigned long flags;
290fc38d 106 unsigned long *rmap;
6aa8b732 107 unsigned long *dirty_bitmap;
05da4558
MT
108 struct {
109 unsigned long rmap_pde;
110 int write_count;
ec04b260 111 } *lpage_info[KVM_NR_PAGE_SIZES - 1];
8a7ae055 112 unsigned long userspace_addr;
80b14b5b 113 int user_alloc;
6aa8b732
AK
114};
115
399ec807
AK
116struct kvm_kernel_irq_routing_entry {
117 u32 gsi;
5116d8f6 118 u32 type;
4925663a 119 int (*set)(struct kvm_kernel_irq_routing_entry *e,
399ec807
AK
120 struct kvm *kvm, int level);
121 union {
122 struct {
123 unsigned irqchip;
124 unsigned pin;
125 } irqchip;
79950e10 126 struct msi_msg msi;
399ec807
AK
127 };
128 struct list_head link;
129};
130
6aa8b732 131struct kvm {
aaee2c94 132 spinlock_t mmu_lock;
84261923 133 spinlock_t requests_lock;
72dc67a6 134 struct rw_semaphore slots_lock;
6d4e4c4f 135 struct mm_struct *mm; /* userspace tied to this vm */
6aa8b732 136 int nmemslots;
e0d62c7f
IE
137 struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS +
138 KVM_PRIVATE_MEM_SLOTS];
73880c80
GN
139#ifdef CONFIG_KVM_APIC_ARCHITECTURE
140 u32 bsp_vcpu_id;
c5af89b6 141 struct kvm_vcpu *bsp_vcpu;
73880c80 142#endif
fb3f0f51 143 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
73880c80 144 atomic_t online_vcpus;
133de902 145 struct list_head vm_list;
60eead79 146 struct mutex lock;
2eeb2e94 147 struct kvm_io_bus mmio_bus;
74906345 148 struct kvm_io_bus pio_bus;
721eecbf
GH
149#ifdef CONFIG_HAVE_KVM_EVENTFD
150 struct {
151 spinlock_t lock;
152 struct list_head items;
153 } irqfds;
154#endif
ba1389b7 155 struct kvm_vm_stat stat;
d69fb81f 156 struct kvm_arch arch;
d39f13b0 157 atomic_t users_count;
5f94c174
LV
158#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
159 struct kvm_coalesced_mmio_dev *coalesced_mmio_dev;
160 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
161#endif
e930bffe 162
60eead79 163 struct mutex irq_lock;
75858a84 164#ifdef CONFIG_HAVE_KVM_IRQCHIP
399ec807 165 struct list_head irq_routing; /* of kvm_kernel_irq_routing_entry */
75858a84
AK
166 struct hlist_head mask_notifier_list;
167#endif
168
e930bffe
AA
169#ifdef KVM_ARCH_WANT_MMU_NOTIFIER
170 struct mmu_notifier mmu_notifier;
171 unsigned long mmu_notifier_seq;
172 long mmu_notifier_count;
173#endif
6aa8b732
AK
174};
175
f0242478
RR
176/* The guest did something we don't support. */
177#define pr_unimpl(vcpu, fmt, ...) \
178 do { \
179 if (printk_ratelimit()) \
180 printk(KERN_ERR "kvm: %i: cpu%i " fmt, \
181 current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
d77c26fc 182 } while (0)
f0242478 183
6aa8b732
AK
184#define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
185#define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
186
988a2cae
GN
187static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
188{
189 smp_rmb();
190 return kvm->vcpus[i];
191}
192
193#define kvm_for_each_vcpu(idx, vcpup, kvm) \
194 for (idx = 0, vcpup = kvm_get_vcpu(kvm, idx); \
195 idx < atomic_read(&kvm->online_vcpus) && vcpup; \
196 vcpup = kvm_get_vcpu(kvm, ++idx))
197
fb3f0f51
RR
198int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
199void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
200
313a3dc7
CO
201void vcpu_load(struct kvm_vcpu *vcpu);
202void vcpu_put(struct kvm_vcpu *vcpu);
203
f8c16bba 204int kvm_init(void *opaque, unsigned int vcpu_size,
c16f862d 205 struct module *module);
cb498ea2 206void kvm_exit(void);
6aa8b732 207
d39f13b0
IE
208void kvm_get_kvm(struct kvm *kvm);
209void kvm_put_kvm(struct kvm *kvm);
210
6aa8b732
AK
211#define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
212#define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
213static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
039576c0 214struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
6aa8b732 215
cea7bb21 216extern struct page *bad_page;
35149e21 217extern pfn_t bad_pfn;
6aa8b732 218
cea7bb21 219int is_error_page(struct page *page);
35149e21 220int is_error_pfn(pfn_t pfn);
f9d46eb0 221int kvm_is_error_hva(unsigned long addr);
210c7c4d
IE
222int kvm_set_memory_region(struct kvm *kvm,
223 struct kvm_userspace_memory_region *mem,
224 int user_alloc);
f78e0e2e
SY
225int __kvm_set_memory_region(struct kvm *kvm,
226 struct kvm_userspace_memory_region *mem,
227 int user_alloc);
0de10343
ZX
228int kvm_arch_set_memory_region(struct kvm *kvm,
229 struct kvm_userspace_memory_region *mem,
230 struct kvm_memory_slot old,
231 int user_alloc);
54dee993 232void kvm_disable_largepages(void);
34d4cb8f 233void kvm_arch_flush_shadow(struct kvm *kvm);
290fc38d 234gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
954bbbc2 235struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 236unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
b4231d61
IE
237void kvm_release_page_clean(struct page *page);
238void kvm_release_page_dirty(struct page *page);
35149e21
AL
239void kvm_set_page_dirty(struct page *page);
240void kvm_set_page_accessed(struct page *page);
241
242pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
243void kvm_release_pfn_dirty(pfn_t);
244void kvm_release_pfn_clean(pfn_t pfn);
245void kvm_set_pfn_dirty(pfn_t pfn);
246void kvm_set_pfn_accessed(pfn_t pfn);
247void kvm_get_pfn(pfn_t pfn);
248
195aefde
IE
249int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
250 int len);
7ec54588
MT
251int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
252 unsigned long len);
195aefde
IE
253int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
254int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
255 int offset, int len);
256int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
257 unsigned long len);
258int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
259int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 260struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
e0d62c7f 261int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
6aa8b732
AK
262void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
263
8776e519 264void kvm_vcpu_block(struct kvm_vcpu *vcpu);
6aa8b732 265void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
266void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
267void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
d9e368d6 268void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 269void kvm_reload_remote_mmus(struct kvm *kvm);
6aa8b732 270
043405e1
CO
271long kvm_arch_dev_ioctl(struct file *filp,
272 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
273long kvm_arch_vcpu_ioctl(struct file *filp,
274 unsigned int ioctl, unsigned long arg);
018d00d2
ZX
275
276int kvm_dev_ioctl_check_extension(long ext);
277
5bb064dc
ZX
278int kvm_get_dirty_log(struct kvm *kvm,
279 struct kvm_dirty_log *log, int *is_dirty);
280int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
281 struct kvm_dirty_log *log);
282
1fe779f8
CO
283int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
284 struct
285 kvm_userspace_memory_region *mem,
286 int user_alloc);
287long kvm_arch_vm_ioctl(struct file *filp,
288 unsigned int ioctl, unsigned long arg);
313a3dc7 289
d0752060
HB
290int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
291int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
292
8b006791
ZX
293int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
294 struct kvm_translation *tr);
295
b6c7a5dc
HB
296int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
297int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
298int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
299 struct kvm_sregs *sregs);
300int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
301 struct kvm_sregs *sregs);
62d9f0db
MT
302int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
303 struct kvm_mp_state *mp_state);
304int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
305 struct kvm_mp_state *mp_state);
d0bfb940
JK
306int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
307 struct kvm_guest_debug *dbg);
b6c7a5dc
HB
308int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
309
f8c16bba
ZX
310int kvm_arch_init(void *opaque);
311void kvm_arch_exit(void);
043405e1 312
e9b11c17
ZX
313int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
314void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
315
316void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
317void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
318void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
319struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
26e5215f 320int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
d40ccc62 321void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17
ZX
322
323int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
324void kvm_arch_hardware_enable(void *garbage);
325void kvm_arch_hardware_disable(void *garbage);
326int kvm_arch_hardware_setup(void);
327void kvm_arch_hardware_unsetup(void);
328void kvm_arch_check_processor_compat(void *rtn);
1d737c8a 329int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
78646121 330int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
e9b11c17 331
d19a9cd2
ZX
332void kvm_free_physmem(struct kvm *kvm);
333
334struct kvm *kvm_arch_create_vm(void);
335void kvm_arch_destroy_vm(struct kvm *kvm);
8a98f664 336void kvm_free_all_assigned_devices(struct kvm *kvm);
ad8ba2cd 337void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 338
682c59a3
ZX
339int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
340int kvm_cpu_has_interrupt(struct kvm_vcpu *v);
3d80840d 341int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
5736199a 342void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
682c59a3 343
c77fb9dc
XZ
344int kvm_is_mmio_pfn(pfn_t pfn);
345
62c476c7
BAY
346struct kvm_irq_ack_notifier {
347 struct hlist_node link;
348 unsigned gsi;
349 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
350};
351
2350bd1f 352#define KVM_ASSIGNED_MSIX_PENDING 0x1
c1e01514
SY
353struct kvm_guest_msix_entry {
354 u32 vector;
355 u16 entry;
356 u16 flags;
357};
358
62c476c7
BAY
359struct kvm_assigned_dev_kernel {
360 struct kvm_irq_ack_notifier ack_notifier;
361 struct work_struct interrupt_work;
362 struct list_head list;
363 int assigned_dev_id;
364 int host_busnr;
365 int host_devfn;
c1e01514 366 unsigned int entries_nr;
62c476c7 367 int host_irq;
defaf158 368 bool host_irq_disabled;
c1e01514 369 struct msix_entry *host_msix_entries;
62c476c7 370 int guest_irq;
c1e01514 371 struct kvm_guest_msix_entry *guest_msix_entries;
4f906c19 372 unsigned long irq_requested_type;
5550af4d 373 int irq_source_id;
b653574a 374 int flags;
62c476c7
BAY
375 struct pci_dev *dev;
376 struct kvm *kvm;
547de29e 377 spinlock_t assigned_dev_lock;
62c476c7 378};
75858a84
AK
379
380struct kvm_irq_mask_notifier {
381 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
382 int irq;
383 struct hlist_node link;
384};
385
386void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
387 struct kvm_irq_mask_notifier *kimn);
388void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
389 struct kvm_irq_mask_notifier *kimn);
390void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask);
391
4925663a 392int kvm_set_irq(struct kvm *kvm, int irq_source_id, int irq, int level);
44882eed 393void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
394void kvm_register_irq_ack_notifier(struct kvm *kvm,
395 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
396void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
397 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
398int kvm_request_irq_source_id(struct kvm *kvm);
399void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
62c476c7 400
522c68c4
SY
401/* For vcpu->arch.iommu_flags */
402#define KVM_IOMMU_CACHE_COHERENCY 0x1
403
19de40a8 404#ifdef CONFIG_IOMMU_API
62c476c7
BAY
405int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn,
406 unsigned long npages);
260782bc 407int kvm_iommu_map_guest(struct kvm *kvm);
62c476c7 408int kvm_iommu_unmap_guest(struct kvm *kvm);
260782bc
WH
409int kvm_assign_device(struct kvm *kvm,
410 struct kvm_assigned_dev_kernel *assigned_dev);
0a920356
WH
411int kvm_deassign_device(struct kvm *kvm,
412 struct kvm_assigned_dev_kernel *assigned_dev);
19de40a8 413#else /* CONFIG_IOMMU_API */
62c476c7
BAY
414static inline int kvm_iommu_map_pages(struct kvm *kvm,
415 gfn_t base_gfn,
416 unsigned long npages)
417{
418 return 0;
419}
420
260782bc 421static inline int kvm_iommu_map_guest(struct kvm *kvm)
62c476c7
BAY
422{
423 return -ENODEV;
424}
425
426static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
427{
428 return 0;
429}
260782bc
WH
430
431static inline int kvm_assign_device(struct kvm *kvm,
432 struct kvm_assigned_dev_kernel *assigned_dev)
433{
434 return 0;
435}
0a920356
WH
436
437static inline int kvm_deassign_device(struct kvm *kvm,
438 struct kvm_assigned_dev_kernel *assigned_dev)
439{
440 return 0;
441}
19de40a8 442#endif /* CONFIG_IOMMU_API */
62c476c7 443
d172fcd3
LV
444static inline void kvm_guest_enter(void)
445{
e56a7a28 446 account_system_vtime(current);
d172fcd3
LV
447 current->flags |= PF_VCPU;
448}
449
450static inline void kvm_guest_exit(void)
451{
e56a7a28 452 account_system_vtime(current);
d172fcd3
LV
453 current->flags &= ~PF_VCPU;
454}
455
6aa8b732
AK
456static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
457{
458 return slot - kvm->memslots;
459}
460
1755fbcc
AK
461static inline gpa_t gfn_to_gpa(gfn_t gfn)
462{
463 return (gpa_t)gfn << PAGE_SHIFT;
464}
6aa8b732 465
62c476c7
BAY
466static inline hpa_t pfn_to_hpa(pfn_t pfn)
467{
468 return (hpa_t)pfn << PAGE_SHIFT;
469}
470
2f599714 471static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2f52d58c
AK
472{
473 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
474}
475
ba1389b7
AK
476enum kvm_stat_kind {
477 KVM_STAT_VM,
478 KVM_STAT_VCPU,
479};
480
417bc304
HB
481struct kvm_stats_debugfs_item {
482 const char *name;
483 int offset;
ba1389b7 484 enum kvm_stat_kind kind;
417bc304
HB
485 struct dentry *dentry;
486};
487extern struct kvm_stats_debugfs_item debugfs_entries[];
76f7c879 488extern struct dentry *kvm_debugfs_dir;
d4c9ff2d 489
e930bffe
AA
490#ifdef KVM_ARCH_WANT_MMU_NOTIFIER
491static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq)
492{
493 if (unlikely(vcpu->kvm->mmu_notifier_count))
494 return 1;
495 /*
496 * Both reads happen under the mmu_lock and both values are
497 * modified under mmu_lock, so there's no need of smb_rmb()
498 * here in between, otherwise mmu_notifier_count should be
499 * read before mmu_notifier_seq, see
500 * mmu_notifier_invalidate_range_end write side.
501 */
502 if (vcpu->kvm->mmu_notifier_seq != mmu_seq)
503 return 1;
504 return 0;
505}
506#endif
507
399ec807
AK
508#ifdef CONFIG_HAVE_KVM_IRQCHIP
509
510#define KVM_MAX_IRQ_ROUTES 1024
511
512int kvm_setup_default_irq_routing(struct kvm *kvm);
513int kvm_set_irq_routing(struct kvm *kvm,
514 const struct kvm_irq_routing_entry *entries,
515 unsigned nr,
516 unsigned flags);
517void kvm_free_irq_routing(struct kvm *kvm);
518
519#else
520
521static inline void kvm_free_irq_routing(struct kvm *kvm) {}
522
523#endif
524
721eecbf
GH
525#ifdef CONFIG_HAVE_KVM_EVENTFD
526
527void kvm_irqfd_init(struct kvm *kvm);
528int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags);
529void kvm_irqfd_release(struct kvm *kvm);
530
531#else
532
533static inline void kvm_irqfd_init(struct kvm *kvm) {}
534static inline int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags)
535{
536 return -EINVAL;
537}
538
539static inline void kvm_irqfd_release(struct kvm *kvm) {}
540
541#endif /* CONFIG_HAVE_KVM_EVENTFD */
542
73880c80 543#ifdef CONFIG_KVM_APIC_ARCHITECTURE
c5af89b6
GN
544static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
545{
d3efc8ef 546 return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
c5af89b6 547}
6aa8b732 548#endif
73880c80 549#endif