kvm-stub.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * QEMU KVM stub
  3. *
  4. * Copyright Red Hat, Inc. 2010
  5. *
  6. * Author: Paolo Bonzini <pbonzini@redhat.com>
  7. *
  8. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  9. * See the COPYING file in the top-level directory.
  10. *
  11. */
  12. #include "qemu-common.h"
  13. #include "hw/hw.h"
  14. #include "hw/msi.h"
  15. #include "cpu.h"
  16. #include "gdbstub.h"
  17. #include "kvm.h"
  18. KVMState *kvm_state;
  19. bool kvm_kernel_irqchip;
  20. bool kvm_async_interrupts_allowed;
  21. bool kvm_irqfds_allowed;
  22. bool kvm_msi_via_irqfd_allowed;
  23. bool kvm_gsi_routing_allowed;
  24. int kvm_init_vcpu(CPUArchState *env)
  25. {
  26. return -ENOSYS;
  27. }
  28. int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
  29. {
  30. return -ENOSYS;
  31. }
  32. int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
  33. {
  34. return -ENOSYS;
  35. }
  36. int kvm_init(void)
  37. {
  38. return -ENOSYS;
  39. }
  40. void kvm_flush_coalesced_mmio_buffer(void)
  41. {
  42. }
  43. void kvm_cpu_synchronize_state(CPUArchState *env)
  44. {
  45. }
  46. void kvm_cpu_synchronize_post_reset(CPUArchState *env)
  47. {
  48. }
  49. void kvm_cpu_synchronize_post_init(CPUArchState *env)
  50. {
  51. }
  52. int kvm_cpu_exec(CPUArchState *env)
  53. {
  54. abort ();
  55. }
  56. int kvm_has_sync_mmu(void)
  57. {
  58. return 0;
  59. }
  60. int kvm_has_many_ioeventfds(void)
  61. {
  62. return 0;
  63. }
  64. int kvm_has_pit_state2(void)
  65. {
  66. return 0;
  67. }
  68. void kvm_setup_guest_memory(void *start, size_t size)
  69. {
  70. }
  71. int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
  72. {
  73. return -ENOSYS;
  74. }
  75. int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
  76. target_ulong len, int type)
  77. {
  78. return -EINVAL;
  79. }
  80. int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
  81. target_ulong len, int type)
  82. {
  83. return -EINVAL;
  84. }
  85. void kvm_remove_all_breakpoints(CPUArchState *current_env)
  86. {
  87. }
  88. #ifndef _WIN32
  89. int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset)
  90. {
  91. abort();
  92. }
  93. #endif
  94. int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
  95. {
  96. return -ENOSYS;
  97. }
  98. int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign, uint32_t len)
  99. {
  100. return -ENOSYS;
  101. }
  102. int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr)
  103. {
  104. return 1;
  105. }
  106. int kvm_on_sigbus(int code, void *addr)
  107. {
  108. return 1;
  109. }
  110. int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
  111. {
  112. return -ENOSYS;
  113. }
  114. void kvm_irqchip_release_virq(KVMState *s, int virq)
  115. {
  116. }
  117. int kvm_irqchip_add_irqfd(KVMState *s, int fd, int virq)
  118. {
  119. return -ENOSYS;
  120. }
  121. int kvm_irqchip_add_irq_notifier(KVMState *s, EventNotifier *n, int virq)
  122. {
  123. return -ENOSYS;
  124. }
  125. int kvm_irqchip_remove_irqfd(KVMState *s, int fd, int virq)
  126. {
  127. return -ENOSYS;
  128. }
  129. int kvm_irqchip_remove_irq_notifier(KVMState *s, EventNotifier *n, int virq)
  130. {
  131. return -ENOSYS;
  132. }