19fbe302bSMichael S. Tsirkin #ifndef _LINUX_VIRTIO_NET_H
29fbe302bSMichael S. Tsirkin #define _LINUX_VIRTIO_NET_H
39fbe302bSMichael S. Tsirkin /* This header is BSD licensed so anyone can use the definitions to implement
49fbe302bSMichael S. Tsirkin  * compatible drivers/servers.
59fbe302bSMichael S. Tsirkin  *
69fbe302bSMichael S. Tsirkin  * Redistribution and use in source and binary forms, with or without
79fbe302bSMichael S. Tsirkin  * modification, are permitted provided that the following conditions
89fbe302bSMichael S. Tsirkin  * are met:
99fbe302bSMichael S. Tsirkin  * 1. Redistributions of source code must retain the above copyright
109fbe302bSMichael S. Tsirkin  *    notice, this list of conditions and the following disclaimer.
119fbe302bSMichael S. Tsirkin  * 2. Redistributions in binary form must reproduce the above copyright
129fbe302bSMichael S. Tsirkin  *    notice, this list of conditions and the following disclaimer in the
139fbe302bSMichael S. Tsirkin  *    documentation and/or other materials provided with the distribution.
149fbe302bSMichael S. Tsirkin  * 3. Neither the name of IBM nor the names of its contributors
159fbe302bSMichael S. Tsirkin  *    may be used to endorse or promote products derived from this software
169fbe302bSMichael S. Tsirkin  *    without specific prior written permission.
179fbe302bSMichael S. Tsirkin  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
189fbe302bSMichael S. Tsirkin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199fbe302bSMichael S. Tsirkin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
209fbe302bSMichael S. Tsirkin  * ARE DISCLAIMED.  IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
219fbe302bSMichael S. Tsirkin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
229fbe302bSMichael S. Tsirkin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
239fbe302bSMichael S. Tsirkin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
249fbe302bSMichael S. Tsirkin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
259fbe302bSMichael S. Tsirkin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
269fbe302bSMichael S. Tsirkin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
279fbe302bSMichael S. Tsirkin  * SUCH DAMAGE. */
289fbe302bSMichael S. Tsirkin #include "standard-headers/linux/types.h"
299fbe302bSMichael S. Tsirkin #include "standard-headers/linux/virtio_ids.h"
309fbe302bSMichael S. Tsirkin #include "standard-headers/linux/virtio_config.h"
319fbe302bSMichael S. Tsirkin #include "standard-headers/linux/virtio_types.h"
329fbe302bSMichael S. Tsirkin #include "standard-headers/linux/if_ether.h"
339fbe302bSMichael S. Tsirkin 
349fbe302bSMichael S. Tsirkin /* The feature bitmap for virtio net */
359fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CSUM	0	/* Host handles pkts w/ partial csum */
369fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_CSUM	1	/* Guest handles pkts w/ partial csum */
37f56fc2d3SMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_GUEST_OFFLOADS 2 /* Dynamic offload configuration. */
38dbdfea92SCornelia Huck #define VIRTIO_NET_F_MTU	3	/* Initial MTU advice */
399fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_MAC	5	/* Host has given MAC address. */
409fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_TSO4	7	/* Guest can handle TSOv4 in. */
419fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_TSO6	8	/* Guest can handle TSOv6 in. */
429fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_ECN	9	/* Guest can handle TSO[6] w/ ECN in. */
439fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_UFO	10	/* Guest can handle UFO in. */
449fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_HOST_TSO4	11	/* Host can handle TSOv4 in. */
459fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_HOST_TSO6	12	/* Host can handle TSOv6 in. */
469fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_HOST_ECN	13	/* Host can handle TSO[6] w/ ECN in. */
479fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_HOST_UFO	14	/* Host can handle UFO in. */
489fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_MRG_RXBUF	15	/* Host can merge receive buffers. */
499fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_STATUS	16	/* virtio_net_config.status available */
509fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_VQ	17	/* Control channel available */
519fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_RX	18	/* Control channel RX mode support */
529fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_VLAN	19	/* Control channel VLAN filtering */
539fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_RX_EXTRA 20	/* Extra RX mode control support */
549fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GUEST_ANNOUNCE 21	/* Guest can announce device on the
559fbe302bSMichael S. Tsirkin 					 * network */
569fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_MQ	22	/* Device supports Receive Flow
579fbe302bSMichael S. Tsirkin 					 * Steering */
589fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_CTRL_MAC_ADDR 23	/* Set MAC address */
59*da3c22c7SThomas Huth #define VIRTIO_NET_F_VQ_NOTF_COAL 52	/* Device supports virtqueue notification coalescing */
60d525f73fSChenyi Qiang #define VIRTIO_NET_F_NOTF_COAL	53	/* Device supports notifications coalescing */
6193d7620cSAvihai Horon #define VIRTIO_NET_F_GUEST_USO4	54	/* Guest can handle USOv4 in. */
6293d7620cSAvihai Horon #define VIRTIO_NET_F_GUEST_USO6	55	/* Guest can handle USOv6 in. */
6393d7620cSAvihai Horon #define VIRTIO_NET_F_HOST_USO	56	/* Host can handle USO in. */
64dc6f8d45SCornelia Huck #define VIRTIO_NET_F_HASH_REPORT  57	/* Supports hash report */
65d0bf492fSCédric Le Goater #define VIRTIO_NET_F_GUEST_HDRLEN  59	/* Guest provides the exact hdr_len value. */
66dc6f8d45SCornelia Huck #define VIRTIO_NET_F_RSS	  60	/* Supports RSS RX steering */
67dc6f8d45SCornelia Huck #define VIRTIO_NET_F_RSC_EXT	  61	/* extended coalescing info */
6877d361b1SEric Auger #define VIRTIO_NET_F_STANDBY	  62	/* Act as standby for another device
6977d361b1SEric Auger 					 * with the same MAC.
7077d361b1SEric Auger 					 */
719f2d175dSPaolo Bonzini #define VIRTIO_NET_F_SPEED_DUPLEX 63	/* Device set linkspeed and duplex */
729f2d175dSPaolo Bonzini 
739fbe302bSMichael S. Tsirkin #ifndef VIRTIO_NET_NO_LEGACY
749fbe302bSMichael S. Tsirkin #define VIRTIO_NET_F_GSO	6	/* Host handles pkts w/ any GSO type */
759fbe302bSMichael S. Tsirkin #endif /* VIRTIO_NET_NO_LEGACY */
769fbe302bSMichael S. Tsirkin 
779fbe302bSMichael S. Tsirkin #define VIRTIO_NET_S_LINK_UP	1	/* Link is up */
789fbe302bSMichael S. Tsirkin #define VIRTIO_NET_S_ANNOUNCE	2	/* Announcement is needed */
799fbe302bSMichael S. Tsirkin 
80dc6f8d45SCornelia Huck /* supported/enabled hash types */
81dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_IPv4          (1 << 0)
82dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_TCPv4         (1 << 1)
83dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_UDPv4         (1 << 2)
84dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_IPv6          (1 << 3)
85dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_TCPv6         (1 << 4)
86dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_UDPv6         (1 << 5)
87dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_IP_EX         (1 << 6)
88dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_TCP_EX        (1 << 7)
89dc6f8d45SCornelia Huck #define VIRTIO_NET_RSS_HASH_TYPE_UDP_EX        (1 << 8)
90dc6f8d45SCornelia Huck 
919fbe302bSMichael S. Tsirkin struct virtio_net_config {
929fbe302bSMichael S. Tsirkin 	/* The config defining mac address (if VIRTIO_NET_F_MAC) */
939fbe302bSMichael S. Tsirkin 	uint8_t mac[ETH_ALEN];
949fbe302bSMichael S. Tsirkin 	/* See VIRTIO_NET_F_STATUS and VIRTIO_NET_S_* above */
95e6546342SJason Wang 	__virtio16 status;
969fbe302bSMichael S. Tsirkin 	/* Maximum number of each of transmit and receive queues;
979fbe302bSMichael S. Tsirkin 	 * see VIRTIO_NET_F_MQ and VIRTIO_NET_CTRL_MQ.
989fbe302bSMichael S. Tsirkin 	 * Legal values are between 1 and 0x8000
999fbe302bSMichael S. Tsirkin 	 */
100e6546342SJason Wang 	__virtio16 max_virtqueue_pairs;
101dbdfea92SCornelia Huck 	/* Default maximum transmit unit advice */
102e6546342SJason Wang 	__virtio16 mtu;
1039f2d175dSPaolo Bonzini 	/*
1049f2d175dSPaolo Bonzini 	 * speed, in units of 1Mb. All values 0 to INT_MAX are legal.
1059f2d175dSPaolo Bonzini 	 * Any other value stands for unknown.
1069f2d175dSPaolo Bonzini 	 */
1079f2d175dSPaolo Bonzini 	uint32_t speed;
1089f2d175dSPaolo Bonzini 	/*
1099f2d175dSPaolo Bonzini 	 * 0x00 - half duplex
1109f2d175dSPaolo Bonzini 	 * 0x01 - full duplex
1119f2d175dSPaolo Bonzini 	 * Any other value stands for unknown.
1129f2d175dSPaolo Bonzini 	 */
1139f2d175dSPaolo Bonzini 	uint8_t duplex;
114dc6f8d45SCornelia Huck 	/* maximum size of RSS key */
115dc6f8d45SCornelia Huck 	uint8_t rss_max_key_size;
116dc6f8d45SCornelia Huck 	/* maximum number of indirection table entries */
117dc6f8d45SCornelia Huck 	uint16_t rss_max_indirection_table_length;
118dc6f8d45SCornelia Huck 	/* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
119dc6f8d45SCornelia Huck 	uint32_t supported_hash_types;
1209fbe302bSMichael S. Tsirkin } QEMU_PACKED;
1219fbe302bSMichael S. Tsirkin 
1229fbe302bSMichael S. Tsirkin /*
1239fbe302bSMichael S. Tsirkin  * This header comes first in the scatter-gather list.  If you don't
1249fbe302bSMichael S. Tsirkin  * specify GSO or CSUM features, you can simply ignore the header.
1259fbe302bSMichael S. Tsirkin  *
12651628b18SChristian Borntraeger  * This is bitwise-equivalent to the legacy struct virtio_net_hdr_mrg_rxbuf,
12751628b18SChristian Borntraeger  * only flattened.
1289fbe302bSMichael S. Tsirkin  */
1299fbe302bSMichael S. Tsirkin struct virtio_net_hdr_v1 {
1309fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_F_NEEDS_CSUM	1	/* Use csum_start, csum_offset */
1319fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_F_DATA_VALID	2	/* Csum is valid */
132dc6f8d45SCornelia Huck #define VIRTIO_NET_HDR_F_RSC_INFO	4	/* rsc info in csum_ fields */
1339fbe302bSMichael S. Tsirkin 	uint8_t flags;
1349fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_GSO_NONE		0	/* Not a GSO frame */
1359fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_GSO_TCPV4	1	/* GSO frame, IPv4 TCP (TSO) */
1369fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_GSO_UDP		3	/* GSO frame, IPv4 UDP (UFO) */
1379fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_GSO_TCPV6	4	/* GSO frame, IPv6 TCP */
13893d7620cSAvihai Horon #define VIRTIO_NET_HDR_GSO_UDP_L4	5	/* GSO frame, IPv4& IPv6 UDP (USO) */
1399fbe302bSMichael S. Tsirkin #define VIRTIO_NET_HDR_GSO_ECN		0x80	/* TCP has ECN set */
1409fbe302bSMichael S. Tsirkin 	uint8_t gso_type;
1419fbe302bSMichael S. Tsirkin 	__virtio16 hdr_len;	/* Ethernet + IP + tcp/udp hdrs */
1429fbe302bSMichael S. Tsirkin 	__virtio16 gso_size;	/* Bytes to append to hdr_len per frame */
143dc6f8d45SCornelia Huck 	union {
144dc6f8d45SCornelia Huck 		struct {
145dc6f8d45SCornelia Huck 			__virtio16 csum_start;
146dc6f8d45SCornelia Huck 			__virtio16 csum_offset;
147dc6f8d45SCornelia Huck 		};
148dc6f8d45SCornelia Huck 		/* Checksum calculation */
149dc6f8d45SCornelia Huck 		struct {
150dc6f8d45SCornelia Huck 			/* Position to start checksumming from */
151dc6f8d45SCornelia Huck 			__virtio16 start;
152dc6f8d45SCornelia Huck 			/* Offset after that to place checksum */
153dc6f8d45SCornelia Huck 			__virtio16 offset;
154dc6f8d45SCornelia Huck 		} csum;
155dc6f8d45SCornelia Huck 		/* Receive Segment Coalescing */
156dc6f8d45SCornelia Huck 		struct {
157dc6f8d45SCornelia Huck 			/* Number of coalesced segments */
158dc6f8d45SCornelia Huck 			uint16_t segments;
159dc6f8d45SCornelia Huck 			/* Number of duplicated acks */
160dc6f8d45SCornelia Huck 			uint16_t dup_acks;
161dc6f8d45SCornelia Huck 		} rsc;
162dc6f8d45SCornelia Huck 	};
1639fbe302bSMichael S. Tsirkin 	__virtio16 num_buffers;	/* Number of merged rx buffers */
1649fbe302bSMichael S. Tsirkin };
16551628b18SChristian Borntraeger 
166dc6f8d45SCornelia Huck struct virtio_net_hdr_v1_hash {
167dc6f8d45SCornelia Huck 	struct virtio_net_hdr_v1 hdr;
168dc6f8d45SCornelia Huck 	uint32_t hash_value;
169dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_NONE            0
170dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_IPv4            1
171dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_TCPv4           2
172dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_UDPv4           3
173dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_IPv6            4
174dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_TCPv6           5
175dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_UDPv6           6
176dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_IPv6_EX         7
177dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_TCPv6_EX        8
178dc6f8d45SCornelia Huck #define VIRTIO_NET_HASH_REPORT_UDPv6_EX        9
179dc6f8d45SCornelia Huck 	uint16_t hash_report;
180dc6f8d45SCornelia Huck 	uint16_t padding;
181dc6f8d45SCornelia Huck };
182dc6f8d45SCornelia Huck 
18351628b18SChristian Borntraeger #ifndef VIRTIO_NET_NO_LEGACY
18451628b18SChristian Borntraeger /* This header comes first in the scatter-gather list.
18551628b18SChristian Borntraeger  * For legacy virtio, if VIRTIO_F_ANY_LAYOUT is not negotiated, it must
18651628b18SChristian Borntraeger  * be the first element of the scatter-gather list.  If you don't
18751628b18SChristian Borntraeger  * specify GSO or CSUM features, you can simply ignore the header. */
18851628b18SChristian Borntraeger struct virtio_net_hdr {
18951628b18SChristian Borntraeger 	/* See VIRTIO_NET_HDR_F_* */
19051628b18SChristian Borntraeger 	uint8_t flags;
19151628b18SChristian Borntraeger 	/* See VIRTIO_NET_HDR_GSO_* */
19251628b18SChristian Borntraeger 	uint8_t gso_type;
19351628b18SChristian Borntraeger 	__virtio16 hdr_len;		/* Ethernet + IP + tcp/udp hdrs */
19451628b18SChristian Borntraeger 	__virtio16 gso_size;		/* Bytes to append to hdr_len per frame */
19551628b18SChristian Borntraeger 	__virtio16 csum_start;	/* Position to start checksumming from */
19651628b18SChristian Borntraeger 	__virtio16 csum_offset;	/* Offset after that to place checksum */
19751628b18SChristian Borntraeger };
19851628b18SChristian Borntraeger 
19951628b18SChristian Borntraeger /* This is the version of the header to use when the MRG_RXBUF
20051628b18SChristian Borntraeger  * feature has been negotiated. */
20151628b18SChristian Borntraeger struct virtio_net_hdr_mrg_rxbuf {
20251628b18SChristian Borntraeger 	struct virtio_net_hdr hdr;
20351628b18SChristian Borntraeger 	__virtio16 num_buffers;	/* Number of merged rx buffers */
20451628b18SChristian Borntraeger };
2059fbe302bSMichael S. Tsirkin #endif /* ...VIRTIO_NET_NO_LEGACY */
2069fbe302bSMichael S. Tsirkin 
2079fbe302bSMichael S. Tsirkin /*
2089fbe302bSMichael S. Tsirkin  * Control virtqueue data structures
2099fbe302bSMichael S. Tsirkin  *
2109fbe302bSMichael S. Tsirkin  * The control virtqueue expects a header in the first sg entry
2119fbe302bSMichael S. Tsirkin  * and an ack/status response in the last entry.  Data for the
2129fbe302bSMichael S. Tsirkin  * command goes in between.
2139fbe302bSMichael S. Tsirkin  */
2149fbe302bSMichael S. Tsirkin struct virtio_net_ctrl_hdr {
2159fbe302bSMichael S. Tsirkin 	uint8_t class;
2169fbe302bSMichael S. Tsirkin 	uint8_t cmd;
2179fbe302bSMichael S. Tsirkin } QEMU_PACKED;
2189fbe302bSMichael S. Tsirkin 
2199fbe302bSMichael S. Tsirkin typedef uint8_t virtio_net_ctrl_ack;
2209fbe302bSMichael S. Tsirkin 
2219fbe302bSMichael S. Tsirkin #define VIRTIO_NET_OK     0
2229fbe302bSMichael S. Tsirkin #define VIRTIO_NET_ERR    1
2239fbe302bSMichael S. Tsirkin 
2249fbe302bSMichael S. Tsirkin /*
2259fbe302bSMichael S. Tsirkin  * Control the RX mode, ie. promisucous, allmulti, etc...
2269fbe302bSMichael S. Tsirkin  * All commands require an "out" sg entry containing a 1 byte
2279fbe302bSMichael S. Tsirkin  * state value, zero = disable, non-zero = enable.  Commands
2289fbe302bSMichael S. Tsirkin  * 0 and 1 are supported with the VIRTIO_NET_F_CTRL_RX feature.
2299fbe302bSMichael S. Tsirkin  * Commands 2-5 are added with VIRTIO_NET_F_CTRL_RX_EXTRA.
2309fbe302bSMichael S. Tsirkin  */
2319fbe302bSMichael S. Tsirkin #define VIRTIO_NET_CTRL_RX    0
2329fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_PROMISC      0
2339fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_ALLMULTI     1
2349fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_ALLUNI       2
2359fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_NOMULTI      3
2369fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_NOUNI        4
2379fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_RX_NOBCAST      5
2389fbe302bSMichael S. Tsirkin 
2399fbe302bSMichael S. Tsirkin /*
2409fbe302bSMichael S. Tsirkin  * Control the MAC
2419fbe302bSMichael S. Tsirkin  *
2429fbe302bSMichael S. Tsirkin  * The MAC filter table is managed by the hypervisor, the guest should
2439fbe302bSMichael S. Tsirkin  * assume the size is infinite.  Filtering should be considered
2449fbe302bSMichael S. Tsirkin  * non-perfect, ie. based on hypervisor resources, the guest may
2459fbe302bSMichael S. Tsirkin  * received packets from sources not specified in the filter list.
2469fbe302bSMichael S. Tsirkin  *
2479fbe302bSMichael S. Tsirkin  * In addition to the class/cmd header, the TABLE_SET command requires
2489fbe302bSMichael S. Tsirkin  * two out scatterlists.  Each contains a 4 byte count of entries followed
2499fbe302bSMichael S. Tsirkin  * by a concatenated byte stream of the ETH_ALEN MAC addresses.  The
2509fbe302bSMichael S. Tsirkin  * first sg list contains unicast addresses, the second is for multicast.
2519fbe302bSMichael S. Tsirkin  * This functionality is present if the VIRTIO_NET_F_CTRL_RX feature
2529fbe302bSMichael S. Tsirkin  * is available.
2539fbe302bSMichael S. Tsirkin  *
2549fbe302bSMichael S. Tsirkin  * The ADDR_SET command requests one out scatterlist, it contains a
2559fbe302bSMichael S. Tsirkin  * 6 bytes MAC address. This functionality is present if the
2569fbe302bSMichael S. Tsirkin  * VIRTIO_NET_F_CTRL_MAC_ADDR feature is available.
2579fbe302bSMichael S. Tsirkin  */
2589fbe302bSMichael S. Tsirkin struct virtio_net_ctrl_mac {
2599fbe302bSMichael S. Tsirkin 	__virtio32 entries;
2609fbe302bSMichael S. Tsirkin 	uint8_t macs[][ETH_ALEN];
2619fbe302bSMichael S. Tsirkin } QEMU_PACKED;
2629fbe302bSMichael S. Tsirkin 
2639fbe302bSMichael S. Tsirkin #define VIRTIO_NET_CTRL_MAC    1
2649fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_MAC_TABLE_SET        0
2659fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_MAC_ADDR_SET         1
2669fbe302bSMichael S. Tsirkin 
2679fbe302bSMichael S. Tsirkin /*
2689fbe302bSMichael S. Tsirkin  * Control VLAN filtering
2699fbe302bSMichael S. Tsirkin  *
2709fbe302bSMichael S. Tsirkin  * The VLAN filter table is controlled via a simple ADD/DEL interface.
2719fbe302bSMichael S. Tsirkin  * VLAN IDs not added may be filterd by the hypervisor.  Del is the
2729fbe302bSMichael S. Tsirkin  * opposite of add.  Both commands expect an out entry containing a 2
2739fbe302bSMichael S. Tsirkin  * byte VLAN ID.  VLAN filterting is available with the
2749fbe302bSMichael S. Tsirkin  * VIRTIO_NET_F_CTRL_VLAN feature bit.
2759fbe302bSMichael S. Tsirkin  */
2769fbe302bSMichael S. Tsirkin #define VIRTIO_NET_CTRL_VLAN       2
2779fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_VLAN_ADD             0
2789fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_VLAN_DEL             1
2799fbe302bSMichael S. Tsirkin 
2809fbe302bSMichael S. Tsirkin /*
2819fbe302bSMichael S. Tsirkin  * Control link announce acknowledgement
2829fbe302bSMichael S. Tsirkin  *
2839fbe302bSMichael S. Tsirkin  * The command VIRTIO_NET_CTRL_ANNOUNCE_ACK is used to indicate that
2849fbe302bSMichael S. Tsirkin  * driver has recevied the notification; device would clear the
2859fbe302bSMichael S. Tsirkin  * VIRTIO_NET_S_ANNOUNCE bit in the status field after it receives
2869fbe302bSMichael S. Tsirkin  * this command.
2879fbe302bSMichael S. Tsirkin  */
2889fbe302bSMichael S. Tsirkin #define VIRTIO_NET_CTRL_ANNOUNCE       3
2899fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_ANNOUNCE_ACK         0
2909fbe302bSMichael S. Tsirkin 
2919fbe302bSMichael S. Tsirkin /*
2929fbe302bSMichael S. Tsirkin  * Control Receive Flow Steering
293dc6f8d45SCornelia Huck  */
294dc6f8d45SCornelia Huck #define VIRTIO_NET_CTRL_MQ   4
295dc6f8d45SCornelia Huck /*
2969fbe302bSMichael S. Tsirkin  * The command VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET
2979fbe302bSMichael S. Tsirkin  * enables Receive Flow Steering, specifying the number of the transmit and
2989fbe302bSMichael S. Tsirkin  * receive queues that will be used. After the command is consumed and acked by
2999fbe302bSMichael S. Tsirkin  * the device, the device will not steer new packets on receive virtqueues
3009fbe302bSMichael S. Tsirkin  * other than specified nor read from transmit virtqueues other than specified.
3019fbe302bSMichael S. Tsirkin  * Accordingly, driver should not transmit new packets  on virtqueues other than
3029fbe302bSMichael S. Tsirkin  * specified.
3039fbe302bSMichael S. Tsirkin  */
3049fbe302bSMichael S. Tsirkin struct virtio_net_ctrl_mq {
3059fbe302bSMichael S. Tsirkin 	__virtio16 virtqueue_pairs;
3069fbe302bSMichael S. Tsirkin };
3079fbe302bSMichael S. Tsirkin 
3089fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET        0
3099fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN        1
3109fbe302bSMichael S. Tsirkin  #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX        0x8000
3119fbe302bSMichael S. Tsirkin 
312f56fc2d3SMichael S. Tsirkin /*
313dc6f8d45SCornelia Huck  * The command VIRTIO_NET_CTRL_MQ_RSS_CONFIG has the same effect as
314dc6f8d45SCornelia Huck  * VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET does and additionally configures
315dc6f8d45SCornelia Huck  * the receive steering to use a hash calculated for incoming packet
316dc6f8d45SCornelia Huck  * to decide on receive virtqueue to place the packet. The command
317dc6f8d45SCornelia Huck  * also provides parameters to calculate a hash and receive virtqueue.
318dc6f8d45SCornelia Huck  */
319dc6f8d45SCornelia Huck struct virtio_net_rss_config {
320dc6f8d45SCornelia Huck 	uint32_t hash_types;
321dc6f8d45SCornelia Huck 	uint16_t indirection_table_mask;
322dc6f8d45SCornelia Huck 	uint16_t unclassified_queue;
323dc6f8d45SCornelia Huck 	uint16_t indirection_table[1/* + indirection_table_mask */];
324dc6f8d45SCornelia Huck 	uint16_t max_tx_vq;
325dc6f8d45SCornelia Huck 	uint8_t hash_key_length;
326dc6f8d45SCornelia Huck 	uint8_t hash_key_data[/* hash_key_length */];
327dc6f8d45SCornelia Huck };
328dc6f8d45SCornelia Huck 
329dc6f8d45SCornelia Huck  #define VIRTIO_NET_CTRL_MQ_RSS_CONFIG          1
330dc6f8d45SCornelia Huck 
331dc6f8d45SCornelia Huck /*
332dc6f8d45SCornelia Huck  * The command VIRTIO_NET_CTRL_MQ_HASH_CONFIG requests the device
333dc6f8d45SCornelia Huck  * to include in the virtio header of the packet the value of the
334dc6f8d45SCornelia Huck  * calculated hash and the report type of hash. It also provides
335dc6f8d45SCornelia Huck  * parameters for hash calculation. The command requires feature
336dc6f8d45SCornelia Huck  * VIRTIO_NET_F_HASH_REPORT to be negotiated to extend the
337dc6f8d45SCornelia Huck  * layout of virtio header as defined in virtio_net_hdr_v1_hash.
338dc6f8d45SCornelia Huck  */
339dc6f8d45SCornelia Huck struct virtio_net_hash_config {
340dc6f8d45SCornelia Huck 	uint32_t hash_types;
341dc6f8d45SCornelia Huck 	/* for compatibility with virtio_net_rss_config */
342dc6f8d45SCornelia Huck 	uint16_t reserved[4];
343dc6f8d45SCornelia Huck 	uint8_t hash_key_length;
344dc6f8d45SCornelia Huck 	uint8_t hash_key_data[/* hash_key_length */];
345dc6f8d45SCornelia Huck };
346dc6f8d45SCornelia Huck 
347dc6f8d45SCornelia Huck  #define VIRTIO_NET_CTRL_MQ_HASH_CONFIG         2
348dc6f8d45SCornelia Huck 
349dc6f8d45SCornelia Huck /*
350f56fc2d3SMichael S. Tsirkin  * Control network offloads
351f56fc2d3SMichael S. Tsirkin  *
352f56fc2d3SMichael S. Tsirkin  * Reconfigures the network offloads that Guest can handle.
353f56fc2d3SMichael S. Tsirkin  *
354f56fc2d3SMichael S. Tsirkin  * Available with the VIRTIO_NET_F_CTRL_GUEST_OFFLOADS feature bit.
355f56fc2d3SMichael S. Tsirkin  *
356f56fc2d3SMichael S. Tsirkin  * Command data format matches the feature bit mask exactly.
357f56fc2d3SMichael S. Tsirkin  *
358f56fc2d3SMichael S. Tsirkin  * See VIRTIO_NET_F_GUEST_* for the list of offloads
359f56fc2d3SMichael S. Tsirkin  * that can be enabled/disabled.
360f56fc2d3SMichael S. Tsirkin  */
361f56fc2d3SMichael S. Tsirkin #define VIRTIO_NET_CTRL_GUEST_OFFLOADS   5
362f56fc2d3SMichael S. Tsirkin #define VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET        0
363f56fc2d3SMichael S. Tsirkin 
364d525f73fSChenyi Qiang /*
365d525f73fSChenyi Qiang  * Control notifications coalescing.
366d525f73fSChenyi Qiang  *
367d525f73fSChenyi Qiang  * Request the device to change the notifications coalescing parameters.
368d525f73fSChenyi Qiang  *
369d525f73fSChenyi Qiang  * Available with the VIRTIO_NET_F_NOTF_COAL feature bit.
370d525f73fSChenyi Qiang  */
371d525f73fSChenyi Qiang #define VIRTIO_NET_CTRL_NOTF_COAL		6
372d525f73fSChenyi Qiang /*
373d525f73fSChenyi Qiang  * Set the tx-usecs/tx-max-packets parameters.
374d525f73fSChenyi Qiang  */
375d525f73fSChenyi Qiang struct virtio_net_ctrl_coal_tx {
376d525f73fSChenyi Qiang 	/* Maximum number of packets to send before a TX notification */
377d525f73fSChenyi Qiang 	uint32_t tx_max_packets;
378d525f73fSChenyi Qiang 	/* Maximum number of usecs to delay a TX notification */
379d525f73fSChenyi Qiang 	uint32_t tx_usecs;
380d525f73fSChenyi Qiang };
381d525f73fSChenyi Qiang 
382d525f73fSChenyi Qiang #define VIRTIO_NET_CTRL_NOTF_COAL_TX_SET		0
383d525f73fSChenyi Qiang 
384d525f73fSChenyi Qiang /*
385d525f73fSChenyi Qiang  * Set the rx-usecs/rx-max-packets parameters.
386d525f73fSChenyi Qiang  */
387d525f73fSChenyi Qiang struct virtio_net_ctrl_coal_rx {
388d525f73fSChenyi Qiang 	/* Maximum number of packets to receive before a RX notification */
389d525f73fSChenyi Qiang 	uint32_t rx_max_packets;
390d525f73fSChenyi Qiang 	/* Maximum number of usecs to delay a RX notification */
391d525f73fSChenyi Qiang 	uint32_t rx_usecs;
392d525f73fSChenyi Qiang };
393d525f73fSChenyi Qiang 
394d525f73fSChenyi Qiang #define VIRTIO_NET_CTRL_NOTF_COAL_RX_SET		1
395*da3c22c7SThomas Huth #define VIRTIO_NET_CTRL_NOTF_COAL_VQ_SET		2
396*da3c22c7SThomas Huth #define VIRTIO_NET_CTRL_NOTF_COAL_VQ_GET		3
397*da3c22c7SThomas Huth 
398*da3c22c7SThomas Huth struct virtio_net_ctrl_coal {
399*da3c22c7SThomas Huth 	uint32_t max_packets;
400*da3c22c7SThomas Huth 	uint32_t max_usecs;
401*da3c22c7SThomas Huth };
402*da3c22c7SThomas Huth 
403*da3c22c7SThomas Huth struct  virtio_net_ctrl_coal_vq {
404*da3c22c7SThomas Huth 	uint16_t vqn;
405*da3c22c7SThomas Huth 	uint16_t reserved;
406*da3c22c7SThomas Huth 	struct virtio_net_ctrl_coal coal;
407*da3c22c7SThomas Huth };
408d525f73fSChenyi Qiang 
4099fbe302bSMichael S. Tsirkin #endif /* _LINUX_VIRTIO_NET_H */
410