Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162225
b: refs/heads/master
c: 6658be6
h: refs/heads/master
i:
  162223: fbba53c
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Sep 15, 2009
1 parent f41fda1 commit f427279
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 178 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0d08737cadc38515695540522cd8ceaa975506b4
refs/heads/master: 6658be6ad728c347df33b8593b75aafa3c52eeba
5 changes: 1 addition & 4 deletions trunk/drivers/staging/hv/Hv.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
#define __HV_H__

#include "include/HvStatus.h"
#include "include/HvVpApi.h"
#include "include/HvSynicApi.h"
#include "include/HvHcApi.h"
#include "include/HvPtApi.h"
#include "hv_api.h"

enum {
VMBUS_MESSAGE_CONNECTION_ID = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,27 @@
* Hank Janssen <hjanssen@microsoft.com>
*
*/
#ifndef __HV_API_H
#define __HV_API_H

#ifndef __HVSYNICAPI_H
#define __HVSYNICAPI_H
/*
* The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent
* is set by CPUID(HvCpuIdFunctionVersionAndFeatures).
*/
enum hv_cpuid_function {
HvCpuIdFunctionVersionAndFeatures = 0x00000001,
HvCpuIdFunctionHvVendorAndMaxFunction = 0x40000000,
HvCpuIdFunctionHvInterface = 0x40000001,

/*
* The remaining functions depend on the value of
* HvCpuIdFunctionInterface
*/
HvCpuIdFunctionMsHvVersion = 0x40000002,
HvCpuIdFunctionMsHvFeatures = 0x40000003,
HvCpuIdFunctionMsHvEnlightenmentInformation = 0x40000004,
HvCpuIdFunctionMsHvImplementationLimits = 0x40000005,
};

/* Define the virtual APIC registers */
#define HV_X64_MSR_EOI (0x40000070)
Expand Down Expand Up @@ -327,4 +345,76 @@ struct hv_monitor_page {
u8 RsvdZ4[1984];
};

/* Declare the various hypercall operations. */
enum hv_call_code {
HvCallPostMessage = 0x005c,
HvCallSignalEvent = 0x005d,
};

/* Definition of the HvPostMessage hypercall input structure. */
struct hv_input_post_message {
union hv_connection_id ConnectionId;
u32 Reserved;
enum hv_message_type MessageType;
u32 PayloadSize;
u64 Payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT];
};

/* Definition of the HvSignalEvent hypercall input structure. */
struct hv_input_signal_event {
union hv_connection_id ConnectionId;
u16 FlagNumber;
u16 RsvdZ;
};

/*
* Versioning definitions used for guests reporting themselves to the
* hypervisor, and visa versa.
*/

/* Version info reported by guest OS's */
enum hv_guest_os_vendor {
HvGuestOsVendorMicrosoft = 0x0001
};

enum hv_guest_os_microsoft_ids {
HvGuestOsMicrosoftUndefined = 0x00,
HvGuestOsMicrosoftMSDOS = 0x01,
HvGuestOsMicrosoftWindows3x = 0x02,
HvGuestOsMicrosoftWindows9x = 0x03,
HvGuestOsMicrosoftWindowsNT = 0x04,
HvGuestOsMicrosoftWindowsCE = 0x05
};

/*
* Declare the MSR used to identify the guest OS.
*/
#define HV_X64_MSR_GUEST_OS_ID 0x40000000

union hv_x64_msr_guest_os_id_contents {
u64 AsUINT64;
struct {
u64 BuildNumber:16;
u64 ServiceVersion:8; /* Service Pack, etc. */
u64 MinorVersion:8;
u64 MajorVersion:8;
u64 OsId:8; /* enum hv_guest_os_microsoft_ids (if Vendor=MS) */
u64 VendorId:16; /* enum hv_guest_os_vendor */
};
};

/*
* Declare the MSR used to setup pages used to communicate with the hypervisor.
*/
#define HV_X64_MSR_HYPERCALL 0x40000001

union hv_x64_msr_hypercall_contents {
u64 AsUINT64;
struct {
u64 Enable:1;
u64 Reserved:11;
u64 GuestPhysicalAddress:52;
};
};

#endif
49 changes: 0 additions & 49 deletions trunk/drivers/staging/hv/include/HvHcApi.h

This file was deleted.

77 changes: 0 additions & 77 deletions trunk/drivers/staging/hv/include/HvPtApi.h

This file was deleted.

45 changes: 0 additions & 45 deletions trunk/drivers/staging/hv/include/HvVpApi.h

This file was deleted.

0 comments on commit f427279

Please sign in to comment.