Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright(c) 2009-2010 Realtek Corporation. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2 of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * wlanfae <wlanfae@realtek.com> |
| 23 | * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park, |
| 24 | * Hsinchu 300, Taiwan. |
| 25 | * |
| 26 | * Larry Finger <Larry.Finger@lwfinger.net> |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
| 30 | #include "wifi.h" |
| 31 | #include "base.h" |
| 32 | #include "ps.h" |
| 33 | |
| 34 | bool rtl_ps_enable_nic(struct ieee80211_hw *hw) |
| 35 | { |
| 36 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 37 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 38 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 39 | |
| 40 | /*<1> reset trx ring */ |
| 41 | if (rtlhal->interface == INTF_PCI) |
| 42 | rtlpriv->intf_ops->reset_trx_ring(hw); |
| 43 | |
| 44 | if (is_hal_stop(rtlhal)) |
| 45 | RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, |
| 46 | ("Driver is already down!\n")); |
| 47 | |
| 48 | /*<2> Enable Adapter */ |
| 49 | rtlpriv->cfg->ops->hw_init(hw); |
| 50 | RT_CLEAR_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_HALT_NIC); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 51 | |
| 52 | /*<3> Enable Interrupt */ |
| 53 | rtlpriv->cfg->ops->enable_interrupt(hw); |
| 54 | |
| 55 | /*<enable timer> */ |
| 56 | rtl_watch_dog_timer_callback((unsigned long)hw); |
| 57 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 58 | return true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 59 | } |
| 60 | EXPORT_SYMBOL(rtl_ps_enable_nic); |
| 61 | |
| 62 | bool rtl_ps_disable_nic(struct ieee80211_hw *hw) |
| 63 | { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 64 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 65 | |
| 66 | /*<1> Stop all timer */ |
| 67 | rtl_deinit_deferred_work(hw); |
| 68 | |
| 69 | /*<2> Disable Interrupt */ |
| 70 | rtlpriv->cfg->ops->disable_interrupt(hw); |
Mike McCormack | 67fc605 | 2011-05-31 08:49:23 +0900 | [diff] [blame^] | 71 | tasklet_kill(&rtlpriv->works.irq_tasklet); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 72 | |
| 73 | /*<3> Disable Adapter */ |
| 74 | rtlpriv->cfg->ops->hw_disable(hw); |
| 75 | |
Larry Finger | 3247328 | 2011-03-27 16:19:57 -0500 | [diff] [blame] | 76 | return true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 77 | } |
| 78 | EXPORT_SYMBOL(rtl_ps_disable_nic); |
| 79 | |
| 80 | bool rtl_ps_set_rf_state(struct ieee80211_hw *hw, |
| 81 | enum rf_pwrstate state_toset, |
| 82 | u32 changesource, bool protect_or_not) |
| 83 | { |
| 84 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 85 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 86 | bool actionallowed = false; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 87 | u16 rfwait_cnt = 0; |
| 88 | unsigned long flag; |
| 89 | |
| 90 | /*protect_or_not = true; */ |
| 91 | |
| 92 | if (protect_or_not) |
| 93 | goto no_protect; |
| 94 | |
| 95 | /* |
| 96 | *Only one thread can change |
| 97 | *the RF state at one time, and others |
| 98 | *should wait to be executed. |
| 99 | */ |
| 100 | while (true) { |
| 101 | spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flag); |
| 102 | if (ppsc->rfchange_inprogress) { |
| 103 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, |
| 104 | flag); |
| 105 | |
| 106 | RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, |
| 107 | ("RF Change in progress!" |
| 108 | "Wait to set..state_toset(%d).\n", |
| 109 | state_toset)); |
| 110 | |
| 111 | /* Set RF after the previous action is done. */ |
| 112 | while (ppsc->rfchange_inprogress) { |
| 113 | rfwait_cnt++; |
| 114 | mdelay(1); |
| 115 | |
| 116 | /* |
| 117 | *Wait too long, return false to avoid |
| 118 | *to be stuck here. |
| 119 | */ |
| 120 | if (rfwait_cnt > 100) |
| 121 | return false; |
| 122 | } |
| 123 | } else { |
| 124 | ppsc->rfchange_inprogress = true; |
| 125 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, |
| 126 | flag); |
| 127 | break; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | no_protect: |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 132 | switch (state_toset) { |
| 133 | case ERFON: |
| 134 | ppsc->rfoff_reason &= (~changesource); |
| 135 | |
| 136 | if ((changesource == RF_CHANGE_BY_HW) && |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 137 | (ppsc->hwradiooff == true)) { |
| 138 | ppsc->hwradiooff = false; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | if (!ppsc->rfoff_reason) { |
| 142 | ppsc->rfoff_reason = 0; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 143 | actionallowed = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | break; |
| 147 | |
| 148 | case ERFOFF: |
| 149 | |
| 150 | if ((changesource == RF_CHANGE_BY_HW) |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 151 | && (ppsc->hwradiooff == false)) { |
| 152 | ppsc->hwradiooff = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | ppsc->rfoff_reason |= changesource; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 156 | actionallowed = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 157 | break; |
| 158 | |
| 159 | case ERFSLEEP: |
| 160 | ppsc->rfoff_reason |= changesource; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 161 | actionallowed = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 162 | break; |
| 163 | |
| 164 | default: |
| 165 | RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, |
| 166 | ("switch case not process\n")); |
| 167 | break; |
| 168 | } |
| 169 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 170 | if (actionallowed) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 171 | rtlpriv->cfg->ops->set_rf_power_state(hw, state_toset); |
| 172 | |
| 173 | if (!protect_or_not) { |
| 174 | spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flag); |
| 175 | ppsc->rfchange_inprogress = false; |
| 176 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flag); |
| 177 | } |
| 178 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 179 | return actionallowed; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 180 | } |
| 181 | EXPORT_SYMBOL(rtl_ps_set_rf_state); |
| 182 | |
| 183 | static void _rtl_ps_inactive_ps(struct ieee80211_hw *hw) |
| 184 | { |
| 185 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 186 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); |
| 187 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 188 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 189 | ppsc->swrf_processing = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 190 | |
Larry Finger | 099fb8a | 2011-05-14 10:15:17 -0500 | [diff] [blame] | 191 | if (ppsc->inactive_pwrstate == ERFON && |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 192 | rtlhal->interface == INTF_PCI) { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 193 | if ((ppsc->reg_rfps_level & RT_RF_OFF_LEVL_ASPM) && |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 194 | RT_IN_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM) && |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 195 | rtlhal->interface == INTF_PCI) { |
| 196 | rtlpriv->intf_ops->disable_aspm(hw); |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 197 | RT_CLEAR_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
| 201 | rtl_ps_set_rf_state(hw, ppsc->inactive_pwrstate, |
| 202 | RF_CHANGE_BY_IPS, false); |
| 203 | |
| 204 | if (ppsc->inactive_pwrstate == ERFOFF && |
| 205 | rtlhal->interface == INTF_PCI) { |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 206 | if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_ASPM && |
| 207 | !RT_IN_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM)) { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 208 | rtlpriv->intf_ops->enable_aspm(hw); |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 209 | RT_SET_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 213 | ppsc->swrf_processing = false; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | void rtl_ips_nic_off_wq_callback(void *data) |
| 217 | { |
| 218 | struct rtl_works *rtlworks = |
| 219 | container_of_dwork_rtl(data, struct rtl_works, ips_nic_off_wq); |
| 220 | struct ieee80211_hw *hw = rtlworks->hw; |
| 221 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 222 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); |
| 223 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 224 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 225 | enum rf_pwrstate rtstate; |
| 226 | |
| 227 | if (mac->opmode != NL80211_IFTYPE_STATION) { |
| 228 | RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, |
| 229 | ("not station return\n")); |
| 230 | return; |
| 231 | } |
| 232 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 233 | if (mac->link_state > MAC80211_NOLINK) |
| 234 | return; |
| 235 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 236 | if (is_hal_stop(rtlhal)) |
| 237 | return; |
| 238 | |
| 239 | if (rtlpriv->sec.being_setkey) |
| 240 | return; |
| 241 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 242 | if (ppsc->inactiveps) { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 243 | rtstate = ppsc->rfpwr_state; |
| 244 | |
| 245 | /* |
| 246 | *Do not enter IPS in the following conditions: |
| 247 | *(1) RF is already OFF or Sleep |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 248 | *(2) swrf_processing (indicates the IPS is still under going) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 249 | *(3) Connectted (only disconnected can trigger IPS) |
| 250 | *(4) IBSS (send Beacon) |
| 251 | *(5) AP mode (send Beacon) |
| 252 | *(6) monitor mode (rcv packet) |
| 253 | */ |
| 254 | |
| 255 | if (rtstate == ERFON && |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 256 | !ppsc->swrf_processing && |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 257 | (mac->link_state == MAC80211_NOLINK) && |
| 258 | !mac->act_scanning) { |
| 259 | RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE, |
| 260 | ("IPSEnter(): Turn off RF.\n")); |
| 261 | |
| 262 | ppsc->inactive_pwrstate = ERFOFF; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 263 | ppsc->in_powersavemode = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 264 | |
| 265 | /*rtl_pci_reset_trx_ring(hw); */ |
| 266 | _rtl_ps_inactive_ps(hw); |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | void rtl_ips_nic_off(struct ieee80211_hw *hw) |
| 272 | { |
| 273 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 274 | |
| 275 | /* |
| 276 | *because when link with ap, mac80211 will ask us |
| 277 | *to disable nic quickly after scan before linking, |
| 278 | *this will cause link failed, so we delay 100ms here |
| 279 | */ |
| 280 | queue_delayed_work(rtlpriv->works.rtl_wq, |
| 281 | &rtlpriv->works.ips_nic_off_wq, MSECS(100)); |
| 282 | } |
| 283 | |
| 284 | void rtl_ips_nic_on(struct ieee80211_hw *hw) |
| 285 | { |
| 286 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 287 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 288 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 289 | enum rf_pwrstate rtstate; |
Larry Finger | d704300 | 2010-12-17 19:36:25 -0600 | [diff] [blame] | 290 | unsigned long flags; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 291 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 292 | if (mac->opmode != NL80211_IFTYPE_STATION) |
| 293 | return; |
| 294 | |
Larry Finger | d704300 | 2010-12-17 19:36:25 -0600 | [diff] [blame] | 295 | spin_lock_irqsave(&rtlpriv->locks.ips_lock, flags); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 296 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 297 | if (ppsc->inactiveps) { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 298 | rtstate = ppsc->rfpwr_state; |
| 299 | |
| 300 | if (rtstate != ERFON && |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 301 | !ppsc->swrf_processing && |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 302 | ppsc->rfoff_reason <= RF_CHANGE_BY_IPS) { |
| 303 | |
| 304 | ppsc->inactive_pwrstate = ERFON; |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 305 | ppsc->in_powersavemode = false; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 306 | |
| 307 | _rtl_ps_inactive_ps(hw); |
| 308 | } |
| 309 | } |
| 310 | |
Larry Finger | d704300 | 2010-12-17 19:36:25 -0600 | [diff] [blame] | 311 | spin_unlock_irqrestore(&rtlpriv->locks.ips_lock, flags); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /*for FW LPS*/ |
| 315 | |
| 316 | /* |
| 317 | *Determine if we can set Fw into PS mode |
| 318 | *in current condition.Return TRUE if it |
| 319 | *can enter PS mode. |
| 320 | */ |
| 321 | static bool rtl_get_fwlps_doze(struct ieee80211_hw *hw) |
| 322 | { |
| 323 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 324 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 325 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 326 | u32 ps_timediff; |
| 327 | |
| 328 | ps_timediff = jiffies_to_msecs(jiffies - |
| 329 | ppsc->last_delaylps_stamp_jiffies); |
| 330 | |
| 331 | if (ps_timediff < 2000) { |
| 332 | RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, |
| 333 | ("Delay enter Fw LPS for DHCP, ARP," |
| 334 | " or EAPOL exchanging state.\n")); |
| 335 | return false; |
| 336 | } |
| 337 | |
| 338 | if (mac->link_state != MAC80211_LINKED) |
| 339 | return false; |
| 340 | |
| 341 | if (mac->opmode == NL80211_IFTYPE_ADHOC) |
| 342 | return false; |
| 343 | |
| 344 | return true; |
| 345 | } |
| 346 | |
| 347 | /* Change current and default preamble mode.*/ |
| 348 | static void rtl_lps_set_psmode(struct ieee80211_hw *hw, u8 rt_psmode) |
| 349 | { |
| 350 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 351 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 352 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 353 | u8 rpwm_val, fw_pwrmode; |
| 354 | |
| 355 | if (mac->opmode == NL80211_IFTYPE_ADHOC) |
| 356 | return; |
| 357 | |
| 358 | if (mac->link_state != MAC80211_LINKED) |
| 359 | return; |
| 360 | |
| 361 | if (ppsc->dot11_psmode == rt_psmode) |
| 362 | return; |
| 363 | |
| 364 | /* Update power save mode configured. */ |
| 365 | ppsc->dot11_psmode = rt_psmode; |
| 366 | |
| 367 | /* |
| 368 | *<FW control LPS> |
| 369 | *1. Enter PS mode |
| 370 | * Set RPWM to Fw to turn RF off and send H2C fw_pwrmode |
| 371 | * cmd to set Fw into PS mode. |
| 372 | *2. Leave PS mode |
| 373 | * Send H2C fw_pwrmode cmd to Fw to set Fw into Active |
| 374 | * mode and set RPWM to turn RF on. |
| 375 | */ |
| 376 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 377 | if ((ppsc->fwctrl_lps) && ppsc->report_linked) { |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 378 | bool fw_current_inps; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 379 | if (ppsc->dot11_psmode == EACTIVE) { |
| 380 | RT_TRACE(rtlpriv, COMP_RF, DBG_DMESG, |
| 381 | ("FW LPS leave ps_mode:%x\n", |
| 382 | FW_PS_ACTIVE_MODE)); |
| 383 | |
| 384 | rpwm_val = 0x0C; /* RF on */ |
| 385 | fw_pwrmode = FW_PS_ACTIVE_MODE; |
| 386 | rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_SET_RPWM, |
| 387 | (u8 *) (&rpwm_val)); |
| 388 | rtlpriv->cfg->ops->set_hw_reg(hw, |
| 389 | HW_VAR_H2C_FW_PWRMODE, |
| 390 | (u8 *) (&fw_pwrmode)); |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 391 | fw_current_inps = false; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 392 | |
| 393 | rtlpriv->cfg->ops->set_hw_reg(hw, |
| 394 | HW_VAR_FW_PSMODE_STATUS, |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 395 | (u8 *) (&fw_current_inps)); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 396 | |
| 397 | } else { |
| 398 | if (rtl_get_fwlps_doze(hw)) { |
| 399 | RT_TRACE(rtlpriv, COMP_RF, DBG_DMESG, |
| 400 | ("FW LPS enter ps_mode:%x\n", |
| 401 | ppsc->fwctrl_psmode)); |
| 402 | |
| 403 | rpwm_val = 0x02; /* RF off */ |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 404 | fw_current_inps = true; |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 405 | rtlpriv->cfg->ops->set_hw_reg(hw, |
| 406 | HW_VAR_FW_PSMODE_STATUS, |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 407 | (u8 *) (&fw_current_inps)); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 408 | rtlpriv->cfg->ops->set_hw_reg(hw, |
| 409 | HW_VAR_H2C_FW_PWRMODE, |
| 410 | (u8 *) (&ppsc->fwctrl_psmode)); |
| 411 | |
| 412 | rtlpriv->cfg->ops->set_hw_reg(hw, |
| 413 | HW_VAR_SET_RPWM, |
| 414 | (u8 *) (&rpwm_val)); |
| 415 | } else { |
| 416 | /* Reset the power save related parameters. */ |
| 417 | ppsc->dot11_psmode = EACTIVE; |
| 418 | } |
| 419 | } |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | /*Enter the leisure power save mode.*/ |
| 424 | void rtl_lps_enter(struct ieee80211_hw *hw) |
| 425 | { |
| 426 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 427 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 428 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 429 | unsigned long flag; |
| 430 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 431 | if (!ppsc->fwctrl_lps) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 432 | return; |
| 433 | |
| 434 | if (rtlpriv->sec.being_setkey) |
| 435 | return; |
| 436 | |
Larry Finger | 7ea4724 | 2011-02-19 16:28:57 -0600 | [diff] [blame] | 437 | if (rtlpriv->link_info.busytraffic) |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 438 | return; |
| 439 | |
| 440 | /*sleep after linked 10s, to let DHCP and 4-way handshake ok enough!! */ |
| 441 | if (mac->cnt_after_linked < 5) |
| 442 | return; |
| 443 | |
| 444 | if (mac->opmode == NL80211_IFTYPE_ADHOC) |
| 445 | return; |
| 446 | |
| 447 | if (mac->link_state != MAC80211_LINKED) |
| 448 | return; |
| 449 | |
| 450 | spin_lock_irqsave(&rtlpriv->locks.lps_lock, flag); |
| 451 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 452 | /* Idle for a while if we connect to AP a while ago. */ |
| 453 | if (mac->cnt_after_linked >= 2) { |
| 454 | if (ppsc->dot11_psmode == EACTIVE) { |
| 455 | RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 456 | ("Enter 802.11 power save mode...\n")); |
| 457 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 458 | rtl_lps_set_psmode(hw, EAUTOPS); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 459 | } |
| 460 | } |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 461 | |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 462 | spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); |
| 463 | } |
| 464 | |
| 465 | /*Leave the leisure power save mode.*/ |
| 466 | void rtl_lps_leave(struct ieee80211_hw *hw) |
| 467 | { |
| 468 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 469 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 470 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); |
| 471 | unsigned long flag; |
| 472 | |
| 473 | spin_lock_irqsave(&rtlpriv->locks.lps_lock, flag); |
| 474 | |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 475 | if (ppsc->fwctrl_lps) { |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 476 | if (ppsc->dot11_psmode != EACTIVE) { |
| 477 | |
| 478 | /*FIX ME */ |
| 479 | rtlpriv->cfg->ops->enable_interrupt(hw); |
| 480 | |
| 481 | if (ppsc->reg_rfps_level & RT_RF_LPS_LEVEL_ASPM && |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 482 | RT_IN_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM) && |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 483 | rtlhal->interface == INTF_PCI) { |
| 484 | rtlpriv->intf_ops->disable_aspm(hw); |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 485 | RT_CLEAR_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM); |
Larry Finger | 0c81733 | 2010-12-08 11:12:31 -0600 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, |
| 489 | ("Busy Traffic,Leave 802.11 power save..\n")); |
| 490 | |
| 491 | rtl_lps_set_psmode(hw, EACTIVE); |
| 492 | } |
| 493 | } |
| 494 | spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); |
| 495 | } |
Chaoming_Li | cc7dc0c | 2011-04-25 12:53:14 -0500 | [diff] [blame] | 496 | |
| 497 | /* For sw LPS*/ |
| 498 | void rtl_swlps_beacon(struct ieee80211_hw *hw, void *data, unsigned int len) |
| 499 | { |
| 500 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 501 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 502 | struct ieee80211_hdr *hdr = (void *) data; |
| 503 | struct ieee80211_tim_ie *tim_ie; |
| 504 | u8 *tim; |
| 505 | u8 tim_len; |
| 506 | bool u_buffed; |
| 507 | bool m_buffed; |
| 508 | |
| 509 | if (mac->opmode != NL80211_IFTYPE_STATION) |
| 510 | return; |
| 511 | |
| 512 | if (!rtlpriv->psc.swctrl_lps) |
| 513 | return; |
| 514 | |
| 515 | if (rtlpriv->mac80211.link_state != MAC80211_LINKED) |
| 516 | return; |
| 517 | |
| 518 | if (!rtlpriv->psc.sw_ps_enabled) |
| 519 | return; |
| 520 | |
| 521 | if (rtlpriv->psc.fwctrl_lps) |
| 522 | return; |
| 523 | |
| 524 | if (likely(!(hw->conf.flags & IEEE80211_CONF_PS))) |
| 525 | return; |
| 526 | |
| 527 | /* check if this really is a beacon */ |
| 528 | if (!ieee80211_is_beacon(hdr->frame_control)) |
| 529 | return; |
| 530 | |
| 531 | /* min. beacon length + FCS_LEN */ |
| 532 | if (len <= 40 + FCS_LEN) |
| 533 | return; |
| 534 | |
| 535 | /* and only beacons from the associated BSSID, please */ |
| 536 | if (compare_ether_addr(hdr->addr3, rtlpriv->mac80211.bssid)) |
| 537 | return; |
| 538 | |
| 539 | rtlpriv->psc.last_beacon = jiffies; |
| 540 | |
| 541 | tim = rtl_find_ie(data, len - FCS_LEN, WLAN_EID_TIM); |
| 542 | if (!tim) |
| 543 | return; |
| 544 | |
| 545 | if (tim[1] < sizeof(*tim_ie)) |
| 546 | return; |
| 547 | |
| 548 | tim_len = tim[1]; |
| 549 | tim_ie = (struct ieee80211_tim_ie *) &tim[2]; |
| 550 | |
| 551 | if (!WARN_ON_ONCE(!hw->conf.ps_dtim_period)) |
| 552 | rtlpriv->psc.dtim_counter = tim_ie->dtim_count; |
| 553 | |
| 554 | /* Check whenever the PHY can be turned off again. */ |
| 555 | |
| 556 | /* 1. What about buffered unicast traffic for our AID? */ |
| 557 | u_buffed = ieee80211_check_tim(tim_ie, tim_len, |
| 558 | rtlpriv->mac80211.assoc_id); |
| 559 | |
| 560 | /* 2. Maybe the AP wants to send multicast/broadcast data? */ |
| 561 | m_buffed = tim_ie->bitmap_ctrl & 0x01; |
| 562 | rtlpriv->psc.multi_buffered = m_buffed; |
| 563 | |
| 564 | /* unicast will process by mac80211 through |
| 565 | * set ~IEEE80211_CONF_PS, So we just check |
| 566 | * multicast frames here */ |
| 567 | if (!m_buffed) { |
| 568 | /* back to low-power land. and delay is |
| 569 | * prevent null power save frame tx fail */ |
| 570 | queue_delayed_work(rtlpriv->works.rtl_wq, |
| 571 | &rtlpriv->works.ps_work, MSECS(5)); |
| 572 | } else { |
| 573 | RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG, ("u_bufferd: %x, " |
| 574 | "m_buffered: %x\n", u_buffed, m_buffed)); |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | void rtl_swlps_rf_awake(struct ieee80211_hw *hw) |
| 579 | { |
| 580 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 581 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 582 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 583 | unsigned long flag; |
| 584 | |
| 585 | if (!rtlpriv->psc.swctrl_lps) |
| 586 | return; |
| 587 | if (mac->link_state != MAC80211_LINKED) |
| 588 | return; |
| 589 | |
| 590 | if (ppsc->reg_rfps_level & RT_RF_LPS_LEVEL_ASPM && |
| 591 | RT_IN_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM)) { |
| 592 | rtlpriv->intf_ops->disable_aspm(hw); |
| 593 | RT_CLEAR_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM); |
| 594 | } |
| 595 | |
| 596 | spin_lock_irqsave(&rtlpriv->locks.lps_lock, flag); |
| 597 | rtl_ps_set_rf_state(hw, ERFON, RF_CHANGE_BY_PS, false); |
| 598 | spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); |
| 599 | } |
| 600 | |
| 601 | void rtl_swlps_rfon_wq_callback(void *data) |
| 602 | { |
| 603 | struct rtl_works *rtlworks = |
| 604 | container_of_dwork_rtl(data, struct rtl_works, ps_rfon_wq); |
| 605 | struct ieee80211_hw *hw = rtlworks->hw; |
| 606 | |
| 607 | rtl_swlps_rf_awake(hw); |
| 608 | } |
| 609 | |
| 610 | void rtl_swlps_rf_sleep(struct ieee80211_hw *hw) |
| 611 | { |
| 612 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 613 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
| 614 | struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); |
| 615 | unsigned long flag; |
| 616 | u8 sleep_intv; |
| 617 | |
| 618 | if (!rtlpriv->psc.sw_ps_enabled) |
| 619 | return; |
| 620 | |
| 621 | if ((rtlpriv->sec.being_setkey) || |
| 622 | (mac->opmode == NL80211_IFTYPE_ADHOC)) |
| 623 | return; |
| 624 | |
| 625 | /*sleep after linked 10s, to let DHCP and 4-way handshake ok enough!! */ |
| 626 | if ((mac->link_state != MAC80211_LINKED) || (mac->cnt_after_linked < 5)) |
| 627 | return; |
| 628 | |
| 629 | if (rtlpriv->link_info.busytraffic) |
| 630 | return; |
| 631 | |
| 632 | spin_lock_irqsave(&rtlpriv->locks.rf_ps_lock, flag); |
| 633 | if (rtlpriv->psc.rfchange_inprogress) { |
| 634 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flag); |
| 635 | return; |
| 636 | } |
| 637 | spin_unlock_irqrestore(&rtlpriv->locks.rf_ps_lock, flag); |
| 638 | |
| 639 | spin_lock_irqsave(&rtlpriv->locks.lps_lock, flag); |
| 640 | rtl_ps_set_rf_state(hw, ERFSLEEP, RF_CHANGE_BY_PS, false); |
| 641 | spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); |
| 642 | |
| 643 | if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_ASPM && |
| 644 | !RT_IN_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM)) { |
| 645 | rtlpriv->intf_ops->enable_aspm(hw); |
| 646 | RT_SET_PS_LEVEL(ppsc, RT_PS_LEVEL_ASPM); |
| 647 | } |
| 648 | |
| 649 | /* here is power save alg, when this beacon is DTIM |
| 650 | * we will set sleep time to dtim_period * n; |
| 651 | * when this beacon is not DTIM, we will set sleep |
| 652 | * time to sleep_intv = rtlpriv->psc.dtim_counter or |
| 653 | * MAX_SW_LPS_SLEEP_INTV(default set to 5) */ |
| 654 | |
| 655 | if (rtlpriv->psc.dtim_counter == 0) { |
| 656 | if (hw->conf.ps_dtim_period == 1) |
| 657 | sleep_intv = hw->conf.ps_dtim_period * 2; |
| 658 | else |
| 659 | sleep_intv = hw->conf.ps_dtim_period; |
| 660 | } else { |
| 661 | sleep_intv = rtlpriv->psc.dtim_counter; |
| 662 | } |
| 663 | |
| 664 | if (sleep_intv > MAX_SW_LPS_SLEEP_INTV) |
| 665 | sleep_intv = MAX_SW_LPS_SLEEP_INTV; |
| 666 | |
| 667 | /* this print should always be dtim_conter = 0 & |
| 668 | * sleep = dtim_period, that meaons, we should |
| 669 | * awake before every dtim */ |
| 670 | RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG, |
| 671 | ("dtim_counter:%x will sleep :%d" |
| 672 | " beacon_intv\n", rtlpriv->psc.dtim_counter, sleep_intv)); |
| 673 | |
| 674 | /* we tested that 40ms is enough for sw & hw sw delay */ |
| 675 | queue_delayed_work(rtlpriv->works.rtl_wq, &rtlpriv->works.ps_rfon_wq, |
| 676 | MSECS(sleep_intv * mac->vif->bss_conf.beacon_int - 40)); |
| 677 | } |
| 678 | |
| 679 | |
| 680 | void rtl_swlps_wq_callback(void *data) |
| 681 | { |
| 682 | struct rtl_works *rtlworks = container_of_dwork_rtl(data, |
| 683 | struct rtl_works, |
| 684 | ps_work); |
| 685 | struct ieee80211_hw *hw = rtlworks->hw; |
| 686 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
| 687 | bool ps = false; |
| 688 | |
| 689 | ps = (hw->conf.flags & IEEE80211_CONF_PS); |
| 690 | |
| 691 | /* we can sleep after ps null send ok */ |
| 692 | if (rtlpriv->psc.state_inap) { |
| 693 | rtl_swlps_rf_sleep(hw); |
| 694 | |
| 695 | if (rtlpriv->psc.state && !ps) { |
| 696 | rtlpriv->psc.sleep_ms = jiffies_to_msecs(jiffies - |
| 697 | rtlpriv->psc.last_action); |
| 698 | } |
| 699 | |
| 700 | if (ps) |
| 701 | rtlpriv->psc.last_slept = jiffies; |
| 702 | |
| 703 | rtlpriv->psc.last_action = jiffies; |
| 704 | rtlpriv->psc.state = ps; |
| 705 | } |
| 706 | } |