]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c
hyperv: Use standard taskqueue instead of hv_work_queue
[FreeBSD/FreeBSD.git] / sys / dev / hyperv / vmbus / hv_vmbus_drv_freebsd.c
1 /*-
2  * Copyright (c) 2009-2012 Microsoft Corp.
3  * Copyright (c) 2012 NetApp Inc.
4  * Copyright (c) 2012 Citrix Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice unmodified, this list of conditions, and the following
12  *    disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /*
30  * VM Bus Driver Implementation
31  */
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include <sys/param.h>
36 #include <sys/bus.h>
37 #include <sys/kernel.h>
38 #include <sys/lock.h>
39 #include <sys/malloc.h>
40 #include <sys/module.h>
41 #include <sys/proc.h>
42 #include <sys/sysctl.h>
43 #include <sys/syslog.h>
44 #include <sys/systm.h>
45 #include <sys/rtprio.h>
46 #include <sys/interrupt.h>
47 #include <sys/sx.h>
48 #include <sys/taskqueue.h>
49 #include <sys/mutex.h>
50 #include <sys/smp.h>
51
52 #include <machine/resource.h>
53 #include <sys/rman.h>
54
55 #include <machine/stdarg.h>
56 #include <machine/intr_machdep.h>
57 #include <machine/md_var.h>
58 #include <machine/segments.h>
59 #include <sys/pcpu.h>
60 #include <x86/apicvar.h>
61
62 #include "hv_vmbus_priv.h"
63
64 #include <contrib/dev/acpica/include/acpi.h>
65 #include "acpi_if.h"
66
67 static device_t vmbus_devp;
68 static int vmbus_inited;
69 static hv_setup_args setup_args; /* only CPU 0 supported at this time */
70
71 static char *vmbus_ids[] = { "VMBUS", NULL };
72
73 /**
74  * @brief Software interrupt thread routine to handle channel messages from
75  * the hypervisor.
76  */
77 static void
78 vmbus_msg_swintr(void *arg)
79 {
80         int                     cpu;
81         void*                   page_addr;
82         hv_vmbus_channel_msg_header      *hdr;
83         hv_vmbus_channel_msg_table_entry *entry;
84         hv_vmbus_channel_msg_type msg_type;
85         hv_vmbus_message*       msg;
86
87         cpu = (int)(long)arg;
88         KASSERT(cpu <= mp_maxid, ("VMBUS: vmbus_msg_swintr: "
89             "cpu out of range!"));
90
91         page_addr = hv_vmbus_g_context.syn_ic_msg_page[cpu];
92         msg = (hv_vmbus_message*) page_addr + HV_VMBUS_MESSAGE_SINT;
93
94         for (;;) {
95                 if (msg->header.message_type == HV_MESSAGE_TYPE_NONE)
96                         break; /* no message */
97
98                 hdr = (hv_vmbus_channel_msg_header *)msg->u.payload;
99                 msg_type = hdr->message_type;
100
101                 if (msg_type >= HV_CHANNEL_MESSAGE_COUNT) {
102                         printf("VMBUS: unknown message type = %d\n", msg_type);
103                         goto handled;
104                 }
105
106                 entry = &g_channel_message_table[msg_type];
107
108                 if (entry->messageHandler)
109                         entry->messageHandler(hdr);
110 handled:
111             msg->header.message_type = HV_MESSAGE_TYPE_NONE;
112
113             /*
114              * Make sure the write to message_type (ie set to
115              * HV_MESSAGE_TYPE_NONE) happens before we read the
116              * message_pending and EOMing. Otherwise, the EOMing will
117              * not deliver any more messages
118              * since there is no empty slot
119              */
120             wmb();
121
122             if (msg->header.message_flags.u.message_pending) {
123                         /*
124                          * This will cause message queue rescan to possibly
125                          * deliver another msg from the hypervisor
126                          */
127                         wrmsr(HV_X64_MSR_EOM, 0);
128             }
129         }
130 }
131
132 /**
133  * @brief Interrupt filter routine for VMBUS.
134  *
135  * The purpose of this routine is to determine the type of VMBUS protocol
136  * message to process - an event or a channel message.
137  */
138 static inline int
139 hv_vmbus_isr(struct trapframe *frame)
140 {
141         int                             cpu;
142         hv_vmbus_message*               msg;
143         hv_vmbus_synic_event_flags*     event;
144         void*                           page_addr;
145
146         cpu = PCPU_GET(cpuid);
147
148         /*
149          * The Windows team has advised that we check for events
150          * before checking for messages. This is the way they do it
151          * in Windows when running as a guest in Hyper-V
152          */
153
154         page_addr = hv_vmbus_g_context.syn_ic_event_page[cpu];
155         event = (hv_vmbus_synic_event_flags*)
156                     page_addr + HV_VMBUS_MESSAGE_SINT;
157
158         if ((hv_vmbus_protocal_version == HV_VMBUS_VERSION_WS2008) ||
159             (hv_vmbus_protocal_version == HV_VMBUS_VERSION_WIN7)) {
160                 /* Since we are a child, we only need to check bit 0 */
161                 if (synch_test_and_clear_bit(0, &event->flags32[0])) {
162                         hv_vmbus_on_events(cpu);
163                 }
164         } else {
165                 /*
166                  * On host with Win8 or above, we can directly look at
167                  * the event page. If bit n is set, we have an interrupt 
168                  * on the channel with id n.
169                  * Directly schedule the event software interrupt on
170                  * current cpu.
171                  */
172                 hv_vmbus_on_events(cpu);
173         }
174
175         /* Check if there are actual msgs to be process */
176         page_addr = hv_vmbus_g_context.syn_ic_msg_page[cpu];
177         msg = (hv_vmbus_message*) page_addr + HV_VMBUS_MESSAGE_SINT;
178
179         /* we call eventtimer process the message */
180         if (msg->header.message_type == HV_MESSAGE_TIMER_EXPIRED) {
181                 msg->header.message_type = HV_MESSAGE_TYPE_NONE;
182
183                 /*
184                  * Make sure the write to message_type (ie set to
185                  * HV_MESSAGE_TYPE_NONE) happens before we read the
186                  * message_pending and EOMing. Otherwise, the EOMing will
187                  * not deliver any more messages
188                  * since there is no empty slot
189                  */
190                 wmb();
191
192                 if (msg->header.message_flags.u.message_pending) {
193                         /*
194                          * This will cause message queue rescan to possibly
195                          * deliver another msg from the hypervisor
196                          */
197                         wrmsr(HV_X64_MSR_EOM, 0);
198                 }
199                 hv_et_intr(frame);
200                 return (FILTER_HANDLED);
201         }
202
203         if (msg->header.message_type != HV_MESSAGE_TYPE_NONE) {
204                 swi_sched(hv_vmbus_g_context.msg_swintr[cpu], 0);
205         }
206
207         return (FILTER_HANDLED);
208 }
209
210 u_long *hv_vmbus_intr_cpu[MAXCPU];
211
212 void
213 hv_vector_handler(struct trapframe *trap_frame)
214 {
215         int cpu;
216
217         /*
218          * Disable preemption.
219          */
220         critical_enter();
221
222         /*
223          * Do a little interrupt counting.
224          */
225         cpu = PCPU_GET(cpuid);
226         (*hv_vmbus_intr_cpu[cpu])++;
227
228         hv_vmbus_isr(trap_frame);
229
230         /*
231          * Enable preemption.
232          */
233         critical_exit();
234 }
235
236 static int
237 vmbus_read_ivar(
238         device_t        dev,
239         device_t        child,
240         int             index,
241         uintptr_t*      result)
242 {
243         struct hv_device *child_dev_ctx = device_get_ivars(child);
244
245         switch (index) {
246
247         case HV_VMBUS_IVAR_TYPE:
248                 *result = (uintptr_t) &child_dev_ctx->class_id;
249                 return (0);
250         case HV_VMBUS_IVAR_INSTANCE:
251                 *result = (uintptr_t) &child_dev_ctx->device_id;
252                 return (0);
253         case HV_VMBUS_IVAR_DEVCTX:
254                 *result = (uintptr_t) child_dev_ctx;
255                 return (0);
256         case HV_VMBUS_IVAR_NODE:
257                 *result = (uintptr_t) child_dev_ctx->device;
258                 return (0);
259         }
260         return (ENOENT);
261 }
262
263 static int
264 vmbus_write_ivar(
265         device_t        dev,
266         device_t        child,
267         int             index,
268         uintptr_t       value)
269 {
270         switch (index) {
271
272         case HV_VMBUS_IVAR_TYPE:
273         case HV_VMBUS_IVAR_INSTANCE:
274         case HV_VMBUS_IVAR_DEVCTX:
275         case HV_VMBUS_IVAR_NODE:
276                 /* read-only */
277                 return (EINVAL);
278         }
279         return (ENOENT);
280 }
281
282 struct hv_device*
283 hv_vmbus_child_device_create(
284         hv_guid         type,
285         hv_guid         instance,
286         hv_vmbus_channel*       channel)
287 {
288         hv_device* child_dev;
289
290         /*
291          * Allocate the new child device
292          */
293         child_dev = malloc(sizeof(hv_device), M_DEVBUF,
294                         M_NOWAIT |  M_ZERO);
295         KASSERT(child_dev != NULL,
296             ("Error VMBUS: malloc failed to allocate hv_device!"));
297
298         if (child_dev == NULL)
299                 return (NULL);
300
301         child_dev->channel = channel;
302         memcpy(&child_dev->class_id, &type, sizeof(hv_guid));
303         memcpy(&child_dev->device_id, &instance, sizeof(hv_guid));
304
305         return (child_dev);
306 }
307
308 static void
309 print_dev_guid(struct hv_device *dev)
310 {
311         int i;
312         unsigned char guid_name[100];
313         for (i = 0; i < 32; i += 2)
314                 sprintf(&guid_name[i], "%02x", dev->class_id.data[i / 2]);
315         if(bootverbose)
316                 printf("VMBUS: Class ID: %s\n", guid_name);
317 }
318
319 int
320 hv_vmbus_child_device_register(struct hv_device *child_dev)
321 {
322         device_t child;
323         int ret = 0;
324
325         print_dev_guid(child_dev);
326
327
328         child = device_add_child(vmbus_devp, NULL, -1);
329         child_dev->device = child;
330         device_set_ivars(child, child_dev);
331
332         mtx_lock(&Giant);
333         ret = device_probe_and_attach(child);
334         mtx_unlock(&Giant);
335
336         return (0);
337 }
338
339 int
340 hv_vmbus_child_device_unregister(struct hv_device *child_dev)
341 {
342         int ret = 0;
343         /*
344          * XXXKYS: Ensure that this is the opposite of
345          * device_add_child()
346          */
347         mtx_lock(&Giant);
348         ret = device_delete_child(vmbus_devp, child_dev->device);
349         mtx_unlock(&Giant);
350         return(ret);
351 }
352
353 static int
354 vmbus_probe(device_t dev) {
355         if (ACPI_ID_PROBE(device_get_parent(dev), dev, vmbus_ids) == NULL ||
356             device_get_unit(dev) != 0)
357                 return (ENXIO);
358
359         device_set_desc(dev, "Vmbus Devices");
360
361         return (BUS_PROBE_DEFAULT);
362 }
363
364 #ifdef HYPERV
365 extern inthand_t IDTVEC(rsvd), IDTVEC(hv_vmbus_callback);
366
367 /**
368  * @brief Find a free IDT slot and setup the interrupt handler.
369  */
370 static int
371 vmbus_vector_alloc(void)
372 {
373         int vector;
374         uintptr_t func;
375         struct gate_descriptor *ip;
376
377         /*
378          * Search backwards form the highest IDT vector available for use
379          * as vmbus channel callback vector. We install 'hv_vmbus_callback'
380          * handler at that vector and use it to interrupt vcpus.
381          */
382         vector = APIC_SPURIOUS_INT;
383         while (--vector >= APIC_IPI_INTS) {
384                 ip = &idt[vector];
385                 func = ((long)ip->gd_hioffset << 16 | ip->gd_looffset);
386                 if (func == (uintptr_t)&IDTVEC(rsvd)) {
387 #ifdef __i386__
388                         setidt(vector , IDTVEC(hv_vmbus_callback), SDT_SYS386IGT,
389                             SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
390 #else
391                         setidt(vector , IDTVEC(hv_vmbus_callback), SDT_SYSIGT,
392                             SEL_KPL, 0);
393 #endif
394
395                         return (vector);
396                 }
397         }
398         return (0);
399 }
400
401 /**
402  * @brief Restore the IDT slot to rsvd.
403  */
404 static void
405 vmbus_vector_free(int vector)
406 {
407         uintptr_t func;
408         struct gate_descriptor *ip;
409
410         if (vector == 0)
411                 return;
412
413         KASSERT(vector >= APIC_IPI_INTS && vector < APIC_SPURIOUS_INT,
414             ("invalid vector %d", vector));
415
416         ip = &idt[vector];
417         func = ((long)ip->gd_hioffset << 16 | ip->gd_looffset);
418         KASSERT(func == (uintptr_t)&IDTVEC(hv_vmbus_callback),
419             ("invalid vector %d", vector));
420
421         setidt(vector, IDTVEC(rsvd), SDT_SYSIGT, SEL_KPL, 0);
422 }
423
424 #else /* HYPERV */
425
426 static int
427 vmbus_vector_alloc(void)
428 {
429         return(0);
430 }
431
432 static void
433 vmbus_vector_free(int vector)
434 {
435 }
436
437 #endif /* HYPERV */
438
439 /**
440  * @brief Main vmbus driver initialization routine.
441  *
442  * Here, we
443  * - initialize the vmbus driver context
444  * - setup various driver entry points
445  * - invoke the vmbus hv main init routine
446  * - get the irq resource
447  * - invoke the vmbus to add the vmbus root device
448  * - setup the vmbus root device
449  * - retrieve the channel offers
450  */
451 static int
452 vmbus_bus_init(void)
453 {
454         int i, j, n, ret;
455         char buf[MAXCOMLEN + 1];
456         cpuset_t cpu_mask;
457
458         if (vmbus_inited)
459                 return (0);
460
461         vmbus_inited = 1;
462
463         ret = hv_vmbus_init();
464
465         if (ret) {
466                 if(bootverbose)
467                         printf("Error VMBUS: Hypervisor Initialization Failed!\n");
468                 return (ret);
469         }
470
471         /*
472          * Find a free IDT slot for vmbus callback.
473          */
474         hv_vmbus_g_context.hv_cb_vector = vmbus_vector_alloc();
475
476         if (hv_vmbus_g_context.hv_cb_vector == 0) {
477                 if(bootverbose)
478                         printf("Error VMBUS: Cannot find free IDT slot for "
479                             "vmbus callback!\n");
480                 goto cleanup;
481         }
482
483         if(bootverbose)
484                 printf("VMBUS: vmbus callback vector %d\n",
485                     hv_vmbus_g_context.hv_cb_vector);
486
487         /*
488          * Notify the hypervisor of our vector.
489          */
490         setup_args.vector = hv_vmbus_g_context.hv_cb_vector;
491
492         CPU_FOREACH(j) {
493                 hv_vmbus_g_context.hv_msg_intr_event[j] = NULL;
494                 hv_vmbus_g_context.msg_swintr[j] = NULL;
495
496                 snprintf(buf, sizeof(buf), "cpu%d:hyperv", j);
497                 intrcnt_add(buf, &hv_vmbus_intr_cpu[j]);
498
499                 for (i = 0; i < 2; i++)
500                         setup_args.page_buffers[2 * j + i] = NULL;
501         }
502
503         /*
504          * Per cpu setup.
505          */
506         CPU_FOREACH(j) {
507                 /*
508                  * Setup taskqueue to handle events
509                  */
510                 hv_vmbus_g_context.hv_event_queue[j] = taskqueue_create_fast("hyperv event", M_WAITOK,
511                         taskqueue_thread_enqueue, &hv_vmbus_g_context.hv_event_queue[j]);
512                 if (hv_vmbus_g_context.hv_event_queue[j] == NULL) {
513                         if (bootverbose)
514                                 printf("VMBUS: failed to setup taskqueue\n");
515                         goto cleanup1;
516                 }
517                 CPU_SETOF(j, &cpu_mask);
518                 taskqueue_start_threads_cpuset(&hv_vmbus_g_context.hv_event_queue[j], 1, PI_NET, &cpu_mask,
519                         "hvevent%d", j);
520
521                 /*
522                  * Setup software interrupt thread and handler for msg handling.
523                  */
524                 ret = swi_add(&hv_vmbus_g_context.hv_msg_intr_event[j],
525                     "hv_msg", vmbus_msg_swintr, (void *)(long)j, SWI_CLOCK, 0,
526                     &hv_vmbus_g_context.msg_swintr[j]);
527                 if (ret) {
528                         if(bootverbose)
529                                 printf("VMBUS: failed to setup msg swi for "
530                                     "cpu %d\n", j);
531                         goto cleanup1;
532                 }
533
534                 /*
535                  * Bind the swi thread to the cpu.
536                  */
537                 ret = intr_event_bind(hv_vmbus_g_context.hv_msg_intr_event[j],
538                     j);
539                 if (ret) {
540                         if(bootverbose)
541                                 printf("VMBUS: failed to bind msg swi thread "
542                                     "to cpu %d\n", j);
543                         goto cleanup1;
544                 }
545
546                 /*
547                  * Prepare the per cpu msg and event pages to be called on each cpu.
548                  */
549                 for(i = 0; i < 2; i++) {
550                         setup_args.page_buffers[2 * j + i] =
551                                 malloc(PAGE_SIZE, M_DEVBUF, M_NOWAIT | M_ZERO);
552                         if (setup_args.page_buffers[2 * j + i] == NULL) {
553                                 KASSERT(setup_args.page_buffers[2 * j + i] != NULL,
554                                         ("Error VMBUS: malloc failed!"));
555                                 goto cleanup1;
556                         }
557                 }
558         }
559
560         if (bootverbose)
561                 printf("VMBUS: Calling smp_rendezvous, smp_started = %d\n",
562                     smp_started);
563
564         smp_rendezvous(NULL, hv_vmbus_synic_init, NULL, &setup_args);
565
566         /*
567          * Connect to VMBus in the root partition
568          */
569         ret = hv_vmbus_connect();
570
571         if (ret != 0)
572                 goto cleanup1;
573
574         hv_vmbus_request_channel_offers();
575         return (ret);
576
577         cleanup1:
578         /*
579          * Free pages alloc'ed
580          */
581         for (n = 0; n < 2 * MAXCPU; n++)
582                 if (setup_args.page_buffers[n] != NULL)
583                         free(setup_args.page_buffers[n], M_DEVBUF);
584
585         /*
586          * remove swi and vmbus callback vector;
587          */
588         CPU_FOREACH(j) {
589                 if (hv_vmbus_g_context.hv_event_queue[j] != NULL)
590                         taskqueue_free(hv_vmbus_g_context.hv_event_queue[j]);
591                 if (hv_vmbus_g_context.msg_swintr[j] != NULL)
592                         swi_remove(hv_vmbus_g_context.msg_swintr[j]);
593                 hv_vmbus_g_context.hv_msg_intr_event[j] = NULL; 
594         }
595
596         vmbus_vector_free(hv_vmbus_g_context.hv_cb_vector);
597
598         cleanup:
599         hv_vmbus_cleanup();
600
601         return (ret);
602 }
603
604 static int
605 vmbus_attach(device_t dev)
606 {
607         if(bootverbose)
608                 device_printf(dev, "VMBUS: attach dev: %p\n", dev);
609         vmbus_devp = dev;
610
611         /* 
612          * If the system has already booted and thread
613          * scheduling is possible indicated by the global
614          * cold set to zero, we just call the driver
615          * initialization directly.
616          */
617         if (!cold)
618                 vmbus_bus_init();
619
620         return (0);
621 }
622
623 static void
624 vmbus_init(void)
625 {
626         if (vm_guest != VM_GUEST_HV)
627                 return;
628
629         /* 
630          * If the system has already booted and thread
631          * scheduling is possible, as indicated by the
632          * global cold set to zero, we just call the driver
633          * initialization directly.
634          */
635         if (!cold) 
636                 vmbus_bus_init();
637 }
638
639 static void
640 vmbus_bus_exit(void)
641 {
642         int i;
643
644         hv_vmbus_release_unattached_channels();
645         hv_vmbus_disconnect();
646
647         smp_rendezvous(NULL, hv_vmbus_synic_cleanup, NULL, NULL);
648
649         for(i = 0; i < 2 * MAXCPU; i++) {
650                 if (setup_args.page_buffers[i] != 0)
651                         free(setup_args.page_buffers[i], M_DEVBUF);
652         }
653
654         hv_vmbus_cleanup();
655
656         /* remove swi */
657         CPU_FOREACH(i) {
658                 if (hv_vmbus_g_context.hv_event_queue[i] != NULL)
659                         taskqueue_free(hv_vmbus_g_context.hv_event_queue[i]);
660                 if (hv_vmbus_g_context.msg_swintr[i] != NULL)
661                         swi_remove(hv_vmbus_g_context.msg_swintr[i]);
662                 hv_vmbus_g_context.hv_msg_intr_event[i] = NULL; 
663         }
664
665         vmbus_vector_free(hv_vmbus_g_context.hv_cb_vector);
666
667         return;
668 }
669
670 static void
671 vmbus_exit(void)
672 {
673         vmbus_bus_exit();
674 }
675
676 static int
677 vmbus_detach(device_t dev)
678 {
679         vmbus_exit();
680         return (0);
681 }
682
683 static void
684 vmbus_mod_load(void)
685 {
686         if(bootverbose)
687                 printf("VMBUS: load\n");
688 }
689
690 static void
691 vmbus_mod_unload(void)
692 {
693         if(bootverbose)
694                 printf("VMBUS: unload\n");
695 }
696
697 static int
698 vmbus_modevent(module_t mod, int what, void *arg)
699 {
700         switch (what) {
701
702         case MOD_LOAD:
703                 vmbus_mod_load();
704                 break;
705         case MOD_UNLOAD:
706                 vmbus_mod_unload();
707                 break;
708         }
709
710         return (0);
711 }
712
713 static device_method_t vmbus_methods[] = {
714         /** Device interface */
715         DEVMETHOD(device_probe, vmbus_probe),
716         DEVMETHOD(device_attach, vmbus_attach),
717         DEVMETHOD(device_detach, vmbus_detach),
718         DEVMETHOD(device_shutdown, bus_generic_shutdown),
719         DEVMETHOD(device_suspend, bus_generic_suspend),
720         DEVMETHOD(device_resume, bus_generic_resume),
721
722         /** Bus interface */
723         DEVMETHOD(bus_add_child, bus_generic_add_child),
724         DEVMETHOD(bus_print_child, bus_generic_print_child),
725         DEVMETHOD(bus_read_ivar, vmbus_read_ivar),
726         DEVMETHOD(bus_write_ivar, vmbus_write_ivar),
727
728         { 0, 0 } };
729
730 static char driver_name[] = "vmbus";
731 static driver_t vmbus_driver = { driver_name, vmbus_methods,0, };
732
733
734 devclass_t vmbus_devclass;
735
736 DRIVER_MODULE(vmbus, acpi, vmbus_driver, vmbus_devclass, vmbus_modevent, 0);
737 MODULE_DEPEND(vmbus, acpi, 1, 1, 1);
738 MODULE_VERSION(vmbus, 1);
739
740 /* We want to be started after SMP is initialized */
741 SYSINIT(vmb_init, SI_SUB_SMP + 1, SI_ORDER_FIRST, vmbus_init, NULL);
742