1 /* bnx2x_vfpf.c: Broadcom Everest network driver.
2  *
3  * Copyright 2009-2013 Broadcom Corporation
4  *
5  * Unless you and Broadcom execute a separate written software license
6  * agreement governing use of this software, this software is licensed to you
7  * under the terms of the GNU General Public License version 2, available
8  * at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL").
9  *
10  * Notwithstanding the above, under no circumstances may you combine this
11  * software in any way with any other Broadcom software provided under a
12  * license other than the GPL, without Broadcom's express prior written
13  * consent.
14  *
15  * Maintained by: Eilon Greenstein <eilong@broadcom.com>
16  * Written by: Shmulik Ravid <shmulikr@broadcom.com>
17  *	       Ariel Elior <ariele@broadcom.com>
18  */
19 
20 #include "bnx2x.h"
21 #include "bnx2x_cmn.h"
22 #include <linux/crc32.h>
23 
24 static int bnx2x_vfpf_teardown_queue(struct bnx2x *bp, int qidx);
25 
26 /* place a given tlv on the tlv buffer at a given offset */
27 static void bnx2x_add_tlv(struct bnx2x *bp, void *tlvs_list,
28 			  u16 offset, u16 type, u16 length)
29 {
30 	struct channel_tlv *tl =
31 		(struct channel_tlv *)(tlvs_list + offset);
32 
33 	tl->type = type;
34 	tl->length = length;
35 }
36 
37 /* Clear the mailbox and init the header of the first tlv */
38 static void bnx2x_vfpf_prep(struct bnx2x *bp, struct vfpf_first_tlv *first_tlv,
39 			    u16 type, u16 length)
40 {
41 	mutex_lock(&bp->vf2pf_mutex);
42 
43 	DP(BNX2X_MSG_IOV, "preparing to send %d tlv over vf pf channel\n",
44 	   type);
45 
46 	/* Clear mailbox */
47 	memset(bp->vf2pf_mbox, 0, sizeof(struct bnx2x_vf_mbx_msg));
48 
49 	/* init type and length */
50 	bnx2x_add_tlv(bp, &first_tlv->tl, 0, type, length);
51 
52 	/* init first tlv header */
53 	first_tlv->resp_msg_offset = sizeof(bp->vf2pf_mbox->req);
54 }
55 
56 /* releases the mailbox */
57 static void bnx2x_vfpf_finalize(struct bnx2x *bp,
58 				struct vfpf_first_tlv *first_tlv)
59 {
60 	DP(BNX2X_MSG_IOV, "done sending [%d] tlv over vf pf channel\n",
61 	   first_tlv->tl.type);
62 
63 	mutex_unlock(&bp->vf2pf_mutex);
64 }
65 
66 /* Finds a TLV by type in a TLV buffer; If found, returns pointer to the TLV */
67 static void *bnx2x_search_tlv_list(struct bnx2x *bp, void *tlvs_list,
68 				   enum channel_tlvs req_tlv)
69 {
70 	struct channel_tlv *tlv = (struct channel_tlv *)tlvs_list;
71 
72 	do {
73 		if (tlv->type == req_tlv)
74 			return tlv;
75 
76 		if (!tlv->length) {
77 			BNX2X_ERR("Found TLV with length 0\n");
78 			return NULL;
79 		}
80 
81 		tlvs_list += tlv->length;
82 		tlv = (struct channel_tlv *)tlvs_list;
83 	} while (tlv->type != CHANNEL_TLV_LIST_END);
84 
85 	DP(BNX2X_MSG_IOV, "TLV list does not contain %d TLV\n", req_tlv);
86 
87 	return NULL;
88 }
89 
90 /* list the types and lengths of the tlvs on the buffer */
91 static void bnx2x_dp_tlv_list(struct bnx2x *bp, void *tlvs_list)
92 {
93 	int i = 1;
94 	struct channel_tlv *tlv = (struct channel_tlv *)tlvs_list;
95 
96 	while (tlv->type != CHANNEL_TLV_LIST_END) {
97 		/* output tlv */
98 		DP(BNX2X_MSG_IOV, "TLV number %d: type %d, length %d\n", i,
99 		   tlv->type, tlv->length);
100 
101 		/* advance to next tlv */
102 		tlvs_list += tlv->length;
103 
104 		/* cast general tlv list pointer to channel tlv header*/
105 		tlv = (struct channel_tlv *)tlvs_list;
106 
107 		i++;
108 
109 		/* break condition for this loop */
110 		if (i > MAX_TLVS_IN_LIST) {
111 			WARN(true, "corrupt tlvs");
112 			return;
113 		}
114 	}
115 
116 	/* output last tlv */
117 	DP(BNX2X_MSG_IOV, "TLV number %d: type %d, length %d\n", i,
118 	   tlv->type, tlv->length);
119 }
120 
121 /* test whether we support a tlv type */
122 bool bnx2x_tlv_supported(u16 tlvtype)
123 {
124 	return CHANNEL_TLV_NONE < tlvtype && tlvtype < CHANNEL_TLV_MAX;
125 }
126 
127 static inline int bnx2x_pfvf_status_codes(int rc)
128 {
129 	switch (rc) {
130 	case 0:
131 		return PFVF_STATUS_SUCCESS;
132 	case -ENOMEM:
133 		return PFVF_STATUS_NO_RESOURCE;
134 	default:
135 		return PFVF_STATUS_FAILURE;
136 	}
137 }
138 
139 static int bnx2x_send_msg2pf(struct bnx2x *bp, u8 *done, dma_addr_t msg_mapping)
140 {
141 	struct cstorm_vf_zone_data __iomem *zone_data =
142 		REG_ADDR(bp, PXP_VF_ADDR_CSDM_GLOBAL_START);
143 	int tout = 100, interval = 100; /* wait for 10 seconds */
144 
145 	if (*done) {
146 		BNX2X_ERR("done was non zero before message to pf was sent\n");
147 		WARN_ON(true);
148 		return -EINVAL;
149 	}
150 
151 	/* if PF indicated channel is down avoid sending message. Return success
152 	 * so calling flow can continue
153 	 */
154 	bnx2x_sample_bulletin(bp);
155 	if (bp->old_bulletin.valid_bitmap & 1 << CHANNEL_DOWN) {
156 		DP(BNX2X_MSG_IOV, "detecting channel down. Aborting message\n");
157 		*done = PFVF_STATUS_SUCCESS;
158 		return -EINVAL;
159 	}
160 
161 	/* Write message address */
162 	writel(U64_LO(msg_mapping),
163 	       &zone_data->non_trigger.vf_pf_channel.msg_addr_lo);
164 	writel(U64_HI(msg_mapping),
165 	       &zone_data->non_trigger.vf_pf_channel.msg_addr_hi);
166 
167 	/* make sure the address is written before FW accesses it */
168 	wmb();
169 
170 	/* Trigger the PF FW */
171 	writeb(1, &zone_data->trigger.vf_pf_channel.addr_valid);
172 
173 	/* Wait for PF to complete */
174 	while ((tout >= 0) && (!*done)) {
175 		msleep(interval);
176 		tout -= 1;
177 
178 		/* progress indicator - HV can take its own sweet time in
179 		 * answering VFs...
180 		 */
181 		DP_CONT(BNX2X_MSG_IOV, ".");
182 	}
183 
184 	if (!*done) {
185 		BNX2X_ERR("PF response has timed out\n");
186 		return -EAGAIN;
187 	}
188 	DP(BNX2X_MSG_SP, "Got a response from PF\n");
189 	return 0;
190 }
191 
192 static int bnx2x_get_vf_id(struct bnx2x *bp, u32 *vf_id)
193 {
194 	u32 me_reg;
195 	int tout = 10, interval = 100; /* Wait for 1 sec */
196 
197 	do {
198 		/* pxp traps vf read of doorbells and returns me reg value */
199 		me_reg = readl(bp->doorbells);
200 		if (GOOD_ME_REG(me_reg))
201 			break;
202 
203 		msleep(interval);
204 
205 		BNX2X_ERR("Invalid ME register value: 0x%08x\n. Is pf driver up?",
206 			  me_reg);
207 	} while (tout-- > 0);
208 
209 	if (!GOOD_ME_REG(me_reg)) {
210 		BNX2X_ERR("Invalid ME register value: 0x%08x\n", me_reg);
211 		return -EINVAL;
212 	}
213 
214 	DP(BNX2X_MSG_IOV, "valid ME register value: 0x%08x\n", me_reg);
215 
216 	*vf_id = (me_reg & ME_REG_VF_NUM_MASK) >> ME_REG_VF_NUM_SHIFT;
217 
218 	return 0;
219 }
220 
221 int bnx2x_vfpf_acquire(struct bnx2x *bp, u8 tx_count, u8 rx_count)
222 {
223 	int rc = 0, attempts = 0;
224 	struct vfpf_acquire_tlv *req = &bp->vf2pf_mbox->req.acquire;
225 	struct pfvf_acquire_resp_tlv *resp = &bp->vf2pf_mbox->resp.acquire_resp;
226 	struct vfpf_port_phys_id_resp_tlv *phys_port_resp;
227 	u32 vf_id;
228 	bool resources_acquired = false;
229 
230 	/* clear mailbox and prep first tlv */
231 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_ACQUIRE, sizeof(*req));
232 
233 	if (bnx2x_get_vf_id(bp, &vf_id)) {
234 		rc = -EAGAIN;
235 		goto out;
236 	}
237 
238 	req->vfdev_info.vf_id = vf_id;
239 	req->vfdev_info.vf_os = 0;
240 
241 	req->resc_request.num_rxqs = rx_count;
242 	req->resc_request.num_txqs = tx_count;
243 	req->resc_request.num_sbs = bp->igu_sb_cnt;
244 	req->resc_request.num_mac_filters = VF_ACQUIRE_MAC_FILTERS;
245 	req->resc_request.num_mc_filters = VF_ACQUIRE_MC_FILTERS;
246 
247 	/* pf 2 vf bulletin board address */
248 	req->bulletin_addr = bp->pf2vf_bulletin_mapping;
249 
250 	/* Request physical port identifier */
251 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length,
252 		      CHANNEL_TLV_PHYS_PORT_ID, sizeof(struct channel_tlv));
253 
254 	/* add list termination tlv */
255 	bnx2x_add_tlv(bp, req,
256 		      req->first_tlv.tl.length + sizeof(struct channel_tlv),
257 		      CHANNEL_TLV_LIST_END,
258 		      sizeof(struct channel_list_end_tlv));
259 
260 	/* output tlvs list */
261 	bnx2x_dp_tlv_list(bp, req);
262 
263 	while (!resources_acquired) {
264 		DP(BNX2X_MSG_SP, "attempting to acquire resources\n");
265 
266 		/* send acquire request */
267 		rc = bnx2x_send_msg2pf(bp,
268 				       &resp->hdr.status,
269 				       bp->vf2pf_mbox_mapping);
270 
271 		/* PF timeout */
272 		if (rc)
273 			goto out;
274 
275 		/* copy acquire response from buffer to bp */
276 		memcpy(&bp->acquire_resp, resp, sizeof(bp->acquire_resp));
277 
278 		attempts++;
279 
280 		/* test whether the PF accepted our request. If not, humble
281 		 * the request and try again.
282 		 */
283 		if (bp->acquire_resp.hdr.status == PFVF_STATUS_SUCCESS) {
284 			DP(BNX2X_MSG_SP, "resources acquired\n");
285 			resources_acquired = true;
286 		} else if (bp->acquire_resp.hdr.status ==
287 			   PFVF_STATUS_NO_RESOURCE &&
288 			   attempts < VF_ACQUIRE_THRESH) {
289 			DP(BNX2X_MSG_SP,
290 			   "PF unwilling to fulfill resource request. Try PF recommended amount\n");
291 
292 			/* humble our request */
293 			req->resc_request.num_txqs =
294 				min(req->resc_request.num_txqs,
295 				    bp->acquire_resp.resc.num_txqs);
296 			req->resc_request.num_rxqs =
297 				min(req->resc_request.num_rxqs,
298 				    bp->acquire_resp.resc.num_rxqs);
299 			req->resc_request.num_sbs =
300 				min(req->resc_request.num_sbs,
301 				    bp->acquire_resp.resc.num_sbs);
302 			req->resc_request.num_mac_filters =
303 				min(req->resc_request.num_mac_filters,
304 				    bp->acquire_resp.resc.num_mac_filters);
305 			req->resc_request.num_vlan_filters =
306 				min(req->resc_request.num_vlan_filters,
307 				    bp->acquire_resp.resc.num_vlan_filters);
308 			req->resc_request.num_mc_filters =
309 				min(req->resc_request.num_mc_filters,
310 				    bp->acquire_resp.resc.num_mc_filters);
311 
312 			/* Clear response buffer */
313 			memset(&bp->vf2pf_mbox->resp, 0,
314 			       sizeof(union pfvf_tlvs));
315 		} else {
316 			/* PF reports error */
317 			BNX2X_ERR("Failed to get the requested amount of resources: %d. Breaking...\n",
318 				  bp->acquire_resp.hdr.status);
319 			rc = -EAGAIN;
320 			goto out;
321 		}
322 	}
323 
324 	/* Retrieve physical port id (if possible) */
325 	phys_port_resp = (struct vfpf_port_phys_id_resp_tlv *)
326 			 bnx2x_search_tlv_list(bp, resp,
327 					       CHANNEL_TLV_PHYS_PORT_ID);
328 	if (phys_port_resp) {
329 		memcpy(bp->phys_port_id, phys_port_resp->id, ETH_ALEN);
330 		bp->flags |= HAS_PHYS_PORT_ID;
331 	}
332 
333 	/* get HW info */
334 	bp->common.chip_id |= (bp->acquire_resp.pfdev_info.chip_num & 0xffff);
335 	bp->link_params.chip_id = bp->common.chip_id;
336 	bp->db_size = bp->acquire_resp.pfdev_info.db_size;
337 	bp->common.int_block = INT_BLOCK_IGU;
338 	bp->common.chip_port_mode = CHIP_2_PORT_MODE;
339 	bp->igu_dsb_id = -1;
340 	bp->mf_ov = 0;
341 	bp->mf_mode = 0;
342 	bp->common.flash_size = 0;
343 	bp->flags |=
344 		NO_WOL_FLAG | NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG | NO_FCOE_FLAG;
345 	bp->igu_sb_cnt = bp->acquire_resp.resc.num_sbs;
346 	bp->igu_base_sb = bp->acquire_resp.resc.hw_sbs[0].hw_sb_id;
347 	strlcpy(bp->fw_ver, bp->acquire_resp.pfdev_info.fw_ver,
348 		sizeof(bp->fw_ver));
349 
350 	if (is_valid_ether_addr(bp->acquire_resp.resc.current_mac_addr))
351 		memcpy(bp->dev->dev_addr,
352 		       bp->acquire_resp.resc.current_mac_addr,
353 		       ETH_ALEN);
354 
355 out:
356 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
357 	return rc;
358 }
359 
360 int bnx2x_vfpf_release(struct bnx2x *bp)
361 {
362 	struct vfpf_release_tlv *req = &bp->vf2pf_mbox->req.release;
363 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
364 	u32 rc, vf_id;
365 
366 	/* clear mailbox and prep first tlv */
367 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_RELEASE, sizeof(*req));
368 
369 	if (bnx2x_get_vf_id(bp, &vf_id)) {
370 		rc = -EAGAIN;
371 		goto out;
372 	}
373 
374 	req->vf_id = vf_id;
375 
376 	/* add list termination tlv */
377 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
378 		      sizeof(struct channel_list_end_tlv));
379 
380 	/* output tlvs list */
381 	bnx2x_dp_tlv_list(bp, req);
382 
383 	/* send release request */
384 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
385 
386 	if (rc)
387 		/* PF timeout */
388 		goto out;
389 
390 	if (resp->hdr.status == PFVF_STATUS_SUCCESS) {
391 		/* PF released us */
392 		DP(BNX2X_MSG_SP, "vf released\n");
393 	} else {
394 		/* PF reports error */
395 		BNX2X_ERR("PF failed our release request - are we out of sync? Response status: %d\n",
396 			  resp->hdr.status);
397 		rc = -EAGAIN;
398 		goto out;
399 	}
400 out:
401 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
402 
403 	return rc;
404 }
405 
406 /* Tell PF about SB addresses */
407 int bnx2x_vfpf_init(struct bnx2x *bp)
408 {
409 	struct vfpf_init_tlv *req = &bp->vf2pf_mbox->req.init;
410 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
411 	int rc, i;
412 
413 	/* clear mailbox and prep first tlv */
414 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_INIT, sizeof(*req));
415 
416 	/* status blocks */
417 	for_each_eth_queue(bp, i)
418 		req->sb_addr[i] = (dma_addr_t)bnx2x_fp(bp, i,
419 						       status_blk_mapping);
420 
421 	/* statistics - requests only supports single queue for now */
422 	req->stats_addr = bp->fw_stats_data_mapping +
423 			  offsetof(struct bnx2x_fw_stats_data, queue_stats);
424 
425 	req->stats_stride = sizeof(struct per_queue_stats);
426 
427 	/* add list termination tlv */
428 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
429 		      sizeof(struct channel_list_end_tlv));
430 
431 	/* output tlvs list */
432 	bnx2x_dp_tlv_list(bp, req);
433 
434 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
435 	if (rc)
436 		goto out;
437 
438 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
439 		BNX2X_ERR("INIT VF failed: %d. Breaking...\n",
440 			  resp->hdr.status);
441 		rc = -EAGAIN;
442 		goto out;
443 	}
444 
445 	DP(BNX2X_MSG_SP, "INIT VF Succeeded\n");
446 out:
447 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
448 
449 	return rc;
450 }
451 
452 /* CLOSE VF - opposite to INIT_VF */
453 void bnx2x_vfpf_close_vf(struct bnx2x *bp)
454 {
455 	struct vfpf_close_tlv *req = &bp->vf2pf_mbox->req.close;
456 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
457 	int i, rc;
458 	u32 vf_id;
459 
460 	/* If we haven't got a valid VF id, there is no sense to
461 	 * continue with sending messages
462 	 */
463 	if (bnx2x_get_vf_id(bp, &vf_id))
464 		goto free_irq;
465 
466 	/* Close the queues */
467 	for_each_queue(bp, i)
468 		bnx2x_vfpf_teardown_queue(bp, i);
469 
470 	/* remove mac */
471 	bnx2x_vfpf_config_mac(bp, bp->dev->dev_addr, bp->fp->index, false);
472 
473 	/* clear mailbox and prep first tlv */
474 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_CLOSE, sizeof(*req));
475 
476 	req->vf_id = vf_id;
477 
478 	/* add list termination tlv */
479 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
480 		      sizeof(struct channel_list_end_tlv));
481 
482 	/* output tlvs list */
483 	bnx2x_dp_tlv_list(bp, req);
484 
485 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
486 
487 	if (rc)
488 		BNX2X_ERR("Sending CLOSE failed. rc was: %d\n", rc);
489 
490 	else if (resp->hdr.status != PFVF_STATUS_SUCCESS)
491 		BNX2X_ERR("Sending CLOSE failed: pf response was %d\n",
492 			  resp->hdr.status);
493 
494 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
495 
496 free_irq:
497 	/* Disable HW interrupts, NAPI */
498 	bnx2x_netif_stop(bp, 0);
499 	/* Delete all NAPI objects */
500 	bnx2x_del_all_napi(bp);
501 
502 	/* Release IRQs */
503 	bnx2x_free_irq(bp);
504 }
505 
506 static void bnx2x_leading_vfq_init(struct bnx2x *bp, struct bnx2x_virtf *vf,
507 				   struct bnx2x_vf_queue *q)
508 {
509 	u8 cl_id = vfq_cl_id(vf, q);
510 	u8 func_id = FW_VF_HANDLE(vf->abs_vfid);
511 
512 	/* mac */
513 	bnx2x_init_mac_obj(bp, &q->mac_obj,
514 			   cl_id, q->cid, func_id,
515 			   bnx2x_vf_sp(bp, vf, mac_rdata),
516 			   bnx2x_vf_sp_map(bp, vf, mac_rdata),
517 			   BNX2X_FILTER_MAC_PENDING,
518 			   &vf->filter_state,
519 			   BNX2X_OBJ_TYPE_RX_TX,
520 			   &bp->macs_pool);
521 	/* vlan */
522 	bnx2x_init_vlan_obj(bp, &q->vlan_obj,
523 			    cl_id, q->cid, func_id,
524 			    bnx2x_vf_sp(bp, vf, vlan_rdata),
525 			    bnx2x_vf_sp_map(bp, vf, vlan_rdata),
526 			    BNX2X_FILTER_VLAN_PENDING,
527 			    &vf->filter_state,
528 			    BNX2X_OBJ_TYPE_RX_TX,
529 			    &bp->vlans_pool);
530 
531 	/* mcast */
532 	bnx2x_init_mcast_obj(bp, &vf->mcast_obj, cl_id,
533 			     q->cid, func_id, func_id,
534 			     bnx2x_vf_sp(bp, vf, mcast_rdata),
535 			     bnx2x_vf_sp_map(bp, vf, mcast_rdata),
536 			     BNX2X_FILTER_MCAST_PENDING,
537 			     &vf->filter_state,
538 			     BNX2X_OBJ_TYPE_RX_TX);
539 
540 	/* rss */
541 	bnx2x_init_rss_config_obj(bp, &vf->rss_conf_obj, cl_id, q->cid,
542 				  func_id, func_id,
543 				  bnx2x_vf_sp(bp, vf, rss_rdata),
544 				  bnx2x_vf_sp_map(bp, vf, rss_rdata),
545 				  BNX2X_FILTER_RSS_CONF_PENDING,
546 				  &vf->filter_state,
547 				  BNX2X_OBJ_TYPE_RX_TX);
548 
549 	vf->leading_rss = cl_id;
550 	q->is_leading = true;
551 	q->sp_initialized = true;
552 }
553 
554 /* ask the pf to open a queue for the vf */
555 int bnx2x_vfpf_setup_q(struct bnx2x *bp, struct bnx2x_fastpath *fp,
556 		       bool is_leading)
557 {
558 	struct vfpf_setup_q_tlv *req = &bp->vf2pf_mbox->req.setup_q;
559 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
560 	u8 fp_idx = fp->index;
561 	u16 tpa_agg_size = 0, flags = 0;
562 	int rc;
563 
564 	/* clear mailbox and prep first tlv */
565 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SETUP_Q, sizeof(*req));
566 
567 	/* select tpa mode to request */
568 	if (!fp->disable_tpa) {
569 		flags |= VFPF_QUEUE_FLG_TPA;
570 		flags |= VFPF_QUEUE_FLG_TPA_IPV6;
571 		if (fp->mode == TPA_MODE_GRO)
572 			flags |= VFPF_QUEUE_FLG_TPA_GRO;
573 		tpa_agg_size = TPA_AGG_SIZE;
574 	}
575 
576 	if (is_leading)
577 		flags |= VFPF_QUEUE_FLG_LEADING_RSS;
578 
579 	/* calculate queue flags */
580 	flags |= VFPF_QUEUE_FLG_STATS;
581 	flags |= VFPF_QUEUE_FLG_CACHE_ALIGN;
582 	flags |= VFPF_QUEUE_FLG_VLAN;
583 	DP(NETIF_MSG_IFUP, "vlan removal enabled\n");
584 
585 	/* Common */
586 	req->vf_qid = fp_idx;
587 	req->param_valid = VFPF_RXQ_VALID | VFPF_TXQ_VALID;
588 
589 	/* Rx */
590 	req->rxq.rcq_addr = fp->rx_comp_mapping;
591 	req->rxq.rcq_np_addr = fp->rx_comp_mapping + BCM_PAGE_SIZE;
592 	req->rxq.rxq_addr = fp->rx_desc_mapping;
593 	req->rxq.sge_addr = fp->rx_sge_mapping;
594 	req->rxq.vf_sb = fp_idx;
595 	req->rxq.sb_index = HC_INDEX_ETH_RX_CQ_CONS;
596 	req->rxq.hc_rate = bp->rx_ticks ? 1000000/bp->rx_ticks : 0;
597 	req->rxq.mtu = bp->dev->mtu;
598 	req->rxq.buf_sz = fp->rx_buf_size;
599 	req->rxq.sge_buf_sz = BCM_PAGE_SIZE * PAGES_PER_SGE;
600 	req->rxq.tpa_agg_sz = tpa_agg_size;
601 	req->rxq.max_sge_pkt = SGE_PAGE_ALIGN(bp->dev->mtu) >> SGE_PAGE_SHIFT;
602 	req->rxq.max_sge_pkt = ((req->rxq.max_sge_pkt + PAGES_PER_SGE - 1) &
603 			  (~(PAGES_PER_SGE-1))) >> PAGES_PER_SGE_SHIFT;
604 	req->rxq.flags = flags;
605 	req->rxq.drop_flags = 0;
606 	req->rxq.cache_line_log = BNX2X_RX_ALIGN_SHIFT;
607 	req->rxq.stat_id = -1; /* No stats at the moment */
608 
609 	/* Tx */
610 	req->txq.txq_addr = fp->txdata_ptr[FIRST_TX_COS_INDEX]->tx_desc_mapping;
611 	req->txq.vf_sb = fp_idx;
612 	req->txq.sb_index = HC_INDEX_ETH_TX_CQ_CONS_COS0;
613 	req->txq.hc_rate = bp->tx_ticks ? 1000000/bp->tx_ticks : 0;
614 	req->txq.flags = flags;
615 	req->txq.traffic_type = LLFC_TRAFFIC_TYPE_NW;
616 
617 	/* add list termination tlv */
618 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
619 		      sizeof(struct channel_list_end_tlv));
620 
621 	/* output tlvs list */
622 	bnx2x_dp_tlv_list(bp, req);
623 
624 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
625 	if (rc)
626 		BNX2X_ERR("Sending SETUP_Q message for queue[%d] failed!\n",
627 			  fp_idx);
628 
629 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
630 		BNX2X_ERR("Status of SETUP_Q for queue[%d] is %d\n",
631 			  fp_idx, resp->hdr.status);
632 		rc = -EINVAL;
633 	}
634 
635 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
636 
637 	return rc;
638 }
639 
640 static int bnx2x_vfpf_teardown_queue(struct bnx2x *bp, int qidx)
641 {
642 	struct vfpf_q_op_tlv *req = &bp->vf2pf_mbox->req.q_op;
643 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
644 	int rc;
645 
646 	/* clear mailbox and prep first tlv */
647 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_TEARDOWN_Q,
648 			sizeof(*req));
649 
650 	req->vf_qid = qidx;
651 
652 	/* add list termination tlv */
653 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
654 		      sizeof(struct channel_list_end_tlv));
655 
656 	/* output tlvs list */
657 	bnx2x_dp_tlv_list(bp, req);
658 
659 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
660 
661 	if (rc) {
662 		BNX2X_ERR("Sending TEARDOWN for queue %d failed: %d\n", qidx,
663 			  rc);
664 		goto out;
665 	}
666 
667 	/* PF failed the transaction */
668 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
669 		BNX2X_ERR("TEARDOWN for queue %d failed: %d\n", qidx,
670 			  resp->hdr.status);
671 		rc = -EINVAL;
672 	}
673 
674 out:
675 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
676 
677 	return rc;
678 }
679 
680 /* request pf to add a mac for the vf */
681 int bnx2x_vfpf_config_mac(struct bnx2x *bp, u8 *addr, u8 vf_qid, bool set)
682 {
683 	struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
684 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
685 	struct pf_vf_bulletin_content bulletin = bp->pf2vf_bulletin->content;
686 	int rc = 0;
687 
688 	/* clear mailbox and prep first tlv */
689 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
690 			sizeof(*req));
691 
692 	req->flags = VFPF_SET_Q_FILTERS_MAC_VLAN_CHANGED;
693 	req->vf_qid = vf_qid;
694 	req->n_mac_vlan_filters = 1;
695 
696 	req->filters[0].flags = VFPF_Q_FILTER_DEST_MAC_VALID;
697 	if (set)
698 		req->filters[0].flags |= VFPF_Q_FILTER_SET_MAC;
699 
700 	/* sample bulletin board for new mac */
701 	bnx2x_sample_bulletin(bp);
702 
703 	/* copy mac from device to request */
704 	memcpy(req->filters[0].mac, addr, ETH_ALEN);
705 
706 	/* add list termination tlv */
707 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
708 		      sizeof(struct channel_list_end_tlv));
709 
710 	/* output tlvs list */
711 	bnx2x_dp_tlv_list(bp, req);
712 
713 	/* send message to pf */
714 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
715 	if (rc) {
716 		BNX2X_ERR("failed to send message to pf. rc was %d\n", rc);
717 		goto out;
718 	}
719 
720 	/* failure may mean PF was configured with a new mac for us */
721 	while (resp->hdr.status == PFVF_STATUS_FAILURE) {
722 		DP(BNX2X_MSG_IOV,
723 		   "vfpf SET MAC failed. Check bulletin board for new posts\n");
724 
725 		/* copy mac from bulletin to device */
726 		memcpy(bp->dev->dev_addr, bulletin.mac, ETH_ALEN);
727 
728 		/* check if bulletin board was updated */
729 		if (bnx2x_sample_bulletin(bp) == PFVF_BULLETIN_UPDATED) {
730 			/* copy mac from device to request */
731 			memcpy(req->filters[0].mac, bp->dev->dev_addr,
732 			       ETH_ALEN);
733 
734 			/* send message to pf */
735 			rc = bnx2x_send_msg2pf(bp, &resp->hdr.status,
736 					       bp->vf2pf_mbox_mapping);
737 		} else {
738 			/* no new info in bulletin */
739 			break;
740 		}
741 	}
742 
743 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
744 		BNX2X_ERR("vfpf SET MAC failed: %d\n", resp->hdr.status);
745 		rc = -EINVAL;
746 	}
747 out:
748 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
749 
750 	return 0;
751 }
752 
753 /* request pf to config rss table for vf queues*/
754 int bnx2x_vfpf_config_rss(struct bnx2x *bp,
755 			  struct bnx2x_config_rss_params *params)
756 {
757 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
758 	struct vfpf_rss_tlv *req = &bp->vf2pf_mbox->req.update_rss;
759 	int rc = 0;
760 
761 	/* clear mailbox and prep first tlv */
762 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_UPDATE_RSS,
763 			sizeof(*req));
764 
765 	/* add list termination tlv */
766 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
767 		      sizeof(struct channel_list_end_tlv));
768 
769 	memcpy(req->ind_table, params->ind_table, T_ETH_INDIRECTION_TABLE_SIZE);
770 	memcpy(req->rss_key, params->rss_key, sizeof(params->rss_key));
771 	req->ind_table_size = T_ETH_INDIRECTION_TABLE_SIZE;
772 	req->rss_key_size = T_ETH_RSS_KEY;
773 	req->rss_result_mask = params->rss_result_mask;
774 
775 	/* flags handled individually for backward/forward compatability */
776 	if (params->rss_flags & (1 << BNX2X_RSS_MODE_DISABLED))
777 		req->rss_flags |= VFPF_RSS_MODE_DISABLED;
778 	if (params->rss_flags & (1 << BNX2X_RSS_MODE_REGULAR))
779 		req->rss_flags |= VFPF_RSS_MODE_REGULAR;
780 	if (params->rss_flags & (1 << BNX2X_RSS_SET_SRCH))
781 		req->rss_flags |= VFPF_RSS_SET_SRCH;
782 	if (params->rss_flags & (1 << BNX2X_RSS_IPV4))
783 		req->rss_flags |= VFPF_RSS_IPV4;
784 	if (params->rss_flags & (1 << BNX2X_RSS_IPV4_TCP))
785 		req->rss_flags |= VFPF_RSS_IPV4_TCP;
786 	if (params->rss_flags & (1 << BNX2X_RSS_IPV4_UDP))
787 		req->rss_flags |= VFPF_RSS_IPV4_UDP;
788 	if (params->rss_flags & (1 << BNX2X_RSS_IPV6))
789 		req->rss_flags |= VFPF_RSS_IPV6;
790 	if (params->rss_flags & (1 << BNX2X_RSS_IPV6_TCP))
791 		req->rss_flags |= VFPF_RSS_IPV6_TCP;
792 	if (params->rss_flags & (1 << BNX2X_RSS_IPV6_UDP))
793 		req->rss_flags |= VFPF_RSS_IPV6_UDP;
794 
795 	DP(BNX2X_MSG_IOV, "rss flags %x\n", req->rss_flags);
796 
797 	/* output tlvs list */
798 	bnx2x_dp_tlv_list(bp, req);
799 
800 	/* send message to pf */
801 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
802 	if (rc) {
803 		BNX2X_ERR("failed to send message to pf. rc was %d\n", rc);
804 		goto out;
805 	}
806 
807 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
808 		/* Since older drivers don't support this feature (and VF has
809 		 * no way of knowing other than failing this), don't propagate
810 		 * an error in this case.
811 		 */
812 		DP(BNX2X_MSG_IOV,
813 		   "Failed to send rss message to PF over VF-PF channel [%d]\n",
814 		   resp->hdr.status);
815 	}
816 out:
817 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
818 
819 	return rc;
820 }
821 
822 int bnx2x_vfpf_set_mcast(struct net_device *dev)
823 {
824 	struct bnx2x *bp = netdev_priv(dev);
825 	struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
826 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
827 	int rc, i = 0;
828 	struct netdev_hw_addr *ha;
829 
830 	if (bp->state != BNX2X_STATE_OPEN) {
831 		DP(NETIF_MSG_IFUP, "state is %x, returning\n", bp->state);
832 		return -EINVAL;
833 	}
834 
835 	/* clear mailbox and prep first tlv */
836 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
837 			sizeof(*req));
838 
839 	/* Get Rx mode requested */
840 	DP(NETIF_MSG_IFUP, "dev->flags = %x\n", dev->flags);
841 
842 	netdev_for_each_mc_addr(ha, dev) {
843 		DP(NETIF_MSG_IFUP, "Adding mcast MAC: %pM\n",
844 		   bnx2x_mc_addr(ha));
845 		memcpy(req->multicast[i], bnx2x_mc_addr(ha), ETH_ALEN);
846 		i++;
847 	}
848 
849 	/* We support four PFVF_MAX_MULTICAST_PER_VF mcast
850 	  * addresses tops
851 	  */
852 	if (i >= PFVF_MAX_MULTICAST_PER_VF) {
853 		DP(NETIF_MSG_IFUP,
854 		   "VF supports not more than %d multicast MAC addresses\n",
855 		   PFVF_MAX_MULTICAST_PER_VF);
856 		return -EINVAL;
857 	}
858 
859 	req->n_multicast = i;
860 	req->flags |= VFPF_SET_Q_FILTERS_MULTICAST_CHANGED;
861 	req->vf_qid = 0;
862 
863 	/* add list termination tlv */
864 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
865 		      sizeof(struct channel_list_end_tlv));
866 
867 	/* output tlvs list */
868 	bnx2x_dp_tlv_list(bp, req);
869 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
870 	if (rc) {
871 		BNX2X_ERR("Sending a message failed: %d\n", rc);
872 		goto out;
873 	}
874 
875 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
876 		BNX2X_ERR("Set Rx mode/multicast failed: %d\n",
877 			  resp->hdr.status);
878 		rc = -EINVAL;
879 	}
880 out:
881 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
882 
883 	return 0;
884 }
885 
886 int bnx2x_vfpf_storm_rx_mode(struct bnx2x *bp)
887 {
888 	int mode = bp->rx_mode;
889 	struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters;
890 	struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp;
891 	int rc;
892 
893 	/* clear mailbox and prep first tlv */
894 	bnx2x_vfpf_prep(bp, &req->first_tlv, CHANNEL_TLV_SET_Q_FILTERS,
895 			sizeof(*req));
896 
897 	DP(NETIF_MSG_IFUP, "Rx mode is %d\n", mode);
898 
899 	switch (mode) {
900 	case BNX2X_RX_MODE_NONE: /* no Rx */
901 		req->rx_mask = VFPF_RX_MASK_ACCEPT_NONE;
902 		break;
903 	case BNX2X_RX_MODE_NORMAL:
904 		req->rx_mask = VFPF_RX_MASK_ACCEPT_MATCHED_MULTICAST;
905 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST;
906 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
907 		break;
908 	case BNX2X_RX_MODE_ALLMULTI:
909 		req->rx_mask = VFPF_RX_MASK_ACCEPT_ALL_MULTICAST;
910 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST;
911 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
912 		break;
913 	case BNX2X_RX_MODE_PROMISC:
914 		req->rx_mask = VFPF_RX_MASK_ACCEPT_ALL_UNICAST;
915 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_ALL_MULTICAST;
916 		req->rx_mask |= VFPF_RX_MASK_ACCEPT_BROADCAST;
917 		break;
918 	default:
919 		BNX2X_ERR("BAD rx mode (%d)\n", mode);
920 		rc = -EINVAL;
921 		goto out;
922 	}
923 
924 	req->flags |= VFPF_SET_Q_FILTERS_RX_MASK_CHANGED;
925 	req->vf_qid = 0;
926 
927 	/* add list termination tlv */
928 	bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END,
929 		      sizeof(struct channel_list_end_tlv));
930 
931 	/* output tlvs list */
932 	bnx2x_dp_tlv_list(bp, req);
933 
934 	rc = bnx2x_send_msg2pf(bp, &resp->hdr.status, bp->vf2pf_mbox_mapping);
935 	if (rc)
936 		BNX2X_ERR("Sending a message failed: %d\n", rc);
937 
938 	if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
939 		BNX2X_ERR("Set Rx mode failed: %d\n", resp->hdr.status);
940 		rc = -EINVAL;
941 	}
942 out:
943 	bnx2x_vfpf_finalize(bp, &req->first_tlv);
944 
945 	return rc;
946 }
947 
948 /* General service functions */
949 static void storm_memset_vf_mbx_ack(struct bnx2x *bp, u16 abs_fid)
950 {
951 	u32 addr = BAR_CSTRORM_INTMEM +
952 		   CSTORM_VF_PF_CHANNEL_STATE_OFFSET(abs_fid);
953 
954 	REG_WR8(bp, addr, VF_PF_CHANNEL_STATE_READY);
955 }
956 
957 static void storm_memset_vf_mbx_valid(struct bnx2x *bp, u16 abs_fid)
958 {
959 	u32 addr = BAR_CSTRORM_INTMEM +
960 		   CSTORM_VF_PF_CHANNEL_VALID_OFFSET(abs_fid);
961 
962 	REG_WR8(bp, addr, 1);
963 }
964 
965 static inline void bnx2x_set_vf_mbxs_valid(struct bnx2x *bp)
966 {
967 	int i;
968 
969 	for_each_vf(bp, i)
970 		storm_memset_vf_mbx_valid(bp, bnx2x_vf(bp, i, abs_vfid));
971 }
972 
973 /* enable vf_pf mailbox (aka vf-pf-channel) */
974 void bnx2x_vf_enable_mbx(struct bnx2x *bp, u8 abs_vfid)
975 {
976 	bnx2x_vf_flr_clnup_epilog(bp, abs_vfid);
977 
978 	/* enable the mailbox in the FW */
979 	storm_memset_vf_mbx_ack(bp, abs_vfid);
980 	storm_memset_vf_mbx_valid(bp, abs_vfid);
981 
982 	/* enable the VF access to the mailbox */
983 	bnx2x_vf_enable_access(bp, abs_vfid);
984 }
985 
986 /* this works only on !E1h */
987 static int bnx2x_copy32_vf_dmae(struct bnx2x *bp, u8 from_vf,
988 				dma_addr_t pf_addr, u8 vfid, u32 vf_addr_hi,
989 				u32 vf_addr_lo, u32 len32)
990 {
991 	struct dmae_command dmae;
992 
993 	if (CHIP_IS_E1x(bp)) {
994 		BNX2X_ERR("Chip revision does not support VFs\n");
995 		return DMAE_NOT_RDY;
996 	}
997 
998 	if (!bp->dmae_ready) {
999 		BNX2X_ERR("DMAE is not ready, can not copy\n");
1000 		return DMAE_NOT_RDY;
1001 	}
1002 
1003 	/* set opcode and fixed command fields */
1004 	bnx2x_prep_dmae_with_comp(bp, &dmae, DMAE_SRC_PCI, DMAE_DST_PCI);
1005 
1006 	if (from_vf) {
1007 		dmae.opcode_iov = (vfid << DMAE_COMMAND_SRC_VFID_SHIFT) |
1008 			(DMAE_SRC_VF << DMAE_COMMAND_SRC_VFPF_SHIFT) |
1009 			(DMAE_DST_PF << DMAE_COMMAND_DST_VFPF_SHIFT);
1010 
1011 		dmae.opcode |= (DMAE_C_DST << DMAE_COMMAND_C_FUNC_SHIFT);
1012 
1013 		dmae.src_addr_lo = vf_addr_lo;
1014 		dmae.src_addr_hi = vf_addr_hi;
1015 		dmae.dst_addr_lo = U64_LO(pf_addr);
1016 		dmae.dst_addr_hi = U64_HI(pf_addr);
1017 	} else {
1018 		dmae.opcode_iov = (vfid << DMAE_COMMAND_DST_VFID_SHIFT) |
1019 			(DMAE_DST_VF << DMAE_COMMAND_DST_VFPF_SHIFT) |
1020 			(DMAE_SRC_PF << DMAE_COMMAND_SRC_VFPF_SHIFT);
1021 
1022 		dmae.opcode |= (DMAE_C_SRC << DMAE_COMMAND_C_FUNC_SHIFT);
1023 
1024 		dmae.src_addr_lo = U64_LO(pf_addr);
1025 		dmae.src_addr_hi = U64_HI(pf_addr);
1026 		dmae.dst_addr_lo = vf_addr_lo;
1027 		dmae.dst_addr_hi = vf_addr_hi;
1028 	}
1029 	dmae.len = len32;
1030 
1031 	/* issue the command and wait for completion */
1032 	return bnx2x_issue_dmae_with_comp(bp, &dmae, bnx2x_sp(bp, wb_comp));
1033 }
1034 
1035 static void bnx2x_vf_mbx_resp_single_tlv(struct bnx2x *bp,
1036 					 struct bnx2x_virtf *vf)
1037 {
1038 	struct bnx2x_vf_mbx *mbx = BP_VF_MBX(bp, vf->index);
1039 	u16 length, type;
1040 
1041 	/* prepare response */
1042 	type = mbx->first_tlv.tl.type;
1043 	length = type == CHANNEL_TLV_ACQUIRE ?
1044 		sizeof(struct pfvf_acquire_resp_tlv) :
1045 		sizeof(struct pfvf_general_resp_tlv);
1046 	bnx2x_add_tlv(bp, &mbx->msg->resp, 0, type, length);
1047 	bnx2x_add_tlv(bp, &mbx->msg->resp, length, CHANNEL_TLV_LIST_END,
1048 		      sizeof(struct channel_list_end_tlv));
1049 }
1050 
1051 static void bnx2x_vf_mbx_resp_send_msg(struct bnx2x *bp,
1052 				       struct bnx2x_virtf *vf,
1053 				       int vf_rc)
1054 {
1055 	struct bnx2x_vf_mbx *mbx = BP_VF_MBX(bp, vf->index);
1056 	struct pfvf_general_resp_tlv *resp = &mbx->msg->resp.general_resp;
1057 	dma_addr_t pf_addr;
1058 	u64 vf_addr;
1059 	int rc;
1060 
1061 	bnx2x_dp_tlv_list(bp, resp);
1062 	DP(BNX2X_MSG_IOV, "mailbox vf address hi 0x%x, lo 0x%x, offset 0x%x\n",
1063 	   mbx->vf_addr_hi, mbx->vf_addr_lo, mbx->first_tlv.resp_msg_offset);
1064 
1065 	resp->hdr.status = bnx2x_pfvf_status_codes(vf_rc);
1066 
1067 	/* send response */
1068 	vf_addr = HILO_U64(mbx->vf_addr_hi, mbx->vf_addr_lo) +
1069 		  mbx->first_tlv.resp_msg_offset;
1070 	pf_addr = mbx->msg_mapping +
1071 		  offsetof(struct bnx2x_vf_mbx_msg, resp);
1072 
1073 	/* Copy the response buffer. The first u64 is written afterwards, as
1074 	 * the vf is sensitive to the header being written
1075 	 */
1076 	vf_addr += sizeof(u64);
1077 	pf_addr += sizeof(u64);
1078 	rc = bnx2x_copy32_vf_dmae(bp, false, pf_addr, vf->abs_vfid,
1079 				  U64_HI(vf_addr),
1080 				  U64_LO(vf_addr),
1081 				  (sizeof(union pfvf_tlvs) - sizeof(u64))/4);
1082 	if (rc) {
1083 		BNX2X_ERR("Failed to copy response body to VF %d\n",
1084 			  vf->abs_vfid);
1085 		goto mbx_error;
1086 	}
1087 	vf_addr -= sizeof(u64);
1088 	pf_addr -= sizeof(u64);
1089 
1090 	/* ack the FW */
1091 	storm_memset_vf_mbx_ack(bp, vf->abs_vfid);
1092 	mmiowb();
1093 
1094 	/* copy the response header including status-done field,
1095 	 * must be last dmae, must be after FW is acked
1096 	 */
1097 	rc = bnx2x_copy32_vf_dmae(bp, false, pf_addr, vf->abs_vfid,
1098 				  U64_HI(vf_addr),
1099 				  U64_LO(vf_addr),
1100 				  sizeof(u64)/4);
1101 
1102 	/* unlock channel mutex */
1103 	bnx2x_unlock_vf_pf_channel(bp, vf, mbx->first_tlv.tl.type);
1104 
1105 	if (rc) {
1106 		BNX2X_ERR("Failed to copy response status to VF %d\n",
1107 			  vf->abs_vfid);
1108 		goto mbx_error;
1109 	}
1110 	return;
1111 
1112 mbx_error:
1113 	bnx2x_vf_release(bp, vf);
1114 }
1115 
1116 static void bnx2x_vf_mbx_resp(struct bnx2x *bp,
1117 			      struct bnx2x_virtf *vf,
1118 			      int rc)
1119 {
1120 	bnx2x_vf_mbx_resp_single_tlv(bp, vf);
1121 	bnx2x_vf_mbx_resp_send_msg(bp, vf, rc);
1122 }
1123 
1124 static void bnx2x_vf_mbx_resp_phys_port(struct bnx2x *bp,
1125 					struct bnx2x_virtf *vf,
1126 					void *buffer,
1127 					u16 *offset)
1128 {
1129 	struct vfpf_port_phys_id_resp_tlv *port_id;
1130 
1131 	if (!(bp->flags & HAS_PHYS_PORT_ID))
1132 		return;
1133 
1134 	bnx2x_add_tlv(bp, buffer, *offset, CHANNEL_TLV_PHYS_PORT_ID,
1135 		      sizeof(struct vfpf_port_phys_id_resp_tlv));
1136 
1137 	port_id = (struct vfpf_port_phys_id_resp_tlv *)
1138 		  (((u8 *)buffer) + *offset);
1139 	memcpy(port_id->id, bp->phys_port_id, ETH_ALEN);
1140 
1141 	/* Offset should continue representing the offset to the tail
1142 	 * of TLV data (outside this function scope)
1143 	 */
1144 	*offset += sizeof(struct vfpf_port_phys_id_resp_tlv);
1145 }
1146 
1147 static void bnx2x_vf_mbx_acquire_resp(struct bnx2x *bp, struct bnx2x_virtf *vf,
1148 				      struct bnx2x_vf_mbx *mbx, int vfop_status)
1149 {
1150 	int i;
1151 	struct pfvf_acquire_resp_tlv *resp = &mbx->msg->resp.acquire_resp;
1152 	struct pf_vf_resc *resc = &resp->resc;
1153 	u8 status = bnx2x_pfvf_status_codes(vfop_status);
1154 	u16 length;
1155 
1156 	memset(resp, 0, sizeof(*resp));
1157 
1158 	/* fill in pfdev info */
1159 	resp->pfdev_info.chip_num = bp->common.chip_id;
1160 	resp->pfdev_info.db_size = bp->db_size;
1161 	resp->pfdev_info.indices_per_sb = HC_SB_MAX_INDICES_E2;
1162 	resp->pfdev_info.pf_cap = (PFVF_CAP_RSS |
1163 				   PFVF_CAP_TPA |
1164 				   PFVF_CAP_TPA_UPDATE);
1165 	bnx2x_fill_fw_str(bp, resp->pfdev_info.fw_ver,
1166 			  sizeof(resp->pfdev_info.fw_ver));
1167 
1168 	if (status == PFVF_STATUS_NO_RESOURCE ||
1169 	    status == PFVF_STATUS_SUCCESS) {
1170 		/* set resources numbers, if status equals NO_RESOURCE these
1171 		 * are max possible numbers
1172 		 */
1173 		resc->num_rxqs = vf_rxq_count(vf) ? :
1174 			bnx2x_vf_max_queue_cnt(bp, vf);
1175 		resc->num_txqs = vf_txq_count(vf) ? :
1176 			bnx2x_vf_max_queue_cnt(bp, vf);
1177 		resc->num_sbs = vf_sb_count(vf);
1178 		resc->num_mac_filters = vf_mac_rules_cnt(vf);
1179 		resc->num_vlan_filters = vf_vlan_rules_cnt(vf);
1180 		resc->num_mc_filters = 0;
1181 
1182 		if (status == PFVF_STATUS_SUCCESS) {
1183 			/* fill in the allocated resources */
1184 			struct pf_vf_bulletin_content *bulletin =
1185 				BP_VF_BULLETIN(bp, vf->index);
1186 
1187 			for_each_vfq(vf, i)
1188 				resc->hw_qid[i] =
1189 					vfq_qzone_id(vf, vfq_get(vf, i));
1190 
1191 			for_each_vf_sb(vf, i) {
1192 				resc->hw_sbs[i].hw_sb_id = vf_igu_sb(vf, i);
1193 				resc->hw_sbs[i].sb_qid = vf_hc_qzone(vf, i);
1194 			}
1195 
1196 			/* if a mac has been set for this vf, supply it */
1197 			if (bulletin->valid_bitmap & 1 << MAC_ADDR_VALID) {
1198 				memcpy(resc->current_mac_addr, bulletin->mac,
1199 				       ETH_ALEN);
1200 			}
1201 		}
1202 	}
1203 
1204 	DP(BNX2X_MSG_IOV, "VF[%d] ACQUIRE_RESPONSE: pfdev_info- chip_num=0x%x, db_size=%d, idx_per_sb=%d, pf_cap=0x%x\n"
1205 	   "resources- n_rxq-%d, n_txq-%d, n_sbs-%d, n_macs-%d, n_vlans-%d, n_mcs-%d, fw_ver: '%s'\n",
1206 	   vf->abs_vfid,
1207 	   resp->pfdev_info.chip_num,
1208 	   resp->pfdev_info.db_size,
1209 	   resp->pfdev_info.indices_per_sb,
1210 	   resp->pfdev_info.pf_cap,
1211 	   resc->num_rxqs,
1212 	   resc->num_txqs,
1213 	   resc->num_sbs,
1214 	   resc->num_mac_filters,
1215 	   resc->num_vlan_filters,
1216 	   resc->num_mc_filters,
1217 	   resp->pfdev_info.fw_ver);
1218 
1219 	DP_CONT(BNX2X_MSG_IOV, "hw_qids- [ ");
1220 	for (i = 0; i < vf_rxq_count(vf); i++)
1221 		DP_CONT(BNX2X_MSG_IOV, "%d ", resc->hw_qid[i]);
1222 	DP_CONT(BNX2X_MSG_IOV, "], sb_info- [ ");
1223 	for (i = 0; i < vf_sb_count(vf); i++)
1224 		DP_CONT(BNX2X_MSG_IOV, "%d:%d ",
1225 			resc->hw_sbs[i].hw_sb_id,
1226 			resc->hw_sbs[i].sb_qid);
1227 	DP_CONT(BNX2X_MSG_IOV, "]\n");
1228 
1229 	/* prepare response */
1230 	length = sizeof(struct pfvf_acquire_resp_tlv);
1231 	bnx2x_add_tlv(bp, &mbx->msg->resp, 0, CHANNEL_TLV_ACQUIRE, length);
1232 
1233 	/* Handle possible VF requests for physical port identifiers.
1234 	 * 'length' should continue to indicate the offset of the first empty
1235 	 * place in the buffer (i.e., where next TLV should be inserted)
1236 	 */
1237 	if (bnx2x_search_tlv_list(bp, &mbx->msg->req,
1238 				  CHANNEL_TLV_PHYS_PORT_ID))
1239 		bnx2x_vf_mbx_resp_phys_port(bp, vf, &mbx->msg->resp, &length);
1240 
1241 	bnx2x_add_tlv(bp, &mbx->msg->resp, length, CHANNEL_TLV_LIST_END,
1242 		      sizeof(struct channel_list_end_tlv));
1243 
1244 	/* send the response */
1245 	bnx2x_vf_mbx_resp_send_msg(bp, vf, vfop_status);
1246 }
1247 
1248 static void bnx2x_vf_mbx_acquire(struct bnx2x *bp, struct bnx2x_virtf *vf,
1249 				 struct bnx2x_vf_mbx *mbx)
1250 {
1251 	int rc;
1252 	struct vfpf_acquire_tlv *acquire = &mbx->msg->req.acquire;
1253 
1254 	/* log vfdef info */
1255 	DP(BNX2X_MSG_IOV,
1256 	   "VF[%d] ACQUIRE: vfdev_info- vf_id %d, vf_os %d resources- n_rxq-%d, n_txq-%d, n_sbs-%d, n_macs-%d, n_vlans-%d, n_mcs-%d\n",
1257 	   vf->abs_vfid, acquire->vfdev_info.vf_id, acquire->vfdev_info.vf_os,
1258 	   acquire->resc_request.num_rxqs, acquire->resc_request.num_txqs,
1259 	   acquire->resc_request.num_sbs, acquire->resc_request.num_mac_filters,
1260 	   acquire->resc_request.num_vlan_filters,
1261 	   acquire->resc_request.num_mc_filters);
1262 
1263 	/* acquire the resources */
1264 	rc = bnx2x_vf_acquire(bp, vf, &acquire->resc_request);
1265 
1266 	/* store address of vf's bulletin board */
1267 	vf->bulletin_map = acquire->bulletin_addr;
1268 
1269 	/* response */
1270 	bnx2x_vf_mbx_acquire_resp(bp, vf, mbx, rc);
1271 }
1272 
1273 static void bnx2x_vf_mbx_init_vf(struct bnx2x *bp, struct bnx2x_virtf *vf,
1274 			      struct bnx2x_vf_mbx *mbx)
1275 {
1276 	struct vfpf_init_tlv *init = &mbx->msg->req.init;
1277 	int rc;
1278 
1279 	/* record ghost addresses from vf message */
1280 	vf->spq_map = init->spq_addr;
1281 	vf->fw_stat_map = init->stats_addr;
1282 	vf->stats_stride = init->stats_stride;
1283 	rc = bnx2x_vf_init(bp, vf, (dma_addr_t *)init->sb_addr);
1284 
1285 	/* set VF multiqueue statistics collection mode */
1286 	if (init->flags & VFPF_INIT_FLG_STATS_COALESCE)
1287 		vf->cfg_flags |= VF_CFG_STATS_COALESCE;
1288 
1289 	/* response */
1290 	bnx2x_vf_mbx_resp(bp, vf, rc);
1291 }
1292 
1293 /* convert MBX queue-flags to standard SP queue-flags */
1294 static void bnx2x_vf_mbx_set_q_flags(struct bnx2x *bp, u32 mbx_q_flags,
1295 				     unsigned long *sp_q_flags)
1296 {
1297 	if (mbx_q_flags & VFPF_QUEUE_FLG_TPA)
1298 		__set_bit(BNX2X_Q_FLG_TPA, sp_q_flags);
1299 	if (mbx_q_flags & VFPF_QUEUE_FLG_TPA_IPV6)
1300 		__set_bit(BNX2X_Q_FLG_TPA_IPV6, sp_q_flags);
1301 	if (mbx_q_flags & VFPF_QUEUE_FLG_TPA_GRO)
1302 		__set_bit(BNX2X_Q_FLG_TPA_GRO, sp_q_flags);
1303 	if (mbx_q_flags & VFPF_QUEUE_FLG_STATS)
1304 		__set_bit(BNX2X_Q_FLG_STATS, sp_q_flags);
1305 	if (mbx_q_flags & VFPF_QUEUE_FLG_VLAN)
1306 		__set_bit(BNX2X_Q_FLG_VLAN, sp_q_flags);
1307 	if (mbx_q_flags & VFPF_QUEUE_FLG_COS)
1308 		__set_bit(BNX2X_Q_FLG_COS, sp_q_flags);
1309 	if (mbx_q_flags & VFPF_QUEUE_FLG_HC)
1310 		__set_bit(BNX2X_Q_FLG_HC, sp_q_flags);
1311 	if (mbx_q_flags & VFPF_QUEUE_FLG_DHC)
1312 		__set_bit(BNX2X_Q_FLG_DHC, sp_q_flags);
1313 	if (mbx_q_flags & VFPF_QUEUE_FLG_LEADING_RSS)
1314 		__set_bit(BNX2X_Q_FLG_LEADING_RSS, sp_q_flags);
1315 
1316 	/* outer vlan removal is set according to PF's multi function mode */
1317 	if (IS_MF_SD(bp))
1318 		__set_bit(BNX2X_Q_FLG_OV, sp_q_flags);
1319 }
1320 
1321 static void bnx2x_vf_mbx_setup_q(struct bnx2x *bp, struct bnx2x_virtf *vf,
1322 				 struct bnx2x_vf_mbx *mbx)
1323 {
1324 	struct vfpf_setup_q_tlv *setup_q = &mbx->msg->req.setup_q;
1325 	struct bnx2x_vf_queue_construct_params qctor;
1326 	int rc = 0;
1327 
1328 	/* verify vf_qid */
1329 	if (setup_q->vf_qid >= vf_rxq_count(vf)) {
1330 		BNX2X_ERR("vf_qid %d invalid, max queue count is %d\n",
1331 			  setup_q->vf_qid, vf_rxq_count(vf));
1332 		rc = -EINVAL;
1333 		goto response;
1334 	}
1335 
1336 	/* tx queues must be setup alongside rx queues thus if the rx queue
1337 	 * is not marked as valid there's nothing to do.
1338 	 */
1339 	if (setup_q->param_valid & (VFPF_RXQ_VALID|VFPF_TXQ_VALID)) {
1340 		struct bnx2x_vf_queue *q = vfq_get(vf, setup_q->vf_qid);
1341 		unsigned long q_type = 0;
1342 
1343 		struct bnx2x_queue_init_params *init_p;
1344 		struct bnx2x_queue_setup_params *setup_p;
1345 
1346 		if (bnx2x_vfq_is_leading(q))
1347 			bnx2x_leading_vfq_init(bp, vf, q);
1348 
1349 		/* re-init the VF operation context */
1350 		memset(&qctor, 0 ,
1351 		       sizeof(struct bnx2x_vf_queue_construct_params));
1352 		setup_p = &qctor.prep_qsetup;
1353 		init_p =  &qctor.qstate.params.init;
1354 
1355 		/* activate immediately */
1356 		__set_bit(BNX2X_Q_FLG_ACTIVE, &setup_p->flags);
1357 
1358 		if (setup_q->param_valid & VFPF_TXQ_VALID) {
1359 			struct bnx2x_txq_setup_params *txq_params =
1360 				&setup_p->txq_params;
1361 
1362 			__set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
1363 
1364 			/* save sb resource index */
1365 			q->sb_idx = setup_q->txq.vf_sb;
1366 
1367 			/* tx init */
1368 			init_p->tx.hc_rate = setup_q->txq.hc_rate;
1369 			init_p->tx.sb_cq_index = setup_q->txq.sb_index;
1370 
1371 			bnx2x_vf_mbx_set_q_flags(bp, setup_q->txq.flags,
1372 						 &init_p->tx.flags);
1373 
1374 			/* tx setup - flags */
1375 			bnx2x_vf_mbx_set_q_flags(bp, setup_q->txq.flags,
1376 						 &setup_p->flags);
1377 
1378 			/* tx setup - general, nothing */
1379 
1380 			/* tx setup - tx */
1381 			txq_params->dscr_map = setup_q->txq.txq_addr;
1382 			txq_params->sb_cq_index = setup_q->txq.sb_index;
1383 			txq_params->traffic_type = setup_q->txq.traffic_type;
1384 
1385 			bnx2x_vfop_qctor_dump_tx(bp, vf, init_p, setup_p,
1386 						 q->index, q->sb_idx);
1387 		}
1388 
1389 		if (setup_q->param_valid & VFPF_RXQ_VALID) {
1390 			struct bnx2x_rxq_setup_params *rxq_params =
1391 							&setup_p->rxq_params;
1392 
1393 			__set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1394 
1395 			/* Note: there is no support for different SBs
1396 			 * for TX and RX
1397 			 */
1398 			q->sb_idx = setup_q->rxq.vf_sb;
1399 
1400 			/* rx init */
1401 			init_p->rx.hc_rate = setup_q->rxq.hc_rate;
1402 			init_p->rx.sb_cq_index = setup_q->rxq.sb_index;
1403 			bnx2x_vf_mbx_set_q_flags(bp, setup_q->rxq.flags,
1404 						 &init_p->rx.flags);
1405 
1406 			/* rx setup - flags */
1407 			bnx2x_vf_mbx_set_q_flags(bp, setup_q->rxq.flags,
1408 						 &setup_p->flags);
1409 
1410 			/* rx setup - general */
1411 			setup_p->gen_params.mtu = setup_q->rxq.mtu;
1412 
1413 			/* rx setup - rx */
1414 			rxq_params->drop_flags = setup_q->rxq.drop_flags;
1415 			rxq_params->dscr_map = setup_q->rxq.rxq_addr;
1416 			rxq_params->sge_map = setup_q->rxq.sge_addr;
1417 			rxq_params->rcq_map = setup_q->rxq.rcq_addr;
1418 			rxq_params->rcq_np_map = setup_q->rxq.rcq_np_addr;
1419 			rxq_params->buf_sz = setup_q->rxq.buf_sz;
1420 			rxq_params->tpa_agg_sz = setup_q->rxq.tpa_agg_sz;
1421 			rxq_params->max_sges_pkt = setup_q->rxq.max_sge_pkt;
1422 			rxq_params->sge_buf_sz = setup_q->rxq.sge_buf_sz;
1423 			rxq_params->cache_line_log =
1424 				setup_q->rxq.cache_line_log;
1425 			rxq_params->sb_cq_index = setup_q->rxq.sb_index;
1426 
1427 			/* rx setup - multicast engine */
1428 			if (bnx2x_vfq_is_leading(q)) {
1429 				u8 mcast_id = FW_VF_HANDLE(vf->abs_vfid);
1430 
1431 				rxq_params->mcast_engine_id = mcast_id;
1432 				__set_bit(BNX2X_Q_FLG_MCAST, &setup_p->flags);
1433 			}
1434 
1435 			bnx2x_vfop_qctor_dump_rx(bp, vf, init_p, setup_p,
1436 						 q->index, q->sb_idx);
1437 		}
1438 		/* complete the preparations */
1439 		bnx2x_vfop_qctor_prep(bp, vf, q, &qctor, q_type);
1440 
1441 		rc = bnx2x_vf_queue_setup(bp, vf, q->index, &qctor);
1442 		if (rc)
1443 			goto response;
1444 	}
1445 response:
1446 	bnx2x_vf_mbx_resp(bp, vf, rc);
1447 }
1448 
1449 static int bnx2x_vf_mbx_macvlan_list(struct bnx2x *bp,
1450 				     struct bnx2x_virtf *vf,
1451 				     struct vfpf_set_q_filters_tlv *tlv,
1452 				     struct bnx2x_vf_mac_vlan_filters **pfl,
1453 				     u32 type_flag)
1454 {
1455 	int i, j;
1456 	struct bnx2x_vf_mac_vlan_filters *fl = NULL;
1457 	size_t fsz;
1458 
1459 	fsz = tlv->n_mac_vlan_filters *
1460 	      sizeof(struct bnx2x_vf_mac_vlan_filter) +
1461 	      sizeof(struct bnx2x_vf_mac_vlan_filters);
1462 
1463 	fl = kzalloc(fsz, GFP_KERNEL);
1464 	if (!fl)
1465 		return -ENOMEM;
1466 
1467 	for (i = 0, j = 0; i < tlv->n_mac_vlan_filters; i++) {
1468 		struct vfpf_q_mac_vlan_filter *msg_filter = &tlv->filters[i];
1469 
1470 		if ((msg_filter->flags & type_flag) != type_flag)
1471 			continue;
1472 		if (type_flag == VFPF_Q_FILTER_DEST_MAC_VALID) {
1473 			fl->filters[j].mac = msg_filter->mac;
1474 			fl->filters[j].type = BNX2X_VF_FILTER_MAC;
1475 		} else {
1476 			fl->filters[j].vid = msg_filter->vlan_tag;
1477 			fl->filters[j].type = BNX2X_VF_FILTER_VLAN;
1478 		}
1479 		fl->filters[j].add =
1480 			(msg_filter->flags & VFPF_Q_FILTER_SET_MAC) ?
1481 			true : false;
1482 		fl->count++;
1483 	}
1484 	if (!fl->count)
1485 		kfree(fl);
1486 	else
1487 		*pfl = fl;
1488 
1489 	return 0;
1490 }
1491 
1492 static void bnx2x_vf_mbx_dp_q_filter(struct bnx2x *bp, int msglvl, int idx,
1493 				       struct vfpf_q_mac_vlan_filter *filter)
1494 {
1495 	DP(msglvl, "MAC-VLAN[%d] -- flags=0x%x\n", idx, filter->flags);
1496 	if (filter->flags & VFPF_Q_FILTER_VLAN_TAG_VALID)
1497 		DP_CONT(msglvl, ", vlan=%d", filter->vlan_tag);
1498 	if (filter->flags & VFPF_Q_FILTER_DEST_MAC_VALID)
1499 		DP_CONT(msglvl, ", MAC=%pM", filter->mac);
1500 	DP_CONT(msglvl, "\n");
1501 }
1502 
1503 static void bnx2x_vf_mbx_dp_q_filters(struct bnx2x *bp, int msglvl,
1504 				       struct vfpf_set_q_filters_tlv *filters)
1505 {
1506 	int i;
1507 
1508 	if (filters->flags & VFPF_SET_Q_FILTERS_MAC_VLAN_CHANGED)
1509 		for (i = 0; i < filters->n_mac_vlan_filters; i++)
1510 			bnx2x_vf_mbx_dp_q_filter(bp, msglvl, i,
1511 						 &filters->filters[i]);
1512 
1513 	if (filters->flags & VFPF_SET_Q_FILTERS_RX_MASK_CHANGED)
1514 		DP(msglvl, "RX-MASK=0x%x\n", filters->rx_mask);
1515 
1516 	if (filters->flags & VFPF_SET_Q_FILTERS_MULTICAST_CHANGED)
1517 		for (i = 0; i < filters->n_multicast; i++)
1518 			DP(msglvl, "MULTICAST=%pM\n", filters->multicast[i]);
1519 }
1520 
1521 #define VFPF_MAC_FILTER		VFPF_Q_FILTER_DEST_MAC_VALID
1522 #define VFPF_VLAN_FILTER	VFPF_Q_FILTER_VLAN_TAG_VALID
1523 
1524 static int bnx2x_vf_mbx_qfilters(struct bnx2x *bp, struct bnx2x_virtf *vf)
1525 {
1526 	int rc = 0;
1527 
1528 	struct vfpf_set_q_filters_tlv *msg =
1529 		&BP_VF_MBX(bp, vf->index)->msg->req.set_q_filters;
1530 
1531 	/* check for any mac/vlan changes */
1532 	if (msg->flags & VFPF_SET_Q_FILTERS_MAC_VLAN_CHANGED) {
1533 		/* build mac list */
1534 		struct bnx2x_vf_mac_vlan_filters *fl = NULL;
1535 
1536 		rc = bnx2x_vf_mbx_macvlan_list(bp, vf, msg, &fl,
1537 					       VFPF_MAC_FILTER);
1538 		if (rc)
1539 			goto op_err;
1540 
1541 		if (fl) {
1542 
1543 			/* set mac list */
1544 			rc = bnx2x_vf_mac_vlan_config_list(bp, vf, fl,
1545 							   msg->vf_qid,
1546 							   false);
1547 			if (rc)
1548 				goto op_err;
1549 		}
1550 
1551 		/* build vlan list */
1552 		fl = NULL;
1553 
1554 		rc = bnx2x_vf_mbx_macvlan_list(bp, vf, msg, &fl,
1555 					       VFPF_VLAN_FILTER);
1556 		if (rc)
1557 			goto op_err;
1558 
1559 		if (fl) {
1560 			/* set vlan list */
1561 			rc = bnx2x_vf_mac_vlan_config_list(bp, vf, fl,
1562 							   msg->vf_qid,
1563 							   false);
1564 			if (rc)
1565 				goto op_err;
1566 		}
1567 	}
1568 
1569 	if (msg->flags & VFPF_SET_Q_FILTERS_RX_MASK_CHANGED) {
1570 		unsigned long accept = 0;
1571 		struct pf_vf_bulletin_content *bulletin =
1572 					BP_VF_BULLETIN(bp, vf->index);
1573 
1574 		/* covert VF-PF if mask to bnx2x accept flags */
1575 		if (msg->rx_mask & VFPF_RX_MASK_ACCEPT_MATCHED_UNICAST)
1576 			__set_bit(BNX2X_ACCEPT_UNICAST, &accept);
1577 
1578 		if (msg->rx_mask & VFPF_RX_MASK_ACCEPT_MATCHED_MULTICAST)
1579 			__set_bit(BNX2X_ACCEPT_MULTICAST, &accept);
1580 
1581 		if (msg->rx_mask & VFPF_RX_MASK_ACCEPT_ALL_UNICAST)
1582 			__set_bit(BNX2X_ACCEPT_ALL_UNICAST, &accept);
1583 
1584 		if (msg->rx_mask & VFPF_RX_MASK_ACCEPT_ALL_MULTICAST)
1585 			__set_bit(BNX2X_ACCEPT_ALL_MULTICAST, &accept);
1586 
1587 		if (msg->rx_mask & VFPF_RX_MASK_ACCEPT_BROADCAST)
1588 			__set_bit(BNX2X_ACCEPT_BROADCAST, &accept);
1589 
1590 		/* A packet arriving the vf's mac should be accepted
1591 		 * with any vlan, unless a vlan has already been
1592 		 * configured.
1593 		 */
1594 		if (!(bulletin->valid_bitmap & (1 << VLAN_VALID)))
1595 			__set_bit(BNX2X_ACCEPT_ANY_VLAN, &accept);
1596 
1597 		/* set rx-mode */
1598 		rc = bnx2x_vf_rxmode(bp, vf, msg->vf_qid, accept);
1599 		if (rc)
1600 			goto op_err;
1601 	}
1602 
1603 	if (msg->flags & VFPF_SET_Q_FILTERS_MULTICAST_CHANGED) {
1604 		/* set mcasts */
1605 		rc = bnx2x_vf_mcast(bp, vf, msg->multicast,
1606 				    msg->n_multicast, false);
1607 		if (rc)
1608 			goto op_err;
1609 	}
1610 op_err:
1611 	if (rc)
1612 		BNX2X_ERR("QFILTERS[%d:%d] error: rc %d\n",
1613 			  vf->abs_vfid, msg->vf_qid, rc);
1614 	return rc;
1615 }
1616 
1617 static int bnx2x_filters_validate_mac(struct bnx2x *bp,
1618 				      struct bnx2x_virtf *vf,
1619 				      struct vfpf_set_q_filters_tlv *filters)
1620 {
1621 	struct pf_vf_bulletin_content *bulletin = BP_VF_BULLETIN(bp, vf->index);
1622 	int rc = 0;
1623 
1624 	/* if a mac was already set for this VF via the set vf mac ndo, we only
1625 	 * accept mac configurations of that mac. Why accept them at all?
1626 	 * because PF may have been unable to configure the mac at the time
1627 	 * since queue was not set up.
1628 	 */
1629 	if (bulletin->valid_bitmap & 1 << MAC_ADDR_VALID) {
1630 		/* once a mac was set by ndo can only accept a single mac... */
1631 		if (filters->n_mac_vlan_filters > 1) {
1632 			BNX2X_ERR("VF[%d] requested the addition of multiple macs after set_vf_mac ndo was called\n",
1633 				  vf->abs_vfid);
1634 			rc = -EPERM;
1635 			goto response;
1636 		}
1637 
1638 		/* ...and only the mac set by the ndo */
1639 		if (filters->n_mac_vlan_filters == 1 &&
1640 		    !ether_addr_equal(filters->filters->mac, bulletin->mac)) {
1641 			BNX2X_ERR("VF[%d] requested the addition of a mac address not matching the one configured by set_vf_mac ndo\n",
1642 				  vf->abs_vfid);
1643 
1644 			rc = -EPERM;
1645 			goto response;
1646 		}
1647 	}
1648 
1649 response:
1650 	return rc;
1651 }
1652 
1653 static int bnx2x_filters_validate_vlan(struct bnx2x *bp,
1654 				       struct bnx2x_virtf *vf,
1655 				       struct vfpf_set_q_filters_tlv *filters)
1656 {
1657 	struct pf_vf_bulletin_content *bulletin = BP_VF_BULLETIN(bp, vf->index);
1658 	int rc = 0;
1659 
1660 	/* if vlan was set by hypervisor we don't allow guest to config vlan */
1661 	if (bulletin->valid_bitmap & 1 << VLAN_VALID) {
1662 		int i;
1663 
1664 		/* search for vlan filters */
1665 		for (i = 0; i < filters->n_mac_vlan_filters; i++) {
1666 			if (filters->filters[i].flags &
1667 			    VFPF_Q_FILTER_VLAN_TAG_VALID) {
1668 				BNX2X_ERR("VF[%d] attempted to configure vlan but one was already set by Hypervisor. Aborting request\n",
1669 					  vf->abs_vfid);
1670 				rc = -EPERM;
1671 				goto response;
1672 			}
1673 		}
1674 	}
1675 
1676 	/* verify vf_qid */
1677 	if (filters->vf_qid > vf_rxq_count(vf)) {
1678 		rc = -EPERM;
1679 		goto response;
1680 	}
1681 
1682 response:
1683 	return rc;
1684 }
1685 
1686 static void bnx2x_vf_mbx_set_q_filters(struct bnx2x *bp,
1687 				       struct bnx2x_virtf *vf,
1688 				       struct bnx2x_vf_mbx *mbx)
1689 {
1690 	struct vfpf_set_q_filters_tlv *filters = &mbx->msg->req.set_q_filters;
1691 	int rc;
1692 
1693 	rc = bnx2x_filters_validate_mac(bp, vf, filters);
1694 	if (rc)
1695 		goto response;
1696 
1697 	rc = bnx2x_filters_validate_vlan(bp, vf, filters);
1698 	if (rc)
1699 		goto response;
1700 
1701 	DP(BNX2X_MSG_IOV, "VF[%d] Q_FILTERS: queue[%d]\n",
1702 	   vf->abs_vfid,
1703 	   filters->vf_qid);
1704 
1705 	/* print q_filter message */
1706 	bnx2x_vf_mbx_dp_q_filters(bp, BNX2X_MSG_IOV, filters);
1707 
1708 	rc = bnx2x_vf_mbx_qfilters(bp, vf);
1709 response:
1710 	bnx2x_vf_mbx_resp(bp, vf, rc);
1711 }
1712 
1713 static void bnx2x_vf_mbx_teardown_q(struct bnx2x *bp, struct bnx2x_virtf *vf,
1714 				    struct bnx2x_vf_mbx *mbx)
1715 {
1716 	int qid = mbx->msg->req.q_op.vf_qid;
1717 	int rc;
1718 
1719 	DP(BNX2X_MSG_IOV, "VF[%d] Q_TEARDOWN: vf_qid=%d\n",
1720 	   vf->abs_vfid, qid);
1721 
1722 	rc = bnx2x_vf_queue_teardown(bp, vf, qid);
1723 	bnx2x_vf_mbx_resp(bp, vf, rc);
1724 }
1725 
1726 static void bnx2x_vf_mbx_close_vf(struct bnx2x *bp, struct bnx2x_virtf *vf,
1727 				  struct bnx2x_vf_mbx *mbx)
1728 {
1729 	int rc;
1730 
1731 	DP(BNX2X_MSG_IOV, "VF[%d] VF_CLOSE\n", vf->abs_vfid);
1732 
1733 	rc = bnx2x_vf_close(bp, vf);
1734 	bnx2x_vf_mbx_resp(bp, vf, rc);
1735 }
1736 
1737 static void bnx2x_vf_mbx_release_vf(struct bnx2x *bp, struct bnx2x_virtf *vf,
1738 				    struct bnx2x_vf_mbx *mbx)
1739 {
1740 	int rc;
1741 
1742 	DP(BNX2X_MSG_IOV, "VF[%d] VF_RELEASE\n", vf->abs_vfid);
1743 
1744 	rc = bnx2x_vf_free(bp, vf);
1745 	bnx2x_vf_mbx_resp(bp, vf, rc);
1746 }
1747 
1748 static void bnx2x_vf_mbx_update_rss(struct bnx2x *bp, struct bnx2x_virtf *vf,
1749 				    struct bnx2x_vf_mbx *mbx)
1750 {
1751 	struct bnx2x_config_rss_params rss;
1752 	struct vfpf_rss_tlv *rss_tlv = &mbx->msg->req.update_rss;
1753 	int rc = 0;
1754 
1755 	if (rss_tlv->ind_table_size != T_ETH_INDIRECTION_TABLE_SIZE ||
1756 	    rss_tlv->rss_key_size != T_ETH_RSS_KEY) {
1757 		BNX2X_ERR("failing rss configuration of vf %d due to size mismatch\n",
1758 			  vf->index);
1759 		rc = -EINVAL;
1760 		goto mbx_resp;
1761 	}
1762 
1763 	memset(&rss, 0, sizeof(struct bnx2x_config_rss_params));
1764 
1765 	/* set vfop params according to rss tlv */
1766 	memcpy(rss.ind_table, rss_tlv->ind_table,
1767 	       T_ETH_INDIRECTION_TABLE_SIZE);
1768 	memcpy(rss.rss_key, rss_tlv->rss_key, sizeof(rss_tlv->rss_key));
1769 	rss.rss_obj = &vf->rss_conf_obj;
1770 	rss.rss_result_mask = rss_tlv->rss_result_mask;
1771 
1772 	/* flags handled individually for backward/forward compatability */
1773 	rss.rss_flags = 0;
1774 	rss.ramrod_flags = 0;
1775 
1776 	if (rss_tlv->rss_flags & VFPF_RSS_MODE_DISABLED)
1777 		__set_bit(BNX2X_RSS_MODE_DISABLED, &rss.rss_flags);
1778 	if (rss_tlv->rss_flags & VFPF_RSS_MODE_REGULAR)
1779 		__set_bit(BNX2X_RSS_MODE_REGULAR, &rss.rss_flags);
1780 	if (rss_tlv->rss_flags & VFPF_RSS_SET_SRCH)
1781 		__set_bit(BNX2X_RSS_SET_SRCH, &rss.rss_flags);
1782 	if (rss_tlv->rss_flags & VFPF_RSS_IPV4)
1783 		__set_bit(BNX2X_RSS_IPV4, &rss.rss_flags);
1784 	if (rss_tlv->rss_flags & VFPF_RSS_IPV4_TCP)
1785 		__set_bit(BNX2X_RSS_IPV4_TCP, &rss.rss_flags);
1786 	if (rss_tlv->rss_flags & VFPF_RSS_IPV4_UDP)
1787 		__set_bit(BNX2X_RSS_IPV4_UDP, &rss.rss_flags);
1788 	if (rss_tlv->rss_flags & VFPF_RSS_IPV6)
1789 		__set_bit(BNX2X_RSS_IPV6, &rss.rss_flags);
1790 	if (rss_tlv->rss_flags & VFPF_RSS_IPV6_TCP)
1791 		__set_bit(BNX2X_RSS_IPV6_TCP, &rss.rss_flags);
1792 	if (rss_tlv->rss_flags & VFPF_RSS_IPV6_UDP)
1793 		__set_bit(BNX2X_RSS_IPV6_UDP, &rss.rss_flags);
1794 
1795 	if ((!(rss_tlv->rss_flags & VFPF_RSS_IPV4_TCP) &&
1796 	     rss_tlv->rss_flags & VFPF_RSS_IPV4_UDP) ||
1797 	    (!(rss_tlv->rss_flags & VFPF_RSS_IPV6_TCP) &&
1798 	     rss_tlv->rss_flags & VFPF_RSS_IPV6_UDP)) {
1799 		BNX2X_ERR("about to hit a FW assert. aborting...\n");
1800 		rc = -EINVAL;
1801 		goto mbx_resp;
1802 	}
1803 
1804 	rc = bnx2x_vf_rss_update(bp, vf, &rss);
1805 mbx_resp:
1806 	bnx2x_vf_mbx_resp(bp, vf, rc);
1807 }
1808 
1809 static int bnx2x_validate_tpa_params(struct bnx2x *bp,
1810 				       struct vfpf_tpa_tlv *tpa_tlv)
1811 {
1812 	int rc = 0;
1813 
1814 	if (tpa_tlv->tpa_client_info.max_sges_for_packet >
1815 	    U_ETH_MAX_SGES_FOR_PACKET) {
1816 		rc = -EINVAL;
1817 		BNX2X_ERR("TPA update: max_sges received %d, max is %d\n",
1818 			  tpa_tlv->tpa_client_info.max_sges_for_packet,
1819 			  U_ETH_MAX_SGES_FOR_PACKET);
1820 	}
1821 
1822 	if (tpa_tlv->tpa_client_info.max_tpa_queues > MAX_AGG_QS(bp)) {
1823 		rc = -EINVAL;
1824 		BNX2X_ERR("TPA update: max_tpa_queues received %d, max is %d\n",
1825 			  tpa_tlv->tpa_client_info.max_tpa_queues,
1826 			  MAX_AGG_QS(bp));
1827 	}
1828 
1829 	return rc;
1830 }
1831 
1832 static void bnx2x_vf_mbx_update_tpa(struct bnx2x *bp, struct bnx2x_virtf *vf,
1833 				    struct bnx2x_vf_mbx *mbx)
1834 {
1835 	struct bnx2x_queue_update_tpa_params vf_op_params;
1836 	struct vfpf_tpa_tlv *tpa_tlv = &mbx->msg->req.update_tpa;
1837 	int rc = 0;
1838 
1839 	memset(&vf_op_params, 0, sizeof(vf_op_params));
1840 
1841 	if (bnx2x_validate_tpa_params(bp, tpa_tlv))
1842 		goto mbx_resp;
1843 
1844 	vf_op_params.complete_on_both_clients =
1845 		tpa_tlv->tpa_client_info.complete_on_both_clients;
1846 	vf_op_params.dont_verify_thr =
1847 		tpa_tlv->tpa_client_info.dont_verify_thr;
1848 	vf_op_params.max_agg_sz =
1849 		tpa_tlv->tpa_client_info.max_agg_size;
1850 	vf_op_params.max_sges_pkt =
1851 		tpa_tlv->tpa_client_info.max_sges_for_packet;
1852 	vf_op_params.max_tpa_queues =
1853 		tpa_tlv->tpa_client_info.max_tpa_queues;
1854 	vf_op_params.sge_buff_sz =
1855 		tpa_tlv->tpa_client_info.sge_buff_size;
1856 	vf_op_params.sge_pause_thr_high =
1857 		tpa_tlv->tpa_client_info.sge_pause_thr_high;
1858 	vf_op_params.sge_pause_thr_low =
1859 		tpa_tlv->tpa_client_info.sge_pause_thr_low;
1860 	vf_op_params.tpa_mode =
1861 		tpa_tlv->tpa_client_info.tpa_mode;
1862 	vf_op_params.update_ipv4 =
1863 		tpa_tlv->tpa_client_info.update_ipv4;
1864 	vf_op_params.update_ipv6 =
1865 		tpa_tlv->tpa_client_info.update_ipv6;
1866 
1867 	rc = bnx2x_vf_tpa_update(bp, vf, tpa_tlv, &vf_op_params);
1868 
1869 mbx_resp:
1870 	bnx2x_vf_mbx_resp(bp, vf, rc);
1871 }
1872 
1873 /* dispatch request */
1874 static void bnx2x_vf_mbx_request(struct bnx2x *bp, struct bnx2x_virtf *vf,
1875 				  struct bnx2x_vf_mbx *mbx)
1876 {
1877 	int i;
1878 
1879 	/* check if tlv type is known */
1880 	if (bnx2x_tlv_supported(mbx->first_tlv.tl.type)) {
1881 		/* Lock the per vf op mutex and note the locker's identity.
1882 		 * The unlock will take place in mbx response.
1883 		 */
1884 		bnx2x_lock_vf_pf_channel(bp, vf, mbx->first_tlv.tl.type);
1885 
1886 		/* switch on the opcode */
1887 		switch (mbx->first_tlv.tl.type) {
1888 		case CHANNEL_TLV_ACQUIRE:
1889 			bnx2x_vf_mbx_acquire(bp, vf, mbx);
1890 			return;
1891 		case CHANNEL_TLV_INIT:
1892 			bnx2x_vf_mbx_init_vf(bp, vf, mbx);
1893 			return;
1894 		case CHANNEL_TLV_SETUP_Q:
1895 			bnx2x_vf_mbx_setup_q(bp, vf, mbx);
1896 			return;
1897 		case CHANNEL_TLV_SET_Q_FILTERS:
1898 			bnx2x_vf_mbx_set_q_filters(bp, vf, mbx);
1899 			return;
1900 		case CHANNEL_TLV_TEARDOWN_Q:
1901 			bnx2x_vf_mbx_teardown_q(bp, vf, mbx);
1902 			return;
1903 		case CHANNEL_TLV_CLOSE:
1904 			bnx2x_vf_mbx_close_vf(bp, vf, mbx);
1905 			return;
1906 		case CHANNEL_TLV_RELEASE:
1907 			bnx2x_vf_mbx_release_vf(bp, vf, mbx);
1908 			return;
1909 		case CHANNEL_TLV_UPDATE_RSS:
1910 			bnx2x_vf_mbx_update_rss(bp, vf, mbx);
1911 			return;
1912 		case CHANNEL_TLV_UPDATE_TPA:
1913 			bnx2x_vf_mbx_update_tpa(bp, vf, mbx);
1914 			return;
1915 		}
1916 
1917 	} else {
1918 		/* unknown TLV - this may belong to a VF driver from the future
1919 		 * - a version written after this PF driver was written, which
1920 		 * supports features unknown as of yet. Too bad since we don't
1921 		 * support them. Or this may be because someone wrote a crappy
1922 		 * VF driver and is sending garbage over the channel.
1923 		 */
1924 		BNX2X_ERR("unknown TLV. type %d length %d vf->state was %d. first 20 bytes of mailbox buffer:\n",
1925 			  mbx->first_tlv.tl.type, mbx->first_tlv.tl.length,
1926 			  vf->state);
1927 		for (i = 0; i < 20; i++)
1928 			DP_CONT(BNX2X_MSG_IOV, "%x ",
1929 				mbx->msg->req.tlv_buf_size.tlv_buffer[i]);
1930 	}
1931 
1932 	/* can we respond to VF (do we have an address for it?) */
1933 	if (vf->state == VF_ACQUIRED || vf->state == VF_ENABLED) {
1934 		/* notify the VF that we do not support this request */
1935 		bnx2x_vf_mbx_resp(bp, vf, PFVF_STATUS_NOT_SUPPORTED);
1936 	} else {
1937 		/* can't send a response since this VF is unknown to us
1938 		 * just ack the FW to release the mailbox and unlock
1939 		 * the channel.
1940 		 */
1941 		storm_memset_vf_mbx_ack(bp, vf->abs_vfid);
1942 		/* Firmware ack should be written before unlocking channel */
1943 		mmiowb();
1944 		bnx2x_unlock_vf_pf_channel(bp, vf, mbx->first_tlv.tl.type);
1945 	}
1946 }
1947 
1948 void bnx2x_vf_mbx_schedule(struct bnx2x *bp,
1949 			   struct vf_pf_event_data *vfpf_event)
1950 {
1951 	u8 vf_idx;
1952 
1953 	DP(BNX2X_MSG_IOV,
1954 	   "vf pf event received: vfid %d, address_hi %x, address lo %x",
1955 	   vfpf_event->vf_id, vfpf_event->msg_addr_hi, vfpf_event->msg_addr_lo);
1956 	/* Sanity checks consider removing later */
1957 
1958 	/* check if the vf_id is valid */
1959 	if (vfpf_event->vf_id - BP_VFDB(bp)->sriov.first_vf_in_pf >
1960 	    BNX2X_NR_VIRTFN(bp)) {
1961 		BNX2X_ERR("Illegal vf_id %d max allowed: %d\n",
1962 			  vfpf_event->vf_id, BNX2X_NR_VIRTFN(bp));
1963 		return;
1964 	}
1965 
1966 	vf_idx = bnx2x_vf_idx_by_abs_fid(bp, vfpf_event->vf_id);
1967 
1968 	/* Update VFDB with current message and schedule its handling */
1969 	mutex_lock(&BP_VFDB(bp)->event_mutex);
1970 	BP_VF_MBX(bp, vf_idx)->vf_addr_hi = vfpf_event->msg_addr_hi;
1971 	BP_VF_MBX(bp, vf_idx)->vf_addr_lo = vfpf_event->msg_addr_lo;
1972 	BP_VFDB(bp)->event_occur |= (1ULL << vf_idx);
1973 	mutex_unlock(&BP_VFDB(bp)->event_mutex);
1974 
1975 	bnx2x_schedule_iov_task(bp, BNX2X_IOV_HANDLE_VF_MSG);
1976 }
1977 
1978 /* handle new vf-pf messages */
1979 void bnx2x_vf_mbx(struct bnx2x *bp)
1980 {
1981 	struct bnx2x_vfdb *vfdb = BP_VFDB(bp);
1982 	u64 events;
1983 	u8 vf_idx;
1984 	int rc;
1985 
1986 	if (!vfdb)
1987 		return;
1988 
1989 	mutex_lock(&vfdb->event_mutex);
1990 	events = vfdb->event_occur;
1991 	vfdb->event_occur = 0;
1992 	mutex_unlock(&vfdb->event_mutex);
1993 
1994 	for_each_vf(bp, vf_idx) {
1995 		struct bnx2x_vf_mbx *mbx = BP_VF_MBX(bp, vf_idx);
1996 		struct bnx2x_virtf *vf = BP_VF(bp, vf_idx);
1997 
1998 		/* Handle VFs which have pending events */
1999 		if (!(events & (1ULL << vf_idx)))
2000 			continue;
2001 
2002 		DP(BNX2X_MSG_IOV,
2003 		   "Handling vf pf event vfid %d, address: [%x:%x], resp_offset 0x%x\n",
2004 		   vf_idx, mbx->vf_addr_hi, mbx->vf_addr_lo,
2005 		   mbx->first_tlv.resp_msg_offset);
2006 
2007 		/* dmae to get the VF request */
2008 		rc = bnx2x_copy32_vf_dmae(bp, true, mbx->msg_mapping,
2009 					  vf->abs_vfid, mbx->vf_addr_hi,
2010 					  mbx->vf_addr_lo,
2011 					  sizeof(union vfpf_tlvs)/4);
2012 		if (rc) {
2013 			BNX2X_ERR("Failed to copy request VF %d\n",
2014 				  vf->abs_vfid);
2015 			bnx2x_vf_release(bp, vf);
2016 			return;
2017 		}
2018 
2019 		/* process the VF message header */
2020 		mbx->first_tlv = mbx->msg->req.first_tlv;
2021 
2022 		/* Clean response buffer to refrain from falsely
2023 		 * seeing chains.
2024 		 */
2025 		memset(&mbx->msg->resp, 0, sizeof(union pfvf_tlvs));
2026 
2027 		/* dispatch the request (will prepare the response) */
2028 		bnx2x_vf_mbx_request(bp, vf, mbx);
2029 	}
2030 }
2031 
2032 /* propagate local bulletin board to vf */
2033 int bnx2x_post_vf_bulletin(struct bnx2x *bp, int vf)
2034 {
2035 	struct pf_vf_bulletin_content *bulletin = BP_VF_BULLETIN(bp, vf);
2036 	dma_addr_t pf_addr = BP_VF_BULLETIN_DMA(bp)->mapping +
2037 		vf * BULLETIN_CONTENT_SIZE;
2038 	dma_addr_t vf_addr = bnx2x_vf(bp, vf, bulletin_map);
2039 	int rc;
2040 
2041 	/* can only update vf after init took place */
2042 	if (bnx2x_vf(bp, vf, state) != VF_ENABLED &&
2043 	    bnx2x_vf(bp, vf, state) != VF_ACQUIRED)
2044 		return 0;
2045 
2046 	/* increment bulletin board version and compute crc */
2047 	bulletin->version++;
2048 	bulletin->length = BULLETIN_CONTENT_SIZE;
2049 	bulletin->crc = bnx2x_crc_vf_bulletin(bp, bulletin);
2050 
2051 	/* propagate bulletin board via dmae to vm memory */
2052 	rc = bnx2x_copy32_vf_dmae(bp, false, pf_addr,
2053 				  bnx2x_vf(bp, vf, abs_vfid), U64_HI(vf_addr),
2054 				  U64_LO(vf_addr), bulletin->length / 4);
2055 	return rc;
2056 }
2057