2 * Copyright (c) 2013-2015 Brocade Communications Systems, Inc.
4 * Copyright (c) 2015 QLogic Corporation.
8 * See LICENSE.bnx2x_pmd for copyright and licensing details.
18 struct vf_resource_query {
22 uint8_t num_mac_filters;
23 uint8_t num_vlan_filters;
24 uint8_t num_mc_filters;
27 #define BNX2X_VF_STATUS_SUCCESS 1
28 #define BNX2X_VF_STATUS_FAILURE 2
29 #define BNX2X_VF_STATUS_NO_RESOURCES 4
30 #define BNX2X_VF_BULLETIN_TRIES 5
32 #define BNX2X_VF_Q_FLAG_CACHE_ALIGN 0x0008
33 #define BNX2X_VF_Q_FLAG_STATS 0x0010
34 #define BNX2X_VF_Q_FLAG_OV 0x0020
35 #define BNX2X_VF_Q_FLAG_VLAN 0x0040
36 #define BNX2X_VF_Q_FLAG_COS 0x0080
37 #define BNX2X_VF_Q_FLAG_HC 0x0100
38 #define BNX2X_VF_Q_FLAG_DHC 0x0200
39 #define BNX2X_VF_Q_FLAG_LEADING_RSS 0x0400
41 #define TLV_BUFFER_SIZE 1024
43 #define VFPF_RX_MASK_ACCEPT_NONE 0x00000000
44 #define VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST 0x00000001
45 #define VFPF_RX_MASK_ACCEPT_MATCHED_MULTICAST 0x00000002
46 #define VFPF_RX_MASK_ACCEPT_ALL_UNICAST 0x00000004
47 #define VFPF_RX_MASK_ACCEPT_ALL_MULTICAST 0x00000008
48 #define VFPF_RX_MASK_ACCEPT_BROADCAST 0x00000010
50 /* general tlv header (used for both vf->pf request and pf->vf response) */
57 struct channel_tlv tl;
58 uint32_t reply_offset;
61 struct tlv_buffer_size {
62 uint8_t tlv_buffer[TLV_BUFFER_SIZE];
65 /* tlv struct for all PF replies except acquire */
66 struct vf_common_reply_tlv {
67 struct channel_tlv tl;
72 /* used to terminate and pad a tlv list */
73 struct channel_list_end_tlv {
74 struct channel_tlv tl;
79 struct vf_acquire_tlv {
80 struct vf_first_tlv first_tlv;
85 struct vf_resource_query res_query;
87 uint64_t bulletin_addr;
90 /* simple operation request on queue */
92 struct vf_first_tlv first_tlv;
97 /* receive side scaling tlv */
99 struct vf_first_tlv first_tlv;
101 uint8_t rss_result_mask;
102 uint8_t ind_table_size;
103 uint8_t rss_key_size;
105 uint8_t ind_table[T_ETH_INDIRECTION_TABLE_SIZE];
106 uint32_t rss_key[T_ETH_RSS_KEY]; /* hash values */
110 #define BNX2X_VF_MAX_QUEUES_PER_VF 16
111 #define BNX2X_VF_MAX_SBS_PER_VF 16
112 uint16_t hw_sbs[BNX2X_VF_MAX_SBS_PER_VF];
113 uint8_t hw_qid[BNX2X_VF_MAX_QUEUES_PER_VF];
117 uint8_t num_mac_filters;
118 uint8_t num_vlan_filters;
119 uint8_t num_mc_filters;
120 uint8_t permanent_mac_addr[ETH_ALEN];
121 struct ether_addr current_mac_addr;
122 uint16_t pf_link_speed;
123 uint32_t pf_link_supported;
126 /* tlv struct holding reply for acquire */
127 struct vf_acquire_resp_tlv {
142 struct vf_first_tlv first_tlv;
143 uint64_t sb_addr[BNX2X_VF_MAX_SBS_PER_VF];
151 struct vf_rxq_params {
152 /* physical addresses */
154 uint64_t rcq_np_addr;
161 uint16_t hc_rate; /* desired interrupts per sec. */
165 uint16_t flags; /* for BNX2X_VF_Q_FLAG_X flags */
166 uint16_t stat_id; /* valid if BNX2X_VF_Q_FLAG_STATS */
171 uint8_t cache_line_log; /* BNX2X_VF_Q_FLAG_CACHE_ALIGN */
175 struct vf_txq_params {
176 /* physical addresses */
180 uint8_t vf_sb_id; /* index in hw_sbs[] */
181 uint8_t sb_index; /* Index in the SB */
182 uint16_t hc_rate; /* desired interrupts per sec. */
183 uint32_t flags; /* for BNX2X_VF_Q_FLAG_X flags */
184 uint16_t stat_id; /* valid if BNX2X_VF_Q_FLAG_STATS */
185 uint8_t traffic_type; /* see in setup_context() */
190 struct vf_setup_q_tlv {
191 struct vf_first_tlv first_tlv;
193 struct vf_rxq_params rxq;
194 struct vf_txq_params txq;
196 uint8_t vf_qid; /* index in hw_qid[] */
198 #define VF_RXQ_VALID 0x01
199 #define VF_TXQ_VALID 0x02
203 /* Set Queue Filters */
204 struct vf_q_mac_vlan_filter {
206 #define BNX2X_VF_Q_FILTER_DEST_MAC_VALID 0x01
207 #define BNX2X_VF_Q_FILTER_VLAN_TAG_VALID 0x02
208 #define BNX2X_VF_Q_FILTER_SET_MAC 0x100 /* set/clear */
209 uint8_t mac[ETH_ALEN];
214 #define _UP_ETH_ALEN (6)
216 /* configure queue filters */
217 struct vf_set_q_filters_tlv {
218 struct vf_first_tlv first_tlv;
221 #define BNX2X_VF_MAC_VLAN_CHANGED 0x01
222 #define BNX2X_VF_MULTICAST_CHANGED 0x02
223 #define BNX2X_VF_RX_MASK_CHANGED 0x04
225 uint8_t vf_qid; /* index in hw_qid[] */
226 uint8_t mac_filters_cnt;
227 uint8_t multicast_cnt;
230 #define VF_MAX_MAC_FILTERS 16
231 #define VF_MAX_VLAN_FILTERS 16
232 #define VF_MAX_FILTERS (VF_MAX_MAC_FILTERS +\
234 struct vf_q_mac_vlan_filter filters[VF_MAX_FILTERS];
236 #define VF_MAX_MULTICAST_PER_VF 32
237 uint8_t multicast[VF_MAX_MULTICAST_PER_VF][_UP_ETH_ALEN];
238 unsigned long rx_mask;
242 /* close VF (disable VF) */
243 struct vf_close_tlv {
244 struct vf_first_tlv first_tlv;
245 uint16_t vf_id; /* for debug */
249 /* rlease the VF's acquired resources */
250 struct vf_release_tlv {
251 struct vf_first_tlv first_tlv;
252 uint16_t vf_id; /* for debug */
257 struct vf_first_tlv first_tlv;
258 struct vf_acquire_tlv acquire;
259 struct vf_init_tlv init;
260 struct vf_close_tlv close;
261 struct vf_q_op_tlv q_op;
262 struct vf_setup_q_tlv setup_q;
263 struct vf_set_q_filters_tlv set_q_filters;
264 struct vf_release_tlv release;
265 struct vf_rss_tlv update_rss;
266 struct channel_list_end_tlv list_end;
267 struct tlv_buffer_size tlv_buf_size;
271 struct vf_common_reply_tlv common_reply;
272 struct vf_acquire_resp_tlv acquire_resp;
273 struct channel_list_end_tlv list_end;
274 struct tlv_buffer_size tlv_buf_size;
277 /* struct allocated by VF driver, PF sends updates to VF via bulletin */
278 struct bnx2x_vf_bulletin {
279 uint32_t crc; /* crc of structure to ensure is not in
285 uint64_t valid_bitmap; /* bitmap indicating wich fields
289 #define MAC_ADDR_VALID 0 /* alert the vf that a new mac address
290 * is available for it
292 #define VLAN_VALID 1 /* when set, the vf should no access the
295 #define CHANNEL_DOWN 2 /* vf channel is disabled. VFs are not
296 * to attempt to send messages on the
297 * channel after this bit is set
299 uint8_t mac[ETH_ALEN];
306 #define MAX_TLVS_IN_LIST 50
308 BNX2X_VF_TLV_NONE, /* ends tlv sequence */
309 BNX2X_VF_TLV_ACQUIRE,
311 BNX2X_VF_TLV_SETUP_Q,
312 BNX2X_VF_TLV_SET_Q_FILTERS,
313 BNX2X_VF_TLV_ACTIVATE_Q,
314 BNX2X_VF_TLV_DEACTIVATE_Q,
315 BNX2X_VF_TLV_TEARDOWN_Q,
317 BNX2X_VF_TLV_RELEASE,
318 BNX2X_VF_TLV_UPDATE_RSS_OLD,
319 BNX2X_VF_TLV_PF_RELEASE_VF,
320 BNX2X_VF_TLV_LIST_END,
322 BNX2X_VF_TLV_PF_SET_MAC,
323 BNX2X_VF_TLV_PF_SET_VLAN,
324 BNX2X_VF_TLV_UPDATE_RSS,
325 BNX2X_VF_TLV_PHYS_PORT_ID,
329 struct bnx2x_vf_mbx_msg {
330 union query_tlvs query[BNX2X_VF_MAX_QUEUES_PER_VF];
331 union resp_tlvs resp;
334 int bnx2x_vf_set_mac(struct bnx2x_softc *sc, int set);
335 int bnx2x_vf_config_rss(struct bnx2x_softc *sc, struct ecore_config_rss_params *params);
337 #endif /* BNX2X_VFPF_H */