Path: blob/master/tools/arch/x86/include/asm/pvclock-abi.h
29274 views
/* SPDX-License-Identifier: GPL-2.0 */1#ifndef _ASM_X86_PVCLOCK_ABI_H2#define _ASM_X86_PVCLOCK_ABI_H3#ifndef __ASSEMBLER__45/*6* These structs MUST NOT be changed.7* They are the ABI between hypervisor and guest OS.8* Both Xen and KVM are using this.9*10* pvclock_vcpu_time_info holds the system time and the tsc timestamp11* of the last update. So the guest can use the tsc delta to get a12* more precise system time. There is one per virtual cpu.13*14* pvclock_wall_clock references the point in time when the system15* time was zero (usually boot time), thus the guest calculates the16* current wall clock by adding the system time.17*18* Protocol for the "version" fields is: hypervisor raises it (making19* it uneven) before it starts updating the fields and raises it again20* (making it even) when it is done. Thus the guest can make sure the21* time values it got are consistent by checking the version before22* and after reading them.23*/2425struct pvclock_vcpu_time_info {26u32 version;27u32 pad0;28u64 tsc_timestamp;29u64 system_time;30u32 tsc_to_system_mul;31s8 tsc_shift;32u8 flags;33u8 pad[2];34} __attribute__((__packed__)); /* 32 bytes */3536struct pvclock_wall_clock {37u32 version;38u32 sec;39u32 nsec;40} __attribute__((__packed__));4142#define PVCLOCK_TSC_STABLE_BIT (1 << 0)43#define PVCLOCK_GUEST_STOPPED (1 << 1)44/* PVCLOCK_COUNTS_FROM_ZERO broke ABI and can't be used anymore. */45#define PVCLOCK_COUNTS_FROM_ZERO (1 << 2)46#endif /* __ASSEMBLER__ */47#endif /* _ASM_X86_PVCLOCK_ABI_H */484950