2 * kvm_ia64.c: Basic KVM suppport On Itanium series processors
5 * Copyright (C) 2007, Intel Corporation.
6 * Xiantao Zhang (xiantao.zhang@intel.com)
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place - Suite 330, Boston, MA 02111-1307 USA.
23 #include <linux/module.h>
24 #include <linux/errno.h>
25 #include <linux/percpu.h>
26 #include <linux/gfp.h>
28 #include <linux/smp.h>
29 #include <linux/kvm_host.h>
30 #include <linux/kvm.h>
31 #include <linux/bitops.h>
32 #include <linux/hrtimer.h>
33 #include <linux/uaccess.h>
34 #include <linux/iommu.h>
35 #include <linux/intel-iommu.h>
37 #include <asm/pgtable.h>
38 #include <asm/gcc_intrin.h>
40 #include <asm/cacheflush.h>
41 #include <asm/div64.h>
44 #include <asm/sn/addrs.h>
45 #include <asm/sn/clksupport.h>
46 #include <asm/sn/shub_mmr.h>
55 static unsigned long kvm_vmm_base
;
56 static unsigned long kvm_vsa_base
;
57 static unsigned long kvm_vm_buffer
;
58 static unsigned long kvm_vm_buffer_size
;
59 unsigned long kvm_vmm_gp
;
61 static long vp_env_info
;
63 static struct kvm_vmm_info
*kvm_vmm_info
;
65 static DEFINE_PER_CPU(struct kvm_vcpu
*, last_vcpu
);
67 struct kvm_stats_debugfs_item debugfs_entries
[] = {
71 static unsigned long kvm_get_itc(struct kvm_vcpu
*vcpu
)
73 #if defined(CONFIG_IA64_SGI_SN2) || defined(CONFIG_IA64_GENERIC)
74 if (vcpu
->kvm
->arch
.is_sn2
)
78 return ia64_getreg(_IA64_REG_AR_ITC
);
81 static void kvm_flush_icache(unsigned long start
, unsigned long len
)
85 for (l
= 0; l
< (len
+ 32); l
+= 32)
86 ia64_fc((void *)(start
+ l
));
92 static void kvm_flush_tlb_all(void)
94 unsigned long i
, j
, count0
, count1
, stride0
, stride1
, addr
;
97 addr
= local_cpu_data
->ptce_base
;
98 count0
= local_cpu_data
->ptce_count
[0];
99 count1
= local_cpu_data
->ptce_count
[1];
100 stride0
= local_cpu_data
->ptce_stride
[0];
101 stride1
= local_cpu_data
->ptce_stride
[1];
103 local_irq_save(flags
);
104 for (i
= 0; i
< count0
; ++i
) {
105 for (j
= 0; j
< count1
; ++j
) {
111 local_irq_restore(flags
);
112 ia64_srlz_i(); /* srlz.i implies srlz.d */
115 long ia64_pal_vp_create(u64
*vpd
, u64
*host_iva
, u64
*opt_handler
)
117 struct ia64_pal_retval iprv
;
119 PAL_CALL_STK(iprv
, PAL_VP_CREATE
, (u64
)vpd
, (u64
)host_iva
,
125 static DEFINE_SPINLOCK(vp_lock
);
127 int kvm_arch_hardware_enable(void *garbage
)
132 unsigned long saved_psr
;
135 pte
= pte_val(mk_pte_phys(__pa(kvm_vmm_base
), PAGE_KERNEL
));
136 local_irq_save(saved_psr
);
137 slot
= ia64_itr_entry(0x3, KVM_VMM_BASE
, pte
, KVM_VMM_SHIFT
);
138 local_irq_restore(saved_psr
);
143 status
= ia64_pal_vp_init_env(kvm_vsa_base
?
144 VP_INIT_ENV
: VP_INIT_ENV_INITALIZE
,
145 __pa(kvm_vm_buffer
), KVM_VM_BUFFER_BASE
, &tmp_base
);
147 printk(KERN_WARNING
"kvm: Failed to Enable VT Support!!!!\n");
152 kvm_vsa_base
= tmp_base
;
153 printk(KERN_INFO
"kvm: kvm_vsa_base:0x%lx\n", kvm_vsa_base
);
155 spin_unlock(&vp_lock
);
156 ia64_ptr_entry(0x3, slot
);
161 void kvm_arch_hardware_disable(void *garbage
)
167 unsigned long saved_psr
;
168 unsigned long host_iva
= ia64_getreg(_IA64_REG_CR_IVA
);
170 pte
= pte_val(mk_pte_phys(__pa(kvm_vmm_base
),
173 local_irq_save(saved_psr
);
174 slot
= ia64_itr_entry(0x3, KVM_VMM_BASE
, pte
, KVM_VMM_SHIFT
);
175 local_irq_restore(saved_psr
);
179 status
= ia64_pal_vp_exit_env(host_iva
);
181 printk(KERN_DEBUG
"kvm: Failed to disable VT support! :%ld\n",
183 ia64_ptr_entry(0x3, slot
);
186 void kvm_arch_check_processor_compat(void *rtn
)
191 int kvm_dev_ioctl_check_extension(long ext
)
197 case KVM_CAP_IRQCHIP
:
198 case KVM_CAP_MP_STATE
:
199 case KVM_CAP_IRQ_INJECT_STATUS
:
202 case KVM_CAP_COALESCED_MMIO
:
203 r
= KVM_COALESCED_MMIO_PAGE_OFFSET
;
215 static int handle_vm_error(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
217 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
218 kvm_run
->hw
.hardware_exit_reason
= 1;
222 static int handle_mmio(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
224 struct kvm_mmio_req
*p
;
225 struct kvm_io_device
*mmio_dev
;
228 p
= kvm_get_vcpu_ioreq(vcpu
);
230 if ((p
->addr
& PAGE_MASK
) == IOAPIC_DEFAULT_BASE_ADDRESS
)
232 vcpu
->mmio_needed
= 1;
233 vcpu
->mmio_phys_addr
= kvm_run
->mmio
.phys_addr
= p
->addr
;
234 vcpu
->mmio_size
= kvm_run
->mmio
.len
= p
->size
;
235 vcpu
->mmio_is_write
= kvm_run
->mmio
.is_write
= !p
->dir
;
237 if (vcpu
->mmio_is_write
)
238 memcpy(vcpu
->mmio_data
, &p
->data
, p
->size
);
239 memcpy(kvm_run
->mmio
.data
, &p
->data
, p
->size
);
240 kvm_run
->exit_reason
= KVM_EXIT_MMIO
;
244 r
= kvm_io_bus_read(&vcpu
->kvm
->mmio_bus
, p
->addr
,
247 r
= kvm_io_bus_write(&vcpu
->kvm
->mmio_bus
, p
->addr
,
250 printk(KERN_ERR
"kvm: No iodevice found! addr:%lx\n", p
->addr
);
251 p
->state
= STATE_IORESP_READY
;
256 static int handle_pal_call(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
258 struct exit_ctl_data
*p
;
260 p
= kvm_get_exit_data(vcpu
);
262 if (p
->exit_reason
== EXIT_REASON_PAL_CALL
)
263 return kvm_pal_emul(vcpu
, kvm_run
);
265 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
266 kvm_run
->hw
.hardware_exit_reason
= 2;
271 static int handle_sal_call(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
273 struct exit_ctl_data
*p
;
275 p
= kvm_get_exit_data(vcpu
);
277 if (p
->exit_reason
== EXIT_REASON_SAL_CALL
) {
281 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
282 kvm_run
->hw
.hardware_exit_reason
= 3;
288 static int __apic_accept_irq(struct kvm_vcpu
*vcpu
, uint64_t vector
)
290 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
292 if (!test_and_set_bit(vector
, &vpd
->irr
[0])) {
293 vcpu
->arch
.irq_new_pending
= 1;
301 * offset: address offset to IPI space.
302 * value: deliver value.
304 static void vcpu_deliver_ipi(struct kvm_vcpu
*vcpu
, uint64_t dm
,
319 printk(KERN_ERR
"kvm: Unimplemented Deliver reserved IPI!\n");
322 __apic_accept_irq(vcpu
, vector
);
325 static struct kvm_vcpu
*lid_to_vcpu(struct kvm
*kvm
, unsigned long id
,
330 struct kvm_vcpu
*vcpu
;
332 kvm_for_each_vcpu(i
, vcpu
, kvm
) {
333 lid
.val
= VCPU_LID(vcpu
);
334 if (lid
.id
== id
&& lid
.eid
== eid
)
341 static int handle_ipi(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
343 struct exit_ctl_data
*p
= kvm_get_exit_data(vcpu
);
344 struct kvm_vcpu
*target_vcpu
;
345 struct kvm_pt_regs
*regs
;
346 union ia64_ipi_a addr
= p
->u
.ipi_data
.addr
;
347 union ia64_ipi_d data
= p
->u
.ipi_data
.data
;
349 target_vcpu
= lid_to_vcpu(vcpu
->kvm
, addr
.id
, addr
.eid
);
351 return handle_vm_error(vcpu
, kvm_run
);
353 if (!target_vcpu
->arch
.launched
) {
354 regs
= vcpu_regs(target_vcpu
);
356 regs
->cr_iip
= vcpu
->kvm
->arch
.rdv_sal_data
.boot_ip
;
357 regs
->r1
= vcpu
->kvm
->arch
.rdv_sal_data
.boot_gp
;
359 target_vcpu
->arch
.mp_state
= KVM_MP_STATE_RUNNABLE
;
360 if (waitqueue_active(&target_vcpu
->wq
))
361 wake_up_interruptible(&target_vcpu
->wq
);
363 vcpu_deliver_ipi(target_vcpu
, data
.dm
, data
.vector
);
364 if (target_vcpu
!= vcpu
)
365 kvm_vcpu_kick(target_vcpu
);
372 struct kvm_ptc_g ptc_g_data
;
373 struct kvm_vcpu
*vcpu
;
376 static void vcpu_global_purge(void *info
)
378 struct call_data
*p
= (struct call_data
*)info
;
379 struct kvm_vcpu
*vcpu
= p
->vcpu
;
381 if (test_bit(KVM_REQ_TLB_FLUSH
, &vcpu
->requests
))
384 set_bit(KVM_REQ_PTC_G
, &vcpu
->requests
);
385 if (vcpu
->arch
.ptc_g_count
< MAX_PTC_G_NUM
) {
386 vcpu
->arch
.ptc_g_data
[vcpu
->arch
.ptc_g_count
++] =
389 clear_bit(KVM_REQ_PTC_G
, &vcpu
->requests
);
390 vcpu
->arch
.ptc_g_count
= 0;
391 set_bit(KVM_REQ_TLB_FLUSH
, &vcpu
->requests
);
395 static int handle_global_purge(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
397 struct exit_ctl_data
*p
= kvm_get_exit_data(vcpu
);
398 struct kvm
*kvm
= vcpu
->kvm
;
399 struct call_data call_data
;
401 struct kvm_vcpu
*vcpui
;
403 call_data
.ptc_g_data
= p
->u
.ptc_g_data
;
405 kvm_for_each_vcpu(i
, vcpui
, kvm
) {
406 if (vcpui
->arch
.mp_state
== KVM_MP_STATE_UNINITIALIZED
||
410 if (waitqueue_active(&vcpui
->wq
))
411 wake_up_interruptible(&vcpui
->wq
);
413 if (vcpui
->cpu
!= -1) {
414 call_data
.vcpu
= vcpui
;
415 smp_call_function_single(vcpui
->cpu
,
416 vcpu_global_purge
, &call_data
, 1);
418 printk(KERN_WARNING
"kvm: Uninit vcpu received ipi!\n");
424 static int handle_switch_rr6(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
429 static int kvm_sn2_setup_mappings(struct kvm_vcpu
*vcpu
)
431 unsigned long pte
, rtc_phys_addr
, map_addr
;
434 map_addr
= KVM_VMM_BASE
+ (1UL << KVM_VMM_SHIFT
);
435 rtc_phys_addr
= LOCAL_MMR_OFFSET
| SH_RTC
;
436 pte
= pte_val(mk_pte_phys(rtc_phys_addr
, PAGE_KERNEL_UC
));
437 slot
= ia64_itr_entry(0x3, map_addr
, pte
, PAGE_SHIFT
);
438 vcpu
->arch
.sn_rtc_tr_slot
= slot
;
440 printk(KERN_ERR
"Mayday mayday! RTC mapping failed!\n");
446 int kvm_emulate_halt(struct kvm_vcpu
*vcpu
)
451 unsigned long vcpu_now_itc
;
452 unsigned long expires
;
453 struct hrtimer
*p_ht
= &vcpu
->arch
.hlt_timer
;
454 unsigned long cyc_per_usec
= local_cpu_data
->cyc_per_usec
;
455 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
457 if (irqchip_in_kernel(vcpu
->kvm
)) {
459 vcpu_now_itc
= kvm_get_itc(vcpu
) + vcpu
->arch
.itc_offset
;
461 if (time_after(vcpu_now_itc
, vpd
->itm
)) {
462 vcpu
->arch
.timer_check
= 1;
465 itc_diff
= vpd
->itm
- vcpu_now_itc
;
467 itc_diff
= -itc_diff
;
469 expires
= div64_u64(itc_diff
, cyc_per_usec
);
470 kt
= ktime_set(0, 1000 * expires
);
472 vcpu
->arch
.ht_active
= 1;
473 hrtimer_start(p_ht
, kt
, HRTIMER_MODE_ABS
);
475 vcpu
->arch
.mp_state
= KVM_MP_STATE_HALTED
;
476 kvm_vcpu_block(vcpu
);
477 hrtimer_cancel(p_ht
);
478 vcpu
->arch
.ht_active
= 0;
480 if (test_and_clear_bit(KVM_REQ_UNHALT
, &vcpu
->requests
) ||
481 kvm_cpu_has_pending_timer(vcpu
))
482 if (vcpu
->arch
.mp_state
== KVM_MP_STATE_HALTED
)
483 vcpu
->arch
.mp_state
= KVM_MP_STATE_RUNNABLE
;
485 if (vcpu
->arch
.mp_state
!= KVM_MP_STATE_RUNNABLE
)
489 printk(KERN_ERR
"kvm: Unsupported userspace halt!");
494 static int handle_vm_shutdown(struct kvm_vcpu
*vcpu
,
495 struct kvm_run
*kvm_run
)
497 kvm_run
->exit_reason
= KVM_EXIT_SHUTDOWN
;
501 static int handle_external_interrupt(struct kvm_vcpu
*vcpu
,
502 struct kvm_run
*kvm_run
)
507 static int handle_vcpu_debug(struct kvm_vcpu
*vcpu
,
508 struct kvm_run
*kvm_run
)
510 printk("VMM: %s", vcpu
->arch
.log_buf
);
514 static int (*kvm_vti_exit_handlers
[])(struct kvm_vcpu
*vcpu
,
515 struct kvm_run
*kvm_run
) = {
516 [EXIT_REASON_VM_PANIC
] = handle_vm_error
,
517 [EXIT_REASON_MMIO_INSTRUCTION
] = handle_mmio
,
518 [EXIT_REASON_PAL_CALL
] = handle_pal_call
,
519 [EXIT_REASON_SAL_CALL
] = handle_sal_call
,
520 [EXIT_REASON_SWITCH_RR6
] = handle_switch_rr6
,
521 [EXIT_REASON_VM_DESTROY
] = handle_vm_shutdown
,
522 [EXIT_REASON_EXTERNAL_INTERRUPT
] = handle_external_interrupt
,
523 [EXIT_REASON_IPI
] = handle_ipi
,
524 [EXIT_REASON_PTC_G
] = handle_global_purge
,
525 [EXIT_REASON_DEBUG
] = handle_vcpu_debug
,
529 static const int kvm_vti_max_exit_handlers
=
530 sizeof(kvm_vti_exit_handlers
)/sizeof(*kvm_vti_exit_handlers
);
532 static uint32_t kvm_get_exit_reason(struct kvm_vcpu
*vcpu
)
534 struct exit_ctl_data
*p_exit_data
;
536 p_exit_data
= kvm_get_exit_data(vcpu
);
537 return p_exit_data
->exit_reason
;
541 * The guest has exited. See if we can fix it or if we need userspace
544 static int kvm_handle_exit(struct kvm_run
*kvm_run
, struct kvm_vcpu
*vcpu
)
546 u32 exit_reason
= kvm_get_exit_reason(vcpu
);
547 vcpu
->arch
.last_exit
= exit_reason
;
549 if (exit_reason
< kvm_vti_max_exit_handlers
550 && kvm_vti_exit_handlers
[exit_reason
])
551 return kvm_vti_exit_handlers
[exit_reason
](vcpu
, kvm_run
);
553 kvm_run
->exit_reason
= KVM_EXIT_UNKNOWN
;
554 kvm_run
->hw
.hardware_exit_reason
= exit_reason
;
559 static inline void vti_set_rr6(unsigned long rr6
)
561 ia64_set_rr(RR6
, rr6
);
565 static int kvm_insert_vmm_mapping(struct kvm_vcpu
*vcpu
)
568 struct kvm
*kvm
= vcpu
->kvm
;
571 /*Insert a pair of tr to map vmm*/
572 pte
= pte_val(mk_pte_phys(__pa(kvm_vmm_base
), PAGE_KERNEL
));
573 r
= ia64_itr_entry(0x3, KVM_VMM_BASE
, pte
, KVM_VMM_SHIFT
);
576 vcpu
->arch
.vmm_tr_slot
= r
;
577 /*Insert a pairt of tr to map data of vm*/
578 pte
= pte_val(mk_pte_phys(__pa(kvm
->arch
.vm_base
), PAGE_KERNEL
));
579 r
= ia64_itr_entry(0x3, KVM_VM_DATA_BASE
,
580 pte
, KVM_VM_DATA_SHIFT
);
583 vcpu
->arch
.vm_tr_slot
= r
;
585 #if defined(CONFIG_IA64_SGI_SN2) || defined(CONFIG_IA64_GENERIC)
586 if (kvm
->arch
.is_sn2
) {
587 r
= kvm_sn2_setup_mappings(vcpu
);
598 static void kvm_purge_vmm_mapping(struct kvm_vcpu
*vcpu
)
600 struct kvm
*kvm
= vcpu
->kvm
;
601 ia64_ptr_entry(0x3, vcpu
->arch
.vmm_tr_slot
);
602 ia64_ptr_entry(0x3, vcpu
->arch
.vm_tr_slot
);
603 #if defined(CONFIG_IA64_SGI_SN2) || defined(CONFIG_IA64_GENERIC)
604 if (kvm
->arch
.is_sn2
)
605 ia64_ptr_entry(0x3, vcpu
->arch
.sn_rtc_tr_slot
);
609 static int kvm_vcpu_pre_transition(struct kvm_vcpu
*vcpu
)
613 int cpu
= smp_processor_id();
615 if (vcpu
->arch
.last_run_cpu
!= cpu
||
616 per_cpu(last_vcpu
, cpu
) != vcpu
) {
617 per_cpu(last_vcpu
, cpu
) = vcpu
;
618 vcpu
->arch
.last_run_cpu
= cpu
;
622 vcpu
->arch
.host_rr6
= ia64_get_rr(RR6
);
623 vti_set_rr6(vcpu
->arch
.vmm_rr
);
625 r
= kvm_insert_vmm_mapping(vcpu
);
626 local_irq_restore(psr
);
630 static void kvm_vcpu_post_transition(struct kvm_vcpu
*vcpu
)
632 kvm_purge_vmm_mapping(vcpu
);
633 vti_set_rr6(vcpu
->arch
.host_rr6
);
636 static int __vcpu_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
638 union context
*host_ctx
, *guest_ctx
;
642 * down_read() may sleep and return with interrupts enabled
644 down_read(&vcpu
->kvm
->slots_lock
);
647 if (signal_pending(current
)) {
649 kvm_run
->exit_reason
= KVM_EXIT_INTR
;
656 /*Get host and guest context with guest address space.*/
657 host_ctx
= kvm_get_host_context(vcpu
);
658 guest_ctx
= kvm_get_guest_context(vcpu
);
660 clear_bit(KVM_REQ_KICK
, &vcpu
->requests
);
662 r
= kvm_vcpu_pre_transition(vcpu
);
666 up_read(&vcpu
->kvm
->slots_lock
);
670 * Transition to the guest
672 kvm_vmm_info
->tramp_entry(host_ctx
, guest_ctx
);
674 kvm_vcpu_post_transition(vcpu
);
676 vcpu
->arch
.launched
= 1;
677 set_bit(KVM_REQ_KICK
, &vcpu
->requests
);
681 * We must have an instruction between local_irq_enable() and
682 * kvm_guest_exit(), so the timer interrupt isn't delayed by
683 * the interrupt shadow. The stat.exits increment will do nicely.
684 * But we need to prevent reordering, hence this barrier():
690 down_read(&vcpu
->kvm
->slots_lock
);
692 r
= kvm_handle_exit(kvm_run
, vcpu
);
700 up_read(&vcpu
->kvm
->slots_lock
);
703 down_read(&vcpu
->kvm
->slots_lock
);
712 kvm_run
->exit_reason
= KVM_EXIT_FAIL_ENTRY
;
716 static void kvm_set_mmio_data(struct kvm_vcpu
*vcpu
)
718 struct kvm_mmio_req
*p
= kvm_get_vcpu_ioreq(vcpu
);
720 if (!vcpu
->mmio_is_write
)
721 memcpy(&p
->data
, vcpu
->mmio_data
, 8);
722 p
->state
= STATE_IORESP_READY
;
725 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
)
732 if (vcpu
->sigset_active
)
733 sigprocmask(SIG_SETMASK
, &vcpu
->sigset
, &sigsaved
);
735 if (unlikely(vcpu
->arch
.mp_state
== KVM_MP_STATE_UNINITIALIZED
)) {
736 kvm_vcpu_block(vcpu
);
737 clear_bit(KVM_REQ_UNHALT
, &vcpu
->requests
);
742 if (vcpu
->mmio_needed
) {
743 memcpy(vcpu
->mmio_data
, kvm_run
->mmio
.data
, 8);
744 kvm_set_mmio_data(vcpu
);
745 vcpu
->mmio_read_completed
= 1;
746 vcpu
->mmio_needed
= 0;
748 r
= __vcpu_run(vcpu
, kvm_run
);
750 if (vcpu
->sigset_active
)
751 sigprocmask(SIG_SETMASK
, &sigsaved
, NULL
);
757 static struct kvm
*kvm_alloc_kvm(void)
763 BUG_ON(sizeof(struct kvm
) > KVM_VM_STRUCT_SIZE
);
765 vm_base
= __get_free_pages(GFP_KERNEL
, get_order(KVM_VM_DATA_SIZE
));
768 return ERR_PTR(-ENOMEM
);
770 memset((void *)vm_base
, 0, KVM_VM_DATA_SIZE
);
771 kvm
= (struct kvm
*)(vm_base
+
772 offsetof(struct kvm_vm_data
, kvm_vm_struct
));
773 kvm
->arch
.vm_base
= vm_base
;
774 printk(KERN_DEBUG
"kvm: vm's data area:0x%lx\n", vm_base
);
779 struct kvm_io_range
{
785 static const struct kvm_io_range io_ranges
[] = {
786 {VGA_IO_START
, VGA_IO_SIZE
, GPFN_FRAME_BUFFER
},
787 {MMIO_START
, MMIO_SIZE
, GPFN_LOW_MMIO
},
788 {LEGACY_IO_START
, LEGACY_IO_SIZE
, GPFN_LEGACY_IO
},
789 {IO_SAPIC_START
, IO_SAPIC_SIZE
, GPFN_IOSAPIC
},
790 {PIB_START
, PIB_SIZE
, GPFN_PIB
},
793 static void kvm_build_io_pmt(struct kvm
*kvm
)
797 /* Mark I/O ranges */
798 for (i
= 0; i
< (sizeof(io_ranges
) / sizeof(struct kvm_io_range
));
800 for (j
= io_ranges
[i
].start
;
801 j
< io_ranges
[i
].start
+ io_ranges
[i
].size
;
803 kvm_set_pmt_entry(kvm
, j
>> PAGE_SHIFT
,
804 io_ranges
[i
].type
, 0);
809 /*Use unused rids to virtualize guest rid.*/
810 #define GUEST_PHYSICAL_RR0 0x1739
811 #define GUEST_PHYSICAL_RR4 0x2739
812 #define VMM_INIT_RR 0x1660
814 static void kvm_init_vm(struct kvm
*kvm
)
818 kvm
->arch
.metaphysical_rr0
= GUEST_PHYSICAL_RR0
;
819 kvm
->arch
.metaphysical_rr4
= GUEST_PHYSICAL_RR4
;
820 kvm
->arch
.vmm_init_rr
= VMM_INIT_RR
;
823 *Fill P2M entries for MMIO/IO ranges
825 kvm_build_io_pmt(kvm
);
827 INIT_LIST_HEAD(&kvm
->arch
.assigned_dev_head
);
829 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
830 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID
, &kvm
->arch
.irq_sources_bitmap
);
833 struct kvm
*kvm_arch_create_vm(void)
835 struct kvm
*kvm
= kvm_alloc_kvm();
838 return ERR_PTR(-ENOMEM
);
840 kvm
->arch
.is_sn2
= ia64_platform_is("sn2");
848 static int kvm_vm_ioctl_get_irqchip(struct kvm
*kvm
,
849 struct kvm_irqchip
*chip
)
854 switch (chip
->chip_id
) {
855 case KVM_IRQCHIP_IOAPIC
:
856 r
= kvm_get_ioapic(kvm
, &chip
->chip
.ioapic
);
865 static int kvm_vm_ioctl_set_irqchip(struct kvm
*kvm
, struct kvm_irqchip
*chip
)
870 switch (chip
->chip_id
) {
871 case KVM_IRQCHIP_IOAPIC
:
872 r
= kvm_set_ioapic(kvm
, &chip
->chip
.ioapic
);
881 #define RESTORE_REGS(_x) vcpu->arch._x = regs->_x
883 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
)
885 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
890 for (i
= 0; i
< 16; i
++) {
891 vpd
->vgr
[i
] = regs
->vpd
.vgr
[i
];
892 vpd
->vbgr
[i
] = regs
->vpd
.vbgr
[i
];
894 for (i
= 0; i
< 128; i
++)
895 vpd
->vcr
[i
] = regs
->vpd
.vcr
[i
];
896 vpd
->vhpi
= regs
->vpd
.vhpi
;
897 vpd
->vnat
= regs
->vpd
.vnat
;
898 vpd
->vbnat
= regs
->vpd
.vbnat
;
899 vpd
->vpsr
= regs
->vpd
.vpsr
;
901 vpd
->vpr
= regs
->vpd
.vpr
;
903 memcpy(&vcpu
->arch
.guest
, ®s
->saved_guest
, sizeof(union context
));
905 RESTORE_REGS(mp_state
);
906 RESTORE_REGS(vmm_rr
);
907 memcpy(vcpu
->arch
.itrs
, regs
->itrs
, sizeof(struct thash_data
) * NITRS
);
908 memcpy(vcpu
->arch
.dtrs
, regs
->dtrs
, sizeof(struct thash_data
) * NDTRS
);
909 RESTORE_REGS(itr_regions
);
910 RESTORE_REGS(dtr_regions
);
911 RESTORE_REGS(tc_regions
);
912 RESTORE_REGS(irq_check
);
913 RESTORE_REGS(itc_check
);
914 RESTORE_REGS(timer_check
);
915 RESTORE_REGS(timer_pending
);
916 RESTORE_REGS(last_itc
);
917 for (i
= 0; i
< 8; i
++) {
918 vcpu
->arch
.vrr
[i
] = regs
->vrr
[i
];
919 vcpu
->arch
.ibr
[i
] = regs
->ibr
[i
];
920 vcpu
->arch
.dbr
[i
] = regs
->dbr
[i
];
922 for (i
= 0; i
< 4; i
++)
923 vcpu
->arch
.insvc
[i
] = regs
->insvc
[i
];
925 RESTORE_REGS(metaphysical_rr0
);
926 RESTORE_REGS(metaphysical_rr4
);
927 RESTORE_REGS(metaphysical_saved_rr0
);
928 RESTORE_REGS(metaphysical_saved_rr4
);
929 RESTORE_REGS(fp_psr
);
930 RESTORE_REGS(saved_gp
);
932 vcpu
->arch
.irq_new_pending
= 1;
933 vcpu
->arch
.itc_offset
= regs
->saved_itc
- kvm_get_itc(vcpu
);
934 set_bit(KVM_REQ_RESUME
, &vcpu
->requests
);
941 long kvm_arch_vm_ioctl(struct file
*filp
,
942 unsigned int ioctl
, unsigned long arg
)
944 struct kvm
*kvm
= filp
->private_data
;
945 void __user
*argp
= (void __user
*)arg
;
949 case KVM_SET_MEMORY_REGION
: {
950 struct kvm_memory_region kvm_mem
;
951 struct kvm_userspace_memory_region kvm_userspace_mem
;
954 if (copy_from_user(&kvm_mem
, argp
, sizeof kvm_mem
))
956 kvm_userspace_mem
.slot
= kvm_mem
.slot
;
957 kvm_userspace_mem
.flags
= kvm_mem
.flags
;
958 kvm_userspace_mem
.guest_phys_addr
=
959 kvm_mem
.guest_phys_addr
;
960 kvm_userspace_mem
.memory_size
= kvm_mem
.memory_size
;
961 r
= kvm_vm_ioctl_set_memory_region(kvm
,
962 &kvm_userspace_mem
, 0);
967 case KVM_CREATE_IRQCHIP
:
969 r
= kvm_ioapic_init(kvm
);
972 r
= kvm_setup_default_irq_routing(kvm
);
974 kfree(kvm
->arch
.vioapic
);
978 case KVM_IRQ_LINE_STATUS
:
980 struct kvm_irq_level irq_event
;
983 if (copy_from_user(&irq_event
, argp
, sizeof irq_event
))
985 if (irqchip_in_kernel(kvm
)) {
987 status
= kvm_set_irq(kvm
, KVM_USERSPACE_IRQ_SOURCE_ID
,
988 irq_event
.irq
, irq_event
.level
);
989 if (ioctl
== KVM_IRQ_LINE_STATUS
) {
990 irq_event
.status
= status
;
991 if (copy_to_user(argp
, &irq_event
,
999 case KVM_GET_IRQCHIP
: {
1000 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1001 struct kvm_irqchip chip
;
1004 if (copy_from_user(&chip
, argp
, sizeof chip
))
1007 if (!irqchip_in_kernel(kvm
))
1009 r
= kvm_vm_ioctl_get_irqchip(kvm
, &chip
);
1013 if (copy_to_user(argp
, &chip
, sizeof chip
))
1018 case KVM_SET_IRQCHIP
: {
1019 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1020 struct kvm_irqchip chip
;
1023 if (copy_from_user(&chip
, argp
, sizeof chip
))
1026 if (!irqchip_in_kernel(kvm
))
1028 r
= kvm_vm_ioctl_set_irqchip(kvm
, &chip
);
1041 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu
*vcpu
,
1042 struct kvm_sregs
*sregs
)
1047 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu
*vcpu
,
1048 struct kvm_sregs
*sregs
)
1053 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu
*vcpu
,
1054 struct kvm_translation
*tr
)
1060 static int kvm_alloc_vmm_area(void)
1062 if (!kvm_vmm_base
&& (kvm_vm_buffer_size
< KVM_VM_BUFFER_SIZE
)) {
1063 kvm_vmm_base
= __get_free_pages(GFP_KERNEL
,
1064 get_order(KVM_VMM_SIZE
));
1068 memset((void *)kvm_vmm_base
, 0, KVM_VMM_SIZE
);
1069 kvm_vm_buffer
= kvm_vmm_base
+ VMM_SIZE
;
1071 printk(KERN_DEBUG
"kvm:VMM's Base Addr:0x%lx, vm_buffer:0x%lx\n",
1072 kvm_vmm_base
, kvm_vm_buffer
);
1078 static void kvm_free_vmm_area(void)
1081 /*Zero this area before free to avoid bits leak!!*/
1082 memset((void *)kvm_vmm_base
, 0, KVM_VMM_SIZE
);
1083 free_pages(kvm_vmm_base
, get_order(KVM_VMM_SIZE
));
1090 static int vti_init_vpd(struct kvm_vcpu
*vcpu
)
1093 union cpuid3_t cpuid3
;
1094 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
1097 return PTR_ERR(vpd
);
1100 for (i
= 0; i
< 5; i
++)
1101 vpd
->vcpuid
[i
] = ia64_get_cpuid(i
);
1103 /* Limit the CPUID number to 5 */
1104 cpuid3
.value
= vpd
->vcpuid
[3];
1105 cpuid3
.number
= 4; /* 5 - 1 */
1106 vpd
->vcpuid
[3] = cpuid3
.value
;
1108 /*Set vac and vdc fields*/
1109 vpd
->vac
.a_from_int_cr
= 1;
1110 vpd
->vac
.a_to_int_cr
= 1;
1111 vpd
->vac
.a_from_psr
= 1;
1112 vpd
->vac
.a_from_cpuid
= 1;
1113 vpd
->vac
.a_cover
= 1;
1116 vpd
->vdc
.d_vmsw
= 1;
1118 /*Set virtual buffer*/
1119 vpd
->virt_env_vaddr
= KVM_VM_BUFFER_BASE
;
1124 static int vti_create_vp(struct kvm_vcpu
*vcpu
)
1127 struct vpd
*vpd
= vcpu
->arch
.vpd
;
1128 unsigned long vmm_ivt
;
1130 vmm_ivt
= kvm_vmm_info
->vmm_ivt
;
1132 printk(KERN_DEBUG
"kvm: vcpu:%p,ivt: 0x%lx\n", vcpu
, vmm_ivt
);
1134 ret
= ia64_pal_vp_create((u64
*)vpd
, (u64
*)vmm_ivt
, 0);
1137 printk(KERN_ERR
"kvm: ia64_pal_vp_create failed!\n");
1143 static void init_ptce_info(struct kvm_vcpu
*vcpu
)
1145 ia64_ptce_info_t ptce
= {0};
1147 ia64_get_ptce(&ptce
);
1148 vcpu
->arch
.ptce_base
= ptce
.base
;
1149 vcpu
->arch
.ptce_count
[0] = ptce
.count
[0];
1150 vcpu
->arch
.ptce_count
[1] = ptce
.count
[1];
1151 vcpu
->arch
.ptce_stride
[0] = ptce
.stride
[0];
1152 vcpu
->arch
.ptce_stride
[1] = ptce
.stride
[1];
1155 static void kvm_migrate_hlt_timer(struct kvm_vcpu
*vcpu
)
1157 struct hrtimer
*p_ht
= &vcpu
->arch
.hlt_timer
;
1159 if (hrtimer_cancel(p_ht
))
1160 hrtimer_start_expires(p_ht
, HRTIMER_MODE_ABS
);
1163 static enum hrtimer_restart
hlt_timer_fn(struct hrtimer
*data
)
1165 struct kvm_vcpu
*vcpu
;
1166 wait_queue_head_t
*q
;
1168 vcpu
= container_of(data
, struct kvm_vcpu
, arch
.hlt_timer
);
1171 if (vcpu
->arch
.mp_state
!= KVM_MP_STATE_HALTED
)
1174 if (waitqueue_active(q
))
1175 wake_up_interruptible(q
);
1178 vcpu
->arch
.timer_fired
= 1;
1179 vcpu
->arch
.timer_check
= 1;
1180 return HRTIMER_NORESTART
;
1183 #define PALE_RESET_ENTRY 0x80000000ffffffb0UL
1185 int kvm_arch_vcpu_init(struct kvm_vcpu
*vcpu
)
1191 struct kvm
*kvm
= vcpu
->kvm
;
1192 struct kvm_pt_regs
*regs
= vcpu_regs(vcpu
);
1194 union context
*p_ctx
= &vcpu
->arch
.guest
;
1195 struct kvm_vcpu
*vmm_vcpu
= to_guest(vcpu
->kvm
, vcpu
);
1197 /*Init vcpu context for first run.*/
1198 if (IS_ERR(vmm_vcpu
))
1199 return PTR_ERR(vmm_vcpu
);
1201 if (kvm_vcpu_is_bsp(vcpu
)) {
1202 vcpu
->arch
.mp_state
= KVM_MP_STATE_RUNNABLE
;
1204 /*Set entry address for first run.*/
1205 regs
->cr_iip
= PALE_RESET_ENTRY
;
1207 /*Initialize itc offset for vcpus*/
1208 itc_offset
= 0UL - kvm_get_itc(vcpu
);
1209 for (i
= 0; i
< KVM_MAX_VCPUS
; i
++) {
1210 v
= (struct kvm_vcpu
*)((char *)vcpu
+
1211 sizeof(struct kvm_vcpu_data
) * i
);
1212 v
->arch
.itc_offset
= itc_offset
;
1213 v
->arch
.last_itc
= 0;
1216 vcpu
->arch
.mp_state
= KVM_MP_STATE_UNINITIALIZED
;
1219 vcpu
->arch
.apic
= kzalloc(sizeof(struct kvm_lapic
), GFP_KERNEL
);
1220 if (!vcpu
->arch
.apic
)
1222 vcpu
->arch
.apic
->vcpu
= vcpu
;
1225 p_ctx
->gr
[12] = (unsigned long)((char *)vmm_vcpu
+ KVM_STK_OFFSET
);
1226 p_ctx
->gr
[13] = (unsigned long)vmm_vcpu
;
1227 p_ctx
->psr
= 0x1008522000UL
;
1228 p_ctx
->ar
[40] = FPSR_DEFAULT
; /*fpsr*/
1229 p_ctx
->caller_unat
= 0;
1231 p_ctx
->ar
[36] = 0x0; /*unat*/
1232 p_ctx
->ar
[19] = 0x0; /*rnat*/
1233 p_ctx
->ar
[18] = (unsigned long)vmm_vcpu
+
1234 ((sizeof(struct kvm_vcpu
)+15) & ~15);
1235 p_ctx
->ar
[64] = 0x0; /*pfs*/
1236 p_ctx
->cr
[0] = 0x7e04UL
;
1237 p_ctx
->cr
[2] = (unsigned long)kvm_vmm_info
->vmm_ivt
;
1238 p_ctx
->cr
[8] = 0x3c;
1240 /*Initilize region register*/
1241 p_ctx
->rr
[0] = 0x30;
1242 p_ctx
->rr
[1] = 0x30;
1243 p_ctx
->rr
[2] = 0x30;
1244 p_ctx
->rr
[3] = 0x30;
1245 p_ctx
->rr
[4] = 0x30;
1246 p_ctx
->rr
[5] = 0x30;
1247 p_ctx
->rr
[7] = 0x30;
1249 /*Initilize branch register 0*/
1250 p_ctx
->br
[0] = *(unsigned long *)kvm_vmm_info
->vmm_entry
;
1252 vcpu
->arch
.vmm_rr
= kvm
->arch
.vmm_init_rr
;
1253 vcpu
->arch
.metaphysical_rr0
= kvm
->arch
.metaphysical_rr0
;
1254 vcpu
->arch
.metaphysical_rr4
= kvm
->arch
.metaphysical_rr4
;
1256 hrtimer_init(&vcpu
->arch
.hlt_timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_ABS
);
1257 vcpu
->arch
.hlt_timer
.function
= hlt_timer_fn
;
1259 vcpu
->arch
.last_run_cpu
= -1;
1260 vcpu
->arch
.vpd
= (struct vpd
*)VPD_BASE(vcpu
->vcpu_id
);
1261 vcpu
->arch
.vsa_base
= kvm_vsa_base
;
1262 vcpu
->arch
.__gp
= kvm_vmm_gp
;
1263 vcpu
->arch
.dirty_log_lock_pa
= __pa(&kvm
->arch
.dirty_log_lock
);
1264 vcpu
->arch
.vhpt
.hash
= (struct thash_data
*)VHPT_BASE(vcpu
->vcpu_id
);
1265 vcpu
->arch
.vtlb
.hash
= (struct thash_data
*)VTLB_BASE(vcpu
->vcpu_id
);
1266 init_ptce_info(vcpu
);
1273 static int vti_vcpu_setup(struct kvm_vcpu
*vcpu
, int id
)
1278 local_irq_save(psr
);
1279 r
= kvm_insert_vmm_mapping(vcpu
);
1280 local_irq_restore(psr
);
1283 r
= kvm_vcpu_init(vcpu
, vcpu
->kvm
, id
);
1287 r
= vti_init_vpd(vcpu
);
1289 printk(KERN_DEBUG
"kvm: vpd init error!!\n");
1293 r
= vti_create_vp(vcpu
);
1297 kvm_purge_vmm_mapping(vcpu
);
1301 kvm_vcpu_uninit(vcpu
);
1306 struct kvm_vcpu
*kvm_arch_vcpu_create(struct kvm
*kvm
,
1309 struct kvm_vcpu
*vcpu
;
1310 unsigned long vm_base
= kvm
->arch
.vm_base
;
1314 BUG_ON(sizeof(struct kvm_vcpu
) > VCPU_STRUCT_SIZE
/2);
1317 if (id
>= KVM_MAX_VCPUS
) {
1318 printk(KERN_ERR
"kvm: Can't configure vcpus > %ld",
1325 printk(KERN_ERR
"kvm: Create vcpu[%d] error!\n", id
);
1328 vcpu
= (struct kvm_vcpu
*)(vm_base
+ offsetof(struct kvm_vm_data
,
1329 vcpu_data
[id
].vcpu_struct
));
1333 r
= vti_vcpu_setup(vcpu
, id
);
1337 printk(KERN_DEBUG
"kvm: vcpu_setup error!!\n");
1346 int kvm_arch_vcpu_setup(struct kvm_vcpu
*vcpu
)
1351 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
)
1356 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
)
1361 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu
*vcpu
,
1362 struct kvm_guest_debug
*dbg
)
1367 static void free_kvm(struct kvm
*kvm
)
1369 unsigned long vm_base
= kvm
->arch
.vm_base
;
1372 memset((void *)vm_base
, 0, KVM_VM_DATA_SIZE
);
1373 free_pages(vm_base
, get_order(KVM_VM_DATA_SIZE
));
1378 static void kvm_release_vm_pages(struct kvm
*kvm
)
1380 struct kvm_memory_slot
*memslot
;
1382 unsigned long base_gfn
;
1384 for (i
= 0; i
< kvm
->nmemslots
; i
++) {
1385 memslot
= &kvm
->memslots
[i
];
1386 base_gfn
= memslot
->base_gfn
;
1388 for (j
= 0; j
< memslot
->npages
; j
++) {
1389 if (memslot
->rmap
[j
])
1390 put_page((struct page
*)memslot
->rmap
[j
]);
1395 void kvm_arch_sync_events(struct kvm
*kvm
)
1399 void kvm_arch_destroy_vm(struct kvm
*kvm
)
1401 kvm_iommu_unmap_guest(kvm
);
1402 #ifdef KVM_CAP_DEVICE_ASSIGNMENT
1403 kvm_free_all_assigned_devices(kvm
);
1405 kfree(kvm
->arch
.vioapic
);
1406 kvm_release_vm_pages(kvm
);
1407 kvm_free_physmem(kvm
);
1411 void kvm_arch_vcpu_put(struct kvm_vcpu
*vcpu
)
1415 void kvm_arch_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
)
1417 if (cpu
!= vcpu
->cpu
) {
1419 if (vcpu
->arch
.ht_active
)
1420 kvm_migrate_hlt_timer(vcpu
);
1424 #define SAVE_REGS(_x) regs->_x = vcpu->arch._x
1426 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
)
1428 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
1433 for (i
= 0; i
< 16; i
++) {
1434 regs
->vpd
.vgr
[i
] = vpd
->vgr
[i
];
1435 regs
->vpd
.vbgr
[i
] = vpd
->vbgr
[i
];
1437 for (i
= 0; i
< 128; i
++)
1438 regs
->vpd
.vcr
[i
] = vpd
->vcr
[i
];
1439 regs
->vpd
.vhpi
= vpd
->vhpi
;
1440 regs
->vpd
.vnat
= vpd
->vnat
;
1441 regs
->vpd
.vbnat
= vpd
->vbnat
;
1442 regs
->vpd
.vpsr
= vpd
->vpsr
;
1443 regs
->vpd
.vpr
= vpd
->vpr
;
1445 memcpy(®s
->saved_guest
, &vcpu
->arch
.guest
, sizeof(union context
));
1447 SAVE_REGS(mp_state
);
1449 memcpy(regs
->itrs
, vcpu
->arch
.itrs
, sizeof(struct thash_data
) * NITRS
);
1450 memcpy(regs
->dtrs
, vcpu
->arch
.dtrs
, sizeof(struct thash_data
) * NDTRS
);
1451 SAVE_REGS(itr_regions
);
1452 SAVE_REGS(dtr_regions
);
1453 SAVE_REGS(tc_regions
);
1454 SAVE_REGS(irq_check
);
1455 SAVE_REGS(itc_check
);
1456 SAVE_REGS(timer_check
);
1457 SAVE_REGS(timer_pending
);
1458 SAVE_REGS(last_itc
);
1459 for (i
= 0; i
< 8; i
++) {
1460 regs
->vrr
[i
] = vcpu
->arch
.vrr
[i
];
1461 regs
->ibr
[i
] = vcpu
->arch
.ibr
[i
];
1462 regs
->dbr
[i
] = vcpu
->arch
.dbr
[i
];
1464 for (i
= 0; i
< 4; i
++)
1465 regs
->insvc
[i
] = vcpu
->arch
.insvc
[i
];
1466 regs
->saved_itc
= vcpu
->arch
.itc_offset
+ kvm_get_itc(vcpu
);
1468 SAVE_REGS(metaphysical_rr0
);
1469 SAVE_REGS(metaphysical_rr4
);
1470 SAVE_REGS(metaphysical_saved_rr0
);
1471 SAVE_REGS(metaphysical_saved_rr4
);
1473 SAVE_REGS(saved_gp
);
1479 int kvm_arch_vcpu_ioctl_get_stack(struct kvm_vcpu
*vcpu
,
1480 struct kvm_ia64_vcpu_stack
*stack
)
1482 memcpy(stack
, vcpu
, sizeof(struct kvm_ia64_vcpu_stack
));
1486 int kvm_arch_vcpu_ioctl_set_stack(struct kvm_vcpu
*vcpu
,
1487 struct kvm_ia64_vcpu_stack
*stack
)
1489 memcpy(vcpu
+ 1, &stack
->stack
[0] + sizeof(struct kvm_vcpu
),
1490 sizeof(struct kvm_ia64_vcpu_stack
) - sizeof(struct kvm_vcpu
));
1492 vcpu
->arch
.exit_data
= ((struct kvm_vcpu
*)stack
)->arch
.exit_data
;
1496 void kvm_arch_vcpu_uninit(struct kvm_vcpu
*vcpu
)
1499 hrtimer_cancel(&vcpu
->arch
.hlt_timer
);
1500 kfree(vcpu
->arch
.apic
);
1504 long kvm_arch_vcpu_ioctl(struct file
*filp
,
1505 unsigned int ioctl
, unsigned long arg
)
1507 struct kvm_vcpu
*vcpu
= filp
->private_data
;
1508 void __user
*argp
= (void __user
*)arg
;
1509 struct kvm_ia64_vcpu_stack
*stack
= NULL
;
1513 case KVM_IA64_VCPU_GET_STACK
: {
1514 struct kvm_ia64_vcpu_stack __user
*user_stack
;
1515 void __user
*first_p
= argp
;
1518 if (copy_from_user(&user_stack
, first_p
, sizeof(void *)))
1521 if (!access_ok(VERIFY_WRITE
, user_stack
,
1522 sizeof(struct kvm_ia64_vcpu_stack
))) {
1523 printk(KERN_INFO
"KVM_IA64_VCPU_GET_STACK: "
1524 "Illegal user destination address for stack\n");
1527 stack
= kzalloc(sizeof(struct kvm_ia64_vcpu_stack
), GFP_KERNEL
);
1533 r
= kvm_arch_vcpu_ioctl_get_stack(vcpu
, stack
);
1537 if (copy_to_user(user_stack
, stack
,
1538 sizeof(struct kvm_ia64_vcpu_stack
)))
1543 case KVM_IA64_VCPU_SET_STACK
: {
1544 struct kvm_ia64_vcpu_stack __user
*user_stack
;
1545 void __user
*first_p
= argp
;
1548 if (copy_from_user(&user_stack
, first_p
, sizeof(void *)))
1551 if (!access_ok(VERIFY_READ
, user_stack
,
1552 sizeof(struct kvm_ia64_vcpu_stack
))) {
1553 printk(KERN_INFO
"KVM_IA64_VCPU_SET_STACK: "
1554 "Illegal user address for stack\n");
1557 stack
= kmalloc(sizeof(struct kvm_ia64_vcpu_stack
), GFP_KERNEL
);
1562 if (copy_from_user(stack
, user_stack
,
1563 sizeof(struct kvm_ia64_vcpu_stack
)))
1566 r
= kvm_arch_vcpu_ioctl_set_stack(vcpu
, stack
);
1579 int kvm_arch_set_memory_region(struct kvm
*kvm
,
1580 struct kvm_userspace_memory_region
*mem
,
1581 struct kvm_memory_slot old
,
1586 int npages
= mem
->memory_size
>> PAGE_SHIFT
;
1587 struct kvm_memory_slot
*memslot
= &kvm
->memslots
[mem
->slot
];
1588 unsigned long base_gfn
= memslot
->base_gfn
;
1590 if (base_gfn
+ npages
> (KVM_MAX_MEM_SIZE
>> PAGE_SHIFT
))
1593 for (i
= 0; i
< npages
; i
++) {
1594 pfn
= gfn_to_pfn(kvm
, base_gfn
+ i
);
1595 if (!kvm_is_mmio_pfn(pfn
)) {
1596 kvm_set_pmt_entry(kvm
, base_gfn
+ i
,
1598 _PAGE_AR_RWX
| _PAGE_MA_WB
);
1599 memslot
->rmap
[i
] = (unsigned long)pfn_to_page(pfn
);
1601 kvm_set_pmt_entry(kvm
, base_gfn
+ i
,
1602 GPFN_PHYS_MMIO
| (pfn
<< PAGE_SHIFT
),
1604 memslot
->rmap
[i
] = 0;
1611 void kvm_arch_flush_shadow(struct kvm
*kvm
)
1613 kvm_flush_remote_tlbs(kvm
);
1616 long kvm_arch_dev_ioctl(struct file
*filp
,
1617 unsigned int ioctl
, unsigned long arg
)
1622 void kvm_arch_vcpu_destroy(struct kvm_vcpu
*vcpu
)
1624 kvm_vcpu_uninit(vcpu
);
1627 static int vti_cpu_has_kvm_support(void)
1629 long avail
= 1, status
= 1, control
= 1;
1632 ret
= ia64_pal_proc_get_features(&avail
, &status
, &control
, 0);
1636 if (!(avail
& PAL_PROC_VM_BIT
))
1639 printk(KERN_DEBUG
"kvm: Hardware Supports VT\n");
1641 ret
= ia64_pal_vp_env_info(&kvm_vm_buffer_size
, &vp_env_info
);
1644 printk(KERN_DEBUG
"kvm: VM Buffer Size:0x%lx\n", kvm_vm_buffer_size
);
1646 if (!(vp_env_info
& VP_OPCODE
)) {
1647 printk(KERN_WARNING
"kvm: No opcode ability on hardware, "
1648 "vm_env_info:0x%lx\n", vp_env_info
);
1658 * On SN2, the ITC isn't stable, so copy in fast path code to use the
1659 * SN2 RTC, replacing the ITC based default verion.
1661 static void kvm_patch_vmm(struct kvm_vmm_info
*vmm_info
,
1662 struct module
*module
)
1664 unsigned long new_ar
, new_ar_sn2
;
1665 unsigned long module_base
;
1667 if (!ia64_platform_is("sn2"))
1670 module_base
= (unsigned long)module
->module_core
;
1672 new_ar
= kvm_vmm_base
+ vmm_info
->patch_mov_ar
- module_base
;
1673 new_ar_sn2
= kvm_vmm_base
+ vmm_info
->patch_mov_ar_sn2
- module_base
;
1675 printk(KERN_INFO
"kvm: Patching ITC emulation to use SGI SN2 RTC "
1679 * Copy the SN2 version of mov_ar into place. They are both
1680 * the same size, so 6 bundles is sufficient (6 * 0x10).
1682 memcpy((void *)new_ar
, (void *)new_ar_sn2
, 0x60);
1685 static int kvm_relocate_vmm(struct kvm_vmm_info
*vmm_info
,
1686 struct module
*module
)
1688 unsigned long module_base
;
1689 unsigned long vmm_size
;
1691 unsigned long vmm_offset
, func_offset
, fdesc_offset
;
1692 struct fdesc
*p_fdesc
;
1696 if (!kvm_vmm_base
) {
1697 printk("kvm: kvm area hasn't been initilized yet!!\n");
1701 /*Calculate new position of relocated vmm module.*/
1702 module_base
= (unsigned long)module
->module_core
;
1703 vmm_size
= module
->core_size
;
1704 if (unlikely(vmm_size
> KVM_VMM_SIZE
))
1707 memcpy((void *)kvm_vmm_base
, (void *)module_base
, vmm_size
);
1708 kvm_patch_vmm(vmm_info
, module
);
1709 kvm_flush_icache(kvm_vmm_base
, vmm_size
);
1711 /*Recalculate kvm_vmm_info based on new VMM*/
1712 vmm_offset
= vmm_info
->vmm_ivt
- module_base
;
1713 kvm_vmm_info
->vmm_ivt
= KVM_VMM_BASE
+ vmm_offset
;
1714 printk(KERN_DEBUG
"kvm: Relocated VMM's IVT Base Addr:%lx\n",
1715 kvm_vmm_info
->vmm_ivt
);
1717 fdesc_offset
= (unsigned long)vmm_info
->vmm_entry
- module_base
;
1718 kvm_vmm_info
->vmm_entry
= (kvm_vmm_entry
*)(KVM_VMM_BASE
+
1720 func_offset
= *(unsigned long *)vmm_info
->vmm_entry
- module_base
;
1721 p_fdesc
= (struct fdesc
*)(kvm_vmm_base
+ fdesc_offset
);
1722 p_fdesc
->ip
= KVM_VMM_BASE
+ func_offset
;
1723 p_fdesc
->gp
= KVM_VMM_BASE
+(p_fdesc
->gp
- module_base
);
1725 printk(KERN_DEBUG
"kvm: Relocated VMM's Init Entry Addr:%lx\n",
1726 KVM_VMM_BASE
+func_offset
);
1728 fdesc_offset
= (unsigned long)vmm_info
->tramp_entry
- module_base
;
1729 kvm_vmm_info
->tramp_entry
= (kvm_tramp_entry
*)(KVM_VMM_BASE
+
1731 func_offset
= *(unsigned long *)vmm_info
->tramp_entry
- module_base
;
1732 p_fdesc
= (struct fdesc
*)(kvm_vmm_base
+ fdesc_offset
);
1733 p_fdesc
->ip
= KVM_VMM_BASE
+ func_offset
;
1734 p_fdesc
->gp
= KVM_VMM_BASE
+ (p_fdesc
->gp
- module_base
);
1736 kvm_vmm_gp
= p_fdesc
->gp
;
1738 printk(KERN_DEBUG
"kvm: Relocated VMM's Entry IP:%p\n",
1739 kvm_vmm_info
->vmm_entry
);
1740 printk(KERN_DEBUG
"kvm: Relocated VMM's Trampoline Entry IP:0x%lx\n",
1741 KVM_VMM_BASE
+ func_offset
);
1746 int kvm_arch_init(void *opaque
)
1749 struct kvm_vmm_info
*vmm_info
= (struct kvm_vmm_info
*)opaque
;
1751 if (!vti_cpu_has_kvm_support()) {
1752 printk(KERN_ERR
"kvm: No Hardware Virtualization Support!\n");
1758 printk(KERN_ERR
"kvm: Already loaded VMM module!\n");
1764 kvm_vmm_info
= kzalloc(sizeof(struct kvm_vmm_info
), GFP_KERNEL
);
1768 if (kvm_alloc_vmm_area())
1771 r
= kvm_relocate_vmm(vmm_info
, vmm_info
->module
);
1778 kvm_free_vmm_area();
1780 kfree(kvm_vmm_info
);
1785 void kvm_arch_exit(void)
1787 kvm_free_vmm_area();
1788 kfree(kvm_vmm_info
);
1789 kvm_vmm_info
= NULL
;
1792 static int kvm_ia64_sync_dirty_log(struct kvm
*kvm
,
1793 struct kvm_dirty_log
*log
)
1795 struct kvm_memory_slot
*memslot
;
1798 unsigned long *dirty_bitmap
= (unsigned long *)(kvm
->arch
.vm_base
+
1799 offsetof(struct kvm_vm_data
, kvm_mem_dirty_log
));
1802 if (log
->slot
>= KVM_MEMORY_SLOTS
)
1805 memslot
= &kvm
->memslots
[log
->slot
];
1807 if (!memslot
->dirty_bitmap
)
1810 n
= ALIGN(memslot
->npages
, BITS_PER_LONG
) / 8;
1811 base
= memslot
->base_gfn
/ BITS_PER_LONG
;
1813 for (i
= 0; i
< n
/sizeof(long); ++i
) {
1814 memslot
->dirty_bitmap
[i
] = dirty_bitmap
[base
+ i
];
1815 dirty_bitmap
[base
+ i
] = 0;
1822 int kvm_vm_ioctl_get_dirty_log(struct kvm
*kvm
,
1823 struct kvm_dirty_log
*log
)
1827 struct kvm_memory_slot
*memslot
;
1830 spin_lock(&kvm
->arch
.dirty_log_lock
);
1832 r
= kvm_ia64_sync_dirty_log(kvm
, log
);
1836 r
= kvm_get_dirty_log(kvm
, log
, &is_dirty
);
1840 /* If nothing is dirty, don't bother messing with page tables. */
1842 kvm_flush_remote_tlbs(kvm
);
1843 memslot
= &kvm
->memslots
[log
->slot
];
1844 n
= ALIGN(memslot
->npages
, BITS_PER_LONG
) / 8;
1845 memset(memslot
->dirty_bitmap
, 0, n
);
1849 spin_unlock(&kvm
->arch
.dirty_log_lock
);
1853 int kvm_arch_hardware_setup(void)
1858 void kvm_arch_hardware_unsetup(void)
1862 void kvm_vcpu_kick(struct kvm_vcpu
*vcpu
)
1865 int cpu
= vcpu
->cpu
;
1867 if (waitqueue_active(&vcpu
->wq
))
1868 wake_up_interruptible(&vcpu
->wq
);
1871 if (cpu
!= me
&& (unsigned) cpu
< nr_cpu_ids
&& cpu_online(cpu
))
1872 if (!test_and_set_bit(KVM_REQ_KICK
, &vcpu
->requests
))
1873 smp_send_reschedule(cpu
);
1877 int kvm_apic_set_irq(struct kvm_vcpu
*vcpu
, struct kvm_lapic_irq
*irq
)
1879 return __apic_accept_irq(vcpu
, irq
->vector
);
1882 int kvm_apic_match_physical_addr(struct kvm_lapic
*apic
, u16 dest
)
1884 return apic
->vcpu
->vcpu_id
== dest
;
1887 int kvm_apic_match_logical_addr(struct kvm_lapic
*apic
, u8 mda
)
1892 int kvm_apic_compare_prio(struct kvm_vcpu
*vcpu1
, struct kvm_vcpu
*vcpu2
)
1894 return vcpu1
->arch
.xtp
- vcpu2
->arch
.xtp
;
1897 int kvm_apic_match_dest(struct kvm_vcpu
*vcpu
, struct kvm_lapic
*source
,
1898 int short_hand
, int dest
, int dest_mode
)
1900 struct kvm_lapic
*target
= vcpu
->arch
.apic
;
1901 return (dest_mode
== 0) ?
1902 kvm_apic_match_physical_addr(target
, dest
) :
1903 kvm_apic_match_logical_addr(target
, dest
);
1906 static int find_highest_bits(int *dat
)
1911 /* loop for all 256 bits */
1912 for (i
= 7; i
>= 0 ; i
--) {
1916 return i
* 32 + bitnum
- 1;
1923 int kvm_highest_pending_irq(struct kvm_vcpu
*vcpu
)
1925 struct vpd
*vpd
= to_host(vcpu
->kvm
, vcpu
->arch
.vpd
);
1927 if (vpd
->irr
[0] & (1UL << NMI_VECTOR
))
1929 if (vpd
->irr
[0] & (1UL << ExtINT_VECTOR
))
1930 return ExtINT_VECTOR
;
1932 return find_highest_bits((int *)&vpd
->irr
[0]);
1935 int kvm_cpu_has_pending_timer(struct kvm_vcpu
*vcpu
)
1937 return vcpu
->arch
.timer_fired
;
1940 gfn_t
unalias_gfn(struct kvm
*kvm
, gfn_t gfn
)
1945 int kvm_arch_vcpu_runnable(struct kvm_vcpu
*vcpu
)
1947 return (vcpu
->arch
.mp_state
== KVM_MP_STATE_RUNNABLE
) ||
1948 (kvm_highest_pending_irq(vcpu
) != -1);
1951 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu
*vcpu
,
1952 struct kvm_mp_state
*mp_state
)
1955 mp_state
->mp_state
= vcpu
->arch
.mp_state
;
1960 static int vcpu_reset(struct kvm_vcpu
*vcpu
)
1964 local_irq_save(psr
);
1965 r
= kvm_insert_vmm_mapping(vcpu
);
1966 local_irq_restore(psr
);
1970 vcpu
->arch
.launched
= 0;
1971 kvm_arch_vcpu_uninit(vcpu
);
1972 r
= kvm_arch_vcpu_init(vcpu
);
1976 kvm_purge_vmm_mapping(vcpu
);
1982 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu
*vcpu
,
1983 struct kvm_mp_state
*mp_state
)
1988 vcpu
->arch
.mp_state
= mp_state
->mp_state
;
1989 if (vcpu
->arch
.mp_state
== KVM_MP_STATE_UNINITIALIZED
)
1990 r
= vcpu_reset(vcpu
);