KVM: MMU: Introduce a helper function for FIFO zapping
[linux-2.6-block.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>
187f1882 16#include <linux/bug.h>
6aa8b732 17#include <linux/mm.h>
b297e672 18#include <linux/mmu_notifier.h>
15ad7146 19#include <linux/preempt.h>
0937c48d 20#include <linux/msi.h>
d89f5eff 21#include <linux/slab.h>
bd2b53b2 22#include <linux/rcupdate.h>
bd80158a 23#include <linux/ratelimit.h>
83f09228 24#include <linux/err.h>
c11f11fc 25#include <linux/irqflags.h>
e8edc6e0 26#include <asm/signal.h>
6aa8b732 27
6aa8b732 28#include <linux/kvm.h>
102d8325 29#include <linux/kvm_para.h>
6aa8b732 30
edf88417 31#include <linux/kvm_types.h>
d77a39d9 32
edf88417 33#include <asm/kvm_host.h>
d657a98e 34
cef4dea0
AK
35#ifndef KVM_MMIO_SIZE
36#define KVM_MMIO_SIZE 8
37#endif
38
67b29204
XG
39/*
40 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
41 * in kvm, other bits are visible for userspace which are defined in
42 * include/linux/kvm_h.
43 */
44#define KVM_MEMSLOT_INVALID (1UL << 16)
45
87da7e66
XG
46/* Two fragments for cross MMIO pages. */
47#define KVM_MAX_MMIO_FRAGMENTS 2
f78146b0 48
9c5b1172
XG
49/*
50 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
51 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
52 * mask bit 63 to indicate the noslot pfn.
9c5b1172 53 */
81c52c56
XG
54#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
55#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
56#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
57
58#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
59#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 60#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
6c8ee57b 61
81c52c56
XG
62/*
63 * error pfns indicate that the gfn is in slot but faild to
64 * translate it to pfn on host.
65 */
9c5b1172 66static inline bool is_error_pfn(pfn_t pfn)
83f09228 67{
9c5b1172 68 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
69}
70
81c52c56
XG
71/*
72 * error_noslot pfns indicate that the gfn can not be
73 * translated to pfn - it is not in slot or failed to
74 * translate it to pfn.
75 */
76static inline bool is_error_noslot_pfn(pfn_t pfn)
83f09228 77{
81c52c56 78 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
79}
80
81c52c56
XG
81/* noslot pfn indicates that the gfn is not in slot. */
82static inline bool is_noslot_pfn(pfn_t pfn)
83f09228 83{
81c52c56 84 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
85}
86
7068d097
XG
87#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
88#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
89
90static inline bool kvm_is_error_hva(unsigned long addr)
91{
7068d097 92 return addr >= PAGE_OFFSET;
ca3a490c
XG
93}
94
6cede2e6
XG
95#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
96
9c5b1172 97static inline bool is_error_page(struct page *page)
6cede2e6
XG
98{
99 return IS_ERR(page);
100}
101
d9e368d6
AK
102/*
103 * vcpu->requests bit members
104 */
3176bc3e 105#define KVM_REQ_TLB_FLUSH 0
2f52d58c 106#define KVM_REQ_MIGRATE_TIMER 1
b209749f 107#define KVM_REQ_REPORT_TPR_ACCESS 2
2e53d63a 108#define KVM_REQ_MMU_RELOAD 3
71c4dfaf 109#define KVM_REQ_TRIPLE_FAULT 4
06e05645 110#define KVM_REQ_PENDING_TIMER 5
d7690175 111#define KVM_REQ_UNHALT 6
4731d4c7 112#define KVM_REQ_MMU_SYNC 7
34c238a1 113#define KVM_REQ_CLOCK_UPDATE 8
32f88400 114#define KVM_REQ_KICK 9
02daab21 115#define KVM_REQ_DEACTIVATE_FPU 10
3842d135 116#define KVM_REQ_EVENT 11
af585b92 117#define KVM_REQ_APF_HALT 12
c9aaa895 118#define KVM_REQ_STEAL_UPDATE 13
7460fb4a 119#define KVM_REQ_NMI 14
d6185f20 120#define KVM_REQ_IMMEDIATE_EXIT 15
f5132b01
GN
121#define KVM_REQ_PMU 16
122#define KVM_REQ_PMI 17
f61c94bb 123#define KVM_REQ_WATCHDOG 18
d828199e
MT
124#define KVM_REQ_MASTERCLOCK_UPDATE 19
125#define KVM_REQ_MCLOCK_INPROGRESS 20
1c810636 126#define KVM_REQ_EPR_EXIT 21
c7c9c56c 127#define KVM_REQ_EOIBITMAP 22
6aa8b732 128
7a84428a
AW
129#define KVM_USERSPACE_IRQ_SOURCE_ID 0
130#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 131
6c474694 132struct kvm;
6aa8b732 133struct kvm_vcpu;
c16f862d 134extern struct kmem_cache *kvm_vcpu_cache;
6aa8b732 135
743eeb0b
SL
136struct kvm_io_range {
137 gpa_t addr;
138 int len;
139 struct kvm_io_device *dev;
140};
141
786a9f88 142#define NR_IOBUS_DEVS 1000
a1300716 143
2eeb2e94
GH
144struct kvm_io_bus {
145 int dev_count;
a1300716 146 struct kvm_io_range range[];
2eeb2e94
GH
147};
148
e93f8a0f
MT
149enum kvm_bus {
150 KVM_MMIO_BUS,
151 KVM_PIO_BUS,
060f0ce6 152 KVM_VIRTIO_CCW_NOTIFY_BUS,
e93f8a0f
MT
153 KVM_NR_BUSES
154};
155
156int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
157 int len, const void *val);
158int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len,
bda9020e 159 void *val);
743eeb0b
SL
160int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
161 int len, struct kvm_io_device *dev);
e93f8a0f
MT
162int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
163 struct kvm_io_device *dev);
2eeb2e94 164
af585b92
GN
165#ifdef CONFIG_KVM_ASYNC_PF
166struct kvm_async_pf {
167 struct work_struct work;
168 struct list_head link;
169 struct list_head queue;
170 struct kvm_vcpu *vcpu;
171 struct mm_struct *mm;
172 gva_t gva;
173 unsigned long addr;
174 struct kvm_arch_async_pf arch;
175 struct page *page;
176 bool done;
177};
178
179void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
180void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
181int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
182 struct kvm_arch_async_pf *arch);
344d9588 183int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
184#endif
185
6b7e2d09
XG
186enum {
187 OUTSIDE_GUEST_MODE,
188 IN_GUEST_MODE,
c142786c
AK
189 EXITING_GUEST_MODE,
190 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
191};
192
f78146b0
AK
193/*
194 * Sometimes a large or cross-page mmio needs to be broken up into separate
195 * exits for userspace servicing.
196 */
197struct kvm_mmio_fragment {
198 gpa_t gpa;
199 void *data;
200 unsigned len;
201};
202
d17fbbf7
ZX
203struct kvm_vcpu {
204 struct kvm *kvm;
31bb117e 205#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 206 struct preempt_notifier preempt_notifier;
31bb117e 207#endif
6b7e2d09 208 int cpu;
d17fbbf7 209 int vcpu_id;
6b7e2d09
XG
210 int srcu_idx;
211 int mode;
d17fbbf7 212 unsigned long requests;
d0bfb940 213 unsigned long guest_debug;
6b7e2d09
XG
214
215 struct mutex mutex;
216 struct kvm_run *run;
f656ce01 217
d17fbbf7 218 int fpu_active;
2acf923e 219 int guest_fpu_loaded, guest_xcr0_loaded;
d17fbbf7 220 wait_queue_head_t wq;
34bb10b7 221 struct pid *pid;
d17fbbf7
ZX
222 int sigset_active;
223 sigset_t sigset;
224 struct kvm_vcpu_stat stat;
225
34c16eec 226#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
227 int mmio_needed;
228 int mmio_read_completed;
229 int mmio_is_write;
f78146b0
AK
230 int mmio_cur_fragment;
231 int mmio_nr_fragments;
232 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 233#endif
1165f5fe 234
af585b92
GN
235#ifdef CONFIG_KVM_ASYNC_PF
236 struct {
237 u32 queued;
238 struct list_head queue;
239 struct list_head done;
240 spinlock_t lock;
241 } async_pf;
242#endif
243
4c088493
R
244#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
245 /*
246 * Cpu relax intercept or pause loop exit optimization
247 * in_spin_loop: set when a vcpu does a pause loop exit
248 * or cpu relax intercepted.
249 * dy_eligible: indicates whether vcpu is eligible for directed yield.
250 */
251 struct {
252 bool in_spin_loop;
253 bool dy_eligible;
254 } spin_loop;
255#endif
d657a98e
ZX
256 struct kvm_vcpu_arch arch;
257};
258
6b7e2d09
XG
259static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
260{
261 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
262}
263
660c22c4
TY
264/*
265 * Some of the bitops functions do not support too long bitmaps.
266 * This number must be determined not to exceed such limits.
267 */
268#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
269
6aa8b732
AK
270struct kvm_memory_slot {
271 gfn_t base_gfn;
272 unsigned long npages;
6aa8b732 273 unsigned long *dirty_bitmap;
db3fe4eb 274 struct kvm_arch_memory_slot arch;
8a7ae055 275 unsigned long userspace_addr;
6104f472 276 u32 flags;
1e702d9a 277 short id;
6aa8b732
AK
278};
279
87bf6e7d
TY
280static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
281{
282 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
283}
284
399ec807
AK
285struct kvm_kernel_irq_routing_entry {
286 u32 gsi;
5116d8f6 287 u32 type;
4925663a 288 int (*set)(struct kvm_kernel_irq_routing_entry *e,
1a6e4a8c 289 struct kvm *kvm, int irq_source_id, int level);
399ec807
AK
290 union {
291 struct {
292 unsigned irqchip;
293 unsigned pin;
294 } irqchip;
79950e10 295 struct msi_msg msi;
399ec807 296 };
46e624b9
GN
297 struct hlist_node link;
298};
299
3e71f88b
GN
300#ifdef __KVM_HAVE_IOAPIC
301
46e624b9 302struct kvm_irq_routing_table {
3e71f88b 303 int chip[KVM_NR_IRQCHIPS][KVM_IOAPIC_NUM_PINS];
46e624b9
GN
304 struct kvm_kernel_irq_routing_entry *rt_entries;
305 u32 nr_rt_entries;
306 /*
307 * Array indexed by gsi. Each entry contains list of irq chips
308 * the gsi is connected to.
309 */
310 struct hlist_head map[0];
399ec807
AK
311};
312
3e71f88b
GN
313#else
314
315struct kvm_irq_routing_table {};
316
317#endif
318
0743247f
AW
319#ifndef KVM_PRIVATE_MEM_SLOTS
320#define KVM_PRIVATE_MEM_SLOTS 0
321#endif
322
93a5cef0 323#ifndef KVM_MEM_SLOTS_NUM
bbacc0c1 324#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
93a5cef0
XG
325#endif
326
bf3e05bc
XG
327/*
328 * Note:
329 * memslots are not sorted by id anymore, please use id_to_memslot()
330 * to get the memslot by its id.
331 */
46a26bf5 332struct kvm_memslots {
49c7754c 333 u64 generation;
93a5cef0 334 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
f85e2cb5 335 /* The mapping table from slot id to the index in memslots[]. */
1e702d9a 336 short id_to_index[KVM_MEM_SLOTS_NUM];
46a26bf5
MT
337};
338
6aa8b732 339struct kvm {
aaee2c94 340 spinlock_t mmu_lock;
79fac95e 341 struct mutex slots_lock;
6d4e4c4f 342 struct mm_struct *mm; /* userspace tied to this vm */
46a26bf5 343 struct kvm_memslots *memslots;
bc6678a3 344 struct srcu_struct srcu;
73880c80
GN
345#ifdef CONFIG_KVM_APIC_ARCHITECTURE
346 u32 bsp_vcpu_id;
73880c80 347#endif
fb3f0f51 348 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
73880c80 349 atomic_t online_vcpus;
217ece61 350 int last_boosted_vcpu;
133de902 351 struct list_head vm_list;
60eead79 352 struct mutex lock;
e93f8a0f 353 struct kvm_io_bus *buses[KVM_NR_BUSES];
721eecbf
GH
354#ifdef CONFIG_HAVE_KVM_EVENTFD
355 struct {
356 spinlock_t lock;
357 struct list_head items;
7a84428a
AW
358 struct list_head resampler_list;
359 struct mutex resampler_lock;
721eecbf 360 } irqfds;
d34e6b17 361 struct list_head ioeventfds;
721eecbf 362#endif
ba1389b7 363 struct kvm_vm_stat stat;
d69fb81f 364 struct kvm_arch arch;
d39f13b0 365 atomic_t users_count;
5f94c174 366#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
5f94c174 367 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
368 spinlock_t ring_lock;
369 struct list_head coalesced_zones;
5f94c174 370#endif
e930bffe 371
60eead79 372 struct mutex irq_lock;
75858a84 373#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2
MT
374 /*
375 * Update side is protected by irq_lock and,
376 * if configured, irqfds.lock.
377 */
4b6a2872 378 struct kvm_irq_routing_table __rcu *irq_routing;
75858a84 379 struct hlist_head mask_notifier_list;
136bdfee 380 struct hlist_head irq_ack_notifier_list;
75858a84
AK
381#endif
382
36c1ed82 383#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe
AA
384 struct mmu_notifier mmu_notifier;
385 unsigned long mmu_notifier_seq;
386 long mmu_notifier_count;
387#endif
5c663a15 388 long tlbs_dirty;
6aa8b732
AK
389};
390
a737f256
CD
391#define kvm_err(fmt, ...) \
392 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
393#define kvm_info(fmt, ...) \
394 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
395#define kvm_debug(fmt, ...) \
396 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
397#define kvm_pr_unimpl(fmt, ...) \
398 pr_err_ratelimited("kvm [%i]: " fmt, \
399 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 400
a737f256
CD
401/* The guest did something we don't support. */
402#define vcpu_unimpl(vcpu, fmt, ...) \
403 kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
6aa8b732 404
988a2cae
GN
405static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
406{
407 smp_rmb();
408 return kvm->vcpus[i];
409}
410
411#define kvm_for_each_vcpu(idx, vcpup, kvm) \
b42fc3cb
JM
412 for (idx = 0; \
413 idx < atomic_read(&kvm->online_vcpus) && \
414 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
415 idx++)
988a2cae 416
be6ba0f0
XG
417#define kvm_for_each_memslot(memslot, slots) \
418 for (memslot = &slots->memslots[0]; \
bf3e05bc
XG
419 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
420 memslot++)
be6ba0f0 421
fb3f0f51
RR
422int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
423void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
424
9fc77441 425int __must_check vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
426void vcpu_put(struct kvm_vcpu *vcpu);
427
a0f155e9
CH
428#ifdef __KVM_HAVE_IOAPIC
429int kvm_irqfd_init(void);
430void kvm_irqfd_exit(void);
431#else
432static inline int kvm_irqfd_init(void)
433{
434 return 0;
435}
436
437static inline void kvm_irqfd_exit(void)
438{
439}
440#endif
0ee75bea 441int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 442 struct module *module);
cb498ea2 443void kvm_exit(void);
6aa8b732 444
d39f13b0
IE
445void kvm_get_kvm(struct kvm *kvm);
446void kvm_put_kvm(struct kvm *kvm);
116c14c0
AW
447void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new,
448 u64 last_generation);
d39f13b0 449
90d83dc3
LJ
450static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
451{
452 return rcu_dereference_check(kvm->memslots,
453 srcu_read_lock_held(&kvm->srcu)
454 || lockdep_is_held(&kvm->slots_lock));
455}
456
28a37544
XG
457static inline struct kvm_memory_slot *
458id_to_memslot(struct kvm_memslots *slots, int id)
459{
f85e2cb5
XG
460 int index = slots->id_to_index[id];
461 struct kvm_memory_slot *slot;
bf3e05bc 462
f85e2cb5 463 slot = &slots->memslots[index];
bf3e05bc 464
f85e2cb5
XG
465 WARN_ON(slot->id != id);
466 return slot;
28a37544
XG
467}
468
74d0727c
TY
469/*
470 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
471 * - create a new memory slot
472 * - delete an existing memory slot
473 * - modify an existing memory slot
474 * -- move it in the guest physical memory space
475 * -- just change its flags
476 *
477 * Since flags can be changed by some of these operations, the following
478 * differentiation is the best we can do for __kvm_set_memory_region():
479 */
480enum kvm_mr_change {
481 KVM_MR_CREATE,
482 KVM_MR_DELETE,
483 KVM_MR_MOVE,
484 KVM_MR_FLAGS_ONLY,
485};
486
210c7c4d 487int kvm_set_memory_region(struct kvm *kvm,
47ae31e2 488 struct kvm_userspace_memory_region *mem);
f78e0e2e 489int __kvm_set_memory_region(struct kvm *kvm,
47ae31e2 490 struct kvm_userspace_memory_region *mem);
db3fe4eb
TY
491void kvm_arch_free_memslot(struct kvm_memory_slot *free,
492 struct kvm_memory_slot *dont);
493int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages);
f7784b8e
MT
494int kvm_arch_prepare_memory_region(struct kvm *kvm,
495 struct kvm_memory_slot *memslot,
7b6195a9
TY
496 struct kvm_userspace_memory_region *mem,
497 enum kvm_mr_change change);
f7784b8e 498void kvm_arch_commit_memory_region(struct kvm *kvm,
0de10343 499 struct kvm_userspace_memory_region *mem,
8482644a
TY
500 const struct kvm_memory_slot *old,
501 enum kvm_mr_change change);
db3fe4eb 502bool kvm_largepages_enabled(void);
54dee993 503void kvm_disable_largepages(void);
2df72e9b
MT
504/* flush all memory translations */
505void kvm_arch_flush_shadow_all(struct kvm *kvm);
506/* flush memory translations pointing to 'slot' */
507void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
508 struct kvm_memory_slot *slot);
a983fb23 509
48987781
XG
510int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
511 int nr_pages);
512
954bbbc2 513struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 514unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
4d8b81ab 515unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
b4231d61
IE
516void kvm_release_page_clean(struct page *page);
517void kvm_release_page_dirty(struct page *page);
35149e21
AL
518void kvm_set_page_dirty(struct page *page);
519void kvm_set_page_accessed(struct page *page);
520
365fb3fd 521pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
612819c3
MT
522pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
523 bool write_fault, bool *writable);
35149e21 524pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
612819c3
MT
525pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
526 bool *writable);
d5661048 527pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
037d92dc
XG
528pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
529
32cad84f 530void kvm_release_pfn_dirty(pfn_t pfn);
35149e21
AL
531void kvm_release_pfn_clean(pfn_t pfn);
532void kvm_set_pfn_dirty(pfn_t pfn);
533void kvm_set_pfn_accessed(pfn_t pfn);
534void kvm_get_pfn(pfn_t pfn);
535
195aefde
IE
536int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
537 int len);
7ec54588
MT
538int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
539 unsigned long len);
195aefde 540int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
e03b644f
GN
541int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
542 void *data, unsigned long len);
195aefde
IE
543int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
544 int offset, int len);
545int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
546 unsigned long len);
49c7754c
GN
547int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
548 void *data, unsigned long len);
549int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
550 gpa_t gpa);
195aefde
IE
551int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
552int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 553struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
e0d62c7f 554int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
8f0b1ab6 555unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
6aa8b732 556void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
49c7754c
GN
557void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
558 gfn_t gfn);
6aa8b732 559
8776e519 560void kvm_vcpu_block(struct kvm_vcpu *vcpu);
b6d33834 561void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
41628d33 562bool kvm_vcpu_yield_to(struct kvm_vcpu *target);
d255f4f2 563void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
6aa8b732 564void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
565void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
566void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
a4ee1ca4 567
d9e368d6 568void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 569void kvm_reload_remote_mmus(struct kvm *kvm);
d828199e 570void kvm_make_mclock_inprogress_request(struct kvm *kvm);
c7c9c56c 571void kvm_make_update_eoibitmap_request(struct kvm *kvm);
6aa8b732 572
043405e1
CO
573long kvm_arch_dev_ioctl(struct file *filp,
574 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
575long kvm_arch_vcpu_ioctl(struct file *filp,
576 unsigned int ioctl, unsigned long arg);
5b1c1493 577int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2
ZX
578
579int kvm_dev_ioctl_check_extension(long ext);
580
5bb064dc
ZX
581int kvm_get_dirty_log(struct kvm *kvm,
582 struct kvm_dirty_log *log, int *is_dirty);
583int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
584 struct kvm_dirty_log *log);
585
1fe779f8 586int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
47ae31e2 587 struct kvm_userspace_memory_region *mem);
23d43cf9 588int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level);
1fe779f8
CO
589long kvm_arch_vm_ioctl(struct file *filp,
590 unsigned int ioctl, unsigned long arg);
313a3dc7 591
d0752060
HB
592int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
593int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
594
8b006791
ZX
595int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
596 struct kvm_translation *tr);
597
b6c7a5dc
HB
598int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
599int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
600int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
601 struct kvm_sregs *sregs);
602int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
603 struct kvm_sregs *sregs);
62d9f0db
MT
604int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
605 struct kvm_mp_state *mp_state);
606int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
607 struct kvm_mp_state *mp_state);
d0bfb940
JK
608int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
609 struct kvm_guest_debug *dbg);
b6c7a5dc
HB
610int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
611
f8c16bba
ZX
612int kvm_arch_init(void *opaque);
613void kvm_arch_exit(void);
043405e1 614
e9b11c17
ZX
615int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
616void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
617
618void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
619void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
620void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
621struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
26e5215f 622int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
42897d86 623int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
d40ccc62 624void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 625
10474ae8 626int kvm_arch_hardware_enable(void *garbage);
e9b11c17
ZX
627void kvm_arch_hardware_disable(void *garbage);
628int kvm_arch_hardware_setup(void);
629void kvm_arch_hardware_unsetup(void);
630void kvm_arch_check_processor_compat(void *rtn);
1d737c8a 631int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
b6d33834 632int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
e9b11c17 633
d19a9cd2
ZX
634void kvm_free_physmem(struct kvm *kvm);
635
c1a7b32a
TY
636void *kvm_kvzalloc(unsigned long size);
637void kvm_kvfree(const void *addr);
638
d89f5eff
JK
639#ifndef __KVM_HAVE_ARCH_VM_ALLOC
640static inline struct kvm *kvm_arch_alloc_vm(void)
641{
642 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
643}
644
645static inline void kvm_arch_free_vm(struct kvm *kvm)
646{
647 kfree(kvm);
648}
649#endif
650
b6d33834
CD
651static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
652{
2246f8b5
AG
653#ifdef __KVM_HAVE_ARCH_WQP
654 return vcpu->arch.wqp;
655#else
b6d33834 656 return &vcpu->wq;
b6d33834 657#endif
2246f8b5 658}
b6d33834 659
e08b9637 660int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 661void kvm_arch_destroy_vm(struct kvm *kvm);
8a98f664 662void kvm_free_all_assigned_devices(struct kvm *kvm);
ad8ba2cd 663void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 664
3d80840d 665int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
5736199a 666void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
682c59a3 667
a2766325 668bool kvm_is_mmio_pfn(pfn_t pfn);
c77fb9dc 669
62c476c7
BAY
670struct kvm_irq_ack_notifier {
671 struct hlist_node link;
672 unsigned gsi;
673 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
674};
675
676struct kvm_assigned_dev_kernel {
677 struct kvm_irq_ack_notifier ack_notifier;
62c476c7
BAY
678 struct list_head list;
679 int assigned_dev_id;
ab9f4ecb 680 int host_segnr;
62c476c7
BAY
681 int host_busnr;
682 int host_devfn;
c1e01514 683 unsigned int entries_nr;
62c476c7 684 int host_irq;
defaf158 685 bool host_irq_disabled;
07700a94 686 bool pci_2_3;
c1e01514 687 struct msix_entry *host_msix_entries;
62c476c7 688 int guest_irq;
0645211c 689 struct msix_entry *guest_msix_entries;
4f906c19 690 unsigned long irq_requested_type;
5550af4d 691 int irq_source_id;
b653574a 692 int flags;
62c476c7
BAY
693 struct pci_dev *dev;
694 struct kvm *kvm;
0645211c 695 spinlock_t intx_lock;
cf9eeac4 696 spinlock_t intx_mask_lock;
1e001d49 697 char irq_name[32];
f8fcfd77 698 struct pci_saved_state *pci_saved_state;
62c476c7 699};
75858a84
AK
700
701struct kvm_irq_mask_notifier {
702 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
703 int irq;
704 struct hlist_node link;
705};
706
707void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
708 struct kvm_irq_mask_notifier *kimn);
709void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
710 struct kvm_irq_mask_notifier *kimn);
4a994358
GN
711void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
712 bool mask);
75858a84 713
46e624b9
GN
714#ifdef __KVM_HAVE_IOAPIC
715void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic,
716 union kvm_ioapic_redirect_entry *entry,
717 unsigned long *deliver_bitmask);
718#endif
719int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level);
01f21880 720int kvm_set_irq_inatomic(struct kvm *kvm, int irq_source_id, u32 irq, int level);
bd2b53b2
MT
721int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
722 int irq_source_id, int level);
c7c9c56c 723bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
44882eed 724void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
725void kvm_register_irq_ack_notifier(struct kvm *kvm,
726 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
727void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
728 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
729int kvm_request_irq_source_id(struct kvm *kvm);
730void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
62c476c7 731
522c68c4
SY
732/* For vcpu->arch.iommu_flags */
733#define KVM_IOMMU_CACHE_COHERENCY 0x1
734
19de40a8 735#ifdef CONFIG_IOMMU_API
3ad26d81 736int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
32f6daad 737void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
260782bc 738int kvm_iommu_map_guest(struct kvm *kvm);
62c476c7 739int kvm_iommu_unmap_guest(struct kvm *kvm);
260782bc
WH
740int kvm_assign_device(struct kvm *kvm,
741 struct kvm_assigned_dev_kernel *assigned_dev);
0a920356
WH
742int kvm_deassign_device(struct kvm *kvm,
743 struct kvm_assigned_dev_kernel *assigned_dev);
19de40a8 744#else /* CONFIG_IOMMU_API */
62c476c7 745static inline int kvm_iommu_map_pages(struct kvm *kvm,
d7a79b6c 746 struct kvm_memory_slot *slot)
62c476c7
BAY
747{
748 return 0;
749}
750
32f6daad
AW
751static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
752 struct kvm_memory_slot *slot)
753{
754}
755
260782bc 756static inline int kvm_iommu_map_guest(struct kvm *kvm)
62c476c7
BAY
757{
758 return -ENODEV;
759}
760
761static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
762{
763 return 0;
764}
260782bc
WH
765
766static inline int kvm_assign_device(struct kvm *kvm,
767 struct kvm_assigned_dev_kernel *assigned_dev)
768{
769 return 0;
770}
0a920356
WH
771
772static inline int kvm_deassign_device(struct kvm *kvm,
773 struct kvm_assigned_dev_kernel *assigned_dev)
774{
775 return 0;
776}
19de40a8 777#endif /* CONFIG_IOMMU_API */
62c476c7 778
6a61671b 779static inline void __guest_enter(void)
d172fcd3 780{
b080935c
FW
781 /*
782 * This is running in ioctl context so we can avoid
783 * the call to vtime_account() with its unnecessary idle check.
784 */
c11f11fc 785 vtime_account_system(current);
d172fcd3 786 current->flags |= PF_VCPU;
c11f11fc
FW
787}
788
6a61671b 789static inline void __guest_exit(void)
c11f11fc
FW
790{
791 /*
792 * This is running in ioctl context so we can avoid
793 * the call to vtime_account() with its unnecessary idle check.
794 */
795 vtime_account_system(current);
796 current->flags &= ~PF_VCPU;
797}
798
6a61671b
FW
799#ifdef CONFIG_CONTEXT_TRACKING
800extern void guest_enter(void);
801extern void guest_exit(void);
802
803#else /* !CONFIG_CONTEXT_TRACKING */
804static inline void guest_enter(void)
805{
806 __guest_enter();
807}
808
809static inline void guest_exit(void)
810{
811 __guest_exit();
812}
813#endif /* !CONFIG_CONTEXT_TRACKING */
814
c11f11fc
FW
815static inline void kvm_guest_enter(void)
816{
817 unsigned long flags;
818
819 BUG_ON(preemptible());
820
821 local_irq_save(flags);
822 guest_enter();
823 local_irq_restore(flags);
824
8fa22068
GN
825 /* KVM does not hold any references to rcu protected data when it
826 * switches CPU into a guest mode. In fact switching to a guest mode
827 * is very similar to exiting to userspase from rcu point of view. In
828 * addition CPU may stay in a guest mode for quite a long time (up to
829 * one time slice). Lets treat guest mode as quiescent state, just like
830 * we do with user-mode execution.
831 */
832 rcu_virt_note_context_switch(smp_processor_id());
d172fcd3
LV
833}
834
835static inline void kvm_guest_exit(void)
836{
c11f11fc
FW
837 unsigned long flags;
838
839 local_irq_save(flags);
840 guest_exit();
841 local_irq_restore(flags);
d172fcd3
LV
842}
843
9d4cba7f
PM
844/*
845 * search_memslots() and __gfn_to_memslot() are here because they are
846 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
847 * gfn_to_memslot() itself isn't here as an inline because that would
848 * bloat other code too much.
849 */
850static inline struct kvm_memory_slot *
851search_memslots(struct kvm_memslots *slots, gfn_t gfn)
852{
853 struct kvm_memory_slot *memslot;
854
855 kvm_for_each_memslot(memslot, slots)
856 if (gfn >= memslot->base_gfn &&
857 gfn < memslot->base_gfn + memslot->npages)
858 return memslot;
859
860 return NULL;
861}
862
863static inline struct kvm_memory_slot *
864__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
865{
866 return search_memslots(slots, gfn);
867}
868
66a03505
GS
869static inline unsigned long
870__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
871{
872 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
873}
874
0ee8dcb8
XG
875static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
876{
877 return gfn_to_memslot(kvm, gfn)->id;
878}
879
fb03cb6f
TY
880static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
881{
882 /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
883 return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
884 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
885}
886
d19a748b
TY
887static inline gfn_t
888hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 889{
d19a748b
TY
890 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
891
892 return slot->base_gfn + gfn_offset;
887c08ac
XG
893}
894
1755fbcc
AK
895static inline gpa_t gfn_to_gpa(gfn_t gfn)
896{
897 return (gpa_t)gfn << PAGE_SHIFT;
898}
6aa8b732 899
c30a358d
JR
900static inline gfn_t gpa_to_gfn(gpa_t gpa)
901{
902 return (gfn_t)(gpa >> PAGE_SHIFT);
903}
904
62c476c7
BAY
905static inline hpa_t pfn_to_hpa(pfn_t pfn)
906{
907 return (hpa_t)pfn << PAGE_SHIFT;
908}
909
2f599714 910static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2f52d58c
AK
911{
912 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
913}
914
ba1389b7
AK
915enum kvm_stat_kind {
916 KVM_STAT_VM,
917 KVM_STAT_VCPU,
918};
919
417bc304
HB
920struct kvm_stats_debugfs_item {
921 const char *name;
922 int offset;
ba1389b7 923 enum kvm_stat_kind kind;
417bc304
HB
924 struct dentry *dentry;
925};
926extern struct kvm_stats_debugfs_item debugfs_entries[];
76f7c879 927extern struct dentry *kvm_debugfs_dir;
d4c9ff2d 928
36c1ed82 929#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
8ca40a70 930static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 931{
8ca40a70 932 if (unlikely(kvm->mmu_notifier_count))
e930bffe
AA
933 return 1;
934 /*
a355aa54
PM
935 * Ensure the read of mmu_notifier_count happens before the read
936 * of mmu_notifier_seq. This interacts with the smp_wmb() in
937 * mmu_notifier_invalidate_range_end to make sure that the caller
938 * either sees the old (non-zero) value of mmu_notifier_count or
939 * the new (incremented) value of mmu_notifier_seq.
940 * PowerPC Book3s HV KVM calls this under a per-page lock
941 * rather than under kvm->mmu_lock, for scalability, so
942 * can't rely on kvm->mmu_lock to keep things ordered.
e930bffe 943 */
a355aa54 944 smp_rmb();
8ca40a70 945 if (kvm->mmu_notifier_seq != mmu_seq)
e930bffe
AA
946 return 1;
947 return 0;
948}
949#endif
950
9900b4b4 951#ifdef KVM_CAP_IRQ_ROUTING
399ec807
AK
952
953#define KVM_MAX_IRQ_ROUTES 1024
954
955int kvm_setup_default_irq_routing(struct kvm *kvm);
956int kvm_set_irq_routing(struct kvm *kvm,
957 const struct kvm_irq_routing_entry *entries,
958 unsigned nr,
959 unsigned flags);
960void kvm_free_irq_routing(struct kvm *kvm);
961
07975ad3
JK
962int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
963
399ec807
AK
964#else
965
966static inline void kvm_free_irq_routing(struct kvm *kvm) {}
967
968#endif
969
721eecbf
GH
970#ifdef CONFIG_HAVE_KVM_EVENTFD
971
d34e6b17 972void kvm_eventfd_init(struct kvm *kvm);
914daba8
AG
973int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
974
975#ifdef CONFIG_HAVE_KVM_IRQCHIP
d4db2935 976int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 977void kvm_irqfd_release(struct kvm *kvm);
bd2b53b2 978void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *);
914daba8
AG
979#else
980static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
981{
982 return -EINVAL;
983}
984
985static inline void kvm_irqfd_release(struct kvm *kvm) {}
986#endif
721eecbf
GH
987
988#else
989
d34e6b17 990static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 991
d4db2935 992static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
993{
994 return -EINVAL;
995}
996
997static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 998
27923eb1 999#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2
MT
1000static inline void kvm_irq_routing_update(struct kvm *kvm,
1001 struct kvm_irq_routing_table *irq_rt)
1002{
1003 rcu_assign_pointer(kvm->irq_routing, irq_rt);
1004}
27923eb1 1005#endif
bd2b53b2 1006
d34e6b17
GH
1007static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1008{
1009 return -ENOSYS;
1010}
721eecbf
GH
1011
1012#endif /* CONFIG_HAVE_KVM_EVENTFD */
1013
73880c80 1014#ifdef CONFIG_KVM_APIC_ARCHITECTURE
c5af89b6
GN
1015static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
1016{
d3efc8ef 1017 return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
c5af89b6 1018}
3e515705
AK
1019
1020bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
1021
1022#else
1023
1024static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
1025
6aa8b732 1026#endif
bfd99ff5
AK
1027
1028#ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
1029
1030long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1031 unsigned long arg);
1032
1033#else
1034
1035static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1036 unsigned long arg)
1037{
1038 return -ENOTTY;
1039}
1040
73880c80 1041#endif
bfd99ff5 1042
a8eeb04a
AK
1043static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1044{
1045 set_bit(req, &vcpu->requests);
1046}
1047
a8eeb04a
AK
1048static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1049{
0719837c
AK
1050 if (test_bit(req, &vcpu->requests)) {
1051 clear_bit(req, &vcpu->requests);
1052 return true;
1053 } else {
1054 return false;
1055 }
a8eeb04a
AK
1056}
1057
4c088493
R
1058#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1059
1060static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1061{
1062 vcpu->spin_loop.in_spin_loop = val;
1063}
1064static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1065{
1066 vcpu->spin_loop.dy_eligible = val;
1067}
1068
1069#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1070
1071static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1072{
1073}
1074
1075static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1076{
1077}
1078
06e48c51
R
1079static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
1080{
1081 return true;
1082}
1083
4c088493 1084#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
bfd99ff5
AK
1085#endif
1086