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
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.
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
23 #include <linux/kernel.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
29 #include "vmbus_private.h"
32 struct VMBUS_CONNECTION gVmbusConnection
= {
33 .ConnectState
= Disconnected
,
34 .NextGpadlHandle
= ATOMIC_INIT(0xE1E10),
38 * VmbusConnect - Sends a connect request on the partition service connection
40 int VmbusConnect(void)
43 struct vmbus_channel_msginfo
*msgInfo
= NULL
;
44 struct vmbus_channel_initiate_contact
*msg
;
47 /* Make sure we are not connecting or connected */
48 if (gVmbusConnection
.ConnectState
!= Disconnected
)
51 /* Initialize the vmbus connection */
52 gVmbusConnection
.ConnectState
= Connecting
;
53 gVmbusConnection
.WorkQueue
= create_workqueue("hv_vmbus_con");
54 if (!gVmbusConnection
.WorkQueue
) {
59 INIT_LIST_HEAD(&gVmbusConnection
.ChannelMsgList
);
60 spin_lock_init(&gVmbusConnection
.channelmsg_lock
);
62 INIT_LIST_HEAD(&gVmbusConnection
.ChannelList
);
63 spin_lock_init(&gVmbusConnection
.channel_lock
);
66 * Setup the vmbus event connection for channel interrupt
69 gVmbusConnection
.InterruptPage
= osd_PageAlloc(1);
70 if (gVmbusConnection
.InterruptPage
== NULL
) {
75 gVmbusConnection
.RecvInterruptPage
= gVmbusConnection
.InterruptPage
;
76 gVmbusConnection
.SendInterruptPage
=
77 (void *)((unsigned long)gVmbusConnection
.InterruptPage
+
81 * Setup the monitor notification facility. The 1st page for
82 * parent->child and the 2nd page for child->parent
84 gVmbusConnection
.MonitorPages
= osd_PageAlloc(2);
85 if (gVmbusConnection
.MonitorPages
== NULL
) {
90 msgInfo
= kzalloc(sizeof(*msgInfo
) +
91 sizeof(struct vmbus_channel_initiate_contact
),
93 if (msgInfo
== NULL
) {
98 msgInfo
->waitevent
= osd_WaitEventCreate();
99 if (!msgInfo
->waitevent
) {
104 msg
= (struct vmbus_channel_initiate_contact
*)msgInfo
->msg
;
106 msg
->header
.msgtype
= CHANNELMSG_INITIATE_CONTACT
;
107 msg
->vmbus_version_requested
= VMBUS_REVISION_NUMBER
;
108 msg
->interrupt_page
= virt_to_phys(gVmbusConnection
.InterruptPage
);
109 msg
->monitor_page1
= virt_to_phys(gVmbusConnection
.MonitorPages
);
110 msg
->monitor_page2
= virt_to_phys(
111 (void *)((unsigned long)gVmbusConnection
.MonitorPages
+
115 * Add to list before we send the request since we may
116 * receive the response before returning from this routine
118 spin_lock_irqsave(&gVmbusConnection
.channelmsg_lock
, flags
);
119 list_add_tail(&msgInfo
->msglistentry
,
120 &gVmbusConnection
.ChannelMsgList
);
122 spin_unlock_irqrestore(&gVmbusConnection
.channelmsg_lock
, flags
);
124 DPRINT_DBG(VMBUS
, "Vmbus connection - interrupt pfn %llx, "
125 "monitor1 pfn %llx,, monitor2 pfn %llx",
126 msg
->interrupt_page
, msg
->monitor_page1
, msg
->monitor_page2
);
128 DPRINT_DBG(VMBUS
, "Sending channel initiate msg...");
129 ret
= VmbusPostMessage(msg
,
130 sizeof(struct vmbus_channel_initiate_contact
));
132 list_del(&msgInfo
->msglistentry
);
136 /* Wait for the connection response */
137 osd_WaitEventWait(msgInfo
->waitevent
);
139 list_del(&msgInfo
->msglistentry
);
141 /* Check if successful */
142 if (msgInfo
->response
.version_response
.version_supported
) {
143 DPRINT_INFO(VMBUS
, "Vmbus connected!!");
144 gVmbusConnection
.ConnectState
= Connected
;
147 DPRINT_ERR(VMBUS
, "Vmbus connection failed!!..."
148 "current version (%d) not supported",
149 VMBUS_REVISION_NUMBER
);
154 kfree(msgInfo
->waitevent
);
159 gVmbusConnection
.ConnectState
= Disconnected
;
161 if (gVmbusConnection
.WorkQueue
)
162 destroy_workqueue(gVmbusConnection
.WorkQueue
);
164 if (gVmbusConnection
.InterruptPage
) {
165 osd_PageFree(gVmbusConnection
.InterruptPage
, 1);
166 gVmbusConnection
.InterruptPage
= NULL
;
169 if (gVmbusConnection
.MonitorPages
) {
170 osd_PageFree(gVmbusConnection
.MonitorPages
, 2);
171 gVmbusConnection
.MonitorPages
= NULL
;
175 kfree(msgInfo
->waitevent
);
183 * VmbusDisconnect - Sends a disconnect request on the partition service connection
185 int VmbusDisconnect(void)
188 struct vmbus_channel_message_header
*msg
;
190 /* Make sure we are connected */
191 if (gVmbusConnection
.ConnectState
!= Connected
)
194 msg
= kzalloc(sizeof(struct vmbus_channel_message_header
), GFP_KERNEL
);
198 msg
->msgtype
= CHANNELMSG_UNLOAD
;
200 ret
= VmbusPostMessage(msg
,
201 sizeof(struct vmbus_channel_message_header
));
205 osd_PageFree(gVmbusConnection
.InterruptPage
, 1);
207 /* TODO: iterate thru the msg list and free up */
208 destroy_workqueue(gVmbusConnection
.WorkQueue
);
210 gVmbusConnection
.ConnectState
= Disconnected
;
212 DPRINT_INFO(VMBUS
, "Vmbus disconnected!!");
220 * GetChannelFromRelId - Get the channel object given its child relative id (ie channel id)
222 struct vmbus_channel
*GetChannelFromRelId(u32 relId
)
224 struct vmbus_channel
*channel
;
225 struct vmbus_channel
*foundChannel
= NULL
;
228 spin_lock_irqsave(&gVmbusConnection
.channel_lock
, flags
);
229 list_for_each_entry(channel
, &gVmbusConnection
.ChannelList
, listentry
) {
230 if (channel
->offermsg
.child_relid
== relId
) {
231 foundChannel
= channel
;
235 spin_unlock_irqrestore(&gVmbusConnection
.channel_lock
, flags
);
241 * VmbusProcessChannelEvent - Process a channel event notification
243 static void VmbusProcessChannelEvent(void *context
)
245 struct vmbus_channel
*channel
;
246 u32 relId
= (u32
)(unsigned long)context
;
248 /* ASSERT(relId > 0); */
251 * Find the channel based on this relid and invokes the
252 * channel callback to process the event
254 channel
= GetChannelFromRelId(relId
);
257 vmbus_onchannel_event(channel
);
259 * WorkQueueQueueWorkItem(channel->dataWorkQueue,
260 * vmbus_onchannel_event,
264 DPRINT_ERR(VMBUS
, "channel not found for relid - %d.", relId
);
269 * VmbusOnEvents - Handler for events
271 void VmbusOnEvents(void)
274 int maxdword
= MAX_NUM_CHANNELS_SUPPORTED
>> 5;
277 u32
*recvInterruptPage
= gVmbusConnection
.RecvInterruptPage
;
280 if (recvInterruptPage
) {
281 for (dword
= 0; dword
< maxdword
; dword
++) {
282 if (recvInterruptPage
[dword
]) {
283 for (bit
= 0; bit
< 32; bit
++) {
284 if (test_and_clear_bit(bit
, (unsigned long *)&recvInterruptPage
[dword
])) {
285 relid
= (dword
<< 5) + bit
;
286 DPRINT_DBG(VMBUS
, "event detected for relid - %d", relid
);
289 /* special case - vmbus channel protocol msg */
290 DPRINT_DBG(VMBUS
, "invalid relid - %d", relid
);
293 /* QueueWorkItem(VmbusProcessEvent, (void*)relid); */
294 /* ret = WorkQueueQueueWorkItem(gVmbusConnection.workQueue, VmbusProcessChannelEvent, (void*)relid); */
295 VmbusProcessChannelEvent((void *)(unsigned long)relid
);
306 * VmbusPostMessage - Send a msg on the vmbus's message connection
308 int VmbusPostMessage(void *buffer
, size_t bufferLen
)
310 union hv_connection_id connId
;
313 connId
.u
.Id
= VMBUS_MESSAGE_CONNECTION_ID
;
314 return HvPostMessage(connId
, 1, buffer
, bufferLen
);
318 * VmbusSetEvent - Send an event notification to the parent
320 int VmbusSetEvent(u32 childRelId
)
322 /* Each u32 represents 32 channels */
323 set_bit(childRelId
& 31,
324 (unsigned long *)gVmbusConnection
.SendInterruptPage
+
327 return HvSignalEvent();