Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 1 | #ifndef __KVM_HOST_H |
| 2 | #define __KVM_HOST_H |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 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> |
Christian Borntraeger | e56a7a2 | 2007-10-18 14:39:10 +0200 | [diff] [blame] | 10 | #include <linux/hardirq.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11 | #include <linux/list.h> |
| 12 | #include <linux/mutex.h> |
| 13 | #include <linux/spinlock.h> |
Markus Rechberger | 06ff0d3 | 2007-05-27 10:46:52 +0300 | [diff] [blame] | 14 | #include <linux/signal.h> |
| 15 | #include <linux/sched.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 16 | #include <linux/mm.h> |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 17 | #include <linux/preempt.h> |
Sheng Yang | 0937c48 | 2008-11-24 14:32:53 +0800 | [diff] [blame] | 18 | #include <linux/msi.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 19 | #include <asm/signal.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 20 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 21 | #include <linux/kvm.h> |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 22 | #include <linux/kvm_para.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 23 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 24 | #include <linux/kvm_types.h> |
Hollis Blanchard | d77a39d | 2007-12-03 15:30:23 -0600 | [diff] [blame] | 25 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 26 | #include <asm/kvm_host.h> |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 27 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 28 | /* |
Avi Kivity | d9e368d | 2007-06-07 19:18:30 +0300 | [diff] [blame] | 29 | * vcpu->requests bit members |
| 30 | */ |
Avi Kivity | 3176bc3 | 2007-10-16 17:22:08 +0200 | [diff] [blame] | 31 | #define KVM_REQ_TLB_FLUSH 0 |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 32 | #define KVM_REQ_MIGRATE_TIMER 1 |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 33 | #define KVM_REQ_REPORT_TPR_ACCESS 2 |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 34 | #define KVM_REQ_MMU_RELOAD 3 |
Joerg Roedel | 71c4dfa | 2008-02-26 16:49:16 +0100 | [diff] [blame] | 35 | #define KVM_REQ_TRIPLE_FAULT 4 |
Marcelo Tosatti | 06e0564 | 2008-06-06 16:37:36 -0300 | [diff] [blame] | 36 | #define KVM_REQ_PENDING_TIMER 5 |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 37 | #define KVM_REQ_UNHALT 6 |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 38 | #define KVM_REQ_MMU_SYNC 7 |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 39 | #define KVM_REQ_KVMCLOCK_UPDATE 8 |
Marcelo Tosatti | 32f8840 | 2009-05-07 17:55:12 -0300 | [diff] [blame] | 40 | #define KVM_REQ_KICK 9 |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 41 | #define KVM_REQ_DEACTIVATE_FPU 10 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 42 | |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 43 | #define KVM_USERSPACE_IRQ_SOURCE_ID 0 |
| 44 | |
Michael S. Tsirkin | 6c47469 | 2009-06-29 22:24:26 +0300 | [diff] [blame] | 45 | struct kvm; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 46 | struct kvm_vcpu; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 47 | extern struct kmem_cache *kvm_vcpu_cache; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 48 | |
Gregory Haskins | 2eeb2e9 | 2007-05-31 14:08:53 -0400 | [diff] [blame] | 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 | */ |
| 55 | struct kvm_io_bus { |
| 56 | int dev_count; |
| 57 | #define NR_IOBUS_DEVS 6 |
| 58 | struct kvm_io_device *devs[NR_IOBUS_DEVS]; |
| 59 | }; |
| 60 | |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 61 | enum kvm_bus { |
| 62 | KVM_MMIO_BUS, |
| 63 | KVM_PIO_BUS, |
| 64 | KVM_NR_BUSES |
| 65 | }; |
| 66 | |
| 67 | int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, |
| 68 | int len, const void *val); |
| 69 | int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len, |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 70 | void *val); |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 71 | int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, |
Gregory Haskins | 090b7af | 2009-07-07 17:08:44 -0400 | [diff] [blame] | 72 | struct kvm_io_device *dev); |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 73 | int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx, |
| 74 | struct kvm_io_device *dev); |
Gregory Haskins | 2eeb2e9 | 2007-05-31 14:08:53 -0400 | [diff] [blame] | 75 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 76 | struct kvm_vcpu { |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 77 | struct kvm *kvm; |
Hollis Blanchard | 31bb117 | 2008-01-28 17:42:34 -0600 | [diff] [blame] | 78 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 79 | struct preempt_notifier preempt_notifier; |
Hollis Blanchard | 31bb117 | 2008-01-28 17:42:34 -0600 | [diff] [blame] | 80 | #endif |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 81 | int vcpu_id; |
| 82 | struct mutex mutex; |
| 83 | int cpu; |
| 84 | struct kvm_run *run; |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 85 | unsigned long requests; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 86 | unsigned long guest_debug; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 87 | int srcu_idx; |
| 88 | |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 89 | int fpu_active; |
| 90 | int guest_fpu_loaded; |
| 91 | wait_queue_head_t wq; |
| 92 | int sigset_active; |
| 93 | sigset_t sigset; |
| 94 | struct kvm_vcpu_stat stat; |
| 95 | |
| 96 | #ifdef CONFIG_HAS_IOMEM |
| 97 | int mmio_needed; |
| 98 | int mmio_read_completed; |
| 99 | int mmio_is_write; |
| 100 | int mmio_size; |
| 101 | unsigned char mmio_data[8]; |
| 102 | gpa_t mmio_phys_addr; |
| 103 | #endif |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 104 | |
| 105 | struct kvm_vcpu_arch arch; |
| 106 | }; |
| 107 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 108 | struct kvm_memory_slot { |
| 109 | gfn_t base_gfn; |
| 110 | unsigned long npages; |
| 111 | unsigned long flags; |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 112 | unsigned long *rmap; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 113 | unsigned long *dirty_bitmap; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 114 | struct { |
| 115 | unsigned long rmap_pde; |
| 116 | int write_count; |
Joerg Roedel | ec04b26 | 2009-06-19 15:16:23 +0200 | [diff] [blame] | 117 | } *lpage_info[KVM_NR_PAGE_SIZES - 1]; |
Izik Eidus | 8a7ae05 | 2007-10-18 11:09:33 +0200 | [diff] [blame] | 118 | unsigned long userspace_addr; |
Izik Eidus | 80b14b5 | 2007-10-25 11:54:04 +0200 | [diff] [blame] | 119 | int user_alloc; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 120 | }; |
| 121 | |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 122 | struct kvm_kernel_irq_routing_entry { |
| 123 | u32 gsi; |
Michael S. Tsirkin | 5116d8f | 2009-07-26 17:10:01 +0300 | [diff] [blame] | 124 | u32 type; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 125 | int (*set)(struct kvm_kernel_irq_routing_entry *e, |
Gleb Natapov | 1a6e4a8 | 2009-08-24 11:54:19 +0300 | [diff] [blame] | 126 | struct kvm *kvm, int irq_source_id, int level); |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 127 | union { |
| 128 | struct { |
| 129 | unsigned irqchip; |
| 130 | unsigned pin; |
| 131 | } irqchip; |
Sheng Yang | 79950e1 | 2009-02-10 13:57:06 +0800 | [diff] [blame] | 132 | struct msi_msg msi; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 133 | }; |
Gleb Natapov | 46e624b | 2009-08-24 11:54:20 +0300 | [diff] [blame] | 134 | struct hlist_node link; |
| 135 | }; |
| 136 | |
Gleb Natapov | 3e71f88 | 2009-08-24 11:54:21 +0300 | [diff] [blame] | 137 | #ifdef __KVM_HAVE_IOAPIC |
| 138 | |
Gleb Natapov | 46e624b | 2009-08-24 11:54:20 +0300 | [diff] [blame] | 139 | struct kvm_irq_routing_table { |
Gleb Natapov | 3e71f88 | 2009-08-24 11:54:21 +0300 | [diff] [blame] | 140 | int chip[KVM_NR_IRQCHIPS][KVM_IOAPIC_NUM_PINS]; |
Gleb Natapov | 46e624b | 2009-08-24 11:54:20 +0300 | [diff] [blame] | 141 | struct kvm_kernel_irq_routing_entry *rt_entries; |
| 142 | u32 nr_rt_entries; |
| 143 | /* |
| 144 | * Array indexed by gsi. Each entry contains list of irq chips |
| 145 | * the gsi is connected to. |
| 146 | */ |
| 147 | struct hlist_head map[0]; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 148 | }; |
| 149 | |
Gleb Natapov | 3e71f88 | 2009-08-24 11:54:21 +0300 | [diff] [blame] | 150 | #else |
| 151 | |
| 152 | struct kvm_irq_routing_table {}; |
| 153 | |
| 154 | #endif |
| 155 | |
Marcelo Tosatti | 46a26bf | 2009-12-23 14:35:16 -0200 | [diff] [blame] | 156 | struct kvm_memslots { |
| 157 | int nmemslots; |
| 158 | struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS + |
| 159 | KVM_PRIVATE_MEM_SLOTS]; |
| 160 | }; |
| 161 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 162 | struct kvm { |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 163 | spinlock_t mmu_lock; |
Avi Kivity | 70e335e | 2010-02-18 11:25:22 +0200 | [diff] [blame] | 164 | raw_spinlock_t requests_lock; |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 165 | struct mutex slots_lock; |
Avi Kivity | 6d4e4c4 | 2007-11-21 16:41:05 +0200 | [diff] [blame] | 166 | struct mm_struct *mm; /* userspace tied to this vm */ |
Marcelo Tosatti | 46a26bf | 2009-12-23 14:35:16 -0200 | [diff] [blame] | 167 | struct kvm_memslots *memslots; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 168 | struct srcu_struct srcu; |
Gleb Natapov | 73880c8 | 2009-06-09 15:56:28 +0300 | [diff] [blame] | 169 | #ifdef CONFIG_KVM_APIC_ARCHITECTURE |
| 170 | u32 bsp_vcpu_id; |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 171 | struct kvm_vcpu *bsp_vcpu; |
Gleb Natapov | 73880c8 | 2009-06-09 15:56:28 +0300 | [diff] [blame] | 172 | #endif |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 173 | struct kvm_vcpu *vcpus[KVM_MAX_VCPUS]; |
Gleb Natapov | 73880c8 | 2009-06-09 15:56:28 +0300 | [diff] [blame] | 174 | atomic_t online_vcpus; |
Avi Kivity | 133de90 | 2007-02-12 00:54:44 -0800 | [diff] [blame] | 175 | struct list_head vm_list; |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 176 | struct mutex lock; |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 177 | struct kvm_io_bus *buses[KVM_NR_BUSES]; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 178 | #ifdef CONFIG_HAVE_KVM_EVENTFD |
| 179 | struct { |
| 180 | spinlock_t lock; |
| 181 | struct list_head items; |
| 182 | } irqfds; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 183 | struct list_head ioeventfds; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 184 | #endif |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 185 | struct kvm_vm_stat stat; |
Zhang Xiantao | d69fb81 | 2007-12-14 09:54:20 +0800 | [diff] [blame] | 186 | struct kvm_arch arch; |
Izik Eidus | d39f13b | 2008-03-30 16:01:25 +0300 | [diff] [blame] | 187 | atomic_t users_count; |
Laurent Vivier | 5f94c17 | 2008-05-30 16:05:54 +0200 | [diff] [blame] | 188 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
| 189 | struct kvm_coalesced_mmio_dev *coalesced_mmio_dev; |
| 190 | struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; |
| 191 | #endif |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 192 | |
Marcelo Tosatti | 60eead7 | 2009-06-04 15:08:23 -0300 | [diff] [blame] | 193 | struct mutex irq_lock; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 194 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
Gleb Natapov | 46e624b | 2009-08-24 11:54:20 +0300 | [diff] [blame] | 195 | struct kvm_irq_routing_table *irq_routing; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 196 | struct hlist_head mask_notifier_list; |
Gleb Natapov | 136bdfe | 2009-08-24 11:54:23 +0300 | [diff] [blame] | 197 | struct hlist_head irq_ack_notifier_list; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 198 | #endif |
| 199 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 200 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER |
| 201 | struct mmu_notifier mmu_notifier; |
| 202 | unsigned long mmu_notifier_seq; |
| 203 | long mmu_notifier_count; |
| 204 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 205 | }; |
| 206 | |
Rusty Russell | f024247 | 2007-08-01 10:48:02 +1000 | [diff] [blame] | 207 | /* The guest did something we don't support. */ |
| 208 | #define pr_unimpl(vcpu, fmt, ...) \ |
| 209 | do { \ |
| 210 | if (printk_ratelimit()) \ |
| 211 | printk(KERN_ERR "kvm: %i: cpu%i " fmt, \ |
| 212 | current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 213 | } while (0) |
Rusty Russell | f024247 | 2007-08-01 10:48:02 +1000 | [diff] [blame] | 214 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 215 | #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt) |
| 216 | #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt) |
| 217 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 218 | static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i) |
| 219 | { |
| 220 | smp_rmb(); |
| 221 | return kvm->vcpus[i]; |
| 222 | } |
| 223 | |
| 224 | #define kvm_for_each_vcpu(idx, vcpup, kvm) \ |
| 225 | for (idx = 0, vcpup = kvm_get_vcpu(kvm, idx); \ |
| 226 | idx < atomic_read(&kvm->online_vcpus) && vcpup; \ |
| 227 | vcpup = kvm_get_vcpu(kvm, ++idx)) |
| 228 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 229 | int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id); |
| 230 | void kvm_vcpu_uninit(struct kvm_vcpu *vcpu); |
| 231 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 232 | void vcpu_load(struct kvm_vcpu *vcpu); |
| 233 | void vcpu_put(struct kvm_vcpu *vcpu); |
| 234 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 235 | int kvm_init(void *opaque, unsigned int vcpu_size, |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 236 | struct module *module); |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 237 | void kvm_exit(void); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 238 | |
Izik Eidus | d39f13b | 2008-03-30 16:01:25 +0300 | [diff] [blame] | 239 | void kvm_get_kvm(struct kvm *kvm); |
| 240 | void kvm_put_kvm(struct kvm *kvm); |
| 241 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 242 | #define HPA_MSB ((sizeof(hpa_t) * 8) - 1) |
| 243 | #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB) |
| 244 | static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; } |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 245 | struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 246 | |
Izik Eidus | cea7bb2 | 2007-10-17 19:17:48 +0200 | [diff] [blame] | 247 | extern struct page *bad_page; |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 248 | extern pfn_t bad_pfn; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 249 | |
Izik Eidus | cea7bb2 | 2007-10-17 19:17:48 +0200 | [diff] [blame] | 250 | int is_error_page(struct page *page); |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 251 | int is_error_pfn(pfn_t pfn); |
Izik Eidus | f9d46eb | 2007-11-11 22:02:22 +0200 | [diff] [blame] | 252 | int kvm_is_error_hva(unsigned long addr); |
Izik Eidus | 210c7c4 | 2007-10-24 23:52:57 +0200 | [diff] [blame] | 253 | int kvm_set_memory_region(struct kvm *kvm, |
| 254 | struct kvm_userspace_memory_region *mem, |
| 255 | int user_alloc); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 256 | int __kvm_set_memory_region(struct kvm *kvm, |
| 257 | struct kvm_userspace_memory_region *mem, |
| 258 | int user_alloc); |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 259 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
| 260 | struct kvm_memory_slot *memslot, |
| 261 | struct kvm_memory_slot old, |
| 262 | struct kvm_userspace_memory_region *mem, |
| 263 | int user_alloc); |
| 264 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 265 | struct kvm_userspace_memory_region *mem, |
| 266 | struct kvm_memory_slot old, |
| 267 | int user_alloc); |
Marcelo Tosatti | 54dee99 | 2009-06-11 12:07:44 -0300 | [diff] [blame] | 268 | void kvm_disable_largepages(void); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 269 | void kvm_arch_flush_shadow(struct kvm *kvm); |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 270 | gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn); |
Marcelo Tosatti | a983fb2 | 2009-12-23 14:35:23 -0200 | [diff] [blame] | 271 | gfn_t unalias_gfn_instantiation(struct kvm *kvm, gfn_t gfn); |
| 272 | |
Avi Kivity | 954bbbc2 | 2007-03-30 14:02:32 +0300 | [diff] [blame] | 273 | struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 274 | unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn); |
Izik Eidus | b4231d6 | 2007-11-20 11:49:33 +0200 | [diff] [blame] | 275 | void kvm_release_page_clean(struct page *page); |
| 276 | void kvm_release_page_dirty(struct page *page); |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 277 | void kvm_set_page_dirty(struct page *page); |
| 278 | void kvm_set_page_accessed(struct page *page); |
| 279 | |
| 280 | pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn); |
Marcelo Tosatti | 506f0d6 | 2009-12-23 14:35:19 -0200 | [diff] [blame] | 281 | pfn_t gfn_to_pfn_memslot(struct kvm *kvm, |
| 282 | struct kvm_memory_slot *slot, gfn_t gfn); |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 283 | int memslot_id(struct kvm *kvm, gfn_t gfn); |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 284 | void kvm_release_pfn_dirty(pfn_t); |
| 285 | void kvm_release_pfn_clean(pfn_t pfn); |
| 286 | void kvm_set_pfn_dirty(pfn_t pfn); |
| 287 | void kvm_set_pfn_accessed(pfn_t pfn); |
| 288 | void kvm_get_pfn(pfn_t pfn); |
| 289 | |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 290 | int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset, |
| 291 | int len); |
Marcelo Tosatti | 7ec5458 | 2007-12-20 19:18:23 -0500 | [diff] [blame] | 292 | int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data, |
| 293 | unsigned long len); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 294 | int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len); |
| 295 | int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data, |
| 296 | int offset, int len); |
| 297 | int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data, |
| 298 | unsigned long len); |
| 299 | int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len); |
| 300 | int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 301 | struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn); |
Izik Eidus | e0d62c7 | 2007-10-24 23:57:46 +0200 | [diff] [blame] | 302 | int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn); |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 303 | unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 304 | void mark_page_dirty(struct kvm *kvm, gfn_t gfn); |
| 305 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 306 | void kvm_vcpu_block(struct kvm_vcpu *vcpu); |
Zhai, Edwin | d255f4f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 307 | void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 308 | void kvm_resched(struct kvm_vcpu *vcpu); |
Avi Kivity | 7702fd1 | 2007-06-14 16:27:40 +0300 | [diff] [blame] | 309 | void kvm_load_guest_fpu(struct kvm_vcpu *vcpu); |
| 310 | void kvm_put_guest_fpu(struct kvm_vcpu *vcpu); |
Avi Kivity | d9e368d | 2007-06-07 19:18:30 +0300 | [diff] [blame] | 311 | void kvm_flush_remote_tlbs(struct kvm *kvm); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 312 | void kvm_reload_remote_mmus(struct kvm *kvm); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 313 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 314 | long kvm_arch_dev_ioctl(struct file *filp, |
| 315 | unsigned int ioctl, unsigned long arg); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 316 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 317 | unsigned int ioctl, unsigned long arg); |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 318 | |
| 319 | int kvm_dev_ioctl_check_extension(long ext); |
| 320 | |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 321 | int kvm_get_dirty_log(struct kvm *kvm, |
| 322 | struct kvm_dirty_log *log, int *is_dirty); |
| 323 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, |
| 324 | struct kvm_dirty_log *log); |
| 325 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 326 | int kvm_vm_ioctl_set_memory_region(struct kvm *kvm, |
| 327 | struct |
| 328 | kvm_userspace_memory_region *mem, |
| 329 | int user_alloc); |
| 330 | long kvm_arch_vm_ioctl(struct file *filp, |
| 331 | unsigned int ioctl, unsigned long arg); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 332 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 333 | int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu); |
| 334 | int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu); |
| 335 | |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 336 | int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, |
| 337 | struct kvm_translation *tr); |
| 338 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 339 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs); |
| 340 | int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs); |
| 341 | int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, |
| 342 | struct kvm_sregs *sregs); |
| 343 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |
| 344 | struct kvm_sregs *sregs); |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 345 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 346 | struct kvm_mp_state *mp_state); |
| 347 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 348 | struct kvm_mp_state *mp_state); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 349 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 350 | struct kvm_guest_debug *dbg); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 351 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run); |
| 352 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 353 | int kvm_arch_init(void *opaque); |
| 354 | void kvm_arch_exit(void); |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 355 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 356 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu); |
| 357 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu); |
| 358 | |
| 359 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu); |
| 360 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu); |
| 361 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); |
| 362 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id); |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 363 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); |
Hollis Blanchard | d40ccc6 | 2007-11-19 14:04:43 -0600 | [diff] [blame] | 364 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 365 | |
| 366 | int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 367 | int kvm_arch_hardware_enable(void *garbage); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 368 | void kvm_arch_hardware_disable(void *garbage); |
| 369 | int kvm_arch_hardware_setup(void); |
| 370 | void kvm_arch_hardware_unsetup(void); |
| 371 | void kvm_arch_check_processor_compat(void *rtn); |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 372 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 373 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 374 | void kvm_free_physmem(struct kvm *kvm); |
| 375 | |
| 376 | struct kvm *kvm_arch_create_vm(void); |
| 377 | void kvm_arch_destroy_vm(struct kvm *kvm); |
Xiantao Zhang | 8a98f66 | 2008-10-06 13:47:38 +0800 | [diff] [blame] | 378 | void kvm_free_all_assigned_devices(struct kvm *kvm); |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 379 | void kvm_arch_sync_events(struct kvm *kvm); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 380 | |
Marcelo Tosatti | 3d80840 | 2008-04-11 14:53:26 -0300 | [diff] [blame] | 381 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 382 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 383 | |
Xiantao Zhang | c77fb9d | 2008-09-27 10:55:40 +0800 | [diff] [blame] | 384 | int kvm_is_mmio_pfn(pfn_t pfn); |
| 385 | |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 386 | struct kvm_irq_ack_notifier { |
| 387 | struct hlist_node link; |
| 388 | unsigned gsi; |
| 389 | void (*irq_acked)(struct kvm_irq_ack_notifier *kian); |
| 390 | }; |
| 391 | |
Sheng Yang | 2350bd1 | 2009-02-25 17:22:27 +0800 | [diff] [blame] | 392 | #define KVM_ASSIGNED_MSIX_PENDING 0x1 |
Sheng Yang | c1e0151 | 2009-02-25 17:22:26 +0800 | [diff] [blame] | 393 | struct kvm_guest_msix_entry { |
| 394 | u32 vector; |
| 395 | u16 entry; |
| 396 | u16 flags; |
| 397 | }; |
| 398 | |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 399 | struct kvm_assigned_dev_kernel { |
| 400 | struct kvm_irq_ack_notifier ack_notifier; |
| 401 | struct work_struct interrupt_work; |
| 402 | struct list_head list; |
| 403 | int assigned_dev_id; |
Zhai, Edwin | ab9f4ec | 2010-01-29 14:38:44 +0800 | [diff] [blame] | 404 | int host_segnr; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 405 | int host_busnr; |
| 406 | int host_devfn; |
Sheng Yang | c1e0151 | 2009-02-25 17:22:26 +0800 | [diff] [blame] | 407 | unsigned int entries_nr; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 408 | int host_irq; |
Mark McLoughlin | defaf15 | 2008-12-02 12:16:33 +0000 | [diff] [blame] | 409 | bool host_irq_disabled; |
Sheng Yang | c1e0151 | 2009-02-25 17:22:26 +0800 | [diff] [blame] | 410 | struct msix_entry *host_msix_entries; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 411 | int guest_irq; |
Sheng Yang | c1e0151 | 2009-02-25 17:22:26 +0800 | [diff] [blame] | 412 | struct kvm_guest_msix_entry *guest_msix_entries; |
Sheng Yang | 4f906c1 | 2008-11-24 14:32:51 +0800 | [diff] [blame] | 413 | unsigned long irq_requested_type; |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 414 | int irq_source_id; |
Weidong Han | b653574 | 2008-12-08 23:29:53 +0800 | [diff] [blame] | 415 | int flags; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 416 | struct pci_dev *dev; |
| 417 | struct kvm *kvm; |
Marcelo Tosatti | 547de29 | 2009-05-07 17:55:13 -0300 | [diff] [blame] | 418 | spinlock_t assigned_dev_lock; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 419 | }; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 420 | |
| 421 | struct kvm_irq_mask_notifier { |
| 422 | void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked); |
| 423 | int irq; |
| 424 | struct hlist_node link; |
| 425 | }; |
| 426 | |
| 427 | void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq, |
| 428 | struct kvm_irq_mask_notifier *kimn); |
| 429 | void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq, |
| 430 | struct kvm_irq_mask_notifier *kimn); |
| 431 | void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask); |
| 432 | |
Gleb Natapov | 46e624b | 2009-08-24 11:54:20 +0300 | [diff] [blame] | 433 | #ifdef __KVM_HAVE_IOAPIC |
| 434 | void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic, |
| 435 | union kvm_ioapic_redirect_entry *entry, |
| 436 | unsigned long *deliver_bitmask); |
| 437 | #endif |
| 438 | int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level); |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 439 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin); |
Xiantao Zhang | 3de42dc | 2008-10-06 13:48:45 +0800 | [diff] [blame] | 440 | void kvm_register_irq_ack_notifier(struct kvm *kvm, |
| 441 | struct kvm_irq_ack_notifier *kian); |
Marcelo Tosatti | fa40a82 | 2009-06-04 15:08:24 -0300 | [diff] [blame] | 442 | void kvm_unregister_irq_ack_notifier(struct kvm *kvm, |
| 443 | struct kvm_irq_ack_notifier *kian); |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 444 | int kvm_request_irq_source_id(struct kvm *kvm); |
| 445 | void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id); |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 446 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 447 | /* For vcpu->arch.iommu_flags */ |
| 448 | #define KVM_IOMMU_CACHE_COHERENCY 0x1 |
| 449 | |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 450 | #ifdef CONFIG_IOMMU_API |
Marcelo Tosatti | 3ad26d8 | 2009-12-23 14:35:20 -0200 | [diff] [blame] | 451 | int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot); |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 452 | int kvm_iommu_map_guest(struct kvm *kvm); |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 453 | int kvm_iommu_unmap_guest(struct kvm *kvm); |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 454 | int kvm_assign_device(struct kvm *kvm, |
| 455 | struct kvm_assigned_dev_kernel *assigned_dev); |
Weidong Han | 0a92035 | 2008-12-02 21:24:23 +0800 | [diff] [blame] | 456 | int kvm_deassign_device(struct kvm *kvm, |
| 457 | struct kvm_assigned_dev_kernel *assigned_dev); |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 458 | #else /* CONFIG_IOMMU_API */ |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 459 | static inline int kvm_iommu_map_pages(struct kvm *kvm, |
| 460 | gfn_t base_gfn, |
| 461 | unsigned long npages) |
| 462 | { |
| 463 | return 0; |
| 464 | } |
| 465 | |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 466 | static inline int kvm_iommu_map_guest(struct kvm *kvm) |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 467 | { |
| 468 | return -ENODEV; |
| 469 | } |
| 470 | |
| 471 | static inline int kvm_iommu_unmap_guest(struct kvm *kvm) |
| 472 | { |
| 473 | return 0; |
| 474 | } |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 475 | |
| 476 | static inline int kvm_assign_device(struct kvm *kvm, |
| 477 | struct kvm_assigned_dev_kernel *assigned_dev) |
| 478 | { |
| 479 | return 0; |
| 480 | } |
Weidong Han | 0a92035 | 2008-12-02 21:24:23 +0800 | [diff] [blame] | 481 | |
| 482 | static inline int kvm_deassign_device(struct kvm *kvm, |
| 483 | struct kvm_assigned_dev_kernel *assigned_dev) |
| 484 | { |
| 485 | return 0; |
| 486 | } |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 487 | #endif /* CONFIG_IOMMU_API */ |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 488 | |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 489 | static inline void kvm_guest_enter(void) |
| 490 | { |
Christian Borntraeger | e56a7a2 | 2007-10-18 14:39:10 +0200 | [diff] [blame] | 491 | account_system_vtime(current); |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 492 | current->flags |= PF_VCPU; |
| 493 | } |
| 494 | |
| 495 | static inline void kvm_guest_exit(void) |
| 496 | { |
Christian Borntraeger | e56a7a2 | 2007-10-18 14:39:10 +0200 | [diff] [blame] | 497 | account_system_vtime(current); |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 498 | current->flags &= ~PF_VCPU; |
| 499 | } |
| 500 | |
Avi Kivity | 1755fbc | 2007-11-21 14:44:45 +0200 | [diff] [blame] | 501 | static inline gpa_t gfn_to_gpa(gfn_t gfn) |
| 502 | { |
| 503 | return (gpa_t)gfn << PAGE_SHIFT; |
| 504 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 505 | |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 506 | static inline hpa_t pfn_to_hpa(pfn_t pfn) |
| 507 | { |
| 508 | return (hpa_t)pfn << PAGE_SHIFT; |
| 509 | } |
| 510 | |
Marcelo Tosatti | 2f59971 | 2008-05-27 12:10:20 -0300 | [diff] [blame] | 511 | static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu) |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 512 | { |
| 513 | set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests); |
| 514 | } |
| 515 | |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 516 | enum kvm_stat_kind { |
| 517 | KVM_STAT_VM, |
| 518 | KVM_STAT_VCPU, |
| 519 | }; |
| 520 | |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 521 | struct kvm_stats_debugfs_item { |
| 522 | const char *name; |
| 523 | int offset; |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 524 | enum kvm_stat_kind kind; |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 525 | struct dentry *dentry; |
| 526 | }; |
| 527 | extern struct kvm_stats_debugfs_item debugfs_entries[]; |
Hollis Blanchard | 76f7c87 | 2008-04-15 16:05:42 -0500 | [diff] [blame] | 528 | extern struct dentry *kvm_debugfs_dir; |
Feng(Eric) Liu | d4c9ff2 | 2008-04-10 08:47:53 -0400 | [diff] [blame] | 529 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 530 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER |
| 531 | static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq) |
| 532 | { |
| 533 | if (unlikely(vcpu->kvm->mmu_notifier_count)) |
| 534 | return 1; |
| 535 | /* |
| 536 | * Both reads happen under the mmu_lock and both values are |
| 537 | * modified under mmu_lock, so there's no need of smb_rmb() |
| 538 | * here in between, otherwise mmu_notifier_count should be |
| 539 | * read before mmu_notifier_seq, see |
| 540 | * mmu_notifier_invalidate_range_end write side. |
| 541 | */ |
| 542 | if (vcpu->kvm->mmu_notifier_seq != mmu_seq) |
| 543 | return 1; |
| 544 | return 0; |
| 545 | } |
| 546 | #endif |
| 547 | |
Marcelo Tosatti | a983fb2 | 2009-12-23 14:35:23 -0200 | [diff] [blame] | 548 | #ifndef KVM_ARCH_HAS_UNALIAS_INSTANTIATION |
| 549 | #define unalias_gfn_instantiation unalias_gfn |
| 550 | #endif |
| 551 | |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 552 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
| 553 | |
| 554 | #define KVM_MAX_IRQ_ROUTES 1024 |
| 555 | |
| 556 | int kvm_setup_default_irq_routing(struct kvm *kvm); |
| 557 | int kvm_set_irq_routing(struct kvm *kvm, |
| 558 | const struct kvm_irq_routing_entry *entries, |
| 559 | unsigned nr, |
| 560 | unsigned flags); |
| 561 | void kvm_free_irq_routing(struct kvm *kvm); |
| 562 | |
| 563 | #else |
| 564 | |
| 565 | static inline void kvm_free_irq_routing(struct kvm *kvm) {} |
| 566 | |
| 567 | #endif |
| 568 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 569 | #ifdef CONFIG_HAVE_KVM_EVENTFD |
| 570 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 571 | void kvm_eventfd_init(struct kvm *kvm); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 572 | int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags); |
| 573 | void kvm_irqfd_release(struct kvm *kvm); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 574 | int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 575 | |
| 576 | #else |
| 577 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 578 | static inline void kvm_eventfd_init(struct kvm *kvm) {} |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 579 | static inline int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags) |
| 580 | { |
| 581 | return -EINVAL; |
| 582 | } |
| 583 | |
| 584 | static inline void kvm_irqfd_release(struct kvm *kvm) {} |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 585 | static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 586 | { |
| 587 | return -ENOSYS; |
| 588 | } |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 589 | |
| 590 | #endif /* CONFIG_HAVE_KVM_EVENTFD */ |
| 591 | |
Gleb Natapov | 73880c8 | 2009-06-09 15:56:28 +0300 | [diff] [blame] | 592 | #ifdef CONFIG_KVM_APIC_ARCHITECTURE |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 593 | static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu) |
| 594 | { |
Marcelo Tosatti | d3efc8e | 2009-06-17 10:07:59 -0300 | [diff] [blame] | 595 | return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id; |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 596 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 597 | #endif |
Avi Kivity | bfd99ff | 2009-08-26 14:57:50 +0300 | [diff] [blame] | 598 | |
| 599 | #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT |
| 600 | |
| 601 | long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl, |
| 602 | unsigned long arg); |
| 603 | |
| 604 | #else |
| 605 | |
| 606 | static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl, |
| 607 | unsigned long arg) |
| 608 | { |
| 609 | return -ENOTTY; |
| 610 | } |
| 611 | |
Gleb Natapov | 73880c8 | 2009-06-09 15:56:28 +0300 | [diff] [blame] | 612 | #endif |
Avi Kivity | bfd99ff | 2009-08-26 14:57:50 +0300 | [diff] [blame] | 613 | |
| 614 | #endif |
| 615 | |