LCOV - code coverage report
Current view: top level - drivers/net/ixgbe/base - ixgbe_vf.c (source / functions) Hit Total Coverage
Test: Code coverage Lines: 0 240 0.0 %
Date: 2024-01-22 15:35:40 Functions: 0 20 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 127 0.0 %

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

Generated by: LCOV version 1.14