1 /* Broadcom NetXtreme-C/E network driver.
2  *
3  * Copyright (c) 2014-2016 Broadcom Corporation
4  * Copyright (c) 2016-2018 Broadcom Limited
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation.
9  */
10 
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/netdevice.h>
14 #include <linux/if_vlan.h>
15 #include <linux/interrupt.h>
16 #include <linux/etherdevice.h>
17 #include "bnxt_hsi.h"
18 #include "bnxt.h"
19 #include "bnxt_ulp.h"
20 #include "bnxt_sriov.h"
21 #include "bnxt_vfr.h"
22 #include "bnxt_ethtool.h"
23 
24 #ifdef CONFIG_BNXT_SRIOV
25 static int bnxt_hwrm_fwd_async_event_cmpl(struct bnxt *bp,
26 					  struct bnxt_vf_info *vf, u16 event_id)
27 {
28 	struct hwrm_fwd_async_event_cmpl_output *resp = bp->hwrm_cmd_resp_addr;
29 	struct hwrm_fwd_async_event_cmpl_input req = {0};
30 	struct hwrm_async_event_cmpl *async_cmpl;
31 	int rc = 0;
32 
33 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FWD_ASYNC_EVENT_CMPL, -1, -1);
34 	if (vf)
35 		req.encap_async_event_target_id = cpu_to_le16(vf->fw_fid);
36 	else
37 		/* broadcast this async event to all VFs */
38 		req.encap_async_event_target_id = cpu_to_le16(0xffff);
39 	async_cmpl = (struct hwrm_async_event_cmpl *)req.encap_async_event_cmpl;
40 	async_cmpl->type = cpu_to_le16(ASYNC_EVENT_CMPL_TYPE_HWRM_ASYNC_EVENT);
41 	async_cmpl->event_id = cpu_to_le16(event_id);
42 
43 	mutex_lock(&bp->hwrm_cmd_lock);
44 	rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
45 
46 	if (rc) {
47 		netdev_err(bp->dev, "hwrm_fwd_async_event_cmpl failed. rc:%d\n",
48 			   rc);
49 		goto fwd_async_event_cmpl_exit;
50 	}
51 
52 	if (resp->error_code) {
53 		netdev_err(bp->dev, "hwrm_fwd_async_event_cmpl error %d\n",
54 			   resp->error_code);
55 		rc = -1;
56 	}
57 
58 fwd_async_event_cmpl_exit:
59 	mutex_unlock(&bp->hwrm_cmd_lock);
60 	return rc;
61 }
62 
63 static int bnxt_vf_ndo_prep(struct bnxt *bp, int vf_id)
64 {
65 	if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
66 		netdev_err(bp->dev, "vf ndo called though PF is down\n");
67 		return -EINVAL;
68 	}
69 	if (!bp->pf.active_vfs) {
70 		netdev_err(bp->dev, "vf ndo called though sriov is disabled\n");
71 		return -EINVAL;
72 	}
73 	if (vf_id >= bp->pf.active_vfs) {
74 		netdev_err(bp->dev, "Invalid VF id %d\n", vf_id);
75 		return -EINVAL;
76 	}
77 	return 0;
78 }
79 
80 int bnxt_set_vf_spoofchk(struct net_device *dev, int vf_id, bool setting)
81 {
82 	struct hwrm_func_cfg_input req = {0};
83 	struct bnxt *bp = netdev_priv(dev);
84 	struct bnxt_vf_info *vf;
85 	bool old_setting = false;
86 	u32 func_flags;
87 	int rc;
88 
89 	if (bp->hwrm_spec_code < 0x10701)
90 		return -ENOTSUPP;
91 
92 	rc = bnxt_vf_ndo_prep(bp, vf_id);
93 	if (rc)
94 		return rc;
95 
96 	vf = &bp->pf.vf[vf_id];
97 	if (vf->flags & BNXT_VF_SPOOFCHK)
98 		old_setting = true;
99 	if (old_setting == setting)
100 		return 0;
101 
102 	func_flags = vf->func_flags;
103 	if (setting)
104 		func_flags |= FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_ENABLE;
105 	else
106 		func_flags |= FUNC_CFG_REQ_FLAGS_SRC_MAC_ADDR_CHECK_DISABLE;
107 	/*TODO: if the driver supports VLAN filter on guest VLAN,
108 	 * the spoof check should also include vlan anti-spoofing
109 	 */
110 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
111 	req.fid = cpu_to_le16(vf->fw_fid);
112 	req.flags = cpu_to_le32(func_flags);
113 	rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
114 	if (!rc) {
115 		vf->func_flags = func_flags;
116 		if (setting)
117 			vf->flags |= BNXT_VF_SPOOFCHK;
118 		else
119 			vf->flags &= ~BNXT_VF_SPOOFCHK;
120 	}
121 	return rc;
122 }
123 
124 int bnxt_set_vf_trust(struct net_device *dev, int vf_id, bool trusted)
125 {
126 	struct bnxt *bp = netdev_priv(dev);
127 	struct bnxt_vf_info *vf;
128 
129 	if (bnxt_vf_ndo_prep(bp, vf_id))
130 		return -EINVAL;
131 
132 	vf = &bp->pf.vf[vf_id];
133 	if (trusted)
134 		vf->flags |= BNXT_VF_TRUST;
135 	else
136 		vf->flags &= ~BNXT_VF_TRUST;
137 
138 	return 0;
139 }
140 
141 int bnxt_get_vf_config(struct net_device *dev, int vf_id,
142 		       struct ifla_vf_info *ivi)
143 {
144 	struct bnxt *bp = netdev_priv(dev);
145 	struct bnxt_vf_info *vf;
146 	int rc;
147 
148 	rc = bnxt_vf_ndo_prep(bp, vf_id);
149 	if (rc)
150 		return rc;
151 
152 	ivi->vf = vf_id;
153 	vf = &bp->pf.vf[vf_id];
154 
155 	if (is_valid_ether_addr(vf->mac_addr))
156 		memcpy(&ivi->mac, vf->mac_addr, ETH_ALEN);
157 	else
158 		memcpy(&ivi->mac, vf->vf_mac_addr, ETH_ALEN);
159 	ivi->max_tx_rate = vf->max_tx_rate;
160 	ivi->min_tx_rate = vf->min_tx_rate;
161 	ivi->vlan = vf->vlan;
162 	if (vf->flags & BNXT_VF_QOS)
163 		ivi->qos = vf->vlan >> VLAN_PRIO_SHIFT;
164 	else
165 		ivi->qos = 0;
166 	ivi->spoofchk = !!(vf->flags & BNXT_VF_SPOOFCHK);
167 	ivi->trusted = !!(vf->flags & BNXT_VF_TRUST);
168 	if (!(vf->flags & BNXT_VF_LINK_FORCED))
169 		ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
170 	else if (vf->flags & BNXT_VF_LINK_UP)
171 		ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
172 	else
173 		ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
174 
175 	return 0;
176 }
177 
178 int bnxt_set_vf_mac(struct net_device *dev, int vf_id, u8 *mac)
179 {
180 	struct hwrm_func_cfg_input req = {0};
181 	struct bnxt *bp = netdev_priv(dev);
182 	struct bnxt_vf_info *vf;
183 	int rc;
184 
185 	rc = bnxt_vf_ndo_prep(bp, vf_id);
186 	if (rc)
187 		return rc;
188 	/* reject bc or mc mac addr, zero mac addr means allow
189 	 * VF to use its own mac addr
190 	 */
191 	if (is_multicast_ether_addr(mac)) {
192 		netdev_err(dev, "Invalid VF ethernet address\n");
193 		return -EINVAL;
194 	}
195 	vf = &bp->pf.vf[vf_id];
196 
197 	memcpy(vf->mac_addr, mac, ETH_ALEN);
198 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
199 	req.fid = cpu_to_le16(vf->fw_fid);
200 	req.flags = cpu_to_le32(vf->func_flags);
201 	req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_DFLT_MAC_ADDR);
202 	memcpy(req.dflt_mac_addr, mac, ETH_ALEN);
203 	return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
204 }
205 
206 int bnxt_set_vf_vlan(struct net_device *dev, int vf_id, u16 vlan_id, u8 qos,
207 		     __be16 vlan_proto)
208 {
209 	struct hwrm_func_cfg_input req = {0};
210 	struct bnxt *bp = netdev_priv(dev);
211 	struct bnxt_vf_info *vf;
212 	u16 vlan_tag;
213 	int rc;
214 
215 	if (bp->hwrm_spec_code < 0x10201)
216 		return -ENOTSUPP;
217 
218 	if (vlan_proto != htons(ETH_P_8021Q))
219 		return -EPROTONOSUPPORT;
220 
221 	rc = bnxt_vf_ndo_prep(bp, vf_id);
222 	if (rc)
223 		return rc;
224 
225 	/* TODO: needed to implement proper handling of user priority,
226 	 * currently fail the command if there is valid priority
227 	 */
228 	if (vlan_id > 4095 || qos)
229 		return -EINVAL;
230 
231 	vf = &bp->pf.vf[vf_id];
232 	vlan_tag = vlan_id;
233 	if (vlan_tag == vf->vlan)
234 		return 0;
235 
236 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
237 	req.fid = cpu_to_le16(vf->fw_fid);
238 	req.flags = cpu_to_le32(vf->func_flags);
239 	req.dflt_vlan = cpu_to_le16(vlan_tag);
240 	req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_DFLT_VLAN);
241 	rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
242 	if (!rc)
243 		vf->vlan = vlan_tag;
244 	return rc;
245 }
246 
247 int bnxt_set_vf_bw(struct net_device *dev, int vf_id, int min_tx_rate,
248 		   int max_tx_rate)
249 {
250 	struct hwrm_func_cfg_input req = {0};
251 	struct bnxt *bp = netdev_priv(dev);
252 	struct bnxt_vf_info *vf;
253 	u32 pf_link_speed;
254 	int rc;
255 
256 	rc = bnxt_vf_ndo_prep(bp, vf_id);
257 	if (rc)
258 		return rc;
259 
260 	vf = &bp->pf.vf[vf_id];
261 	pf_link_speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed);
262 	if (max_tx_rate > pf_link_speed) {
263 		netdev_info(bp->dev, "max tx rate %d exceed PF link speed for VF %d\n",
264 			    max_tx_rate, vf_id);
265 		return -EINVAL;
266 	}
267 
268 	if (min_tx_rate > pf_link_speed || min_tx_rate > max_tx_rate) {
269 		netdev_info(bp->dev, "min tx rate %d is invalid for VF %d\n",
270 			    min_tx_rate, vf_id);
271 		return -EINVAL;
272 	}
273 	if (min_tx_rate == vf->min_tx_rate && max_tx_rate == vf->max_tx_rate)
274 		return 0;
275 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
276 	req.fid = cpu_to_le16(vf->fw_fid);
277 	req.flags = cpu_to_le32(vf->func_flags);
278 	req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_MAX_BW);
279 	req.max_bw = cpu_to_le32(max_tx_rate);
280 	req.enables |= cpu_to_le32(FUNC_CFG_REQ_ENABLES_MIN_BW);
281 	req.min_bw = cpu_to_le32(min_tx_rate);
282 	rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
283 	if (!rc) {
284 		vf->min_tx_rate = min_tx_rate;
285 		vf->max_tx_rate = max_tx_rate;
286 	}
287 	return rc;
288 }
289 
290 int bnxt_set_vf_link_state(struct net_device *dev, int vf_id, int link)
291 {
292 	struct bnxt *bp = netdev_priv(dev);
293 	struct bnxt_vf_info *vf;
294 	int rc;
295 
296 	rc = bnxt_vf_ndo_prep(bp, vf_id);
297 	if (rc)
298 		return rc;
299 
300 	vf = &bp->pf.vf[vf_id];
301 
302 	vf->flags &= ~(BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED);
303 	switch (link) {
304 	case IFLA_VF_LINK_STATE_AUTO:
305 		vf->flags |= BNXT_VF_LINK_UP;
306 		break;
307 	case IFLA_VF_LINK_STATE_DISABLE:
308 		vf->flags |= BNXT_VF_LINK_FORCED;
309 		break;
310 	case IFLA_VF_LINK_STATE_ENABLE:
311 		vf->flags |= BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED;
312 		break;
313 	default:
314 		netdev_err(bp->dev, "Invalid link option\n");
315 		rc = -EINVAL;
316 		break;
317 	}
318 	if (vf->flags & (BNXT_VF_LINK_UP | BNXT_VF_LINK_FORCED))
319 		rc = bnxt_hwrm_fwd_async_event_cmpl(bp, vf,
320 			ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE);
321 	return rc;
322 }
323 
324 static int bnxt_set_vf_attr(struct bnxt *bp, int num_vfs)
325 {
326 	int i;
327 	struct bnxt_vf_info *vf;
328 
329 	for (i = 0; i < num_vfs; i++) {
330 		vf = &bp->pf.vf[i];
331 		memset(vf, 0, sizeof(*vf));
332 	}
333 	return 0;
334 }
335 
336 static int bnxt_hwrm_func_vf_resource_free(struct bnxt *bp, int num_vfs)
337 {
338 	int i, rc = 0;
339 	struct bnxt_pf_info *pf = &bp->pf;
340 	struct hwrm_func_vf_resc_free_input req = {0};
341 
342 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_RESC_FREE, -1, -1);
343 
344 	mutex_lock(&bp->hwrm_cmd_lock);
345 	for (i = pf->first_vf_id; i < pf->first_vf_id + num_vfs; i++) {
346 		req.vf_id = cpu_to_le16(i);
347 		rc = _hwrm_send_message(bp, &req, sizeof(req),
348 					HWRM_CMD_TIMEOUT);
349 		if (rc)
350 			break;
351 	}
352 	mutex_unlock(&bp->hwrm_cmd_lock);
353 	return rc;
354 }
355 
356 static void bnxt_free_vf_resources(struct bnxt *bp)
357 {
358 	struct pci_dev *pdev = bp->pdev;
359 	int i;
360 
361 	kfree(bp->pf.vf_event_bmap);
362 	bp->pf.vf_event_bmap = NULL;
363 
364 	for (i = 0; i < 4; i++) {
365 		if (bp->pf.hwrm_cmd_req_addr[i]) {
366 			dma_free_coherent(&pdev->dev, BNXT_PAGE_SIZE,
367 					  bp->pf.hwrm_cmd_req_addr[i],
368 					  bp->pf.hwrm_cmd_req_dma_addr[i]);
369 			bp->pf.hwrm_cmd_req_addr[i] = NULL;
370 		}
371 	}
372 
373 	kfree(bp->pf.vf);
374 	bp->pf.vf = NULL;
375 }
376 
377 static int bnxt_alloc_vf_resources(struct bnxt *bp, int num_vfs)
378 {
379 	struct pci_dev *pdev = bp->pdev;
380 	u32 nr_pages, size, i, j, k = 0;
381 
382 	bp->pf.vf = kcalloc(num_vfs, sizeof(struct bnxt_vf_info), GFP_KERNEL);
383 	if (!bp->pf.vf)
384 		return -ENOMEM;
385 
386 	bnxt_set_vf_attr(bp, num_vfs);
387 
388 	size = num_vfs * BNXT_HWRM_REQ_MAX_SIZE;
389 	nr_pages = size / BNXT_PAGE_SIZE;
390 	if (size & (BNXT_PAGE_SIZE - 1))
391 		nr_pages++;
392 
393 	for (i = 0; i < nr_pages; i++) {
394 		bp->pf.hwrm_cmd_req_addr[i] =
395 			dma_alloc_coherent(&pdev->dev, BNXT_PAGE_SIZE,
396 					   &bp->pf.hwrm_cmd_req_dma_addr[i],
397 					   GFP_KERNEL);
398 
399 		if (!bp->pf.hwrm_cmd_req_addr[i])
400 			return -ENOMEM;
401 
402 		for (j = 0; j < BNXT_HWRM_REQS_PER_PAGE && k < num_vfs; j++) {
403 			struct bnxt_vf_info *vf = &bp->pf.vf[k];
404 
405 			vf->hwrm_cmd_req_addr = bp->pf.hwrm_cmd_req_addr[i] +
406 						j * BNXT_HWRM_REQ_MAX_SIZE;
407 			vf->hwrm_cmd_req_dma_addr =
408 				bp->pf.hwrm_cmd_req_dma_addr[i] + j *
409 				BNXT_HWRM_REQ_MAX_SIZE;
410 			k++;
411 		}
412 	}
413 
414 	/* Max 128 VF's */
415 	bp->pf.vf_event_bmap = kzalloc(16, GFP_KERNEL);
416 	if (!bp->pf.vf_event_bmap)
417 		return -ENOMEM;
418 
419 	bp->pf.hwrm_cmd_req_pages = nr_pages;
420 	return 0;
421 }
422 
423 static int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp)
424 {
425 	struct hwrm_func_buf_rgtr_input req = {0};
426 
427 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_BUF_RGTR, -1, -1);
428 
429 	req.req_buf_num_pages = cpu_to_le16(bp->pf.hwrm_cmd_req_pages);
430 	req.req_buf_page_size = cpu_to_le16(BNXT_PAGE_SHIFT);
431 	req.req_buf_len = cpu_to_le16(BNXT_HWRM_REQ_MAX_SIZE);
432 	req.req_buf_page_addr0 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[0]);
433 	req.req_buf_page_addr1 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[1]);
434 	req.req_buf_page_addr2 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[2]);
435 	req.req_buf_page_addr3 = cpu_to_le64(bp->pf.hwrm_cmd_req_dma_addr[3]);
436 
437 	return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
438 }
439 
440 /* Only called by PF to reserve resources for VFs, returns actual number of
441  * VFs configured, or < 0 on error.
442  */
443 static int bnxt_hwrm_func_vf_resc_cfg(struct bnxt *bp, int num_vfs)
444 {
445 	struct hwrm_func_vf_resource_cfg_input req = {0};
446 	struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
447 	u16 vf_tx_rings, vf_rx_rings, vf_cp_rings;
448 	u16 vf_stat_ctx, vf_vnics, vf_ring_grps;
449 	struct bnxt_pf_info *pf = &bp->pf;
450 	int i, rc = 0, min = 1;
451 
452 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_RESOURCE_CFG, -1, -1);
453 
454 	vf_cp_rings = hw_resc->max_cp_rings - bp->cp_nr_rings;
455 	vf_stat_ctx = hw_resc->max_stat_ctxs - bp->num_stat_ctxs;
456 	if (bp->flags & BNXT_FLAG_AGG_RINGS)
457 		vf_rx_rings = hw_resc->max_rx_rings - bp->rx_nr_rings * 2;
458 	else
459 		vf_rx_rings = hw_resc->max_rx_rings - bp->rx_nr_rings;
460 	vf_ring_grps = hw_resc->max_hw_ring_grps - bp->rx_nr_rings;
461 	vf_tx_rings = hw_resc->max_tx_rings - bp->tx_nr_rings;
462 	vf_vnics = hw_resc->max_vnics - bp->nr_vnics;
463 	vf_vnics = min_t(u16, vf_vnics, vf_rx_rings);
464 
465 	req.min_rsscos_ctx = cpu_to_le16(BNXT_VF_MIN_RSS_CTX);
466 	req.max_rsscos_ctx = cpu_to_le16(BNXT_VF_MAX_RSS_CTX);
467 	if (pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC) {
468 		min = 0;
469 		req.min_rsscos_ctx = cpu_to_le16(min);
470 	}
471 	if (pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL ||
472 	    pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC) {
473 		req.min_cmpl_rings = cpu_to_le16(min);
474 		req.min_tx_rings = cpu_to_le16(min);
475 		req.min_rx_rings = cpu_to_le16(min);
476 		req.min_l2_ctxs = cpu_to_le16(min);
477 		req.min_vnics = cpu_to_le16(min);
478 		req.min_stat_ctx = cpu_to_le16(min);
479 		req.min_hw_ring_grps = cpu_to_le16(min);
480 	} else {
481 		vf_cp_rings /= num_vfs;
482 		vf_tx_rings /= num_vfs;
483 		vf_rx_rings /= num_vfs;
484 		vf_vnics /= num_vfs;
485 		vf_stat_ctx /= num_vfs;
486 		vf_ring_grps /= num_vfs;
487 
488 		req.min_cmpl_rings = cpu_to_le16(vf_cp_rings);
489 		req.min_tx_rings = cpu_to_le16(vf_tx_rings);
490 		req.min_rx_rings = cpu_to_le16(vf_rx_rings);
491 		req.min_l2_ctxs = cpu_to_le16(BNXT_VF_MAX_L2_CTX);
492 		req.min_vnics = cpu_to_le16(vf_vnics);
493 		req.min_stat_ctx = cpu_to_le16(vf_stat_ctx);
494 		req.min_hw_ring_grps = cpu_to_le16(vf_ring_grps);
495 	}
496 	req.max_cmpl_rings = cpu_to_le16(vf_cp_rings);
497 	req.max_tx_rings = cpu_to_le16(vf_tx_rings);
498 	req.max_rx_rings = cpu_to_le16(vf_rx_rings);
499 	req.max_l2_ctxs = cpu_to_le16(BNXT_VF_MAX_L2_CTX);
500 	req.max_vnics = cpu_to_le16(vf_vnics);
501 	req.max_stat_ctx = cpu_to_le16(vf_stat_ctx);
502 	req.max_hw_ring_grps = cpu_to_le16(vf_ring_grps);
503 
504 	mutex_lock(&bp->hwrm_cmd_lock);
505 	for (i = 0; i < num_vfs; i++) {
506 		req.vf_id = cpu_to_le16(pf->first_vf_id + i);
507 		rc = _hwrm_send_message(bp, &req, sizeof(req),
508 					HWRM_CMD_TIMEOUT);
509 		if (rc) {
510 			rc = -ENOMEM;
511 			break;
512 		}
513 		pf->active_vfs = i + 1;
514 		pf->vf[i].fw_fid = pf->first_vf_id + i;
515 	}
516 	mutex_unlock(&bp->hwrm_cmd_lock);
517 	if (pf->active_vfs) {
518 		u16 n = pf->active_vfs;
519 
520 		hw_resc->max_tx_rings -= le16_to_cpu(req.min_tx_rings) * n;
521 		hw_resc->max_rx_rings -= le16_to_cpu(req.min_rx_rings) * n;
522 		hw_resc->max_hw_ring_grps -= le16_to_cpu(req.min_hw_ring_grps) *
523 					     n;
524 		hw_resc->max_cp_rings -= le16_to_cpu(req.min_cmpl_rings) * n;
525 		hw_resc->max_rsscos_ctxs -= pf->active_vfs;
526 		hw_resc->max_stat_ctxs -= le16_to_cpu(req.min_stat_ctx) * n;
527 		hw_resc->max_vnics -= le16_to_cpu(req.min_vnics) * n;
528 
529 		rc = pf->active_vfs;
530 	}
531 	return rc;
532 }
533 
534 /* Only called by PF to reserve resources for VFs, returns actual number of
535  * VFs configured, or < 0 on error.
536  */
537 static int bnxt_hwrm_func_cfg(struct bnxt *bp, int num_vfs)
538 {
539 	u32 rc = 0, mtu, i;
540 	u16 vf_tx_rings, vf_rx_rings, vf_cp_rings, vf_stat_ctx, vf_vnics;
541 	struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
542 	u16 vf_ring_grps, max_stat_ctxs;
543 	struct hwrm_func_cfg_input req = {0};
544 	struct bnxt_pf_info *pf = &bp->pf;
545 	int total_vf_tx_rings = 0;
546 
547 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
548 
549 	max_stat_ctxs = hw_resc->max_stat_ctxs;
550 
551 	/* Remaining rings are distributed equally amongs VF's for now */
552 	vf_cp_rings = (hw_resc->max_cp_rings - bp->cp_nr_rings) / num_vfs;
553 	vf_stat_ctx = (max_stat_ctxs - bp->num_stat_ctxs) / num_vfs;
554 	if (bp->flags & BNXT_FLAG_AGG_RINGS)
555 		vf_rx_rings = (hw_resc->max_rx_rings - bp->rx_nr_rings * 2) /
556 			      num_vfs;
557 	else
558 		vf_rx_rings = (hw_resc->max_rx_rings - bp->rx_nr_rings) /
559 			      num_vfs;
560 	vf_ring_grps = (hw_resc->max_hw_ring_grps - bp->rx_nr_rings) / num_vfs;
561 	vf_tx_rings = (hw_resc->max_tx_rings - bp->tx_nr_rings) / num_vfs;
562 	vf_vnics = (hw_resc->max_vnics - bp->nr_vnics) / num_vfs;
563 	vf_vnics = min_t(u16, vf_vnics, vf_rx_rings);
564 
565 	req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_MTU |
566 				  FUNC_CFG_REQ_ENABLES_MRU |
567 				  FUNC_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS |
568 				  FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS |
569 				  FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
570 				  FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS |
571 				  FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS |
572 				  FUNC_CFG_REQ_ENABLES_NUM_L2_CTXS |
573 				  FUNC_CFG_REQ_ENABLES_NUM_VNICS |
574 				  FUNC_CFG_REQ_ENABLES_NUM_HW_RING_GRPS);
575 
576 	mtu = bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
577 	req.mru = cpu_to_le16(mtu);
578 	req.mtu = cpu_to_le16(mtu);
579 
580 	req.num_rsscos_ctxs = cpu_to_le16(1);
581 	req.num_cmpl_rings = cpu_to_le16(vf_cp_rings);
582 	req.num_tx_rings = cpu_to_le16(vf_tx_rings);
583 	req.num_rx_rings = cpu_to_le16(vf_rx_rings);
584 	req.num_hw_ring_grps = cpu_to_le16(vf_ring_grps);
585 	req.num_l2_ctxs = cpu_to_le16(4);
586 
587 	req.num_vnics = cpu_to_le16(vf_vnics);
588 	/* FIXME spec currently uses 1 bit for stats ctx */
589 	req.num_stat_ctxs = cpu_to_le16(vf_stat_ctx);
590 
591 	mutex_lock(&bp->hwrm_cmd_lock);
592 	for (i = 0; i < num_vfs; i++) {
593 		int vf_tx_rsvd = vf_tx_rings;
594 
595 		req.fid = cpu_to_le16(pf->first_vf_id + i);
596 		rc = _hwrm_send_message(bp, &req, sizeof(req),
597 					HWRM_CMD_TIMEOUT);
598 		if (rc)
599 			break;
600 		pf->active_vfs = i + 1;
601 		pf->vf[i].fw_fid = le16_to_cpu(req.fid);
602 		rc = __bnxt_hwrm_get_tx_rings(bp, pf->vf[i].fw_fid,
603 					      &vf_tx_rsvd);
604 		if (rc)
605 			break;
606 		total_vf_tx_rings += vf_tx_rsvd;
607 	}
608 	mutex_unlock(&bp->hwrm_cmd_lock);
609 	if (rc)
610 		rc = -ENOMEM;
611 	if (pf->active_vfs) {
612 		hw_resc->max_tx_rings -= total_vf_tx_rings;
613 		hw_resc->max_rx_rings -= vf_rx_rings * num_vfs;
614 		hw_resc->max_hw_ring_grps -= vf_ring_grps * num_vfs;
615 		hw_resc->max_cp_rings -= vf_cp_rings * num_vfs;
616 		hw_resc->max_rsscos_ctxs -= num_vfs;
617 		hw_resc->max_stat_ctxs -= vf_stat_ctx * num_vfs;
618 		hw_resc->max_vnics -= vf_vnics * num_vfs;
619 		rc = pf->active_vfs;
620 	}
621 	return rc;
622 }
623 
624 static int bnxt_func_cfg(struct bnxt *bp, int num_vfs)
625 {
626 	if (BNXT_NEW_RM(bp))
627 		return bnxt_hwrm_func_vf_resc_cfg(bp, num_vfs);
628 	else
629 		return bnxt_hwrm_func_cfg(bp, num_vfs);
630 }
631 
632 static int bnxt_sriov_enable(struct bnxt *bp, int *num_vfs)
633 {
634 	int rc = 0, vfs_supported;
635 	int min_rx_rings, min_tx_rings, min_rss_ctxs;
636 	struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
637 	int tx_ok = 0, rx_ok = 0, rss_ok = 0;
638 	int avail_cp, avail_stat;
639 
640 	/* Check if we can enable requested num of vf's. At a mininum
641 	 * we require 1 RX 1 TX rings for each VF. In this minimum conf
642 	 * features like TPA will not be available.
643 	 */
644 	vfs_supported = *num_vfs;
645 
646 	avail_cp = hw_resc->max_cp_rings - bp->cp_nr_rings;
647 	avail_stat = hw_resc->max_stat_ctxs - bp->num_stat_ctxs;
648 	avail_cp = min_t(int, avail_cp, avail_stat);
649 
650 	while (vfs_supported) {
651 		min_rx_rings = vfs_supported;
652 		min_tx_rings = vfs_supported;
653 		min_rss_ctxs = vfs_supported;
654 
655 		if (bp->flags & BNXT_FLAG_AGG_RINGS) {
656 			if (hw_resc->max_rx_rings - bp->rx_nr_rings * 2 >=
657 			    min_rx_rings)
658 				rx_ok = 1;
659 		} else {
660 			if (hw_resc->max_rx_rings - bp->rx_nr_rings >=
661 			    min_rx_rings)
662 				rx_ok = 1;
663 		}
664 		if (hw_resc->max_vnics - bp->nr_vnics < min_rx_rings ||
665 		    avail_cp < min_rx_rings)
666 			rx_ok = 0;
667 
668 		if (hw_resc->max_tx_rings - bp->tx_nr_rings >= min_tx_rings &&
669 		    avail_cp >= min_tx_rings)
670 			tx_ok = 1;
671 
672 		if (hw_resc->max_rsscos_ctxs - bp->rsscos_nr_ctxs >=
673 		    min_rss_ctxs)
674 			rss_ok = 1;
675 
676 		if (tx_ok && rx_ok && rss_ok)
677 			break;
678 
679 		vfs_supported--;
680 	}
681 
682 	if (!vfs_supported) {
683 		netdev_err(bp->dev, "Cannot enable VF's as all resources are used by PF\n");
684 		return -EINVAL;
685 	}
686 
687 	if (vfs_supported != *num_vfs) {
688 		netdev_info(bp->dev, "Requested VFs %d, can enable %d\n",
689 			    *num_vfs, vfs_supported);
690 		*num_vfs = vfs_supported;
691 	}
692 
693 	rc = bnxt_alloc_vf_resources(bp, *num_vfs);
694 	if (rc)
695 		goto err_out1;
696 
697 	/* Reserve resources for VFs */
698 	rc = bnxt_func_cfg(bp, *num_vfs);
699 	if (rc != *num_vfs) {
700 		if (rc <= 0) {
701 			netdev_warn(bp->dev, "Unable to reserve resources for SRIOV.\n");
702 			*num_vfs = 0;
703 			goto err_out2;
704 		}
705 		netdev_warn(bp->dev, "Only able to reserve resources for %d VFs.\n", rc);
706 		*num_vfs = rc;
707 	}
708 
709 	/* Register buffers for VFs */
710 	rc = bnxt_hwrm_func_buf_rgtr(bp);
711 	if (rc)
712 		goto err_out2;
713 
714 	bnxt_ulp_sriov_cfg(bp, *num_vfs);
715 
716 	rc = pci_enable_sriov(bp->pdev, *num_vfs);
717 	if (rc)
718 		goto err_out2;
719 
720 	return 0;
721 
722 err_out2:
723 	/* Free the resources reserved for various VF's */
724 	bnxt_hwrm_func_vf_resource_free(bp, *num_vfs);
725 
726 err_out1:
727 	bnxt_free_vf_resources(bp);
728 
729 	return rc;
730 }
731 
732 void bnxt_sriov_disable(struct bnxt *bp)
733 {
734 	u16 num_vfs = pci_num_vf(bp->pdev);
735 
736 	if (!num_vfs)
737 		return;
738 
739 	/* synchronize VF and VF-rep create and destroy */
740 	mutex_lock(&bp->sriov_lock);
741 	bnxt_vf_reps_destroy(bp);
742 
743 	if (pci_vfs_assigned(bp->pdev)) {
744 		bnxt_hwrm_fwd_async_event_cmpl(
745 			bp, NULL, ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD);
746 		netdev_warn(bp->dev, "Unable to free %d VFs because some are assigned to VMs.\n",
747 			    num_vfs);
748 	} else {
749 		pci_disable_sriov(bp->pdev);
750 		/* Free the HW resources reserved for various VF's */
751 		bnxt_hwrm_func_vf_resource_free(bp, num_vfs);
752 	}
753 	mutex_unlock(&bp->sriov_lock);
754 
755 	bnxt_free_vf_resources(bp);
756 
757 	bp->pf.active_vfs = 0;
758 	/* Reclaim all resources for the PF. */
759 	rtnl_lock();
760 	bnxt_restore_pf_fw_resources(bp);
761 	rtnl_unlock();
762 
763 	bnxt_ulp_sriov_cfg(bp, 0);
764 }
765 
766 int bnxt_sriov_configure(struct pci_dev *pdev, int num_vfs)
767 {
768 	struct net_device *dev = pci_get_drvdata(pdev);
769 	struct bnxt *bp = netdev_priv(dev);
770 
771 	if (!(bp->flags & BNXT_FLAG_USING_MSIX)) {
772 		netdev_warn(dev, "Not allow SRIOV if the irq mode is not MSIX\n");
773 		return 0;
774 	}
775 
776 	rtnl_lock();
777 	if (!netif_running(dev)) {
778 		netdev_warn(dev, "Reject SRIOV config request since if is down!\n");
779 		rtnl_unlock();
780 		return 0;
781 	}
782 	bp->sriov_cfg = true;
783 	rtnl_unlock();
784 
785 	if (pci_vfs_assigned(bp->pdev)) {
786 		netdev_warn(dev, "Unable to configure SRIOV since some VFs are assigned to VMs.\n");
787 		num_vfs = 0;
788 		goto sriov_cfg_exit;
789 	}
790 
791 	/* Check if enabled VFs is same as requested */
792 	if (num_vfs && num_vfs == bp->pf.active_vfs)
793 		goto sriov_cfg_exit;
794 
795 	/* if there are previous existing VFs, clean them up */
796 	bnxt_sriov_disable(bp);
797 	if (!num_vfs)
798 		goto sriov_cfg_exit;
799 
800 	bnxt_sriov_enable(bp, &num_vfs);
801 
802 sriov_cfg_exit:
803 	bp->sriov_cfg = false;
804 	wake_up(&bp->sriov_cfg_wait);
805 
806 	return num_vfs;
807 }
808 
809 static int bnxt_hwrm_fwd_resp(struct bnxt *bp, struct bnxt_vf_info *vf,
810 			      void *encap_resp, __le64 encap_resp_addr,
811 			      __le16 encap_resp_cpr, u32 msg_size)
812 {
813 	int rc = 0;
814 	struct hwrm_fwd_resp_input req = {0};
815 	struct hwrm_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
816 
817 	if (BNXT_FWD_RESP_SIZE_ERR(msg_size))
818 		return -EINVAL;
819 
820 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FWD_RESP, -1, -1);
821 
822 	/* Set the new target id */
823 	req.target_id = cpu_to_le16(vf->fw_fid);
824 	req.encap_resp_target_id = cpu_to_le16(vf->fw_fid);
825 	req.encap_resp_len = cpu_to_le16(msg_size);
826 	req.encap_resp_addr = encap_resp_addr;
827 	req.encap_resp_cmpl_ring = encap_resp_cpr;
828 	memcpy(req.encap_resp, encap_resp, msg_size);
829 
830 	mutex_lock(&bp->hwrm_cmd_lock);
831 	rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
832 
833 	if (rc) {
834 		netdev_err(bp->dev, "hwrm_fwd_resp failed. rc:%d\n", rc);
835 		goto fwd_resp_exit;
836 	}
837 
838 	if (resp->error_code) {
839 		netdev_err(bp->dev, "hwrm_fwd_resp error %d\n",
840 			   resp->error_code);
841 		rc = -1;
842 	}
843 
844 fwd_resp_exit:
845 	mutex_unlock(&bp->hwrm_cmd_lock);
846 	return rc;
847 }
848 
849 static int bnxt_hwrm_fwd_err_resp(struct bnxt *bp, struct bnxt_vf_info *vf,
850 				  u32 msg_size)
851 {
852 	int rc = 0;
853 	struct hwrm_reject_fwd_resp_input req = {0};
854 	struct hwrm_reject_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
855 
856 	if (BNXT_REJ_FWD_RESP_SIZE_ERR(msg_size))
857 		return -EINVAL;
858 
859 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_REJECT_FWD_RESP, -1, -1);
860 	/* Set the new target id */
861 	req.target_id = cpu_to_le16(vf->fw_fid);
862 	req.encap_resp_target_id = cpu_to_le16(vf->fw_fid);
863 	memcpy(req.encap_request, vf->hwrm_cmd_req_addr, msg_size);
864 
865 	mutex_lock(&bp->hwrm_cmd_lock);
866 	rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
867 
868 	if (rc) {
869 		netdev_err(bp->dev, "hwrm_fwd_err_resp failed. rc:%d\n", rc);
870 		goto fwd_err_resp_exit;
871 	}
872 
873 	if (resp->error_code) {
874 		netdev_err(bp->dev, "hwrm_fwd_err_resp error %d\n",
875 			   resp->error_code);
876 		rc = -1;
877 	}
878 
879 fwd_err_resp_exit:
880 	mutex_unlock(&bp->hwrm_cmd_lock);
881 	return rc;
882 }
883 
884 static int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, struct bnxt_vf_info *vf,
885 				   u32 msg_size)
886 {
887 	int rc = 0;
888 	struct hwrm_exec_fwd_resp_input req = {0};
889 	struct hwrm_exec_fwd_resp_output *resp = bp->hwrm_cmd_resp_addr;
890 
891 	if (BNXT_EXEC_FWD_RESP_SIZE_ERR(msg_size))
892 		return -EINVAL;
893 
894 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_EXEC_FWD_RESP, -1, -1);
895 	/* Set the new target id */
896 	req.target_id = cpu_to_le16(vf->fw_fid);
897 	req.encap_resp_target_id = cpu_to_le16(vf->fw_fid);
898 	memcpy(req.encap_request, vf->hwrm_cmd_req_addr, msg_size);
899 
900 	mutex_lock(&bp->hwrm_cmd_lock);
901 	rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
902 
903 	if (rc) {
904 		netdev_err(bp->dev, "hwrm_exec_fw_resp failed. rc:%d\n", rc);
905 		goto exec_fwd_resp_exit;
906 	}
907 
908 	if (resp->error_code) {
909 		netdev_err(bp->dev, "hwrm_exec_fw_resp error %d\n",
910 			   resp->error_code);
911 		rc = -1;
912 	}
913 
914 exec_fwd_resp_exit:
915 	mutex_unlock(&bp->hwrm_cmd_lock);
916 	return rc;
917 }
918 
919 static int bnxt_vf_configure_mac(struct bnxt *bp, struct bnxt_vf_info *vf)
920 {
921 	u32 msg_size = sizeof(struct hwrm_func_vf_cfg_input);
922 	struct hwrm_func_vf_cfg_input *req =
923 		(struct hwrm_func_vf_cfg_input *)vf->hwrm_cmd_req_addr;
924 
925 	/* Allow VF to set a valid MAC address, if trust is set to on or
926 	 * if the PF assigned MAC address is zero
927 	 */
928 	if (req->enables & cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_DFLT_MAC_ADDR)) {
929 		if (is_valid_ether_addr(req->dflt_mac_addr) &&
930 		    ((vf->flags & BNXT_VF_TRUST) ||
931 		     !is_valid_ether_addr(vf->mac_addr) ||
932 		     ether_addr_equal(req->dflt_mac_addr, vf->mac_addr))) {
933 			ether_addr_copy(vf->vf_mac_addr, req->dflt_mac_addr);
934 			return bnxt_hwrm_exec_fwd_resp(bp, vf, msg_size);
935 		}
936 		return bnxt_hwrm_fwd_err_resp(bp, vf, msg_size);
937 	}
938 	return bnxt_hwrm_exec_fwd_resp(bp, vf, msg_size);
939 }
940 
941 static int bnxt_vf_validate_set_mac(struct bnxt *bp, struct bnxt_vf_info *vf)
942 {
943 	u32 msg_size = sizeof(struct hwrm_cfa_l2_filter_alloc_input);
944 	struct hwrm_cfa_l2_filter_alloc_input *req =
945 		(struct hwrm_cfa_l2_filter_alloc_input *)vf->hwrm_cmd_req_addr;
946 	bool mac_ok = false;
947 
948 	if (!is_valid_ether_addr((const u8 *)req->l2_addr))
949 		return bnxt_hwrm_fwd_err_resp(bp, vf, msg_size);
950 
951 	/* Allow VF to set a valid MAC address, if trust is set to on.
952 	 * Or VF MAC address must first match MAC address in PF's context.
953 	 * Otherwise, it must match the VF MAC address if firmware spec >=
954 	 * 1.2.2
955 	 */
956 	if (vf->flags & BNXT_VF_TRUST) {
957 		mac_ok = true;
958 	} else if (is_valid_ether_addr(vf->mac_addr)) {
959 		if (ether_addr_equal((const u8 *)req->l2_addr, vf->mac_addr))
960 			mac_ok = true;
961 	} else if (is_valid_ether_addr(vf->vf_mac_addr)) {
962 		if (ether_addr_equal((const u8 *)req->l2_addr, vf->vf_mac_addr))
963 			mac_ok = true;
964 	} else {
965 		/* There are two cases:
966 		 * 1.If firmware spec < 0x10202,VF MAC address is not forwarded
967 		 *   to the PF and so it doesn't have to match
968 		 * 2.Allow VF to modify it's own MAC when PF has not assigned a
969 		 *   valid MAC address and firmware spec >= 0x10202
970 		 */
971 		mac_ok = true;
972 	}
973 	if (mac_ok)
974 		return bnxt_hwrm_exec_fwd_resp(bp, vf, msg_size);
975 	return bnxt_hwrm_fwd_err_resp(bp, vf, msg_size);
976 }
977 
978 static int bnxt_vf_set_link(struct bnxt *bp, struct bnxt_vf_info *vf)
979 {
980 	int rc = 0;
981 
982 	if (!(vf->flags & BNXT_VF_LINK_FORCED)) {
983 		/* real link */
984 		rc = bnxt_hwrm_exec_fwd_resp(
985 			bp, vf, sizeof(struct hwrm_port_phy_qcfg_input));
986 	} else {
987 		struct hwrm_port_phy_qcfg_output phy_qcfg_resp;
988 		struct hwrm_port_phy_qcfg_input *phy_qcfg_req;
989 
990 		phy_qcfg_req =
991 		(struct hwrm_port_phy_qcfg_input *)vf->hwrm_cmd_req_addr;
992 		mutex_lock(&bp->hwrm_cmd_lock);
993 		memcpy(&phy_qcfg_resp, &bp->link_info.phy_qcfg_resp,
994 		       sizeof(phy_qcfg_resp));
995 		mutex_unlock(&bp->hwrm_cmd_lock);
996 		phy_qcfg_resp.resp_len = cpu_to_le16(sizeof(phy_qcfg_resp));
997 		phy_qcfg_resp.seq_id = phy_qcfg_req->seq_id;
998 		phy_qcfg_resp.valid = 1;
999 
1000 		if (vf->flags & BNXT_VF_LINK_UP) {
1001 			/* if physical link is down, force link up on VF */
1002 			if (phy_qcfg_resp.link !=
1003 			    PORT_PHY_QCFG_RESP_LINK_LINK) {
1004 				phy_qcfg_resp.link =
1005 					PORT_PHY_QCFG_RESP_LINK_LINK;
1006 				phy_qcfg_resp.link_speed = cpu_to_le16(
1007 					PORT_PHY_QCFG_RESP_LINK_SPEED_10GB);
1008 				phy_qcfg_resp.duplex_cfg =
1009 					PORT_PHY_QCFG_RESP_DUPLEX_CFG_FULL;
1010 				phy_qcfg_resp.duplex_state =
1011 					PORT_PHY_QCFG_RESP_DUPLEX_STATE_FULL;
1012 				phy_qcfg_resp.pause =
1013 					(PORT_PHY_QCFG_RESP_PAUSE_TX |
1014 					 PORT_PHY_QCFG_RESP_PAUSE_RX);
1015 			}
1016 		} else {
1017 			/* force link down */
1018 			phy_qcfg_resp.link = PORT_PHY_QCFG_RESP_LINK_NO_LINK;
1019 			phy_qcfg_resp.link_speed = 0;
1020 			phy_qcfg_resp.duplex_state =
1021 				PORT_PHY_QCFG_RESP_DUPLEX_STATE_HALF;
1022 			phy_qcfg_resp.pause = 0;
1023 		}
1024 		rc = bnxt_hwrm_fwd_resp(bp, vf, &phy_qcfg_resp,
1025 					phy_qcfg_req->resp_addr,
1026 					phy_qcfg_req->cmpl_ring,
1027 					sizeof(phy_qcfg_resp));
1028 	}
1029 	return rc;
1030 }
1031 
1032 static int bnxt_vf_req_validate_snd(struct bnxt *bp, struct bnxt_vf_info *vf)
1033 {
1034 	int rc = 0;
1035 	struct input *encap_req = vf->hwrm_cmd_req_addr;
1036 	u32 req_type = le16_to_cpu(encap_req->req_type);
1037 
1038 	switch (req_type) {
1039 	case HWRM_FUNC_VF_CFG:
1040 		rc = bnxt_vf_configure_mac(bp, vf);
1041 		break;
1042 	case HWRM_CFA_L2_FILTER_ALLOC:
1043 		rc = bnxt_vf_validate_set_mac(bp, vf);
1044 		break;
1045 	case HWRM_FUNC_CFG:
1046 		/* TODO Validate if VF is allowed to change mac address,
1047 		 * mtu, num of rings etc
1048 		 */
1049 		rc = bnxt_hwrm_exec_fwd_resp(
1050 			bp, vf, sizeof(struct hwrm_func_cfg_input));
1051 		break;
1052 	case HWRM_PORT_PHY_QCFG:
1053 		rc = bnxt_vf_set_link(bp, vf);
1054 		break;
1055 	default:
1056 		break;
1057 	}
1058 	return rc;
1059 }
1060 
1061 void bnxt_hwrm_exec_fwd_req(struct bnxt *bp)
1062 {
1063 	u32 i = 0, active_vfs = bp->pf.active_vfs, vf_id;
1064 
1065 	/* Scan through VF's and process commands */
1066 	while (1) {
1067 		vf_id = find_next_bit(bp->pf.vf_event_bmap, active_vfs, i);
1068 		if (vf_id >= active_vfs)
1069 			break;
1070 
1071 		clear_bit(vf_id, bp->pf.vf_event_bmap);
1072 		bnxt_vf_req_validate_snd(bp, &bp->pf.vf[vf_id]);
1073 		i = vf_id + 1;
1074 	}
1075 }
1076 
1077 void bnxt_update_vf_mac(struct bnxt *bp)
1078 {
1079 	struct hwrm_func_qcaps_input req = {0};
1080 	struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
1081 
1082 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1);
1083 	req.fid = cpu_to_le16(0xffff);
1084 
1085 	mutex_lock(&bp->hwrm_cmd_lock);
1086 	if (_hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT))
1087 		goto update_vf_mac_exit;
1088 
1089 	/* Store MAC address from the firmware.  There are 2 cases:
1090 	 * 1. MAC address is valid.  It is assigned from the PF and we
1091 	 *    need to override the current VF MAC address with it.
1092 	 * 2. MAC address is zero.  The VF will use a random MAC address by
1093 	 *    default but the stored zero MAC will allow the VF user to change
1094 	 *    the random MAC address using ndo_set_mac_address() if he wants.
1095 	 */
1096 	if (!ether_addr_equal(resp->mac_address, bp->vf.mac_addr))
1097 		memcpy(bp->vf.mac_addr, resp->mac_address, ETH_ALEN);
1098 
1099 	/* overwrite netdev dev_addr with admin VF MAC */
1100 	if (is_valid_ether_addr(bp->vf.mac_addr))
1101 		memcpy(bp->dev->dev_addr, bp->vf.mac_addr, ETH_ALEN);
1102 update_vf_mac_exit:
1103 	mutex_unlock(&bp->hwrm_cmd_lock);
1104 }
1105 
1106 int bnxt_approve_mac(struct bnxt *bp, u8 *mac)
1107 {
1108 	struct hwrm_func_vf_cfg_input req = {0};
1109 	int rc = 0;
1110 
1111 	if (!BNXT_VF(bp))
1112 		return 0;
1113 
1114 	if (bp->hwrm_spec_code < 0x10202) {
1115 		if (is_valid_ether_addr(bp->vf.mac_addr))
1116 			rc = -EADDRNOTAVAIL;
1117 		goto mac_done;
1118 	}
1119 	bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1);
1120 	req.enables = cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_DFLT_MAC_ADDR);
1121 	memcpy(req.dflt_mac_addr, mac, ETH_ALEN);
1122 	rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
1123 mac_done:
1124 	if (rc) {
1125 		rc = -EADDRNOTAVAIL;
1126 		netdev_warn(bp->dev, "VF MAC address %pM not approved by the PF\n",
1127 			    mac);
1128 	}
1129 	return rc;
1130 }
1131 #else
1132 
1133 void bnxt_sriov_disable(struct bnxt *bp)
1134 {
1135 }
1136 
1137 void bnxt_hwrm_exec_fwd_req(struct bnxt *bp)
1138 {
1139 	netdev_err(bp->dev, "Invalid VF message received when SRIOV is not enable\n");
1140 }
1141 
1142 void bnxt_update_vf_mac(struct bnxt *bp)
1143 {
1144 }
1145 
1146 int bnxt_approve_mac(struct bnxt *bp, u8 *mac)
1147 {
1148 	return 0;
1149 }
1150 #endif
1151