Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tt.h
Go to the documentation of this file.
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2012 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 <[email protected]>
26  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27  *****************************************************************************/
28 #ifndef __iwl_tt_setting_h__
29 #define __iwl_tt_setting_h__
30 
31 #include "commands.h"
32 
33 #define IWL_ABSOLUTE_ZERO 0
34 #define IWL_ABSOLUTE_MAX 0xFFFFFFFF
35 #define IWL_TT_INCREASE_MARGIN 5
36 #define IWL_TT_CT_KILL_MARGIN 3
37 
42 };
43 
44 /* Thermal Throttling State Machine states */
46  IWL_TI_0, /* normal temperature, system power state */
47  IWL_TI_1, /* high temperature detect, low power state */
48  IWL_TI_2, /* higher temperature detected, lower power state */
49  IWL_TI_CT_KILL, /* critical temperature detected, lowest power state */
51 };
52 
66  bool is_ht;
67 };
68 
79 struct iwl_tt_trans {
83 };
84 
103 struct iwl_tt_mgmt {
108 #ifdef CONFIG_IWLWIFI_DEBUG
109  s32 tt_previous_temp;
110 #endif
115 };
116 
119 bool iwl_ht_enabled(struct iwl_priv *priv);
122 void iwl_tt_enter_ct_kill(struct iwl_priv *priv);
123 void iwl_tt_exit_ct_kill(struct iwl_priv *priv);
124 void iwl_tt_handler(struct iwl_priv *priv);
125 void iwl_tt_initialize(struct iwl_priv *priv);
126 void iwl_tt_exit(struct iwl_priv *priv);
127 
128 #endif /* __iwl_tt_setting_h__ */