blob: 970c514623b93f802788357b3136941808bc79c4 [file] [log] [blame]
Mohamed Abbas5da4b552008-04-21 15:41:51 -07001/******************************************************************************
2 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07003 * Copyright(c) 2007 - 2011 Intel Corporation. All rights reserved.
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Mohamed Abbas5da4b552008-04-21 15:41:51 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28
29
30#include <linux/kernel.h>
31#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Mohamed Abbas5da4b552008-04-21 15:41:51 -070033#include <linux/init.h>
34
35#include <net/mac80211.h>
36
37#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070038#include "iwl-dev.h"
Wey-Yi Guy3f1e5f42011-06-03 13:52:40 -070039#include "iwl-agn.h"
Mohamed Abbas5da4b552008-04-21 15:41:51 -070040#include "iwl-core.h"
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -070041#include "iwl-io.h"
Tomas Winkler5a36ba02008-04-24 11:55:37 -070042#include "iwl-commands.h"
Mohamed Abbas5da4b552008-04-21 15:41:51 -070043#include "iwl-debug.h"
44#include "iwl-power.h"
Mohamed Abbas5da4b552008-04-21 15:41:51 -070045
46/*
Johannes Berge312c242009-08-07 15:41:51 -070047 * Setting power level allows the card to go to sleep when not busy.
Mohamed Abbas5da4b552008-04-21 15:41:51 -070048 *
Johannes Berge312c242009-08-07 15:41:51 -070049 * We calculate a sleep command based on the required latency, which
50 * we get from mac80211. In order to handle thermal throttling, we can
51 * also use pre-defined power levels.
Mohamed Abbas5da4b552008-04-21 15:41:51 -070052 */
53
Johannes Berge312c242009-08-07 15:41:51 -070054/*
Johannes Berge312c242009-08-07 15:41:51 -070055 * This defines the old power levels. They are still used by default
56 * (level 1) and for thermal throttle (levels 3 through 5)
57 */
58
59struct iwl_power_vec_entry {
60 struct iwl_powertable_cmd cmd;
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -070061 u8 no_dtim; /* number of skip dtim */
Johannes Berge312c242009-08-07 15:41:51 -070062};
63
64#define IWL_DTIM_RANGE_0_MAX 2
65#define IWL_DTIM_RANGE_1_MAX 10
Mohamed Abbas5da4b552008-04-21 15:41:51 -070066
Johannes Berg7af2c462009-05-08 13:44:38 -070067#define NOSLP cpu_to_le16(0), 0, 0
68#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Wey-Yi Guy35162ba2010-11-23 10:58:56 -080069#define ASLP (IWL_POWER_POWER_SAVE_ENA_MSK | \
70 IWL_POWER_POWER_MANAGEMENT_ENA_MSK | \
71 IWL_POWER_ADVANCE_PM_ENA_MSK)
72#define ASLP_TOUT(T) cpu_to_le32(T)
Johannes Berg7af2c462009-05-08 13:44:38 -070073#define TU_TO_USEC 1024
74#define SLP_TOUT(T) cpu_to_le32((T) * TU_TO_USEC)
75#define SLP_VEC(X0, X1, X2, X3, X4) {cpu_to_le32(X0), \
76 cpu_to_le32(X1), \
77 cpu_to_le32(X2), \
78 cpu_to_le32(X3), \
79 cpu_to_le32(X4)}
Mohamed Abbas5da4b552008-04-21 15:41:51 -070080/* default power management (not Tx power) table values */
Johannes Berge312c242009-08-07 15:41:51 -070081/* for DTIM period 0 through IWL_DTIM_RANGE_0_MAX */
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -070082/* DTIM 0 - 2 */
Johannes Berg7af2c462009-05-08 13:44:38 -070083static const struct iwl_power_vec_entry range_0[IWL_POWER_NUM] = {
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -070084 {{SLP, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 1, 2, 2, 0xFF)}, 0},
Mohamed Abbas5da4b552008-04-21 15:41:51 -070085 {{SLP, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(1, 2, 2, 2, 0xFF)}, 0},
86 {{SLP, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 2, 2, 2, 0xFF)}, 0},
87 {{SLP, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 2, 4, 4, 0xFF)}, 1},
88 {{SLP, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(2, 2, 4, 6, 0xFF)}, 2}
89};
90
91
Johannes Berge312c242009-08-07 15:41:51 -070092/* for DTIM period IWL_DTIM_RANGE_0_MAX + 1 through IWL_DTIM_RANGE_1_MAX */
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -070093/* DTIM 3 - 10 */
Johannes Berg7af2c462009-05-08 13:44:38 -070094static const struct iwl_power_vec_entry range_1[IWL_POWER_NUM] = {
Mohamed Abbas5da4b552008-04-21 15:41:51 -070095 {{SLP, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
96 {{SLP, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(1, 2, 3, 4, 7)}, 0},
97 {{SLP, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 4, 6, 7, 9)}, 0},
98 {{SLP, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 4, 6, 9, 10)}, 1},
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -070099 {{SLP, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(2, 4, 6, 10, 10)}, 2}
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700100};
101
Johannes Berge312c242009-08-07 15:41:51 -0700102/* for DTIM period > IWL_DTIM_RANGE_1_MAX */
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700103/* DTIM 11 - */
Johannes Berg7af2c462009-05-08 13:44:38 -0700104static const struct iwl_power_vec_entry range_2[IWL_POWER_NUM] = {
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700105 {{SLP, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
106 {{SLP, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
107 {{SLP, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
108 {{SLP, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
109 {{SLP, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
110};
111
Wey-Yi Guy35162ba2010-11-23 10:58:56 -0800112/* advance power management */
113/* DTIM 0 - 2 */
114static const struct iwl_power_vec_entry apm_range_0[IWL_POWER_NUM] = {
115 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
116 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
117 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
118 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
119 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
120 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
121 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
122 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
123 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
124 SLP_VEC(1, 2, 6, 8, 0xFF), ASLP_TOUT(2)}, 2}
125};
126
127
128/* for DTIM period IWL_DTIM_RANGE_0_MAX + 1 through IWL_DTIM_RANGE_1_MAX */
129/* DTIM 3 - 10 */
130static const struct iwl_power_vec_entry apm_range_1[IWL_POWER_NUM] = {
131 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
132 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
133 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
134 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
135 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
136 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
137 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
138 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
139 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
140 SLP_VEC(1, 2, 6, 8, 0xFF), 0}, 2}
141};
142
143/* for DTIM period > IWL_DTIM_RANGE_1_MAX */
144/* DTIM 11 - */
145static const struct iwl_power_vec_entry apm_range_2[IWL_POWER_NUM] = {
146 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
147 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
148 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
149 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
150 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
151 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
152 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
153 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
154 {{ASLP, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
155 SLP_VEC(1, 2, 6, 8, 0xFF), ASLP_TOUT(2)}, 2}
156};
157
Johannes Berge312c242009-08-07 15:41:51 -0700158static void iwl_static_sleep_cmd(struct iwl_priv *priv,
159 struct iwl_powertable_cmd *cmd,
160 enum iwl_power_level lvl, int period)
161{
162 const struct iwl_power_vec_entry *table;
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700163 int max_sleep[IWL_POWER_VEC_SIZE] = { 0 };
164 int i;
165 u8 skip;
166 u32 slp_itrvl;
Johannes Berge312c242009-08-07 15:41:51 -0700167
Wey-Yi Guy35162ba2010-11-23 10:58:56 -0800168 if (priv->cfg->adv_pm) {
169 table = apm_range_2;
170 if (period <= IWL_DTIM_RANGE_1_MAX)
171 table = apm_range_1;
172 if (period <= IWL_DTIM_RANGE_0_MAX)
173 table = apm_range_0;
174 } else {
175 table = range_2;
176 if (period <= IWL_DTIM_RANGE_1_MAX)
177 table = range_1;
178 if (period <= IWL_DTIM_RANGE_0_MAX)
179 table = range_0;
180 }
Johannes Berge312c242009-08-07 15:41:51 -0700181
Johannes Berg3e41ace2011-04-18 09:12:37 -0700182 if (WARN_ON(lvl < 0 || lvl >= IWL_POWER_NUM))
183 memset(cmd, 0, sizeof(*cmd));
184 else
185 *cmd = table[lvl].cmd;
Johannes Berge312c242009-08-07 15:41:51 -0700186
187 if (period == 0) {
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700188 skip = 0;
Johannes Berge312c242009-08-07 15:41:51 -0700189 period = 1;
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700190 for (i = 0; i < IWL_POWER_VEC_SIZE; i++)
191 max_sleep[i] = 1;
192
Johannes Berge312c242009-08-07 15:41:51 -0700193 } else {
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700194 skip = table[lvl].no_dtim;
195 for (i = 0; i < IWL_POWER_VEC_SIZE; i++)
196 max_sleep[i] = le32_to_cpu(cmd->sleep_interval[i]);
197 max_sleep[IWL_POWER_VEC_SIZE - 1] = skip + 1;
Johannes Berge312c242009-08-07 15:41:51 -0700198 }
199
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700200 slp_itrvl = le32_to_cpu(cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1]);
201 /* figure out the listen interval based on dtim period and skip */
202 if (slp_itrvl == 0xFF)
203 cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1] =
204 cpu_to_le32(period * (skip + 1));
205
206 slp_itrvl = le32_to_cpu(cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1]);
207 if (slp_itrvl > period)
208 cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1] =
209 cpu_to_le32((slp_itrvl / period) * period);
210
211 if (skip)
Johannes Berge312c242009-08-07 15:41:51 -0700212 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700213 else
Johannes Berge312c242009-08-07 15:41:51 -0700214 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
Johannes Berge312c242009-08-07 15:41:51 -0700215
Wey-Yi Guy1f37daf2010-11-23 10:58:55 -0800216 if (priv->cfg->base_params->shadow_reg_enable)
217 cmd->flags |= IWL_POWER_SHADOW_REG_ENA;
218 else
219 cmd->flags &= ~IWL_POWER_SHADOW_REG_ENA;
220
Stanislaw Gruszka88e58fc2011-01-28 16:47:47 +0100221 if (iwl_advanced_bt_coexist(priv)) {
Wey-Yi Guye3661762010-11-23 10:58:54 -0800222 if (!priv->cfg->bt_params->bt_sco_disable)
223 cmd->flags |= IWL_POWER_BT_SCO_ENA;
224 else
225 cmd->flags &= ~IWL_POWER_BT_SCO_ENA;
226 }
227
228
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700229 slp_itrvl = le32_to_cpu(cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1]);
Wey-Yi Guy570af862009-10-23 13:42:33 -0700230 if (slp_itrvl > IWL_CONN_MAX_LISTEN_INTERVAL)
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700231 cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1] =
Wey-Yi Guy570af862009-10-23 13:42:33 -0700232 cpu_to_le32(IWL_CONN_MAX_LISTEN_INTERVAL);
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700233
234 /* enforce max sleep interval */
235 for (i = IWL_POWER_VEC_SIZE - 1; i >= 0 ; i--) {
236 if (le32_to_cpu(cmd->sleep_interval[i]) >
237 (max_sleep[i] * period))
238 cmd->sleep_interval[i] =
239 cpu_to_le32(max_sleep[i] * period);
240 if (i != (IWL_POWER_VEC_SIZE - 1)) {
241 if (le32_to_cpu(cmd->sleep_interval[i]) >
242 le32_to_cpu(cmd->sleep_interval[i+1]))
243 cmd->sleep_interval[i] =
244 cmd->sleep_interval[i+1];
245 }
246 }
Johannes Berge312c242009-08-07 15:41:51 -0700247
Wey-Yi Guyd57fa992011-06-10 11:23:36 -0700248 if (priv->power_data.bus_pm)
Johannes Berge312c242009-08-07 15:41:51 -0700249 cmd->flags |= IWL_POWER_PCI_PM_MSK;
250 else
251 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
252
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700253 IWL_DEBUG_POWER(priv, "numSkipDtim = %u, dtimPeriod = %d\n",
254 skip, period);
Johannes Berge312c242009-08-07 15:41:51 -0700255 IWL_DEBUG_POWER(priv, "Sleep command for index %d\n", lvl + 1);
256}
257
Johannes Berge312c242009-08-07 15:41:51 -0700258static void iwl_power_sleep_cam_cmd(struct iwl_priv *priv,
259 struct iwl_powertable_cmd *cmd)
Mohamed Abbasca579612008-07-18 13:52:57 +0800260{
Johannes Berge312c242009-08-07 15:41:51 -0700261 memset(cmd, 0, sizeof(*cmd));
262
Wey-Yi Guyd57fa992011-06-10 11:23:36 -0700263 if (priv->power_data.bus_pm)
Johannes Berge312c242009-08-07 15:41:51 -0700264 cmd->flags |= IWL_POWER_PCI_PM_MSK;
265
266 IWL_DEBUG_POWER(priv, "Sleep command for CAM\n");
Mohamed Abbasca579612008-07-18 13:52:57 +0800267}
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700268
Johannes Berge312c242009-08-07 15:41:51 -0700269static void iwl_power_fill_sleep_cmd(struct iwl_priv *priv,
270 struct iwl_powertable_cmd *cmd,
271 int dynps_ms, int wakeup_period)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700272{
Johannes Berg4c561a02009-08-28 09:44:48 -0700273 /*
274 * These are the original power level 3 sleep successions. The
275 * device may behave better with such succession and was also
276 * only tested with that. Just like the original sleep commands,
277 * also adjust the succession here to the wakeup_period below.
278 * The ranges are the same as for the sleep commands, 0-2, 3-9
279 * and >10, which is selected based on the DTIM interval for
280 * the sleep index but here we use the wakeup period since that
281 * is what we need to do for the latency requirements.
282 */
283 static const u8 slp_succ_r0[IWL_POWER_VEC_SIZE] = { 2, 2, 2, 2, 2 };
284 static const u8 slp_succ_r1[IWL_POWER_VEC_SIZE] = { 2, 4, 6, 7, 9 };
285 static const u8 slp_succ_r2[IWL_POWER_VEC_SIZE] = { 2, 7, 9, 9, 0xFF };
286 const u8 *slp_succ = slp_succ_r0;
Tomas Winklere7b63582008-09-03 11:26:49 +0800287 int i;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700288
Johannes Berg4c561a02009-08-28 09:44:48 -0700289 if (wakeup_period > IWL_DTIM_RANGE_0_MAX)
290 slp_succ = slp_succ_r1;
291 if (wakeup_period > IWL_DTIM_RANGE_1_MAX)
292 slp_succ = slp_succ_r2;
293
Johannes Berge312c242009-08-07 15:41:51 -0700294 memset(cmd, 0, sizeof(*cmd));
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700295
Johannes Berge312c242009-08-07 15:41:51 -0700296 cmd->flags = IWL_POWER_DRIVER_ALLOW_SLEEP_MSK |
297 IWL_POWER_FAST_PD; /* no use seeing frames for others */
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700298
Wey-Yi Guyd57fa992011-06-10 11:23:36 -0700299 if (priv->power_data.bus_pm)
Johannes Berge312c242009-08-07 15:41:51 -0700300 cmd->flags |= IWL_POWER_PCI_PM_MSK;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700301
Wey-Yi Guy1f37daf2010-11-23 10:58:55 -0800302 if (priv->cfg->base_params->shadow_reg_enable)
303 cmd->flags |= IWL_POWER_SHADOW_REG_ENA;
304 else
305 cmd->flags &= ~IWL_POWER_SHADOW_REG_ENA;
306
Stanislaw Gruszka88e58fc2011-01-28 16:47:47 +0100307 if (iwl_advanced_bt_coexist(priv)) {
Wey-Yi Guye3661762010-11-23 10:58:54 -0800308 if (!priv->cfg->bt_params->bt_sco_disable)
309 cmd->flags |= IWL_POWER_BT_SCO_ENA;
310 else
311 cmd->flags &= ~IWL_POWER_BT_SCO_ENA;
312 }
313
Johannes Berge312c242009-08-07 15:41:51 -0700314 cmd->rx_data_timeout = cpu_to_le32(1000 * dynps_ms);
315 cmd->tx_data_timeout = cpu_to_le32(1000 * dynps_ms);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700316
Winkler, Tomas5cd19c52009-01-19 15:30:21 -0800317 for (i = 0; i < IWL_POWER_VEC_SIZE; i++)
Johannes Berg4c561a02009-08-28 09:44:48 -0700318 cmd->sleep_interval[i] =
319 cpu_to_le32(min_t(int, slp_succ[i], wakeup_period));
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700320
Johannes Berge312c242009-08-07 15:41:51 -0700321 IWL_DEBUG_POWER(priv, "Automatic sleep command\n");
322}
323
324static int iwl_set_power(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd)
325{
326 IWL_DEBUG_POWER(priv, "Sending power/sleep command\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800327 IWL_DEBUG_POWER(priv, "Flags value = 0x%08X\n", cmd->flags);
328 IWL_DEBUG_POWER(priv, "Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
329 IWL_DEBUG_POWER(priv, "Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
330 IWL_DEBUG_POWER(priv, "Sleep interval vector = { %d , %d , %d , %d , %d }\n",
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700331 le32_to_cpu(cmd->sleep_interval[0]),
332 le32_to_cpu(cmd->sleep_interval[1]),
333 le32_to_cpu(cmd->sleep_interval[2]),
334 le32_to_cpu(cmd->sleep_interval[3]),
335 le32_to_cpu(cmd->sleep_interval[4]));
336
Johannes Berge312c242009-08-07 15:41:51 -0700337 return iwl_send_cmd_pdu(priv, POWER_TABLE_CMD,
338 sizeof(struct iwl_powertable_cmd), cmd);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700339}
340
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200341static void iwl_power_build_cmd(struct iwl_priv *priv,
342 struct iwl_powertable_cmd *cmd)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700343{
Johannes Berg4d695922010-01-21 05:24:04 -0800344 bool enabled = priv->hw->conf.flags & IEEE80211_CONF_PS;
Johannes Berge312c242009-08-07 15:41:51 -0700345 int dtimper;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700346
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200347 dtimper = priv->hw->conf.ps_dtim_period ?: 1;
348
Wey-Yi Guy23c0fcc2011-04-01 16:29:53 -0700349 if (priv->hw->conf.flags & IEEE80211_CONF_IDLE)
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200350 iwl_static_sleep_cmd(priv, cmd, IWL_POWER_INDEX_5, 20);
Wey-Yi Guyf42e7662011-04-18 09:30:09 -0700351 else if (iwl_tt_is_low_power_state(priv)) {
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200352 /* in thermal throttling low power state */
353 iwl_static_sleep_cmd(priv, cmd,
Wey-Yi Guyf42e7662011-04-18 09:30:09 -0700354 iwl_tt_current_power_mode(priv), dtimper);
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200355 } else if (!enabled)
356 iwl_power_sleep_cam_cmd(priv, cmd);
357 else if (priv->power_data.debug_sleep_level_override >= 0)
358 iwl_static_sleep_cmd(priv, cmd,
359 priv->power_data.debug_sleep_level_override,
360 dtimper);
Wey-Yi Guy3f1e5f42011-06-03 13:52:40 -0700361 else if (iwlagn_mod_params.no_sleep_autoadjust)
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200362 iwl_static_sleep_cmd(priv, cmd, IWL_POWER_INDEX_1, dtimper);
363 else
364 iwl_power_fill_sleep_cmd(priv, cmd,
365 priv->hw->conf.dynamic_ps_timeout,
366 priv->hw->conf.max_sleep_period);
367}
368
369int iwl_power_set_mode(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd,
370 bool force)
371{
372 int ret;
373 bool update_chains;
374
375 lockdep_assert_held(&priv->mutex);
376
Grumbach, Emmanuel04816442008-09-03 11:26:53 +0800377 /* Don't update the RX chain when chain noise calibration is running */
Winkler, Tomasa71c8f62008-11-07 09:58:37 -0800378 update_chains = priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE ||
379 priv->chain_noise_data.state == IWL_CHAIN_NOISE_ALIVE;
Grumbach, Emmanuel04816442008-09-03 11:26:53 +0800380
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200381 if (!memcmp(&priv->power_data.sleep_cmd, cmd, sizeof(*cmd)) && !force)
382 return 0;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700383
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200384 if (!iwl_is_ready_rf(priv))
385 return -EIO;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700386
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200387 /* scan complete use sleep_power_next, need to be updated */
388 memcpy(&priv->power_data.sleep_cmd_next, cmd, sizeof(*cmd));
389 if (test_bit(STATUS_SCANNING, &priv->status) && !force) {
390 IWL_DEBUG_INFO(priv, "Defer power set mode while scanning\n");
391 return 0;
392 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700393
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200394 if (cmd->flags & IWL_POWER_DRIVER_ALLOW_SLEEP_MSK)
395 set_bit(STATUS_POWER_PMI, &priv->status);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700396
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200397 ret = iwl_set_power(priv, cmd);
398 if (!ret) {
399 if (!(cmd->flags & IWL_POWER_DRIVER_ALLOW_SLEEP_MSK))
400 clear_bit(STATUS_POWER_PMI, &priv->status);
401
402 if (priv->cfg->ops->lib->update_chain_flags && update_chains)
403 priv->cfg->ops->lib->update_chain_flags(priv);
404 else if (priv->cfg->ops->lib->update_chain_flags)
405 IWL_DEBUG_POWER(priv,
Wey-Yi Guy3a780d22009-08-07 15:41:47 -0700406 "Cannot update the power, chain noise "
Winkler, Tomasa71c8f62008-11-07 09:58:37 -0800407 "calibration running: %d\n",
408 priv->chain_noise_data.state);
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200409
410 memcpy(&priv->power_data.sleep_cmd, cmd, sizeof(*cmd));
411 } else
412 IWL_ERR(priv, "set power fail, ret = %d", ret);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700413
414 return ret;
415}
Stanislaw Gruszkaac4f5452010-10-22 17:04:29 +0200416
417int iwl_power_update_mode(struct iwl_priv *priv, bool force)
418{
419 struct iwl_powertable_cmd cmd;
420
421 iwl_power_build_cmd(priv, &cmd);
422 return iwl_power_set_mode(priv, &cmd, force);
423}
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700424
Tomas Winklera96a27f2008-10-23 23:48:56 -0700425/* initialize to default */
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700426void iwl_power_initialize(struct iwl_priv *priv)
427{
Wey-Yi Guyd57fa992011-06-10 11:23:36 -0700428 priv->power_data.bus_pm = priv->bus.ops->get_pm_support(&priv->bus);
Johannes Berge312c242009-08-07 15:41:51 -0700429
430 priv->power_data.debug_sleep_level_override = -1;
431
432 memset(&priv->power_data.sleep_cmd, 0,
433 sizeof(priv->power_data.sleep_cmd));
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700434}