1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
4 * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
5 * Copyright (C) 2019 Intel Corporation
7 * Portions of this file are derived from the ipw3945 project, as well
8 * as portions of the ieee80211 subsystem header files.
10 * Contact Information:
11 * Intel Linux Wireless <linuxwifi@intel.com>
12 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
13 *****************************************************************************/
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <net/mac80211.h>
21 #include "iwl-debug.h"
22 #include "iwl-trans.h"
23 #include "iwl-modparams.h"
29 static bool force_cam
= true;
30 module_param(force_cam
, bool, 0644);
31 MODULE_PARM_DESC(force_cam
, "force continuously aware mode (no power saving at all)");
34 * Setting power level allows the card to go to sleep when not busy.
36 * We calculate a sleep command based on the required latency, which
37 * we get from mac80211. In order to handle thermal throttling, we can
38 * also use pre-defined power levels.
42 * This defines the old power levels. They are still used by default
43 * (level 1) and for thermal throttle (levels 3 through 5)
46 struct iwl_power_vec_entry
{
47 struct iwl_powertable_cmd cmd
;
48 u8 no_dtim
; /* number of skip dtim */
51 #define IWL_DTIM_RANGE_0_MAX 2
52 #define IWL_DTIM_RANGE_1_MAX 10
54 #define NOSLP cpu_to_le16(0), 0, 0
55 #define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
56 #define ASLP (IWL_POWER_POWER_SAVE_ENA_MSK | \
57 IWL_POWER_POWER_MANAGEMENT_ENA_MSK | \
58 IWL_POWER_ADVANCE_PM_ENA_MSK)
59 #define ASLP_TOUT(T) cpu_to_le32(T)
60 #define TU_TO_USEC 1024
61 #define SLP_TOUT(T) cpu_to_le32((T) * TU_TO_USEC)
62 #define SLP_VEC(X0, X1, X2, X3, X4) {cpu_to_le32(X0), \
67 /* default power management (not Tx power) table values */
68 /* for DTIM period 0 through IWL_DTIM_RANGE_0_MAX */
70 static const struct iwl_power_vec_entry range_0
[IWL_POWER_NUM
] = {
71 {{SLP
, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 1, 2, 2, 0xFF)}, 0},
72 {{SLP
, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(1, 2, 2, 2, 0xFF)}, 0},
73 {{SLP
, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 2, 2, 2, 0xFF)}, 0},
74 {{SLP
, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 2, 4, 4, 0xFF)}, 1},
75 {{SLP
, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(2, 2, 4, 6, 0xFF)}, 2}
79 /* for DTIM period IWL_DTIM_RANGE_0_MAX + 1 through IWL_DTIM_RANGE_1_MAX */
81 static const struct iwl_power_vec_entry range_1
[IWL_POWER_NUM
] = {
82 {{SLP
, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
83 {{SLP
, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(1, 2, 3, 4, 7)}, 0},
84 {{SLP
, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 4, 6, 7, 9)}, 0},
85 {{SLP
, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 4, 6, 9, 10)}, 1},
86 {{SLP
, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(2, 4, 6, 10, 10)}, 2}
89 /* for DTIM period > IWL_DTIM_RANGE_1_MAX */
91 static const struct iwl_power_vec_entry range_2
[IWL_POWER_NUM
] = {
92 {{SLP
, SLP_TOUT(200), SLP_TOUT(500), SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
93 {{SLP
, SLP_TOUT(200), SLP_TOUT(300), SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
94 {{SLP
, SLP_TOUT(50), SLP_TOUT(100), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
95 {{SLP
, SLP_TOUT(50), SLP_TOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
96 {{SLP
, SLP_TOUT(25), SLP_TOUT(25), SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
99 /* advance power management */
101 static const struct iwl_power_vec_entry apm_range_0
[IWL_POWER_NUM
] = {
102 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
103 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
104 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
105 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
106 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
107 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
108 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
109 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
110 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
111 SLP_VEC(1, 2, 6, 8, 0xFF), ASLP_TOUT(2)}, 2}
115 /* for DTIM period IWL_DTIM_RANGE_0_MAX + 1 through IWL_DTIM_RANGE_1_MAX */
117 static const struct iwl_power_vec_entry apm_range_1
[IWL_POWER_NUM
] = {
118 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
119 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
120 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
121 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
122 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
123 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
124 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
125 SLP_VEC(1, 2, 4, 6, 0xFF), 0}, 0},
126 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
127 SLP_VEC(1, 2, 6, 8, 0xFF), 0}, 2}
130 /* for DTIM period > IWL_DTIM_RANGE_1_MAX */
132 static const struct iwl_power_vec_entry apm_range_2
[IWL_POWER_NUM
] = {
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, 4, 6, 0xFF), 0}, 0},
141 {{ASLP
, 0, 0, ASLP_TOUT(50), ASLP_TOUT(50),
142 SLP_VEC(1, 2, 6, 8, 0xFF), ASLP_TOUT(2)}, 2}
145 static void iwl_static_sleep_cmd(struct iwl_priv
*priv
,
146 struct iwl_powertable_cmd
*cmd
,
147 enum iwl_power_level lvl
, int period
)
149 const struct iwl_power_vec_entry
*table
;
150 int max_sleep
[IWL_POWER_VEC_SIZE
] = { 0 };
155 if (priv
->lib
->adv_pm
) {
157 if (period
<= IWL_DTIM_RANGE_1_MAX
)
159 if (period
<= IWL_DTIM_RANGE_0_MAX
)
163 if (period
<= IWL_DTIM_RANGE_1_MAX
)
165 if (period
<= IWL_DTIM_RANGE_0_MAX
)
169 if (WARN_ON(lvl
< 0 || lvl
>= IWL_POWER_NUM
))
170 memset(cmd
, 0, sizeof(*cmd
));
172 *cmd
= table
[lvl
].cmd
;
177 for (i
= 0; i
< IWL_POWER_VEC_SIZE
; i
++)
181 skip
= table
[lvl
].no_dtim
;
182 for (i
= 0; i
< IWL_POWER_VEC_SIZE
; i
++)
183 max_sleep
[i
] = le32_to_cpu(cmd
->sleep_interval
[i
]);
184 max_sleep
[IWL_POWER_VEC_SIZE
- 1] = skip
+ 1;
187 slp_itrvl
= le32_to_cpu(cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1]);
188 /* figure out the listen interval based on dtim period and skip */
189 if (slp_itrvl
== 0xFF)
190 cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1] =
191 cpu_to_le32(period
* (skip
+ 1));
193 slp_itrvl
= le32_to_cpu(cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1]);
194 if (slp_itrvl
> period
)
195 cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1] =
196 cpu_to_le32((slp_itrvl
/ period
) * period
);
199 cmd
->flags
|= IWL_POWER_SLEEP_OVER_DTIM_MSK
;
201 cmd
->flags
&= ~IWL_POWER_SLEEP_OVER_DTIM_MSK
;
203 if (priv
->trans
->trans_cfg
->base_params
->shadow_reg_enable
)
204 cmd
->flags
|= IWL_POWER_SHADOW_REG_ENA
;
206 cmd
->flags
&= ~IWL_POWER_SHADOW_REG_ENA
;
208 if (iwl_advanced_bt_coexist(priv
)) {
209 if (!priv
->lib
->bt_params
->bt_sco_disable
)
210 cmd
->flags
|= IWL_POWER_BT_SCO_ENA
;
212 cmd
->flags
&= ~IWL_POWER_BT_SCO_ENA
;
216 slp_itrvl
= le32_to_cpu(cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1]);
217 if (slp_itrvl
> IWL_CONN_MAX_LISTEN_INTERVAL
)
218 cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1] =
219 cpu_to_le32(IWL_CONN_MAX_LISTEN_INTERVAL
);
221 /* enforce max sleep interval */
222 for (i
= IWL_POWER_VEC_SIZE
- 1; i
>= 0 ; i
--) {
223 if (le32_to_cpu(cmd
->sleep_interval
[i
]) >
224 (max_sleep
[i
] * period
))
225 cmd
->sleep_interval
[i
] =
226 cpu_to_le32(max_sleep
[i
] * period
);
227 if (i
!= (IWL_POWER_VEC_SIZE
- 1)) {
228 if (le32_to_cpu(cmd
->sleep_interval
[i
]) >
229 le32_to_cpu(cmd
->sleep_interval
[i
+1]))
230 cmd
->sleep_interval
[i
] =
231 cmd
->sleep_interval
[i
+1];
235 if (priv
->power_data
.bus_pm
)
236 cmd
->flags
|= IWL_POWER_PCI_PM_MSK
;
238 cmd
->flags
&= ~IWL_POWER_PCI_PM_MSK
;
240 IWL_DEBUG_POWER(priv
, "numSkipDtim = %u, dtimPeriod = %d\n",
242 /* The power level here is 0-4 (used as array index), but user expects
243 to see 1-5 (according to spec). */
244 IWL_DEBUG_POWER(priv
, "Sleep command for index %d\n", lvl
+ 1);
247 static void iwl_power_sleep_cam_cmd(struct iwl_priv
*priv
,
248 struct iwl_powertable_cmd
*cmd
)
250 memset(cmd
, 0, sizeof(*cmd
));
252 if (priv
->power_data
.bus_pm
)
253 cmd
->flags
|= IWL_POWER_PCI_PM_MSK
;
255 IWL_DEBUG_POWER(priv
, "Sleep command for CAM\n");
258 static int iwl_set_power(struct iwl_priv
*priv
, struct iwl_powertable_cmd
*cmd
)
260 IWL_DEBUG_POWER(priv
, "Sending power/sleep command\n");
261 IWL_DEBUG_POWER(priv
, "Flags value = 0x%08X\n", cmd
->flags
);
262 IWL_DEBUG_POWER(priv
, "Tx timeout = %u\n", le32_to_cpu(cmd
->tx_data_timeout
));
263 IWL_DEBUG_POWER(priv
, "Rx timeout = %u\n", le32_to_cpu(cmd
->rx_data_timeout
));
264 IWL_DEBUG_POWER(priv
, "Sleep interval vector = { %d , %d , %d , %d , %d }\n",
265 le32_to_cpu(cmd
->sleep_interval
[0]),
266 le32_to_cpu(cmd
->sleep_interval
[1]),
267 le32_to_cpu(cmd
->sleep_interval
[2]),
268 le32_to_cpu(cmd
->sleep_interval
[3]),
269 le32_to_cpu(cmd
->sleep_interval
[4]));
271 return iwl_dvm_send_cmd_pdu(priv
, POWER_TABLE_CMD
, 0,
272 sizeof(struct iwl_powertable_cmd
), cmd
);
275 static void iwl_power_build_cmd(struct iwl_priv
*priv
,
276 struct iwl_powertable_cmd
*cmd
)
278 bool enabled
= priv
->hw
->conf
.flags
& IEEE80211_CONF_PS
;
282 iwl_power_sleep_cam_cmd(priv
, cmd
);
286 dtimper
= priv
->hw
->conf
.ps_dtim_period
?: 1;
289 iwl_static_sleep_cmd(priv
, cmd
, IWL_POWER_INDEX_5
, dtimper
);
290 else if (!priv
->lib
->no_idle_support
&&
291 priv
->hw
->conf
.flags
& IEEE80211_CONF_IDLE
)
292 iwl_static_sleep_cmd(priv
, cmd
, IWL_POWER_INDEX_5
, 20);
293 else if (iwl_tt_is_low_power_state(priv
)) {
294 /* in thermal throttling low power state */
295 iwl_static_sleep_cmd(priv
, cmd
,
296 iwl_tt_current_power_mode(priv
), dtimper
);
298 iwl_power_sleep_cam_cmd(priv
, cmd
);
299 else if (priv
->power_data
.debug_sleep_level_override
>= 0)
300 iwl_static_sleep_cmd(priv
, cmd
,
301 priv
->power_data
.debug_sleep_level_override
,
304 /* Note that the user parameter is 1-5 (according to spec),
305 but we pass 0-4 because it acts as an array index. */
306 if (iwlwifi_mod_params
.power_level
> IWL_POWER_INDEX_1
&&
307 iwlwifi_mod_params
.power_level
<= IWL_POWER_NUM
)
308 iwl_static_sleep_cmd(priv
, cmd
,
309 iwlwifi_mod_params
.power_level
- 1, dtimper
);
311 iwl_static_sleep_cmd(priv
, cmd
,
312 IWL_POWER_INDEX_1
, dtimper
);
316 int iwl_power_set_mode(struct iwl_priv
*priv
, struct iwl_powertable_cmd
*cmd
,
322 lockdep_assert_held(&priv
->mutex
);
324 /* Don't update the RX chain when chain noise calibration is running */
325 update_chains
= priv
->chain_noise_data
.state
== IWL_CHAIN_NOISE_DONE
||
326 priv
->chain_noise_data
.state
== IWL_CHAIN_NOISE_ALIVE
;
328 if (!memcmp(&priv
->power_data
.sleep_cmd
, cmd
, sizeof(*cmd
)) && !force
)
331 if (!iwl_is_ready_rf(priv
))
334 /* scan complete use sleep_power_next, need to be updated */
335 memcpy(&priv
->power_data
.sleep_cmd_next
, cmd
, sizeof(*cmd
));
336 if (test_bit(STATUS_SCANNING
, &priv
->status
) && !force
) {
337 IWL_DEBUG_INFO(priv
, "Defer power set mode while scanning\n");
341 if (cmd
->flags
& IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
)
342 iwl_dvm_set_pmi(priv
, true);
344 ret
= iwl_set_power(priv
, cmd
);
346 if (!(cmd
->flags
& IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
))
347 iwl_dvm_set_pmi(priv
, false);
350 iwl_update_chain_flags(priv
);
352 IWL_DEBUG_POWER(priv
,
353 "Cannot update the power, chain noise "
354 "calibration running: %d\n",
355 priv
->chain_noise_data
.state
);
357 memcpy(&priv
->power_data
.sleep_cmd
, cmd
, sizeof(*cmd
));
359 IWL_ERR(priv
, "set power fail, ret = %d\n", ret
);
364 int iwl_power_update_mode(struct iwl_priv
*priv
, bool force
)
366 struct iwl_powertable_cmd cmd
;
368 iwl_power_build_cmd(priv
, &cmd
);
369 return iwl_power_set_mode(priv
, &cmd
, force
);
372 /* initialize to default */
373 void iwl_power_initialize(struct iwl_priv
*priv
)
375 priv
->power_data
.bus_pm
= priv
->trans
->pm_support
;
377 priv
->power_data
.debug_sleep_level_override
= -1;
379 memset(&priv
->power_data
.sleep_cmd
, 0,
380 sizeof(priv
->power_data
.sleep_cmd
));