Home | History | Annotate | Line # | Download | only in ixgbe
ixgbe_vf.c revision 1.24.2.1
      1 /* $NetBSD: ixgbe_vf.c,v 1.24.2.1 2020/12/14 14:38:09 thorpej Exp $ */
      2 
      3 /******************************************************************************
      4   SPDX-License-Identifier: BSD-3-Clause
      5 
      6   Copyright (c) 2001-2017, Intel Corporation
      7   All rights reserved.
      8 
      9   Redistribution and use in source and binary forms, with or without
     10   modification, are permitted provided that the following conditions are met:
     11 
     12    1. Redistributions of source code must retain the above copyright notice,
     13       this list of conditions and the following disclaimer.
     14 
     15    2. Redistributions in binary form must reproduce the above copyright
     16       notice, this list of conditions and the following disclaimer in the
     17       documentation and/or other materials provided with the distribution.
     18 
     19    3. Neither the name of the Intel Corporation nor the names of its
     20       contributors may be used to endorse or promote products derived from
     21       this software without specific prior written permission.
     22 
     23   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     24   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
     27   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33   POSSIBILITY OF SUCH DAMAGE.
     34 
     35 ******************************************************************************/
     36 /*$FreeBSD: head/sys/dev/ixgbe/ixgbe_vf.c 331224 2018-03-19 20:55:05Z erj $*/
     37 
     38 
     39 #include "ixgbe_api.h"
     40 #include "ixgbe_type.h"
     41 #include "ixgbe_vf.h"
     42 
     43 #ifndef IXGBE_VFWRITE_REG
     44 #define IXGBE_VFWRITE_REG IXGBE_WRITE_REG
     45 #endif
     46 #ifndef IXGBE_VFREAD_REG
     47 #define IXGBE_VFREAD_REG IXGBE_READ_REG
     48 #endif
     49 
     50 /**
     51  *  ixgbe_init_ops_vf - Initialize the pointers for vf
     52  *  @hw: pointer to hardware structure
     53  *
     54  *  This will assign function pointers, adapter-specific functions can
     55  *  override the assignment of generic function pointers by assigning
     56  *  their own adapter-specific function pointers.
     57  *  Does not touch the hardware.
     58  **/
     59 s32 ixgbe_init_ops_vf(struct ixgbe_hw *hw)
     60 {
     61 	/* MAC */
     62 	hw->mac.ops.init_hw = ixgbe_init_hw_vf;
     63 	hw->mac.ops.reset_hw = ixgbe_reset_hw_vf;
     64 	hw->mac.ops.start_hw = ixgbe_start_hw_vf;
     65 	/* Cannot clear stats on VF */
     66 	hw->mac.ops.clear_hw_cntrs = NULL;
     67 	hw->mac.ops.get_media_type = NULL;
     68 	hw->mac.ops.get_mac_addr = ixgbe_get_mac_addr_vf;
     69 	hw->mac.ops.stop_adapter = ixgbe_stop_adapter_vf;
     70 	hw->mac.ops.get_bus_info = NULL;
     71 	hw->mac.ops.negotiate_api_version = ixgbevf_negotiate_api_version;
     72 
     73 	/* Link */
     74 	hw->mac.ops.setup_link = ixgbe_setup_mac_link_vf;
     75 	hw->mac.ops.check_link = ixgbe_check_mac_link_vf;
     76 	hw->mac.ops.get_link_capabilities = NULL;
     77 
     78 	/* RAR, Multicast, VLAN */
     79 	hw->mac.ops.set_rar = ixgbe_set_rar_vf;
     80 	hw->mac.ops.set_uc_addr = ixgbevf_set_uc_addr_vf;
     81 	hw->mac.ops.init_rx_addrs = NULL;
     82 	hw->mac.ops.update_mc_addr_list = ixgbe_update_mc_addr_list_vf;
     83 	hw->mac.ops.update_xcast_mode = ixgbevf_update_xcast_mode;
     84 	hw->mac.ops.enable_mc = NULL;
     85 	hw->mac.ops.disable_mc = NULL;
     86 	hw->mac.ops.clear_vfta = NULL;
     87 	hw->mac.ops.set_vfta = ixgbe_set_vfta_vf;
     88 	hw->mac.ops.set_rlpml = ixgbevf_rlpml_set_vf;
     89 
     90 	hw->mac.max_tx_queues = 1;
     91 	hw->mac.max_rx_queues = 1;
     92 
     93 	hw->mbx.ops.init_params = ixgbe_init_mbx_params_vf;
     94 
     95 	return IXGBE_SUCCESS;
     96 }
     97 
     98 /* ixgbe_virt_clr_reg - Set register to default (power on) state.
     99  *  @hw: pointer to hardware structure
    100  */
    101 static void ixgbe_virt_clr_reg(struct ixgbe_hw *hw)
    102 {
    103 	int i;
    104 	u32 vfsrrctl;
    105 	u32 vfdca_rxctrl;
    106 	u32 vfdca_txctrl;
    107 
    108 	/* VRSRRCTL default values (BSIZEPACKET = 2048, BSIZEHEADER = 256) */
    109 	vfsrrctl = 0x100 << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
    110 	vfsrrctl |= 0x800 >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
    111 
    112 	/* DCA_RXCTRL default value */
    113 	vfdca_rxctrl = IXGBE_DCA_RXCTRL_DESC_RRO_EN |
    114 		       IXGBE_DCA_RXCTRL_DATA_WRO_EN |
    115 		       IXGBE_DCA_RXCTRL_HEAD_WRO_EN;
    116 
    117 	/* DCA_TXCTRL default value */
    118 	vfdca_txctrl = IXGBE_DCA_TXCTRL_DESC_RRO_EN |
    119 		       IXGBE_DCA_TXCTRL_DESC_WRO_EN |
    120 		       IXGBE_DCA_TXCTRL_DATA_RRO_EN;
    121 
    122 	IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE, 0);
    123 
    124 	for (i = 0; i < 7; i++) {
    125 		IXGBE_WRITE_REG(hw, IXGBE_VFRDH(i), 0);
    126 		IXGBE_WRITE_REG(hw, IXGBE_VFRDT(i), 0);
    127 		IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(i), 0);
    128 		IXGBE_WRITE_REG(hw, IXGBE_VFSRRCTL(i), vfsrrctl);
    129 		IXGBE_WRITE_REG(hw, IXGBE_VFTDH(i), 0);
    130 		IXGBE_WRITE_REG(hw, IXGBE_VFTDT(i), 0);
    131 		IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(i), 0);
    132 		IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAH(i), 0);
    133 		IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAL(i), 0);
    134 		IXGBE_WRITE_REG(hw, IXGBE_VFDCA_RXCTRL(i), vfdca_rxctrl);
    135 		IXGBE_WRITE_REG(hw, IXGBE_VFDCA_TXCTRL(i), vfdca_txctrl);
    136 	}
    137 
    138 	IXGBE_WRITE_FLUSH(hw);
    139 }
    140 
    141 /**
    142  *  ixgbe_start_hw_vf - Prepare hardware for Tx/Rx
    143  *  @hw: pointer to hardware structure
    144  *
    145  *  Starts the hardware by filling the bus info structure and media type, clears
    146  *  all on chip counters, initializes receive address registers, multicast
    147  *  table, VLAN filter table, calls routine to set up link and flow control
    148  *  settings, and leaves transmit and receive units disabled and uninitialized
    149  **/
    150 s32 ixgbe_start_hw_vf(struct ixgbe_hw *hw)
    151 {
    152 	/* Clear adapter stopped flag */
    153 	hw->adapter_stopped = FALSE;
    154 
    155 	return IXGBE_SUCCESS;
    156 }
    157 
    158 /**
    159  *  ixgbe_init_hw_vf - virtual function hardware initialization
    160  *  @hw: pointer to hardware structure
    161  *
    162  *  Initialize the hardware by resetting the hardware and then starting
    163  *  the hardware
    164  **/
    165 s32 ixgbe_init_hw_vf(struct ixgbe_hw *hw)
    166 {
    167 	s32 status = hw->mac.ops.start_hw(hw);
    168 
    169 	hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
    170 
    171 	return status;
    172 }
    173 
    174 /**
    175  *  ixgbe_reset_hw_vf - Performs hardware reset
    176  *  @hw: pointer to hardware structure
    177  *
    178  *  Resets the hardware by resetting the transmit and receive units, masks and
    179  *  clears all interrupts.
    180  **/
    181 s32 ixgbe_reset_hw_vf(struct ixgbe_hw *hw)
    182 {
    183 	struct ixgbe_mbx_info *mbx = &hw->mbx;
    184 	u32 timeout = IXGBE_VF_INIT_TIMEOUT;
    185 	s32 ret_val = IXGBE_ERR_INVALID_MAC_ADDR;
    186 	u32 msgbuf[IXGBE_VF_PERMADDR_MSG_LEN];
    187 	u8 *addr = (u8 *)(&msgbuf[1]);
    188 
    189 	DEBUGFUNC("ixgbevf_reset_hw_vf");
    190 
    191 	/* Call adapter stop to disable tx/rx and clear interrupts */
    192 	hw->mac.ops.stop_adapter(hw);
    193 
    194 	/* reset the api version */
    195 	hw->api_version = ixgbe_mbox_api_10;
    196 
    197 	DEBUGOUT("Issuing a function level reset to MAC\n");
    198 
    199 	IXGBE_VFWRITE_REG(hw, IXGBE_VFCTRL, IXGBE_CTRL_RST);
    200 	IXGBE_WRITE_FLUSH(hw);
    201 
    202 	msec_delay(50);
    203 
    204 	/* we cannot reset while the RSTI / RSTD bits are asserted */
    205 	while (!mbx->ops.check_for_rst(hw, 0) && timeout) {
    206 		timeout--;
    207 		usec_delay(5);
    208 	}
    209 
    210 	if (!timeout)
    211 		return IXGBE_ERR_RESET_FAILED;
    212 
    213 	/* Reset VF registers to initial values */
    214 	ixgbe_virt_clr_reg(hw);
    215 
    216 	/* mailbox timeout can now become active */
    217 	mbx->timeout = IXGBE_VF_MBX_INIT_TIMEOUT;
    218 
    219 	msgbuf[0] = IXGBE_VF_RESET;
    220 	mbx->ops.write_posted(hw, msgbuf, 1, 0);
    221 
    222 	msec_delay(10);
    223 
    224 	/*
    225 	 * set our "perm_addr" based on info provided by PF
    226 	 * also set up the mc_filter_type which is piggy backed
    227 	 * on the mac address in word 3
    228 	 */
    229 	ret_val = mbx->ops.read_posted(hw, msgbuf,
    230 			IXGBE_VF_PERMADDR_MSG_LEN, 0);
    231 	if (ret_val)
    232 		return ret_val;
    233 
    234 	if (msgbuf[0] != (IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK) &&
    235 	    msgbuf[0] != (IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_NACK))
    236 		return IXGBE_ERR_INVALID_MAC_ADDR;
    237 
    238 	if (msgbuf[0] == (IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK))
    239 		memcpy(hw->mac.perm_addr, addr, IXGBE_ETH_LENGTH_OF_ADDRESS);
    240 
    241 	hw->mac.mc_filter_type = msgbuf[IXGBE_VF_MC_TYPE_WORD];
    242 
    243 	return ret_val;
    244 }
    245 
    246 /**
    247  *  ixgbe_stop_adapter_vf - Generic stop Tx/Rx units
    248  *  @hw: pointer to hardware structure
    249  *
    250  *  Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
    251  *  disables transmit and receive units. The adapter_stopped flag is used by
    252  *  the shared code and drivers to determine if the adapter is in a stopped
    253  *  state and should not touch the hardware.
    254  **/
    255 s32 ixgbe_stop_adapter_vf(struct ixgbe_hw *hw)
    256 {
    257 	u32 reg_val;
    258 	u16 i;
    259 
    260 	/*
    261 	 * Set the adapter_stopped flag so other driver functions stop touching
    262 	 * the hardware
    263 	 */
    264 	hw->adapter_stopped = TRUE;
    265 
    266 	/* Clear interrupt mask to stop from interrupts being generated */
    267 	IXGBE_VFWRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
    268 
    269 	/* Clear any pending interrupts, flush previous writes */
    270 	IXGBE_VFREAD_REG(hw, IXGBE_VTEICR);
    271 
    272 	/* Disable the transmit unit.  Each queue must be disabled. */
    273 	for (i = 0; i < hw->mac.max_tx_queues; i++)
    274 		IXGBE_VFWRITE_REG(hw, IXGBE_VFTXDCTL(i), IXGBE_TXDCTL_SWFLSH);
    275 
    276 	/* Disable the receive unit by stopping each queue */
    277 	for (i = 0; i < hw->mac.max_rx_queues; i++) {
    278 		reg_val = IXGBE_VFREAD_REG(hw, IXGBE_VFRXDCTL(i));
    279 		reg_val &= ~IXGBE_RXDCTL_ENABLE;
    280 		IXGBE_VFWRITE_REG(hw, IXGBE_VFRXDCTL(i), reg_val);
    281 	}
    282 	/* Clear packet split and pool config */
    283 	IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE, 0);
    284 
    285 	/* flush all queues disables */
    286 	IXGBE_WRITE_FLUSH(hw);
    287 	msec_delay(2);
    288 
    289 	return IXGBE_SUCCESS;
    290 }
    291 
    292 /**
    293  *  ixgbe_mta_vector - Determines bit-vector in multicast table to set
    294  *  @hw: pointer to hardware structure
    295  *  @mc_addr: the multicast address
    296  *
    297  *  Extracts the 12 bits, from a multicast address, to determine which
    298  *  bit-vector to set in the multicast table. The hardware uses 12 bits, from
    299  *  incoming rx multicast addresses, to determine the bit-vector to check in
    300  *  the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
    301  *  by the MO field of the MCSTCTRL. The MO field is set during initialization
    302  *  to mc_filter_type.
    303  **/
    304 static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
    305 {
    306 	u32 vector = 0;
    307 
    308 	switch (hw->mac.mc_filter_type) {
    309 	case 0:   /* use bits [47:36] of the address */
    310 		vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
    311 		break;
    312 	case 1:   /* use bits [46:35] of the address */
    313 		vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
    314 		break;
    315 	case 2:   /* use bits [45:34] of the address */
    316 		vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
    317 		break;
    318 	case 3:   /* use bits [43:32] of the address */
    319 		vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
    320 		break;
    321 	default:  /* Invalid mc_filter_type */
    322 		DEBUGOUT("MC filter type param set incorrectly\n");
    323 		ASSERT(0);
    324 		break;
    325 	}
    326 
    327 	/* vector can only be 12-bits or boundary will be exceeded */
    328 	vector &= 0xFFF;
    329 	return vector;
    330 }
    331 
    332 static s32 ixgbevf_write_msg_read_ack(struct ixgbe_hw *hw, u32 *msg,
    333 				      u32 *retmsg, u16 size)
    334 {
    335 	struct ixgbe_mbx_info *mbx = &hw->mbx;
    336 	s32 retval = mbx->ops.write_posted(hw, msg, size, 0);
    337 
    338 	if (retval)
    339 		return retval;
    340 
    341 	return mbx->ops.read_posted(hw, retmsg, size, 0);
    342 }
    343 
    344 /**
    345  *  ixgbe_set_rar_vf - set device MAC address
    346  *  @hw: pointer to hardware structure
    347  *  @index: Receive address register to write
    348  *  @addr: Address to put into receive address register
    349  *  @vmdq: VMDq "set" or "pool" index
    350  *  @enable_addr: set flag that address is active
    351  **/
    352 s32 ixgbe_set_rar_vf(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
    353 		     u32 enable_addr)
    354 {
    355 	u32 msgbuf[3];
    356 	u8 *msg_addr = (u8 *)(&msgbuf[1]);
    357 	s32 ret_val;
    358 	UNREFERENCED_3PARAMETER(vmdq, enable_addr, index);
    359 
    360 	memset(msgbuf, 0, 12);
    361 	msgbuf[0] = IXGBE_VF_SET_MAC_ADDR;
    362 	memcpy(msg_addr, addr, 6);
    363 	ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 3);
    364 
    365 	msgbuf[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    366 
    367 	/* if nacked the address was rejected, use "perm_addr" */
    368 	if (!ret_val &&
    369 	    (msgbuf[0] == (IXGBE_VF_SET_MAC_ADDR | IXGBE_VT_MSGTYPE_NACK))) {
    370 		ixgbe_get_mac_addr_vf(hw, hw->mac.addr);
    371 		return IXGBE_ERR_MBX;
    372 	}
    373 
    374 	return ret_val;
    375 }
    376 
    377 /**
    378  *  ixgbe_update_mc_addr_list_vf - Update Multicast addresses
    379  *  @hw: pointer to the HW structure
    380  *  @mc_addr_list: array of multicast addresses to program
    381  *  @mc_addr_count: number of multicast addresses to program
    382  *  @next: caller supplied function to return next address in list
    383  *  @clear: unused
    384  *
    385  *  Updates the Multicast Table Array.
    386  **/
    387 s32 ixgbe_update_mc_addr_list_vf(struct ixgbe_hw *hw, u8 *mc_addr_list,
    388 				 u32 mc_addr_count, ixgbe_mc_addr_itr next,
    389 				 bool clear)
    390 {
    391 	u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
    392 	u16 *vector_list = (u16 *)&msgbuf[1];
    393 	u32 vector;
    394 	u32 cnt, i;
    395 	u32 vmdq;
    396 
    397 	UNREFERENCED_1PARAMETER(clear);
    398 
    399 	DEBUGFUNC("ixgbe_update_mc_addr_list_vf");
    400 
    401 	/* Each entry in the list uses 1 16 bit word.  We have 30
    402 	 * 16 bit words available in our HW msg buffer (minus 1 for the
    403 	 * msg type).  That's 30 hash values if we pack 'em right.  If
    404 	 * there are more than 30 MC addresses to add then punt the
    405 	 * extras for now and then add code to handle more than 30 later.
    406 	 * It would be unusual for a server to request that many multi-cast
    407 	 * addresses except for in large enterprise network environments.
    408 	 */
    409 
    410 	DEBUGOUT1("MC Addr Count = %d\n", mc_addr_count);
    411 
    412 	if (mc_addr_count > IXGBE_MAX_VF_MC) {
    413 		device_printf(ixgbe_dev_from_hw(hw),
    414 		    "number of Ethernet multicast addresses exceeded "
    415 		    "the limit (%u > %d)\n", mc_addr_count, IXGBE_MAX_VF_MC);
    416 		cnt = IXGBE_MAX_VF_MC;
    417 	} else
    418 		cnt = mc_addr_count;
    419 	msgbuf[0] = IXGBE_VF_SET_MULTICAST;
    420 	msgbuf[0] |= cnt << IXGBE_VT_MSGINFO_SHIFT;
    421 
    422 	for (i = 0; i < cnt; i++) {
    423 		vector = ixgbe_mta_vector(hw, next(hw, &mc_addr_list, &vmdq));
    424 		DEBUGOUT1("Hash value = 0x%03X\n", vector);
    425 		vector_list[i] = (u16)vector;
    426 	}
    427 	return ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf,
    428 	    IXGBE_VFMAILBOX_SIZE);
    429 }
    430 
    431 /**
    432  *  ixgbevf_update_xcast_mode - Update Multicast mode
    433  *  @hw: pointer to the HW structure
    434  *  @xcast_mode: new multicast mode
    435  *
    436  *  Updates the Multicast Mode of VF.
    437  **/
    438 s32 ixgbevf_update_xcast_mode(struct ixgbe_hw *hw, int xcast_mode)
    439 {
    440 	u32 msgbuf[2];
    441 	s32 err;
    442 
    443 	switch (hw->api_version) {
    444 	case ixgbe_mbox_api_12:
    445 		/* New modes were introduced in 1.3 version */
    446 		if (xcast_mode > IXGBEVF_XCAST_MODE_ALLMULTI)
    447 			return IXGBE_ERR_FEATURE_NOT_SUPPORTED;
    448 		/* Fall through */
    449 	case ixgbe_mbox_api_13:
    450 		break;
    451 	default:
    452 		return IXGBE_ERR_FEATURE_NOT_SUPPORTED;
    453 	}
    454 
    455 	msgbuf[0] = IXGBE_VF_UPDATE_XCAST_MODE;
    456 	msgbuf[1] = xcast_mode;
    457 
    458 	err = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2);
    459 	if (err)
    460 		return err;
    461 
    462 	msgbuf[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    463 	if (msgbuf[0] ==
    464 	    (IXGBE_VF_UPDATE_XCAST_MODE | IXGBE_VT_MSGTYPE_NACK)) {
    465 		if (xcast_mode == IXGBEVF_XCAST_MODE_PROMISC) {
    466 			/*
    467 			 * If the API version matched and the reply was NACK,
    468 			 * assume the PF was not in PROMISC mode.
    469 			 */
    470 			return IXGBE_ERR_NOT_IN_PROMISC;
    471 		} else
    472 			return IXGBE_ERR_FEATURE_NOT_SUPPORTED;
    473 	}
    474 	/*
    475 	 *  On linux's PF driver implementation, the PF replies VF's
    476 	 * XCAST_MODE_ALLMULTI message not with NACK but with ACK even if the
    477 	 * virtual function is NOT marked "trust" and act as
    478 	 * XCAST_MODE_"MULTI". If ixv(4) simply check the return value of
    479 	 * update_xcast_mode(XCAST_MODE_ALLMULTI), SIOCSADDMULTI success and
    480 	 * the user may have trouble with some addresses. Fortunately, the
    481 	 * Linux's PF driver's "ACK" message has not XCAST_MODE_"ALL"MULTI but
    482 	 * XCAST_MODE_MULTI, so we can check this state by checking if the
    483 	 * send message's argument and the reply message's argument are
    484 	 * different.
    485 	 */
    486 	if ((xcast_mode > IXGBEVF_XCAST_MODE_MULTI)
    487 	    && (xcast_mode != msgbuf[1]))
    488 		return IXGBE_ERR_NOT_TRUSTED;
    489 	return IXGBE_SUCCESS;
    490 }
    491 
    492 /**
    493  *  ixgbe_set_vfta_vf - Set/Unset vlan filter table address
    494  *  @hw: pointer to the HW structure
    495  *  @vlan: 12 bit VLAN ID
    496  *  @vind: unused by VF drivers
    497  *  @vlan_on: if TRUE then set bit, else clear bit
    498  *  @vlvf_bypass: boolean flag indicating updating default pool is okay
    499  *
    500  *  Turn on/off specified VLAN in the VLAN filter table.
    501  **/
    502 s32 ixgbe_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind,
    503 		      bool vlan_on, bool vlvf_bypass)
    504 {
    505 	u32 msgbuf[2];
    506 	s32 ret_val;
    507 	UNREFERENCED_2PARAMETER(vind, vlvf_bypass);
    508 
    509 	msgbuf[0] = IXGBE_VF_SET_VLAN;
    510 	msgbuf[1] = vlan;
    511 	/* Setting the 8 bit field MSG INFO to TRUE indicates "add" */
    512 	msgbuf[0] |= (u32)vlan_on << IXGBE_VT_MSGINFO_SHIFT;
    513 
    514 	ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2);
    515 	if (!ret_val && (msgbuf[0] & IXGBE_VT_MSGTYPE_ACK))
    516 		return IXGBE_SUCCESS;
    517 
    518 	return ret_val | (msgbuf[0] & IXGBE_VT_MSGTYPE_NACK);
    519 }
    520 
    521 /**
    522  *  ixgbe_get_num_of_tx_queues_vf - Get number of TX queues
    523  *  @hw: pointer to hardware structure
    524  *
    525  *  Returns the number of transmit queues for the given adapter.
    526  **/
    527 u32 ixgbe_get_num_of_tx_queues_vf(struct ixgbe_hw *hw)
    528 {
    529 	UNREFERENCED_1PARAMETER(hw);
    530 	return IXGBE_VF_MAX_TX_QUEUES;
    531 }
    532 
    533 /**
    534  *  ixgbe_get_num_of_rx_queues_vf - Get number of RX queues
    535  *  @hw: pointer to hardware structure
    536  *
    537  *  Returns the number of receive queues for the given adapter.
    538  **/
    539 u32 ixgbe_get_num_of_rx_queues_vf(struct ixgbe_hw *hw)
    540 {
    541 	UNREFERENCED_1PARAMETER(hw);
    542 	return IXGBE_VF_MAX_RX_QUEUES;
    543 }
    544 
    545 /**
    546  * ixgbe_get_mac_addr_vf - Read device MAC address
    547  * @hw: pointer to the HW structure
    548  * @mac_addr: the MAC address
    549  **/
    550 s32 ixgbe_get_mac_addr_vf(struct ixgbe_hw *hw, u8 *mac_addr)
    551 {
    552 	int i;
    553 
    554 	for (i = 0; i < IXGBE_ETH_LENGTH_OF_ADDRESS; i++)
    555 		mac_addr[i] = hw->mac.perm_addr[i];
    556 
    557 	return IXGBE_SUCCESS;
    558 }
    559 
    560 s32 ixgbevf_set_uc_addr_vf(struct ixgbe_hw *hw, u32 index, u8 *addr)
    561 {
    562 	u32 msgbuf[3], msgbuf_chk;
    563 	u8 *msg_addr = (u8 *)(&msgbuf[1]);
    564 	s32 ret_val;
    565 
    566 	memset(msgbuf, 0, sizeof(msgbuf));
    567 	/*
    568 	 * If index is one then this is the start of a new list and needs
    569 	 * indication to the PF so it can do it's own list management.
    570 	 * If it is zero then that tells the PF to just clear all of
    571 	 * this VF's macvlans and there is no new list.
    572 	 */
    573 	msgbuf[0] |= index << IXGBE_VT_MSGINFO_SHIFT;
    574 	msgbuf[0] |= IXGBE_VF_SET_MACVLAN;
    575 	msgbuf_chk = msgbuf[0];
    576 	if (addr)
    577 		memcpy(msg_addr, addr, 6);
    578 
    579 	ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 3);
    580 	if (!ret_val) {
    581 		msgbuf[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    582 
    583 		if (msgbuf[0] == (msgbuf_chk | IXGBE_VT_MSGTYPE_NACK))
    584 			return IXGBE_ERR_OUT_OF_MEM;
    585 	}
    586 
    587 	return ret_val;
    588 }
    589 
    590 /**
    591  *  ixgbe_setup_mac_link_vf - Setup MAC link settings
    592  *  @hw: pointer to hardware structure
    593  *  @speed: new link speed
    594  *  @autoneg_wait_to_complete: TRUE when waiting for completion is needed
    595  *
    596  *  Set the link speed in the AUTOC register and restarts link.
    597  **/
    598 s32 ixgbe_setup_mac_link_vf(struct ixgbe_hw *hw, ixgbe_link_speed speed,
    599 			    bool autoneg_wait_to_complete)
    600 {
    601 	UNREFERENCED_3PARAMETER(hw, speed, autoneg_wait_to_complete);
    602 	return IXGBE_SUCCESS;
    603 }
    604 
    605 /**
    606  *  ixgbe_check_mac_link_vf - Get link/speed status
    607  *  @hw: pointer to hardware structure
    608  *  @speed: pointer to link speed
    609  *  @link_up: TRUE is link is up, FALSE otherwise
    610  *  @autoneg_wait_to_complete: TRUE when waiting for completion is needed
    611  *
    612  *  Reads the links register to determine if link is up and the current speed
    613  **/
    614 s32 ixgbe_check_mac_link_vf(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
    615 			    bool *link_up, bool autoneg_wait_to_complete)
    616 {
    617 	struct ixgbe_mbx_info *mbx = &hw->mbx;
    618 	struct ixgbe_mac_info *mac = &hw->mac;
    619 	s32 ret_val = IXGBE_SUCCESS;
    620 	u32 links_reg;
    621 	u32 in_msg = 0;
    622 	UNREFERENCED_1PARAMETER(autoneg_wait_to_complete);
    623 
    624 	/* If we were hit with a reset drop the link */
    625 	if (!mbx->ops.check_for_rst(hw, 0) || !mbx->timeout)
    626 		mac->get_link_status = TRUE;
    627 
    628 	if (!mac->get_link_status)
    629 		goto out;
    630 
    631 	/* if link status is down no point in checking to see if pf is up */
    632 	links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
    633 	if (!(links_reg & IXGBE_LINKS_UP))
    634 		goto out;
    635 
    636 	/* for SFP+ modules and DA cables on 82599 it can take up to 500usecs
    637 	 * before the link status is correct
    638 	 */
    639 	if (mac->type == ixgbe_mac_82599_vf) {
    640 		int i;
    641 
    642 		for (i = 0; i < 5; i++) {
    643 			usec_delay(100);
    644 			links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
    645 
    646 			if (!(links_reg & IXGBE_LINKS_UP))
    647 				goto out;
    648 		}
    649 	}
    650 
    651 	switch (links_reg & IXGBE_LINKS_SPEED_82599) {
    652 	case IXGBE_LINKS_SPEED_10G_82599:
    653 		*speed = IXGBE_LINK_SPEED_10GB_FULL;
    654 		if (hw->mac.type >= ixgbe_mac_X550) {
    655 			if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
    656 				*speed = IXGBE_LINK_SPEED_2_5GB_FULL;
    657 		}
    658 		break;
    659 	case IXGBE_LINKS_SPEED_1G_82599:
    660 		*speed = IXGBE_LINK_SPEED_1GB_FULL;
    661 		break;
    662 	case IXGBE_LINKS_SPEED_100_82599:
    663 		*speed = IXGBE_LINK_SPEED_100_FULL;
    664 		if (hw->mac.type >= ixgbe_mac_X550) {
    665 			if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
    666 				*speed = IXGBE_LINK_SPEED_5GB_FULL;
    667 		}
    668 		break;
    669 	case IXGBE_LINKS_SPEED_10_X550EM_A:
    670 		*speed = IXGBE_LINK_SPEED_UNKNOWN;
    671 		/* Since Reserved in older MAC's */
    672 		if (hw->mac.type >= ixgbe_mac_X550)
    673 			*speed = IXGBE_LINK_SPEED_10_FULL;
    674 		break;
    675 	default:
    676 		*speed = IXGBE_LINK_SPEED_UNKNOWN;
    677 	}
    678 
    679 	/* if the read failed it could just be a mailbox collision, best wait
    680 	 * until we are called again and don't report an error
    681 	 */
    682 	if (mbx->ops.read(hw, &in_msg, 1, 0))
    683 		goto out;
    684 
    685 	if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) {
    686 		/* msg is not CTS and is NACK we must have lost CTS status */
    687 		if (in_msg & IXGBE_VT_MSGTYPE_NACK)
    688 			ret_val = -1;
    689 		goto out;
    690 	}
    691 
    692 	/* the pf is talking, if we timed out in the past we reinit */
    693 	if (!mbx->timeout) {
    694 		ret_val = -1;
    695 		goto out;
    696 	}
    697 
    698 	/* if we passed all the tests above then the link is up and we no
    699 	 * longer need to check for link
    700 	 */
    701 	mac->get_link_status = FALSE;
    702 
    703 out:
    704 	*link_up = !mac->get_link_status;
    705 	return ret_val;
    706 }
    707 
    708 /**
    709  *  ixgbevf_rlpml_set_vf - Set the maximum receive packet length
    710  *  @hw: pointer to the HW structure
    711  *  @max_size: value to assign to max frame size
    712  **/
    713 s32 ixgbevf_rlpml_set_vf(struct ixgbe_hw *hw, u16 max_size)
    714 {
    715 	u32 msgbuf[2];
    716 	s32 retval;
    717 
    718 	msgbuf[0] = IXGBE_VF_SET_LPE;
    719 	msgbuf[1] = max_size;
    720 
    721 	retval = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2);
    722 	if (retval)
    723 		return retval;
    724 	if ((msgbuf[0] & IXGBE_VF_SET_LPE) &&
    725 	    (msgbuf[0] & IXGBE_VT_MSGTYPE_NACK))
    726 		return IXGBE_ERR_MBX;
    727 
    728 	return 0;
    729 }
    730 
    731 /**
    732  *  ixgbevf_negotiate_api_version - Negotiate supported API version
    733  *  @hw: pointer to the HW structure
    734  *  @api: integer containing requested API version
    735  **/
    736 int ixgbevf_negotiate_api_version(struct ixgbe_hw *hw, int api)
    737 {
    738 	int err;
    739 	u32 msg[3];
    740 
    741 	/* Negotiate the mailbox API version */
    742 	msg[0] = IXGBE_VF_API_NEGOTIATE;
    743 	msg[1] = api;
    744 	msg[2] = 0;
    745 
    746 	err = ixgbevf_write_msg_read_ack(hw, msg, msg, 3);
    747 	if (!err) {
    748 		msg[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    749 
    750 		/* Store value and return 0 on success */
    751 		if (msg[0] == (IXGBE_VF_API_NEGOTIATE | IXGBE_VT_MSGTYPE_ACK)) {
    752 			hw->api_version = api;
    753 			return 0;
    754 		}
    755 
    756 		err = IXGBE_ERR_INVALID_ARGUMENT;
    757 	}
    758 
    759 	return err;
    760 }
    761 
    762 int ixgbevf_get_queues(struct ixgbe_hw *hw, unsigned int *num_tcs,
    763 		       unsigned int *default_tc)
    764 {
    765 	int err;
    766 	u32 msg[5];
    767 
    768 	/* do nothing if API doesn't support ixgbevf_get_queues */
    769 	switch (hw->api_version) {
    770 	case ixgbe_mbox_api_11:
    771 	case ixgbe_mbox_api_12:
    772 	case ixgbe_mbox_api_13:
    773 		break;
    774 	default:
    775 		return 0;
    776 	}
    777 
    778 	/* Fetch queue configuration from the PF */
    779 	msg[0] = IXGBE_VF_GET_QUEUES;
    780 	msg[1] = msg[2] = msg[3] = msg[4] = 0;
    781 
    782 	err = ixgbevf_write_msg_read_ack(hw, msg, msg, 5);
    783 	if (!err) {
    784 		msg[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    785 
    786 		/*
    787 		 * if we didn't get an ACK there must have been
    788 		 * some sort of mailbox error so we should treat it
    789 		 * as such
    790 		 */
    791 		if (msg[0] != (IXGBE_VF_GET_QUEUES | IXGBE_VT_MSGTYPE_ACK))
    792 			return IXGBE_ERR_MBX;
    793 
    794 		/* record and validate values from message */
    795 		hw->mac.max_tx_queues = msg[IXGBE_VF_TX_QUEUES];
    796 		if (hw->mac.max_tx_queues == 0 ||
    797 		    hw->mac.max_tx_queues > IXGBE_VF_MAX_TX_QUEUES)
    798 			hw->mac.max_tx_queues = IXGBE_VF_MAX_TX_QUEUES;
    799 
    800 		hw->mac.max_rx_queues = msg[IXGBE_VF_RX_QUEUES];
    801 		if (hw->mac.max_rx_queues == 0 ||
    802 		    hw->mac.max_rx_queues > IXGBE_VF_MAX_RX_QUEUES)
    803 			hw->mac.max_rx_queues = IXGBE_VF_MAX_RX_QUEUES;
    804 
    805 		*num_tcs = msg[IXGBE_VF_TRANS_VLAN];
    806 		/* in case of unknown state assume we cannot tag frames */
    807 		if (*num_tcs > hw->mac.max_rx_queues)
    808 			*num_tcs = 1;
    809 
    810 		*default_tc = msg[IXGBE_VF_DEF_QUEUE];
    811 		/* default to queue 0 on out-of-bounds queue number */
    812 		if (*default_tc >= hw->mac.max_tx_queues)
    813 			*default_tc = 0;
    814 	}
    815 
    816 	return err;
    817 }
    818