ice_virtchnl_pf.c 108.3 KB
Newer Older
1 2 3 4
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2018, Intel Corporation. */

#include "ice.h"
A
Anirudh Venkataramanan 已提交
5
#include "ice_base.h"
6
#include "ice_lib.h"
7
#include "ice_fltr.h"
8

J
Jesse Brandeburg 已提交
9 10 11 12 13
/**
 * ice_validate_vf_id - helper to check if VF ID is valid
 * @pf: pointer to the PF structure
 * @vf_id: the ID of the VF to check
 */
J
Jesse Brandeburg 已提交
14
static int ice_validate_vf_id(struct ice_pf *pf, u16 vf_id)
J
Jesse Brandeburg 已提交
15
{
J
Jesse Brandeburg 已提交
16
	/* vf_id range is only valid for 0-255, and should always be unsigned */
J
Jesse Brandeburg 已提交
17
	if (vf_id >= pf->num_alloc_vfs) {
J
Jesse Brandeburg 已提交
18
		dev_err(ice_pf_to_dev(pf), "Invalid VF ID: %u\n", vf_id);
J
Jesse Brandeburg 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31
		return -EINVAL;
	}
	return 0;
}

/**
 * ice_check_vf_init - helper to check if VF init complete
 * @pf: pointer to the PF structure
 * @vf: the pointer to the VF to check
 */
static int ice_check_vf_init(struct ice_pf *pf, struct ice_vf *vf)
{
	if (!test_bit(ICE_VF_STATE_INIT, vf->vf_states)) {
J
Jesse Brandeburg 已提交
32
		dev_err(ice_pf_to_dev(pf), "VF ID: %u in reset. Try again.\n",
J
Jesse Brandeburg 已提交
33 34 35 36 37 38
			vf->vf_id);
		return -EBUSY;
	}
	return 0;
}

B
Brett Creeley 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
/**
 * ice_err_to_virt_err - translate errors for VF return code
 * @ice_err: error return code
 */
static enum virtchnl_status_code ice_err_to_virt_err(enum ice_status ice_err)
{
	switch (ice_err) {
	case ICE_SUCCESS:
		return VIRTCHNL_STATUS_SUCCESS;
	case ICE_ERR_BAD_PTR:
	case ICE_ERR_INVAL_SIZE:
	case ICE_ERR_DEVICE_NOT_SUPPORTED:
	case ICE_ERR_PARAM:
	case ICE_ERR_CFG:
		return VIRTCHNL_STATUS_ERR_PARAM;
	case ICE_ERR_NO_MEMORY:
		return VIRTCHNL_STATUS_ERR_NO_MEMORY;
	case ICE_ERR_NOT_READY:
	case ICE_ERR_RESET_FAILED:
	case ICE_ERR_FW_API_VER:
	case ICE_ERR_AQ_ERROR:
	case ICE_ERR_AQ_TIMEOUT:
	case ICE_ERR_AQ_FULL:
	case ICE_ERR_AQ_NO_WORK:
	case ICE_ERR_AQ_EMPTY:
		return VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
	default:
		return VIRTCHNL_STATUS_ERR_NOT_SUPPORTED;
	}
}

70 71 72 73 74 75 76 77 78 79
/**
 * ice_vc_vf_broadcast - Broadcast a message to all VFs on PF
 * @pf: pointer to the PF structure
 * @v_opcode: operation code
 * @v_retval: return value
 * @msg: pointer to the msg buffer
 * @msglen: msg length
 */
static void
ice_vc_vf_broadcast(struct ice_pf *pf, enum virtchnl_ops v_opcode,
80
		    enum virtchnl_status_code v_retval, u8 *msg, u16 msglen)
81 82
{
	struct ice_hw *hw = &pf->hw;
J
Jesse Brandeburg 已提交
83
	unsigned int i;
84

B
Brett Creeley 已提交
85 86 87
	ice_for_each_vf(pf, i) {
		struct ice_vf *vf = &pf->vf[i];

88 89 90 91 92 93 94 95 96 97 98 99 100
		/* Not all vfs are enabled so skip the ones that are not */
		if (!test_bit(ICE_VF_STATE_INIT, vf->vf_states) &&
		    !test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states))
			continue;

		/* Ignore return value on purpose - a given VF may fail, but
		 * we need to keep going and send to all of them
		 */
		ice_aq_send_msg_to_vf(hw, vf->vf_id, v_opcode, v_retval, msg,
				      msglen, NULL);
	}
}

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
/**
 * ice_set_pfe_link - Set the link speed/status of the virtchnl_pf_event
 * @vf: pointer to the VF structure
 * @pfe: pointer to the virtchnl_pf_event to set link speed/status for
 * @ice_link_speed: link speed specified by ICE_AQ_LINK_SPEED_*
 * @link_up: whether or not to set the link up/down
 */
static void
ice_set_pfe_link(struct ice_vf *vf, struct virtchnl_pf_event *pfe,
		 int ice_link_speed, bool link_up)
{
	if (vf->driver_caps & VIRTCHNL_VF_CAP_ADV_LINK_SPEED) {
		pfe->event_data.link_event_adv.link_status = link_up;
		/* Speed in Mbps */
		pfe->event_data.link_event_adv.link_speed =
			ice_conv_link_speed_to_virtchnl(true, ice_link_speed);
	} else {
		pfe->event_data.link_event.link_status = link_up;
		/* Legacy method for virtchnl link speeds */
		pfe->event_data.link_event.link_speed =
			(enum virtchnl_link_speed)
			ice_conv_link_speed_to_virtchnl(false, ice_link_speed);
	}
}

126 127 128 129 130 131 132 133 134
/**
 * ice_vf_has_no_qs_ena - check if the VF has any Rx or Tx queues enabled
 * @vf: the VF to check
 *
 * Returns true if the VF has no Rx and no Tx queues enabled and returns false
 * otherwise
 */
static bool ice_vf_has_no_qs_ena(struct ice_vf *vf)
{
M
Mitch Williams 已提交
135 136
	return (!bitmap_weight(vf->rxq_ena, ICE_MAX_RSS_QS_PER_VF) &&
		!bitmap_weight(vf->txq_ena, ICE_MAX_RSS_QS_PER_VF));
137 138
}

139 140 141 142 143 144 145 146 147 148 149
/**
 * ice_is_vf_link_up - check if the VF's link is up
 * @vf: VF to check if link is up
 */
static bool ice_is_vf_link_up(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;

	if (ice_check_vf_init(pf, vf))
		return false;

150
	if (ice_vf_has_no_qs_ena(vf))
151 152 153 154 155 156 157 158
		return false;
	else if (vf->link_forced)
		return vf->link_up;
	else
		return pf->hw.port_info->phy.link_info.link_info &
			ICE_AQ_LINK_UP;
}

159 160 161 162 163 164 165 166 167
/**
 * ice_vc_notify_vf_link_state - Inform a VF of link status
 * @vf: pointer to the VF structure
 *
 * send a link status message to a single VF
 */
static void ice_vc_notify_vf_link_state(struct ice_vf *vf)
{
	struct virtchnl_pf_event pfe = { 0 };
168
	struct ice_hw *hw = &vf->pf->hw;
169 170 171 172

	pfe.event = VIRTCHNL_EVENT_LINK_CHANGE;
	pfe.severity = PF_EVENT_SEVERITY_INFO;

173 174 175 176
	if (ice_is_vf_link_up(vf))
		ice_set_pfe_link(vf, &pfe,
				 hw->port_info->phy.link_info.link_speed, true);
	else
177
		ice_set_pfe_link(vf, &pfe, ICE_AQ_LINK_SPEED_UNKNOWN, false);
178

179 180
	ice_aq_send_msg_to_vf(hw, vf->vf_id, VIRTCHNL_OP_EVENT,
			      VIRTCHNL_STATUS_SUCCESS, (u8 *)&pfe,
181 182 183
			      sizeof(pfe), NULL);
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
/**
 * ice_vf_invalidate_vsi - invalidate vsi_idx/vsi_num to remove VSI access
 * @vf: VF to remove access to VSI for
 */
static void ice_vf_invalidate_vsi(struct ice_vf *vf)
{
	vf->lan_vsi_idx = ICE_NO_VSI;
	vf->lan_vsi_num = ICE_NO_VSI;
}

/**
 * ice_vf_vsi_release - invalidate the VF's VSI after freeing it
 * @vf: invalidate this VF's VSI after freeing it
 */
static void ice_vf_vsi_release(struct ice_vf *vf)
{
	ice_vsi_release(vf->pf->vsi[vf->lan_vsi_idx]);
	ice_vf_invalidate_vsi(vf);
}

204 205 206 207 208 209 210
/**
 * ice_free_vf_res - Free a VF's resources
 * @vf: pointer to the VF info
 */
static void ice_free_vf_res(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
211
	int i, last_vector_idx;
212 213 214 215 216 217

	/* First, disable VF's configuration API to prevent OS from
	 * accessing the VF's VSI after it's freed or invalidated.
	 */
	clear_bit(ICE_VF_STATE_INIT, vf->vf_states);

218
	/* free VSI and disconnect it from the parent uplink */
219 220
	if (vf->lan_vsi_idx != ICE_NO_VSI) {
		ice_vf_vsi_release(vf);
221 222 223
		vf->num_mac = 0;
	}

224
	last_vector_idx = vf->first_vector_idx + pf->num_msix_per_vf - 1;
225 226 227 228 229

	/* clear VF MDD event information */
	memset(&vf->mdd_tx_events, 0, sizeof(vf->mdd_tx_events));
	memset(&vf->mdd_rx_events, 0, sizeof(vf->mdd_rx_events));

230
	/* Disable interrupts so that VF starts in a known state */
231 232
	for (i = vf->first_vector_idx; i <= last_vector_idx; i++) {
		wr32(&pf->hw, GLINT_DYN_CTL(i), GLINT_DYN_CTL_CLEARPBA_M);
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
		ice_flush(&pf->hw);
	}
	/* reset some of the state variables keeping track of the resources */
	clear_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states);
	clear_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states);
}

/**
 * ice_dis_vf_mappings
 * @vf: pointer to the VF structure
 */
static void ice_dis_vf_mappings(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;
B
Brett Creeley 已提交
248
	struct device *dev;
249 250 251 252 253 254
	int first, last, v;
	struct ice_hw *hw;

	hw = &pf->hw;
	vsi = pf->vsi[vf->lan_vsi_idx];

B
Brett Creeley 已提交
255
	dev = ice_pf_to_dev(pf);
256
	wr32(hw, VPINT_ALLOC(vf->vf_id), 0);
257
	wr32(hw, VPINT_ALLOC_PCI(vf->vf_id), 0);
258

B
Brett Creeley 已提交
259
	first = vf->first_vector_idx;
260
	last = first + pf->num_msix_per_vf - 1;
261 262 263 264 265 266 267 268 269 270 271 272 273
	for (v = first; v <= last; v++) {
		u32 reg;

		reg = (((1 << GLINT_VECT2FUNC_IS_PF_S) &
			GLINT_VECT2FUNC_IS_PF_M) |
		       ((hw->pf_id << GLINT_VECT2FUNC_PF_NUM_S) &
			GLINT_VECT2FUNC_PF_NUM_M));
		wr32(hw, GLINT_VECT2FUNC(v), reg);
	}

	if (vsi->tx_mapping_mode == ICE_VSI_MAP_CONTIG)
		wr32(hw, VPLAN_TX_QBASE(vf->vf_id), 0);
	else
B
Brett Creeley 已提交
274
		dev_err(dev, "Scattered mode for VF Tx queues is not yet implemented\n");
275 276 277 278

	if (vsi->rx_mapping_mode == ICE_VSI_MAP_CONTIG)
		wr32(hw, VPLAN_RX_QBASE(vf->vf_id), 0);
	else
279
		dev_err(dev, "Scattered mode for VF Rx queues is not yet implemented\n");
280 281
}

B
Brett Creeley 已提交
282 283 284 285
/**
 * ice_sriov_free_msix_res - Reset/free any used MSIX resources
 * @pf: pointer to the PF structure
 *
M
Mitch Williams 已提交
286
 * Since no MSIX entries are taken from the pf->irq_tracker then just clear
B
Brett Creeley 已提交
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
 * the pf->sriov_base_vector.
 *
 * Returns 0 on success, and -EINVAL on error.
 */
static int ice_sriov_free_msix_res(struct ice_pf *pf)
{
	struct ice_res_tracker *res;

	if (!pf)
		return -EINVAL;

	res = pf->irq_tracker;
	if (!res)
		return -EINVAL;

	/* give back irq_tracker resources used */
M
Mitch Williams 已提交
303
	WARN_ON(pf->sriov_base_vector < res->num_entries);
B
Brett Creeley 已提交
304 305 306 307 308 309

	pf->sriov_base_vector = 0;

	return 0;
}

310 311 312 313 314 315 316
/**
 * ice_set_vf_state_qs_dis - Set VF queues state to disabled
 * @vf: pointer to the VF structure
 */
void ice_set_vf_state_qs_dis(struct ice_vf *vf)
{
	/* Clear Rx/Tx enabled queues flag */
M
Mitch Williams 已提交
317 318
	bitmap_zero(vf->txq_ena, ICE_MAX_RSS_QS_PER_VF);
	bitmap_zero(vf->rxq_ena, ICE_MAX_RSS_QS_PER_VF);
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
	clear_bit(ICE_VF_STATE_QS_ENA, vf->vf_states);
}

/**
 * ice_dis_vf_qs - Disable the VF queues
 * @vf: pointer to the VF structure
 */
static void ice_dis_vf_qs(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	vsi = pf->vsi[vf->lan_vsi_idx];

	ice_vsi_stop_lan_tx_rings(vsi, ICE_NO_RESET, vf->vf_id);
334
	ice_vsi_stop_all_rx_rings(vsi);
335 336 337
	ice_set_vf_state_qs_dis(vf);
}

338 339 340 341 342 343
/**
 * ice_free_vfs - Free all VFs
 * @pf: pointer to the PF structure
 */
void ice_free_vfs(struct ice_pf *pf)
{
B
Brett Creeley 已提交
344
	struct device *dev = ice_pf_to_dev(pf);
345
	struct ice_hw *hw = &pf->hw;
J
Jesse Brandeburg 已提交
346
	unsigned int tmp, i;
347 348 349 350 351 352 353

	if (!pf->vf)
		return;

	while (test_and_set_bit(__ICE_VF_DIS, pf->state))
		usleep_range(1000, 2000);

354 355 356 357 358 359 360
	/* Disable IOV before freeing resources. This lets any VF drivers
	 * running in the host get themselves cleaned up before we yank
	 * the carpet out from underneath their feet.
	 */
	if (!pci_vfs_assigned(pf->pdev))
		pci_disable_sriov(pf->pdev);
	else
B
Brett Creeley 已提交
361
		dev_warn(dev, "VFs are assigned - not disabling SR-IOV\n");
362

363 364 365 366 367
	/* Avoid wait time by stopping all VFs at the same time */
	ice_for_each_vf(pf, i)
		if (test_bit(ICE_VF_STATE_QS_ENA, pf->vf[i].vf_states))
			ice_dis_vf_qs(&pf->vf[i]);

368
	tmp = pf->num_alloc_vfs;
369
	pf->num_qps_per_vf = 0;
370 371 372
	pf->num_alloc_vfs = 0;
	for (i = 0; i < tmp; i++) {
		if (test_bit(ICE_VF_STATE_INIT, pf->vf[i].vf_states)) {
373
			/* disable VF qp mappings and set VF disable state */
374
			ice_dis_vf_mappings(&pf->vf[i]);
375
			set_bit(ICE_VF_STATE_DIS, pf->vf[i].vf_states);
376 377 378 379
			ice_free_vf_res(&pf->vf[i]);
		}
	}

B
Brett Creeley 已提交
380
	if (ice_sriov_free_msix_res(pf))
B
Brett Creeley 已提交
381
		dev_err(dev, "Failed to free MSIX resources used by SR-IOV\n");
B
Brett Creeley 已提交
382

B
Brett Creeley 已提交
383
	devm_kfree(dev, pf->vf);
384 385 386 387 388 389 390
	pf->vf = NULL;

	/* This check is for when the driver is unloaded while VFs are
	 * assigned. Setting the number of VFs to 0 through sysfs is caught
	 * before this function ever gets called.
	 */
	if (!pci_vfs_assigned(pf->pdev)) {
J
Jesse Brandeburg 已提交
391
		unsigned int vf_id;
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411

		/* Acknowledge VFLR for all VFs. Without this, VFs will fail to
		 * work correctly when SR-IOV gets re-enabled.
		 */
		for (vf_id = 0; vf_id < tmp; vf_id++) {
			u32 reg_idx, bit_idx;

			reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
			bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
			wr32(hw, GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
		}
	}
	clear_bit(__ICE_VF_DIS, pf->state);
	clear_bit(ICE_FLAG_SRIOV_ENA, pf->flags);
}

/**
 * ice_trigger_vf_reset - Reset a VF on HW
 * @vf: pointer to the VF structure
 * @is_vflr: true if VFLR was issued, false if not
M
Mitch Williams 已提交
412
 * @is_pfr: true if the reset was triggered due to a previous PFR
413 414 415 416 417
 *
 * Trigger hardware to start a reset for a particular VF. Expects the caller
 * to wait the proper amount of time to allow hardware to reset the VF before
 * it cleans up and restores VF functionality.
 */
M
Mitch Williams 已提交
418
static void ice_trigger_vf_reset(struct ice_vf *vf, bool is_vflr, bool is_pfr)
419 420 421
{
	struct ice_pf *pf = vf->pf;
	u32 reg, reg_idx, bit_idx;
J
Jesse Brandeburg 已提交
422
	unsigned int vf_abs_id, i;
B
Brett Creeley 已提交
423
	struct device *dev;
424 425
	struct ice_hw *hw;

B
Brett Creeley 已提交
426
	dev = ice_pf_to_dev(pf);
427 428 429 430 431 432 433
	hw = &pf->hw;
	vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;

	/* Inform VF that it is no longer active, as a warning */
	clear_bit(ICE_VF_STATE_ACTIVE, vf->vf_states);

	/* Disable VF's configuration API during reset. The flag is re-enabled
B
Brett Creeley 已提交
434
	 * when it's safe again to access VF's VSI.
435 436
	 */
	clear_bit(ICE_VF_STATE_INIT, vf->vf_states);
437

M
Mitch Williams 已提交
438 439 440 441
	/* VF_MBX_ARQLEN is cleared by PFR, so the driver needs to clear it
	 * in the case of VFR. If this is done for PFR, it can mess up VF
	 * resets because the VF driver may already have started cleanup
	 * by the time we get here.
442
	 */
M
Mitch Williams 已提交
443
	if (!is_pfr)
444
		wr32(hw, VF_MBX_ARQLEN(vf->vf_id), 0);
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462

	/* In the case of a VFLR, the HW has already reset the VF and we
	 * just need to clean up, so don't hit the VFRTRIG register.
	 */
	if (!is_vflr) {
		/* reset VF using VPGEN_VFRTRIG reg */
		reg = rd32(hw, VPGEN_VFRTRIG(vf->vf_id));
		reg |= VPGEN_VFRTRIG_VFSWR_M;
		wr32(hw, VPGEN_VFRTRIG(vf->vf_id), reg);
	}
	/* clear the VFLR bit in GLGEN_VFLRSTAT */
	reg_idx = (vf_abs_id) / 32;
	bit_idx = (vf_abs_id) % 32;
	wr32(hw, GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
	ice_flush(hw);

	wr32(hw, PF_PCI_CIAA,
	     VF_DEVICE_STATUS | (vf_abs_id << PF_PCI_CIAA_VF_NUM_S));
463
	for (i = 0; i < ICE_PCI_CIAD_WAIT_COUNT; i++) {
464
		reg = rd32(hw, PF_PCI_CIAD);
465 466 467 468
		/* no transactions pending so stop polling */
		if ((reg & VF_TRANS_PENDING_M) == 0)
			break;

J
Jesse Brandeburg 已提交
469
		dev_err(dev, "VF %u PCI transactions stuck\n", vf->vf_id);
470
		udelay(ICE_PCI_CIAD_WAIT_DELAY_US);
471 472 473
	}
}

474 475 476
/**
 * ice_vsi_manage_pvid - Enable or disable port VLAN for VSI
 * @vsi: the VSI to update
477
 * @pvid_info: VLAN ID and QoS used to set the PVID VSI context field
478
 * @enable: true for enable PVID false for disable
479
 */
480
static int ice_vsi_manage_pvid(struct ice_vsi *vsi, u16 pvid_info, bool enable)
481 482
{
	struct ice_hw *hw = &vsi->back->hw;
483
	struct ice_aqc_vsi_props *info;
484
	struct ice_vsi_ctx *ctxt;
485
	enum ice_status status;
486 487
	int ret = 0;

488
	ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
489 490
	if (!ctxt)
		return -ENOMEM;
491

492
	ctxt->info = vsi->info;
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
	info = &ctxt->info;
	if (enable) {
		info->vlan_flags = ICE_AQ_VSI_VLAN_MODE_UNTAGGED |
			ICE_AQ_VSI_PVLAN_INSERT_PVID |
			ICE_AQ_VSI_VLAN_EMOD_STR;
		info->sw_flags2 |= ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
	} else {
		info->vlan_flags = ICE_AQ_VSI_VLAN_EMOD_NOTHING |
			ICE_AQ_VSI_VLAN_MODE_ALL;
		info->sw_flags2 &= ~ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
	}

	info->pvid = cpu_to_le16(pvid_info);
	info->valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID |
					   ICE_AQ_VSI_PROP_SW_VALID);
508

509
	status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
510
	if (status) {
511 512 513
		dev_info(ice_hw_to_dev(hw), "update VSI for port VLAN failed, err %s aq_err %s\n",
			 ice_stat_str(status),
			 ice_aq_str(hw->adminq.sq_last_status));
514 515
		ret = -EIO;
		goto out;
516 517
	}

518 519 520
	vsi->info.vlan_flags = info->vlan_flags;
	vsi->info.sw_flags2 = info->sw_flags2;
	vsi->info.pvid = info->pvid;
521
out:
522
	kfree(ctxt);
523
	return ret;
524 525
}

526 527 528 529 530 531 532 533 534
/**
 * ice_vf_get_port_info - Get the VF's port info structure
 * @vf: VF used to get the port info structure for
 */
static struct ice_port_info *ice_vf_get_port_info(struct ice_vf *vf)
{
	return vf->pf->hw.port_info;
}

535 536
/**
 * ice_vf_vsi_setup - Set up a VF VSI
537
 * @vf: VF to setup VSI for
538 539 540 541
 *
 * Returns pointer to the successfully allocated VSI struct on success,
 * otherwise returns NULL on failure.
 */
542
static struct ice_vsi *ice_vf_vsi_setup(struct ice_vf *vf)
543
{
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
	struct ice_port_info *pi = ice_vf_get_port_info(vf);
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	vsi = ice_vsi_setup(pf, pi, ICE_VSI_VF, vf->vf_id);

	if (!vsi) {
		dev_err(ice_pf_to_dev(pf), "Failed to create VF VSI\n");
		ice_vf_invalidate_vsi(vf);
		return NULL;
	}

	vf->lan_vsi_idx = vsi->idx;
	vf->lan_vsi_num = vsi->vsi_num;

	return vsi;
560 561
}

B
Brett Creeley 已提交
562
/**
563
 * ice_calc_vf_first_vector_idx - Calculate MSIX vector index in the PF space
B
Brett Creeley 已提交
564 565 566
 * @pf: pointer to PF structure
 * @vf: pointer to VF that the first MSIX vector index is being calculated for
 *
567 568 569 570
 * This returns the first MSIX vector index in PF space that is used by this VF.
 * This index is used when accessing PF relative registers such as
 * GLINT_VECT2FUNC and GLINT_DYN_CTL.
 * This will always be the OICR index in the AVF driver so any functionality
B
Brett Creeley 已提交
571 572 573 574 575
 * using vf->first_vector_idx for queue configuration will have to increment by
 * 1 to avoid meddling with the OICR index.
 */
static int ice_calc_vf_first_vector_idx(struct ice_pf *pf, struct ice_vf *vf)
{
576
	return pf->sriov_base_vector + vf->vf_id * pf->num_msix_per_vf;
B
Brett Creeley 已提交
577 578
}

579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
/**
 * ice_vf_rebuild_host_vlan_cfg - add VLAN 0 filter or rebuild the Port VLAN
 * @vf: VF to add MAC filters for
 *
 * Called after a VF VSI has been re-added/rebuilt during reset. The PF driver
 * always re-adds either a VLAN 0 or port VLAN based filter after reset.
 */
static int ice_vf_rebuild_host_vlan_cfg(struct ice_vf *vf)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];
	struct device *dev = ice_pf_to_dev(vf->pf);
	u16 vlan_id = 0;
	int err;

	if (vf->port_vlan_info) {
		err = ice_vsi_manage_pvid(vsi, vf->port_vlan_info, true);
		if (err) {
			dev_err(dev, "failed to configure port VLAN via VSI parameters for VF %u, error %d\n",
				vf->vf_id, err);
			return err;
		}

		vlan_id = vf->port_vlan_info & VLAN_VID_MASK;
	}

	/* vlan_id will either be 0 or the port VLAN number */
	err = ice_vsi_add_vlan(vsi, vlan_id, ICE_FWD_TO_VSI);
	if (err) {
		dev_err(dev, "failed to add %s VLAN %u filter for VF %u, error %d\n",
			vf->port_vlan_info ? "port" : "", vlan_id, vf->vf_id,
			err);
		return err;
	}

	return 0;
}

/**
 * ice_vf_rebuild_host_mac_cfg - add broadcast and the VF's perm_addr/LAA
 * @vf: VF to add MAC filters for
 *
 * Called after a VF VSI has been re-added/rebuilt during reset. The PF driver
 * always re-adds a broadcast filter and the VF's perm_addr/LAA after reset.
 */
static int ice_vf_rebuild_host_mac_cfg(struct ice_vf *vf)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];
	struct device *dev = ice_pf_to_dev(vf->pf);
	enum ice_status status;
	u8 broadcast[ETH_ALEN];

	eth_broadcast_addr(broadcast);
	status = ice_fltr_add_mac(vsi, broadcast, ICE_FWD_TO_VSI);
	if (status) {
		dev_err(dev, "failed to add broadcast MAC filter for VF %u, error %s\n",
			vf->vf_id, ice_stat_str(status));
		return ice_status_to_errno(status);
	}

	vf->num_mac++;

	if (is_valid_ether_addr(vf->dflt_lan_addr.addr)) {
		status = ice_fltr_add_mac(vsi, vf->dflt_lan_addr.addr,
					  ICE_FWD_TO_VSI);
		if (status) {
			dev_err(dev, "failed to add default unicast MAC filter %pM for VF %u, error %s\n",
				&vf->dflt_lan_addr.addr[0], vf->vf_id,
				ice_stat_str(status));
			return ice_status_to_errno(status);
		}
		vf->num_mac++;
	}

	return 0;
}

655 656 657 658 659 660 661 662 663 664 665 666
/**
 * ice_vf_set_host_trust_cfg - set trust setting based on pre-reset value
 * @vf: VF to configure trust setting for
 */
static void ice_vf_set_host_trust_cfg(struct ice_vf *vf)
{
	if (vf->trusted)
		set_bit(ICE_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
	else
		clear_bit(ICE_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
}

667
/**
668 669
 * ice_ena_vf_msix_mappings - enable VF MSIX mappings in hardware
 * @vf: VF to enable MSIX mappings for
670
 *
671 672 673
 * Some of the registers need to be indexed/configured using hardware global
 * device values and other registers need 0-based values, which represent PF
 * based values.
674
 */
675
static void ice_ena_vf_msix_mappings(struct ice_vf *vf)
676
{
677 678
	int device_based_first_msix, device_based_last_msix;
	int pf_based_first_msix, pf_based_last_msix, v;
679
	struct ice_pf *pf = vf->pf;
680
	int device_based_vf_id;
681 682 683 684
	struct ice_hw *hw;
	u32 reg;

	hw = &pf->hw;
685 686 687 688 689 690 691 692 693 694 695 696 697
	pf_based_first_msix = vf->first_vector_idx;
	pf_based_last_msix = (pf_based_first_msix + pf->num_msix_per_vf) - 1;

	device_based_first_msix = pf_based_first_msix +
		pf->hw.func_caps.common_cap.msix_vector_first_id;
	device_based_last_msix =
		(device_based_first_msix + pf->num_msix_per_vf) - 1;
	device_based_vf_id = vf->vf_id + hw->func_caps.vf_base_id;

	reg = (((device_based_first_msix << VPINT_ALLOC_FIRST_S) &
		VPINT_ALLOC_FIRST_M) |
	       ((device_based_last_msix << VPINT_ALLOC_LAST_S) &
		VPINT_ALLOC_LAST_M) | VPINT_ALLOC_VALID_M);
698 699
	wr32(hw, VPINT_ALLOC(vf->vf_id), reg);

700
	reg = (((device_based_first_msix << VPINT_ALLOC_PCI_FIRST_S)
701
		 & VPINT_ALLOC_PCI_FIRST_M) |
702 703
	       ((device_based_last_msix << VPINT_ALLOC_PCI_LAST_S) &
		VPINT_ALLOC_PCI_LAST_M) | VPINT_ALLOC_PCI_VALID_M);
704
	wr32(hw, VPINT_ALLOC_PCI(vf->vf_id), reg);
705

706
	/* map the interrupts to its functions */
707 708
	for (v = pf_based_first_msix; v <= pf_based_last_msix; v++) {
		reg = (((device_based_vf_id << GLINT_VECT2FUNC_VF_NUM_S) &
709 710 711 712 713 714
			GLINT_VECT2FUNC_VF_NUM_M) |
		       ((hw->pf_id << GLINT_VECT2FUNC_PF_NUM_S) &
			GLINT_VECT2FUNC_PF_NUM_M));
		wr32(hw, GLINT_VECT2FUNC(v), reg);
	}

715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	/* Map mailbox interrupt to VF MSI-X vector 0 */
	wr32(hw, VPINT_MBX_CTL(device_based_vf_id), VPINT_MBX_CTL_CAUSE_ENA_M);
}

/**
 * ice_ena_vf_q_mappings - enable Rx/Tx queue mappings for a VF
 * @vf: VF to enable the mappings for
 * @max_txq: max Tx queues allowed on the VF's VSI
 * @max_rxq: max Rx queues allowed on the VF's VSI
 */
static void ice_ena_vf_q_mappings(struct ice_vf *vf, u16 max_txq, u16 max_rxq)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];
	struct device *dev = ice_pf_to_dev(vf->pf);
	struct ice_hw *hw = &vf->pf->hw;
	u32 reg;

732 733 734
	/* set regardless of mapping mode */
	wr32(hw, VPLAN_TXQ_MAPENA(vf->vf_id), VPLAN_TXQ_MAPENA_TX_ENA_M);

735 736 737 738 739 740 741 742
	/* VF Tx queues allocation */
	if (vsi->tx_mapping_mode == ICE_VSI_MAP_CONTIG) {
		/* set the VF PF Tx queue range
		 * VFNUMQ value should be set to (number of queues - 1). A value
		 * of 0 means 1 queue and a value of 255 means 256 queues
		 */
		reg = (((vsi->txq_map[0] << VPLAN_TX_QBASE_VFFIRSTQ_S) &
			VPLAN_TX_QBASE_VFFIRSTQ_M) |
743
		       (((max_txq - 1) << VPLAN_TX_QBASE_VFNUMQ_S) &
744 745 746
			VPLAN_TX_QBASE_VFNUMQ_M));
		wr32(hw, VPLAN_TX_QBASE(vf->vf_id), reg);
	} else {
B
Brett Creeley 已提交
747
		dev_err(dev, "Scattered mode for VF Tx queues is not yet implemented\n");
748 749
	}

750 751 752
	/* set regardless of mapping mode */
	wr32(hw, VPLAN_RXQ_MAPENA(vf->vf_id), VPLAN_RXQ_MAPENA_RX_ENA_M);

753 754 755 756 757 758 759 760
	/* VF Rx queues allocation */
	if (vsi->rx_mapping_mode == ICE_VSI_MAP_CONTIG) {
		/* set the VF PF Rx queue range
		 * VFNUMQ value should be set to (number of queues - 1). A value
		 * of 0 means 1 queue and a value of 255 means 256 queues
		 */
		reg = (((vsi->rxq_map[0] << VPLAN_RX_QBASE_VFFIRSTQ_S) &
			VPLAN_RX_QBASE_VFFIRSTQ_M) |
761
		       (((max_rxq - 1) << VPLAN_RX_QBASE_VFNUMQ_S) &
762 763 764
			VPLAN_RX_QBASE_VFNUMQ_M));
		wr32(hw, VPLAN_RX_QBASE(vf->vf_id), reg);
	} else {
B
Brett Creeley 已提交
765
		dev_err(dev, "Scattered mode for VF Rx queues is not yet implemented\n");
766 767 768
	}
}

769 770 771 772 773 774 775 776 777 778 779 780
/**
 * ice_ena_vf_mappings - enable VF MSIX and queue mapping
 * @vf: pointer to the VF structure
 */
static void ice_ena_vf_mappings(struct ice_vf *vf)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];

	ice_ena_vf_msix_mappings(vf);
	ice_ena_vf_q_mappings(vf, vsi->alloc_txq, vsi->alloc_rxq);
}

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
/**
 * ice_determine_res
 * @pf: pointer to the PF structure
 * @avail_res: available resources in the PF structure
 * @max_res: maximum resources that can be given per VF
 * @min_res: minimum resources that can be given per VF
 *
 * Returns non-zero value if resources (queues/vectors) are available or
 * returns zero if PF cannot accommodate for all num_alloc_vfs.
 */
static int
ice_determine_res(struct ice_pf *pf, u16 avail_res, u16 max_res, u16 min_res)
{
	bool checked_min_res = false;
	int res;

	/* start by checking if PF can assign max number of resources for
	 * all num_alloc_vfs.
	 * if yes, return number per VF
	 * If no, divide by 2 and roundup, check again
	 * repeat the loop till we reach a point where even minimum resources
	 * are not available, in that case return 0
	 */
	res = max_res;
	while ((res >= min_res) && !checked_min_res) {
		int num_all_res;

		num_all_res = pf->num_alloc_vfs * res;
		if (num_all_res <= avail_res)
			return res;

		if (res == min_res)
			checked_min_res = true;

		res = DIV_ROUND_UP(res, 2);
	}
	return 0;
}

B
Brett Creeley 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
/**
 * ice_calc_vf_reg_idx - Calculate the VF's register index in the PF space
 * @vf: VF to calculate the register index for
 * @q_vector: a q_vector associated to the VF
 */
int ice_calc_vf_reg_idx(struct ice_vf *vf, struct ice_q_vector *q_vector)
{
	struct ice_pf *pf;

	if (!vf || !q_vector)
		return -EINVAL;

	pf = vf->pf;

	/* always add one to account for the OICR being the first MSIX */
835
	return pf->sriov_base_vector + pf->num_msix_per_vf * vf->vf_id +
B
Brett Creeley 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
		q_vector->v_idx + 1;
}

/**
 * ice_get_max_valid_res_idx - Get the max valid resource index
 * @res: pointer to the resource to find the max valid index for
 *
 * Start from the end of the ice_res_tracker and return right when we find the
 * first res->list entry with the ICE_RES_VALID_BIT set. This function is only
 * valid for SR-IOV because it is the only consumer that manipulates the
 * res->end and this is always called when res->end is set to res->num_entries.
 */
static int ice_get_max_valid_res_idx(struct ice_res_tracker *res)
{
	int i;

	if (!res)
		return -EINVAL;

	for (i = res->num_entries - 1; i >= 0; i--)
		if (res->list[i] & ICE_RES_VALID_BIT)
			return i;

	return 0;
}

/**
 * ice_sriov_set_msix_res - Set any used MSIX resources
 * @pf: pointer to PF structure
 * @num_msix_needed: number of MSIX vectors needed for all SR-IOV VFs
 *
 * This function allows SR-IOV resources to be taken from the end of the PF's
M
Mitch Williams 已提交
868 869
 * allowed HW MSIX vectors so that the irq_tracker will not be affected. We
 * just set the pf->sriov_base_vector and return success.
B
Brett Creeley 已提交
870
 *
M
Mitch Williams 已提交
871 872
 * If there are not enough resources available, return an error. This should
 * always be caught by ice_set_per_vf_res().
B
Brett Creeley 已提交
873 874 875 876 877 878
 *
 * Return 0 on success, and -EINVAL when there are not enough MSIX vectors in
 * in the PF's space available for SR-IOV.
 */
static int ice_sriov_set_msix_res(struct ice_pf *pf, u16 num_msix_needed)
{
M
Mitch Williams 已提交
879 880
	u16 total_vectors = pf->hw.func_caps.common_cap.num_msix_vectors;
	int vectors_used = pf->irq_tracker->num_entries;
B
Brett Creeley 已提交
881 882
	int sriov_base_vector;

M
Mitch Williams 已提交
883
	sriov_base_vector = total_vectors - num_msix_needed;
B
Brett Creeley 已提交
884 885 886 887

	/* make sure we only grab irq_tracker entries from the list end and
	 * that we have enough available MSIX vectors
	 */
M
Mitch Williams 已提交
888
	if (sriov_base_vector < vectors_used)
B
Brett Creeley 已提交
889 890 891 892 893 894 895
		return -EINVAL;

	pf->sriov_base_vector = sriov_base_vector;

	return 0;
}

896
/**
M
Mitch Williams 已提交
897
 * ice_set_per_vf_res - check if vectors and queues are available
898 899
 * @pf: pointer to the PF structure
 *
M
Mitch Williams 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
 * First, determine HW interrupts from common pool. If we allocate fewer VFs, we
 * get more vectors and can enable more queues per VF. Note that this does not
 * grab any vectors from the SW pool already allocated. Also note, that all
 * vector counts include one for each VF's miscellaneous interrupt vector
 * (i.e. OICR).
 *
 * Minimum VFs - 2 vectors, 1 queue pair
 * Small VFs - 5 vectors, 4 queue pairs
 * Medium VFs - 17 vectors, 16 queue pairs
 *
 * Second, determine number of queue pairs per VF by starting with a pre-defined
 * maximum each VF supports. If this is not possible, then we adjust based on
 * queue pairs available on the device.
 *
 * Lastly, set queue and MSI-X VF variables tracked by the PF so it can be used
 * by each VF during VF initialization and reset.
916
 */
M
Mitch Williams 已提交
917
static int ice_set_per_vf_res(struct ice_pf *pf)
918
{
B
Brett Creeley 已提交
919
	int max_valid_res_idx = ice_get_max_valid_res_idx(pf->irq_tracker);
920
	int msix_avail_per_vf, msix_avail_for_sriov;
B
Brett Creeley 已提交
921
	struct device *dev = ice_pf_to_dev(pf);
922
	u16 num_msix_per_vf, num_txq, num_rxq;
923

B
Brett Creeley 已提交
924
	if (!pf->num_alloc_vfs || max_valid_res_idx < 0)
925 926
		return -EINVAL;

M
Mitch Williams 已提交
927
	/* determine MSI-X resources per VF */
928 929 930 931 932 933 934 935 936
	msix_avail_for_sriov = pf->hw.func_caps.common_cap.num_msix_vectors -
		pf->irq_tracker->num_entries;
	msix_avail_per_vf = msix_avail_for_sriov / pf->num_alloc_vfs;
	if (msix_avail_per_vf >= ICE_NUM_VF_MSIX_MED) {
		num_msix_per_vf = ICE_NUM_VF_MSIX_MED;
	} else if (msix_avail_per_vf >= ICE_NUM_VF_MSIX_SMALL) {
		num_msix_per_vf = ICE_NUM_VF_MSIX_SMALL;
	} else if (msix_avail_per_vf >= ICE_MIN_INTR_PER_VF) {
		num_msix_per_vf = ICE_MIN_INTR_PER_VF;
937
	} else {
938 939
		dev_err(dev, "Only %d MSI-X interrupts available for SR-IOV. Not enough to support minimum of %d MSI-X interrupts per VF for %d VFs\n",
			msix_avail_for_sriov, ICE_MIN_INTR_PER_VF,
M
Mitch Williams 已提交
940
			pf->num_alloc_vfs);
941 942 943
		return -EIO;
	}

M
Mitch Williams 已提交
944
	/* determine queue resources per VF */
945
	num_txq = ice_determine_res(pf, ice_get_avail_txq_count(pf),
946 947
				    min_t(u16,
					  num_msix_per_vf - ICE_NONQ_VECS_VF,
M
Mitch Williams 已提交
948 949
					  ICE_MAX_RSS_QS_PER_VF),
				    ICE_MIN_QS_PER_VF);
950

951
	num_rxq = ice_determine_res(pf, ice_get_avail_rxq_count(pf),
952 953
				    min_t(u16,
					  num_msix_per_vf - ICE_NONQ_VECS_VF,
M
Mitch Williams 已提交
954 955
					  ICE_MAX_RSS_QS_PER_VF),
				    ICE_MIN_QS_PER_VF);
956

M
Mitch Williams 已提交
957
	if (!num_txq || !num_rxq) {
958 959
		dev_err(dev, "Not enough queues to support minimum of %d queue pairs per VF for %d VFs\n",
			ICE_MIN_QS_PER_VF, pf->num_alloc_vfs);
960
		return -EIO;
M
Mitch Williams 已提交
961
	}
962

963
	if (ice_sriov_set_msix_res(pf, num_msix_per_vf * pf->num_alloc_vfs)) {
M
Mitch Williams 已提交
964 965
		dev_err(dev, "Unable to set MSI-X resources for %d VFs\n",
			pf->num_alloc_vfs);
B
Brett Creeley 已提交
966
		return -EINVAL;
M
Mitch Williams 已提交
967
	}
B
Brett Creeley 已提交
968

M
Mitch Williams 已提交
969
	/* only allow equal Tx/Rx queue count (i.e. queue pairs) */
970 971
	pf->num_qps_per_vf = min_t(int, num_txq, num_rxq);
	pf->num_msix_per_vf = num_msix_per_vf;
M
Mitch Williams 已提交
972
	dev_info(dev, "Enabling %d VFs with %d vectors and %d queues per VF\n",
973
		 pf->num_alloc_vfs, pf->num_msix_per_vf, pf->num_qps_per_vf);
974 975 976 977

	return 0;
}

978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
/**
 * ice_clear_vf_reset_trigger - enable VF to access hardware
 * @vf: VF to enabled hardware access for
 */
static void ice_clear_vf_reset_trigger(struct ice_vf *vf)
{
	struct ice_hw *hw = &vf->pf->hw;
	u32 reg;

	reg = rd32(hw, VPGEN_VFRTRIG(vf->vf_id));
	reg &= ~VPGEN_VFRTRIG_VFSWR_M;
	wr32(hw, VPGEN_VFRTRIG(vf->vf_id), reg);
	ice_flush(hw);
}

993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
/**
 * ice_vf_set_vsi_promisc - set given VF VSI to given promiscuous mode(s)
 * @vf: pointer to the VF info
 * @vsi: the VSI being configured
 * @promisc_m: mask of promiscuous config bits
 * @rm_promisc: promisc flag request from the VF to remove or add filter
 *
 * This function configures VF VSI promiscuous mode, based on the VF requests,
 * for Unicast, Multicast and VLAN
 */
static enum ice_status
ice_vf_set_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m,
		       bool rm_promisc)
{
	struct ice_pf *pf = vf->pf;
	enum ice_status status = 0;
	struct ice_hw *hw;

	hw = &pf->hw;
B
Brett Creeley 已提交
1012
	if (vsi->num_vlan) {
1013 1014
		status = ice_set_vlan_vsi_promisc(hw, vsi->idx, promisc_m,
						  rm_promisc);
1015
	} else if (vf->port_vlan_info) {
1016 1017
		if (rm_promisc)
			status = ice_clear_vsi_promisc(hw, vsi->idx, promisc_m,
1018
						       vf->port_vlan_info);
1019 1020
		else
			status = ice_set_vsi_promisc(hw, vsi->idx, promisc_m,
1021
						     vf->port_vlan_info);
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
	} else {
		if (rm_promisc)
			status = ice_clear_vsi_promisc(hw, vsi->idx, promisc_m,
						       0);
		else
			status = ice_set_vsi_promisc(hw, vsi->idx, promisc_m,
						     0);
	}

	return status;
}

B
Brett Creeley 已提交
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
static void ice_vf_clear_counters(struct ice_vf *vf)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];

	vf->num_mac = 0;
	vsi->num_vlan = 0;
	memset(&vf->mdd_tx_events, 0, sizeof(vf->mdd_tx_events));
	memset(&vf->mdd_rx_events, 0, sizeof(vf->mdd_rx_events));
}

1044
/**
B
Brett Creeley 已提交
1045 1046
 * ice_vf_pre_vsi_rebuild - tasks to be done prior to VSI rebuild
 * @vf: VF to perform pre VSI rebuild tasks
1047
 *
B
Brett Creeley 已提交
1048 1049
 * These tasks are items that don't need to be amortized since they are most
 * likely called in a for loop with all VF(s) in the reset_all_vfs() case.
1050
 */
B
Brett Creeley 已提交
1051
static void ice_vf_pre_vsi_rebuild(struct ice_vf *vf)
1052
{
B
Brett Creeley 已提交
1053 1054 1055
	ice_vf_clear_counters(vf);
	ice_clear_vf_reset_trigger(vf);
}
1056

B
Brett Creeley 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
/**
 * ice_vf_rebuild_host_cfg - host admin configuration is persistent across reset
 * @vf: VF to rebuild host configuration on
 */
static void ice_vf_rebuild_host_cfg(struct ice_vf *vf)
{
	struct device *dev = ice_pf_to_dev(vf->pf);

	ice_vf_set_host_trust_cfg(vf);

	if (ice_vf_rebuild_host_mac_cfg(vf))
		dev_err(dev, "failed to rebuild default MAC configuration for VF %d\n",
			vf->vf_id);

	if (ice_vf_rebuild_host_vlan_cfg(vf))
		dev_err(dev, "failed to rebuild VLAN configuration for VF %u\n",
			vf->vf_id);
}

/**
 * ice_vf_rebuild_vsi_with_release - release and setup the VF's VSI
 * @vf: VF to release and setup the VSI for
 *
 * This is only called when a single VF is being reset (i.e. VFR, VFLR, host VF
 * configuration change, etc.).
 */
static int ice_vf_rebuild_vsi_with_release(struct ice_vf *vf)
{
1085 1086
	ice_vf_vsi_release(vf);
	if (!ice_vf_vsi_setup(vf))
B
Brett Creeley 已提交
1087
		return -ENOMEM;
1088

B
Brett Creeley 已提交
1089 1090
	return 0;
}
1091

B
Brett Creeley 已提交
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
/**
 * ice_vf_rebuild_vsi - rebuild the VF's VSI
 * @vf: VF to rebuild the VSI for
 *
 * This is only called when all VF(s) are being reset (i.e. PCIe Reset on the
 * host, PFR, CORER, etc.).
 */
static int ice_vf_rebuild_vsi(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	vsi = pf->vsi[vf->lan_vsi_idx];

	if (ice_vsi_rebuild(vsi, true)) {
		dev_err(ice_pf_to_dev(pf), "failed to rebuild VF %d VSI\n",
			vf->vf_id);
		return -EIO;
1110
	}
B
Brett Creeley 已提交
1111 1112 1113 1114 1115
	/* vsi->idx will remain the same in this case so don't update
	 * vf->lan_vsi_idx
	 */
	vsi->vsi_num = ice_get_hw_vsi_num(&pf->hw, vsi->idx);
	vf->lan_vsi_num = vsi->vsi_num;
1116

B
Brett Creeley 已提交
1117 1118
	return 0;
}
1119

B
Brett Creeley 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
/**
 * ice_vf_set_initialized - VF is ready for VIRTCHNL communication
 * @vf: VF to set in initialized state
 *
 * After this function the VF will be ready to receive/handle the
 * VIRTCHNL_OP_GET_VF_RESOURCES message
 */
static void ice_vf_set_initialized(struct ice_vf *vf)
{
	ice_set_vf_state_qs_dis(vf);
	clear_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states);
	clear_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states);
	clear_bit(ICE_VF_STATE_DIS, vf->vf_states);
	set_bit(ICE_VF_STATE_INIT, vf->vf_states);
}

/**
 * ice_vf_post_vsi_rebuild - tasks to do after the VF's VSI have been rebuilt
 * @vf: VF to perform tasks on
 */
static void ice_vf_post_vsi_rebuild(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	struct ice_hw *hw;

	hw = &pf->hw;

	ice_vf_rebuild_host_cfg(vf);

	ice_vf_set_initialized(vf);
	ice_ena_vf_mappings(vf);
	wr32(hw, VFGEN_RSTAT(vf->vf_id), VIRTCHNL_VFR_VFACTIVE);
1152 1153
}

1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
/**
 * ice_reset_all_vfs - reset all allocated VFs in one go
 * @pf: pointer to the PF structure
 * @is_vflr: true if VFLR was issued, false if not
 *
 * First, tell the hardware to reset each VF, then do all the waiting in one
 * chunk, and finally finish restoring each VF after the wait. This is useful
 * during PF routines which need to reset all VFs, as otherwise it must perform
 * these resets in a serialized fashion.
 *
 * Returns true if any VFs were reset, and false otherwise.
 */
bool ice_reset_all_vfs(struct ice_pf *pf, bool is_vflr)
{
B
Brett Creeley 已提交
1168
	struct device *dev = ice_pf_to_dev(pf);
1169
	struct ice_hw *hw = &pf->hw;
1170
	struct ice_vf *vf;
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
	int v, i;

	/* If we don't have any VFs, then there is nothing to reset */
	if (!pf->num_alloc_vfs)
		return false;

	/* If VFs have been disabled, there is no need to reset */
	if (test_and_set_bit(__ICE_VF_DIS, pf->state))
		return false;

	/* Begin reset on all VFs at once */
B
Brett Creeley 已提交
1182
	ice_for_each_vf(pf, v)
M
Mitch Williams 已提交
1183
		ice_trigger_vf_reset(&pf->vf[v], is_vflr, true);
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195

	/* HW requires some time to make sure it can flush the FIFO for a VF
	 * when it resets it. Poll the VPGEN_VFRSTAT register for each VF in
	 * sequence to make sure that it has completed. We'll keep track of
	 * the VFs using a simple iterator that increments once that VF has
	 * finished resetting.
	 */
	for (i = 0, v = 0; i < 10 && v < pf->num_alloc_vfs; i++) {
		/* Check each VF in sequence */
		while (v < pf->num_alloc_vfs) {
			u32 reg;

1196
			vf = &pf->vf[v];
1197
			reg = rd32(hw, VPGEN_VFRSTAT(vf->vf_id));
1198 1199 1200
			if (!(reg & VPGEN_VFRSTAT_VFRD_M)) {
				/* only delay if the check failed */
				usleep_range(10, 20);
1201
				break;
1202
			}
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214

			/* If the current VF has finished resetting, move on
			 * to the next VF in sequence.
			 */
			v++;
		}
	}

	/* Display a warning if at least one VF didn't manage to reset in
	 * time, but continue on with the operation.
	 */
	if (v < pf->num_alloc_vfs)
B
Brett Creeley 已提交
1215
		dev_warn(dev, "VF reset check timeout\n");
1216 1217

	/* free VF resources to begin resetting the VSI state */
B
Brett Creeley 已提交
1218
	ice_for_each_vf(pf, v) {
1219 1220
		vf = &pf->vf[v];

B
Brett Creeley 已提交
1221 1222 1223
		ice_vf_pre_vsi_rebuild(vf);
		ice_vf_rebuild_vsi(vf);
		ice_vf_post_vsi_rebuild(vf);
1224
	}
1225

B
Brett Creeley 已提交
1226 1227
	ice_flush(hw);
	clear_bit(__ICE_VF_DIS, pf->state);
1228 1229 1230 1231

	return true;
}

1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
/**
 * ice_is_vf_disabled
 * @vf: pointer to the VF info
 *
 * Returns true if the PF or VF is disabled, false otherwise.
 */
static bool ice_is_vf_disabled(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;

	/* If the PF has been disabled, there is no need resetting VF until
	 * PF is active again. Similarly, if the VF has been disabled, this
	 * means something else is resetting the VF, so we shouldn't continue.
	 * Otherwise, set disable VF state bit for actual reset, and continue.
	 */
	return (test_bit(__ICE_VF_DIS, pf->state) ||
		test_bit(ICE_VF_STATE_DIS, vf->vf_states));
}

1251 1252 1253 1254 1255
/**
 * ice_reset_vf - Reset a particular VF
 * @vf: pointer to the VF structure
 * @is_vflr: true if VFLR was issued, false if not
 *
1256 1257
 * Returns true if the VF is currently in reset, resets successfully, or resets
 * are disabled and false otherwise.
1258
 */
1259
bool ice_reset_vf(struct ice_vf *vf, bool is_vflr)
1260 1261
{
	struct ice_pf *pf = vf->pf;
1262
	struct ice_vsi *vsi;
B
Brett Creeley 已提交
1263
	struct device *dev;
1264
	struct ice_hw *hw;
1265
	bool rsd = false;
1266
	u8 promisc_m;
1267 1268 1269
	u32 reg;
	int i;

B
Brett Creeley 已提交
1270 1271
	dev = ice_pf_to_dev(pf);

1272 1273 1274 1275 1276 1277
	if (test_bit(__ICE_VF_RESETS_DISABLED, pf->state)) {
		dev_dbg(dev, "Trying to reset VF %d, but all VF resets are disabled\n",
			vf->vf_id);
		return true;
	}

1278
	if (ice_is_vf_disabled(vf)) {
B
Brett Creeley 已提交
1279 1280
		dev_dbg(dev, "VF is already disabled, there is no need for resetting it, telling VM, all is fine %d\n",
			vf->vf_id);
1281 1282
		return true;
	}
1283

1284 1285
	/* Set VF disable bit state here, before triggering reset */
	set_bit(ICE_VF_STATE_DIS, vf->vf_states);
M
Mitch Williams 已提交
1286
	ice_trigger_vf_reset(vf, is_vflr, false);
1287

1288 1289
	vsi = pf->vsi[vf->lan_vsi_idx];

1290 1291
	if (test_bit(ICE_VF_STATE_QS_ENA, vf->vf_states))
		ice_dis_vf_qs(vf);
1292 1293 1294 1295 1296 1297

	/* Call Disable LAN Tx queue AQ whether or not queues are
	 * enabled. This is needed for successful completion of VFR.
	 */
	ice_dis_vsi_txq(vsi->port_info, vsi->idx, 0, 0, NULL, NULL,
			NULL, ICE_VF_RESET, vf->vf_id, NULL);
1298

1299
	hw = &pf->hw;
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
	/* poll VPGEN_VFRSTAT reg to make sure
	 * that reset is complete
	 */
	for (i = 0; i < 10; i++) {
		/* VF reset requires driver to first reset the VF and then
		 * poll the status register to make sure that the reset
		 * completed successfully.
		 */
		reg = rd32(hw, VPGEN_VFRSTAT(vf->vf_id));
		if (reg & VPGEN_VFRSTAT_VFRD_M) {
			rsd = true;
			break;
		}
1313 1314 1315

		/* only sleep if the reset is not done */
		usleep_range(10, 20);
1316 1317 1318 1319 1320 1321
	}

	/* Display a warning if VF didn't manage to reset in time, but need to
	 * continue on with the operation.
	 */
	if (!rsd)
B
Brett Creeley 已提交
1322
		dev_warn(dev, "VF reset check timeout on VF %d\n", vf->vf_id);
1323

1324 1325 1326 1327 1328
	/* disable promiscuous modes in case they were enabled
	 * ignore any error if disabling process failed
	 */
	if (test_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states) ||
	    test_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states)) {
1329
		if (vf->port_vlan_info || vsi->num_vlan)
1330 1331 1332 1333 1334 1335
			promisc_m = ICE_UCAST_VLAN_PROMISC_BITS;
		else
			promisc_m = ICE_UCAST_PROMISC_BITS;

		vsi = pf->vsi[vf->lan_vsi_idx];
		if (ice_vf_set_vsi_promisc(vf, vsi, promisc_m, true))
B
Brett Creeley 已提交
1336
			dev_err(dev, "disabling promiscuous mode failed\n");
1337 1338
	}

B
Brett Creeley 已提交
1339 1340 1341
	ice_vf_pre_vsi_rebuild(vf);
	ice_vf_rebuild_vsi_with_release(vf);
	ice_vf_post_vsi_rebuild(vf);
1342 1343 1344 1345

	return true;
}

1346 1347 1348 1349 1350 1351 1352 1353
/**
 * ice_vc_notify_link_state - Inform all VFs on a PF of link status
 * @pf: pointer to the PF structure
 */
void ice_vc_notify_link_state(struct ice_pf *pf)
{
	int i;

B
Brett Creeley 已提交
1354
	ice_for_each_vf(pf, i)
1355 1356 1357
		ice_vc_notify_vf_link_state(&pf->vf[i]);
}

1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
/**
 * ice_vc_notify_reset - Send pending reset message to all VFs
 * @pf: pointer to the PF structure
 *
 * indicate a pending reset to all VFs on a given PF
 */
void ice_vc_notify_reset(struct ice_pf *pf)
{
	struct virtchnl_pf_event pfe;

	if (!pf->num_alloc_vfs)
		return;

	pfe.event = VIRTCHNL_EVENT_RESET_IMPENDING;
	pfe.severity = PF_EVENT_SEVERITY_CERTAIN_DOOM;
1373
	ice_vc_vf_broadcast(pf, VIRTCHNL_OP_EVENT, VIRTCHNL_STATUS_SUCCESS,
1374 1375 1376
			    (u8 *)&pfe, sizeof(struct virtchnl_pf_event));
}

1377 1378 1379 1380 1381 1382 1383
/**
 * ice_vc_notify_vf_reset - Notify VF of a reset event
 * @vf: pointer to the VF structure
 */
static void ice_vc_notify_vf_reset(struct ice_vf *vf)
{
	struct virtchnl_pf_event pfe;
J
Jesse Brandeburg 已提交
1384
	struct ice_pf *pf;
1385

J
Jesse Brandeburg 已提交
1386 1387 1388 1389 1390
	if (!vf)
		return;

	pf = vf->pf;
	if (ice_validate_vf_id(pf, vf->vf_id))
1391 1392
		return;

1393 1394 1395 1396 1397 1398
	/* Bail out if VF is in disabled state, neither initialized, nor active
	 * state - otherwise proceed with notifications
	 */
	if ((!test_bit(ICE_VF_STATE_INIT, vf->vf_states) &&
	     !test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) ||
	    test_bit(ICE_VF_STATE_DIS, vf->vf_states))
1399 1400 1401 1402
		return;

	pfe.event = VIRTCHNL_EVENT_RESET_IMPENDING;
	pfe.severity = PF_EVENT_SEVERITY_CERTAIN_DOOM;
J
Jesse Brandeburg 已提交
1403
	ice_aq_send_msg_to_vf(&pf->hw, vf->vf_id, VIRTCHNL_OP_EVENT,
1404 1405
			      VIRTCHNL_STATUS_SUCCESS, (u8 *)&pfe, sizeof(pfe),
			      NULL);
1406 1407
}

1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
/**
 * ice_init_vf_vsi_res - initialize/setup VF VSI resources
 * @vf: VF to initialize/setup the VSI for
 *
 * This function creates a VSI for the VF, adds a VLAN 0 filter, and sets up the
 * VF VSI's broadcast filter and is only used during initial VF creation.
 */
static int ice_init_vf_vsi_res(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	u8 broadcast[ETH_ALEN];
	enum ice_status status;
	struct ice_vsi *vsi;
	struct device *dev;
	int err;

	vf->first_vector_idx = ice_calc_vf_first_vector_idx(pf, vf);

	dev = ice_pf_to_dev(pf);
1427 1428
	vsi = ice_vf_vsi_setup(vf);
	if (!vsi)
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
		return -ENOMEM;

	err = ice_vsi_add_vlan(vsi, 0, ICE_FWD_TO_VSI);
	if (err) {
		dev_warn(dev, "Failed to add VLAN 0 filter for VF %d\n",
			 vf->vf_id);
		goto release_vsi;
	}

	eth_broadcast_addr(broadcast);
	status = ice_fltr_add_mac(vsi, broadcast, ICE_FWD_TO_VSI);
	if (status) {
		dev_err(dev, "Failed to add broadcast MAC filter for VF %d, status %s\n",
			vf->vf_id, ice_stat_str(status));
		err = ice_status_to_errno(status);
		goto release_vsi;
	}

	vf->num_mac = 1;

	return 0;

release_vsi:
1452
	ice_vf_vsi_release(vf);
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
	return err;
}

/**
 * ice_start_vfs - start VFs so they are ready to be used by SR-IOV
 * @pf: PF the VFs are associated with
 */
static int ice_start_vfs(struct ice_pf *pf)
{
	struct ice_hw *hw = &pf->hw;
	int retval, i;

	ice_for_each_vf(pf, i) {
		struct ice_vf *vf = &pf->vf[i];

		ice_clear_vf_reset_trigger(vf);

		retval = ice_init_vf_vsi_res(vf);
		if (retval) {
			dev_err(ice_pf_to_dev(pf), "Failed to initialize VSI resources for VF %d, error %d\n",
				vf->vf_id, retval);
			goto teardown;
		}

		set_bit(ICE_VF_STATE_INIT, vf->vf_states);
		ice_ena_vf_mappings(vf);
		wr32(hw, VFGEN_RSTAT(vf->vf_id), VIRTCHNL_VFR_VFACTIVE);
	}

	ice_flush(hw);
	return 0;

teardown:
	for (i = i - 1; i >= 0; i--) {
		struct ice_vf *vf = &pf->vf[i];

		ice_dis_vf_mappings(vf);
1490
		ice_vf_vsi_release(vf);
1491 1492 1493 1494 1495
	}

	return retval;
}

1496
/**
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
 * ice_set_dflt_settings - set VF defaults during initialization/creation
 * @pf: PF holding reference to all VFs for default configuration
 */
static void ice_set_dflt_settings_vfs(struct ice_pf *pf)
{
	int i;

	ice_for_each_vf(pf, i) {
		struct ice_vf *vf = &pf->vf[i];

		vf->pf = pf;
		vf->vf_id = i;
		vf->vf_sw_id = pf->first_sw;
		/* assign default capabilities */
		set_bit(ICE_VIRTCHNL_VF_CAP_L2, &vf->vf_caps);
		vf->spoofchk = true;
		vf->num_vf_qs = pf->num_qps_per_vf;
	}
}

/**
 * ice_alloc_vfs - allocate num_vfs in the PF structure
 * @pf: PF to store the allocated VFs in
 * @num_vfs: number of VFs to allocate
 */
static int ice_alloc_vfs(struct ice_pf *pf, int num_vfs)
{
	struct ice_vf *vfs;

	vfs = devm_kcalloc(ice_pf_to_dev(pf), num_vfs, sizeof(*vfs),
			   GFP_KERNEL);
	if (!vfs)
		return -ENOMEM;

	pf->vf = vfs;
	pf->num_alloc_vfs = num_vfs;

	return 0;
}

/**
 * ice_ena_vfs - enable VFs so they are ready to be used
1539
 * @pf: pointer to the PF structure
1540
 * @num_vfs: number of VFs to enable
1541
 */
1542
static int ice_ena_vfs(struct ice_pf *pf, u16 num_vfs)
1543
{
B
Brett Creeley 已提交
1544
	struct device *dev = ice_pf_to_dev(pf);
1545
	struct ice_hw *hw = &pf->hw;
1546
	int ret;
1547 1548

	/* Disable global interrupt 0 so we don't try to handle the VFLR. */
B
Brett Creeley 已提交
1549
	wr32(hw, GLINT_DYN_CTL(pf->oicr_idx),
1550
	     ICE_ITR_NONE << GLINT_DYN_CTL_ITR_INDX_S);
1551
	set_bit(__ICE_OICR_INTR_DIS, pf->state);
1552 1553
	ice_flush(hw);

1554
	ret = pci_enable_sriov(pf->pdev, num_vfs);
1555 1556 1557 1558
	if (ret) {
		pf->num_alloc_vfs = 0;
		goto err_unroll_intr;
	}
1559 1560 1561

	ret = ice_alloc_vfs(pf, num_vfs);
	if (ret)
1562
		goto err_pci_disable_sriov;
1563

1564 1565
	if (ice_set_per_vf_res(pf)) {
		dev_err(dev, "Not enough resources for %d VFs, try with fewer number of VFs\n",
1566
			num_vfs);
1567 1568 1569 1570
		ret = -ENOSPC;
		goto err_unroll_sriov;
	}

1571
	ice_set_dflt_settings_vfs(pf);
1572

1573 1574 1575
	if (ice_start_vfs(pf)) {
		dev_err(dev, "Failed to start VF(s)\n");
		ret = -EAGAIN;
1576
		goto err_unroll_sriov;
1577
	}
1578

1579 1580
	clear_bit(__ICE_VF_DIS, pf->state);
	return 0;
1581 1582

err_unroll_sriov:
1583
	devm_kfree(dev, pf->vf);
1584 1585 1586
	pf->vf = NULL;
	pf->num_alloc_vfs = 0;
err_pci_disable_sriov:
1587 1588 1589 1590
	pci_disable_sriov(pf->pdev);
err_unroll_intr:
	/* rearm interrupts here */
	ice_irq_dynamic_ena(hw, NULL, NULL);
1591
	clear_bit(__ICE_OICR_INTR_DIS, pf->state);
1592 1593 1594 1595 1596 1597 1598
	return ret;
}

/**
 * ice_pci_sriov_ena - Enable or change number of VFs
 * @pf: pointer to the PF structure
 * @num_vfs: number of VFs to allocate
1599 1600
 *
 * Returns 0 on success and negative on failure
1601 1602 1603 1604
 */
static int ice_pci_sriov_ena(struct ice_pf *pf, int num_vfs)
{
	int pre_existing_vfs = pci_num_vf(pf->pdev);
B
Brett Creeley 已提交
1605
	struct device *dev = ice_pf_to_dev(pf);
1606 1607 1608 1609 1610
	int err;

	if (pre_existing_vfs && pre_existing_vfs != num_vfs)
		ice_free_vfs(pf);
	else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1611
		return 0;
1612 1613 1614 1615

	if (num_vfs > pf->num_vfs_supported) {
		dev_err(dev, "Can't enable %d VFs, max VFs supported is %d\n",
			num_vfs, pf->num_vfs_supported);
1616
		return -EOPNOTSUPP;
1617 1618
	}

1619 1620
	dev_info(dev, "Enabling %d VFs\n", num_vfs);
	err = ice_ena_vfs(pf, num_vfs);
1621 1622 1623 1624 1625 1626
	if (err) {
		dev_err(dev, "Failed to enable SR-IOV: %d\n", err);
		return err;
	}

	set_bit(ICE_FLAG_SRIOV_ENA, pf->flags);
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
	return 0;
}

/**
 * ice_check_sriov_allowed - check if SR-IOV is allowed based on various checks
 * @pf: PF to enabled SR-IOV on
 */
static int ice_check_sriov_allowed(struct ice_pf *pf)
{
	struct device *dev = ice_pf_to_dev(pf);

	if (!test_bit(ICE_FLAG_SRIOV_CAPABLE, pf->flags)) {
		dev_err(dev, "This device is not capable of SR-IOV\n");
		return -EOPNOTSUPP;
	}

	if (ice_is_safe_mode(pf)) {
		dev_err(dev, "SR-IOV cannot be configured - Device is in Safe Mode\n");
		return -EOPNOTSUPP;
	}

	if (!ice_pf_state_is_nominal(pf)) {
		dev_err(dev, "Cannot enable SR-IOV, device not ready\n");
		return -EBUSY;
	}

	return 0;
1654 1655 1656 1657 1658
}

/**
 * ice_sriov_configure - Enable or change number of VFs via sysfs
 * @pdev: pointer to a pci_dev structure
1659
 * @num_vfs: number of VFs to allocate or 0 to free VFs
1660
 *
1661 1662 1663
 * This function is called when the user updates the number of VFs in sysfs. On
 * success return whatever num_vfs was set to by the caller. Return negative on
 * failure.
1664 1665 1666 1667
 */
int ice_sriov_configure(struct pci_dev *pdev, int num_vfs)
{
	struct ice_pf *pf = pci_get_drvdata(pdev);
B
Brett Creeley 已提交
1668
	struct device *dev = ice_pf_to_dev(pf);
1669
	int err;
1670

1671 1672 1673
	err = ice_check_sriov_allowed(pf);
	if (err)
		return err;
T
Tony Nguyen 已提交
1674

1675 1676 1677 1678 1679
	if (!num_vfs) {
		if (!pci_vfs_assigned(pdev)) {
			ice_free_vfs(pf);
			return 0;
		}
1680

B
Brett Creeley 已提交
1681
		dev_err(dev, "can't free VFs because some are assigned to VMs.\n");
1682 1683 1684
		return -EBUSY;
	}

1685 1686 1687 1688 1689
	err = ice_pci_sriov_ena(pf, num_vfs);
	if (err)
		return err;

	return num_vfs;
1690
}
1691 1692 1693 1694 1695

/**
 * ice_process_vflr_event - Free VF resources via IRQ calls
 * @pf: pointer to the PF structure
 *
1696
 * called from the VFLR IRQ handler to
1697 1698 1699 1700 1701
 * free up VF resources and state variables
 */
void ice_process_vflr_event(struct ice_pf *pf)
{
	struct ice_hw *hw = &pf->hw;
J
Jesse Brandeburg 已提交
1702
	unsigned int vf_id;
1703 1704
	u32 reg;

1705
	if (!test_and_clear_bit(__ICE_VFLR_EVENT_PENDING, pf->state) ||
1706 1707 1708
	    !pf->num_alloc_vfs)
		return;

B
Brett Creeley 已提交
1709
	ice_for_each_vf(pf, vf_id) {
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
		struct ice_vf *vf = &pf->vf[vf_id];
		u32 reg_idx, bit_idx;

		reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
		bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
		/* read GLGEN_VFLRSTAT register to find out the flr VFs */
		reg = rd32(hw, GLGEN_VFLRSTAT(reg_idx));
		if (reg & BIT(bit_idx))
			/* GLGEN_VFLRSTAT bit will be cleared in ice_reset_vf */
			ice_reset_vf(vf, true);
	}
}
1722 1723

/**
1724
 * ice_vc_reset_vf - Perform software reset on the VF after informing the AVF
1725 1726
 * @vf: pointer to the VF info
 */
1727
static void ice_vc_reset_vf(struct ice_vf *vf)
1728 1729 1730 1731 1732
{
	ice_vc_notify_vf_reset(vf);
	ice_reset_vf(vf, false);
}

1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
/**
 * ice_get_vf_from_pfq - get the VF who owns the PF space queue passed in
 * @pf: PF used to index all VFs
 * @pfq: queue index relative to the PF's function space
 *
 * If no VF is found who owns the pfq then return NULL, otherwise return a
 * pointer to the VF who owns the pfq
 */
static struct ice_vf *ice_get_vf_from_pfq(struct ice_pf *pf, u16 pfq)
{
J
Jesse Brandeburg 已提交
1743
	unsigned int vf_id;
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798

	ice_for_each_vf(pf, vf_id) {
		struct ice_vf *vf = &pf->vf[vf_id];
		struct ice_vsi *vsi;
		u16 rxq_idx;

		vsi = pf->vsi[vf->lan_vsi_idx];

		ice_for_each_rxq(vsi, rxq_idx)
			if (vsi->rxq_map[rxq_idx] == pfq)
				return vf;
	}

	return NULL;
}

/**
 * ice_globalq_to_pfq - convert from global queue index to PF space queue index
 * @pf: PF used for conversion
 * @globalq: global queue index used to convert to PF space queue index
 */
static u32 ice_globalq_to_pfq(struct ice_pf *pf, u32 globalq)
{
	return globalq - pf->hw.func_caps.common_cap.rxq_first_id;
}

/**
 * ice_vf_lan_overflow_event - handle LAN overflow event for a VF
 * @pf: PF that the LAN overflow event happened on
 * @event: structure holding the event information for the LAN overflow event
 *
 * Determine if the LAN overflow event was caused by a VF queue. If it was not
 * caused by a VF, do nothing. If a VF caused this LAN overflow event trigger a
 * reset on the offending VF.
 */
void
ice_vf_lan_overflow_event(struct ice_pf *pf, struct ice_rq_event_info *event)
{
	u32 gldcb_rtctq, queue;
	struct ice_vf *vf;

	gldcb_rtctq = le32_to_cpu(event->desc.params.lan_overflow.prtdcb_ruptq);
	dev_dbg(ice_pf_to_dev(pf), "GLDCB_RTCTQ: 0x%08x\n", gldcb_rtctq);

	/* event returns device global Rx queue number */
	queue = (gldcb_rtctq & GLDCB_RTCTQ_RXQNUM_M) >>
		GLDCB_RTCTQ_RXQNUM_S;

	vf = ice_get_vf_from_pfq(pf, ice_globalq_to_pfq(pf, queue));
	if (!vf)
		return;

	ice_vc_reset_vf(vf);
}

1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
/**
 * ice_vc_send_msg_to_vf - Send message to VF
 * @vf: pointer to the VF info
 * @v_opcode: virtual channel opcode
 * @v_retval: virtual channel return value
 * @msg: pointer to the msg buffer
 * @msglen: msg length
 *
 * send msg to VF
 */
1809
static int
1810 1811
ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode,
		      enum virtchnl_status_code v_retval, u8 *msg, u16 msglen)
1812 1813
{
	enum ice_status aq_ret;
B
Brett Creeley 已提交
1814
	struct device *dev;
1815 1816
	struct ice_pf *pf;

J
Jesse Brandeburg 已提交
1817
	if (!vf)
1818 1819 1820
		return -EINVAL;

	pf = vf->pf;
J
Jesse Brandeburg 已提交
1821 1822
	if (ice_validate_vf_id(pf, vf->vf_id))
		return -EINVAL;
1823

B
Brett Creeley 已提交
1824 1825
	dev = ice_pf_to_dev(pf);

1826 1827 1828
	/* single place to detect unsuccessful return values */
	if (v_retval) {
		vf->num_inval_msgs++;
B
Brett Creeley 已提交
1829 1830
		dev_info(dev, "VF %d failed opcode %d, retval: %d\n", vf->vf_id,
			 v_opcode, v_retval);
1831
		if (vf->num_inval_msgs > ICE_DFLT_NUM_INVAL_MSGS_ALLOWED) {
1832
			dev_err(dev, "Number of invalid messages exceeded for VF %d\n",
1833
				vf->vf_id);
B
Brett Creeley 已提交
1834
			dev_err(dev, "Use PF Control I/F to enable the VF\n");
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
			set_bit(ICE_VF_STATE_DIS, vf->vf_states);
			return -EIO;
		}
	} else {
		vf->num_valid_msgs++;
		/* reset the invalid counter, if a valid message is received. */
		vf->num_inval_msgs = 0;
	}

	aq_ret = ice_aq_send_msg_to_vf(&pf->hw, vf->vf_id, v_opcode, v_retval,
				       msg, msglen, NULL);
1846
	if (aq_ret && pf->hw.mailboxq.sq_last_status != ICE_AQ_RC_ENOSYS) {
1847 1848 1849
		dev_info(dev, "Unable to send the message to VF %d ret %s aq_err %s\n",
			 vf->vf_id, ice_stat_str(aq_ret),
			 ice_aq_str(pf->hw.mailboxq.sq_last_status));
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
		return -EIO;
	}

	return 0;
}

/**
 * ice_vc_get_ver_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to request the API version used by the PF
 */
static int ice_vc_get_ver_msg(struct ice_vf *vf, u8 *msg)
{
	struct virtchnl_version_info info = {
		VIRTCHNL_VERSION_MAJOR, VIRTCHNL_VERSION_MINOR
	};

	vf->vf_ver = *(struct virtchnl_version_info *)msg;
	/* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
	if (VF_IS_V10(&vf->vf_ver))
		info.minor = VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;

1874 1875
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_VERSION,
				     VIRTCHNL_STATUS_SUCCESS, (u8 *)&info,
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
				     sizeof(struct virtchnl_version_info));
}

/**
 * ice_vc_get_vf_res_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to request its resources
 */
static int ice_vc_get_vf_res_msg(struct ice_vf *vf, u8 *msg)
{
1888
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
1889 1890 1891 1892 1893 1894
	struct virtchnl_vf_resource *vfres = NULL;
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;
	int len = 0;
	int ret;

J
Jesse Brandeburg 已提交
1895
	if (ice_check_vf_init(pf, vf)) {
1896
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
1897 1898 1899 1900 1901
		goto err;
	}

	len = sizeof(struct virtchnl_vf_resource);

1902
	vfres = kzalloc(len, GFP_KERNEL);
1903
	if (!vfres) {
1904
		v_ret = VIRTCHNL_STATUS_ERR_NO_MEMORY;
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
		len = 0;
		goto err;
	}
	if (VF_IS_V11(&vf->vf_ver))
		vf->driver_caps = *(u32 *)msg;
	else
		vf->driver_caps = VIRTCHNL_VF_OFFLOAD_L2 |
				  VIRTCHNL_VF_OFFLOAD_RSS_REG |
				  VIRTCHNL_VF_OFFLOAD_VLAN;

	vfres->vf_cap_flags = VIRTCHNL_VF_OFFLOAD_L2;
	vsi = pf->vsi[vf->lan_vsi_idx];
1917
	if (!vsi) {
1918
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
1919 1920 1921
		goto err;
	}

1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
	if (!vsi->info.pvid)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_VLAN;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_PF;
	} else {
		if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_AQ)
			vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_AQ;
		else
			vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_REG;
	}

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ENCAP)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_ENCAP;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RX_POLLING)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RX_POLLING;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_WB_ON_ITR;

	if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_REQ_QUEUES)
		vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_REQ_QUEUES;

	if (vf->driver_caps & VIRTCHNL_VF_CAP_ADV_LINK_SPEED)
		vfres->vf_cap_flags |= VIRTCHNL_VF_CAP_ADV_LINK_SPEED;

	vfres->num_vsis = 1;
	/* Tx and Rx queue are equal for VF */
	vfres->num_queue_pairs = vsi->num_txq;
1958
	vfres->max_vectors = pf->num_msix_per_vf;
1959 1960 1961 1962 1963 1964 1965 1966 1967
	vfres->rss_key_size = ICE_VSIQF_HKEY_ARRAY_SIZE;
	vfres->rss_lut_size = ICE_VSIQF_HLUT_ARRAY_SIZE;

	vfres->vsi_res[0].vsi_id = vf->lan_vsi_num;
	vfres->vsi_res[0].vsi_type = VIRTCHNL_VSI_SRIOV;
	vfres->vsi_res[0].num_queue_pairs = vsi->num_txq;
	ether_addr_copy(vfres->vsi_res[0].default_mac_addr,
			vf->dflt_lan_addr.addr);

1968 1969 1970
	/* match guest capabilities */
	vf->driver_caps = vfres->vf_cap_flags;

1971 1972 1973 1974
	set_bit(ICE_VF_STATE_ACTIVE, vf->vf_states);

err:
	/* send the response back to the VF */
1975
	ret = ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_GET_VF_RESOURCES, v_ret,
1976 1977
				    (u8 *)vfres, len);

1978
	kfree(vfres);
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
	return ret;
}

/**
 * ice_vc_reset_vf_msg
 * @vf: pointer to the VF info
 *
 * called from the VF to reset itself,
 * unlike other virtchnl messages, PF driver
 * doesn't send the response back to the VF
 */
static void ice_vc_reset_vf_msg(struct ice_vf *vf)
{
1992
	if (test_bit(ICE_VF_STATE_INIT, vf->vf_states))
1993 1994 1995 1996 1997
		ice_reset_vf(vf, false);
}

/**
 * ice_find_vsi_from_id
1998
 * @pf: the PF structure to search for the VSI
1999
 * @id: ID of the VSI it is searching for
2000
 *
2001
 * searches for the VSI with the given ID
2002 2003 2004 2005 2006
 */
static struct ice_vsi *ice_find_vsi_from_id(struct ice_pf *pf, u16 id)
{
	int i;

2007
	ice_for_each_vsi(pf, i)
2008 2009 2010 2011 2012 2013 2014 2015 2016
		if (pf->vsi[i] && pf->vsi[i]->vsi_num == id)
			return pf->vsi[i];

	return NULL;
}

/**
 * ice_vc_isvalid_vsi_id
 * @vf: pointer to the VF info
2017
 * @vsi_id: VF relative VSI ID
2018
 *
2019
 * check for the valid VSI ID
2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
 */
static bool ice_vc_isvalid_vsi_id(struct ice_vf *vf, u16 vsi_id)
{
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	vsi = ice_find_vsi_from_id(pf, vsi_id);

	return (vsi && (vsi->vf_id == vf->vf_id));
}

/**
 * ice_vc_isvalid_q_id
 * @vf: pointer to the VF info
2034 2035
 * @vsi_id: VSI ID
 * @qid: VSI relative queue ID
2036
 *
2037
 * check for the valid queue ID
2038 2039 2040 2041 2042 2043 2044 2045
 */
static bool ice_vc_isvalid_q_id(struct ice_vf *vf, u16 vsi_id, u8 qid)
{
	struct ice_vsi *vsi = ice_find_vsi_from_id(vf->pf, vsi_id);
	/* allocated Tx and Rx queues should be always equal for VF VSI */
	return (vsi && (qid < vsi->alloc_txq));
}

2046 2047 2048 2049 2050
/**
 * ice_vc_isvalid_ring_len
 * @ring_len: length of ring
 *
 * check for the valid ring count, should be multiple of ICE_REQ_DESC_MULTIPLE
2051
 * or zero
2052 2053 2054
 */
static bool ice_vc_isvalid_ring_len(u16 ring_len)
{
2055 2056
	return ring_len == 0 ||
	       (ring_len >= ICE_MIN_NUM_DESC &&
2057 2058 2059 2060
		ring_len <= ICE_MAX_NUM_DESC &&
		!(ring_len % ICE_REQ_DESC_MULTIPLE));
}

2061 2062 2063 2064 2065 2066 2067 2068 2069
/**
 * ice_vc_config_rss_key
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * Configure the VF's RSS key
 */
static int ice_vc_config_rss_key(struct ice_vf *vf, u8 *msg)
{
2070
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2071 2072
	struct virtchnl_rss_key *vrk =
		(struct virtchnl_rss_key *)msg;
2073
	struct ice_pf *pf = vf->pf;
J
Jesse Brandeburg 已提交
2074
	struct ice_vsi *vsi;
2075 2076

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
2077
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2078 2079 2080 2081
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, vrk->vsi_id)) {
2082
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2083 2084 2085
		goto error_param;
	}

2086
	if (vrk->key_len != ICE_VSIQF_HKEY_ARRAY_SIZE) {
2087
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2088 2089 2090
		goto error_param;
	}

2091
	if (!test_bit(ICE_FLAG_RSS_ENA, vf->pf->flags)) {
2092
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2093 2094 2095
		goto error_param;
	}

2096 2097
	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi) {
2098
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2099 2100 2101
		goto error_param;
	}

2102 2103
	if (ice_set_rss(vsi, vrk->key, NULL, 0))
		v_ret = VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
2104
error_param:
2105
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_CONFIG_RSS_KEY, v_ret,
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
				     NULL, 0);
}

/**
 * ice_vc_config_rss_lut
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * Configure the VF's RSS LUT
 */
static int ice_vc_config_rss_lut(struct ice_vf *vf, u8 *msg)
{
	struct virtchnl_rss_lut *vrl = (struct virtchnl_rss_lut *)msg;
2119
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2120
	struct ice_pf *pf = vf->pf;
J
Jesse Brandeburg 已提交
2121
	struct ice_vsi *vsi;
2122 2123

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
2124
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2125 2126 2127 2128
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, vrl->vsi_id)) {
2129
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2130 2131 2132
		goto error_param;
	}

2133
	if (vrl->lut_entries != ICE_VSIQF_HLUT_ARRAY_SIZE) {
2134
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2135 2136 2137
		goto error_param;
	}

2138
	if (!test_bit(ICE_FLAG_RSS_ENA, vf->pf->flags)) {
2139
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2140 2141 2142
		goto error_param;
	}

2143 2144
	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi) {
2145
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2146 2147 2148
		goto error_param;
	}

2149 2150
	if (ice_set_rss(vsi, NULL, vrl->lut, ICE_VSIQF_HLUT_ARRAY_SIZE))
		v_ret = VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
2151
error_param:
2152
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_CONFIG_RSS_LUT, v_ret,
2153 2154 2155
				     NULL, 0);
}

2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
/**
 * ice_wait_on_vf_reset - poll to make sure a given VF is ready after reset
 * @vf: The VF being resseting
 *
 * The max poll time is about ~800ms, which is about the maximum time it takes
 * for a VF to be reset and/or a VF driver to be removed.
 */
static void ice_wait_on_vf_reset(struct ice_vf *vf)
{
	int i;

	for (i = 0; i < ICE_MAX_VF_RESET_TRIES; i++) {
		if (test_bit(ICE_VF_STATE_INIT, vf->vf_states))
			break;
		msleep(ICE_MAX_VF_RESET_SLEEP_MS);
	}
}

/**
 * ice_check_vf_ready_for_cfg - check if VF is ready to be configured/queried
 * @vf: VF to check if it's ready to be configured/queried
 *
 * The purpose of this function is to make sure the VF is not in reset, not
 * disabled, and initialized so it can be configured and/or queried by a host
 * administrator.
 */
static int ice_check_vf_ready_for_cfg(struct ice_vf *vf)
{
	struct ice_pf *pf;

	ice_wait_on_vf_reset(vf);

	if (ice_is_vf_disabled(vf))
		return -EINVAL;

	pf = vf->pf;
	if (ice_check_vf_init(pf, vf))
		return -EBUSY;

	return 0;
}

B
Brett Creeley 已提交
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214
/**
 * ice_set_vf_spoofchk
 * @netdev: network interface device structure
 * @vf_id: VF identifier
 * @ena: flag to enable or disable feature
 *
 * Enable or disable VF spoof checking
 */
int ice_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool ena)
{
	struct ice_netdev_priv *np = netdev_priv(netdev);
	struct ice_pf *pf = np->vsi->back;
	struct ice_vsi_ctx *ctx;
	struct ice_vsi *vf_vsi;
	enum ice_status status;
	struct device *dev;
	struct ice_vf *vf;
2215
	int ret;
B
Brett Creeley 已提交
2216 2217 2218 2219 2220 2221

	dev = ice_pf_to_dev(pf);
	if (ice_validate_vf_id(pf, vf_id))
		return -EINVAL;

	vf = &pf->vf[vf_id];
2222 2223 2224
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;
B
Brett Creeley 已提交
2225 2226 2227 2228 2229 2230 2231 2232 2233

	vf_vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vf_vsi) {
		netdev_err(netdev, "VSI %d for VF %d is null\n",
			   vf->lan_vsi_idx, vf->vf_id);
		return -EINVAL;
	}

	if (vf_vsi->type != ICE_VSI_VF) {
2234
		netdev_err(netdev, "Type %d of VSI %d for VF %d is no ICE_VSI_VF\n",
B
Brett Creeley 已提交
2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
			   vf_vsi->type, vf_vsi->vsi_num, vf->vf_id);
		return -ENODEV;
	}

	if (ena == vf->spoofchk) {
		dev_dbg(dev, "VF spoofchk already %s\n", ena ? "ON" : "OFF");
		return 0;
	}

	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
	if (!ctx)
		return -ENOMEM;

	ctx->info.sec_flags = vf_vsi->info.sec_flags;
	ctx->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
	if (ena) {
		ctx->info.sec_flags |=
			ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
			(ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
			 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S);
	} else {
		ctx->info.sec_flags &=
			~(ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
			  (ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
			   ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S));
	}

	status = ice_update_vsi(&pf->hw, vf_vsi->idx, ctx, NULL);
	if (status) {
2264 2265 2266
		dev_err(dev, "Failed to %sable spoofchk on VF %d VSI %d\n error %s\n",
			ena ? "en" : "dis", vf->vf_id, vf_vsi->vsi_num,
			ice_stat_str(status));
B
Brett Creeley 已提交
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279
		ret = -EIO;
		goto out;
	}

	/* only update spoofchk state and VSI context on success */
	vf_vsi->info.sec_flags = ctx->info.sec_flags;
	vf->spoofchk = ena;

out:
	kfree(ctx);
	return ret;
}

B
Brett Creeley 已提交
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
/**
 * ice_is_any_vf_in_promisc - check if any VF(s) are in promiscuous mode
 * @pf: PF structure for accessing VF(s)
 *
 * Return false if no VF(s) are in unicast and/or multicast promiscuous mode,
 * else return true
 */
bool ice_is_any_vf_in_promisc(struct ice_pf *pf)
{
	int vf_idx;

	ice_for_each_vf(pf, vf_idx) {
		struct ice_vf *vf = &pf->vf[vf_idx];

		/* found a VF that has promiscuous mode configured */
		if (test_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states) ||
		    test_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states))
			return true;
	}

	return false;
}

/**
 * ice_vc_cfg_promiscuous_mode_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to configure VF VSIs promiscuous mode
 */
static int ice_vc_cfg_promiscuous_mode_msg(struct ice_vf *vf, u8 *msg)
{
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
	struct virtchnl_promisc_info *info =
	    (struct virtchnl_promisc_info *)msg;
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;
	struct device *dev;
	bool rm_promisc;
	int ret = 0;

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, info->vsi_id)) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

	dev = ice_pf_to_dev(pf);
	if (!test_bit(ICE_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
		dev_err(dev, "Unprivileged VF %d is attempting to configure promiscuous mode\n",
			vf->vf_id);
		/* Leave v_ret alone, lie to the VF on purpose. */
		goto error_param;
	}

	rm_promisc = !(info->flags & FLAG_VF_UNICAST_PROMISC) &&
		!(info->flags & FLAG_VF_MULTICAST_PROMISC);

	if (vsi->num_vlan || vf->port_vlan_info) {
		struct ice_vsi *pf_vsi = ice_get_main_vsi(pf);
		struct net_device *pf_netdev;

		if (!pf_vsi) {
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}

		pf_netdev = pf_vsi->netdev;

		ret = ice_set_vf_spoofchk(pf_netdev, vf->vf_id, rm_promisc);
		if (ret) {
			dev_err(dev, "Failed to update spoofchk to %s for VF %d VSI %d when setting promiscuous mode\n",
				rm_promisc ? "ON" : "OFF", vf->vf_id,
				vsi->vsi_num);
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		}

		ret = ice_cfg_vlan_pruning(vsi, true, !rm_promisc);
		if (ret) {
			dev_err(dev, "Failed to configure VLAN pruning in promiscuous mode\n");
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}
	}

	if (!test_bit(ICE_FLAG_VF_TRUE_PROMISC_ENA, pf->flags)) {
		bool set_dflt_vsi = !!(info->flags & FLAG_VF_UNICAST_PROMISC);

		if (set_dflt_vsi && !ice_is_dflt_vsi_in_use(pf->first_sw))
			/* only attempt to set the default forwarding VSI if
			 * it's not currently set
			 */
			ret = ice_set_dflt_vsi(pf->first_sw, vsi);
		else if (!set_dflt_vsi &&
			 ice_is_vsi_dflt_vsi(pf->first_sw, vsi))
			/* only attempt to free the default forwarding VSI if we
			 * are the owner
			 */
			ret = ice_clear_dflt_vsi(pf->first_sw);

		if (ret) {
			dev_err(dev, "%sable VF %d as the default VSI failed, error %d\n",
				set_dflt_vsi ? "en" : "dis", vf->vf_id, ret);
			v_ret = VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
			goto error_param;
		}
	} else {
		enum ice_status status;
		u8 promisc_m;

		if (info->flags & FLAG_VF_UNICAST_PROMISC) {
			if (vf->port_vlan_info || vsi->num_vlan)
				promisc_m = ICE_UCAST_VLAN_PROMISC_BITS;
			else
				promisc_m = ICE_UCAST_PROMISC_BITS;
		} else if (info->flags & FLAG_VF_MULTICAST_PROMISC) {
			if (vf->port_vlan_info || vsi->num_vlan)
				promisc_m = ICE_MCAST_VLAN_PROMISC_BITS;
			else
				promisc_m = ICE_MCAST_PROMISC_BITS;
		} else {
			if (vf->port_vlan_info || vsi->num_vlan)
				promisc_m = ICE_UCAST_VLAN_PROMISC_BITS;
			else
				promisc_m = ICE_UCAST_PROMISC_BITS;
		}

		/* Configure multicast/unicast with or without VLAN promiscuous
		 * mode
		 */
		status = ice_vf_set_vsi_promisc(vf, vsi, promisc_m, rm_promisc);
		if (status) {
2422 2423 2424
			dev_err(dev, "%sable Tx/Rx filter promiscuous mode on VF-%d failed, error: %s\n",
				rm_promisc ? "dis" : "en", vf->vf_id,
				ice_stat_str(status));
B
Brett Creeley 已提交
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
			v_ret = ice_err_to_virt_err(status);
			goto error_param;
		} else {
			dev_dbg(dev, "%sable Tx/Rx filter promiscuous mode on VF-%d succeeded\n",
				rm_promisc ? "dis" : "en", vf->vf_id);
		}
	}

	if (info->flags & FLAG_VF_MULTICAST_PROMISC)
		set_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states);
	else
		clear_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states);

	if (info->flags & FLAG_VF_UNICAST_PROMISC)
		set_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states);
	else
		clear_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states);

error_param:
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
				     v_ret, NULL, 0);
}

2448 2449 2450 2451 2452 2453 2454 2455 2456
/**
 * ice_vc_get_stats_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to get VSI stats
 */
static int ice_vc_get_stats_msg(struct ice_vf *vf, u8 *msg)
{
2457
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2458 2459
	struct virtchnl_queue_select *vqs =
		(struct virtchnl_queue_select *)msg;
J
Jesse Brandeburg 已提交
2460
	struct ice_eth_stats stats = { 0 };
2461
	struct ice_pf *pf = vf->pf;
2462 2463 2464
	struct ice_vsi *vsi;

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
2465
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2466 2467 2468 2469
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2470
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2471 2472 2473
		goto error_param;
	}

2474
	vsi = pf->vsi[vf->lan_vsi_idx];
2475
	if (!vsi) {
2476
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2477 2478 2479 2480 2481 2482 2483 2484 2485
		goto error_param;
	}

	ice_update_eth_stats(vsi);

	stats = vsi->eth_stats;

error_param:
	/* send the response to the VF */
2486
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_GET_STATS, v_ret,
2487 2488 2489
				     (u8 *)&stats, sizeof(stats));
}

2490 2491 2492 2493 2494 2495 2496 2497 2498
/**
 * ice_vc_validate_vqs_bitmaps - validate Rx/Tx queue bitmaps from VIRTCHNL
 * @vqs: virtchnl_queue_select structure containing bitmaps to validate
 *
 * Return true on successful validation, else false
 */
static bool ice_vc_validate_vqs_bitmaps(struct virtchnl_queue_select *vqs)
{
	if ((!vqs->rx_queues && !vqs->tx_queues) ||
M
Mitch Williams 已提交
2499 2500
	    vqs->rx_queues >= BIT(ICE_MAX_RSS_QS_PER_VF) ||
	    vqs->tx_queues >= BIT(ICE_MAX_RSS_QS_PER_VF))
2501 2502 2503 2504 2505
		return false;

	return true;
}

2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551
/**
 * ice_vf_ena_txq_interrupt - enable Tx queue interrupt via QINT_TQCTL
 * @vsi: VSI of the VF to configure
 * @q_idx: VF queue index used to determine the queue in the PF's space
 */
static void ice_vf_ena_txq_interrupt(struct ice_vsi *vsi, u32 q_idx)
{
	struct ice_hw *hw = &vsi->back->hw;
	u32 pfq = vsi->txq_map[q_idx];
	u32 reg;

	reg = rd32(hw, QINT_TQCTL(pfq));

	/* MSI-X index 0 in the VF's space is always for the OICR, which means
	 * this is most likely a poll mode VF driver, so don't enable an
	 * interrupt that was never configured via VIRTCHNL_OP_CONFIG_IRQ_MAP
	 */
	if (!(reg & QINT_TQCTL_MSIX_INDX_M))
		return;

	wr32(hw, QINT_TQCTL(pfq), reg | QINT_TQCTL_CAUSE_ENA_M);
}

/**
 * ice_vf_ena_rxq_interrupt - enable Tx queue interrupt via QINT_RQCTL
 * @vsi: VSI of the VF to configure
 * @q_idx: VF queue index used to determine the queue in the PF's space
 */
static void ice_vf_ena_rxq_interrupt(struct ice_vsi *vsi, u32 q_idx)
{
	struct ice_hw *hw = &vsi->back->hw;
	u32 pfq = vsi->rxq_map[q_idx];
	u32 reg;

	reg = rd32(hw, QINT_RQCTL(pfq));

	/* MSI-X index 0 in the VF's space is always for the OICR, which means
	 * this is most likely a poll mode VF driver, so don't enable an
	 * interrupt that was never configured via VIRTCHNL_OP_CONFIG_IRQ_MAP
	 */
	if (!(reg & QINT_RQCTL_MSIX_INDX_M))
		return;

	wr32(hw, QINT_RQCTL(pfq), reg | QINT_RQCTL_CAUSE_ENA_M);
}

2552 2553 2554 2555 2556 2557 2558 2559 2560
/**
 * ice_vc_ena_qs_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to enable all or specific queue(s)
 */
static int ice_vc_ena_qs_msg(struct ice_vf *vf, u8 *msg)
{
2561
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2562 2563
	struct virtchnl_queue_select *vqs =
	    (struct virtchnl_queue_select *)msg;
2564
	struct ice_pf *pf = vf->pf;
2565
	struct ice_vsi *vsi;
2566 2567
	unsigned long q_map;
	u16 vf_q_id;
2568 2569

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
2570
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2571 2572 2573 2574
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2575
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2576 2577 2578
		goto error_param;
	}

2579
	if (!ice_vc_validate_vqs_bitmaps(vqs)) {
2580 2581 2582 2583
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

2584
	vsi = pf->vsi[vf->lan_vsi_idx];
2585
	if (!vsi) {
2586
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2587 2588 2589 2590 2591 2592 2593
		goto error_param;
	}

	/* Enable only Rx rings, Tx rings were enabled by the FW when the
	 * Tx queue group list was configured and the context bits were
	 * programmed using ice_vsi_cfg_txqs
	 */
2594
	q_map = vqs->rx_queues;
M
Mitch Williams 已提交
2595
	for_each_set_bit(vf_q_id, &q_map, ICE_MAX_RSS_QS_PER_VF) {
2596 2597 2598 2599 2600 2601 2602 2603 2604
		if (!ice_vc_isvalid_q_id(vf, vqs->vsi_id, vf_q_id)) {
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}

		/* Skip queue if enabled */
		if (test_bit(vf_q_id, vf->rxq_ena))
			continue;

2605
		if (ice_vsi_ctrl_one_rx_ring(vsi, true, vf_q_id, true)) {
2606
			dev_err(ice_pf_to_dev(vsi->back), "Failed to enable Rx ring %d on VSI %d\n",
2607 2608 2609 2610 2611
				vf_q_id, vsi->vsi_num);
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}

2612
		ice_vf_ena_rxq_interrupt(vsi, vf_q_id);
2613 2614 2615 2616 2617
		set_bit(vf_q_id, vf->rxq_ena);
	}

	vsi = pf->vsi[vf->lan_vsi_idx];
	q_map = vqs->tx_queues;
M
Mitch Williams 已提交
2618
	for_each_set_bit(vf_q_id, &q_map, ICE_MAX_RSS_QS_PER_VF) {
2619 2620 2621 2622 2623 2624 2625 2626 2627
		if (!ice_vc_isvalid_q_id(vf, vqs->vsi_id, vf_q_id)) {
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}

		/* Skip queue if enabled */
		if (test_bit(vf_q_id, vf->txq_ena))
			continue;

2628
		ice_vf_ena_txq_interrupt(vsi, vf_q_id);
2629 2630
		set_bit(vf_q_id, vf->txq_ena);
	}
2631 2632

	/* Set flag to indicate that queues are enabled */
2633
	if (v_ret == VIRTCHNL_STATUS_SUCCESS)
2634
		set_bit(ICE_VF_STATE_QS_ENA, vf->vf_states);
2635 2636 2637

error_param:
	/* send the response to the VF */
2638
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_ENABLE_QUEUES, v_ret,
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
				     NULL, 0);
}

/**
 * ice_vc_dis_qs_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to disable all or specific
 * queue(s)
 */
static int ice_vc_dis_qs_msg(struct ice_vf *vf, u8 *msg)
{
2652
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2653 2654
	struct virtchnl_queue_select *vqs =
	    (struct virtchnl_queue_select *)msg;
2655
	struct ice_pf *pf = vf->pf;
2656
	struct ice_vsi *vsi;
2657 2658
	unsigned long q_map;
	u16 vf_q_id;
2659 2660

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states) &&
2661
	    !test_bit(ICE_VF_STATE_QS_ENA, vf->vf_states)) {
2662
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2663 2664 2665 2666
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2667
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2668 2669 2670
		goto error_param;
	}

2671
	if (!ice_vc_validate_vqs_bitmaps(vqs)) {
2672
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2673 2674 2675
		goto error_param;
	}

2676
	vsi = pf->vsi[vf->lan_vsi_idx];
2677
	if (!vsi) {
2678
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2679 2680 2681
		goto error_param;
	}

2682 2683 2684
	if (vqs->tx_queues) {
		q_map = vqs->tx_queues;

M
Mitch Williams 已提交
2685
		for_each_set_bit(vf_q_id, &q_map, ICE_MAX_RSS_QS_PER_VF) {
2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701
			struct ice_ring *ring = vsi->tx_rings[vf_q_id];
			struct ice_txq_meta txq_meta = { 0 };

			if (!ice_vc_isvalid_q_id(vf, vqs->vsi_id, vf_q_id)) {
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}

			/* Skip queue if not enabled */
			if (!test_bit(vf_q_id, vf->txq_ena))
				continue;

			ice_fill_txq_meta(vsi, ring, &txq_meta);

			if (ice_vsi_stop_tx_ring(vsi, ICE_NO_RESET, vf->vf_id,
						 ring, &txq_meta)) {
2702
				dev_err(ice_pf_to_dev(vsi->back), "Failed to stop Tx ring %d on VSI %d\n",
2703 2704 2705 2706 2707 2708 2709 2710
					vf_q_id, vsi->vsi_num);
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}

			/* Clear enabled queues flag */
			clear_bit(vf_q_id, vf->txq_ena);
		}
2711 2712
	}

2713 2714 2715
	q_map = vqs->rx_queues;
	/* speed up Rx queue disable by batching them if possible */
	if (q_map &&
M
Mitch Williams 已提交
2716
	    bitmap_equal(&q_map, vf->rxq_ena, ICE_MAX_RSS_QS_PER_VF)) {
2717 2718 2719 2720 2721 2722
		if (ice_vsi_stop_all_rx_rings(vsi)) {
			dev_err(ice_pf_to_dev(vsi->back), "Failed to stop all Rx rings on VSI %d\n",
				vsi->vsi_num);
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}
2723

M
Mitch Williams 已提交
2724
		bitmap_zero(vf->rxq_ena, ICE_MAX_RSS_QS_PER_VF);
2725
	} else if (q_map) {
M
Mitch Williams 已提交
2726
		for_each_set_bit(vf_q_id, &q_map, ICE_MAX_RSS_QS_PER_VF) {
2727 2728 2729 2730 2731 2732 2733 2734 2735
			if (!ice_vc_isvalid_q_id(vf, vqs->vsi_id, vf_q_id)) {
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}

			/* Skip queue if not enabled */
			if (!test_bit(vf_q_id, vf->rxq_ena))
				continue;

2736 2737
			if (ice_vsi_ctrl_one_rx_ring(vsi, false, vf_q_id,
						     true)) {
2738
				dev_err(ice_pf_to_dev(vsi->back), "Failed to stop Rx ring %d on VSI %d\n",
2739 2740 2741 2742 2743 2744 2745 2746
					vf_q_id, vsi->vsi_num);
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}

			/* Clear enabled queues flag */
			clear_bit(vf_q_id, vf->rxq_ena);
		}
2747 2748 2749
	}

	/* Clear enabled queues flag */
2750
	if (v_ret == VIRTCHNL_STATUS_SUCCESS && ice_vf_has_no_qs_ena(vf))
2751
		clear_bit(ICE_VF_STATE_QS_ENA, vf->vf_states);
2752 2753 2754

error_param:
	/* send the response to the VF */
2755
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_DISABLE_QUEUES, v_ret,
2756 2757 2758
				     NULL, 0);
}

M
Mitch Williams 已提交
2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809
/**
 * ice_cfg_interrupt
 * @vf: pointer to the VF info
 * @vsi: the VSI being configured
 * @vector_id: vector ID
 * @map: vector map for mapping vectors to queues
 * @q_vector: structure for interrupt vector
 * configure the IRQ to queue map
 */
static int
ice_cfg_interrupt(struct ice_vf *vf, struct ice_vsi *vsi, u16 vector_id,
		  struct virtchnl_vector_map *map,
		  struct ice_q_vector *q_vector)
{
	u16 vsi_q_id, vsi_q_id_idx;
	unsigned long qmap;

	q_vector->num_ring_rx = 0;
	q_vector->num_ring_tx = 0;

	qmap = map->rxq_map;
	for_each_set_bit(vsi_q_id_idx, &qmap, ICE_MAX_RSS_QS_PER_VF) {
		vsi_q_id = vsi_q_id_idx;

		if (!ice_vc_isvalid_q_id(vf, vsi->vsi_num, vsi_q_id))
			return VIRTCHNL_STATUS_ERR_PARAM;

		q_vector->num_ring_rx++;
		q_vector->rx.itr_idx = map->rxitr_idx;
		vsi->rx_rings[vsi_q_id]->q_vector = q_vector;
		ice_cfg_rxq_interrupt(vsi, vsi_q_id, vector_id,
				      q_vector->rx.itr_idx);
	}

	qmap = map->txq_map;
	for_each_set_bit(vsi_q_id_idx, &qmap, ICE_MAX_RSS_QS_PER_VF) {
		vsi_q_id = vsi_q_id_idx;

		if (!ice_vc_isvalid_q_id(vf, vsi->vsi_num, vsi_q_id))
			return VIRTCHNL_STATUS_ERR_PARAM;

		q_vector->num_ring_tx++;
		q_vector->tx.itr_idx = map->txitr_idx;
		vsi->tx_rings[vsi_q_id]->q_vector = q_vector;
		ice_cfg_txq_interrupt(vsi, vsi_q_id, vector_id,
				      q_vector->tx.itr_idx);
	}

	return VIRTCHNL_STATUS_SUCCESS;
}

2810 2811 2812 2813 2814 2815 2816 2817 2818
/**
 * ice_vc_cfg_irq_map_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to configure the IRQ to queue map
 */
static int ice_vc_cfg_irq_map_msg(struct ice_vf *vf, u8 *msg)
{
2819
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
M
Mitch Williams 已提交
2820
	u16 num_q_vectors_mapped, vsi_id, vector_id;
2821
	struct virtchnl_irq_map_info *irqmap_info;
2822 2823
	struct virtchnl_vector_map *map;
	struct ice_pf *pf = vf->pf;
2824
	struct ice_vsi *vsi;
2825 2826
	int i;

2827
	irqmap_info = (struct virtchnl_irq_map_info *)msg;
2828 2829 2830 2831 2832 2833
	num_q_vectors_mapped = irqmap_info->num_vectors;

	/* Check to make sure number of VF vectors mapped is not greater than
	 * number of VF vectors originally allocated, and check that
	 * there is actually at least a single VF queue vector mapped
	 */
2834
	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states) ||
2835
	    pf->num_msix_per_vf < num_q_vectors_mapped ||
M
Mitch Williams 已提交
2836
	    !num_q_vectors_mapped) {
2837
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2838 2839 2840
		goto error_param;
	}

2841 2842 2843 2844 2845 2846
	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

2847 2848
	for (i = 0; i < num_q_vectors_mapped; i++) {
		struct ice_q_vector *q_vector;
2849

2850 2851 2852 2853
		map = &irqmap_info->vecmap[i];

		vector_id = map->vector_id;
		vsi_id = map->vsi_id;
2854 2855 2856
		/* vector_id is always 0-based for each VF, and can never be
		 * larger than or equal to the max allowed interrupts per VF
		 */
2857
		if (!(vector_id < pf->num_msix_per_vf) ||
2858
		    !ice_vc_isvalid_vsi_id(vf, vsi_id) ||
2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872
		    (!vector_id && (map->rxq_map || map->txq_map))) {
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
			goto error_param;
		}

		/* No need to map VF miscellaneous or rogue vector */
		if (!vector_id)
			continue;

		/* Subtract non queue vector from vector_id passed by VF
		 * to get actual number of VSI queue vector array index
		 */
		q_vector = vsi->q_vectors[vector_id - ICE_NONQ_VECS_VF];
		if (!q_vector) {
2873
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2874 2875 2876 2877
			goto error_param;
		}

		/* lookout for the invalid queue index */
M
Mitch Williams 已提交
2878 2879 2880 2881
		v_ret = (enum virtchnl_status_code)
			ice_cfg_interrupt(vf, vsi, vector_id, map, q_vector);
		if (v_ret)
			goto error_param;
2882 2883 2884 2885
	}

error_param:
	/* send the response to the VF */
2886
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_CONFIG_IRQ_MAP, v_ret,
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898
				     NULL, 0);
}

/**
 * ice_vc_cfg_qs_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * called from the VF to configure the Rx/Tx queues
 */
static int ice_vc_cfg_qs_msg(struct ice_vf *vf, u8 *msg)
{
2899
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
2900 2901 2902
	struct virtchnl_vsi_queue_config_info *qci =
	    (struct virtchnl_vsi_queue_config_info *)msg;
	struct virtchnl_queue_pair_info *qpi;
2903
	u16 num_rxq = 0, num_txq = 0;
2904
	struct ice_pf *pf = vf->pf;
2905 2906 2907 2908
	struct ice_vsi *vsi;
	int i;

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
2909
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2910 2911 2912 2913
		goto error_param;
	}

	if (!ice_vc_isvalid_vsi_id(vf, qci->vsi_id)) {
2914
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2915 2916 2917
		goto error_param;
	}

2918 2919
	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi) {
2920
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2921 2922 2923
		goto error_param;
	}

M
Mitch Williams 已提交
2924
	if (qci->num_queue_pairs > ICE_MAX_RSS_QS_PER_VF ||
2925
	    qci->num_queue_pairs > min_t(u16, vsi->alloc_txq, vsi->alloc_rxq)) {
2926
		dev_err(ice_pf_to_dev(pf), "VF-%d requesting more than supported number of queues: %d\n",
2927
			vf->vf_id, min_t(u16, vsi->alloc_txq, vsi->alloc_rxq));
2928 2929 2930 2931
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

2932 2933 2934 2935 2936
	for (i = 0; i < qci->num_queue_pairs; i++) {
		qpi = &qci->qpair[i];
		if (qpi->txq.vsi_id != qci->vsi_id ||
		    qpi->rxq.vsi_id != qci->vsi_id ||
		    qpi->rxq.queue_id != qpi->txq.queue_id ||
2937
		    qpi->txq.headwb_enabled ||
2938 2939
		    !ice_vc_isvalid_ring_len(qpi->txq.ring_len) ||
		    !ice_vc_isvalid_ring_len(qpi->rxq.ring_len) ||
2940
		    !ice_vc_isvalid_q_id(vf, qci->vsi_id, qpi->txq.queue_id)) {
2941
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
2942 2943 2944
			goto error_param;
		}
		/* copy Tx queue info from VF into VSI */
2945 2946 2947 2948
		if (qpi->txq.ring_len > 0) {
			num_txq++;
			vsi->tx_rings[i]->dma = qpi->txq.dma_ring_addr;
			vsi->tx_rings[i]->count = qpi->txq.ring_len;
2949
		}
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969

		/* copy Rx queue info from VF into VSI */
		if (qpi->rxq.ring_len > 0) {
			num_rxq++;
			vsi->rx_rings[i]->dma = qpi->rxq.dma_ring_addr;
			vsi->rx_rings[i]->count = qpi->rxq.ring_len;

			if (qpi->rxq.databuffer_size != 0 &&
			    (qpi->rxq.databuffer_size > ((16 * 1024) - 128) ||
			     qpi->rxq.databuffer_size < 1024)) {
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}
			vsi->rx_buf_len = qpi->rxq.databuffer_size;
			vsi->rx_rings[i]->rx_buf_len = vsi->rx_buf_len;
			if (qpi->rxq.max_pkt_size >= (16 * 1024) ||
			    qpi->rxq.max_pkt_size < 64) {
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
				goto error_param;
			}
2970
		}
2971

2972 2973 2974 2975 2976 2977
		vsi->max_frame = qpi->rxq.max_pkt_size;
	}

	/* VF can request to configure less than allocated queues
	 * or default allocated queues. So update the VSI with new number
	 */
2978 2979
	vsi->num_txq = num_txq;
	vsi->num_rxq = num_rxq;
2980
	/* All queues of VF VSI are in TC 0 */
2981 2982
	vsi->tc_cfg.tc_info[0].qcount_tx = num_txq;
	vsi->tc_cfg.tc_info[0].qcount_rx = num_rxq;
2983

2984 2985
	if (ice_vsi_cfg_lan_txqs(vsi) || ice_vsi_cfg_rxqs(vsi))
		v_ret = VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
2986 2987 2988

error_param:
	/* send the response to the VF */
2989
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_CONFIG_VSI_QUEUES, v_ret,
2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
				     NULL, 0);
}

/**
 * ice_is_vf_trusted
 * @vf: pointer to the VF info
 */
static bool ice_is_vf_trusted(struct ice_vf *vf)
{
	return test_bit(ICE_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
}

/**
 * ice_can_vf_change_mac
 * @vf: pointer to the VF info
 *
 * Return true if the VF is allowed to change its MAC filters, false otherwise
 */
static bool ice_can_vf_change_mac(struct ice_vf *vf)
{
	/* If the VF MAC address has been set administratively (via the
	 * ndo_set_vf_mac command), then deny permission to the VF to
	 * add/delete unicast MAC addresses, unless the VF is trusted
	 */
	if (vf->pf_set_mac && !ice_is_vf_trusted(vf))
		return false;

	return true;
}

3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040
/**
 * ice_vc_add_mac_addr - attempt to add the MAC address passed in
 * @vf: pointer to the VF info
 * @vsi: pointer to the VF's VSI
 * @mac_addr: MAC address to add
 */
static int
ice_vc_add_mac_addr(struct ice_vf *vf, struct ice_vsi *vsi, u8 *mac_addr)
{
	struct device *dev = ice_pf_to_dev(vf->pf);
	enum ice_status status;

	/* default unicast MAC already added */
	if (ether_addr_equal(mac_addr, vf->dflt_lan_addr.addr))
		return 0;

	if (is_unicast_ether_addr(mac_addr) && !ice_can_vf_change_mac(vf)) {
		dev_err(dev, "VF attempting to override administratively set MAC address, bring down and up the VF interface to resume normal operation\n");
		return -EPERM;
	}

3041
	status = ice_fltr_add_mac(vsi, mac_addr, ICE_FWD_TO_VSI);
3042 3043 3044 3045 3046
	if (status == ICE_ERR_ALREADY_EXISTS) {
		dev_err(dev, "MAC %pM already exists for VF %d\n", mac_addr,
			vf->vf_id);
		return -EEXIST;
	} else if (status) {
3047 3048
		dev_err(dev, "Failed to add MAC %pM for VF %d\n, error %s\n",
			mac_addr, vf->vf_id, ice_stat_str(status));
3049 3050 3051
		return -EIO;
	}

P
Paul Greenwalt 已提交
3052 3053 3054 3055 3056
	/* Set the default LAN address to the latest unicast MAC address added
	 * by the VF. The default LAN address is reported by the PF via
	 * ndo_get_vf_config.
	 */
	if (is_unicast_ether_addr(mac_addr))
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079
		ether_addr_copy(vf->dflt_lan_addr.addr, mac_addr);

	vf->num_mac++;

	return 0;
}

/**
 * ice_vc_del_mac_addr - attempt to delete the MAC address passed in
 * @vf: pointer to the VF info
 * @vsi: pointer to the VF's VSI
 * @mac_addr: MAC address to delete
 */
static int
ice_vc_del_mac_addr(struct ice_vf *vf, struct ice_vsi *vsi, u8 *mac_addr)
{
	struct device *dev = ice_pf_to_dev(vf->pf);
	enum ice_status status;

	if (!ice_can_vf_change_mac(vf) &&
	    ether_addr_equal(mac_addr, vf->dflt_lan_addr.addr))
		return 0;

3080
	status = ice_fltr_remove_mac(vsi, mac_addr, ICE_FWD_TO_VSI);
3081 3082 3083 3084 3085
	if (status == ICE_ERR_DOES_NOT_EXIST) {
		dev_err(dev, "MAC %pM does not exist for VF %d\n", mac_addr,
			vf->vf_id);
		return -ENOENT;
	} else if (status) {
3086 3087
		dev_err(dev, "Failed to delete MAC %pM for VF %d, error %s\n",
			mac_addr, vf->vf_id, ice_stat_str(status));
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098
		return -EIO;
	}

	if (ether_addr_equal(mac_addr, vf->dflt_lan_addr.addr))
		eth_zero_addr(vf->dflt_lan_addr.addr);

	vf->num_mac--;

	return 0;
}

3099 3100 3101 3102
/**
 * ice_vc_handle_mac_addr_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
3103
 * @set: true if MAC filters are being set, false otherwise
3104
 *
3105
 * add guest MAC address filter
3106 3107 3108 3109
 */
static int
ice_vc_handle_mac_addr_msg(struct ice_vf *vf, u8 *msg, bool set)
{
3110 3111
	int (*ice_vc_cfg_mac)
		(struct ice_vf *vf, struct ice_vsi *vsi, u8 *mac_addr);
3112
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
3113 3114 3115 3116 3117 3118 3119
	struct virtchnl_ether_addr_list *al =
	    (struct virtchnl_ether_addr_list *)msg;
	struct ice_pf *pf = vf->pf;
	enum virtchnl_ops vc_op;
	struct ice_vsi *vsi;
	int i;

3120
	if (set) {
3121
		vc_op = VIRTCHNL_OP_ADD_ETH_ADDR;
3122 3123
		ice_vc_cfg_mac = ice_vc_add_mac_addr;
	} else {
3124
		vc_op = VIRTCHNL_OP_DEL_ETH_ADDR;
3125 3126
		ice_vc_cfg_mac = ice_vc_del_mac_addr;
	}
3127 3128 3129

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states) ||
	    !ice_vc_isvalid_vsi_id(vf, al->vsi_id)) {
3130
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3131 3132 3133
		goto handle_mac_exit;
	}

3134 3135 3136 3137
	/* If this VF is not privileged, then we can't add more than a
	 * limited number of addresses. Check to make sure that the
	 * additions do not push us over the limit.
	 */
3138 3139
	if (set && !ice_is_vf_trusted(vf) &&
	    (vf->num_mac + al->num_elements) > ICE_MAX_MACADDR_PER_VF) {
3140
		dev_err(ice_pf_to_dev(pf), "Can't add more MAC addresses, because VF-%d is not trusted, switch the VF to trusted mode in order to add more functionalities\n",
3141
			vf->vf_id);
3142
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3143 3144 3145 3146
		goto handle_mac_exit;
	}

	vsi = pf->vsi[vf->lan_vsi_idx];
3147
	if (!vsi) {
3148
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3149 3150
		goto handle_mac_exit;
	}
3151 3152

	for (i = 0; i < al->num_elements; i++) {
3153 3154
		u8 *mac_addr = al->list[i].addr;
		int result;
3155

3156 3157 3158
		if (is_broadcast_ether_addr(mac_addr) ||
		    is_zero_ether_addr(mac_addr))
			continue;
3159

3160 3161 3162 3163 3164
		result = ice_vc_cfg_mac(vf, vsi, mac_addr);
		if (result == -EEXIST || result == -ENOENT) {
			continue;
		} else if (result) {
			v_ret = VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR;
3165 3166 3167 3168 3169 3170
			goto handle_mac_exit;
		}
	}

handle_mac_exit:
	/* send the response to the VF */
3171
	return ice_vc_send_msg_to_vf(vf, vc_op, v_ret, NULL, 0);
3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
}

/**
 * ice_vc_add_mac_addr_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * add guest MAC address filter
 */
static int ice_vc_add_mac_addr_msg(struct ice_vf *vf, u8 *msg)
{
	return ice_vc_handle_mac_addr_msg(vf, msg, true);
}

/**
 * ice_vc_del_mac_addr_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * remove guest MAC address filter
 */
static int ice_vc_del_mac_addr_msg(struct ice_vf *vf, u8 *msg)
{
	return ice_vc_handle_mac_addr_msg(vf, msg, false);
}

/**
 * ice_vc_request_qs_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
 * VFs get a default number of queues but can use this message to request a
3204
 * different number. If the request is successful, PF will reset the VF and
3205
 * return 0. If unsuccessful, PF will send message informing VF of number of
3206
 * available queue pairs via virtchnl message response to VF.
3207 3208 3209
 */
static int ice_vc_request_qs_msg(struct ice_vf *vf, u8 *msg)
{
3210
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
3211 3212
	struct virtchnl_vf_res_request *vfres =
		(struct virtchnl_vf_res_request *)msg;
3213
	u16 req_queues = vfres->num_queue_pairs;
3214
	struct ice_pf *pf = vf->pf;
3215 3216
	u16 max_allowed_vf_queues;
	u16 tx_rx_queue_left;
B
Brett Creeley 已提交
3217
	struct device *dev;
T
Tony Nguyen 已提交
3218
	u16 cur_queues;
3219

B
Brett Creeley 已提交
3220
	dev = ice_pf_to_dev(pf);
3221
	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
3222
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3223 3224 3225
		goto error_param;
	}

3226
	cur_queues = vf->num_vf_qs;
3227 3228
	tx_rx_queue_left = min_t(u16, ice_get_avail_txq_count(pf),
				 ice_get_avail_rxq_count(pf));
3229
	max_allowed_vf_queues = tx_rx_queue_left + cur_queues;
3230
	if (!req_queues) {
B
Brett Creeley 已提交
3231
		dev_err(dev, "VF %d tried to request 0 queues. Ignoring.\n",
3232
			vf->vf_id);
M
Mitch Williams 已提交
3233
	} else if (req_queues > ICE_MAX_RSS_QS_PER_VF) {
B
Brett Creeley 已提交
3234
		dev_err(dev, "VF %d tried to request more than %d queues.\n",
M
Mitch Williams 已提交
3235 3236
			vf->vf_id, ICE_MAX_RSS_QS_PER_VF);
		vfres->num_queue_pairs = ICE_MAX_RSS_QS_PER_VF;
3237 3238
	} else if (req_queues > cur_queues &&
		   req_queues - cur_queues > tx_rx_queue_left) {
3239
		dev_warn(dev, "VF %d requested %u more queues, but only %u left.\n",
3240
			 vf->vf_id, req_queues - cur_queues, tx_rx_queue_left);
3241
		vfres->num_queue_pairs = min_t(u16, max_allowed_vf_queues,
M
Mitch Williams 已提交
3242
					       ICE_MAX_RSS_QS_PER_VF);
3243 3244 3245
	} else {
		/* request is successful, then reset VF */
		vf->num_req_qs = req_queues;
3246
		ice_vc_reset_vf(vf);
B
Brett Creeley 已提交
3247
		dev_info(dev, "VF %d granted request of %u queues.\n",
3248 3249 3250 3251 3252 3253 3254
			 vf->vf_id, req_queues);
		return 0;
	}

error_param:
	/* send the response to the VF */
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_REQUEST_QUEUES,
3255
				     v_ret, (u8 *)vfres, sizeof(*vfres));
3256 3257
}

3258 3259 3260 3261
/**
 * ice_set_vf_port_vlan
 * @netdev: network interface device structure
 * @vf_id: VF identifier
3262
 * @vlan_id: VLAN ID being set
3263 3264 3265
 * @qos: priority setting
 * @vlan_proto: VLAN protocol
 *
3266
 * program VF Port VLAN ID and/or QoS
3267 3268 3269 3270 3271
 */
int
ice_set_vf_port_vlan(struct net_device *netdev, int vf_id, u16 vlan_id, u8 qos,
		     __be16 vlan_proto)
{
J
Jesse Brandeburg 已提交
3272
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
B
Brett Creeley 已提交
3273
	struct device *dev;
3274
	struct ice_vf *vf;
B
Brett Creeley 已提交
3275
	u16 vlanprio;
3276
	int ret;
3277

B
Brett Creeley 已提交
3278
	dev = ice_pf_to_dev(pf);
J
Jesse Brandeburg 已提交
3279
	if (ice_validate_vf_id(pf, vf_id))
3280 3281
		return -EINVAL;

B
Brett Creeley 已提交
3282 3283 3284
	if (vlan_id >= VLAN_N_VID || qos > 7) {
		dev_err(dev, "Invalid Port VLAN parameters for VF %d, ID %d, QoS %d\n",
			vf_id, vlan_id, qos);
3285 3286 3287 3288
		return -EINVAL;
	}

	if (vlan_proto != htons(ETH_P_8021Q)) {
B
Brett Creeley 已提交
3289
		dev_err(dev, "VF VLAN protocol is not supported\n");
3290 3291 3292 3293
		return -EPROTONOSUPPORT;
	}

	vf = &pf->vf[vf_id];
3294 3295 3296
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;
3297

B
Brett Creeley 已提交
3298 3299 3300
	vlanprio = vlan_id | (qos << VLAN_PRIO_SHIFT);

	if (vf->port_vlan_info == vlanprio) {
3301
		/* duplicate request, so just return success */
B
Brett Creeley 已提交
3302
		dev_dbg(dev, "Duplicate pvid %d request\n", vlanprio);
3303
		return 0;
3304 3305
	}

3306
	vf->port_vlan_info = vlanprio;
3307

3308
	if (vf->port_vlan_info)
B
Brett Creeley 已提交
3309
		dev_info(dev, "Setting VLAN %d, QoS 0x%x on VF %d\n",
3310
			 vlan_id, qos, vf_id);
3311 3312
	else
		dev_info(dev, "Clearing port VLAN on VF %d\n", vf_id);
3313

3314
	ice_vc_reset_vf(vf);
3315

3316
	return 0;
3317 3318
}

3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329
/**
 * ice_vf_vlan_offload_ena - determine if capabilities support VLAN offloads
 * @caps: VF driver negotiated capabilities
 *
 * Return true if VIRTCHNL_VF_OFFLOAD_VLAN capability is set, else return false
 */
static bool ice_vf_vlan_offload_ena(u32 caps)
{
	return !!(caps & VIRTCHNL_VF_OFFLOAD_VLAN);
}

3330 3331 3332 3333 3334 3335
/**
 * ice_vc_process_vlan_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 * @add_v: Add VLAN if true, otherwise delete VLAN
 *
3336
 * Process virtchnl op to add or remove programmed guest VLAN ID
3337 3338 3339
 */
static int ice_vc_process_vlan_msg(struct ice_vf *vf, u8 *msg, bool add_v)
{
3340
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
3341 3342 3343
	struct virtchnl_vlan_filter_list *vfl =
	    (struct virtchnl_vlan_filter_list *)msg;
	struct ice_pf *pf = vf->pf;
3344
	bool vlan_promisc = false;
3345
	struct ice_vsi *vsi;
B
Brett Creeley 已提交
3346
	struct device *dev;
3347 3348 3349
	struct ice_hw *hw;
	int status = 0;
	u8 promisc_m;
3350 3351
	int i;

B
Brett Creeley 已提交
3352
	dev = ice_pf_to_dev(pf);
3353
	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
3354
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3355 3356 3357
		goto error_param;
	}

3358 3359 3360 3361 3362
	if (!ice_vf_vlan_offload_ena(vf->driver_caps)) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

3363
	if (!ice_vc_isvalid_vsi_id(vf, vfl->vsi_id)) {
3364
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3365 3366 3367 3368
		goto error_param;
	}

	for (i = 0; i < vfl->num_elements; i++) {
B
Brett Creeley 已提交
3369
		if (vfl->vlan_id[i] >= VLAN_N_VID) {
3370
			v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3371 3372
			dev_err(dev, "invalid VF VLAN id %d\n",
				vfl->vlan_id[i]);
3373 3374 3375 3376
			goto error_param;
		}
	}

3377
	hw = &pf->hw;
3378
	vsi = pf->vsi[vf->lan_vsi_idx];
3379
	if (!vsi) {
3380
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3381 3382 3383
		goto error_param;
	}

B
Brett Creeley 已提交
3384 3385
	if (add_v && !ice_is_vf_trusted(vf) &&
	    vsi->num_vlan >= ICE_MAX_VLAN_PER_VF) {
3386
		dev_info(dev, "VF-%d is not trusted, switch the VF to trusted mode, in order to add more VLAN addresses\n",
B
Brett Creeley 已提交
3387 3388 3389 3390 3391 3392 3393
			 vf->vf_id);
		/* There is no need to let VF know about being not trusted,
		 * so we can just return success message here
		 */
		goto error_param;
	}

3394
	if (vsi->info.pvid) {
3395
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3396 3397 3398
		goto error_param;
	}

B
Brett Creeley 已提交
3399 3400 3401
	if ((test_bit(ICE_VF_STATE_UC_PROMISC, vf->vf_states) ||
	     test_bit(ICE_VF_STATE_MC_PROMISC, vf->vf_states)) &&
	    test_bit(ICE_FLAG_VF_TRUE_PROMISC_ENA, pf->flags))
3402 3403
		vlan_promisc = true;

3404 3405 3406 3407
	if (add_v) {
		for (i = 0; i < vfl->num_elements; i++) {
			u16 vid = vfl->vlan_id[i];

3408
			if (!ice_is_vf_trusted(vf) &&
B
Brett Creeley 已提交
3409
			    vsi->num_vlan >= ICE_MAX_VLAN_PER_VF) {
3410
				dev_info(dev, "VF-%d is not trusted, switch the VF to trusted mode, in order to add more VLAN addresses\n",
3411 3412 3413 3414 3415 3416 3417 3418
					 vf->vf_id);
				/* There is no need to let VF know about being
				 * not trusted, so we can just return success
				 * message here as well.
				 */
				goto error_param;
			}

B
Brett Creeley 已提交
3419 3420 3421 3422 3423 3424 3425
			/* we add VLAN 0 by default for each VF so we can enable
			 * Tx VLAN anti-spoof without triggering MDD events so
			 * we don't need to add it again here
			 */
			if (!vid)
				continue;

3426
			status = ice_vsi_add_vlan(vsi, vid, ICE_FWD_TO_VSI);
B
Brett Creeley 已提交
3427
			if (status) {
3428
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3429 3430
				goto error_param;
			}
3431

3432 3433 3434
			/* Enable VLAN pruning when non-zero VLAN is added */
			if (!vlan_promisc && vid &&
			    !ice_vsi_is_vlan_pruning_ena(vsi)) {
3435 3436
				status = ice_cfg_vlan_pruning(vsi, true, false);
				if (status) {
3437
					v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3438
					dev_err(dev, "Enable VLAN pruning on VLAN ID: %d failed error-%d\n",
3439 3440 3441
						vid, status);
					goto error_param;
				}
3442
			} else if (vlan_promisc) {
3443 3444 3445 3446 3447 3448
				/* Enable Ucast/Mcast VLAN promiscuous mode */
				promisc_m = ICE_PROMISC_VLAN_TX |
					    ICE_PROMISC_VLAN_RX;

				status = ice_set_vsi_promisc(hw, vsi->idx,
							     promisc_m, vid);
3449 3450
				if (status) {
					v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3451
					dev_err(dev, "Enable Unicast/multicast promiscuous mode on VLAN ID:%d failed error-%d\n",
3452
						vid, status);
3453
				}
3454 3455 3456
			}
		}
	} else {
3457 3458 3459 3460 3461 3462 3463 3464 3465
		/* In case of non_trusted VF, number of VLAN elements passed
		 * to PF for removal might be greater than number of VLANs
		 * filter programmed for that VF - So, use actual number of
		 * VLANS added earlier with add VLAN opcode. In order to avoid
		 * removing VLAN that doesn't exist, which result to sending
		 * erroneous failed message back to the VF
		 */
		int num_vf_vlan;

B
Brett Creeley 已提交
3466
		num_vf_vlan = vsi->num_vlan;
3467
		for (i = 0; i < vfl->num_elements && i < num_vf_vlan; i++) {
3468 3469
			u16 vid = vfl->vlan_id[i];

B
Brett Creeley 已提交
3470 3471 3472 3473 3474 3475 3476
			/* we add VLAN 0 by default for each VF so we can enable
			 * Tx VLAN anti-spoof without triggering MDD events so
			 * we don't want a VIRTCHNL request to remove it
			 */
			if (!vid)
				continue;

3477 3478 3479
			/* Make sure ice_vsi_kill_vlan is successful before
			 * updating VLAN information
			 */
B
Brett Creeley 已提交
3480 3481
			status = ice_vsi_kill_vlan(vsi, vid);
			if (status) {
3482
				v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3483 3484 3485
				goto error_param;
			}

3486 3487 3488
			/* Disable VLAN pruning when only VLAN 0 is left */
			if (vsi->num_vlan == 1 &&
			    ice_vsi_is_vlan_pruning_ena(vsi))
3489
				ice_cfg_vlan_pruning(vsi, false, false);
3490 3491 3492 3493 3494

			/* Disable Unicast/Multicast VLAN promiscuous mode */
			if (vlan_promisc) {
				promisc_m = ICE_PROMISC_VLAN_TX |
					    ICE_PROMISC_VLAN_RX;
3495

3496 3497
				ice_clear_vsi_promisc(hw, vsi->idx,
						      promisc_m, vid);
3498 3499 3500 3501 3502 3503 3504
			}
		}
	}

error_param:
	/* send the response to the VF */
	if (add_v)
3505
		return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_ADD_VLAN, v_ret,
3506 3507
					     NULL, 0);
	else
3508
		return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_DEL_VLAN, v_ret,
3509 3510 3511 3512 3513 3514 3515 3516
					     NULL, 0);
}

/**
 * ice_vc_add_vlan_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
3517
 * Add and program guest VLAN ID
3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528
 */
static int ice_vc_add_vlan_msg(struct ice_vf *vf, u8 *msg)
{
	return ice_vc_process_vlan_msg(vf, msg, true);
}

/**
 * ice_vc_remove_vlan_msg
 * @vf: pointer to the VF info
 * @msg: pointer to the msg buffer
 *
3529
 * remove programmed guest VLAN ID
3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543
 */
static int ice_vc_remove_vlan_msg(struct ice_vf *vf, u8 *msg)
{
	return ice_vc_process_vlan_msg(vf, msg, false);
}

/**
 * ice_vc_ena_vlan_stripping
 * @vf: pointer to the VF info
 *
 * Enable VLAN header stripping for a given VF
 */
static int ice_vc_ena_vlan_stripping(struct ice_vf *vf)
{
3544
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
3545 3546 3547 3548
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
3549
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3550 3551 3552
		goto error_param;
	}

3553 3554 3555 3556 3557
	if (!ice_vf_vlan_offload_ena(vf->driver_caps)) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

3558 3559
	vsi = pf->vsi[vf->lan_vsi_idx];
	if (ice_vsi_manage_vlan_stripping(vsi, true))
3560
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3561 3562 3563

error_param:
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_ENABLE_VLAN_STRIPPING,
3564
				     v_ret, NULL, 0);
3565 3566 3567 3568 3569 3570 3571 3572 3573 3574
}

/**
 * ice_vc_dis_vlan_stripping
 * @vf: pointer to the VF info
 *
 * Disable VLAN header stripping for a given VF
 */
static int ice_vc_dis_vlan_stripping(struct ice_vf *vf)
{
3575
	enum virtchnl_status_code v_ret = VIRTCHNL_STATUS_SUCCESS;
3576 3577 3578 3579
	struct ice_pf *pf = vf->pf;
	struct ice_vsi *vsi;

	if (!test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) {
3580
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3581 3582 3583
		goto error_param;
	}

3584 3585 3586 3587 3588
	if (!ice_vf_vlan_offload_ena(vf->driver_caps)) {
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
		goto error_param;
	}

3589
	vsi = pf->vsi[vf->lan_vsi_idx];
3590
	if (!vsi) {
3591
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3592 3593 3594
		goto error_param;
	}

3595
	if (ice_vsi_manage_vlan_stripping(vsi, false))
3596
		v_ret = VIRTCHNL_STATUS_ERR_PARAM;
3597 3598 3599

error_param:
	return ice_vc_send_msg_to_vf(vf, VIRTCHNL_OP_DISABLE_VLAN_STRIPPING,
3600
				     v_ret, NULL, 0);
3601 3602
}

3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629
/**
 * ice_vf_init_vlan_stripping - enable/disable VLAN stripping on initialization
 * @vf: VF to enable/disable VLAN stripping for on initialization
 *
 * If the VIRTCHNL_VF_OFFLOAD_VLAN flag is set enable VLAN stripping, else if
 * the flag is cleared then we want to disable stripping. For example, the flag
 * will be cleared when port VLANs are configured by the administrator before
 * passing the VF to the guest or if the AVF driver doesn't support VLAN
 * offloads.
 */
static int ice_vf_init_vlan_stripping(struct ice_vf *vf)
{
	struct ice_vsi *vsi = vf->pf->vsi[vf->lan_vsi_idx];

	if (!vsi)
		return -EINVAL;

	/* don't modify stripping if port VLAN is configured */
	if (vsi->info.pvid)
		return 0;

	if (ice_vf_vlan_offload_ena(vf->driver_caps))
		return ice_vsi_manage_vlan_stripping(vsi, true);
	else
		return ice_vsi_manage_vlan_stripping(vsi, false);
}

3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644
/**
 * ice_vc_process_vf_msg - Process request from VF
 * @pf: pointer to the PF structure
 * @event: pointer to the AQ event
 *
 * called from the common asq/arq handler to
 * process request from VF
 */
void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event)
{
	u32 v_opcode = le32_to_cpu(event->desc.cookie_high);
	s16 vf_id = le16_to_cpu(event->desc.retval);
	u16 msglen = event->msg_len;
	u8 *msg = event->msg_buf;
	struct ice_vf *vf = NULL;
B
Brett Creeley 已提交
3645
	struct device *dev;
3646 3647
	int err = 0;

B
Brett Creeley 已提交
3648
	dev = ice_pf_to_dev(pf);
J
Jesse Brandeburg 已提交
3649
	if (ice_validate_vf_id(pf, vf_id)) {
3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664
		err = -EINVAL;
		goto error_handler;
	}

	vf = &pf->vf[vf_id];

	/* Check if VF is disabled. */
	if (test_bit(ICE_VF_STATE_DIS, vf->vf_states)) {
		err = -EPERM;
		goto error_handler;
	}

	/* Perform basic checks on the msg */
	err = virtchnl_vc_validate_vf_msg(&vf->vf_ver, v_opcode, msg, msglen);
	if (err) {
3665
		if (err == VIRTCHNL_STATUS_ERR_PARAM)
3666 3667 3668 3669 3670 3671 3672
			err = -EPERM;
		else
			err = -EINVAL;
	}

error_handler:
	if (err) {
3673 3674
		ice_vc_send_msg_to_vf(vf, v_opcode, VIRTCHNL_STATUS_ERR_PARAM,
				      NULL, 0);
B
Brett Creeley 已提交
3675
		dev_err(dev, "Invalid message from VF %d, opcode %d, len %d, error %d\n",
3676 3677 3678 3679 3680 3681 3682 3683 3684 3685
			vf_id, v_opcode, msglen, err);
		return;
	}

	switch (v_opcode) {
	case VIRTCHNL_OP_VERSION:
		err = ice_vc_get_ver_msg(vf, msg);
		break;
	case VIRTCHNL_OP_GET_VF_RESOURCES:
		err = ice_vc_get_vf_res_msg(vf, msg);
3686
		if (ice_vf_init_vlan_stripping(vf))
3687
			dev_err(dev, "Failed to initialize VLAN stripping for VF %d\n",
3688
				vf->vf_id);
3689
		ice_vc_notify_vf_link_state(vf);
3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724
		break;
	case VIRTCHNL_OP_RESET_VF:
		ice_vc_reset_vf_msg(vf);
		break;
	case VIRTCHNL_OP_ADD_ETH_ADDR:
		err = ice_vc_add_mac_addr_msg(vf, msg);
		break;
	case VIRTCHNL_OP_DEL_ETH_ADDR:
		err = ice_vc_del_mac_addr_msg(vf, msg);
		break;
	case VIRTCHNL_OP_CONFIG_VSI_QUEUES:
		err = ice_vc_cfg_qs_msg(vf, msg);
		break;
	case VIRTCHNL_OP_ENABLE_QUEUES:
		err = ice_vc_ena_qs_msg(vf, msg);
		ice_vc_notify_vf_link_state(vf);
		break;
	case VIRTCHNL_OP_DISABLE_QUEUES:
		err = ice_vc_dis_qs_msg(vf, msg);
		break;
	case VIRTCHNL_OP_REQUEST_QUEUES:
		err = ice_vc_request_qs_msg(vf, msg);
		break;
	case VIRTCHNL_OP_CONFIG_IRQ_MAP:
		err = ice_vc_cfg_irq_map_msg(vf, msg);
		break;
	case VIRTCHNL_OP_CONFIG_RSS_KEY:
		err = ice_vc_config_rss_key(vf, msg);
		break;
	case VIRTCHNL_OP_CONFIG_RSS_LUT:
		err = ice_vc_config_rss_lut(vf, msg);
		break;
	case VIRTCHNL_OP_GET_STATS:
		err = ice_vc_get_stats_msg(vf, msg);
		break;
B
Brett Creeley 已提交
3725 3726 3727
	case VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
		err = ice_vc_cfg_promiscuous_mode_msg(vf, msg);
		break;
3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741
	case VIRTCHNL_OP_ADD_VLAN:
		err = ice_vc_add_vlan_msg(vf, msg);
		break;
	case VIRTCHNL_OP_DEL_VLAN:
		err = ice_vc_remove_vlan_msg(vf, msg);
		break;
	case VIRTCHNL_OP_ENABLE_VLAN_STRIPPING:
		err = ice_vc_ena_vlan_stripping(vf);
		break;
	case VIRTCHNL_OP_DISABLE_VLAN_STRIPPING:
		err = ice_vc_dis_vlan_stripping(vf);
		break;
	case VIRTCHNL_OP_UNKNOWN:
	default:
B
Brett Creeley 已提交
3742 3743
		dev_err(dev, "Unsupported opcode %d from VF %d\n", v_opcode,
			vf_id);
3744 3745
		err = ice_vc_send_msg_to_vf(vf, v_opcode,
					    VIRTCHNL_STATUS_ERR_NOT_SUPPORTED,
3746 3747 3748 3749 3750 3751 3752
					    NULL, 0);
		break;
	}
	if (err) {
		/* Helper function cares less about error return values here
		 * as it is busy with pending work.
		 */
B
Brett Creeley 已提交
3753
		dev_info(dev, "PF failed to honor VF %d, opcode %d, error %d\n",
3754 3755 3756 3757
			 vf_id, v_opcode, err);
	}
}

3758 3759 3760 3761 3762 3763 3764 3765
/**
 * ice_get_vf_cfg
 * @netdev: network interface device structure
 * @vf_id: VF identifier
 * @ivi: VF configuration structure
 *
 * return VF configuration
 */
3766 3767
int
ice_get_vf_cfg(struct net_device *netdev, int vf_id, struct ifla_vf_info *ivi)
3768
{
J
Jesse Brandeburg 已提交
3769
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3770 3771
	struct ice_vf *vf;

J
Jesse Brandeburg 已提交
3772
	if (ice_validate_vf_id(pf, vf_id))
3773 3774 3775 3776
		return -EINVAL;

	vf = &pf->vf[vf_id];

J
Jesse Brandeburg 已提交
3777
	if (ice_check_vf_init(pf, vf))
3778 3779 3780 3781 3782 3783
		return -EBUSY;

	ivi->vf = vf_id;
	ether_addr_copy(ivi->mac, vf->dflt_lan_addr.addr);

	/* VF configuration for VLAN and applicable QoS */
B
Brett Creeley 已提交
3784 3785
	ivi->vlan = vf->port_vlan_info & VLAN_VID_MASK;
	ivi->qos = (vf->port_vlan_info & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799

	ivi->trusted = vf->trusted;
	ivi->spoofchk = vf->spoofchk;
	if (!vf->link_forced)
		ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
	else if (vf->link_up)
		ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
	else
		ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
	ivi->max_tx_rate = vf->tx_rate;
	ivi->min_tx_rate = 0;
	return 0;
}

3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832
/**
 * ice_unicast_mac_exists - check if the unicast MAC exists on the PF's switch
 * @pf: PF used to reference the switch's rules
 * @umac: unicast MAC to compare against existing switch rules
 *
 * Return true on the first/any match, else return false
 */
static bool ice_unicast_mac_exists(struct ice_pf *pf, u8 *umac)
{
	struct ice_sw_recipe *mac_recipe_list =
		&pf->hw.switch_info->recp_list[ICE_SW_LKUP_MAC];
	struct ice_fltr_mgmt_list_entry *list_itr;
	struct list_head *rule_head;
	struct mutex *rule_lock; /* protect MAC filter list access */

	rule_head = &mac_recipe_list->filt_rules;
	rule_lock = &mac_recipe_list->filt_rule_lock;

	mutex_lock(rule_lock);
	list_for_each_entry(list_itr, rule_head, list_entry) {
		u8 *existing_mac = &list_itr->fltr_info.l_data.mac.mac_addr[0];

		if (ether_addr_equal(existing_mac, umac)) {
			mutex_unlock(rule_lock);
			return true;
		}
	}

	mutex_unlock(rule_lock);

	return false;
}

3833 3834 3835 3836
/**
 * ice_set_vf_mac
 * @netdev: network interface device structure
 * @vf_id: VF identifier
3837
 * @mac: MAC address
3838
 *
3839
 * program VF MAC address
3840 3841 3842
 */
int ice_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
{
J
Jesse Brandeburg 已提交
3843
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3844
	struct ice_vf *vf;
3845
	int ret;
3846

J
Jesse Brandeburg 已提交
3847
	if (ice_validate_vf_id(pf, vf_id))
3848 3849
		return -EINVAL;

3850
	if (is_multicast_ether_addr(mac)) {
3851 3852 3853 3854
		netdev_err(netdev, "%pM not a valid unicast address\n", mac);
		return -EINVAL;
	}

3855
	vf = &pf->vf[vf_id];
3856 3857 3858 3859
	/* nothing left to do, unicast MAC already set */
	if (ether_addr_equal(vf->dflt_lan_addr.addr, mac))
		return 0;

3860 3861 3862 3863
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;

3864 3865 3866 3867 3868 3869
	if (ice_unicast_mac_exists(pf, mac)) {
		netdev_err(netdev, "Unicast MAC %pM already exists on this PF. Preventing setting VF %u unicast MAC address to %pM\n",
			   mac, vf_id, mac);
		return -EINVAL;
	}

3870 3871
	/* VF is notified of its new MAC via the PF's response to the
	 * VIRTCHNL_OP_GET_VF_RESOURCES message after the VF has been reset
3872 3873
	 */
	ether_addr_copy(vf->dflt_lan_addr.addr, mac);
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884
	if (is_zero_ether_addr(mac)) {
		/* VF will send VIRTCHNL_OP_ADD_ETH_ADDR message with its MAC */
		vf->pf_set_mac = false;
		netdev_info(netdev, "Removing MAC on VF %d. VF driver will be reinitialized\n",
			    vf->vf_id);
	} else {
		/* PF will add MAC rule for the VF */
		vf->pf_set_mac = true;
		netdev_info(netdev, "Setting MAC %pM on VF %d. VF driver will be reinitialized\n",
			    mac, vf_id);
	}
3885

3886
	ice_vc_reset_vf(vf);
3887
	return 0;
3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899
}

/**
 * ice_set_vf_trust
 * @netdev: network interface device structure
 * @vf_id: VF identifier
 * @trusted: Boolean value to enable/disable trusted VF
 *
 * Enable or disable a given VF as trusted
 */
int ice_set_vf_trust(struct net_device *netdev, int vf_id, bool trusted)
{
J
Jesse Brandeburg 已提交
3900
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3901
	struct ice_vf *vf;
3902
	int ret;
3903

J
Jesse Brandeburg 已提交
3904
	if (ice_validate_vf_id(pf, vf_id))
3905 3906 3907
		return -EINVAL;

	vf = &pf->vf[vf_id];
3908 3909 3910
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;
3911 3912 3913 3914 3915 3916

	/* Check if already trusted */
	if (trusted == vf->trusted)
		return 0;

	vf->trusted = trusted;
3917
	ice_vc_reset_vf(vf);
3918
	dev_info(ice_pf_to_dev(pf), "VF %u is now %strusted\n",
3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933
		 vf_id, trusted ? "" : "un");

	return 0;
}

/**
 * ice_set_vf_link_state
 * @netdev: network interface device structure
 * @vf_id: VF identifier
 * @link_state: required link state
 *
 * Set VF's link state, irrespective of physical link state status
 */
int ice_set_vf_link_state(struct net_device *netdev, int vf_id, int link_state)
{
J
Jesse Brandeburg 已提交
3934
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3935
	struct ice_vf *vf;
3936
	int ret;
3937

J
Jesse Brandeburg 已提交
3938
	if (ice_validate_vf_id(pf, vf_id))
3939 3940 3941
		return -EINVAL;

	vf = &pf->vf[vf_id];
3942 3943 3944
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;
3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961

	switch (link_state) {
	case IFLA_VF_LINK_STATE_AUTO:
		vf->link_forced = false;
		break;
	case IFLA_VF_LINK_STATE_ENABLE:
		vf->link_forced = true;
		vf->link_up = true;
		break;
	case IFLA_VF_LINK_STATE_DISABLE:
		vf->link_forced = true;
		vf->link_up = false;
		break;
	default:
		return -EINVAL;
	}

3962
	ice_vc_notify_vf_link_state(vf);
3963 3964 3965

	return 0;
}
J
Jesse Brandeburg 已提交
3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979

/**
 * ice_get_vf_stats - populate some stats for the VF
 * @netdev: the netdev of the PF
 * @vf_id: the host OS identifier (0-255)
 * @vf_stats: pointer to the OS memory to be initialized
 */
int ice_get_vf_stats(struct net_device *netdev, int vf_id,
		     struct ifla_vf_stats *vf_stats)
{
	struct ice_pf *pf = ice_netdev_to_pf(netdev);
	struct ice_eth_stats *stats;
	struct ice_vsi *vsi;
	struct ice_vf *vf;
3980
	int ret;
J
Jesse Brandeburg 已提交
3981 3982 3983 3984 3985

	if (ice_validate_vf_id(pf, vf_id))
		return -EINVAL;

	vf = &pf->vf[vf_id];
3986 3987 3988
	ret = ice_check_vf_ready_for_cfg(vf);
	if (ret)
		return ret;
J
Jesse Brandeburg 已提交
3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011

	vsi = pf->vsi[vf->lan_vsi_idx];
	if (!vsi)
		return -EINVAL;

	ice_update_eth_stats(vsi);
	stats = &vsi->eth_stats;

	memset(vf_stats, 0, sizeof(*vf_stats));

	vf_stats->rx_packets = stats->rx_unicast + stats->rx_broadcast +
		stats->rx_multicast;
	vf_stats->tx_packets = stats->tx_unicast + stats->tx_broadcast +
		stats->tx_multicast;
	vf_stats->rx_bytes   = stats->rx_bytes;
	vf_stats->tx_bytes   = stats->tx_bytes;
	vf_stats->broadcast  = stats->rx_broadcast;
	vf_stats->multicast  = stats->rx_multicast;
	vf_stats->rx_dropped = stats->rx_discards;
	vf_stats->tx_dropped = stats->tx_discards;

	return 0;
}
4012

4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030
/**
 * ice_print_vf_rx_mdd_event - print VF Rx malicious driver detect event
 * @vf: pointer to the VF structure
 */
void ice_print_vf_rx_mdd_event(struct ice_vf *vf)
{
	struct ice_pf *pf = vf->pf;
	struct device *dev;

	dev = ice_pf_to_dev(pf);

	dev_info(dev, "%d Rx Malicious Driver Detection events detected on PF %d VF %d MAC %pM. mdd-auto-reset-vfs=%s\n",
		 vf->mdd_rx_events.count, pf->hw.pf_id, vf->vf_id,
		 vf->dflt_lan_addr.addr,
		 test_bit(ICE_FLAG_MDD_AUTO_RESET_VF, pf->flags)
			  ? "on" : "off");
}

4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059
/**
 * ice_print_vfs_mdd_event - print VFs malicious driver detect event
 * @pf: pointer to the PF structure
 *
 * Called from ice_handle_mdd_event to rate limit and print VFs MDD events.
 */
void ice_print_vfs_mdd_events(struct ice_pf *pf)
{
	struct device *dev = ice_pf_to_dev(pf);
	struct ice_hw *hw = &pf->hw;
	int i;

	/* check that there are pending MDD events to print */
	if (!test_and_clear_bit(__ICE_MDD_VF_PRINT_PENDING, pf->state))
		return;

	/* VF MDD event logs are rate limited to one second intervals */
	if (time_is_after_jiffies(pf->last_printed_mdd_jiffies + HZ * 1))
		return;

	pf->last_printed_mdd_jiffies = jiffies;

	ice_for_each_vf(pf, i) {
		struct ice_vf *vf = &pf->vf[i];

		/* only print Rx MDD event message if there are new events */
		if (vf->mdd_rx_events.count != vf->mdd_rx_events.last_printed) {
			vf->mdd_rx_events.last_printed =
							vf->mdd_rx_events.count;
4060
			ice_print_vf_rx_mdd_event(vf);
4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073
		}

		/* only print Tx MDD event message if there are new events */
		if (vf->mdd_tx_events.count != vf->mdd_tx_events.last_printed) {
			vf->mdd_tx_events.last_printed =
							vf->mdd_tx_events.count;

			dev_info(dev, "%d Tx Malicious Driver Detection events detected on PF %d VF %d MAC %pM.\n",
				 vf->mdd_tx_events.count, hw->pf_id, i,
				 vf->dflt_lan_addr.addr);
		}
	}
}
4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103

/**
 * ice_restore_all_vfs_msi_state - restore VF MSI state after PF FLR
 * @pdev: pointer to a pci_dev structure
 *
 * Called when recovering from a PF FLR to restore interrupt capability to
 * the VFs.
 */
void ice_restore_all_vfs_msi_state(struct pci_dev *pdev)
{
	struct pci_dev *vfdev;
	u16 vf_id;
	int pos;

	if (!pci_num_vf(pdev))
		return;

	pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
	if (pos) {
		pci_read_config_word(pdev, pos + PCI_SRIOV_VF_DID,
				     &vf_id);
		vfdev = pci_get_device(pdev->vendor, vf_id, NULL);
		while (vfdev) {
			if (vfdev->is_virtfn && vfdev->physfn == pdev)
				pci_restore_msi_state(vfdev);
			vfdev = pci_get_device(pdev->vendor, vf_id,
					       vfdev);
		}
	}
}