1 /******************************************************************************
3 * Copyright(c) 2007 - 2011 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
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.
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
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
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
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 *****************************************************************************/
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
35 #include <net/mac80211.h>
37 #include "iwl-eeprom.h"
41 #include "iwl-commands.h"
42 #include "iwl-debug.h"
43 #include "iwl-agn-tt.h"
45 /* default Thermal Throttling transaction table
46 * Current state | Throttling Down | Throttling Up
47 *=============================================================================
48 * Condition Nxt State Condition Nxt State Condition Nxt State
49 *-----------------------------------------------------------------------------
50 * IWL_TI_0 T >= 114 CT_KILL 114>T>=105 TI_1 N/A N/A
51 * IWL_TI_1 T >= 114 CT_KILL 114>T>=110 TI_2 T<=95 TI_0
52 * IWL_TI_2 T >= 114 CT_KILL T<=100 TI_1
53 * IWL_CT_KILL N/A N/A N/A N/A T<=95 TI_0
54 *=============================================================================
56 static const struct iwl_tt_trans tt_range_0
[IWL_TI_STATE_MAX
- 1] = {
57 {IWL_TI_0
, IWL_ABSOLUTE_ZERO
, 104},
58 {IWL_TI_1
, 105, CT_KILL_THRESHOLD
- 1},
59 {IWL_TI_CT_KILL
, CT_KILL_THRESHOLD
, IWL_ABSOLUTE_MAX
}
61 static const struct iwl_tt_trans tt_range_1
[IWL_TI_STATE_MAX
- 1] = {
62 {IWL_TI_0
, IWL_ABSOLUTE_ZERO
, 95},
63 {IWL_TI_2
, 110, CT_KILL_THRESHOLD
- 1},
64 {IWL_TI_CT_KILL
, CT_KILL_THRESHOLD
, IWL_ABSOLUTE_MAX
}
66 static const struct iwl_tt_trans tt_range_2
[IWL_TI_STATE_MAX
- 1] = {
67 {IWL_TI_1
, IWL_ABSOLUTE_ZERO
, 100},
68 {IWL_TI_CT_KILL
, CT_KILL_THRESHOLD
, IWL_ABSOLUTE_MAX
},
69 {IWL_TI_CT_KILL
, CT_KILL_THRESHOLD
, IWL_ABSOLUTE_MAX
}
71 static const struct iwl_tt_trans tt_range_3
[IWL_TI_STATE_MAX
- 1] = {
72 {IWL_TI_0
, IWL_ABSOLUTE_ZERO
, CT_KILL_EXIT_THRESHOLD
},
73 {IWL_TI_CT_KILL
, CT_KILL_EXIT_THRESHOLD
+ 1, IWL_ABSOLUTE_MAX
},
74 {IWL_TI_CT_KILL
, CT_KILL_EXIT_THRESHOLD
+ 1, IWL_ABSOLUTE_MAX
}
77 /* Advance Thermal Throttling default restriction table */
78 static const struct iwl_tt_restriction restriction_range
[IWL_TI_STATE_MAX
] = {
79 {IWL_ANT_OK_MULTI
, IWL_ANT_OK_MULTI
, true },
80 {IWL_ANT_OK_SINGLE
, IWL_ANT_OK_MULTI
, true },
81 {IWL_ANT_OK_SINGLE
, IWL_ANT_OK_SINGLE
, false },
82 {IWL_ANT_OK_NONE
, IWL_ANT_OK_NONE
, false }
85 bool iwl_tt_is_low_power_state(struct iwl_priv
*priv
)
87 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
89 if (tt
->state
>= IWL_TI_1
)
94 u8
iwl_tt_current_power_mode(struct iwl_priv
*priv
)
96 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
98 return tt
->tt_power_mode
;
101 bool iwl_ht_enabled(struct iwl_priv
*priv
)
103 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
104 struct iwl_tt_restriction
*restriction
;
106 if (!priv
->thermal_throttle
.advanced_tt
)
108 restriction
= tt
->restriction
+ tt
->state
;
109 return restriction
->is_ht
;
112 static bool iwl_within_ct_kill_margin(struct iwl_priv
*priv
)
114 s32 temp
= priv
->temperature
; /* degrees CELSIUS except specified */
115 bool within_margin
= false;
117 if (!priv
->thermal_throttle
.advanced_tt
)
118 within_margin
= ((temp
+ IWL_TT_CT_KILL_MARGIN
) >=
119 CT_KILL_THRESHOLD_LEGACY
) ? true : false;
121 within_margin
= ((temp
+ IWL_TT_CT_KILL_MARGIN
) >=
122 CT_KILL_THRESHOLD
) ? true : false;
123 return within_margin
;
126 bool iwl_check_for_ct_kill(struct iwl_priv
*priv
)
128 bool is_ct_kill
= false;
130 if (iwl_within_ct_kill_margin(priv
)) {
131 iwl_tt_enter_ct_kill(priv
);
137 enum iwl_antenna_ok
iwl_tx_ant_restriction(struct iwl_priv
*priv
)
139 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
140 struct iwl_tt_restriction
*restriction
;
142 if (!priv
->thermal_throttle
.advanced_tt
)
143 return IWL_ANT_OK_MULTI
;
144 restriction
= tt
->restriction
+ tt
->state
;
145 return restriction
->tx_stream
;
148 enum iwl_antenna_ok
iwl_rx_ant_restriction(struct iwl_priv
*priv
)
150 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
151 struct iwl_tt_restriction
*restriction
;
153 if (!priv
->thermal_throttle
.advanced_tt
)
154 return IWL_ANT_OK_MULTI
;
155 restriction
= tt
->restriction
+ tt
->state
;
156 return restriction
->rx_stream
;
159 #define CT_KILL_EXIT_DURATION (5) /* 5 seconds duration */
160 #define CT_KILL_WAITING_DURATION (300) /* 300ms duration */
163 * toggle the bit to wake up uCode and check the temperature
164 * if the temperature is below CT, uCode will stay awake and send card
165 * state notification with CT_KILL bit clear to inform Thermal Throttling
166 * Management to change state. Otherwise, uCode will go back to sleep
167 * without doing anything, driver should continue the 5 seconds timer
168 * to wake up uCode for temperature check until temperature drop below CT
170 static void iwl_tt_check_exit_ct_kill(unsigned long data
)
172 struct iwl_priv
*priv
= (struct iwl_priv
*)data
;
173 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
176 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
179 if (tt
->state
== IWL_TI_CT_KILL
) {
180 if (priv
->thermal_throttle
.ct_kill_toggle
) {
181 iwl_write32(bus(priv
), CSR_UCODE_DRV_GP1_CLR
,
182 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT
);
183 priv
->thermal_throttle
.ct_kill_toggle
= false;
185 iwl_write32(bus(priv
), CSR_UCODE_DRV_GP1_SET
,
186 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT
);
187 priv
->thermal_throttle
.ct_kill_toggle
= true;
189 iwl_read32(bus(priv
), CSR_UCODE_DRV_GP1
);
190 spin_lock_irqsave(&bus(priv
)->reg_lock
, flags
);
191 if (!iwl_grab_nic_access(bus(priv
)))
192 iwl_release_nic_access(bus(priv
));
193 spin_unlock_irqrestore(&bus(priv
)->reg_lock
, flags
);
195 /* Reschedule the ct_kill timer to occur in
196 * CT_KILL_EXIT_DURATION seconds to ensure we get a
198 IWL_DEBUG_TEMP(priv
, "schedule ct_kill exit timer\n");
199 mod_timer(&priv
->thermal_throttle
.ct_kill_exit_tm
,
200 jiffies
+ CT_KILL_EXIT_DURATION
* HZ
);
204 static void iwl_perform_ct_kill_task(struct iwl_priv
*priv
,
208 IWL_DEBUG_TEMP(priv
, "Stop all queues\n");
209 if (priv
->mac80211_registered
)
210 ieee80211_stop_queues(priv
->hw
);
212 "Schedule 5 seconds CT_KILL Timer\n");
213 mod_timer(&priv
->thermal_throttle
.ct_kill_exit_tm
,
214 jiffies
+ CT_KILL_EXIT_DURATION
* HZ
);
216 IWL_DEBUG_TEMP(priv
, "Wake all queues\n");
217 if (priv
->mac80211_registered
)
218 ieee80211_wake_queues(priv
->hw
);
222 static void iwl_tt_ready_for_ct_kill(unsigned long data
)
224 struct iwl_priv
*priv
= (struct iwl_priv
*)data
;
225 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
227 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
230 /* temperature timer expired, ready to go into CT_KILL state */
231 if (tt
->state
!= IWL_TI_CT_KILL
) {
232 IWL_DEBUG_TEMP(priv
, "entering CT_KILL state when "
233 "temperature timer expired\n");
234 tt
->state
= IWL_TI_CT_KILL
;
235 set_bit(STATUS_CT_KILL
, &priv
->shrd
->status
);
236 iwl_perform_ct_kill_task(priv
, true);
240 static void iwl_prepare_ct_kill_task(struct iwl_priv
*priv
)
242 IWL_DEBUG_TEMP(priv
, "Prepare to enter IWL_TI_CT_KILL\n");
243 /* make request to retrieve statistics information */
244 iwl_send_statistics_request(priv
, CMD_SYNC
, false);
245 /* Reschedule the ct_kill wait timer */
246 mod_timer(&priv
->thermal_throttle
.ct_kill_waiting_tm
,
247 jiffies
+ msecs_to_jiffies(CT_KILL_WAITING_DURATION
));
250 #define IWL_MINIMAL_POWER_THRESHOLD (CT_KILL_THRESHOLD_LEGACY)
251 #define IWL_REDUCED_PERFORMANCE_THRESHOLD_2 (100)
252 #define IWL_REDUCED_PERFORMANCE_THRESHOLD_1 (90)
255 * Legacy thermal throttling
256 * 1) Avoid NIC destruction due to high temperatures
257 * Chip will identify dangerously high temperatures that can
258 * harm the device and will power down
259 * 2) Avoid the NIC power down due to high temperature
260 * Throttle early enough to lower the power consumption before
261 * drastic steps are needed
263 static void iwl_legacy_tt_handler(struct iwl_priv
*priv
, s32 temp
, bool force
)
265 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
266 enum iwl_tt_state old_state
;
268 #ifdef CONFIG_IWLWIFI_DEBUG
269 if ((tt
->tt_previous_temp
) &&
270 (temp
> tt
->tt_previous_temp
) &&
271 ((temp
- tt
->tt_previous_temp
) >
272 IWL_TT_INCREASE_MARGIN
)) {
274 "Temperature increase %d degree Celsius\n",
275 (temp
- tt
->tt_previous_temp
));
278 old_state
= tt
->state
;
280 if (temp
>= IWL_MINIMAL_POWER_THRESHOLD
)
281 tt
->state
= IWL_TI_CT_KILL
;
282 else if (temp
>= IWL_REDUCED_PERFORMANCE_THRESHOLD_2
)
283 tt
->state
= IWL_TI_2
;
284 else if (temp
>= IWL_REDUCED_PERFORMANCE_THRESHOLD_1
)
285 tt
->state
= IWL_TI_1
;
287 tt
->state
= IWL_TI_0
;
289 #ifdef CONFIG_IWLWIFI_DEBUG
290 tt
->tt_previous_temp
= temp
;
292 /* stop ct_kill_waiting_tm timer */
293 del_timer_sync(&priv
->thermal_throttle
.ct_kill_waiting_tm
);
294 if (tt
->state
!= old_state
) {
298 * When the system is ready to go back to IWL_TI_0
299 * we only have to call iwl_power_update_mode() to
304 tt
->tt_power_mode
= IWL_POWER_INDEX_3
;
307 tt
->tt_power_mode
= IWL_POWER_INDEX_4
;
310 tt
->tt_power_mode
= IWL_POWER_INDEX_5
;
313 mutex_lock(&priv
->shrd
->mutex
);
314 if (old_state
== IWL_TI_CT_KILL
)
315 clear_bit(STATUS_CT_KILL
, &priv
->shrd
->status
);
316 if (tt
->state
!= IWL_TI_CT_KILL
&&
317 iwl_power_update_mode(priv
, true)) {
318 /* TT state not updated
319 * try again during next temperature read
321 if (old_state
== IWL_TI_CT_KILL
)
322 set_bit(STATUS_CT_KILL
, &priv
->shrd
->status
);
323 tt
->state
= old_state
;
324 IWL_ERR(priv
, "Cannot update power mode, "
325 "TT state not updated\n");
327 if (tt
->state
== IWL_TI_CT_KILL
) {
329 set_bit(STATUS_CT_KILL
,
330 &priv
->shrd
->status
);
331 iwl_perform_ct_kill_task(priv
, true);
333 iwl_prepare_ct_kill_task(priv
);
334 tt
->state
= old_state
;
336 } else if (old_state
== IWL_TI_CT_KILL
&&
337 tt
->state
!= IWL_TI_CT_KILL
)
338 iwl_perform_ct_kill_task(priv
, false);
339 IWL_DEBUG_TEMP(priv
, "Temperature state changed %u\n",
341 IWL_DEBUG_TEMP(priv
, "Power Index change to %u\n",
344 mutex_unlock(&priv
->shrd
->mutex
);
349 * Advance thermal throttling
350 * 1) Avoid NIC destruction due to high temperatures
351 * Chip will identify dangerously high temperatures that can
352 * harm the device and will power down
353 * 2) Avoid the NIC power down due to high temperature
354 * Throttle early enough to lower the power consumption before
355 * drastic steps are needed
356 * Actions include relaxing the power down sleep thresholds and
357 * decreasing the number of TX streams
358 * 3) Avoid throughput performance impact as much as possible
360 *=============================================================================
361 * Condition Nxt State Condition Nxt State Condition Nxt State
362 *-----------------------------------------------------------------------------
363 * IWL_TI_0 T >= 114 CT_KILL 114>T>=105 TI_1 N/A N/A
364 * IWL_TI_1 T >= 114 CT_KILL 114>T>=110 TI_2 T<=95 TI_0
365 * IWL_TI_2 T >= 114 CT_KILL T<=100 TI_1
366 * IWL_CT_KILL N/A N/A N/A N/A T<=95 TI_0
367 *=============================================================================
369 static void iwl_advance_tt_handler(struct iwl_priv
*priv
, s32 temp
, bool force
)
371 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
373 bool changed
= false;
374 enum iwl_tt_state old_state
;
375 struct iwl_tt_trans
*transaction
;
377 old_state
= tt
->state
;
378 for (i
= 0; i
< IWL_TI_STATE_MAX
- 1; i
++) {
379 /* based on the current TT state,
380 * find the curresponding transaction table
381 * each table has (IWL_TI_STATE_MAX - 1) entries
382 * tt->transaction + ((old_state * (IWL_TI_STATE_MAX - 1))
383 * will advance to the correct table.
384 * then based on the current temperature
385 * find the next state need to transaction to
386 * go through all the possible (IWL_TI_STATE_MAX - 1) entries
387 * in the current table to see if transaction is needed
389 transaction
= tt
->transaction
+
390 ((old_state
* (IWL_TI_STATE_MAX
- 1)) + i
);
391 if (temp
>= transaction
->tt_low
&&
392 temp
<= transaction
->tt_high
) {
393 #ifdef CONFIG_IWLWIFI_DEBUG
394 if ((tt
->tt_previous_temp
) &&
395 (temp
> tt
->tt_previous_temp
) &&
396 ((temp
- tt
->tt_previous_temp
) >
397 IWL_TT_INCREASE_MARGIN
)) {
399 "Temperature increase %d "
401 (temp
- tt
->tt_previous_temp
));
403 tt
->tt_previous_temp
= temp
;
406 transaction
->next_state
) {
409 transaction
->next_state
;
414 /* stop ct_kill_waiting_tm timer */
415 del_timer_sync(&priv
->thermal_throttle
.ct_kill_waiting_tm
);
417 if (tt
->state
>= IWL_TI_1
) {
418 /* force PI = IWL_POWER_INDEX_5 in the case of TI > 0 */
419 tt
->tt_power_mode
= IWL_POWER_INDEX_5
;
421 if (!iwl_ht_enabled(priv
)) {
422 struct iwl_rxon_context
*ctx
;
424 for_each_context(priv
, ctx
) {
425 struct iwl_rxon_cmd
*rxon
;
427 rxon
= &ctx
->staging
;
431 RXON_FLG_CHANNEL_MODE_MSK
|
432 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
|
433 RXON_FLG_HT40_PROT_MSK
|
434 RXON_FLG_HT_PROT_MSK
);
437 /* check HT capability and set
438 * according to the system HT capability
439 * in case get disabled before */
440 iwl_set_rxon_ht(priv
, &priv
->current_ht_config
);
445 * restore system power setting -- it will be
446 * recalculated automatically.
449 /* check HT capability and set
450 * according to the system HT capability
451 * in case get disabled before */
452 iwl_set_rxon_ht(priv
, &priv
->current_ht_config
);
454 mutex_lock(&priv
->shrd
->mutex
);
455 if (old_state
== IWL_TI_CT_KILL
)
456 clear_bit(STATUS_CT_KILL
, &priv
->shrd
->status
);
457 if (tt
->state
!= IWL_TI_CT_KILL
&&
458 iwl_power_update_mode(priv
, true)) {
459 /* TT state not updated
460 * try again during next temperature read
462 IWL_ERR(priv
, "Cannot update power mode, "
463 "TT state not updated\n");
464 if (old_state
== IWL_TI_CT_KILL
)
465 set_bit(STATUS_CT_KILL
, &priv
->shrd
->status
);
466 tt
->state
= old_state
;
469 "Thermal Throttling to new state: %u\n",
471 if (old_state
!= IWL_TI_CT_KILL
&&
472 tt
->state
== IWL_TI_CT_KILL
) {
475 "Enter IWL_TI_CT_KILL\n");
476 set_bit(STATUS_CT_KILL
,
477 &priv
->shrd
->status
);
478 iwl_perform_ct_kill_task(priv
, true);
480 iwl_prepare_ct_kill_task(priv
);
481 tt
->state
= old_state
;
483 } else if (old_state
== IWL_TI_CT_KILL
&&
484 tt
->state
!= IWL_TI_CT_KILL
) {
485 IWL_DEBUG_TEMP(priv
, "Exit IWL_TI_CT_KILL\n");
486 iwl_perform_ct_kill_task(priv
, false);
489 mutex_unlock(&priv
->shrd
->mutex
);
493 /* Card State Notification indicated reach critical temperature
494 * if PSP not enable, no Thermal Throttling function will be performed
495 * just set the GP1 bit to acknowledge the event
496 * otherwise, go into IWL_TI_CT_KILL state
497 * since Card State Notification will not provide any temperature reading
499 * so just pass the CT_KILL temperature to iwl_legacy_tt_handler()
501 * pass CT_KILL_THRESHOLD+1 to make sure move into IWL_TI_CT_KILL state
503 static void iwl_bg_ct_enter(struct work_struct
*work
)
505 struct iwl_priv
*priv
= container_of(work
, struct iwl_priv
, ct_enter
);
506 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
508 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
511 if (!iwl_is_ready(priv
->shrd
))
514 if (tt
->state
!= IWL_TI_CT_KILL
) {
515 IWL_ERR(priv
, "Device reached critical temperature "
516 "- ucode going to sleep!\n");
517 if (!priv
->thermal_throttle
.advanced_tt
)
518 iwl_legacy_tt_handler(priv
,
519 IWL_MINIMAL_POWER_THRESHOLD
,
522 iwl_advance_tt_handler(priv
,
523 CT_KILL_THRESHOLD
+ 1, true);
527 /* Card State Notification indicated out of critical temperature
528 * since Card State Notification will not provide any temperature reading
529 * so pass the IWL_REDUCED_PERFORMANCE_THRESHOLD_2 temperature
530 * to iwl_legacy_tt_handler() to get out of IWL_CT_KILL state
532 static void iwl_bg_ct_exit(struct work_struct
*work
)
534 struct iwl_priv
*priv
= container_of(work
, struct iwl_priv
, ct_exit
);
535 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
537 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
540 if (!iwl_is_ready(priv
->shrd
))
543 /* stop ct_kill_exit_tm timer */
544 del_timer_sync(&priv
->thermal_throttle
.ct_kill_exit_tm
);
546 if (tt
->state
== IWL_TI_CT_KILL
) {
548 "Device temperature below critical"
551 * exit from CT_KILL state
552 * reset the current temperature reading
554 priv
->temperature
= 0;
555 if (!priv
->thermal_throttle
.advanced_tt
)
556 iwl_legacy_tt_handler(priv
,
557 IWL_REDUCED_PERFORMANCE_THRESHOLD_2
,
560 iwl_advance_tt_handler(priv
, CT_KILL_EXIT_THRESHOLD
,
565 void iwl_tt_enter_ct_kill(struct iwl_priv
*priv
)
567 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
570 IWL_DEBUG_TEMP(priv
, "Queueing critical temperature enter.\n");
571 queue_work(priv
->shrd
->workqueue
, &priv
->ct_enter
);
574 void iwl_tt_exit_ct_kill(struct iwl_priv
*priv
)
576 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
579 IWL_DEBUG_TEMP(priv
, "Queueing critical temperature exit.\n");
580 queue_work(priv
->shrd
->workqueue
, &priv
->ct_exit
);
583 static void iwl_bg_tt_work(struct work_struct
*work
)
585 struct iwl_priv
*priv
= container_of(work
, struct iwl_priv
, tt_work
);
586 s32 temp
= priv
->temperature
; /* degrees CELSIUS except specified */
588 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
591 if (!priv
->thermal_throttle
.advanced_tt
)
592 iwl_legacy_tt_handler(priv
, temp
, false);
594 iwl_advance_tt_handler(priv
, temp
, false);
597 void iwl_tt_handler(struct iwl_priv
*priv
)
599 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
602 IWL_DEBUG_TEMP(priv
, "Queueing thermal throttling work.\n");
603 queue_work(priv
->shrd
->workqueue
, &priv
->tt_work
);
606 /* Thermal throttling initialization
607 * For advance thermal throttling:
608 * Initialize Thermal Index and temperature threshold table
609 * Initialize thermal throttling restriction table
611 void iwl_tt_initialize(struct iwl_priv
*priv
)
613 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
614 int size
= sizeof(struct iwl_tt_trans
) * (IWL_TI_STATE_MAX
- 1);
615 struct iwl_tt_trans
*transaction
;
617 IWL_DEBUG_TEMP(priv
, "Initialize Thermal Throttling\n");
619 memset(tt
, 0, sizeof(struct iwl_tt_mgmt
));
621 tt
->state
= IWL_TI_0
;
622 init_timer(&priv
->thermal_throttle
.ct_kill_exit_tm
);
623 priv
->thermal_throttle
.ct_kill_exit_tm
.data
= (unsigned long)priv
;
624 priv
->thermal_throttle
.ct_kill_exit_tm
.function
=
625 iwl_tt_check_exit_ct_kill
;
626 init_timer(&priv
->thermal_throttle
.ct_kill_waiting_tm
);
627 priv
->thermal_throttle
.ct_kill_waiting_tm
.data
=
629 priv
->thermal_throttle
.ct_kill_waiting_tm
.function
=
630 iwl_tt_ready_for_ct_kill
;
631 /* setup deferred ct kill work */
632 INIT_WORK(&priv
->tt_work
, iwl_bg_tt_work
);
633 INIT_WORK(&priv
->ct_enter
, iwl_bg_ct_enter
);
634 INIT_WORK(&priv
->ct_exit
, iwl_bg_ct_exit
);
636 if (cfg(priv
)->base_params
->adv_thermal_throttle
) {
637 IWL_DEBUG_TEMP(priv
, "Advanced Thermal Throttling\n");
638 tt
->restriction
= kcalloc(IWL_TI_STATE_MAX
,
639 sizeof(struct iwl_tt_restriction
),
641 tt
->transaction
= kcalloc(IWL_TI_STATE_MAX
*
642 (IWL_TI_STATE_MAX
- 1),
643 sizeof(struct iwl_tt_trans
),
645 if (!tt
->restriction
|| !tt
->transaction
) {
646 IWL_ERR(priv
, "Fallback to Legacy Throttling\n");
647 priv
->thermal_throttle
.advanced_tt
= false;
648 kfree(tt
->restriction
);
649 tt
->restriction
= NULL
;
650 kfree(tt
->transaction
);
651 tt
->transaction
= NULL
;
653 transaction
= tt
->transaction
+
654 (IWL_TI_0
* (IWL_TI_STATE_MAX
- 1));
655 memcpy(transaction
, &tt_range_0
[0], size
);
656 transaction
= tt
->transaction
+
657 (IWL_TI_1
* (IWL_TI_STATE_MAX
- 1));
658 memcpy(transaction
, &tt_range_1
[0], size
);
659 transaction
= tt
->transaction
+
660 (IWL_TI_2
* (IWL_TI_STATE_MAX
- 1));
661 memcpy(transaction
, &tt_range_2
[0], size
);
662 transaction
= tt
->transaction
+
663 (IWL_TI_CT_KILL
* (IWL_TI_STATE_MAX
- 1));
664 memcpy(transaction
, &tt_range_3
[0], size
);
665 size
= sizeof(struct iwl_tt_restriction
) *
667 memcpy(tt
->restriction
,
668 &restriction_range
[0], size
);
669 priv
->thermal_throttle
.advanced_tt
= true;
672 IWL_DEBUG_TEMP(priv
, "Legacy Thermal Throttling\n");
673 priv
->thermal_throttle
.advanced_tt
= false;
677 /* cleanup thermal throttling management related memory and timer */
678 void iwl_tt_exit(struct iwl_priv
*priv
)
680 struct iwl_tt_mgmt
*tt
= &priv
->thermal_throttle
;
682 /* stop ct_kill_exit_tm timer if activated */
683 del_timer_sync(&priv
->thermal_throttle
.ct_kill_exit_tm
);
684 /* stop ct_kill_waiting_tm timer if activated */
685 del_timer_sync(&priv
->thermal_throttle
.ct_kill_waiting_tm
);
686 cancel_work_sync(&priv
->tt_work
);
687 cancel_work_sync(&priv
->ct_enter
);
688 cancel_work_sync(&priv
->ct_exit
);
690 if (priv
->thermal_throttle
.advanced_tt
) {
691 /* free advance thermal throttling memory */
692 kfree(tt
->restriction
);
693 tt
->restriction
= NULL
;
694 kfree(tt
->transaction
);
695 tt
->transaction
= NULL
;