]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/hyperv/vmbus/hv_vmbus_priv.h
MFC 295307,295308,295309,295606
[FreeBSD/stable/10.git] / sys / dev / hyperv / vmbus / hv_vmbus_priv.h
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  * $FreeBSD$
29  */
30
31 #ifndef __HYPERV_PRIV_H__
32 #define __HYPERV_PRIV_H__
33
34 #include <sys/param.h>
35 #include <sys/lock.h>
36 #include <sys/mutex.h>
37 #include <sys/sema.h>
38
39 #include <dev/hyperv/include/hyperv.h>
40
41
42 /*
43  *  Status codes for hypervisor operations.
44  */
45
46 typedef uint16_t hv_vmbus_status;
47
48 #define HV_MESSAGE_SIZE                 (256)
49 #define HV_MESSAGE_PAYLOAD_BYTE_COUNT   (240)
50 #define HV_MESSAGE_PAYLOAD_QWORD_COUNT  (30)
51 #define HV_ANY_VP                       (0xFFFFFFFF)
52
53 /*
54  * Synthetic interrupt controller flag constants.
55  */
56
57 #define HV_EVENT_FLAGS_COUNT        (256 * 8)
58 #define HV_EVENT_FLAGS_BYTE_COUNT   (256)
59 #define HV_EVENT_FLAGS_DWORD_COUNT  (256 / sizeof(uint32_t))
60
61 /**
62  * max channel count <== event_flags_dword_count * bit_of_dword
63  */
64 #define HV_CHANNEL_DWORD_LEN        (32)
65 #define HV_CHANNEL_MAX_COUNT        \
66         ((HV_EVENT_FLAGS_DWORD_COUNT) * HV_CHANNEL_DWORD_LEN)
67 /*
68  * MessageId: HV_STATUS_INSUFFICIENT_BUFFERS
69  * MessageText:
70  *    You did not supply enough message buffers to send a message.
71  */
72
73 #define HV_STATUS_INSUFFICIENT_BUFFERS   ((uint16_t)0x0013)
74
75 typedef void (*hv_vmbus_channel_callback)(void *context);
76
77 typedef struct {
78         void*           data;
79         uint32_t        length;
80 } hv_vmbus_sg_buffer_list;
81
82 typedef struct {
83         uint32_t        current_interrupt_mask;
84         uint32_t        current_read_index;
85         uint32_t        current_write_index;
86         uint32_t        bytes_avail_to_read;
87         uint32_t        bytes_avail_to_write;
88 } hv_vmbus_ring_buffer_debug_info;
89
90 typedef struct {
91         uint32_t                rel_id;
92         hv_vmbus_channel_state  state;
93         hv_guid                 interface_type;
94         hv_guid                 interface_instance;
95         uint32_t                monitor_id;
96         uint32_t                server_monitor_pending;
97         uint32_t                server_monitor_latency;
98         uint32_t                server_monitor_connection_id;
99         uint32_t                client_monitor_pending;
100         uint32_t                client_monitor_latency;
101         uint32_t                client_monitor_connection_id;
102         hv_vmbus_ring_buffer_debug_info inbound;
103         hv_vmbus_ring_buffer_debug_info outbound;
104 } hv_vmbus_channel_debug_info;
105
106 typedef union {
107         hv_vmbus_channel_version_supported      version_supported;
108         hv_vmbus_channel_open_result            open_result;
109         hv_vmbus_channel_gpadl_torndown         gpadl_torndown;
110         hv_vmbus_channel_gpadl_created          gpadl_created;
111         hv_vmbus_channel_version_response       version_response;
112 } hv_vmbus_channel_msg_response;
113
114 /*
115  * Represents each channel msg on the vmbus connection
116  * This is a variable-size data structure depending on
117  * the msg type itself
118  */
119 typedef struct hv_vmbus_channel_msg_info {
120         /*
121          * Bookkeeping stuff
122          */
123         TAILQ_ENTRY(hv_vmbus_channel_msg_info)  msg_list_entry;
124         /*
125          * So far, this is only used to handle
126          * gpadl body message
127          */
128         TAILQ_HEAD(, hv_vmbus_channel_msg_info) sub_msg_list_anchor;
129         /*
130          * Synchronize the request/response if
131          * needed.
132          * KYS: Use a semaphore for now.
133          * Not perf critical.
134          */
135         struct sema                             wait_sema;
136         hv_vmbus_channel_msg_response           response;
137         uint32_t                                message_size;
138         /**
139          * The channel message that goes out on
140          *  the "wire". It will contain at
141          *  minimum the
142          *  hv_vmbus_channel_msg_header
143          * header.
144          */
145         unsigned char                           msg[0];
146 } hv_vmbus_channel_msg_info;
147
148 /*
149  * The format must be the same as hv_vm_data_gpa_direct
150  */
151 typedef struct hv_vmbus_channel_packet_page_buffer {
152         uint16_t                type;
153         uint16_t                data_offset8;
154         uint16_t                length8;
155         uint16_t                flags;
156         uint64_t                transaction_id;
157         uint32_t                reserved;
158         uint32_t                range_count;
159         hv_vmbus_page_buffer    range[HV_MAX_PAGE_BUFFER_COUNT];
160 } __packed hv_vmbus_channel_packet_page_buffer;
161
162 /*
163  * The format must be the same as hv_vm_data_gpa_direct
164  */
165 typedef struct hv_vmbus_channel_packet_multipage_buffer {
166         uint16_t                        type;
167         uint16_t                        data_offset8;
168         uint16_t                        length8;
169         uint16_t                        flags;
170         uint64_t                        transaction_id;
171         uint32_t                        reserved;
172         uint32_t                        range_count; /* Always 1 in this case */
173         hv_vmbus_multipage_buffer       range;
174 } __packed hv_vmbus_channel_packet_multipage_buffer;
175
176 enum {
177         HV_VMBUS_MESSAGE_CONNECTION_ID  = 1,
178         HV_VMBUS_MESSAGE_PORT_ID        = 1,
179         HV_VMBUS_EVENT_CONNECTION_ID    = 2,
180         HV_VMBUS_EVENT_PORT_ID          = 2,
181         HV_VMBUS_MONITOR_CONNECTION_ID  = 3,
182         HV_VMBUS_MONITOR_PORT_ID        = 3,
183         HV_VMBUS_MESSAGE_SINT           = 2
184 };
185
186 #define HV_PRESENT_BIT          0x80000000
187
188 #define HV_HYPERCALL_PARAM_ALIGN sizeof(uint64_t)
189
190 typedef struct {
191         uint64_t        guest_id;
192         void*           hypercall_page;
193         hv_bool_uint8_t syn_ic_initialized;
194
195         hv_vmbus_handle syn_ic_msg_page[MAXCPU];
196         hv_vmbus_handle syn_ic_event_page[MAXCPU];
197         /*
198          * For FreeBSD cpuid to Hyper-V vcpuid mapping.
199          */
200         uint32_t        hv_vcpu_index[MAXCPU];
201         /*
202          * Each cpu has its own software interrupt handler for channel
203          * event and msg handling.
204          */
205         struct taskqueue                *hv_event_queue[MAXCPU];
206         struct intr_event               *hv_msg_intr_event[MAXCPU];
207         void                            *msg_swintr[MAXCPU];
208         /*
209          * Host use this vector to intrrupt guest for vmbus channel
210          * event and msg.
211          */
212         unsigned int                    hv_cb_vector;
213 } hv_vmbus_context;
214
215 /*
216  * Define hypervisor message types
217  */
218 typedef enum {
219
220         HV_MESSAGE_TYPE_NONE                            = 0x00000000,
221
222         /*
223          * Memory access messages
224          */
225         HV_MESSAGE_TYPE_UNMAPPED_GPA                    = 0x80000000,
226         HV_MESSAGE_TYPE_GPA_INTERCEPT                   = 0x80000001,
227
228         /*
229          * Timer notification messages
230          */
231         HV_MESSAGE_TIMER_EXPIRED                        = 0x80000010,
232
233         /*
234          * Error messages
235          */
236         HV_MESSAGE_TYPE_INVALID_VP_REGISTER_VALUE       = 0x80000020,
237         HV_MESSAGE_TYPE_UNRECOVERABLE_EXCEPTION         = 0x80000021,
238         HV_MESSAGE_TYPE_UNSUPPORTED_FEATURE             = 0x80000022,
239
240         /*
241          * Trace buffer complete messages
242          */
243         HV_MESSAGE_TYPE_EVENT_LOG_BUFFER_COMPLETE       = 0x80000040,
244
245         /*
246          * Platform-specific processor intercept messages
247          */
248         HV_MESSAGE_TYPE_X64_IO_PORT_INTERCEPT           = 0x80010000,
249         HV_MESSAGE_TYPE_X64_MSR_INTERCEPT               = 0x80010001,
250         HV_MESSAGE_TYPE_X64_CPU_INTERCEPT               = 0x80010002,
251         HV_MESSAGE_TYPE_X64_EXCEPTION_INTERCEPT         = 0x80010003,
252         HV_MESSAGE_TYPE_X64_APIC_EOI                    = 0x80010004,
253         HV_MESSAGE_TYPE_X64_LEGACY_FP_ERROR             = 0x80010005
254
255 } hv_vmbus_msg_type;
256
257 /*
258  * Define port identifier type
259  */
260 typedef union _hv_vmbus_port_id {
261         uint32_t        as_uint32_t;
262         struct {
263                 uint32_t        id:24;
264                 uint32_t        reserved:8;
265         } u ;
266 } hv_vmbus_port_id;
267
268 /*
269  * Define synthetic interrupt controller message flag
270  */
271 typedef union {
272         uint8_t as_uint8_t;
273         struct {
274                 uint8_t message_pending:1;
275                 uint8_t reserved:7;
276         } u;
277 } hv_vmbus_msg_flags;
278
279 typedef uint64_t hv_vmbus_partition_id;
280
281 /*
282  * Define synthetic interrupt controller message header
283  */
284 typedef struct {
285         hv_vmbus_msg_type       message_type;
286         uint8_t                 payload_size;
287         hv_vmbus_msg_flags      message_flags;
288         uint8_t                 reserved[2];
289         union {
290                 hv_vmbus_partition_id   sender;
291                 hv_vmbus_port_id        port;
292         } u;
293 } hv_vmbus_msg_header;
294
295 /*
296  *  Define synthetic interrupt controller message format
297  */
298 typedef struct {
299         hv_vmbus_msg_header     header;
300         union {
301                 uint64_t        payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT];
302         } u ;
303 } hv_vmbus_message;
304
305 /*
306  *  Maximum channels is determined by the size of the interrupt
307  *  page which is PAGE_SIZE. 1/2 of PAGE_SIZE is for
308  *  send endpoint interrupt and the other is receive
309  *  endpoint interrupt.
310  *
311  *   Note: (PAGE_SIZE >> 1) << 3 allocates 16348 channels
312  */
313 #define HV_MAX_NUM_CHANNELS                     (PAGE_SIZE >> 1) << 3
314
315 /*
316  * (The value here must be in multiple of 32)
317  */
318 #define HV_MAX_NUM_CHANNELS_SUPPORTED           256
319
320 /*
321  * VM Bus connection states
322  */
323 typedef enum {
324         HV_DISCONNECTED,
325         HV_CONNECTING,
326         HV_CONNECTED,
327         HV_DISCONNECTING
328 } hv_vmbus_connect_state;
329
330 #define HV_MAX_SIZE_CHANNEL_MESSAGE     HV_MESSAGE_PAYLOAD_BYTE_COUNT
331
332
333 typedef struct {
334         hv_vmbus_connect_state                  connect_state;
335         uint32_t                                next_gpadl_handle;
336         /**
337          * Represents channel interrupts. Each bit position
338          * represents a channel.
339          * When a channel sends an interrupt via VMBUS, it
340          * finds its bit in the send_interrupt_page, set it and
341          * calls Hv to generate a port event. The other end
342          * receives the port event and parse the
343          * recv_interrupt_page to see which bit is set
344          */
345         void                                    *interrupt_page;
346         void                                    *send_interrupt_page;
347         void                                    *recv_interrupt_page;
348         /*
349          * 2 pages - 1st page for parent->child
350          * notification and 2nd is child->parent
351          * notification
352          */
353         void                                    *monitor_page_1;
354         void                                    *monitor_page_2;
355         TAILQ_HEAD(, hv_vmbus_channel_msg_info) channel_msg_anchor;
356         struct mtx                              channel_msg_lock;
357         /**
358          * List of primary channels. Sub channels will be linked
359          * under their primary channel.
360          */
361         TAILQ_HEAD(, hv_vmbus_channel)          channel_anchor;
362         struct mtx                              channel_lock;
363
364         /**
365          * channel table for fast lookup through id.
366         */
367         hv_vmbus_channel                        **channels;
368 } hv_vmbus_connection;
369
370 typedef union {
371         uint64_t as_uint64_t;
372         struct {
373                 uint64_t build_number           : 16;
374                 uint64_t service_version        : 8; /* Service Pack, etc. */
375                 uint64_t minor_version          : 8;
376                 uint64_t major_version          : 8;
377                 /*
378                  * HV_GUEST_OS_MICROSOFT_IDS (If Vendor=MS)
379                  * HV_GUEST_OS_VENDOR
380                  */
381                 uint64_t os_id                  : 8;
382                 uint64_t vendor_id              : 16;
383         } u;
384 } hv_vmbus_x64_msr_guest_os_id_contents;
385
386
387 typedef union {
388         uint64_t as_uint64_t;
389         struct {
390                 uint64_t enable :1;
391                 uint64_t reserved :11;
392                 uint64_t guest_physical_address :52;
393         } u;
394 } hv_vmbus_x64_msr_hypercall_contents;
395
396 typedef union {
397         uint32_t as_uint32_t;
398         struct {
399                 uint32_t group_enable :4;
400                 uint32_t rsvd_z :28;
401         } u;
402 } hv_vmbus_monitor_trigger_state;
403
404 typedef union {
405         uint64_t as_uint64_t;
406         struct {
407                 uint32_t pending;
408                 uint32_t armed;
409         } u;
410 } hv_vmbus_monitor_trigger_group;
411
412 typedef struct {
413         hv_vmbus_connection_id  connection_id;
414         uint16_t                flag_number;
415         uint16_t                rsvd_z;
416 } hv_vmbus_monitor_parameter;
417
418 /*
419  * hv_vmbus_monitor_page Layout
420  * ------------------------------------------------------
421  * | 0   | trigger_state (4 bytes) | Rsvd1 (4 bytes)     |
422  * | 8   | trigger_group[0]                              |
423  * | 10  | trigger_group[1]                              |
424  * | 18  | trigger_group[2]                              |
425  * | 20  | trigger_group[3]                              |
426  * | 28  | Rsvd2[0]                                      |
427  * | 30  | Rsvd2[1]                                      |
428  * | 38  | Rsvd2[2]                                      |
429  * | 40  | next_check_time[0][0] | next_check_time[0][1] |
430  * | ...                                                 |
431  * | 240 | latency[0][0..3]                              |
432  * | 340 | Rsvz3[0]                                      |
433  * | 440 | parameter[0][0]                               |
434  * | 448 | parameter[0][1]                               |
435  * | ...                                                 |
436  * | 840 | Rsvd4[0]                                      |
437  * ------------------------------------------------------
438  */
439
440 typedef struct {
441         hv_vmbus_monitor_trigger_state  trigger_state;
442         uint32_t                        rsvd_z1;
443
444         hv_vmbus_monitor_trigger_group  trigger_group[4];
445         uint64_t                        rsvd_z2[3];
446
447         int32_t                         next_check_time[4][32];
448
449         uint16_t                        latency[4][32];
450         uint64_t                        rsvd_z3[32];
451
452         hv_vmbus_monitor_parameter      parameter[4][32];
453
454         uint8_t                         rsvd_z4[1984];
455 } hv_vmbus_monitor_page;
456
457 /*
458  * The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent
459  * is set by CPUID(HV_CPU_ID_FUNCTION_VERSION_AND_FEATURES).
460  */
461 typedef enum {
462         HV_CPU_ID_FUNCTION_VERSION_AND_FEATURES                 = 0x00000001,
463         HV_CPU_ID_FUNCTION_HV_VENDOR_AND_MAX_FUNCTION           = 0x40000000,
464         HV_CPU_ID_FUNCTION_HV_INTERFACE                         = 0x40000001,
465         /*
466          * The remaining functions depend on the value
467          * of hv_cpu_id_function_interface
468          */
469         HV_CPU_ID_FUNCTION_MS_HV_VERSION                        = 0x40000002,
470         HV_CPU_ID_FUNCTION_MS_HV_FEATURES                       = 0x40000003,
471         HV_CPU_ID_FUNCTION_MS_HV_ENLIGHTENMENT_INFORMATION      = 0x40000004,
472         HV_CPU_ID_FUNCTION_MS_HV_IMPLEMENTATION_LIMITS          = 0x40000005
473
474 } hv_vmbus_cpuid_function;
475
476 /*
477  * Define the format of the SIMP register
478  */
479 typedef union {
480         uint64_t as_uint64_t;
481         struct {
482                 uint64_t simp_enabled   : 1;
483                 uint64_t preserved      : 11;
484                 uint64_t base_simp_gpa  : 52;
485         } u;
486 } hv_vmbus_synic_simp;
487
488 /*
489  * Define the format of the SIEFP register
490  */
491 typedef union {
492         uint64_t as_uint64_t;
493         struct {
494                 uint64_t siefp_enabled  : 1;
495                 uint64_t preserved      : 11;
496                 uint64_t base_siefp_gpa : 52;
497         } u;
498 } hv_vmbus_synic_siefp;
499
500 /*
501  * Define synthetic interrupt source
502  */
503 typedef union {
504         uint64_t as_uint64_t;
505         struct {
506                 uint64_t vector         : 8;
507                 uint64_t reserved1      : 8;
508                 uint64_t masked         : 1;
509                 uint64_t auto_eoi       : 1;
510                 uint64_t reserved2      : 46;
511         } u;
512 } hv_vmbus_synic_sint;
513
514 /*
515  * Timer configuration register.
516  */
517 union hv_timer_config {
518         uint64_t as_uint64;
519         struct {
520                 uint64_t enable:1;
521                 uint64_t periodic:1;
522                 uint64_t lazy:1;
523                 uint64_t auto_enable:1;
524                 uint64_t reserved_z0:12;
525                 uint64_t sintx:4;
526                 uint64_t reserved_z1:44;
527         };
528 };
529
530 /*
531  * Define syn_ic control register
532  */
533 typedef union _hv_vmbus_synic_scontrol {
534     uint64_t as_uint64_t;
535     struct {
536         uint64_t enable         : 1;
537         uint64_t reserved       : 63;
538     } u;
539 } hv_vmbus_synic_scontrol;
540
541 /*
542  *  Define the hv_vmbus_post_message hypercall input structure
543  */
544 typedef struct {
545         hv_vmbus_connection_id  connection_id;
546         uint32_t                reserved;
547         hv_vmbus_msg_type       message_type;
548         uint32_t                payload_size;
549         uint64_t                payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT];
550 } hv_vmbus_input_post_message;
551
552 /*
553  * Define the synthetic interrupt controller event flags format
554  */
555 typedef union {
556         uint8_t         flags8[HV_EVENT_FLAGS_BYTE_COUNT];
557         uint32_t        flags32[HV_EVENT_FLAGS_DWORD_COUNT];
558 } hv_vmbus_synic_event_flags;
559
560 #define HV_X64_CPUID_MIN        (0x40000005)
561 #define HV_X64_CPUID_MAX        (0x4000ffff)
562
563 /*
564  * Declare the MSR used to identify the guest OS
565  */
566 #define HV_X64_MSR_GUEST_OS_ID  (0x40000000)
567 /*
568  *  Declare the MSR used to setup pages used to communicate with the hypervisor
569  */
570 #define HV_X64_MSR_HYPERCALL    (0x40000001)
571 /* MSR used to provide vcpu index */
572 #define HV_X64_MSR_VP_INDEX     (0x40000002)
573
574 #define HV_X64_MSR_TIME_REF_COUNT      (0x40000020)
575
576 /*
577  * Define synthetic interrupt controller model specific registers
578  */
579 #define HV_X64_MSR_SCONTROL   (0x40000080)
580 #define HV_X64_MSR_SVERSION   (0x40000081)
581 #define HV_X64_MSR_SIEFP      (0x40000082)
582 #define HV_X64_MSR_SIMP       (0x40000083)
583 #define HV_X64_MSR_EOM        (0x40000084)
584
585 #define HV_X64_MSR_SINT0      (0x40000090)
586 #define HV_X64_MSR_SINT1      (0x40000091)
587 #define HV_X64_MSR_SINT2      (0x40000092)
588 #define HV_X64_MSR_SINT3      (0x40000093)
589 #define HV_X64_MSR_SINT4      (0x40000094)
590 #define HV_X64_MSR_SINT5      (0x40000095)
591 #define HV_X64_MSR_SINT6      (0x40000096)
592 #define HV_X64_MSR_SINT7      (0x40000097)
593 #define HV_X64_MSR_SINT8      (0x40000098)
594 #define HV_X64_MSR_SINT9      (0x40000099)
595 #define HV_X64_MSR_SINT10     (0x4000009A)
596 #define HV_X64_MSR_SINT11     (0x4000009B)
597 #define HV_X64_MSR_SINT12     (0x4000009C)
598 #define HV_X64_MSR_SINT13     (0x4000009D)
599 #define HV_X64_MSR_SINT14     (0x4000009E)
600 #define HV_X64_MSR_SINT15     (0x4000009F)
601
602 /*
603  * Synthetic Timer MSRs. Four timers per vcpu.
604  */
605 #define HV_X64_MSR_STIMER0_CONFIG               0x400000B0
606 #define HV_X64_MSR_STIMER0_COUNT                0x400000B1
607 #define HV_X64_MSR_STIMER1_CONFIG               0x400000B2
608 #define HV_X64_MSR_STIMER1_COUNT                0x400000B3
609 #define HV_X64_MSR_STIMER2_CONFIG               0x400000B4
610 #define HV_X64_MSR_STIMER2_COUNT                0x400000B5
611 #define HV_X64_MSR_STIMER3_CONFIG               0x400000B6
612 #define HV_X64_MSR_STIMER3_COUNT                0x400000B7
613
614 /*
615  * Declare the various hypercall operations
616  */
617 typedef enum {
618         HV_CALL_POST_MESSAGE    = 0x005c,
619         HV_CALL_SIGNAL_EVENT    = 0x005d,
620 } hv_vmbus_call_code;
621
622 /**
623  * Global variables
624  */
625
626 extern hv_vmbus_context         hv_vmbus_g_context;
627 extern hv_vmbus_connection      hv_vmbus_g_connection;
628
629 typedef void (*vmbus_msg_handler)(hv_vmbus_channel_msg_header *msg);
630
631 typedef struct hv_vmbus_channel_msg_table_entry {
632         hv_vmbus_channel_msg_type    messageType;
633
634         vmbus_msg_handler   messageHandler;
635 } hv_vmbus_channel_msg_table_entry;
636
637 extern hv_vmbus_channel_msg_table_entry g_channel_message_table[];
638
639 /*
640  * Private, VM Bus functions
641  */
642
643 int                     hv_vmbus_ring_buffer_init(
644                                 hv_vmbus_ring_buffer_info       *ring_info,
645                                 void                            *buffer,
646                                 uint32_t                        buffer_len);
647
648 void                    hv_ring_buffer_cleanup(
649                                 hv_vmbus_ring_buffer_info       *ring_info);
650
651 int                     hv_ring_buffer_write(
652                                 hv_vmbus_ring_buffer_info       *ring_info,
653                                 hv_vmbus_sg_buffer_list         sg_buffers[],
654                                 uint32_t                        sg_buff_count,
655                                 boolean_t                       *need_sig);
656
657 int                     hv_ring_buffer_peek(
658                                 hv_vmbus_ring_buffer_info       *ring_info,
659                                 void                            *buffer,
660                                 uint32_t                        buffer_len);
661
662 int                     hv_ring_buffer_read(
663                                 hv_vmbus_ring_buffer_info       *ring_info,
664                                 void                            *buffer,
665                                 uint32_t                        buffer_len,
666                                 uint32_t                        offset);
667
668 uint32_t                hv_vmbus_get_ring_buffer_interrupt_mask(
669                                 hv_vmbus_ring_buffer_info       *ring_info);
670
671 void                    hv_vmbus_dump_ring_info(
672                                 hv_vmbus_ring_buffer_info       *ring_info,
673                                 char                            *prefix);
674
675 void                    hv_ring_buffer_read_begin(
676                                 hv_vmbus_ring_buffer_info       *ring_info);
677
678 uint32_t                hv_ring_buffer_read_end(
679                                 hv_vmbus_ring_buffer_info       *ring_info);
680
681 hv_vmbus_channel*       hv_vmbus_allocate_channel(void);
682 void                    hv_vmbus_free_vmbus_channel(hv_vmbus_channel *channel);
683 int                     hv_vmbus_request_channel_offers(void);
684 void                    hv_vmbus_release_unattached_channels(void);
685 int                     hv_vmbus_init(void);
686 void                    hv_vmbus_cleanup(void);
687
688 uint16_t                hv_vmbus_post_msg_via_msg_ipc(
689                                 hv_vmbus_connection_id  connection_id,
690                                 hv_vmbus_msg_type       message_type,
691                                 void                    *payload,
692                                 size_t                  payload_size);
693
694 uint16_t                hv_vmbus_signal_event(void *con_id);
695 void                    hv_vmbus_synic_init(void *irq_arg);
696 void                    hv_vmbus_synic_cleanup(void *arg);
697 int                     hv_vmbus_query_hypervisor_presence(void);
698
699 struct hv_device*       hv_vmbus_child_device_create(
700                                 hv_guid                 device_type,
701                                 hv_guid                 device_instance,
702                                 hv_vmbus_channel        *channel);
703
704 int                     hv_vmbus_child_device_register(
705                                         struct hv_device *child_dev);
706 int                     hv_vmbus_child_device_unregister(
707                                         struct hv_device *child_dev);
708
709 /**
710  * Connection interfaces
711  */
712 int                     hv_vmbus_connect(void);
713 int                     hv_vmbus_disconnect(void);
714 int                     hv_vmbus_post_message(void *buffer, size_t buf_size);
715 int                     hv_vmbus_set_event(hv_vmbus_channel *channel);
716 void                    hv_vmbus_on_events(int cpu);
717
718 /**
719  * Event Timer interfaces
720  */
721 void                    hv_et_init(void);
722 void                    hv_et_intr(struct trapframe*);
723
724 /*
725  * The guest OS needs to register the guest ID with the hypervisor.
726  * The guest ID is a 64 bit entity and the structure of this ID is
727  * specified in the Hyper-V specification:
728  *
729  * http://msdn.microsoft.com/en-us/library/windows/
730  * hardware/ff542653%28v=vs.85%29.aspx
731  *
732  * While the current guideline does not specify how FreeBSD guest ID(s)
733  * need to be generated, our plan is to publish the guidelines for
734  * FreeBSD and other guest operating systems that currently are hosted
735  * on Hyper-V. The implementation here conforms to this yet
736  * unpublished guidelines.
737  *
738  * Bit(s)
739  * 63 - Indicates if the OS is Open Source or not; 1 is Open Source
740  * 62:56 - Os Type; Linux is 0x100, FreeBSD is 0x200
741  * 55:48 - Distro specific identification
742  * 47:16 - FreeBSD kernel version number
743  * 15:0  - Distro specific identification
744  *
745  */
746
747 #define HV_FREEBSD_VENDOR_ID    0x8200
748 #define HV_FREEBSD_GUEST_ID     hv_generate_guest_id(0,0)
749
750 static inline  uint64_t hv_generate_guest_id(
751         uint8_t distro_id_part1,
752         uint16_t distro_id_part2)
753 {
754         uint64_t guest_id;
755         guest_id =  (((uint64_t)HV_FREEBSD_VENDOR_ID) << 48);
756         guest_id |= (((uint64_t)(distro_id_part1)) << 48);
757         guest_id |= (((uint64_t)(__FreeBSD_version)) << 16); /* in param.h */
758         guest_id |= ((uint64_t)(distro_id_part2));
759         return guest_id;
760 }
761
762 typedef struct {
763         unsigned int    vector;
764         void            *page_buffers[2 * MAXCPU];
765 } hv_setup_args;
766
767 #endif  /* __HYPERV_PRIV_H__ */