]> git.proxmox.com Git - qemu.git/blame - target-i386/hyperv.h
usb-host: add usb_host_full_speed_compat
[qemu.git] / target-i386 / hyperv.h
CommitLineData
28f52cc0
VR
1/*
2 * QEMU Hyper-V support
3 *
4 * Copyright Red Hat, Inc. 2011
5 *
6 * Author: Vadim Rozenfeld <vrozenfe@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
13#ifndef QEMU_HW_HYPERV_H
14#define QEMU_HW_HYPERV_H 1
15
16#include "qemu-common.h"
61eb1f38 17#ifdef CONFIG_KVM
28f52cc0 18#include <asm/hyperv.h>
61eb1f38 19#endif
28f52cc0
VR
20
21#ifndef HYPERV_SPINLOCK_NEVER_RETRY
22#define HYPERV_SPINLOCK_NEVER_RETRY 0xFFFFFFFF
23#endif
24
25#ifndef KVM_CPUID_SIGNATURE_NEXT
26#define KVM_CPUID_SIGNATURE_NEXT 0x40000100
27#endif
28
61eb1f38 29#if !defined(CONFIG_USER_ONLY) && defined(CONFIG_KVM)
28f52cc0
VR
30void hyperv_enable_vapic_recommended(bool val);
31void hyperv_enable_relaxed_timing(bool val);
32void hyperv_set_spinlock_retries(int val);
33#else
34static inline void hyperv_enable_vapic_recommended(bool val) { }
35static inline void hyperv_enable_relaxed_timing(bool val) { }
36static inline void hyperv_set_spinlock_retries(int val) { }
37#endif
38
39bool hyperv_enabled(void);
40bool hyperv_hypercall_available(void);
41bool hyperv_vapic_recommended(void);
42bool hyperv_relaxed_timing_enabled(void);
43int hyperv_get_spinlock_retries(void);
44
45#endif /* QEMU_HW_HYPERV_H */