]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/hyperv/netvsc/if_hnvar.h
MFC 307985-307988
[FreeBSD/stable/10.git] / sys / dev / hyperv / netvsc / if_hnvar.h
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  * $FreeBSD$
27  */
28
29 #ifndef _IF_HNVAR_H_
30 #define _IF_HNVAR_H_
31
32 #include <sys/param.h>
33
34 #include <dev/hyperv/include/vmbus.h>
35 #include <dev/hyperv/netvsc/if_hnreg.h>
36
37 struct hn_softc;
38
39 struct vmbus_channel;
40 struct hn_send_ctx;
41
42 typedef void            (*hn_sent_callback_t)
43                         (struct hn_send_ctx *, struct hn_softc *,
44                          struct vmbus_channel *, const void *, int);
45
46 struct hn_send_ctx {
47         hn_sent_callback_t      hn_cb;
48         void                    *hn_cbarg;
49 };
50
51 #define HN_NDIS_VLAN_INFO_INVALID       0xffffffff
52 #define HN_NDIS_RXCSUM_INFO_INVALID     0
53 #define HN_NDIS_HASH_INFO_INVALID       0
54
55 struct hn_recvinfo {
56         uint32_t                        vlan_info;
57         uint32_t                        csum_info;
58         uint32_t                        hash_info;
59         uint32_t                        hash_value;
60 };
61
62 #define HN_SEND_CTX_INITIALIZER(cb, cbarg)      \
63 {                                               \
64         .hn_cb          = cb,                   \
65         .hn_cbarg       = cbarg                 \
66 }
67
68 static __inline void
69 hn_send_ctx_init(struct hn_send_ctx *sndc, hn_sent_callback_t cb, void *cbarg)
70 {
71
72         sndc->hn_cb = cb;
73         sndc->hn_cbarg = cbarg;
74 }
75
76 static __inline int
77 hn_nvs_send(struct vmbus_channel *chan, uint16_t flags,
78     void *nvs_msg, int nvs_msglen, struct hn_send_ctx *sndc)
79 {
80
81         return (vmbus_chan_send(chan, VMBUS_CHANPKT_TYPE_INBAND, flags,
82             nvs_msg, nvs_msglen, (uint64_t)(uintptr_t)sndc));
83 }
84
85 static __inline int
86 hn_nvs_send_sglist(struct vmbus_channel *chan, struct vmbus_gpa sg[], int sglen,
87     void *nvs_msg, int nvs_msglen, struct hn_send_ctx *sndc)
88 {
89
90         return (vmbus_chan_send_sglist(chan, sg, sglen, nvs_msg, nvs_msglen,
91             (uint64_t)(uintptr_t)sndc));
92 }
93
94 struct vmbus_xact;
95 struct rndis_packet_msg;
96
97 int             hn_rndis_attach(struct hn_softc *sc, int mtu);
98 void            hn_rndis_detach(struct hn_softc *sc);
99 int             hn_rndis_conf_rss(struct hn_softc *sc, uint16_t flags);
100 void            *hn_rndis_pktinfo_append(struct rndis_packet_msg *,
101                     size_t pktsize, size_t pi_dlen, uint32_t pi_type);
102 int             hn_rndis_query_rsscaps(struct hn_softc *sc, int *rxr_cnt);
103 int             hn_rndis_get_eaddr(struct hn_softc *sc, uint8_t *eaddr);
104 int             hn_rndis_get_linkstatus(struct hn_softc *sc,
105                     uint32_t *link_status);
106 /* filter: NDIS_PACKET_TYPE_. */
107 int             hn_rndis_set_rxfilter(struct hn_softc *sc, uint32_t filter);
108
109 int             hn_nvs_attach(struct hn_softc *sc, int mtu);
110 void            hn_nvs_detach(struct hn_softc *sc);
111 int             hn_nvs_alloc_subchans(struct hn_softc *sc, int *nsubch);
112 void            hn_nvs_sent_xact(struct hn_send_ctx *sndc, struct hn_softc *sc,
113                     struct vmbus_channel *chan, const void *data, int dlen);
114 int             hn_nvs_send_rndis_ctrl(struct vmbus_channel *chan,
115                     struct hn_send_ctx *sndc, struct vmbus_gpa *gpa,
116                     int gpa_cnt);
117
118 int             hn_rxpkt(struct hn_rx_ring *rxr, const void *data, int dlen,
119                     const struct hn_recvinfo *info);
120 void            hn_chan_rollup(struct hn_rx_ring *rxr, struct hn_tx_ring *txr);
121 void            hn_link_status_update(struct hn_softc *sc);
122 void            hn_network_change(struct hn_softc *sc);
123
124 extern struct hn_send_ctx       hn_send_ctx_none;
125
126 #endif  /* !_IF_HNVAR_H_ */