Staging: hv: remove INTERNAL typedef
[linux-2.6/btrfs-unstable.git] / drivers / staging / hv / VmbusPrivate.h
blob9ce0c5b2b90d559b73f3fd1f6b2a8df9322b796d
1 /*
3 * Copyright (c) 2009, Microsoft Corporation.
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.
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.
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.
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
25 #ifndef _VMBUS_PRIVATE_H_
26 #define _VMBUS_PRIVATE_H_
28 #include "Hv.h"
29 #include "include/VmbusApi.h"
30 #include "Channel.h"
31 #include "ChannelMgmt.h"
32 #include "ChannelInterface.h"
33 //#include "ChannelMessages.h"
34 #include "RingBuffer.h"
35 //#include "Packet.h"
36 #include "include/List.h"
39 // Defines
42 // Maximum channels is determined by the size of the interrupt page which is PAGE_SIZE. 1/2 of PAGE_SIZE is for
43 // send endpoint interrupt and the other is receive endpoint interrupt
44 #define MAX_NUM_CHANNELS (PAGE_SIZE >> 1) << 3 // 16348 channels
46 // The value here must be in multiple of 32
47 // TODO: Need to make this configurable
48 #define MAX_NUM_CHANNELS_SUPPORTED 256
51 // Data types
54 typedef enum {
55 Disconnected,
56 Connecting,
57 Connected,
58 Disconnecting
59 } VMBUS_CONNECT_STATE;
61 #define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
63 typedef struct _VMBUS_CONNECTION {
65 VMBUS_CONNECT_STATE ConnectState;
67 UINT32 NextGpadlHandle;
69 // Represents channel interrupts. Each bit position
70 // represents a channel.
71 // When a channel sends an interrupt via VMBUS, it
72 // finds its bit in the sendInterruptPage, set it and
73 // calls Hv to generate a port event. The other end
74 // receives the port event and parse the recvInterruptPage
75 // to see which bit is set
76 VOID* InterruptPage;
77 VOID* SendInterruptPage;
78 VOID* RecvInterruptPage;
80 // 2 pages - 1st page for parent->child notification and 2nd is child->parent notification
81 VOID* MonitorPages;
82 LIST_ENTRY ChannelMsgList;
83 HANDLE ChannelMsgLock;
85 // List of channels
86 LIST_ENTRY ChannelList;
87 HANDLE ChannelLock;
89 HANDLE WorkQueue;
90 } VMBUS_CONNECTION;
93 typedef struct _VMBUS_MSGINFO {
94 // Bookkeeping stuff
95 LIST_ENTRY MsgListEntry;
97 // Synchronize the request/response if needed
98 HANDLE WaitEvent;
100 // The message itself
101 unsigned char Msg[0];
102 } VMBUS_MSGINFO;
106 // Externs
108 extern VMBUS_CONNECTION gVmbusConnection;
111 // General vmbus interface
113 static DEVICE_OBJECT*
114 VmbusChildDeviceCreate(
115 GUID deviceType,
116 GUID deviceInstance,
117 void *context);
119 static int
120 VmbusChildDeviceAdd(
121 DEVICE_OBJECT* Device);
123 static void
124 VmbusChildDeviceRemove(
125 DEVICE_OBJECT* Device);
127 //static void
128 //VmbusChildDeviceDestroy(
129 // DEVICE_OBJECT*);
131 static VMBUS_CHANNEL*
132 GetChannelFromRelId(
133 UINT32 relId
137 // Connection interface
139 static int
140 VmbusConnect(
141 VOID
144 static int
145 VmbusDisconnect(
146 VOID
149 static int
150 VmbusPostMessage(
151 PVOID buffer,
152 SIZE_T bufSize
155 static int
156 VmbusSetEvent(
157 UINT32 childRelId
160 static VOID
161 VmbusOnEvents(
162 VOID
166 #endif // _VMBUS_PRIVATE_H_