iwlagn: introduce silent grabbing of NIC access
authorJohannes Berg <johannes.berg@intel.com>
Tue, 19 Apr 2011 14:42:03 +0000 (07:42 -0700)
committerWey-Yi Guy <wey-yi.w.guy@intel.com>
Sat, 30 Apr 2011 15:39:22 +0000 (08:39 -0700)
There are a few cases like the WoWLAN support
I'm writing that require attempting to access
the NIC when it is known that it might not be
accessible, e.g. after the system woke up and
the platform might have reset the device.

To avoid messages in this case, introduce the
new function iwl_grab_nic_access_silent(), it
will only return an error status.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
drivers/net/wireless/iwlwifi/iwl-io.c
drivers/net/wireless/iwlwifi/iwl-io.h

index 993b3df1b72b6d7c3b17a19100de250696f213ba..aa4a90674452ef218c68262d748e835a9b9bc2be 100644 (file)
@@ -73,10 +73,9 @@ int iwl_poll_bit(struct iwl_priv *priv, u32 addr,
        return -ETIMEDOUT;
 }
 
-int iwl_grab_nic_access(struct iwl_priv *priv)
+int iwl_grab_nic_access_silent(struct iwl_priv *priv)
 {
        int ret;
-       u32 val;
 
        lockdep_assert_held(&priv->reg_lock);
 
@@ -107,9 +106,6 @@ int iwl_grab_nic_access(struct iwl_priv *priv)
                           (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
                            CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000);
        if (ret < 0) {
-               val = iwl_read32(priv, CSR_GP_CNTRL);
-               IWL_ERR(priv,
-                       "MAC is in deep sleep!. CSR_GP_CNTRL = 0x%08X\n", val);
                iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_FORCE_NMI);
                return -EIO;
        }
@@ -117,6 +113,18 @@ int iwl_grab_nic_access(struct iwl_priv *priv)
        return 0;
 }
 
+int iwl_grab_nic_access(struct iwl_priv *priv)
+{
+       int ret = iwl_grab_nic_access_silent(priv);
+       if (ret) {
+               u32 val = iwl_read32(priv, CSR_GP_CNTRL);
+               IWL_ERR(priv,
+                       "MAC is in deep sleep!. CSR_GP_CNTRL = 0x%08X\n", val);
+       }
+
+       return ret;
+}
+
 void iwl_release_nic_access(struct iwl_priv *priv)
 {
        lockdep_assert_held(&priv->reg_lock);
index 262e0262496d670fac4087cb6f7f422869092d4a..869edc580ec6c461ae0f01da7b968a0de5af868e 100644 (file)
@@ -62,6 +62,7 @@ int iwl_poll_bit(struct iwl_priv *priv, u32 addr,
 int iwl_poll_direct_bit(struct iwl_priv *priv, u32 addr, u32 mask,
                        int timeout);
 
+int iwl_grab_nic_access_silent(struct iwl_priv *priv);
 int iwl_grab_nic_access(struct iwl_priv *priv);
 void iwl_release_nic_access(struct iwl_priv *priv);
 
This page took 0.027672 seconds and 5 git commands to generate.