tap: add num_tx_queues API
[vpp.git] / src / vnet / devices / tap / tap.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _VNET_DEVICES_VIRTIO_TAP_H_
19 #define _VNET_DEVICES_VIRTIO_TAP_H_
20
21 #ifndef MIN
22 #define MIN(x,y) (((x)<(y))?(x):(y))
23 #endif
24
25 #define foreach_tapv2_flags  \
26   _ (GSO, 0)                 \
27   _ (CSUM_OFFLOAD, 1)        \
28   _ (PERSIST, 2)             \
29   _ (ATTACH, 3)              \
30   _ (TUN, 4)                 \
31   _ (GRO_COALESCE, 5)        \
32   _ (PACKED, 6)              \
33   _ (IN_ORDER, 7)
34
35 typedef enum
36 {
37 #define _(a, b) TAP_FLAG_##a = (1 << b),
38   foreach_tapv2_flags
39 #undef _
40 } tap_flag_t;
41
42 typedef struct
43 {
44   u32 id;
45   u8 mac_addr_set;
46   mac_address_t mac_addr;
47   u16 num_rx_queues;
48   u16 num_tx_queues;
49   u16 rx_ring_sz;
50   u16 tx_ring_sz;
51   u32 tap_flags;
52   u8 *host_namespace;
53   u8 *host_if_name;
54   mac_address_t host_mac_addr;
55   u8 *host_bridge;
56   ip4_address_t host_ip4_addr;
57   u8 host_ip4_prefix_len;
58   ip4_address_t host_ip4_gw;
59   u8 host_ip4_gw_set;
60   ip6_address_t host_ip6_addr;
61   u8 host_ip6_prefix_len;
62   ip6_address_t host_ip6_gw;
63   u8 host_ip6_gw_set;
64   u8 host_mtu_set;
65   u32 host_mtu_size;
66   /* return */
67   u32 sw_if_index;
68   int rv;
69   clib_error_t *error;
70 } tap_create_if_args_t;
71
72 /** TAP interface details struct */
73 typedef struct
74 {
75   u32 id;
76   u32 sw_if_index;
77   u32 tap_flags;
78   u8 dev_name[64];
79   u16 tx_ring_sz;
80   u16 rx_ring_sz;
81   mac_address_t host_mac_addr;
82   u8 host_if_name[64];
83   u8 host_namespace[64];
84   u8 host_bridge[64];
85   ip4_address_t host_ip4_addr;
86   u8 host_ip4_prefix_len;
87   ip6_address_t host_ip6_addr;
88   u8 host_ip6_prefix_len;
89   u32 host_mtu_size;
90 } tap_interface_details_t;
91
92 typedef struct
93 {
94   /* logging */
95   vlib_log_class_t log_default;
96
97   /* bit-map of in-use IDs */
98   uword *tap_ids;
99
100   /* host mtu size, configurable through startup.conf */
101   int host_mtu_size;
102   u16 msg_id_base;
103 } tap_main_t;
104
105 extern tap_main_t tap_main;
106 void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
107 int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
108 int tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index,
109                             int enable_disable, int packet_coalesce);
110 int
111 tap_csum_offload_enable_disable (vlib_main_t * vm, u32 sw_if_index,
112                                  int enable_disable);
113 int tap_dump_ifs (tap_interface_details_t ** out_tapids);
114 int tap_set_carrier (u32 hw_if_index, u32 carrier_up);
115 int tap_set_speed (u32 hw_if_index, u32 speed);
116
117 #endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */
118
119 /*
120  * fd.io coding-style-patch-verification: ON
121  *
122  * Local Variables:
123  * eval: (c-set-style "gnu")
124  * End:
125  */