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> |
Feng(Eric) Liu | d4c9ff2 | 2008-04-10 08:47:53 -0400 | [diff] [blame] | 18 | #include <linux/marker.h> |
Sheng Yang | 0937c48 | 2008-11-24 14:32:53 +0800 | [diff] [blame] | 19 | #include <linux/msi.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 20 | #include <asm/signal.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 21 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 22 | #include <linux/kvm.h> |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 23 | #include <linux/kvm_para.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 24 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 25 | #include <linux/kvm_types.h> |
Hollis Blanchard | d77a39d | 2007-12-03 15:30:23 -0600 | [diff] [blame] | 26 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 27 | #include <asm/kvm_host.h> |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 28 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 29 | /* |
Avi Kivity | d9e368d | 2007-06-07 19:18:30 +0300 | [diff] [blame] | 30 | * vcpu->requests bit members |
| 31 | */ |
Avi Kivity | 3176bc3 | 2007-10-16 17:22:08 +0200 | [diff] [blame] | 32 | #define KVM_REQ_TLB_FLUSH 0 |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 33 | #define KVM_REQ_MIGRATE_TIMER 1 |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 34 | #define KVM_REQ_REPORT_TPR_ACCESS 2 |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 35 | #define KVM_REQ_MMU_RELOAD 3 |
Joerg Roedel | 71c4dfa | 2008-02-26 16:49:16 +0100 | [diff] [blame] | 36 | #define KVM_REQ_TRIPLE_FAULT 4 |
Marcelo Tosatti | 06e0564 | 2008-06-06 16:37:36 -0300 | [diff] [blame] | 37 | #define KVM_REQ_PENDING_TIMER 5 |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 38 | #define KVM_REQ_UNHALT 6 |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 39 | #define KVM_REQ_MMU_SYNC 7 |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 40 | #define KVM_REQ_KVMCLOCK_UPDATE 8 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 41 | |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 42 | #define KVM_USERSPACE_IRQ_SOURCE_ID 0 |
| 43 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 44 | struct kvm_vcpu; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 45 | extern struct kmem_cache *kvm_vcpu_cache; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 46 | |
Gregory Haskins | 2eeb2e9 | 2007-05-31 14:08:53 -0400 | [diff] [blame] | 47 | /* |
| 48 | * It would be nice to use something smarter than a linear search, TBD... |
| 49 | * Thankfully we dont expect many devices to register (famous last words :), |
| 50 | * so until then it will suffice. At least its abstracted so we can change |
| 51 | * in one place. |
| 52 | */ |
| 53 | struct kvm_io_bus { |
| 54 | int dev_count; |
| 55 | #define NR_IOBUS_DEVS 6 |
| 56 | struct kvm_io_device *devs[NR_IOBUS_DEVS]; |
| 57 | }; |
| 58 | |
| 59 | void kvm_io_bus_init(struct kvm_io_bus *bus); |
| 60 | void kvm_io_bus_destroy(struct kvm_io_bus *bus); |
Laurent Vivier | 9276049 | 2008-05-30 16:05:53 +0200 | [diff] [blame] | 61 | struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, |
| 62 | gpa_t addr, int len, int is_write); |
Gregory Haskins | 2eeb2e9 | 2007-05-31 14:08:53 -0400 | [diff] [blame] | 63 | void kvm_io_bus_register_dev(struct kvm_io_bus *bus, |
| 64 | struct kvm_io_device *dev); |
| 65 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 66 | struct kvm_vcpu { |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 67 | struct kvm *kvm; |
Hollis Blanchard | 31bb117 | 2008-01-28 17:42:34 -0600 | [diff] [blame] | 68 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 69 | struct preempt_notifier preempt_notifier; |
Hollis Blanchard | 31bb117 | 2008-01-28 17:42:34 -0600 | [diff] [blame] | 70 | #endif |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 71 | int vcpu_id; |
| 72 | struct mutex mutex; |
| 73 | int cpu; |
| 74 | struct kvm_run *run; |
| 75 | int guest_mode; |
| 76 | unsigned long requests; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 77 | unsigned long guest_debug; |
Zhang Xiantao | d17fbbf | 2007-12-14 09:45:31 +0800 | [diff] [blame] | 78 | int fpu_active; |
| 79 | int guest_fpu_loaded; |
| 80 | wait_queue_head_t wq; |
| 81 | int sigset_active; |
| 82 | sigset_t sigset; |
| 83 | struct kvm_vcpu_stat stat; |
| 84 | |
| 85 | #ifdef CONFIG_HAS_IOMEM |
| 86 | int mmio_needed; |
| 87 | int mmio_read_completed; |
| 88 | int mmio_is_write; |
| 89 | int mmio_size; |
| 90 | unsigned char mmio_data[8]; |
| 91 | gpa_t mmio_phys_addr; |
| 92 | #endif |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 93 | |
| 94 | struct kvm_vcpu_arch arch; |
| 95 | }; |
| 96 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 97 | struct kvm_memory_slot { |
| 98 | gfn_t base_gfn; |
| 99 | unsigned long npages; |
| 100 | unsigned long flags; |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 101 | unsigned long *rmap; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 102 | unsigned long *dirty_bitmap; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 103 | struct { |
| 104 | unsigned long rmap_pde; |
| 105 | int write_count; |
| 106 | } *lpage_info; |
Izik Eidus | 8a7ae05 | 2007-10-18 11:09:33 +0200 | [diff] [blame] | 107 | unsigned long userspace_addr; |
Izik Eidus | 80b14b5 | 2007-10-25 11:54:04 +0200 | [diff] [blame] | 108 | int user_alloc; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 109 | }; |
| 110 | |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 111 | struct kvm_kernel_irq_routing_entry { |
| 112 | u32 gsi; |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 113 | int (*set)(struct kvm_kernel_irq_routing_entry *e, |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 114 | struct kvm *kvm, int level); |
| 115 | union { |
| 116 | struct { |
| 117 | unsigned irqchip; |
| 118 | unsigned pin; |
| 119 | } irqchip; |
Sheng Yang | 79950e1 | 2009-02-10 13:57:06 +0800 | [diff] [blame] | 120 | struct msi_msg msi; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 121 | }; |
| 122 | struct list_head link; |
| 123 | }; |
| 124 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 125 | struct kvm { |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 126 | struct mutex lock; /* protects the vcpus array and APIC accesses */ |
| 127 | spinlock_t mmu_lock; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 128 | struct rw_semaphore slots_lock; |
Avi Kivity | 6d4e4c4 | 2007-11-21 16:41:05 +0200 | [diff] [blame] | 129 | struct mm_struct *mm; /* userspace tied to this vm */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 130 | int nmemslots; |
Izik Eidus | e0d62c7 | 2007-10-24 23:57:46 +0200 | [diff] [blame] | 131 | struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS + |
| 132 | KVM_PRIVATE_MEM_SLOTS]; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 133 | struct kvm_vcpu *vcpus[KVM_MAX_VCPUS]; |
Avi Kivity | 133de90 | 2007-02-12 00:54:44 -0800 | [diff] [blame] | 134 | struct list_head vm_list; |
Gregory Haskins | 2eeb2e9 | 2007-05-31 14:08:53 -0400 | [diff] [blame] | 135 | struct kvm_io_bus mmio_bus; |
Eddie Dong | 7490634 | 2007-06-19 18:05:03 +0300 | [diff] [blame] | 136 | struct kvm_io_bus pio_bus; |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 137 | struct kvm_vm_stat stat; |
Zhang Xiantao | d69fb81 | 2007-12-14 09:54:20 +0800 | [diff] [blame] | 138 | struct kvm_arch arch; |
Izik Eidus | d39f13b | 2008-03-30 16:01:25 +0300 | [diff] [blame] | 139 | atomic_t users_count; |
Laurent Vivier | 5f94c17 | 2008-05-30 16:05:54 +0200 | [diff] [blame] | 140 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
| 141 | struct kvm_coalesced_mmio_dev *coalesced_mmio_dev; |
| 142 | struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; |
| 143 | #endif |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 144 | |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 145 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 146 | struct list_head irq_routing; /* of kvm_kernel_irq_routing_entry */ |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 147 | struct hlist_head mask_notifier_list; |
| 148 | #endif |
| 149 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 150 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER |
| 151 | struct mmu_notifier mmu_notifier; |
| 152 | unsigned long mmu_notifier_seq; |
| 153 | long mmu_notifier_count; |
| 154 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 155 | }; |
| 156 | |
Rusty Russell | f024247 | 2007-08-01 10:48:02 +1000 | [diff] [blame] | 157 | /* The guest did something we don't support. */ |
| 158 | #define pr_unimpl(vcpu, fmt, ...) \ |
| 159 | do { \ |
| 160 | if (printk_ratelimit()) \ |
| 161 | printk(KERN_ERR "kvm: %i: cpu%i " fmt, \ |
| 162 | current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 163 | } while (0) |
Rusty Russell | f024247 | 2007-08-01 10:48:02 +1000 | [diff] [blame] | 164 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 165 | #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt) |
| 166 | #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt) |
| 167 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 168 | int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id); |
| 169 | void kvm_vcpu_uninit(struct kvm_vcpu *vcpu); |
| 170 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 171 | void vcpu_load(struct kvm_vcpu *vcpu); |
| 172 | void vcpu_put(struct kvm_vcpu *vcpu); |
| 173 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 174 | int kvm_init(void *opaque, unsigned int vcpu_size, |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 175 | struct module *module); |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 176 | void kvm_exit(void); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 177 | |
Izik Eidus | d39f13b | 2008-03-30 16:01:25 +0300 | [diff] [blame] | 178 | void kvm_get_kvm(struct kvm *kvm); |
| 179 | void kvm_put_kvm(struct kvm *kvm); |
| 180 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 181 | #define HPA_MSB ((sizeof(hpa_t) * 8) - 1) |
| 182 | #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB) |
| 183 | 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] | 184 | struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 185 | |
Izik Eidus | cea7bb2 | 2007-10-17 19:17:48 +0200 | [diff] [blame] | 186 | extern struct page *bad_page; |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 187 | extern pfn_t bad_pfn; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 188 | |
Izik Eidus | cea7bb2 | 2007-10-17 19:17:48 +0200 | [diff] [blame] | 189 | int is_error_page(struct page *page); |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 190 | int is_error_pfn(pfn_t pfn); |
Izik Eidus | f9d46eb | 2007-11-11 22:02:22 +0200 | [diff] [blame] | 191 | int kvm_is_error_hva(unsigned long addr); |
Izik Eidus | 210c7c4 | 2007-10-24 23:52:57 +0200 | [diff] [blame] | 192 | int kvm_set_memory_region(struct kvm *kvm, |
| 193 | struct kvm_userspace_memory_region *mem, |
| 194 | int user_alloc); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 195 | int __kvm_set_memory_region(struct kvm *kvm, |
| 196 | struct kvm_userspace_memory_region *mem, |
| 197 | int user_alloc); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 198 | int kvm_arch_set_memory_region(struct kvm *kvm, |
| 199 | struct kvm_userspace_memory_region *mem, |
| 200 | struct kvm_memory_slot old, |
| 201 | int user_alloc); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 202 | void kvm_arch_flush_shadow(struct kvm *kvm); |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 203 | gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn); |
Avi Kivity | 954bbbc | 2007-03-30 14:02:32 +0300 | [diff] [blame] | 204 | struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 205 | unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn); |
Izik Eidus | b4231d6 | 2007-11-20 11:49:33 +0200 | [diff] [blame] | 206 | void kvm_release_page_clean(struct page *page); |
| 207 | void kvm_release_page_dirty(struct page *page); |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 208 | void kvm_set_page_dirty(struct page *page); |
| 209 | void kvm_set_page_accessed(struct page *page); |
| 210 | |
| 211 | pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn); |
| 212 | void kvm_release_pfn_dirty(pfn_t); |
| 213 | void kvm_release_pfn_clean(pfn_t pfn); |
| 214 | void kvm_set_pfn_dirty(pfn_t pfn); |
| 215 | void kvm_set_pfn_accessed(pfn_t pfn); |
| 216 | void kvm_get_pfn(pfn_t pfn); |
| 217 | |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 218 | int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset, |
| 219 | int len); |
Marcelo Tosatti | 7ec5458 | 2007-12-20 19:18:23 -0500 | [diff] [blame] | 220 | int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data, |
| 221 | unsigned long len); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 222 | int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len); |
| 223 | int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data, |
| 224 | int offset, int len); |
| 225 | int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data, |
| 226 | unsigned long len); |
| 227 | int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len); |
| 228 | 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] | 229 | 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] | 230 | int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 231 | void mark_page_dirty(struct kvm *kvm, gfn_t gfn); |
| 232 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 233 | void kvm_vcpu_block(struct kvm_vcpu *vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 234 | void kvm_resched(struct kvm_vcpu *vcpu); |
Avi Kivity | 7702fd1 | 2007-06-14 16:27:40 +0300 | [diff] [blame] | 235 | void kvm_load_guest_fpu(struct kvm_vcpu *vcpu); |
| 236 | void kvm_put_guest_fpu(struct kvm_vcpu *vcpu); |
Avi Kivity | d9e368d | 2007-06-07 19:18:30 +0300 | [diff] [blame] | 237 | void kvm_flush_remote_tlbs(struct kvm *kvm); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 238 | void kvm_reload_remote_mmus(struct kvm *kvm); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 239 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 240 | long kvm_arch_dev_ioctl(struct file *filp, |
| 241 | unsigned int ioctl, unsigned long arg); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 242 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 243 | unsigned int ioctl, unsigned long arg); |
| 244 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu); |
| 245 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 246 | |
| 247 | int kvm_dev_ioctl_check_extension(long ext); |
| 248 | |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 249 | int kvm_get_dirty_log(struct kvm *kvm, |
| 250 | struct kvm_dirty_log *log, int *is_dirty); |
| 251 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, |
| 252 | struct kvm_dirty_log *log); |
| 253 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 254 | int kvm_vm_ioctl_set_memory_region(struct kvm *kvm, |
| 255 | struct |
| 256 | kvm_userspace_memory_region *mem, |
| 257 | int user_alloc); |
| 258 | long kvm_arch_vm_ioctl(struct file *filp, |
| 259 | unsigned int ioctl, unsigned long arg); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 260 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 261 | int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu); |
| 262 | int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu); |
| 263 | |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 264 | int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, |
| 265 | struct kvm_translation *tr); |
| 266 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 267 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs); |
| 268 | int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs); |
| 269 | int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, |
| 270 | struct kvm_sregs *sregs); |
| 271 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |
| 272 | struct kvm_sregs *sregs); |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 273 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 274 | struct kvm_mp_state *mp_state); |
| 275 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 276 | struct kvm_mp_state *mp_state); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 277 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 278 | struct kvm_guest_debug *dbg); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 279 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run); |
| 280 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 281 | int kvm_arch_init(void *opaque); |
| 282 | void kvm_arch_exit(void); |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 283 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 284 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu); |
| 285 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu); |
| 286 | |
| 287 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu); |
| 288 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu); |
| 289 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); |
| 290 | 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] | 291 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); |
Hollis Blanchard | d40ccc6 | 2007-11-19 14:04:43 -0600 | [diff] [blame] | 292 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 293 | |
| 294 | int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu); |
| 295 | void kvm_arch_hardware_enable(void *garbage); |
| 296 | void kvm_arch_hardware_disable(void *garbage); |
| 297 | int kvm_arch_hardware_setup(void); |
| 298 | void kvm_arch_hardware_unsetup(void); |
| 299 | void kvm_arch_check_processor_compat(void *rtn); |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 300 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 301 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 302 | void kvm_free_physmem(struct kvm *kvm); |
| 303 | |
| 304 | struct kvm *kvm_arch_create_vm(void); |
| 305 | void kvm_arch_destroy_vm(struct kvm *kvm); |
Xiantao Zhang | 8a98f66 | 2008-10-06 13:47:38 +0800 | [diff] [blame] | 306 | void kvm_free_all_assigned_devices(struct kvm *kvm); |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 307 | void kvm_arch_sync_events(struct kvm *kvm); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 308 | |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 309 | int kvm_cpu_get_interrupt(struct kvm_vcpu *v); |
| 310 | int kvm_cpu_has_interrupt(struct kvm_vcpu *v); |
Marcelo Tosatti | 3d80840 | 2008-04-11 14:53:26 -0300 | [diff] [blame] | 311 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 312 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 682c59a | 2007-12-11 20:36:00 +0800 | [diff] [blame] | 313 | |
Xiantao Zhang | c77fb9d | 2008-09-27 10:55:40 +0800 | [diff] [blame] | 314 | int kvm_is_mmio_pfn(pfn_t pfn); |
| 315 | |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 316 | struct kvm_irq_ack_notifier { |
| 317 | struct hlist_node link; |
| 318 | unsigned gsi; |
| 319 | void (*irq_acked)(struct kvm_irq_ack_notifier *kian); |
| 320 | }; |
| 321 | |
| 322 | struct kvm_assigned_dev_kernel { |
| 323 | struct kvm_irq_ack_notifier ack_notifier; |
| 324 | struct work_struct interrupt_work; |
| 325 | struct list_head list; |
| 326 | int assigned_dev_id; |
| 327 | int host_busnr; |
| 328 | int host_devfn; |
| 329 | int host_irq; |
Mark McLoughlin | defaf15 | 2008-12-02 12:16:33 +0000 | [diff] [blame] | 330 | bool host_irq_disabled; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 331 | int guest_irq; |
Sheng Yang | 4f906c1 | 2008-11-24 14:32:51 +0800 | [diff] [blame] | 332 | #define KVM_ASSIGNED_DEV_GUEST_INTX (1 << 0) |
Sheng Yang | 0937c48 | 2008-11-24 14:32:53 +0800 | [diff] [blame] | 333 | #define KVM_ASSIGNED_DEV_GUEST_MSI (1 << 1) |
Sheng Yang | 4f906c1 | 2008-11-24 14:32:51 +0800 | [diff] [blame] | 334 | #define KVM_ASSIGNED_DEV_HOST_INTX (1 << 8) |
Sheng Yang | 0937c48 | 2008-11-24 14:32:53 +0800 | [diff] [blame] | 335 | #define KVM_ASSIGNED_DEV_HOST_MSI (1 << 9) |
Sheng Yang | 4f906c1 | 2008-11-24 14:32:51 +0800 | [diff] [blame] | 336 | unsigned long irq_requested_type; |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 337 | int irq_source_id; |
Weidong Han | b653574 | 2008-12-08 23:29:53 +0800 | [diff] [blame] | 338 | int flags; |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 339 | struct pci_dev *dev; |
| 340 | struct kvm *kvm; |
| 341 | }; |
Avi Kivity | 75858a8 | 2009-01-04 17:10:50 +0200 | [diff] [blame] | 342 | |
| 343 | struct kvm_irq_mask_notifier { |
| 344 | void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked); |
| 345 | int irq; |
| 346 | struct hlist_node link; |
| 347 | }; |
| 348 | |
| 349 | void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq, |
| 350 | struct kvm_irq_mask_notifier *kimn); |
| 351 | void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq, |
| 352 | struct kvm_irq_mask_notifier *kimn); |
| 353 | void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask); |
| 354 | |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 355 | int kvm_set_irq(struct kvm *kvm, int irq_source_id, int irq, int level); |
Marcelo Tosatti | 44882ee | 2009-01-27 15:12:38 -0200 | [diff] [blame] | 356 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin); |
Xiantao Zhang | 3de42dc | 2008-10-06 13:48:45 +0800 | [diff] [blame] | 357 | void kvm_register_irq_ack_notifier(struct kvm *kvm, |
| 358 | struct kvm_irq_ack_notifier *kian); |
Sheng Yang | e19e30e | 2008-10-20 16:07:10 +0800 | [diff] [blame] | 359 | void kvm_unregister_irq_ack_notifier(struct kvm_irq_ack_notifier *kian); |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 360 | int kvm_request_irq_source_id(struct kvm *kvm); |
| 361 | 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] | 362 | |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 363 | #ifdef CONFIG_IOMMU_API |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 364 | int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn, |
| 365 | unsigned long npages); |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 366 | int kvm_iommu_map_guest(struct kvm *kvm); |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 367 | int kvm_iommu_unmap_guest(struct kvm *kvm); |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 368 | int kvm_assign_device(struct kvm *kvm, |
| 369 | struct kvm_assigned_dev_kernel *assigned_dev); |
Weidong Han | 0a92035 | 2008-12-02 21:24:23 +0800 | [diff] [blame] | 370 | int kvm_deassign_device(struct kvm *kvm, |
| 371 | struct kvm_assigned_dev_kernel *assigned_dev); |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 372 | #else /* CONFIG_IOMMU_API */ |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 373 | static inline int kvm_iommu_map_pages(struct kvm *kvm, |
| 374 | gfn_t base_gfn, |
| 375 | unsigned long npages) |
| 376 | { |
| 377 | return 0; |
| 378 | } |
| 379 | |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 380 | static inline int kvm_iommu_map_guest(struct kvm *kvm) |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 381 | { |
| 382 | return -ENODEV; |
| 383 | } |
| 384 | |
| 385 | static inline int kvm_iommu_unmap_guest(struct kvm *kvm) |
| 386 | { |
| 387 | return 0; |
| 388 | } |
Weidong Han | 260782b | 2008-12-02 21:03:39 +0800 | [diff] [blame] | 389 | |
| 390 | static inline int kvm_assign_device(struct kvm *kvm, |
| 391 | struct kvm_assigned_dev_kernel *assigned_dev) |
| 392 | { |
| 393 | return 0; |
| 394 | } |
Weidong Han | 0a92035 | 2008-12-02 21:24:23 +0800 | [diff] [blame] | 395 | |
| 396 | static inline int kvm_deassign_device(struct kvm *kvm, |
| 397 | struct kvm_assigned_dev_kernel *assigned_dev) |
| 398 | { |
| 399 | return 0; |
| 400 | } |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 401 | #endif /* CONFIG_IOMMU_API */ |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 402 | |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 403 | static inline void kvm_guest_enter(void) |
| 404 | { |
Christian Borntraeger | e56a7a2 | 2007-10-18 14:39:10 +0200 | [diff] [blame] | 405 | account_system_vtime(current); |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 406 | current->flags |= PF_VCPU; |
| 407 | } |
| 408 | |
| 409 | static inline void kvm_guest_exit(void) |
| 410 | { |
Christian Borntraeger | e56a7a2 | 2007-10-18 14:39:10 +0200 | [diff] [blame] | 411 | account_system_vtime(current); |
Laurent Vivier | d172fcd | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 412 | current->flags &= ~PF_VCPU; |
| 413 | } |
| 414 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 415 | static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot) |
| 416 | { |
| 417 | return slot - kvm->memslots; |
| 418 | } |
| 419 | |
Avi Kivity | 1755fbc | 2007-11-21 14:44:45 +0200 | [diff] [blame] | 420 | static inline gpa_t gfn_to_gpa(gfn_t gfn) |
| 421 | { |
| 422 | return (gpa_t)gfn << PAGE_SHIFT; |
| 423 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 424 | |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 425 | static inline hpa_t pfn_to_hpa(pfn_t pfn) |
| 426 | { |
| 427 | return (hpa_t)pfn << PAGE_SHIFT; |
| 428 | } |
| 429 | |
Marcelo Tosatti | 2f59971 | 2008-05-27 12:10:20 -0300 | [diff] [blame] | 430 | static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu) |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 431 | { |
| 432 | set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests); |
| 433 | } |
| 434 | |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 435 | enum kvm_stat_kind { |
| 436 | KVM_STAT_VM, |
| 437 | KVM_STAT_VCPU, |
| 438 | }; |
| 439 | |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 440 | struct kvm_stats_debugfs_item { |
| 441 | const char *name; |
| 442 | int offset; |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 443 | enum kvm_stat_kind kind; |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 444 | struct dentry *dentry; |
| 445 | }; |
| 446 | extern struct kvm_stats_debugfs_item debugfs_entries[]; |
Hollis Blanchard | 76f7c87 | 2008-04-15 16:05:42 -0500 | [diff] [blame] | 447 | extern struct dentry *kvm_debugfs_dir; |
Feng(Eric) Liu | d4c9ff2 | 2008-04-10 08:47:53 -0400 | [diff] [blame] | 448 | |
Hollis Blanchard | d98e634 | 2008-07-01 16:23:49 -0500 | [diff] [blame] | 449 | #define KVMTRACE_5D(evt, vcpu, d1, d2, d3, d4, d5, name) \ |
| 450 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 451 | vcpu, 5, d1, d2, d3, d4, d5) |
| 452 | #define KVMTRACE_4D(evt, vcpu, d1, d2, d3, d4, name) \ |
| 453 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 454 | vcpu, 4, d1, d2, d3, d4, 0) |
| 455 | #define KVMTRACE_3D(evt, vcpu, d1, d2, d3, name) \ |
| 456 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 457 | vcpu, 3, d1, d2, d3, 0, 0) |
| 458 | #define KVMTRACE_2D(evt, vcpu, d1, d2, name) \ |
| 459 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 460 | vcpu, 2, d1, d2, 0, 0, 0) |
| 461 | #define KVMTRACE_1D(evt, vcpu, d1, name) \ |
| 462 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 463 | vcpu, 1, d1, 0, 0, 0, 0) |
| 464 | #define KVMTRACE_0D(evt, vcpu, name) \ |
| 465 | trace_mark(kvm_trace_##name, "%u %p %u %u %u %u %u %u", KVM_TRC_##evt, \ |
| 466 | vcpu, 0, 0, 0, 0, 0, 0) |
| 467 | |
Feng(Eric) Liu | d4c9ff2 | 2008-04-10 08:47:53 -0400 | [diff] [blame] | 468 | #ifdef CONFIG_KVM_TRACE |
| 469 | int kvm_trace_ioctl(unsigned int ioctl, unsigned long arg); |
| 470 | void kvm_trace_cleanup(void); |
| 471 | #else |
| 472 | static inline |
| 473 | int kvm_trace_ioctl(unsigned int ioctl, unsigned long arg) |
| 474 | { |
| 475 | return -EINVAL; |
| 476 | } |
| 477 | #define kvm_trace_cleanup() ((void)0) |
| 478 | #endif |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 479 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 480 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER |
| 481 | static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq) |
| 482 | { |
| 483 | if (unlikely(vcpu->kvm->mmu_notifier_count)) |
| 484 | return 1; |
| 485 | /* |
| 486 | * Both reads happen under the mmu_lock and both values are |
| 487 | * modified under mmu_lock, so there's no need of smb_rmb() |
| 488 | * here in between, otherwise mmu_notifier_count should be |
| 489 | * read before mmu_notifier_seq, see |
| 490 | * mmu_notifier_invalidate_range_end write side. |
| 491 | */ |
| 492 | if (vcpu->kvm->mmu_notifier_seq != mmu_seq) |
| 493 | return 1; |
| 494 | return 0; |
| 495 | } |
| 496 | #endif |
| 497 | |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 498 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
| 499 | |
| 500 | #define KVM_MAX_IRQ_ROUTES 1024 |
| 501 | |
| 502 | int kvm_setup_default_irq_routing(struct kvm *kvm); |
| 503 | int kvm_set_irq_routing(struct kvm *kvm, |
| 504 | const struct kvm_irq_routing_entry *entries, |
| 505 | unsigned nr, |
| 506 | unsigned flags); |
| 507 | void kvm_free_irq_routing(struct kvm *kvm); |
| 508 | |
| 509 | #else |
| 510 | |
| 511 | static inline void kvm_free_irq_routing(struct kvm *kvm) {} |
| 512 | |
| 513 | #endif |
| 514 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 515 | #endif |