xref: /freebsd/sys/dev/hyperv/vmbus/vmbus_chanvar.h (revision d0b2dbfa)
1 /*-
2  * Copyright (c) 2016 Microsoft Corp.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #ifndef _VMBUS_CHANVAR_H_
28 #define _VMBUS_CHANVAR_H_
29 
30 #include <sys/param.h>
31 #include <sys/callout.h>
32 #include <sys/lock.h>
33 #include <sys/mutex.h>
34 #include <sys/queue.h>
35 #include <sys/sysctl.h>
36 #include <sys/sx.h>
37 #include <sys/taskqueue.h>
38 
39 #include <dev/hyperv/include/hyperv.h>
40 #include <dev/hyperv/include/vmbus.h>
41 #include <dev/hyperv/vmbus/vmbus_brvar.h>
42 
43 struct vmbus_channel {
44 	/*
45 	 * NOTE:
46 	 * Fields before ch_txbr are only accessed on this channel's
47 	 * target CPU.
48 	 */
49 	uint32_t			ch_flags;	/* VMBUS_CHAN_FLAG_ */
50 	int				ch_poll_flags;	/* callout flags */
51 
52 	/*
53 	 * RX bufring; immediately following ch_txbr.
54 	 */
55 	struct vmbus_rxbr		ch_rxbr;
56 
57 	struct taskqueue		*ch_tq;
58 	struct task			ch_task;
59 	struct task			ch_poll_task;
60 	sbintime_t			ch_poll_intvl;
61 	struct callout			ch_poll_timeo;
62 	vmbus_chan_callback_t		ch_cb;
63 	void				*ch_cbarg;
64 
65 	/*
66 	 * TX bufring; at the beginning of ch_bufring.
67 	 *
68 	 * NOTE:
69 	 * Put TX bufring and the following MNF/evtflag to a new
70 	 * cacheline, since they will be accessed on all CPUs by
71 	 * locking ch_txbr first.
72 	 *
73 	 * XXX
74 	 * TX bufring and following MNF/evtflags do _not_ fit in
75 	 * one 64B cacheline.
76 	 */
77 	struct vmbus_txbr		ch_txbr __aligned(CACHE_LINE_SIZE);
78 	uint32_t			ch_txflags;	/* VMBUS_CHAN_TXF_ */
79 
80 	/*
81 	 * These are based on the vmbus_chanmsg_choffer.chm_montrig.
82 	 * Save it here for easy access.
83 	 */
84 	uint32_t			ch_montrig_mask;/* MNF trig mask */
85 	volatile uint32_t		*ch_montrig;	/* MNF trigger loc. */
86 
87 	/*
88 	 * These are based on the vmbus_chanmsg_choffer.chm_chanid.
89 	 * Save it here for easy access.
90 	 */
91 	u_long				ch_evtflag_mask;/* event flag */
92 	volatile u_long			*ch_evtflag;	/* event flag loc. */
93 
94 	/*
95 	 * Rarely used fields.
96 	 */
97 
98 	struct hyperv_mon_param		*ch_monprm;
99 
100 	uint32_t			ch_id;		/* channel id */
101 	device_t			ch_dev;
102 	struct vmbus_softc		*ch_vmbus;
103 
104 	int				ch_cpuid;	/* owner cpu */
105 	/*
106 	 * Virtual cpuid for ch_cpuid; it is used to communicate cpuid
107 	 * related information w/ Hyper-V.  If MSR_HV_VP_INDEX does not
108 	 * exist, ch_vcpuid will always be 0 for compatibility.
109 	 */
110 	uint32_t			ch_vcpuid;
111 
112 	/*
113 	 * If this is a primary channel, ch_subchan* fields
114 	 * contain sub-channels belonging to this primary
115 	 * channel.
116 	 */
117 	struct mtx			ch_subchan_lock;
118 	TAILQ_HEAD(, vmbus_channel)	ch_subchans;
119 	int				ch_subchan_cnt;
120 
121 	/* If this is a sub-channel */
122 	TAILQ_ENTRY(vmbus_channel)	ch_sublink;	/* sub-channel link */
123 	struct vmbus_channel		*ch_prichan;	/* owner primary chan */
124 
125 	void				*ch_bufring;	/* TX+RX bufrings */
126 	size_t				ch_bufring_size;
127 	uint32_t			ch_bufring_gpadl;
128 
129 	struct task			ch_attach_task;	/* run in ch_mgmt_tq */
130 	struct task			ch_detach_task;	/* run in ch_mgmt_tq */
131 	struct taskqueue		*ch_mgmt_tq;
132 
133 	/* If this is a primary channel */
134 	TAILQ_ENTRY(vmbus_channel)	ch_prilink;	/* primary chan link */
135 
136 	TAILQ_ENTRY(vmbus_channel)	ch_link;	/* channel link */
137 	uint32_t			ch_subidx;	/* subchan index */
138 	volatile uint32_t		ch_stflags;	/* atomic-op */
139 							/* VMBUS_CHAN_ST_ */
140 	struct hyperv_guid		ch_guid_type;
141 	struct hyperv_guid		ch_guid_inst;
142 
143 	struct sx			ch_orphan_lock;
144 	struct vmbus_xact_ctx		*ch_orphan_xact;
145 
146 	int				ch_refs;
147 
148 	/*
149 	 * These are for HyperV socket channel only
150 	 */
151 	bool				ch_is_hvs;
152 	uint8_t				ch_hvs_conn_from_host;
153 
154 	struct sysctl_ctx_list		ch_sysctl_ctx;
155 } __aligned(CACHE_LINE_SIZE);
156 
157 #define VMBUS_CHAN_ISPRIMARY(chan)	((chan)->ch_subidx == 0)
158 
159 /*
160  * If this flag is set, this channel's interrupt will be masked in ISR,
161  * and the RX bufring will be drained before this channel's interrupt is
162  * unmasked.
163  *
164  * This flag is turned on by default.  Drivers can turn it off according
165  * to their own requirement.
166  */
167 #define VMBUS_CHAN_FLAG_BATCHREAD	0x0002
168 
169 #define VMBUS_CHAN_TXF_HASMNF		0x0001
170 
171 #define VMBUS_CHAN_ST_OPENED_SHIFT	0
172 #define VMBUS_CHAN_ST_ONPRIL_SHIFT	1
173 #define VMBUS_CHAN_ST_ONSUBL_SHIFT	2
174 #define VMBUS_CHAN_ST_ONLIST_SHIFT	3
175 #define VMBUS_CHAN_ST_REVOKED_SHIFT	4	/* sticky */
176 #define VMBUS_CHAN_ST_OPENED		(1 << VMBUS_CHAN_ST_OPENED_SHIFT)
177 #define VMBUS_CHAN_ST_ONPRIL		(1 << VMBUS_CHAN_ST_ONPRIL_SHIFT)
178 #define VMBUS_CHAN_ST_ONSUBL		(1 << VMBUS_CHAN_ST_ONSUBL_SHIFT)
179 #define VMBUS_CHAN_ST_ONLIST		(1 << VMBUS_CHAN_ST_ONLIST_SHIFT)
180 #define VMBUS_CHAN_ST_REVOKED		(1 << VMBUS_CHAN_ST_REVOKED_SHIFT)
181 
182 struct vmbus_softc;
183 struct vmbus_message;
184 
185 void		vmbus_event_proc(struct vmbus_softc *, int);
186 void		vmbus_event_proc_compat(struct vmbus_softc *, int);
187 void		vmbus_chan_msgproc(struct vmbus_softc *,
188 		    const struct vmbus_message *);
189 void		vmbus_chan_destroy_all(struct vmbus_softc *);
190 
191 #endif	/* !_VMBUS_CHANVAR_H_ */
192