iwl-power.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 Intel Corporation. All rights reserved.
  4. *
  5. * Portions of this file are derived from the ipw3945 project, as well
  6. * as portions of the ieee80211 subsystem header files.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of version 2 of the GNU General Public License as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  15. * more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  20. *
  21. * The full GNU General Public License is included in this distribution in the
  22. * file called LICENSE.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <ilw@linux.intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *****************************************************************************/
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/slab.h>
  31. #include <linux/init.h>
  32. #include <net/mac80211.h>
  33. #include "iwl-eeprom.h"
  34. #include "iwl-dev.h"
  35. #include "iwl-core.h"
  36. #include "iwl-io.h"
  37. #include "iwl-commands.h"
  38. #include "iwl-debug.h"
  39. #include "iwl-power.h"
  40. /*
  41. * Setting power level allows the card to go to sleep when not busy.
  42. *
  43. * We calculate a sleep command based on the required latency, which
  44. * we get from mac80211. In order to handle thermal throttling, we can
  45. * also use pre-defined power levels.
  46. */
  47. /*
  48. * This defines the old power levels. They are still used by default
  49. * (level 1) and for thermal throttle (levels 3 through 5)
  50. */
  51. struct iwl_power_vec_entry {
  52. struct iwl_powertable_cmd cmd;
  53. u8 no_dtim; /* number of skip dtim */
  54. };
  55. static void iwl_legacy_power_sleep_cam_cmd(struct iwl_priv *priv,
  56. struct iwl_powertable_cmd *cmd)
  57. {
  58. memset(cmd, 0, sizeof(*cmd));
  59. if (priv->power_data.pci_pm)
  60. cmd->flags |= IWL_POWER_PCI_PM_MSK;
  61. IWL_DEBUG_POWER(priv, "Sleep command for CAM\n");
  62. }
  63. static int
  64. iwl_legacy_set_power(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd)
  65. {
  66. IWL_DEBUG_POWER(priv, "Sending power/sleep command\n");
  67. IWL_DEBUG_POWER(priv, "Flags value = 0x%08X\n", cmd->flags);
  68. IWL_DEBUG_POWER(priv, "Tx timeout = %u\n",
  69. le32_to_cpu(cmd->tx_data_timeout));
  70. IWL_DEBUG_POWER(priv, "Rx timeout = %u\n",
  71. le32_to_cpu(cmd->rx_data_timeout));
  72. IWL_DEBUG_POWER(priv,
  73. "Sleep interval vector = { %d , %d , %d , %d , %d }\n",
  74. le32_to_cpu(cmd->sleep_interval[0]),
  75. le32_to_cpu(cmd->sleep_interval[1]),
  76. le32_to_cpu(cmd->sleep_interval[2]),
  77. le32_to_cpu(cmd->sleep_interval[3]),
  78. le32_to_cpu(cmd->sleep_interval[4]));
  79. return iwl_legacy_send_cmd_pdu(priv, POWER_TABLE_CMD,
  80. sizeof(struct iwl_powertable_cmd), cmd);
  81. }
  82. int
  83. iwl_legacy_power_set_mode(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd,
  84. bool force)
  85. {
  86. int ret;
  87. bool update_chains;
  88. lockdep_assert_held(&priv->mutex);
  89. /* Don't update the RX chain when chain noise calibration is running */
  90. update_chains = priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE ||
  91. priv->chain_noise_data.state == IWL_CHAIN_NOISE_ALIVE;
  92. if (!memcmp(&priv->power_data.sleep_cmd, cmd, sizeof(*cmd)) && !force)
  93. return 0;
  94. if (!iwl_legacy_is_ready_rf(priv))
  95. return -EIO;
  96. /* scan complete use sleep_power_next, need to be updated */
  97. memcpy(&priv->power_data.sleep_cmd_next, cmd, sizeof(*cmd));
  98. if (test_bit(STATUS_SCANNING, &priv->status) && !force) {
  99. IWL_DEBUG_INFO(priv, "Defer power set mode while scanning\n");
  100. return 0;
  101. }
  102. if (cmd->flags & IWL_POWER_DRIVER_ALLOW_SLEEP_MSK)
  103. set_bit(STATUS_POWER_PMI, &priv->status);
  104. ret = iwl_legacy_set_power(priv, cmd);
  105. if (!ret) {
  106. if (!(cmd->flags & IWL_POWER_DRIVER_ALLOW_SLEEP_MSK))
  107. clear_bit(STATUS_POWER_PMI, &priv->status);
  108. if (priv->cfg->ops->lib->update_chain_flags && update_chains)
  109. priv->cfg->ops->lib->update_chain_flags(priv);
  110. else if (priv->cfg->ops->lib->update_chain_flags)
  111. IWL_DEBUG_POWER(priv,
  112. "Cannot update the power, chain noise "
  113. "calibration running: %d\n",
  114. priv->chain_noise_data.state);
  115. memcpy(&priv->power_data.sleep_cmd, cmd, sizeof(*cmd));
  116. } else
  117. IWL_ERR(priv, "set power fail, ret = %d", ret);
  118. return ret;
  119. }
  120. int iwl_legacy_power_update_mode(struct iwl_priv *priv, bool force)
  121. {
  122. struct iwl_powertable_cmd cmd;
  123. iwl_legacy_power_sleep_cam_cmd(priv, &cmd);
  124. return iwl_legacy_power_set_mode(priv, &cmd, force);
  125. }
  126. EXPORT_SYMBOL(iwl_legacy_power_update_mode);
  127. /* initialize to default */
  128. void iwl_legacy_power_initialize(struct iwl_priv *priv)
  129. {
  130. u16 lctl = iwl_legacy_pcie_link_ctl(priv);
  131. priv->power_data.pci_pm = !(lctl & PCI_CFG_LINK_CTRL_VAL_L0S_EN);
  132. priv->power_data.debug_sleep_level_override = -1;
  133. memset(&priv->power_data.sleep_cmd, 0,
  134. sizeof(priv->power_data.sleep_cmd));
  135. }
  136. EXPORT_SYMBOL(iwl_legacy_power_initialize);