4 * Copyright (C) 2006-2008 Qumranet Technologies
6 * Licensed under the terms of the GNU GPL version 2 or higher.
8 #ifndef THE_ORIGINAL_AND_TRUE_QEMU_KVM_H
9 #define THE_ORIGINAL_AND_TRUE_QEMU_KVM_H
19 #include <asm/ptrace.h>
25 #define __user /* temporary, until installed via make headers_install */
28 #include <linux/kvm.h>
32 /* FIXME: share this number with kvm */
33 /* FIXME: or dynamically alloc/realloc regions */
35 #define KVM_MAX_NUM_MEM_REGIONS 1u
37 #define LIBKVM_S390_ORIGIN (0UL)
38 #elif defined(__ia64__)
39 #define KVM_MAX_NUM_MEM_REGIONS 32u
42 #define KVM_MAX_NUM_MEM_REGIONS 32u
46 /* kvm abi verison variable */
50 * \brief The KVM context
52 * The verbose KVM context
57 /// is dirty pages logging enabled for all regions or not
58 int dirty_pages_log_all
;
59 /// do not create in-kernel irqchip if set
60 int no_irqchip_creation
;
61 /// in-kernel irqchip status
62 int irqchip_in_kernel
;
63 /// ioctl to use to inject interrupts
64 int irqchip_inject_ioctl
;
65 /// do not create in-kernel pit if set
67 #ifdef KVM_CAP_IRQ_ROUTING
68 struct kvm_irq_routing
*irq_routes
;
69 int nr_allocated_irq_routes
;
71 void *used_gsi_bitmap
;
75 typedef struct kvm_context
*kvm_context_t
;
78 int kvm_alloc_kernel_memory(kvm_context_t kvm
, unsigned long memory
,
80 int kvm_alloc_userspace_memory(kvm_context_t kvm
, unsigned long memory
,
83 int kvm_arch_create(kvm_context_t kvm
, unsigned long phys_mem_bytes
,
86 int kvm_arch_run(CPUState
*env
);
89 void kvm_show_code(CPUState
*env
);
91 int handle_halt(CPUState
*env
);
93 int handle_shutdown(kvm_context_t kvm
, CPUState
*env
);
94 void post_kvm_run(kvm_context_t kvm
, CPUState
*env
);
95 int pre_kvm_run(kvm_context_t kvm
, CPUState
*env
);
96 int handle_io_window(kvm_context_t kvm
);
97 int try_push_interrupts(kvm_context_t kvm
);
99 #if defined(__x86_64__) || defined(__i386__)
100 int kvm_get_msrs(CPUState
*env
, struct kvm_msr_entry
*msrs
, int n
);
101 int kvm_set_msrs(CPUState
*env
, struct kvm_msr_entry
*msrs
, int n
);
102 int kvm_get_mce_cap_supported(kvm_context_t
, uint64_t *mce_cap
,
104 int kvm_setup_mce(CPUState
*env
, uint64_t *mcg_cap
);
106 int kvm_set_mce(CPUState
*env
, struct kvm_x86_mce
*mce
);
110 * \brief Create new KVM context
112 * This creates a new kvm_context. A KVM context is a small area of data that
113 * holds information about the KVM instance that gets created by this call.\n
114 * This should always be your first call to KVM.
116 * \param opaque Not used
117 * \return NULL on failure
119 int kvm_init(int smp_cpus
);
122 * \brief Disable the in-kernel IRQCHIP creation
124 * In-kernel irqchip is enabled by default. If userspace irqchip is to be used,
125 * this should be called prior to kvm_create().
127 * \param kvm Pointer to the kvm_context
129 void kvm_disable_irqchip_creation(kvm_context_t kvm
);
132 * \brief Disable the in-kernel PIT creation
134 * In-kernel pit is enabled by default. If userspace pit is to be used,
135 * this should be called prior to kvm_create().
137 * \param kvm Pointer to the kvm_context
139 void kvm_disable_pit_creation(kvm_context_t kvm
);
142 * \brief Create new virtual machine
144 * This creates a new virtual machine, maps physical RAM to it, and creates a
145 * virtual CPU for it.\n
147 * Memory gets mapped for addresses 0->0xA0000, 0xC0000->phys_mem_bytes
149 * \param kvm Pointer to the current kvm_context
150 * \param phys_mem_bytes The amount of physical ram you want the VM to have
151 * \param phys_mem This pointer will be set to point to the memory that
152 * kvm_create allocates for physical RAM
153 * \return 0 on success
155 int kvm_create(kvm_context_t kvm
, unsigned long phys_mem_bytes
,
157 int kvm_create_vm(kvm_context_t kvm
);
158 void kvm_create_irqchip(kvm_context_t kvm
);
161 * \brief Start the VCPU
163 * This starts the VCPU and virtualization is started.\n
165 * This function will not return until any of these conditions are met:
166 * - An IO/MMIO handler does not return "0"
167 * - An exception that neither the guest OS, nor KVM can handle occurs
169 * \note This function will call the callbacks registered in kvm_init()
170 * to emulate those functions
171 * \note If you at any point want to interrupt the VCPU, kvm_run() will
172 * listen to the EINTR signal. This allows you to simulate external interrupts
173 * and asyncronous IO.
175 * \param kvm Pointer to the current kvm_context
176 * \param vcpu Which virtual CPU should be started
177 * \return 0 on success, but you really shouldn't expect this function to
178 * return except for when an error has occured, or when you have sent it
181 int kvm_run(CPUState
*env
);
184 * \brief Check if a vcpu is ready for interrupt injection
186 * This checks if vcpu interrupts are not masked by mov ss or sti.
188 * \param kvm Pointer to the current kvm_context
189 * \param vcpu Which virtual CPU should get dumped
190 * \return boolean indicating interrupt injection readiness
192 int kvm_is_ready_for_interrupt_injection(CPUState
*env
);
195 * \brief Read VCPU registers
197 * This gets the GP registers from the VCPU and outputs them
198 * into a kvm_regs structure
200 * \note This function returns a \b copy of the VCPUs registers.\n
201 * If you wish to modify the VCPUs GP registers, you should call kvm_set_regs()
203 * \param kvm Pointer to the current kvm_context
204 * \param vcpu Which virtual CPU should get dumped
205 * \param regs Pointer to a kvm_regs which will be populated with the VCPUs
207 * \return 0 on success
209 int kvm_get_regs(CPUState
*env
, struct kvm_regs
*regs
);
212 * \brief Write VCPU registers
214 * This sets the GP registers on the VCPU from a kvm_regs structure
216 * \note When this function returns, the regs pointer and the data it points to
218 * \param kvm Pointer to the current kvm_context
219 * \param vcpu Which virtual CPU should get dumped
220 * \param regs Pointer to a kvm_regs which will be populated with the VCPUs
222 * \return 0 on success
224 int kvm_set_regs(CPUState
*env
, struct kvm_regs
*regs
);
226 * \brief Read VCPU fpu registers
228 * This gets the FPU registers from the VCPU and outputs them
229 * into a kvm_fpu structure
231 * \note This function returns a \b copy of the VCPUs registers.\n
232 * If you wish to modify the VCPU FPU registers, you should call kvm_set_fpu()
234 * \param kvm Pointer to the current kvm_context
235 * \param vcpu Which virtual CPU should get dumped
236 * \param fpu Pointer to a kvm_fpu which will be populated with the VCPUs
237 * fpu registers values
238 * \return 0 on success
240 int kvm_get_fpu(CPUState
*env
, struct kvm_fpu
*fpu
);
243 * \brief Write VCPU fpu registers
245 * This sets the FPU registers on the VCPU from a kvm_fpu structure
247 * \note When this function returns, the fpu pointer and the data it points to
249 * \param kvm Pointer to the current kvm_context
250 * \param vcpu Which virtual CPU should get dumped
251 * \param fpu Pointer to a kvm_fpu which holds the new vcpu fpu state
252 * \return 0 on success
254 int kvm_set_fpu(CPUState
*env
, struct kvm_fpu
*fpu
);
257 * \brief Read VCPU system registers
259 * This gets the non-GP registers from the VCPU and outputs them
260 * into a kvm_sregs structure
262 * \note This function returns a \b copy of the VCPUs registers.\n
263 * If you wish to modify the VCPUs non-GP registers, you should call
266 * \param kvm Pointer to the current kvm_context
267 * \param vcpu Which virtual CPU should get dumped
268 * \param regs Pointer to a kvm_sregs which will be populated with the VCPUs
270 * \return 0 on success
272 int kvm_get_sregs(CPUState
*env
, struct kvm_sregs
*regs
);
275 * \brief Write VCPU system registers
277 * This sets the non-GP registers on the VCPU from a kvm_sregs structure
279 * \note When this function returns, the regs pointer and the data it points to
281 * \param kvm Pointer to the current kvm_context
282 * \param vcpu Which virtual CPU should get dumped
283 * \param regs Pointer to a kvm_sregs which will be populated with the VCPUs
285 * \return 0 on success
287 int kvm_set_sregs(CPUState
*env
, struct kvm_sregs
*regs
);
289 #ifdef KVM_CAP_MP_STATE
291 * * \brief Read VCPU MP state
294 int kvm_get_mpstate(CPUState
*env
, struct kvm_mp_state
*mp_state
);
297 * * \brief Write VCPU MP state
300 int kvm_set_mpstate(CPUState
*env
, struct kvm_mp_state
*mp_state
);
304 * \brief Simulate an external vectored interrupt
306 * This allows you to simulate an external vectored interrupt.
308 * \param kvm Pointer to the current kvm_context
309 * \param vcpu Which virtual CPU should get dumped
310 * \param irq Vector number
311 * \return 0 on success
313 int kvm_inject_irq(CPUState
*env
, unsigned irq
);
315 #if defined(__i386__) || defined(__x86_64__)
317 * \brief Setup a vcpu's cpuid instruction emulation
319 * Set up a table of cpuid function to cpuid outputs.\n
321 * \param kvm Pointer to the current kvm_context
322 * \param vcpu Which virtual CPU should be initialized
323 * \param nent number of entries to be installed
324 * \param entries cpuid function entries table
325 * \return 0 on success, or -errno on error
327 int kvm_setup_cpuid(CPUState
*env
, int nent
,
328 struct kvm_cpuid_entry
*entries
);
331 * \brief Setup a vcpu's cpuid instruction emulation
333 * Set up a table of cpuid function to cpuid outputs.
334 * This call replaces the older kvm_setup_cpuid interface by adding a few
335 * parameters to support cpuid functions that have sub-leaf values.
337 * \param kvm Pointer to the current kvm_context
338 * \param vcpu Which virtual CPU should be initialized
339 * \param nent number of entries to be installed
340 * \param entries cpuid function entries table
341 * \return 0 on success, or -errno on error
343 int kvm_setup_cpuid2(CPUState
*env
, int nent
,
344 struct kvm_cpuid_entry2
*entries
);
347 * \brief Setting the number of shadow pages to be allocated to the vm
349 * \param kvm pointer to kvm_context
350 * \param nrshadow_pages number of pages to be allocated
352 int kvm_set_shadow_pages(kvm_context_t kvm
, unsigned int nrshadow_pages
);
355 * \brief Getting the number of shadow pages that are allocated to the vm
357 * \param kvm pointer to kvm_context
358 * \param nrshadow_pages number of pages to be allocated
360 int kvm_get_shadow_pages(kvm_context_t kvm
, unsigned int *nrshadow_pages
);
365 * \brief Dump VCPU registers
367 * This dumps some of the information that KVM has about a virtual CPU, namely:
370 * A much more verbose version of this is available as kvm_dump_vcpu()
372 * \param kvm Pointer to the current kvm_context
373 * \param vcpu Which virtual CPU should get dumped
374 * \return 0 on success
376 void kvm_show_regs(CPUState
*env
);
379 void *kvm_create_phys_mem(kvm_context_t
, unsigned long phys_start
,
380 unsigned long len
, int log
, int writable
);
381 void kvm_destroy_phys_mem(kvm_context_t
, unsigned long phys_start
,
384 int kvm_is_containing_region(kvm_context_t kvm
, unsigned long phys_start
,
386 int kvm_register_phys_mem(kvm_context_t kvm
, unsigned long phys_start
,
387 void *userspace_addr
, unsigned long len
, int log
);
388 int kvm_get_dirty_pages_range(kvm_context_t kvm
, unsigned long phys_addr
,
389 unsigned long end_addr
, void *opaque
,
390 int (*cb
)(unsigned long start
,
391 unsigned long len
, void *bitmap
,
393 int kvm_register_coalesced_mmio(kvm_context_t kvm
, uint64_t addr
,
395 int kvm_unregister_coalesced_mmio(kvm_context_t kvm
, uint64_t addr
,
399 * \brief Get a bitmap of guest ram pages which are allocated to the guest.
401 * \param kvm Pointer to the current kvm_context
402 * \param phys_addr Memory slot phys addr
403 * \param bitmap Long aligned address of a big enough bitmap (one bit per page)
405 int kvm_get_mem_map(kvm_context_t kvm
, unsigned long phys_addr
, void *bitmap
);
406 int kvm_get_mem_map_range(kvm_context_t kvm
, unsigned long phys_addr
,
407 unsigned long len
, void *buf
, void *opaque
,
408 int (*cb
)(unsigned long start
,
409 unsigned long len
, void *bitmap
,
411 int kvm_set_irq_level(kvm_context_t kvm
, int irq
, int level
, int *status
);
413 int kvm_dirty_pages_log_enable_slot(kvm_context_t kvm
, uint64_t phys_start
,
415 int kvm_dirty_pages_log_disable_slot(kvm_context_t kvm
, uint64_t phys_start
,
418 * \brief Enable dirty-pages-logging for all memory regions
420 * \param kvm Pointer to the current kvm_context
422 int kvm_dirty_pages_log_enable_all(kvm_context_t kvm
);
425 * \brief Disable dirty-page-logging for some memory regions
427 * Disable dirty-pages-logging for those memory regions that were
428 * created with dirty-page-logging disabled.
430 * \param kvm Pointer to the current kvm_context
432 int kvm_dirty_pages_log_reset(kvm_context_t kvm
);
434 #ifdef KVM_CAP_IRQCHIP
436 * \brief Dump in kernel IRQCHIP contents
438 * Dump one of the in kernel irq chip devices, including PIC (master/slave)
439 * and IOAPIC into a kvm_irqchip structure
441 * \param kvm Pointer to the current kvm_context
442 * \param chip The irq chip device to be dumped
444 int kvm_get_irqchip(kvm_context_t kvm
, struct kvm_irqchip
*chip
);
447 * \brief Set in kernel IRQCHIP contents
449 * Write one of the in kernel irq chip devices, including PIC (master/slave)
453 * \param kvm Pointer to the current kvm_context
454 * \param chip THe irq chip device to be written
456 int kvm_set_irqchip(kvm_context_t kvm
, struct kvm_irqchip
*chip
);
458 #if defined(__i386__) || defined(__x86_64__)
460 * \brief Get in kernel local APIC for vcpu
462 * Save the local apic state including the timer of a virtual CPU
464 * \param kvm Pointer to the current kvm_context
465 * \param vcpu Which virtual CPU should be accessed
466 * \param s Local apic state of the specific virtual CPU
468 int kvm_get_lapic(CPUState
*env
, struct kvm_lapic_state
*s
);
471 * \brief Set in kernel local APIC for vcpu
473 * Restore the local apic state including the timer of a virtual CPU
475 * \param kvm Pointer to the current kvm_context
476 * \param vcpu Which virtual CPU should be accessed
477 * \param s Local apic state of the specific virtual CPU
479 int kvm_set_lapic(CPUState
*env
, struct kvm_lapic_state
*s
);
484 * \brief Simulate an NMI
486 * This allows you to simulate a non-maskable interrupt.
488 * \param kvm Pointer to the current kvm_context
489 * \param vcpu Which virtual CPU should get dumped
490 * \return 0 on success
492 int kvm_inject_nmi(CPUState
*env
);
497 * \brief Simulate an x86 MCE
499 * This allows you to simulate a x86 MCE.
501 * \param cenv Which virtual CPU should get MCE injected
502 * \param bank Bank number
503 * \param status MSR_MCI_STATUS
504 * \param mcg_status MSR_MCG_STATUS
505 * \param addr MSR_MCI_ADDR
506 * \param misc MSR_MCI_MISC
507 * \param abort_on_error abort on error
509 void kvm_inject_x86_mce(CPUState
*cenv
, int bank
, uint64_t status
,
510 uint64_t mcg_status
, uint64_t addr
, uint64_t misc
,
514 * \brief Initialize coalesced MMIO
516 * Check for coalesced MMIO capability and store in context
518 * \param kvm Pointer to the current kvm_context
520 int kvm_init_coalesced_mmio(kvm_context_t kvm
);
524 #if defined(__i386__) || defined(__x86_64__)
526 * \brief Get in kernel PIT of the virtual domain
528 * Save the PIT state.
530 * \param kvm Pointer to the current kvm_context
531 * \param s PIT state of the virtual domain
533 int kvm_get_pit(kvm_context_t kvm
, struct kvm_pit_state
*s
);
536 * \brief Set in kernel PIT of the virtual domain
538 * Restore the PIT state.
539 * Timer would be retriggerred after restored.
541 * \param kvm Pointer to the current kvm_context
542 * \param s PIT state of the virtual domain
544 int kvm_set_pit(kvm_context_t kvm
, struct kvm_pit_state
*s
);
546 int kvm_reinject_control(kvm_context_t kvm
, int pit_reinject
);
548 #ifdef KVM_CAP_PIT_STATE2
550 * \brief Check for kvm support of kvm_pit_state2
552 * \param kvm Pointer to the current kvm_context
553 * \return 0 on success
555 int kvm_has_pit_state2(kvm_context_t kvm
);
558 * \brief Set in kernel PIT state2 of the virtual domain
561 * \param kvm Pointer to the current kvm_context
562 * \param ps2 PIT state2 of the virtual domain
563 * \return 0 on success
565 int kvm_set_pit2(kvm_context_t kvm
, struct kvm_pit_state2
*ps2
);
568 * \brief Get in kernel PIT state2 of the virtual domain
571 * \param kvm Pointer to the current kvm_context
572 * \param ps2 PIT state2 of the virtual domain
573 * \return 0 on success
575 int kvm_get_pit2(kvm_context_t kvm
, struct kvm_pit_state2
*ps2
);
583 int kvm_enable_vapic(CPUState
*env
, uint64_t vapic
);
587 #if defined(__s390__)
588 int kvm_s390_initial_reset(kvm_context_t kvm
, int slot
);
589 int kvm_s390_interrupt(kvm_context_t kvm
, int slot
,
590 struct kvm_s390_interrupt
*kvmint
);
591 int kvm_s390_set_initial_psw(kvm_context_t kvm
, int slot
, psw_t psw
);
592 int kvm_s390_store_status(kvm_context_t kvm
, int slot
, unsigned long addr
);
595 #ifdef KVM_CAP_DEVICE_ASSIGNMENT
597 * \brief Notifies host kernel about a PCI device to be assigned to a guest
599 * Used for PCI device assignment, this function notifies the host
600 * kernel about the assigning of the physical PCI device to a guest.
602 * \param kvm Pointer to the current kvm_context
603 * \param assigned_dev Parameters, like bus, devfn number, etc
605 int kvm_assign_pci_device(kvm_context_t kvm
,
606 struct kvm_assigned_pci_dev
*assigned_dev
);
609 * \brief Assign IRQ for an assigned device
611 * Used for PCI device assignment, this function assigns IRQ numbers for
612 * an physical device and guest IRQ handling.
614 * \param kvm Pointer to the current kvm_context
615 * \param assigned_irq Parameters, like dev id, host irq, guest irq, etc
617 int kvm_assign_irq(kvm_context_t kvm
, struct kvm_assigned_irq
*assigned_irq
);
619 #ifdef KVM_CAP_ASSIGN_DEV_IRQ
621 * \brief Deassign IRQ for an assigned device
623 * Used for PCI device assignment, this function deassigns IRQ numbers
624 * for an assigned device.
626 * \param kvm Pointer to the current kvm_context
627 * \param assigned_irq Parameters, like dev id, host irq, guest irq, etc
629 int kvm_deassign_irq(kvm_context_t kvm
, struct kvm_assigned_irq
*assigned_irq
);
633 #ifdef KVM_CAP_DEVICE_DEASSIGNMENT
635 * \brief Notifies host kernel about a PCI device to be deassigned from a guest
637 * Used for hot remove PCI device, this function notifies the host
638 * kernel about the deassigning of the physical PCI device from a guest.
640 * \param kvm Pointer to the current kvm_context
641 * \param assigned_dev Parameters, like bus, devfn number, etc
643 int kvm_deassign_pci_device(kvm_context_t kvm
,
644 struct kvm_assigned_pci_dev
*assigned_dev
);
648 * \brief Checks whether the generic irq routing capability is present
650 * Checks whether kvm can reroute interrupts among the various interrupt
653 * \param kvm Pointer to the current kvm_context
655 int kvm_has_gsi_routing(kvm_context_t kvm
);
658 * \brief Determines the number of gsis that can be routed
660 * Returns the number of distinct gsis that can be routed by kvm. This is
661 * also the number of distinct routes (if a gsi has two routes, than another
662 * gsi cannot be used...)
664 * \param kvm Pointer to the current kvm_context
666 int kvm_get_gsi_count(kvm_context_t kvm
);
669 * \brief Clears the temporary irq routing table
671 * Clears the temporary irq routing table. Nothing is committed to the
674 * \param kvm Pointer to the current kvm_context
676 int kvm_clear_gsi_routes(kvm_context_t kvm
);
679 * \brief Adds an irq route to the temporary irq routing table
681 * Adds an irq route to the temporary irq routing table. Nothing is
682 * committed to the running VM.
684 * \param kvm Pointer to the current kvm_context
686 int kvm_add_irq_route(kvm_context_t kvm
, int gsi
, int irqchip
, int pin
);
689 * \brief Removes an irq route from the temporary irq routing table
691 * Adds an irq route to the temporary irq routing table. Nothing is
692 * committed to the running VM.
694 * \param kvm Pointer to the current kvm_context
696 int kvm_del_irq_route(kvm_context_t kvm
, int gsi
, int irqchip
, int pin
);
698 struct kvm_irq_routing_entry
;
700 * \brief Adds a routing entry to the temporary irq routing table
702 * Adds a filled routing entry to the temporary irq routing table. Nothing is
703 * committed to the running VM.
705 * \param kvm Pointer to the current kvm_context
707 int kvm_add_routing_entry(kvm_context_t kvm
,
708 struct kvm_irq_routing_entry
*entry
);
711 * \brief Removes a routing from the temporary irq routing table
713 * Remove a routing to the temporary irq routing table. Nothing is
714 * committed to the running VM.
716 * \param kvm Pointer to the current kvm_context
718 int kvm_del_routing_entry(kvm_context_t kvm
,
719 struct kvm_irq_routing_entry
*entry
);
722 * \brief Updates a routing in the temporary irq routing table
724 * Update a routing in the temporary irq routing table
725 * with a new value. entry type and GSI can not be changed.
726 * Nothing is committed to the running VM.
728 * \param kvm Pointer to the current kvm_context
730 int kvm_update_routing_entry(kvm_context_t kvm
,
731 struct kvm_irq_routing_entry
*entry
,
732 struct kvm_irq_routing_entry
*newentry
);
735 * \brief Commit the temporary irq routing table
737 * Commit the temporary irq routing table to the running VM.
739 * \param kvm Pointer to the current kvm_context
741 int kvm_commit_irq_routes(kvm_context_t kvm
);
744 * \brief Get unused GSI number for irq routing table
746 * Get unused GSI number for irq routing table
748 * \param kvm Pointer to the current kvm_context
750 int kvm_get_irq_route_gsi(kvm_context_t kvm
);
753 * \brief Create a file descriptor for injecting interrupts
755 * Creates an eventfd based file-descriptor that maps to a specific GSI
756 * in the guest. eventfd compliant signaling (write() from userspace, or
757 * eventfd_signal() from kernelspace) will cause the GSI to inject
758 * itself into the guest at the next available window.
760 * \param kvm Pointer to the current kvm_context
761 * \param gsi GSI to assign to this fd
762 * \param flags reserved, must be zero
764 int kvm_irqfd(kvm_context_t kvm
, int gsi
, int flags
);
766 #ifdef KVM_CAP_DEVICE_MSIX
767 int kvm_assign_set_msix_nr(kvm_context_t kvm
,
768 struct kvm_assigned_msix_nr
*msix_nr
);
769 int kvm_assign_set_msix_entry(kvm_context_t kvm
,
770 struct kvm_assigned_msix_entry
*entry
);
773 #else /* !CONFIG_KVM */
775 typedef struct kvm_context
*kvm_context_t
;
776 typedef struct kvm_vcpu_context
*kvm_vcpu_context_t
;
778 struct kvm_pit_state
{
781 static inline int kvm_init(int smp_cpus
)
786 static inline void kvm_inject_x86_mce(CPUState
*cenv
, int bank
,
787 uint64_t status
, uint64_t mcg_status
,
788 uint64_t addr
, uint64_t misc
,
795 #endif /* !CONFIG_KVM */
798 int kvm_main_loop(void);
799 int kvm_init_ap(void);
800 int kvm_vcpu_inited(CPUState
*env
);
801 void kvm_save_lapic(CPUState
*env
);
802 void kvm_load_lapic(CPUState
*env
);
804 void kvm_hpet_enable_kpit(void);
805 void kvm_hpet_disable_kpit(void);
806 int kvm_set_irq(int irq
, int level
, int *status
);
808 int kvm_physical_memory_set_dirty_tracking(int enable
);
810 void qemu_kvm_call_with_env(void (*func
)(void *), void *data
, CPUState
*env
);
811 void qemu_kvm_cpuid_on_env(CPUState
*env
);
812 void kvm_inject_interrupt(CPUState
*env
, int mask
);
813 void kvm_update_after_sipi(CPUState
*env
);
814 void kvm_update_interrupt_request(CPUState
*env
);
815 void *kvm_cpu_create_phys_mem(target_phys_addr_t start_addr
, unsigned long size
,
816 int log
, int writable
);
818 void kvm_cpu_destroy_phys_mem(target_phys_addr_t start_addr
,
820 void kvm_qemu_log_memory(target_phys_addr_t start
, target_phys_addr_t size
,
822 int kvm_qemu_create_memory_alias(uint64_t phys_start
, uint64_t len
,
823 uint64_t target_phys
);
824 int kvm_qemu_destroy_memory_alias(uint64_t phys_start
);
826 int kvm_arch_qemu_create_context(void);
828 void kvm_arch_save_regs(CPUState
*env
);
829 void kvm_arch_load_regs(CPUState
*env
, int level
);
830 int kvm_arch_has_work(CPUState
*env
);
831 void kvm_arch_process_irqchip_events(CPUState
*env
);
832 int kvm_arch_try_push_interrupts(void *opaque
);
833 void kvm_arch_push_nmi(void *opaque
);
834 void kvm_arch_cpu_reset(CPUState
*env
);
835 int kvm_set_boot_cpu_id(uint32_t id
);
837 void qemu_kvm_aio_wait_start(void);
838 void qemu_kvm_aio_wait(void);
839 void qemu_kvm_aio_wait_end(void);
841 void qemu_kvm_notify_work(void);
843 void kvm_tpr_access_report(CPUState
*env
, uint64_t rip
, int is_write
);
845 int kvm_arch_init_irq_routing(void);
847 int kvm_mmio_read(void *opaque
, uint64_t addr
, uint8_t * data
, int len
);
848 int kvm_mmio_write(void *opaque
, uint64_t addr
, uint8_t * data
, int len
);
850 #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
853 void kvm_ioperm(CPUState
*env
, void *data
);
854 void kvm_add_ioperm_data(struct ioperm_data
*data
);
855 void kvm_remove_ioperm_data(unsigned long start_port
, unsigned long num
);
856 void kvm_arch_do_ioperm(void *_data
);
859 #define ALIGN(x, y) (((x)+(y)-1) & ~((y)-1))
860 #define BITMAP_SIZE(m) (ALIGN(((m)>>TARGET_PAGE_BITS), HOST_LONG_BITS) / 8)
863 #include "qemu-queue.h"
865 extern int kvm_irqchip
;
867 extern int kvm_pit_reinject
;
868 extern int kvm_nested
;
869 extern kvm_context_t kvm_context
;
872 unsigned long start_port
;
875 QLIST_ENTRY(ioperm_data
) entries
;
878 void qemu_kvm_cpu_stop(CPUState
*env
);
879 int kvm_arch_halt(CPUState
*env
);
880 int handle_tpr_access(void *opaque
, CPUState
*env
, uint64_t rip
,
883 #define qemu_kvm_has_gsi_routing() kvm_has_gsi_routing(kvm_context)
885 #define qemu_kvm_has_pit_state2() kvm_has_pit_state2(kvm_context)
889 #define qemu_kvm_has_gsi_routing() (0)
891 #define qemu_kvm_has_pit_state2() (0)
893 #define qemu_kvm_cpu_stop(env) do {} while(0)
896 void kvm_mutex_unlock(void);
897 void kvm_mutex_lock(void);
899 static inline int kvm_sync_vcpus(void)
906 typedef struct KVMSlot
{
907 target_phys_addr_t start_addr
;
908 ram_addr_t memory_size
;
909 ram_addr_t phys_offset
;
914 typedef struct kvm_dirty_log KVMDirtyLog
;
921 #ifdef KVM_CAP_COALESCED_MMIO
922 struct kvm_coalesced_mmio_ring
*coalesced_mmio_ring
;
924 int broken_set_mem_region
;
927 int robust_singlestep
;
929 #ifdef KVM_CAP_SET_GUEST_DEBUG
930 QTAILQ_HEAD(, kvm_sw_breakpoint
) kvm_sw_breakpoints
;
932 int irqchip_in_kernel
;
935 struct kvm_context kvm_context
;
938 extern struct KVMState
*kvm_state
;
940 int kvm_tpr_enable_vapic(CPUState
*env
);
942 unsigned long kvm_get_thread_id(void);
943 int kvm_cpu_is_stopped(CPUState
*env
);