2 * Copyright (c) 2009, Microsoft Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
22 #include <linux/kernel.h>
26 #include "VersionInfo.h"
27 #include "VmbusPrivate.h"
29 static const char *gDriverName
= "vmbus";
32 * Windows vmbus does not defined this.
33 * We defined this to be consistent with other devices
35 /* {c5295816-f63a-4d5f-8d1a-4daf999ca185} */
36 static const struct hv_guid gVmbusDeviceType
= {
38 0x16, 0x58, 0x29, 0xc5, 0x3a, 0xf6, 0x5f, 0x4d,
39 0x8d, 0x1a, 0x4d, 0xaf, 0x99, 0x9c, 0xa1, 0x85
43 /* {ac3760fc-9adf-40aa-9427-a70ed6de95c5} */
44 static const struct hv_guid gVmbusDeviceId
= {
46 0xfc, 0x60, 0x37, 0xac, 0xdf, 0x9a, 0xaa, 0x40,
47 0x94, 0x27, 0xa7, 0x0e, 0xd6, 0xde, 0x95, 0xc5
51 static struct hv_driver
*gDriver
; /* vmbus driver object */
52 static struct hv_device
*gDevice
; /* vmbus root device */
55 * VmbusGetChannelOffers - Retrieve the channel offers from the parent partition
57 static void VmbusGetChannelOffers(void)
60 VmbusChannelRequestOffers();
65 * VmbusGetChannelInterface - Get the channel interface
67 static void VmbusGetChannelInterface(struct vmbus_channel_interface
*Interface
)
69 GetChannelInterface(Interface
);
73 * VmbusGetChannelInfo - Get the device info for the specified device object
75 static void VmbusGetChannelInfo(struct hv_device
*DeviceObject
,
76 struct hv_device_info
*DeviceInfo
)
78 GetChannelInfo(DeviceObject
, DeviceInfo
);
82 * VmbusCreateChildDevice - Creates the child device on the bus that represents the channel offer
84 struct hv_device
*VmbusChildDeviceCreate(struct hv_guid
*DeviceType
,
85 struct hv_guid
*DeviceInstance
,
88 struct vmbus_driver
*vmbusDriver
= (struct vmbus_driver
*)gDriver
;
90 return vmbusDriver
->OnChildDeviceCreate(DeviceType
, DeviceInstance
,
95 * VmbusChildDeviceAdd - Registers the child device with the vmbus
97 int VmbusChildDeviceAdd(struct hv_device
*ChildDevice
)
99 struct vmbus_driver
*vmbusDriver
= (struct vmbus_driver
*)gDriver
;
101 return vmbusDriver
->OnChildDeviceAdd(gDevice
, ChildDevice
);
105 * VmbusChildDeviceRemove Unregisters the child device from the vmbus
107 void VmbusChildDeviceRemove(struct hv_device
*ChildDevice
)
109 struct vmbus_driver
*vmbusDriver
= (struct vmbus_driver
*)gDriver
;
111 vmbusDriver
->OnChildDeviceRemove(ChildDevice
);
115 * VmbusOnDeviceAdd - Callback when the root bus device is added
117 static int VmbusOnDeviceAdd(struct hv_device
*dev
, void *AdditionalInfo
)
119 u32
*irqvector
= AdditionalInfo
;
126 memcpy(&gDevice
->deviceType
, &gVmbusDeviceType
, sizeof(struct hv_guid
));
127 memcpy(&gDevice
->deviceInstance
, &gVmbusDeviceId
,
128 sizeof(struct hv_guid
));
130 /* strcpy(dev->name, "vmbus"); */
132 on_each_cpu(HvSynicInit
, (void *)irqvector
, 1);
134 /* Connect to VMBus in the root partition */
135 ret
= VmbusConnect();
137 /* VmbusSendEvent(device->localPortId+1); */
144 * VmbusOnDeviceRemove - Callback when the root bus device is removed
146 static int VmbusOnDeviceRemove(struct hv_device
*dev
)
151 VmbusChannelReleaseUnattachedChannels();
153 on_each_cpu(HvSynicCleanup
, NULL
, 1);
160 * VmbusOnCleanup - Perform any cleanup when the driver is removed
162 static void VmbusOnCleanup(struct hv_driver
*drv
)
164 /* struct vmbus_driver *driver = (struct vmbus_driver *)drv; */
172 * VmbusOnMsgDPC - DPC routine to handle messages from the hypervisior
174 static void VmbusOnMsgDPC(struct hv_driver
*drv
)
176 int cpu
= smp_processor_id();
177 void *page_addr
= gHvContext
.synICMessagePage
[cpu
];
178 struct hv_message
*msg
= (struct hv_message
*)page_addr
+
180 struct hv_message
*copied
;
183 if (msg
->Header
.MessageType
== HvMessageTypeNone
) {
187 copied
= kmalloc(sizeof(*copied
), GFP_ATOMIC
);
191 memcpy(copied
, msg
, sizeof(*copied
));
192 osd_schedule_callback(gVmbusConnection
.WorkQueue
,
193 VmbusOnChannelMessage
,
197 msg
->Header
.MessageType
= HvMessageTypeNone
;
200 * Make sure the write to MessageType (ie set to
201 * HvMessageTypeNone) happens before we read the
202 * MessagePending and EOMing. Otherwise, the EOMing
203 * will not deliver any more messages since there is
208 if (msg
->Header
.MessageFlags
.MessagePending
) {
210 * This will cause message queue rescan to
211 * possibly deliver another msg from the
214 wrmsrl(HV_X64_MSR_EOM
, 0);
220 * VmbusOnEventDPC - DPC routine to handle events from the hypervisior
222 static void VmbusOnEventDPC(struct hv_driver
*drv
)
224 /* TODO: Process any events */
229 * VmbusOnISR - ISR routine
231 static int VmbusOnISR(struct hv_driver
*drv
)
234 int cpu
= smp_processor_id();
236 struct hv_message
*msg
;
237 union hv_synic_event_flags
*event
;
239 page_addr
= gHvContext
.synICMessagePage
[cpu
];
240 msg
= (struct hv_message
*)page_addr
+ VMBUS_MESSAGE_SINT
;
244 /* Check if there are actual msgs to be process */
245 if (msg
->Header
.MessageType
!= HvMessageTypeNone
) {
246 DPRINT_DBG(VMBUS
, "received msg type %d size %d",
247 msg
->Header
.MessageType
,
248 msg
->Header
.PayloadSize
);
252 /* TODO: Check if there are events to be process */
253 page_addr
= gHvContext
.synICEventPage
[cpu
];
254 event
= (union hv_synic_event_flags
*)page_addr
+ VMBUS_MESSAGE_SINT
;
256 /* Since we are a child, we only need to check bit 0 */
257 if (sync_test_and_clear_bit(0, (unsigned long *) &event
->Flags32
[0])) {
258 DPRINT_DBG(VMBUS
, "received event %d", event
->Flags32
[0]);
267 * VmbusInitialize - Main entry point
269 int VmbusInitialize(struct hv_driver
*drv
)
271 struct vmbus_driver
*driver
= (struct vmbus_driver
*)drv
;
276 DPRINT_INFO(VMBUS
, "+++++++ Build Date=%s %s +++++++",
277 VersionDate
, VersionTime
);
278 DPRINT_INFO(VMBUS
, "+++++++ Build Description=%s +++++++",
280 DPRINT_INFO(VMBUS
, "+++++++ Vmbus supported version = %d +++++++",
281 VMBUS_REVISION_NUMBER
);
282 DPRINT_INFO(VMBUS
, "+++++++ Vmbus using SINT %d +++++++",
284 DPRINT_DBG(VMBUS
, "sizeof(VMBUS_CHANNEL_PACKET_PAGE_BUFFER)=%zd, "
285 "sizeof(VMBUS_CHANNEL_PACKET_MULITPAGE_BUFFER)=%zd",
286 sizeof(struct VMBUS_CHANNEL_PACKET_PAGE_BUFFER
),
287 sizeof(struct VMBUS_CHANNEL_PACKET_MULITPAGE_BUFFER
));
289 drv
->name
= gDriverName
;
290 memcpy(&drv
->deviceType
, &gVmbusDeviceType
, sizeof(struct hv_guid
));
292 /* Setup dispatch table */
293 driver
->Base
.OnDeviceAdd
= VmbusOnDeviceAdd
;
294 driver
->Base
.OnDeviceRemove
= VmbusOnDeviceRemove
;
295 driver
->Base
.OnCleanup
= VmbusOnCleanup
;
296 driver
->OnIsr
= VmbusOnISR
;
297 driver
->OnMsgDpc
= VmbusOnMsgDPC
;
298 driver
->OnEventDpc
= VmbusOnEventDPC
;
299 driver
->GetChannelOffers
= VmbusGetChannelOffers
;
300 driver
->GetChannelInterface
= VmbusGetChannelInterface
;
301 driver
->GetChannelInfo
= VmbusGetChannelInfo
;
303 /* Hypervisor initialization...setup hypercall page..etc */
306 DPRINT_ERR(VMBUS
, "Unable to initialize the hypervisor - 0x%x",