Statistics
| Branch: | Revision:

root / hw / virtio-net.h @ a43f9c90

History | View | Annotate | Download (7.4 kB)

1 fbe78f4f aliguori
/*
2 fbe78f4f aliguori
 * Virtio Network Device
3 fbe78f4f aliguori
 *
4 fbe78f4f aliguori
 * Copyright IBM, Corp. 2007
5 fbe78f4f aliguori
 *
6 fbe78f4f aliguori
 * Authors:
7 fbe78f4f aliguori
 *  Anthony Liguori   <aliguori@us.ibm.com>
8 fbe78f4f aliguori
 *
9 fbe78f4f aliguori
 * This work is licensed under the terms of the GNU GPL, version 2.  See
10 fbe78f4f aliguori
 * the COPYING file in the top-level directory.
11 fbe78f4f aliguori
 *
12 fbe78f4f aliguori
 */
13 fbe78f4f aliguori
14 fbe78f4f aliguori
#ifndef _QEMU_VIRTIO_NET_H
15 fbe78f4f aliguori
#define _QEMU_VIRTIO_NET_H
16 fbe78f4f aliguori
17 fbe78f4f aliguori
#include "virtio.h"
18 fbe78f4f aliguori
#include "net.h"
19 fbe78f4f aliguori
#include "pci.h"
20 fbe78f4f aliguori
21 79674068 aliguori
#define ETH_ALEN    6
22 79674068 aliguori
23 fbe78f4f aliguori
/* from Linux's virtio_net.h */
24 fbe78f4f aliguori
25 fbe78f4f aliguori
/* The ID for virtio_net */
26 fbe78f4f aliguori
#define VIRTIO_ID_NET   1
27 fbe78f4f aliguori
28 fbe78f4f aliguori
/* The feature bitmap for virtio net */
29 fbe78f4f aliguori
#define VIRTIO_NET_F_CSUM       0       /* Host handles pkts w/ partial csum */
30 fbe78f4f aliguori
#define VIRTIO_NET_F_GUEST_CSUM 1       /* Guest handles pkts w/ partial csum */
31 fbe78f4f aliguori
#define VIRTIO_NET_F_MAC        5       /* Host has given MAC address. */
32 fbe78f4f aliguori
#define VIRTIO_NET_F_GSO        6       /* Host handles pkts w/ any GSO type */
33 fbe78f4f aliguori
#define VIRTIO_NET_F_GUEST_TSO4 7       /* Guest can handle TSOv4 in. */
34 fbe78f4f aliguori
#define VIRTIO_NET_F_GUEST_TSO6 8       /* Guest can handle TSOv6 in. */
35 fbe78f4f aliguori
#define VIRTIO_NET_F_GUEST_ECN  9       /* Guest can handle TSO[6] w/ ECN in. */
36 fbe78f4f aliguori
#define VIRTIO_NET_F_GUEST_UFO  10      /* Guest can handle UFO in. */
37 fbe78f4f aliguori
#define VIRTIO_NET_F_HOST_TSO4  11      /* Host can handle TSOv4 in. */
38 fbe78f4f aliguori
#define VIRTIO_NET_F_HOST_TSO6  12      /* Host can handle TSOv6 in. */
39 fbe78f4f aliguori
#define VIRTIO_NET_F_HOST_ECN   13      /* Host can handle TSO[6] w/ ECN in. */
40 fbe78f4f aliguori
#define VIRTIO_NET_F_HOST_UFO   14      /* Host can handle UFO in. */
41 fbe78f4f aliguori
#define VIRTIO_NET_F_MRG_RXBUF  15      /* Host can merge receive buffers. */
42 554c97dd aliguori
#define VIRTIO_NET_F_STATUS     16      /* virtio_net_config.status available */
43 3d11d36c aliguori
#define VIRTIO_NET_F_CTRL_VQ    17      /* Control channel available */
44 002437cd aliguori
#define VIRTIO_NET_F_CTRL_RX    18      /* Control channel RX mode support */
45 f21c0ed9 aliguori
#define VIRTIO_NET_F_CTRL_VLAN  19      /* Control channel VLAN filtering */
46 015cb166 Alex Williamson
#define VIRTIO_NET_F_CTRL_RX_EXTRA 20   /* Extra RX mode control support */
47 554c97dd aliguori
48 554c97dd aliguori
#define VIRTIO_NET_S_LINK_UP    1       /* Link is up */
49 fbe78f4f aliguori
50 fbe78f4f aliguori
#define TX_TIMER_INTERVAL 150000 /* 150 us */
51 fbe78f4f aliguori
52 e3f30488 Alex Williamson
/* Limit the number of packets that can be sent via a single flush
53 e3f30488 Alex Williamson
 * of the TX queue.  This gives us a guaranteed exit condition and
54 e3f30488 Alex Williamson
 * ensures fairness in the io path.  256 conveniently matches the
55 e3f30488 Alex Williamson
 * length of the TX queue and shows a good balance of performance
56 e3f30488 Alex Williamson
 * and latency. */
57 e3f30488 Alex Williamson
#define TX_BURST 256
58 e3f30488 Alex Williamson
59 f0c07c7c Alex Williamson
typedef struct virtio_net_conf
60 f0c07c7c Alex Williamson
{
61 f0c07c7c Alex Williamson
    uint32_t txtimer;
62 e3f30488 Alex Williamson
    int32_t txburst;
63 a697a334 Alex Williamson
    char *tx;
64 f0c07c7c Alex Williamson
} virtio_net_conf;
65 f0c07c7c Alex Williamson
66 fbe78f4f aliguori
/* Maximum packet size we can receive from tap device: header + 64k */
67 fbe78f4f aliguori
#define VIRTIO_NET_MAX_BUFSIZE (sizeof(struct virtio_net_hdr) + (64 << 10))
68 fbe78f4f aliguori
69 fbe78f4f aliguori
struct virtio_net_config
70 fbe78f4f aliguori
{
71 ebbeb789 Amos Kong
    /* The config defining mac address ($ETH_ALEN bytes) */
72 ebbeb789 Amos Kong
    uint8_t mac[ETH_ALEN];
73 554c97dd aliguori
    /* See VIRTIO_NET_F_STATUS and VIRTIO_NET_S_* above */
74 554c97dd aliguori
    uint16_t status;
75 fbe78f4f aliguori
} __attribute__((packed));
76 fbe78f4f aliguori
77 fbe78f4f aliguori
/* This is the first element of the scatter-gather list.  If you don't
78 fbe78f4f aliguori
 * specify GSO or CSUM features, you can simply ignore the header. */
79 fbe78f4f aliguori
struct virtio_net_hdr
80 fbe78f4f aliguori
{
81 fbe78f4f aliguori
#define VIRTIO_NET_HDR_F_NEEDS_CSUM     1       // Use csum_start, csum_offset
82 fbe78f4f aliguori
    uint8_t flags;
83 fbe78f4f aliguori
#define VIRTIO_NET_HDR_GSO_NONE         0       // Not a GSO frame
84 fbe78f4f aliguori
#define VIRTIO_NET_HDR_GSO_TCPV4        1       // GSO frame, IPv4 TCP (TSO)
85 fbe78f4f aliguori
#define VIRTIO_NET_HDR_GSO_UDP          3       // GSO frame, IPv4 UDP (UFO)
86 fbe78f4f aliguori
#define VIRTIO_NET_HDR_GSO_TCPV6        4       // GSO frame, IPv6 TCP
87 fbe78f4f aliguori
#define VIRTIO_NET_HDR_GSO_ECN          0x80    // TCP has ECN set
88 fbe78f4f aliguori
    uint8_t gso_type;
89 fbe78f4f aliguori
    uint16_t hdr_len;
90 fbe78f4f aliguori
    uint16_t gso_size;
91 fbe78f4f aliguori
    uint16_t csum_start;
92 fbe78f4f aliguori
    uint16_t csum_offset;
93 fbe78f4f aliguori
};
94 fbe78f4f aliguori
95 fbe78f4f aliguori
/* This is the version of the header to use when the MRG_RXBUF
96 fbe78f4f aliguori
 * feature has been negotiated. */
97 fbe78f4f aliguori
struct virtio_net_hdr_mrg_rxbuf
98 fbe78f4f aliguori
{
99 fbe78f4f aliguori
    struct virtio_net_hdr hdr;
100 fbe78f4f aliguori
    uint16_t num_buffers;   /* Number of merged rx buffers */
101 fbe78f4f aliguori
};
102 fbe78f4f aliguori
103 3d11d36c aliguori
/*
104 3d11d36c aliguori
 * Control virtqueue data structures
105 3d11d36c aliguori
 *
106 3d11d36c aliguori
 * The control virtqueue expects a header in the first sg entry
107 3d11d36c aliguori
 * and an ack/status response in the last entry.  Data for the
108 3d11d36c aliguori
 * command goes in between.
109 3d11d36c aliguori
 */
110 3d11d36c aliguori
struct virtio_net_ctrl_hdr {
111 3d11d36c aliguori
    uint8_t class;
112 3d11d36c aliguori
    uint8_t cmd;
113 3d11d36c aliguori
};
114 3d11d36c aliguori
115 3d11d36c aliguori
typedef uint8_t virtio_net_ctrl_ack;
116 3d11d36c aliguori
117 3d11d36c aliguori
#define VIRTIO_NET_OK     0
118 3d11d36c aliguori
#define VIRTIO_NET_ERR    1
119 3d11d36c aliguori
120 002437cd aliguori
/*
121 015cb166 Alex Williamson
 * Control the RX mode, ie. promisucous, allmulti, etc...
122 015cb166 Alex Williamson
 * All commands require an "out" sg entry containing a 1 byte
123 015cb166 Alex Williamson
 * state value, zero = disable, non-zero = enable.  Commands
124 015cb166 Alex Williamson
 * 0 and 1 are supported with the VIRTIO_NET_F_CTRL_RX feature.
125 015cb166 Alex Williamson
 * Commands 2-5 are added with VIRTIO_NET_F_CTRL_RX_EXTRA.
126 002437cd aliguori
 */
127 002437cd aliguori
#define VIRTIO_NET_CTRL_RX_MODE    0
128 002437cd aliguori
 #define VIRTIO_NET_CTRL_RX_MODE_PROMISC      0
129 002437cd aliguori
 #define VIRTIO_NET_CTRL_RX_MODE_ALLMULTI     1
130 015cb166 Alex Williamson
 #define VIRTIO_NET_CTRL_RX_MODE_ALLUNI       2
131 015cb166 Alex Williamson
 #define VIRTIO_NET_CTRL_RX_MODE_NOMULTI      3
132 015cb166 Alex Williamson
 #define VIRTIO_NET_CTRL_RX_MODE_NOUNI        4
133 015cb166 Alex Williamson
 #define VIRTIO_NET_CTRL_RX_MODE_NOBCAST      5
134 002437cd aliguori
135 b6503ed9 aliguori
/*
136 b6503ed9 aliguori
 * Control the MAC filter table.
137 b6503ed9 aliguori
 *
138 b6503ed9 aliguori
 * The MAC filter table is managed by the hypervisor, the guest should
139 b6503ed9 aliguori
 * assume the size is infinite.  Filtering should be considered
140 b6503ed9 aliguori
 * non-perfect, ie. based on hypervisor resources, the guest may
141 b6503ed9 aliguori
 * received packets from sources not specified in the filter list.
142 b6503ed9 aliguori
 *
143 b6503ed9 aliguori
 * In addition to the class/cmd header, the TABLE_SET command requires
144 b6503ed9 aliguori
 * two out scatterlists.  Each contains a 4 byte count of entries followed
145 b6503ed9 aliguori
 * by a concatenated byte stream of the ETH_ALEN MAC addresses.  The
146 b6503ed9 aliguori
 * first sg list contains unicast addresses, the second is for multicast.
147 b6503ed9 aliguori
 * This functionality is present if the VIRTIO_NET_F_CTRL_RX feature
148 b6503ed9 aliguori
 * is available.
149 b6503ed9 aliguori
 */
150 b6503ed9 aliguori
struct virtio_net_ctrl_mac {
151 b6503ed9 aliguori
    uint32_t entries;
152 b6503ed9 aliguori
    uint8_t macs[][ETH_ALEN];
153 b6503ed9 aliguori
};
154 b6503ed9 aliguori
#define VIRTIO_NET_CTRL_MAC    1
155 b6503ed9 aliguori
 #define VIRTIO_NET_CTRL_MAC_TABLE_SET        0
156 b6503ed9 aliguori
157 f21c0ed9 aliguori
/*
158 f21c0ed9 aliguori
 * Control VLAN filtering
159 f21c0ed9 aliguori
 *
160 f21c0ed9 aliguori
 * The VLAN filter table is controlled via a simple ADD/DEL interface.
161 f21c0ed9 aliguori
 * VLAN IDs not added may be filterd by the hypervisor.  Del is the
162 f21c0ed9 aliguori
 * opposite of add.  Both commands expect an out entry containing a 2
163 f21c0ed9 aliguori
 * byte VLAN ID.  VLAN filterting is available with the
164 f21c0ed9 aliguori
 * VIRTIO_NET_F_CTRL_VLAN feature bit.
165 f21c0ed9 aliguori
 */
166 f21c0ed9 aliguori
#define VIRTIO_NET_CTRL_VLAN       2
167 f21c0ed9 aliguori
 #define VIRTIO_NET_CTRL_VLAN_ADD             0
168 f21c0ed9 aliguori
 #define VIRTIO_NET_CTRL_VLAN_DEL             1
169 f21c0ed9 aliguori
170 8172539d Michael S. Tsirkin
#define DEFINE_VIRTIO_NET_FEATURES(_state, _field) \
171 8172539d Michael S. Tsirkin
        DEFINE_VIRTIO_COMMON_FEATURES(_state, _field), \
172 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("csum", _state, _field, VIRTIO_NET_F_CSUM, true), \
173 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("guest_csum", _state, _field, VIRTIO_NET_F_GUEST_CSUM, true), \
174 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("gso", _state, _field, VIRTIO_NET_F_GSO, true), \
175 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("guest_tso4", _state, _field, VIRTIO_NET_F_GUEST_TSO4, true), \
176 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("guest_tso6", _state, _field, VIRTIO_NET_F_GUEST_TSO6, true), \
177 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("guest_ecn", _state, _field, VIRTIO_NET_F_GUEST_ECN, true), \
178 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("guest_ufo", _state, _field, VIRTIO_NET_F_GUEST_UFO, true), \
179 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("host_tso4", _state, _field, VIRTIO_NET_F_HOST_TSO4, true), \
180 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("host_tso6", _state, _field, VIRTIO_NET_F_HOST_TSO6, true), \
181 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("host_ecn", _state, _field, VIRTIO_NET_F_HOST_ECN, true), \
182 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("host_ufo", _state, _field, VIRTIO_NET_F_HOST_UFO, true), \
183 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("mrg_rxbuf", _state, _field, VIRTIO_NET_F_MRG_RXBUF, true), \
184 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("status", _state, _field, VIRTIO_NET_F_STATUS, true), \
185 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("ctrl_vq", _state, _field, VIRTIO_NET_F_CTRL_VQ, true), \
186 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("ctrl_rx", _state, _field, VIRTIO_NET_F_CTRL_RX, true), \
187 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("ctrl_vlan", _state, _field, VIRTIO_NET_F_CTRL_VLAN, true), \
188 8172539d Michael S. Tsirkin
        DEFINE_PROP_BIT("ctrl_rx_extra", _state, _field, VIRTIO_NET_F_CTRL_RX_EXTRA, true)
189 fbe78f4f aliguori
#endif