mirror of
https://github.com/qemu/qemu.git
synced 2024-12-13 14:33:31 +08:00
s390/kvm: Support for get/set of extended TOD-Clock for guest
Provides an interface for getting and setting the guest's extended TOD-Clock via a single ioctl to kvm. If the ioctl fails because it is not support by kvm, then we fall back to the old style of retrieving the clock via two ioctls. Signed-off-by: Collin L. Walling <walling@linux.vnet.ibm.com> Reviewed-by: Eric Farman <farman@linux.vnet.ibm.com> Reviewed-by: Claudio Imbrenda <imbrenda@linux.vnet.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> [split failure change from epoch index change] Message-Id: <20171004105751.24655-2-borntraeger@de.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com> [some cosmetic fixes]
This commit is contained in:
parent
489c909f09
commit
7edd4a4967
@ -347,22 +347,34 @@ unsigned int s390_cpu_set_state(uint8_t cpu_state, S390CPU *cpu)
|
||||
|
||||
int s390_get_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
int r = 0;
|
||||
|
||||
if (kvm_enabled()) {
|
||||
r = kvm_s390_get_clock_ext(tod_high, tod_low);
|
||||
if (r == -ENXIO) {
|
||||
return kvm_s390_get_clock(tod_high, tod_low);
|
||||
}
|
||||
} else {
|
||||
/* Fixme TCG */
|
||||
*tod_high = 0;
|
||||
*tod_low = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
int s390_set_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
int r = 0;
|
||||
|
||||
if (kvm_enabled()) {
|
||||
r = kvm_s390_set_clock_ext(tod_high, tod_low);
|
||||
if (r == -ENXIO) {
|
||||
return kvm_s390_set_clock(tod_high, tod_low);
|
||||
}
|
||||
}
|
||||
/* Fixme TCG */
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
int s390_set_memory_limit(uint64_t new_limit, uint64_t *hw_limit)
|
||||
|
@ -68,11 +68,21 @@ int kvm_s390_get_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int kvm_s390_get_clock_ext(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int kvm_s390_set_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int kvm_s390_set_clock_ext(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
void kvm_s390_enable_css_support(S390CPU *cpu)
|
||||
{
|
||||
}
|
||||
|
@ -646,10 +646,26 @@ int kvm_s390_get_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
return kvm_vm_ioctl(kvm_state, KVM_GET_DEVICE_ATTR, &attr);
|
||||
}
|
||||
|
||||
int kvm_s390_get_clock_ext(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
int r;
|
||||
struct kvm_s390_vm_tod_clock gtod;
|
||||
struct kvm_device_attr attr = {
|
||||
.group = KVM_S390_VM_TOD,
|
||||
.attr = KVM_S390_VM_TOD_EXT,
|
||||
.addr = (uint64_t)>od,
|
||||
};
|
||||
|
||||
r = kvm_vm_ioctl(kvm_state, KVM_GET_DEVICE_ATTR, &attr);
|
||||
*tod_high = gtod.epoch_idx;
|
||||
*tod_low = gtod.tod;
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
int kvm_s390_set_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
int r;
|
||||
|
||||
struct kvm_device_attr attr = {
|
||||
.group = KVM_S390_VM_TOD,
|
||||
.attr = KVM_S390_VM_TOD_LOW,
|
||||
@ -666,6 +682,21 @@ int kvm_s390_set_clock(uint8_t *tod_high, uint64_t *tod_low)
|
||||
return kvm_vm_ioctl(kvm_state, KVM_SET_DEVICE_ATTR, &attr);
|
||||
}
|
||||
|
||||
int kvm_s390_set_clock_ext(uint8_t *tod_high, uint64_t *tod_low)
|
||||
{
|
||||
struct kvm_s390_vm_tod_clock gtod = {
|
||||
.epoch_idx = *tod_high,
|
||||
.tod = *tod_low,
|
||||
};
|
||||
struct kvm_device_attr attr = {
|
||||
.group = KVM_S390_VM_TOD,
|
||||
.attr = KVM_S390_VM_TOD_EXT,
|
||||
.addr = (uint64_t)>od,
|
||||
};
|
||||
|
||||
return kvm_vm_ioctl(kvm_state, KVM_SET_DEVICE_ATTR, &attr);
|
||||
}
|
||||
|
||||
/**
|
||||
* kvm_s390_mem_op:
|
||||
* @addr: the logical start address in guest memory
|
||||
|
@ -29,7 +29,9 @@ int kvm_s390_vcpu_interrupt_post_load(S390CPU *cpu);
|
||||
int kvm_s390_get_ri(void);
|
||||
int kvm_s390_get_gs(void);
|
||||
int kvm_s390_get_clock(uint8_t *tod_high, uint64_t *tod_clock);
|
||||
int kvm_s390_get_clock_ext(uint8_t *tod_high, uint64_t *tod_clock);
|
||||
int kvm_s390_set_clock(uint8_t *tod_high, uint64_t *tod_clock);
|
||||
int kvm_s390_set_clock_ext(uint8_t *tod_high, uint64_t *tod_clock);
|
||||
void kvm_s390_enable_css_support(S390CPU *cpu);
|
||||
int kvm_s390_assign_subch_ioeventfd(EventNotifier *notifier, uint32_t sch,
|
||||
int vq, bool assign);
|
||||
|
Loading…
Reference in New Issue
Block a user