Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 4 | * redistributing this file, you may do so under either license. |
| 5 | * |
| 6 | * GPL LICENSE SUMMARY |
| 7 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8b4139d | 2014-07-24 14:05:26 +0200 | [diff] [blame] | 9 | * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of version 2 of the GNU General Public License as |
| 13 | * published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 23 | * USA |
| 24 | * |
| 25 | * The full GNU General Public License is included in this distribution |
| 26 | * in the file called COPYING. |
| 27 | * |
| 28 | * Contact Information: |
Emmanuel Grumbach | d01c536 | 2015-11-17 15:39:56 +0200 | [diff] [blame] | 29 | * Intel Linux Wireless <linuxwifi@intel.com> |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 30 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 31 | * |
| 32 | * BSD LICENSE |
| 33 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 34 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8b4139d | 2014-07-24 14:05:26 +0200 | [diff] [blame] | 35 | * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH |
Sara Sharon | 6eb031d | 2015-07-13 14:50:47 +0300 | [diff] [blame] | 36 | * Copyright(c) 2015 Intel Deutschland GmbH |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 37 | * All rights reserved. |
| 38 | * |
| 39 | * Redistribution and use in source and binary forms, with or without |
| 40 | * modification, are permitted provided that the following conditions |
| 41 | * are met: |
| 42 | * |
| 43 | * * Redistributions of source code must retain the above copyright |
| 44 | * notice, this list of conditions and the following disclaimer. |
| 45 | * * Redistributions in binary form must reproduce the above copyright |
| 46 | * notice, this list of conditions and the following disclaimer in |
| 47 | * the documentation and/or other materials provided with the |
| 48 | * distribution. |
| 49 | * * Neither the name Intel Corporation nor the names of its |
| 50 | * contributors may be used to endorse or promote products derived |
| 51 | * from this software without specific prior written permission. |
| 52 | * |
| 53 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 54 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 55 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 56 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 57 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 58 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 59 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 60 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 61 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 62 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 63 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 64 | * |
| 65 | *****************************************************************************/ |
| 66 | |
| 67 | #include "mvm.h" |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 68 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 69 | #define IWL_MVM_TEMP_NOTIF_WAIT_TIMEOUT HZ |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 70 | |
| 71 | static void iwl_mvm_enter_ctkill(struct iwl_mvm *mvm) |
| 72 | { |
Luciano Coelho | 19789ab | 2014-12-15 14:15:15 +0200 | [diff] [blame] | 73 | struct iwl_mvm_tt_mgmt *tt = &mvm->thermal_throttle; |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 74 | u32 duration = tt->params.ct_kill_duration; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 75 | |
Luciano Coelho | b689fa7 | 2014-08-20 17:26:58 +0300 | [diff] [blame] | 76 | if (test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) |
| 77 | return; |
| 78 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 79 | IWL_ERR(mvm, "Enter CT Kill\n"); |
| 80 | iwl_mvm_set_hw_ctkill_state(mvm, true); |
Luciano Coelho | efc36db | 2014-08-20 17:58:20 +0300 | [diff] [blame] | 81 | |
Luciano Coelho | 19789ab | 2014-12-15 14:15:15 +0200 | [diff] [blame] | 82 | tt->throttle = false; |
| 83 | tt->dynamic_smps = false; |
| 84 | |
Luciano Coelho | efc36db | 2014-08-20 17:58:20 +0300 | [diff] [blame] | 85 | /* Don't schedule an exit work if we're in test mode, since |
| 86 | * the temperature will not change unless we manually set it |
| 87 | * again (or disable testing). |
| 88 | */ |
| 89 | if (!mvm->temperature_test) |
Luciano Coelho | 19789ab | 2014-12-15 14:15:15 +0200 | [diff] [blame] | 90 | schedule_delayed_work(&tt->ct_kill_exit, |
Luciano Coelho | efc36db | 2014-08-20 17:58:20 +0300 | [diff] [blame] | 91 | round_jiffies_relative(duration * HZ)); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void iwl_mvm_exit_ctkill(struct iwl_mvm *mvm) |
| 95 | { |
Luciano Coelho | b689fa7 | 2014-08-20 17:26:58 +0300 | [diff] [blame] | 96 | if (!test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) |
| 97 | return; |
| 98 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 99 | IWL_ERR(mvm, "Exit CT Kill\n"); |
| 100 | iwl_mvm_set_hw_ctkill_state(mvm, false); |
| 101 | } |
| 102 | |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 103 | void iwl_mvm_tt_temp_changed(struct iwl_mvm *mvm, u32 temp) |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 104 | { |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 105 | /* ignore the notification if we are in test mode */ |
| 106 | if (mvm->temperature_test) |
| 107 | return; |
| 108 | |
| 109 | if (mvm->temperature == temp) |
| 110 | return; |
| 111 | |
| 112 | mvm->temperature = temp; |
| 113 | iwl_mvm_tt_handler(mvm); |
| 114 | } |
| 115 | |
| 116 | static int iwl_mvm_temp_notif_parse(struct iwl_mvm *mvm, |
| 117 | struct iwl_rx_packet *pkt) |
| 118 | { |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 119 | struct iwl_dts_measurement_notif *notif; |
| 120 | int len = iwl_rx_packet_payload_len(pkt); |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 121 | int temp; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 122 | |
Johannes Berg | be720d3 | 2016-01-05 16:16:31 +0100 | [diff] [blame] | 123 | if (WARN_ON_ONCE(len < sizeof(*notif))) { |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 124 | IWL_ERR(mvm, "Invalid DTS_MEASUREMENT_NOTIFICATION\n"); |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 125 | return -EINVAL; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | notif = (void *)pkt->data; |
| 129 | |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 130 | temp = le32_to_cpu(notif->temp); |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 131 | |
| 132 | /* shouldn't be negative, but since it's s32, make sure it isn't */ |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 133 | if (WARN_ON_ONCE(temp < 0)) |
| 134 | temp = 0; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 135 | |
Luciano Coelho | fd1f755 | 2014-11-04 16:17:46 +0200 | [diff] [blame] | 136 | IWL_DEBUG_TEMP(mvm, "DTS_MEASUREMENT_NOTIFICATION - %d\n", temp); |
| 137 | |
| 138 | return temp; |
| 139 | } |
| 140 | |
| 141 | static bool iwl_mvm_temp_notif_wait(struct iwl_notif_wait_data *notif_wait, |
| 142 | struct iwl_rx_packet *pkt, void *data) |
| 143 | { |
| 144 | struct iwl_mvm *mvm = |
| 145 | container_of(notif_wait, struct iwl_mvm, notif_wait); |
| 146 | int *temp = data; |
| 147 | int ret; |
| 148 | |
| 149 | ret = iwl_mvm_temp_notif_parse(mvm, pkt); |
| 150 | if (ret < 0) |
| 151 | return true; |
| 152 | |
| 153 | *temp = ret; |
| 154 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 155 | return true; |
| 156 | } |
| 157 | |
Johannes Berg | 0416841 | 2015-06-23 21:22:09 +0200 | [diff] [blame] | 158 | void iwl_mvm_temp_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb) |
Luciano Coelho | ea9af24 | 2014-11-06 10:34:49 +0200 | [diff] [blame] | 159 | { |
| 160 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 161 | int temp; |
| 162 | |
| 163 | /* the notification is handled synchronously in ctkill, so skip here */ |
| 164 | if (test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) |
Johannes Berg | 0416841 | 2015-06-23 21:22:09 +0200 | [diff] [blame] | 165 | return; |
Luciano Coelho | ea9af24 | 2014-11-06 10:34:49 +0200 | [diff] [blame] | 166 | |
| 167 | temp = iwl_mvm_temp_notif_parse(mvm, pkt); |
| 168 | if (temp < 0) |
Johannes Berg | 0416841 | 2015-06-23 21:22:09 +0200 | [diff] [blame] | 169 | return; |
Luciano Coelho | ea9af24 | 2014-11-06 10:34:49 +0200 | [diff] [blame] | 170 | |
| 171 | iwl_mvm_tt_temp_changed(mvm, temp); |
Luciano Coelho | ea9af24 | 2014-11-06 10:34:49 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 174 | static int iwl_mvm_get_temp_cmd(struct iwl_mvm *mvm) |
| 175 | { |
| 176 | struct iwl_dts_measurement_cmd cmd = { |
| 177 | .flags = cpu_to_le32(DTS_TRIGGER_CMD_FLAGS_TEMP), |
| 178 | }; |
Arik Nemtsov | 78efc70 | 2015-10-06 12:22:47 +0300 | [diff] [blame] | 179 | struct iwl_ext_dts_measurement_cmd extcmd = { |
| 180 | .control_mode = cpu_to_le32(DTS_AUTOMATIC), |
| 181 | }; |
Aviya Erenfeld | 09eef33 | 2015-09-01 19:34:38 +0300 | [diff] [blame] | 182 | u32 cmdid; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 183 | |
Aviya Erenfeld | 09eef33 | 2015-09-01 19:34:38 +0300 | [diff] [blame] | 184 | if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_WIDE_CMD_HDR)) |
| 185 | cmdid = iwl_cmd_id(CMD_DTS_MEASUREMENT_TRIGGER_WIDE, |
| 186 | PHY_OPS_GROUP, 0); |
| 187 | else |
| 188 | cmdid = CMD_DTS_MEASUREMENT_TRIGGER; |
Arik Nemtsov | 78efc70 | 2015-10-06 12:22:47 +0300 | [diff] [blame] | 189 | |
| 190 | if (!fw_has_capa(&mvm->fw->ucode_capa, |
| 191 | IWL_UCODE_TLV_CAPA_EXTENDED_DTS_MEASURE)) |
| 192 | return iwl_mvm_send_cmd_pdu(mvm, cmdid, 0, sizeof(cmd), &cmd); |
| 193 | |
| 194 | return iwl_mvm_send_cmd_pdu(mvm, cmdid, 0, sizeof(extcmd), &extcmd); |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 195 | } |
| 196 | |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 197 | int iwl_mvm_get_temp(struct iwl_mvm *mvm, s32 *temp) |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 198 | { |
| 199 | struct iwl_notification_wait wait_temp_notif; |
Aviya Erenfeld | 09eef33 | 2015-09-01 19:34:38 +0300 | [diff] [blame] | 200 | static u16 temp_notif[] = { WIDE_ID(PHY_OPS_GROUP, |
| 201 | DTS_MEASUREMENT_NOTIF_WIDE) }; |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 202 | int ret; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 203 | |
Aviya Erenfeld | 09eef33 | 2015-09-01 19:34:38 +0300 | [diff] [blame] | 204 | if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_WIDE_CMD_HDR)) |
| 205 | temp_notif[0] = DTS_MEASUREMENT_NOTIFICATION; |
| 206 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 207 | lockdep_assert_held(&mvm->mutex); |
| 208 | |
| 209 | iwl_init_notification_wait(&mvm->notif_wait, &wait_temp_notif, |
| 210 | temp_notif, ARRAY_SIZE(temp_notif), |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 211 | iwl_mvm_temp_notif_wait, temp); |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 212 | |
| 213 | ret = iwl_mvm_get_temp_cmd(mvm); |
| 214 | if (ret) { |
| 215 | IWL_ERR(mvm, "Failed to get the temperature (err=%d)\n", ret); |
| 216 | iwl_remove_notification(&mvm->notif_wait, &wait_temp_notif); |
| 217 | return ret; |
| 218 | } |
| 219 | |
| 220 | ret = iwl_wait_notification(&mvm->notif_wait, &wait_temp_notif, |
| 221 | IWL_MVM_TEMP_NOTIF_WAIT_TIMEOUT); |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 222 | if (ret) |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 223 | IWL_ERR(mvm, "Getting the temperature timed out\n"); |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 224 | |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 225 | return ret; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 226 | } |
| 227 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 228 | static void check_exit_ctkill(struct work_struct *work) |
| 229 | { |
| 230 | struct iwl_mvm_tt_mgmt *tt; |
| 231 | struct iwl_mvm *mvm; |
| 232 | u32 duration; |
| 233 | s32 temp; |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 234 | int ret; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 235 | |
| 236 | tt = container_of(work, struct iwl_mvm_tt_mgmt, ct_kill_exit.work); |
| 237 | mvm = container_of(tt, struct iwl_mvm, thermal_throttle); |
| 238 | |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 239 | duration = tt->params.ct_kill_duration; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 240 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 241 | mutex_lock(&mvm->mutex); |
| 242 | |
| 243 | if (__iwl_mvm_mac_start(mvm)) |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 244 | goto reschedule; |
| 245 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 246 | /* make sure the device is available for direct read/writes */ |
| 247 | if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_CHECK_CTKILL)) { |
| 248 | __iwl_mvm_mac_stop(mvm); |
| 249 | goto reschedule; |
| 250 | } |
| 251 | |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 252 | ret = iwl_mvm_get_temp(mvm, &temp); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 253 | |
Eliad Peller | 576eeee | 2014-07-01 18:38:38 +0300 | [diff] [blame] | 254 | iwl_mvm_unref(mvm, IWL_MVM_REF_CHECK_CTKILL); |
| 255 | |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 256 | __iwl_mvm_mac_stop(mvm); |
| 257 | |
Chaya Rachel Ivgi | 7869318 | 2015-12-27 13:45:42 +0200 | [diff] [blame^] | 258 | if (ret) |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 259 | goto reschedule; |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 260 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 261 | IWL_DEBUG_TEMP(mvm, "NIC temperature: %d\n", temp); |
| 262 | |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 263 | if (temp <= tt->params.ct_kill_exit) { |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 264 | mutex_unlock(&mvm->mutex); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 265 | iwl_mvm_exit_ctkill(mvm); |
| 266 | return; |
| 267 | } |
| 268 | |
| 269 | reschedule: |
Luciano Coelho | a0a0924 | 2014-09-04 12:29:15 +0300 | [diff] [blame] | 270 | mutex_unlock(&mvm->mutex); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 271 | schedule_delayed_work(&mvm->thermal_throttle.ct_kill_exit, |
| 272 | round_jiffies(duration * HZ)); |
| 273 | } |
| 274 | |
| 275 | static void iwl_mvm_tt_smps_iterator(void *_data, u8 *mac, |
| 276 | struct ieee80211_vif *vif) |
| 277 | { |
| 278 | struct iwl_mvm *mvm = _data; |
| 279 | enum ieee80211_smps_mode smps_mode; |
| 280 | |
| 281 | lockdep_assert_held(&mvm->mutex); |
| 282 | |
| 283 | if (mvm->thermal_throttle.dynamic_smps) |
| 284 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
| 285 | else |
| 286 | smps_mode = IEEE80211_SMPS_AUTOMATIC; |
| 287 | |
Eytan Lifshitz | fded313 | 2013-06-04 12:28:51 +0300 | [diff] [blame] | 288 | if (vif->type != NL80211_IFTYPE_STATION) |
| 289 | return; |
| 290 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 291 | iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT, smps_mode); |
| 292 | } |
| 293 | |
| 294 | static void iwl_mvm_tt_tx_protection(struct iwl_mvm *mvm, bool enable) |
| 295 | { |
| 296 | struct ieee80211_sta *sta; |
| 297 | struct iwl_mvm_sta *mvmsta; |
| 298 | int i, err; |
| 299 | |
| 300 | for (i = 0; i < IWL_MVM_STATION_COUNT; i++) { |
| 301 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], |
| 302 | lockdep_is_held(&mvm->mutex)); |
| 303 | if (IS_ERR_OR_NULL(sta)) |
| 304 | continue; |
Johannes Berg | 5b577a9 | 2013-11-14 18:20:04 +0100 | [diff] [blame] | 305 | mvmsta = iwl_mvm_sta_from_mac80211(sta); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 306 | if (enable == mvmsta->tt_tx_protection) |
| 307 | continue; |
Johannes Berg | e126b5d | 2013-06-28 13:39:18 +0200 | [diff] [blame] | 308 | err = iwl_mvm_tx_protection(mvm, mvmsta, enable); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 309 | if (err) { |
| 310 | IWL_ERR(mvm, "Failed to %s Tx protection\n", |
| 311 | enable ? "enable" : "disable"); |
| 312 | } else { |
| 313 | IWL_DEBUG_TEMP(mvm, "%s Tx protection\n", |
| 314 | enable ? "Enable" : "Disable"); |
| 315 | mvmsta->tt_tx_protection = enable; |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
Ido Yariv | 0c0e2c7 | 2014-01-16 21:12:02 -0500 | [diff] [blame] | 320 | void iwl_mvm_tt_tx_backoff(struct iwl_mvm *mvm, u32 backoff) |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 321 | { |
| 322 | struct iwl_host_cmd cmd = { |
| 323 | .id = REPLY_THERMAL_MNG_BACKOFF, |
| 324 | .len = { sizeof(u32), }, |
| 325 | .data = { &backoff, }, |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 326 | }; |
| 327 | |
Ido Yariv | 0c0e2c7 | 2014-01-16 21:12:02 -0500 | [diff] [blame] | 328 | backoff = max(backoff, mvm->thermal_throttle.min_backoff); |
| 329 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 330 | if (iwl_mvm_send_cmd(mvm, &cmd) == 0) { |
| 331 | IWL_DEBUG_TEMP(mvm, "Set Thermal Tx backoff to: %u\n", |
| 332 | backoff); |
| 333 | mvm->thermal_throttle.tx_backoff = backoff; |
| 334 | } else { |
| 335 | IWL_ERR(mvm, "Failed to change Thermal Tx backoff\n"); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | void iwl_mvm_tt_handler(struct iwl_mvm *mvm) |
| 340 | { |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 341 | struct iwl_tt_params *params = &mvm->thermal_throttle.params; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 342 | struct iwl_mvm_tt_mgmt *tt = &mvm->thermal_throttle; |
| 343 | s32 temperature = mvm->temperature; |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 344 | bool throttle_enable = false; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 345 | int i; |
| 346 | u32 tx_backoff; |
| 347 | |
| 348 | IWL_DEBUG_TEMP(mvm, "NIC temperature: %d\n", mvm->temperature); |
| 349 | |
| 350 | if (params->support_ct_kill && temperature >= params->ct_kill_entry) { |
| 351 | iwl_mvm_enter_ctkill(mvm); |
| 352 | return; |
| 353 | } |
| 354 | |
Luciano Coelho | b689fa7 | 2014-08-20 17:26:58 +0300 | [diff] [blame] | 355 | if (params->support_ct_kill && |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 356 | temperature <= params->ct_kill_exit) { |
Luciano Coelho | b689fa7 | 2014-08-20 17:26:58 +0300 | [diff] [blame] | 357 | iwl_mvm_exit_ctkill(mvm); |
| 358 | return; |
| 359 | } |
| 360 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 361 | if (params->support_dynamic_smps) { |
| 362 | if (!tt->dynamic_smps && |
| 363 | temperature >= params->dynamic_smps_entry) { |
| 364 | IWL_DEBUG_TEMP(mvm, "Enable dynamic SMPS\n"); |
| 365 | tt->dynamic_smps = true; |
| 366 | ieee80211_iterate_active_interfaces_atomic( |
| 367 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 368 | iwl_mvm_tt_smps_iterator, mvm); |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 369 | throttle_enable = true; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 370 | } else if (tt->dynamic_smps && |
| 371 | temperature <= params->dynamic_smps_exit) { |
| 372 | IWL_DEBUG_TEMP(mvm, "Disable dynamic SMPS\n"); |
| 373 | tt->dynamic_smps = false; |
| 374 | ieee80211_iterate_active_interfaces_atomic( |
| 375 | mvm->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 376 | iwl_mvm_tt_smps_iterator, mvm); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | if (params->support_tx_protection) { |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 381 | if (temperature >= params->tx_protection_entry) { |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 382 | iwl_mvm_tt_tx_protection(mvm, true); |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 383 | throttle_enable = true; |
| 384 | } else if (temperature <= params->tx_protection_exit) { |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 385 | iwl_mvm_tt_tx_protection(mvm, false); |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 386 | } |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | if (params->support_tx_backoff) { |
Eytan Lifshitz | 1b8ebbd | 2014-04-01 16:44:21 +0300 | [diff] [blame] | 390 | tx_backoff = tt->min_backoff; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 391 | for (i = 0; i < TT_TX_BACKOFF_SIZE; i++) { |
| 392 | if (temperature < params->tx_backoff[i].temperature) |
| 393 | break; |
Eytan Lifshitz | 1b8ebbd | 2014-04-01 16:44:21 +0300 | [diff] [blame] | 394 | tx_backoff = max(tt->min_backoff, |
| 395 | params->tx_backoff[i].backoff); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 396 | } |
Eytan Lifshitz | 1b8ebbd | 2014-04-01 16:44:21 +0300 | [diff] [blame] | 397 | if (tx_backoff != tt->min_backoff) |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 398 | throttle_enable = true; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 399 | if (tt->tx_backoff != tx_backoff) |
| 400 | iwl_mvm_tt_tx_backoff(mvm, tx_backoff); |
| 401 | } |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 402 | |
| 403 | if (!tt->throttle && throttle_enable) { |
| 404 | IWL_WARN(mvm, |
| 405 | "Due to high temperature thermal throttling initiated\n"); |
| 406 | tt->throttle = true; |
Eytan Lifshitz | 19a04bd | 2014-04-02 21:37:57 +0300 | [diff] [blame] | 407 | } else if (tt->throttle && !tt->dynamic_smps && |
| 408 | tt->tx_backoff == tt->min_backoff && |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 409 | temperature <= params->tx_protection_exit) { |
| 410 | IWL_WARN(mvm, |
| 411 | "Temperature is back to normal thermal throttling stopped\n"); |
| 412 | tt->throttle = false; |
| 413 | } |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 414 | } |
| 415 | |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 416 | static const struct iwl_tt_params iwl_mvm_default_tt_params = { |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 417 | .ct_kill_entry = 118, |
| 418 | .ct_kill_exit = 96, |
| 419 | .ct_kill_duration = 5, |
| 420 | .dynamic_smps_entry = 114, |
| 421 | .dynamic_smps_exit = 110, |
| 422 | .tx_protection_entry = 114, |
| 423 | .tx_protection_exit = 108, |
| 424 | .tx_backoff = { |
| 425 | {.temperature = 112, .backoff = 200}, |
| 426 | {.temperature = 113, .backoff = 600}, |
| 427 | {.temperature = 114, .backoff = 1200}, |
| 428 | {.temperature = 115, .backoff = 2000}, |
| 429 | {.temperature = 116, .backoff = 4000}, |
| 430 | {.temperature = 117, .backoff = 10000}, |
| 431 | }, |
| 432 | .support_ct_kill = true, |
| 433 | .support_dynamic_smps = true, |
| 434 | .support_tx_protection = true, |
| 435 | .support_tx_backoff = true, |
| 436 | }; |
| 437 | |
Ido Yariv | 0c0e2c7 | 2014-01-16 21:12:02 -0500 | [diff] [blame] | 438 | void iwl_mvm_tt_initialize(struct iwl_mvm *mvm, u32 min_backoff) |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 439 | { |
| 440 | struct iwl_mvm_tt_mgmt *tt = &mvm->thermal_throttle; |
| 441 | |
| 442 | IWL_DEBUG_TEMP(mvm, "Initialize Thermal Throttling\n"); |
Eytan Lifshitz | 6be497f | 2013-07-24 14:49:18 +0300 | [diff] [blame] | 443 | |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 444 | if (mvm->cfg->thermal_params) |
| 445 | tt->params = *mvm->cfg->thermal_params; |
Eytan Lifshitz | 6be497f | 2013-07-24 14:49:18 +0300 | [diff] [blame] | 446 | else |
Chaya Rachel Ivgi | 3444682 | 2015-04-19 12:26:39 +0300 | [diff] [blame] | 447 | tt->params = iwl_mvm_default_tt_params; |
Eytan Lifshitz | 6be497f | 2013-07-24 14:49:18 +0300 | [diff] [blame] | 448 | |
eytan lifshitz | dafe6c4 | 2013-06-18 14:28:56 +0300 | [diff] [blame] | 449 | tt->throttle = false; |
Luciano Coelho | 19789ab | 2014-12-15 14:15:15 +0200 | [diff] [blame] | 450 | tt->dynamic_smps = false; |
Ido Yariv | 0c0e2c7 | 2014-01-16 21:12:02 -0500 | [diff] [blame] | 451 | tt->min_backoff = min_backoff; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 452 | INIT_DELAYED_WORK(&tt->ct_kill_exit, check_exit_ctkill); |
| 453 | } |
| 454 | |
| 455 | void iwl_mvm_tt_exit(struct iwl_mvm *mvm) |
| 456 | { |
| 457 | cancel_delayed_work_sync(&mvm->thermal_throttle.ct_kill_exit); |
| 458 | IWL_DEBUG_TEMP(mvm, "Exit Thermal Throttling\n"); |
| 459 | } |