/drivers/staging/hv/hv.h

http://github.com/CyanogenMod/cm-kernel · C Header · 140 lines · 65 code · 38 blank · 37 comment · 0 complexity · 26c8bceeba5c2bef11a9dc8e1bca75d0 MD5 · raw file

  1. /*
  2. *
  3. * Copyright (c) 2009, Microsoft Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  16. * Place - Suite 330, Boston, MA 02111-1307 USA.
  17. *
  18. * Authors:
  19. * Haiyang Zhang <haiyangz@microsoft.com>
  20. * Hank Janssen <hjanssen@microsoft.com>
  21. *
  22. */
  23. #ifndef __HV_H__
  24. #define __HV_H__
  25. #include "hv_api.h"
  26. enum {
  27. VMBUS_MESSAGE_CONNECTION_ID = 1,
  28. VMBUS_MESSAGE_PORT_ID = 1,
  29. VMBUS_EVENT_CONNECTION_ID = 2,
  30. VMBUS_EVENT_PORT_ID = 2,
  31. VMBUS_MONITOR_CONNECTION_ID = 3,
  32. VMBUS_MONITOR_PORT_ID = 3,
  33. VMBUS_MESSAGE_SINT = 2,
  34. };
  35. /* #defines */
  36. #define HV_PRESENT_BIT 0x80000000
  37. #define HV_LINUX_GUEST_ID_LO 0x00000000
  38. #define HV_LINUX_GUEST_ID_HI 0xB16B00B5
  39. #define HV_LINUX_GUEST_ID (((u64)HV_LINUX_GUEST_ID_HI << 32) | \
  40. HV_LINUX_GUEST_ID_LO)
  41. #define HV_CPU_POWER_MANAGEMENT (1 << 0)
  42. #define HV_RECOMMENDATIONS_MAX 4
  43. #define HV_X64_MAX 5
  44. #define HV_CAPS_MAX 8
  45. #define HV_HYPERCALL_PARAM_ALIGN sizeof(u64)
  46. /* Service definitions */
  47. #define HV_SERVICE_PARENT_PORT (0)
  48. #define HV_SERVICE_PARENT_CONNECTION (0)
  49. #define HV_SERVICE_CONNECT_RESPONSE_SUCCESS (0)
  50. #define HV_SERVICE_CONNECT_RESPONSE_INVALID_PARAMETER (1)
  51. #define HV_SERVICE_CONNECT_RESPONSE_UNKNOWN_SERVICE (2)
  52. #define HV_SERVICE_CONNECT_RESPONSE_CONNECTION_REJECTED (3)
  53. #define HV_SERVICE_CONNECT_REQUEST_MESSAGE_ID (1)
  54. #define HV_SERVICE_CONNECT_RESPONSE_MESSAGE_ID (2)
  55. #define HV_SERVICE_DISCONNECT_REQUEST_MESSAGE_ID (3)
  56. #define HV_SERVICE_DISCONNECT_RESPONSE_MESSAGE_ID (4)
  57. #define HV_SERVICE_MAX_MESSAGE_ID (4)
  58. #define HV_SERVICE_PROTOCOL_VERSION (0x0010)
  59. #define HV_CONNECT_PAYLOAD_BYTE_COUNT 64
  60. /* #define VMBUS_REVISION_NUMBER 6 */
  61. /* Our local vmbus's port and connection id. Anything >0 is fine */
  62. /* #define VMBUS_PORT_ID 11 */
  63. /* 628180B8-308D-4c5e-B7DB-1BEB62E62EF4 */
  64. static const struct hv_guid VMBUS_SERVICE_ID = {
  65. .data = {
  66. 0xb8, 0x80, 0x81, 0x62, 0x8d, 0x30, 0x5e, 0x4c,
  67. 0xb7, 0xdb, 0x1b, 0xeb, 0x62, 0xe6, 0x2e, 0xf4
  68. },
  69. };
  70. #define MAX_NUM_CPUS 32
  71. struct hv_input_signal_event_buffer {
  72. u64 Align8;
  73. struct hv_input_signal_event Event;
  74. };
  75. struct hv_context {
  76. /* We only support running on top of Hyper-V
  77. * So at this point this really can only contain the Hyper-V ID
  78. */
  79. u64 GuestId;
  80. void *HypercallPage;
  81. bool SynICInitialized;
  82. /*
  83. * This is used as an input param to HvCallSignalEvent hypercall. The
  84. * input param is immutable in our usage and must be dynamic mem (vs
  85. * stack or global). */
  86. struct hv_input_signal_event_buffer *SignalEventBuffer;
  87. /* 8-bytes aligned of the buffer above */
  88. struct hv_input_signal_event *SignalEventParam;
  89. void *synICMessagePage[MAX_NUM_CPUS];
  90. void *synICEventPage[MAX_NUM_CPUS];
  91. };
  92. extern struct hv_context gHvContext;
  93. /* Hv Interface */
  94. extern int HvInit(void);
  95. extern void HvCleanup(void);
  96. extern u16 HvPostMessage(union hv_connection_id connectionId,
  97. enum hv_message_type messageType,
  98. void *payload, size_t payloadSize);
  99. extern u16 HvSignalEvent(void);
  100. extern void HvSynicInit(void *irqarg);
  101. extern void HvSynicCleanup(void *arg);
  102. #endif /* __HV_H__ */