Home | History | Annotate | Line # | Download | only in ixgbe
ixgbe_vf.c revision 1.20
      1 /* $NetBSD: ixgbe_vf.c,v 1.20 2019/09/12 06:19:47 msaitoh 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 reseting 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] == (IXGBE_VF_UPDATE_XCAST_MODE | IXGBE_VT_MSGTYPE_NACK))
    464 		return IXGBE_ERR_FEATURE_NOT_SUPPORTED;
    465 	return IXGBE_SUCCESS;
    466 }
    467 
    468 /**
    469  *  ixgbe_set_vfta_vf - Set/Unset vlan filter table address
    470  *  @hw: pointer to the HW structure
    471  *  @vlan: 12 bit VLAN ID
    472  *  @vind: unused by VF drivers
    473  *  @vlan_on: if TRUE then set bit, else clear bit
    474  *  @vlvf_bypass: boolean flag indicating updating default pool is okay
    475  *
    476  *  Turn on/off specified VLAN in the VLAN filter table.
    477  **/
    478 s32 ixgbe_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind,
    479 		      bool vlan_on, bool vlvf_bypass)
    480 {
    481 	u32 msgbuf[2];
    482 	s32 ret_val;
    483 	UNREFERENCED_2PARAMETER(vind, vlvf_bypass);
    484 
    485 	msgbuf[0] = IXGBE_VF_SET_VLAN;
    486 	msgbuf[1] = vlan;
    487 	/* Setting the 8 bit field MSG INFO to TRUE indicates "add" */
    488 	msgbuf[0] |= (u32)vlan_on << IXGBE_VT_MSGINFO_SHIFT;
    489 
    490 	ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2);
    491 	if (!ret_val && (msgbuf[0] & IXGBE_VT_MSGTYPE_ACK))
    492 		return IXGBE_SUCCESS;
    493 
    494 	return ret_val | (msgbuf[0] & IXGBE_VT_MSGTYPE_NACK);
    495 }
    496 
    497 /**
    498  *  ixgbe_get_num_of_tx_queues_vf - Get number of TX queues
    499  *  @hw: pointer to hardware structure
    500  *
    501  *  Returns the number of transmit queues for the given adapter.
    502  **/
    503 u32 ixgbe_get_num_of_tx_queues_vf(struct ixgbe_hw *hw)
    504 {
    505 	UNREFERENCED_1PARAMETER(hw);
    506 	return IXGBE_VF_MAX_TX_QUEUES;
    507 }
    508 
    509 /**
    510  *  ixgbe_get_num_of_rx_queues_vf - Get number of RX queues
    511  *  @hw: pointer to hardware structure
    512  *
    513  *  Returns the number of receive queues for the given adapter.
    514  **/
    515 u32 ixgbe_get_num_of_rx_queues_vf(struct ixgbe_hw *hw)
    516 {
    517 	UNREFERENCED_1PARAMETER(hw);
    518 	return IXGBE_VF_MAX_RX_QUEUES;
    519 }
    520 
    521 /**
    522  * ixgbe_get_mac_addr_vf - Read device MAC address
    523  * @hw: pointer to the HW structure
    524  * @mac_addr: the MAC address
    525  **/
    526 s32 ixgbe_get_mac_addr_vf(struct ixgbe_hw *hw, u8 *mac_addr)
    527 {
    528 	int i;
    529 
    530 	for (i = 0; i < IXGBE_ETH_LENGTH_OF_ADDRESS; i++)
    531 		mac_addr[i] = hw->mac.perm_addr[i];
    532 
    533 	return IXGBE_SUCCESS;
    534 }
    535 
    536 s32 ixgbevf_set_uc_addr_vf(struct ixgbe_hw *hw, u32 index, u8 *addr)
    537 {
    538 	u32 msgbuf[3], msgbuf_chk;
    539 	u8 *msg_addr = (u8 *)(&msgbuf[1]);
    540 	s32 ret_val;
    541 
    542 	memset(msgbuf, 0, sizeof(msgbuf));
    543 	/*
    544 	 * If index is one then this is the start of a new list and needs
    545 	 * indication to the PF so it can do it's own list management.
    546 	 * If it is zero then that tells the PF to just clear all of
    547 	 * this VF's macvlans and there is no new list.
    548 	 */
    549 	msgbuf[0] |= index << IXGBE_VT_MSGINFO_SHIFT;
    550 	msgbuf[0] |= IXGBE_VF_SET_MACVLAN;
    551 	msgbuf_chk = msgbuf[0];
    552 	if (addr)
    553 		memcpy(msg_addr, addr, 6);
    554 
    555 	ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 3);
    556 	if (!ret_val) {
    557 		msgbuf[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    558 
    559 		if (msgbuf[0] == (msgbuf_chk | IXGBE_VT_MSGTYPE_NACK))
    560 			return IXGBE_ERR_OUT_OF_MEM;
    561 	}
    562 
    563 	return ret_val;
    564 }
    565 
    566 /**
    567  *  ixgbe_setup_mac_link_vf - Setup MAC link settings
    568  *  @hw: pointer to hardware structure
    569  *  @speed: new link speed
    570  *  @autoneg_wait_to_complete: TRUE when waiting for completion is needed
    571  *
    572  *  Set the link speed in the AUTOC register and restarts link.
    573  **/
    574 s32 ixgbe_setup_mac_link_vf(struct ixgbe_hw *hw, ixgbe_link_speed speed,
    575 			    bool autoneg_wait_to_complete)
    576 {
    577 	UNREFERENCED_3PARAMETER(hw, speed, autoneg_wait_to_complete);
    578 	return IXGBE_SUCCESS;
    579 }
    580 
    581 /**
    582  *  ixgbe_check_mac_link_vf - Get link/speed status
    583  *  @hw: pointer to hardware structure
    584  *  @speed: pointer to link speed
    585  *  @link_up: TRUE is link is up, FALSE otherwise
    586  *  @autoneg_wait_to_complete: TRUE when waiting for completion is needed
    587  *
    588  *  Reads the links register to determine if link is up and the current speed
    589  **/
    590 s32 ixgbe_check_mac_link_vf(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
    591 			    bool *link_up, bool autoneg_wait_to_complete)
    592 {
    593 	struct ixgbe_mbx_info *mbx = &hw->mbx;
    594 	struct ixgbe_mac_info *mac = &hw->mac;
    595 	s32 ret_val = IXGBE_SUCCESS;
    596 	u32 links_reg;
    597 	u32 in_msg = 0;
    598 	UNREFERENCED_1PARAMETER(autoneg_wait_to_complete);
    599 
    600 	/* If we were hit with a reset drop the link */
    601 	if (!mbx->ops.check_for_rst(hw, 0) || !mbx->timeout)
    602 		mac->get_link_status = TRUE;
    603 
    604 	if (!mac->get_link_status)
    605 		goto out;
    606 
    607 	/* if link status is down no point in checking to see if pf is up */
    608 	links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
    609 	if (!(links_reg & IXGBE_LINKS_UP))
    610 		goto out;
    611 
    612 	/* for SFP+ modules and DA cables on 82599 it can take up to 500usecs
    613 	 * before the link status is correct
    614 	 */
    615 	if (mac->type == ixgbe_mac_82599_vf) {
    616 		int i;
    617 
    618 		for (i = 0; i < 5; i++) {
    619 			usec_delay(100);
    620 			links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
    621 
    622 			if (!(links_reg & IXGBE_LINKS_UP))
    623 				goto out;
    624 		}
    625 	}
    626 
    627 	switch (links_reg & IXGBE_LINKS_SPEED_82599) {
    628 	case IXGBE_LINKS_SPEED_10G_82599:
    629 		*speed = IXGBE_LINK_SPEED_10GB_FULL;
    630 		if (hw->mac.type >= ixgbe_mac_X550) {
    631 			if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
    632 				*speed = IXGBE_LINK_SPEED_2_5GB_FULL;
    633 		}
    634 		break;
    635 	case IXGBE_LINKS_SPEED_1G_82599:
    636 		*speed = IXGBE_LINK_SPEED_1GB_FULL;
    637 		break;
    638 	case IXGBE_LINKS_SPEED_100_82599:
    639 		*speed = IXGBE_LINK_SPEED_100_FULL;
    640 		if (hw->mac.type >= ixgbe_mac_X550) {
    641 			if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
    642 				*speed = IXGBE_LINK_SPEED_5GB_FULL;
    643 		}
    644 		break;
    645 	case IXGBE_LINKS_SPEED_10_X550EM_A:
    646 		*speed = IXGBE_LINK_SPEED_UNKNOWN;
    647 		/* Since Reserved in older MAC's */
    648 		if (hw->mac.type >= ixgbe_mac_X550)
    649 			*speed = IXGBE_LINK_SPEED_10_FULL;
    650 		break;
    651 	default:
    652 		*speed = IXGBE_LINK_SPEED_UNKNOWN;
    653 	}
    654 
    655 	/* if the read failed it could just be a mailbox collision, best wait
    656 	 * until we are called again and don't report an error
    657 	 */
    658 	if (mbx->ops.read(hw, &in_msg, 1, 0))
    659 		goto out;
    660 
    661 	if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) {
    662 		/* msg is not CTS and is NACK we must have lost CTS status */
    663 		if (in_msg & IXGBE_VT_MSGTYPE_NACK)
    664 			ret_val = -1;
    665 		goto out;
    666 	}
    667 
    668 	/* the pf is talking, if we timed out in the past we reinit */
    669 	if (!mbx->timeout) {
    670 		ret_val = -1;
    671 		goto out;
    672 	}
    673 
    674 	/* if we passed all the tests above then the link is up and we no
    675 	 * longer need to check for link
    676 	 */
    677 	mac->get_link_status = FALSE;
    678 
    679 out:
    680 	*link_up = !mac->get_link_status;
    681 	return ret_val;
    682 }
    683 
    684 /**
    685  *  ixgbevf_rlpml_set_vf - Set the maximum receive packet length
    686  *  @hw: pointer to the HW structure
    687  *  @max_size: value to assign to max frame size
    688  **/
    689 s32 ixgbevf_rlpml_set_vf(struct ixgbe_hw *hw, u16 max_size)
    690 {
    691 	u32 msgbuf[2];
    692 	s32 retval;
    693 
    694 	msgbuf[0] = IXGBE_VF_SET_LPE;
    695 	msgbuf[1] = max_size;
    696 
    697 	retval = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2);
    698 	if (retval)
    699 		return retval;
    700 	if ((msgbuf[0] & IXGBE_VF_SET_LPE) &&
    701 	    (msgbuf[0] & IXGBE_VT_MSGTYPE_NACK))
    702 		return IXGBE_ERR_MBX;
    703 
    704 	return 0;
    705 }
    706 
    707 /**
    708  *  ixgbevf_negotiate_api_version - Negotiate supported API version
    709  *  @hw: pointer to the HW structure
    710  *  @api: integer containing requested API version
    711  **/
    712 int ixgbevf_negotiate_api_version(struct ixgbe_hw *hw, int api)
    713 {
    714 	int err;
    715 	u32 msg[3];
    716 
    717 	/* Negotiate the mailbox API version */
    718 	msg[0] = IXGBE_VF_API_NEGOTIATE;
    719 	msg[1] = api;
    720 	msg[2] = 0;
    721 
    722 	err = ixgbevf_write_msg_read_ack(hw, msg, msg, 3);
    723 	if (!err) {
    724 		msg[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    725 
    726 		/* Store value and return 0 on success */
    727 		if (msg[0] == (IXGBE_VF_API_NEGOTIATE | IXGBE_VT_MSGTYPE_ACK)) {
    728 			hw->api_version = api;
    729 			return 0;
    730 		}
    731 
    732 		err = IXGBE_ERR_INVALID_ARGUMENT;
    733 	}
    734 
    735 	return err;
    736 }
    737 
    738 int ixgbevf_get_queues(struct ixgbe_hw *hw, unsigned int *num_tcs,
    739 		       unsigned int *default_tc)
    740 {
    741 	int err;
    742 	u32 msg[5];
    743 
    744 	/* do nothing if API doesn't support ixgbevf_get_queues */
    745 	switch (hw->api_version) {
    746 	case ixgbe_mbox_api_11:
    747 	case ixgbe_mbox_api_12:
    748 	case ixgbe_mbox_api_13:
    749 		break;
    750 	default:
    751 		return 0;
    752 	}
    753 
    754 	/* Fetch queue configuration from the PF */
    755 	msg[0] = IXGBE_VF_GET_QUEUES;
    756 	msg[1] = msg[2] = msg[3] = msg[4] = 0;
    757 
    758 	err = ixgbevf_write_msg_read_ack(hw, msg, msg, 5);
    759 	if (!err) {
    760 		msg[0] &= ~IXGBE_VT_MSGTYPE_CTS;
    761 
    762 		/*
    763 		 * if we we didn't get an ACK there must have been
    764 		 * some sort of mailbox error so we should treat it
    765 		 * as such
    766 		 */
    767 		if (msg[0] != (IXGBE_VF_GET_QUEUES | IXGBE_VT_MSGTYPE_ACK))
    768 			return IXGBE_ERR_MBX;
    769 
    770 		/* record and validate values from message */
    771 		hw->mac.max_tx_queues = msg[IXGBE_VF_TX_QUEUES];
    772 		if (hw->mac.max_tx_queues == 0 ||
    773 		    hw->mac.max_tx_queues > IXGBE_VF_MAX_TX_QUEUES)
    774 			hw->mac.max_tx_queues = IXGBE_VF_MAX_TX_QUEUES;
    775 
    776 		hw->mac.max_rx_queues = msg[IXGBE_VF_RX_QUEUES];
    777 		if (hw->mac.max_rx_queues == 0 ||
    778 		    hw->mac.max_rx_queues > IXGBE_VF_MAX_RX_QUEUES)
    779 			hw->mac.max_rx_queues = IXGBE_VF_MAX_RX_QUEUES;
    780 
    781 		*num_tcs = msg[IXGBE_VF_TRANS_VLAN];
    782 		/* in case of unknown state assume we cannot tag frames */
    783 		if (*num_tcs > hw->mac.max_rx_queues)
    784 			*num_tcs = 1;
    785 
    786 		*default_tc = msg[IXGBE_VF_DEF_QUEUE];
    787 		/* default to queue 0 on out-of-bounds queue number */
    788 		if (*default_tc >= hw->mac.max_tx_queues)
    789 			*default_tc = 0;
    790 	}
    791 
    792 	return err;
    793 }
    794