net/ice: fix build when Rx descriptor size is 16
[dpdk.git] / drivers / net / ngbe / base / ngbe_hw.c
index 2daddaa..6b575fc 100644 (file)
@@ -9,6 +9,22 @@
 #include "ngbe_mng.h"
 #include "ngbe_hw.h"
 
+/**
+ *  ngbe_start_hw - Prepare hardware for Tx/Rx
+ *  @hw: pointer to hardware structure
+ *
+ *  Starts the hardware.
+ **/
+s32 ngbe_start_hw(struct ngbe_hw *hw)
+{
+       DEBUGFUNC("ngbe_start_hw");
+
+       /* Clear adapter stopped flag */
+       hw->adapter_stopped = false;
+
+       return 0;
+}
+
 /**
  *  ngbe_init_hw - Generic hardware initialization
  *  @hw: pointer to hardware structure
@@ -27,6 +43,10 @@ s32 ngbe_init_hw(struct ngbe_hw *hw)
 
        /* Reset the hardware */
        status = hw->mac.reset_hw(hw);
+       if (status == 0) {
+               /* Start the HW */
+               status = hw->mac.start_hw(hw);
+       }
 
        if (status != 0)
                DEBUGOUT("Failed to initialize HW, STATUS = %d\n", status);
@@ -516,6 +536,63 @@ void ngbe_release_swfw_sync(struct ngbe_hw *hw, u32 mask)
        ngbe_release_eeprom_semaphore(hw);
 }
 
+/**
+ *  ngbe_disable_sec_rx_path - Stops the receive data path
+ *  @hw: pointer to hardware structure
+ *
+ *  Stops the receive data path and waits for the HW to internally empty
+ *  the Rx security block
+ **/
+s32 ngbe_disable_sec_rx_path(struct ngbe_hw *hw)
+{
+#define NGBE_MAX_SECRX_POLL 4000
+
+       int i;
+       u32 secrxreg;
+
+       DEBUGFUNC("ngbe_disable_sec_rx_path");
+
+
+       secrxreg = rd32(hw, NGBE_SECRXCTL);
+       secrxreg |= NGBE_SECRXCTL_XDSA;
+       wr32(hw, NGBE_SECRXCTL, secrxreg);
+       for (i = 0; i < NGBE_MAX_SECRX_POLL; i++) {
+               secrxreg = rd32(hw, NGBE_SECRXSTAT);
+               if (!(secrxreg & NGBE_SECRXSTAT_RDY))
+                       /* Use interrupt-safe sleep just in case */
+                       usec_delay(10);
+               else
+                       break;
+       }
+
+       /* For informational purposes only */
+       if (i >= NGBE_MAX_SECRX_POLL)
+               DEBUGOUT("Rx unit being enabled before security "
+                        "path fully disabled.  Continuing with init.\n");
+
+       return 0;
+}
+
+/**
+ *  ngbe_enable_sec_rx_path - Enables the receive data path
+ *  @hw: pointer to hardware structure
+ *
+ *  Enables the receive data path.
+ **/
+s32 ngbe_enable_sec_rx_path(struct ngbe_hw *hw)
+{
+       u32 secrxreg;
+
+       DEBUGFUNC("ngbe_enable_sec_rx_path");
+
+       secrxreg = rd32(hw, NGBE_SECRXCTL);
+       secrxreg &= ~NGBE_SECRXCTL_XDSA;
+       wr32(hw, NGBE_SECRXCTL, secrxreg);
+       ngbe_flush(hw);
+
+       return 0;
+}
+
 /**
  *  ngbe_clear_vmdq - Disassociate a VMDq pool index from a rx address
  *  @hw: pointer to hardware struct
@@ -599,6 +676,77 @@ s32 ngbe_init_uta_tables(struct ngbe_hw *hw)
        return 0;
 }
 
+/**
+ *  ngbe_check_mac_link_em - Determine link and speed status
+ *  @hw: pointer to hardware structure
+ *  @speed: pointer to link speed
+ *  @link_up: true when link is up
+ *  @link_up_wait_to_complete: bool used to wait for link up or not
+ *
+ *  Reads the links register to determine if link is up and the current speed
+ **/
+s32 ngbe_check_mac_link_em(struct ngbe_hw *hw, u32 *speed,
+                       bool *link_up, bool link_up_wait_to_complete)
+{
+       u32 i, reg;
+       s32 status = 0;
+
+       DEBUGFUNC("ngbe_check_mac_link_em");
+
+       reg = rd32(hw, NGBE_GPIOINTSTAT);
+       wr32(hw, NGBE_GPIOEOI, reg);
+
+       if (link_up_wait_to_complete) {
+               for (i = 0; i < hw->mac.max_link_up_time; i++) {
+                       status = hw->phy.check_link(hw, speed, link_up);
+                       if (*link_up)
+                               break;
+                       msec_delay(100);
+               }
+       } else {
+               status = hw->phy.check_link(hw, speed, link_up);
+       }
+
+       return status;
+}
+
+s32 ngbe_get_link_capabilities_em(struct ngbe_hw *hw,
+                                     u32 *speed,
+                                     bool *autoneg)
+{
+       s32 status = 0;
+
+       DEBUGFUNC("\n");
+
+       hw->mac.autoneg = *autoneg;
+
+       switch (hw->sub_device_id) {
+       case NGBE_SUB_DEV_ID_EM_RTL_SGMII:
+               *speed = NGBE_LINK_SPEED_1GB_FULL |
+                       NGBE_LINK_SPEED_100M_FULL |
+                       NGBE_LINK_SPEED_10M_FULL;
+               break;
+       default:
+               break;
+       }
+
+       return status;
+}
+
+s32 ngbe_setup_mac_link_em(struct ngbe_hw *hw,
+                              u32 speed,
+                              bool autoneg_wait_to_complete)
+{
+       s32 status;
+
+       DEBUGFUNC("\n");
+
+       /* Setup the PHY according to input speed */
+       status = hw->phy.setup_link(hw, speed, autoneg_wait_to_complete);
+
+       return status;
+}
+
 /**
  *  ngbe_init_thermal_sensor_thresh - Inits thermal sensor thresholds
  *  @hw: pointer to hardware structure
@@ -665,6 +813,21 @@ void ngbe_disable_rx(struct ngbe_hw *hw)
        wr32m(hw, NGBE_MACRXCFG, NGBE_MACRXCFG_ENA, 0);
 }
 
+void ngbe_enable_rx(struct ngbe_hw *hw)
+{
+       u32 pfdtxgswc;
+
+       wr32m(hw, NGBE_MACRXCFG, NGBE_MACRXCFG_ENA, NGBE_MACRXCFG_ENA);
+       wr32m(hw, NGBE_PBRXCTL, NGBE_PBRXCTL_ENA, NGBE_PBRXCTL_ENA);
+
+       if (hw->mac.set_lben) {
+               pfdtxgswc = rd32(hw, NGBE_PSRCTL);
+               pfdtxgswc |= NGBE_PSRCTL_LBENA;
+               wr32(hw, NGBE_PSRCTL, pfdtxgswc);
+               hw->mac.set_lben = false;
+       }
+}
+
 /**
  *  ngbe_set_mac_type - Sets MAC type
  *  @hw: pointer to the HW structure
@@ -711,6 +874,36 @@ s32 ngbe_set_mac_type(struct ngbe_hw *hw)
        return err;
 }
 
+/**
+ *  ngbe_enable_rx_dma - Enable the Rx DMA unit
+ *  @hw: pointer to hardware structure
+ *  @regval: register value to write to RXCTRL
+ *
+ *  Enables the Rx DMA unit
+ **/
+s32 ngbe_enable_rx_dma(struct ngbe_hw *hw, u32 regval)
+{
+       DEBUGFUNC("ngbe_enable_rx_dma");
+
+       /*
+        * Workaround silicon errata when enabling the Rx datapath.
+        * If traffic is incoming before we enable the Rx unit, it could hang
+        * the Rx DMA unit.  Therefore, make sure the security engine is
+        * completely disabled prior to enabling the Rx unit.
+        */
+
+       hw->mac.disable_sec_rx_path(hw);
+
+       if (regval & NGBE_PBRXCTL_ENA)
+               ngbe_enable_rx(hw);
+       else
+               ngbe_disable_rx(hw);
+
+       hw->mac.enable_sec_rx_path(hw);
+
+       return 0;
+}
+
 void ngbe_map_device_id(struct ngbe_hw *hw)
 {
        u16 oem = hw->sub_system_id & NGBE_OEM_MASK;
@@ -794,11 +987,15 @@ s32 ngbe_init_ops_pf(struct ngbe_hw *hw)
        /* MAC */
        mac->init_hw = ngbe_init_hw;
        mac->reset_hw = ngbe_reset_hw_em;
+       mac->start_hw = ngbe_start_hw;
+       mac->enable_rx_dma = ngbe_enable_rx_dma;
        mac->get_mac_addr = ngbe_get_mac_addr;
        mac->stop_hw = ngbe_stop_hw;
        mac->acquire_swfw_sync = ngbe_acquire_swfw_sync;
        mac->release_swfw_sync = ngbe_release_swfw_sync;
 
+       mac->disable_sec_rx_path = ngbe_disable_sec_rx_path;
+       mac->enable_sec_rx_path = ngbe_enable_sec_rx_path;
        /* RAR */
        mac->set_rar = ngbe_set_rar;
        mac->clear_rar = ngbe_clear_rar;
@@ -806,6 +1003,11 @@ s32 ngbe_init_ops_pf(struct ngbe_hw *hw)
        mac->set_vmdq = ngbe_set_vmdq;
        mac->clear_vmdq = ngbe_clear_vmdq;
 
+       /* Link */
+       mac->get_link_capabilities = ngbe_get_link_capabilities_em;
+       mac->check_link = ngbe_check_mac_link_em;
+       mac->setup_link = ngbe_setup_mac_link_em;
+
        /* Manageability interface */
        mac->init_thermal_sensor_thresh = ngbe_init_thermal_sensor_thresh;
        mac->check_overtemp = ngbe_mac_check_overtemp;
@@ -819,6 +1021,10 @@ s32 ngbe_init_ops_pf(struct ngbe_hw *hw)
        mac->max_rx_queues      = NGBE_EM_MAX_RX_QUEUES;
        mac->max_tx_queues      = NGBE_EM_MAX_TX_QUEUES;
 
+       mac->default_speeds = NGBE_LINK_SPEED_10M_FULL |
+                               NGBE_LINK_SPEED_100M_FULL |
+                               NGBE_LINK_SPEED_1GB_FULL;
+
        return 0;
 }
 
@@ -853,6 +1059,7 @@ s32 ngbe_init_shared_code(struct ngbe_hw *hw)
                status = NGBE_ERR_DEVICE_NOT_SUPPORTED;
                break;
        }
+       hw->mac.max_link_up_time = NGBE_LINK_UP_TIME;
 
        hw->bus.set_lan_id(hw);