xref: /freebsd-14.2/sys/dev/hyperv/include/hyperv.h (revision 4cd995ff)
1 /*-
2  * Copyright (c) 2009-2012,2016 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 /**
32  * HyperV definitions for messages that are sent between instances of the
33  * Channel Management Library in separate partitions, or in some cases,
34  * back to itself.
35  */
36 
37 #ifndef __HYPERV_H__
38 #define __HYPERV_H__
39 
40 #include <sys/param.h>
41 #include <sys/mbuf.h>
42 #include <sys/queue.h>
43 #include <sys/malloc.h>
44 #include <sys/kthread.h>
45 #include <sys/taskqueue.h>
46 #include <sys/systm.h>
47 #include <sys/lock.h>
48 #include <sys/sema.h>
49 #include <sys/smp.h>
50 #include <sys/mutex.h>
51 #include <sys/bus.h>
52 #include <sys/sysctl.h>
53 #include <vm/vm.h>
54 #include <vm/vm_param.h>
55 #include <vm/pmap.h>
56 
57 #include <amd64/include/xen/synch_bitops.h>
58 #include <amd64/include/atomic.h>
59 #include <dev/hyperv/include/hyperv_busdma.h>
60 
61 /*
62  * VMBUS version is 32 bit, upper 16 bit for major_number and lower
63  * 16 bit for minor_number.
64  *
65  * 0.13  --  Windows Server 2008
66  * 1.1   --  Windows 7
67  * 2.4   --  Windows 8
68  * 3.0   --  Windows 8.1
69  */
70 #define VMBUS_VERSION_WS2008		((0 << 16) | (13))
71 #define VMBUS_VERSION_WIN7		((1 << 16) | (1))
72 #define VMBUS_VERSION_WIN8		((2 << 16) | (4))
73 #define VMBUS_VERSION_WIN8_1		((3 << 16) | (0))
74 
75 #define VMBUS_VERSION_MAJOR(ver)	(((uint32_t)(ver)) >> 16)
76 #define VMBUS_VERSION_MINOR(ver)	(((uint32_t)(ver)) & 0xffff)
77 
78 struct hyperv_guid {
79 	uint8_t		hv_guid[16];
80 } __packed;
81 
82 #define HYPERV_GUID_STRLEN	40
83 
84 int	hyperv_guid2str(const struct hyperv_guid *, char *, size_t);
85 
86 typedef struct {
87 	/*
88 	 * offset in bytes from the start of ring data below
89 	 */
90 	volatile uint32_t       write_index;
91 	/*
92 	 * offset in bytes from the start of ring data below
93 	 */
94 	volatile uint32_t       read_index;
95 	/*
96 	 * NOTE: The interrupt_mask field is used only for channels, but
97 	 * vmbus connection also uses this data structure
98 	 */
99 	volatile uint32_t       interrupt_mask;
100 	/* pad it to PAGE_SIZE so that data starts on a page */
101 	uint8_t                 reserved[4084];
102 
103 	/*
104 	 * WARNING: Ring data starts here
105 	 *  !!! DO NOT place any fields below this !!!
106 	 */
107 	uint8_t			buffer[0];	/* doubles as interrupt mask */
108 } __packed hv_vmbus_ring_buffer;
109 
110 typedef struct {
111 	hv_vmbus_ring_buffer*	ring_buffer;
112 	struct mtx		ring_lock;
113 	uint32_t		ring_data_size;	/* ring_size */
114 } hv_vmbus_ring_buffer_info;
115 
116 typedef void	(*vmbus_chan_callback_t)(void *);
117 
118 typedef struct hv_vmbus_channel {
119 	device_t			ch_dev;
120 	struct vmbus_softc		*vmbus_sc;
121 	uint32_t			ch_flags;	/* VMBUS_CHAN_FLAG_ */
122 	uint32_t			ch_id;		/* channel id */
123 
124 	/*
125 	 * These are based on the offer_msg.monitor_id.
126 	 * Save it here for easy access.
127 	 */
128 	int				ch_montrig_idx;	/* MNF trig index */
129 	uint32_t			ch_montrig_mask;/* MNF trig mask */
130 
131 	/*
132 	 * send to parent
133 	 */
134 	hv_vmbus_ring_buffer_info	outbound;
135 	/*
136 	 * receive from parent
137 	 */
138 	hv_vmbus_ring_buffer_info	inbound;
139 
140 	struct taskqueue		*ch_tq;
141 	struct task			ch_task;
142 	vmbus_chan_callback_t		ch_cb;
143 	void				*ch_cbarg;
144 
145 	struct hyperv_mon_param		*ch_monprm;
146 	struct hyperv_dma		ch_monprm_dma;
147 
148 	int				ch_cpuid;	/* owner cpu */
149 	/*
150 	 * Virtual cpuid for ch_cpuid; it is used to communicate cpuid
151 	 * related information w/ Hyper-V.  If MSR_HV_VP_INDEX does not
152 	 * exist, ch_vcpuid will always be 0 for compatibility.
153 	 */
154 	uint32_t			ch_vcpuid;
155 
156 	/*
157 	 * If this is a primary channel, ch_subchan* fields
158 	 * contain sub-channels belonging to this primary
159 	 * channel.
160 	 */
161 	struct mtx			ch_subchan_lock;
162 	TAILQ_HEAD(, hv_vmbus_channel)	ch_subchans;
163 	int				ch_subchan_cnt;
164 
165 	/* If this is a sub-channel */
166 	TAILQ_ENTRY(hv_vmbus_channel)	ch_sublink;	/* sub-channel link */
167 	struct hv_vmbus_channel		*ch_prichan;	/* owner primary chan */
168 
169 	/*
170 	 * Driver private data
171 	 */
172 	void				*hv_chan_priv1;
173 	void				*hv_chan_priv2;
174 	void				*hv_chan_priv3;
175 
176 	void				*ch_bufring;	/* TX+RX bufrings */
177 	struct hyperv_dma		ch_bufring_dma;
178 	uint32_t			ch_bufring_gpadl;
179 
180 	struct task			ch_detach_task;
181 	TAILQ_ENTRY(hv_vmbus_channel)	ch_prilink;	/* primary chan link */
182 	uint32_t			ch_subidx;	/* subchan index */
183 	volatile uint32_t		ch_stflags;	/* atomic-op */
184 							/* VMBUS_CHAN_ST_ */
185 	struct hyperv_guid		ch_guid_type;
186 	struct hyperv_guid		ch_guid_inst;
187 
188 	struct sysctl_ctx_list		ch_sysctl_ctx;
189 } hv_vmbus_channel;
190 
191 #define VMBUS_CHAN_ISPRIMARY(chan)	((chan)->ch_subidx == 0)
192 
193 #define VMBUS_CHAN_FLAG_HASMNF		0x0001
194 /*
195  * If this flag is set, this channel's interrupt will be masked in ISR,
196  * and the RX bufring will be drained before this channel's interrupt is
197  * unmasked.
198  *
199  * This flag is turned on by default.  Drivers can turn it off according
200  * to their own requirement.
201  */
202 #define VMBUS_CHAN_FLAG_BATCHREAD	0x0002
203 
204 #define VMBUS_CHAN_ST_OPENED_SHIFT	0
205 #define VMBUS_CHAN_ST_OPENED		(1 << VMBUS_CHAN_ST_OPENED_SHIFT)
206 
207 /**
208  * @brief Get physical address from virtual
209  */
210 static inline unsigned long
211 hv_get_phys_addr(void *virt)
212 {
213 	unsigned long ret;
214 	ret = (vtophys(virt) | ((vm_offset_t) virt & PAGE_MASK));
215 	return (ret);
216 }
217 
218 static __inline struct hv_vmbus_channel *
219 vmbus_get_channel(device_t dev)
220 {
221 	return device_get_ivars(dev);
222 }
223 
224 #endif  /* __HYPERV_H__ */
225