Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
rtl_ps.c
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved.
3  *
4  * Based on the r8180 driver, which is:
5  * Copyright 2004-2005 Andrea Merello <[email protected]>, et al.
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of version 2 of the GNU General Public License as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18  *
19  * The full GNU General Public License is included in this distribution in the
20  * file called LICENSE.
21  *
22  * Contact Information:
23  * wlanfae <[email protected]>
24  *****************************************************************************/
25 #include "rtl_ps.h"
26 #include "rtl_core.h"
27 #include "r8192E_phy.h"
28 #include "r8192E_phyreg.h"
29 #include "r8190P_rtl8256.h" /* RTL8225 Radio frontend */
30 #include "r8192E_cmdpkt.h"
31 
32 static void rtl8192_hw_sleep_down(struct net_device *dev)
33 {
34  struct r8192_priv *priv = rtllib_priv(dev);
35  unsigned long flags = 0;
36  spin_lock_irqsave(&priv->rf_ps_lock, flags);
37  if (priv->RFChangeInProgress) {
38  spin_unlock_irqrestore(&priv->rf_ps_lock, flags);
39  RT_TRACE(COMP_DBG, "rtl8192_hw_sleep_down(): RF Change in "
40  "progress!\n");
41  return;
42  }
43  spin_unlock_irqrestore(&priv->rf_ps_lock, flags);
44  RT_TRACE(COMP_DBG, "%s()============>come to sleep down\n", __func__);
45 
47 }
48 
50 {
51  struct rtllib_device *ieee = container_of_dwork_rsl(data,
52  struct rtllib_device, hw_sleep_wq);
53  struct net_device *dev = ieee->dev;
54  rtl8192_hw_sleep_down(dev);
55 }
56 
57 void rtl8192_hw_wakeup(struct net_device *dev)
58 {
59  struct r8192_priv *priv = rtllib_priv(dev);
60  unsigned long flags = 0;
61  spin_lock_irqsave(&priv->rf_ps_lock, flags);
62  if (priv->RFChangeInProgress) {
63  spin_unlock_irqrestore(&priv->rf_ps_lock, flags);
64  RT_TRACE(COMP_DBG, "rtl8192_hw_wakeup(): RF Change in "
65  "progress!\n");
67  &priv->rtllib->hw_wakeup_wq, MSECS(10));
68  return;
69  }
70  spin_unlock_irqrestore(&priv->rf_ps_lock, flags);
71  RT_TRACE(COMP_PS, "%s()============>come to wake up\n", __func__);
73 }
74 
76 {
77  struct rtllib_device *ieee = container_of_dwork_rsl(data,
78  struct rtllib_device, hw_wakeup_wq);
79  struct net_device *dev = ieee->dev;
80  rtl8192_hw_wakeup(dev);
81 
82 }
83 
84 #define MIN_SLEEP_TIME 50
85 #define MAX_SLEEP_TIME 10000
87 {
88  struct r8192_priv *priv = rtllib_priv(dev);
89 
90  u32 tmp;
91  unsigned long flags;
92 
93  spin_lock_irqsave(&priv->ps_lock, flags);
94 
95  time -= MSECS(8+16+7);
96 
97  if ((time - jiffies) <= MSECS(MIN_SLEEP_TIME)) {
98  spin_unlock_irqrestore(&priv->ps_lock, flags);
99  printk(KERN_INFO "too short to sleep::%lld < %ld\n",
100  time - jiffies, MSECS(MIN_SLEEP_TIME));
101  return;
102  }
103 
104  if ((time - jiffies) > MSECS(MAX_SLEEP_TIME)) {
105  printk(KERN_INFO "========>too long to sleep:%lld > %ld\n",
106  time - jiffies, MSECS(MAX_SLEEP_TIME));
107  spin_unlock_irqrestore(&priv->ps_lock, flags);
108  return;
109  }
110  tmp = time - jiffies;
111  queue_delayed_work_rsl(priv->rtllib->wq,
112  &priv->rtllib->hw_wakeup_wq, tmp);
113  queue_delayed_work_rsl(priv->rtllib->wq,
114  (void *)&priv->rtllib->hw_sleep_wq, 0);
115  spin_unlock_irqrestore(&priv->ps_lock, flags);
116 }
117 
118 static void InactivePsWorkItemCallback(struct net_device *dev)
119 {
120  struct r8192_priv *priv = rtllib_priv(dev);
121  struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
122  &(priv->rtllib->PowerSaveControl);
123 
124  RT_TRACE(COMP_PS, "InactivePsWorkItemCallback() --------->\n");
125  pPSC->bSwRfProcessing = true;
126 
127  RT_TRACE(COMP_PS, "InactivePsWorkItemCallback(): Set RF to %s.\n",
128  pPSC->eInactivePowerState == eRfOff ? "OFF" : "ON");
130  false);
131 
132  pPSC->bSwRfProcessing = false;
133  RT_TRACE(COMP_PS, "InactivePsWorkItemCallback() <---------\n");
134 }
135 
136 void IPSEnter(struct net_device *dev)
137 {
138  struct r8192_priv *priv = rtllib_priv(dev);
139  struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
140  &(priv->rtllib->PowerSaveControl);
141  enum rt_rf_power_state rtState;
142 
143  if (pPSC->bInactivePs) {
144  rtState = priv->rtllib->eRFPowerState;
145  if (rtState == eRfOn && !pPSC->bSwRfProcessing &&
146  (priv->rtllib->state != RTLLIB_LINKED) &&
147  (priv->rtllib->iw_mode != IW_MODE_MASTER)) {
148  RT_TRACE(COMP_PS, "IPSEnter(): Turn off RF.\n");
149  pPSC->eInactivePowerState = eRfOff;
150  priv->isRFOff = true;
151  priv->bInPowerSaveMode = true;
152  InactivePsWorkItemCallback(dev);
153  }
154  }
155 }
156 
157 void IPSLeave(struct net_device *dev)
158 {
159  struct r8192_priv *priv = rtllib_priv(dev);
160  struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
161  &(priv->rtllib->PowerSaveControl);
162  enum rt_rf_power_state rtState;
163 
164  if (pPSC->bInactivePs) {
165  rtState = priv->rtllib->eRFPowerState;
166  if (rtState != eRfOn && !pPSC->bSwRfProcessing &&
167  priv->rtllib->RfOffReason <= RF_CHANGE_BY_IPS) {
168  RT_TRACE(COMP_PS, "IPSLeave(): Turn on RF.\n");
169  pPSC->eInactivePowerState = eRfOn;
170  priv->bInPowerSaveMode = false;
171  InactivePsWorkItemCallback(dev);
172  }
173  }
174 }
175 
176 void IPSLeave_wq(void *data)
177 {
178  struct rtllib_device *ieee = container_of_work_rsl(data,
179  struct rtllib_device, ips_leave_wq);
180  struct net_device *dev = ieee->dev;
181  struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
182  down(&priv->rtllib->ips_sem);
183  IPSLeave(dev);
184  up(&priv->rtllib->ips_sem);
185 }
186 
188 {
189  struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
190  enum rt_rf_power_state rtState;
191  rtState = priv->rtllib->eRFPowerState;
192 
193  if (priv->rtllib->PowerSaveControl.bInactivePs) {
194  if (rtState == eRfOff) {
195  if (priv->rtllib->RfOffReason > RF_CHANGE_BY_IPS) {
196  RT_TRACE(COMP_ERR, "%s(): RF is OFF.\n",
197  __func__);
198  return;
199  } else {
200  printk(KERN_INFO "=========>%s(): IPSLeave\n",
201  __func__);
202  queue_work_rsl(priv->rtllib->wq,
203  &priv->rtllib->ips_leave_wq);
204  }
205  }
206  }
207 }
208 
209 void rtllib_ips_leave(struct net_device *dev)
210 {
211  struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
212  down(&priv->rtllib->ips_sem);
213  IPSLeave(dev);
214  up(&priv->rtllib->ips_sem);
215 }
216 
217 static bool MgntActSet_802_11_PowerSaveMode(struct net_device *dev,
218  u8 rtPsMode)
219 {
220  struct r8192_priv *priv = rtllib_priv(dev);
221 
222  if (priv->rtllib->iw_mode == IW_MODE_ADHOC)
223  return false;
224 
225  RT_TRACE(COMP_LPS, "%s(): set ieee->ps = %x\n", __func__, rtPsMode);
226  if (!priv->ps_force)
227  priv->rtllib->ps = rtPsMode;
228  if (priv->rtllib->sta_sleep != LPS_IS_WAKE &&
229  rtPsMode == RTLLIB_PS_DISABLED) {
230  unsigned long flags;
231 
232  rtl8192_hw_wakeup(dev);
233  priv->rtllib->sta_sleep = LPS_IS_WAKE;
234 
235  spin_lock_irqsave(&(priv->rtllib->mgmt_tx_lock), flags);
236  RT_TRACE(COMP_DBG, "LPS leave: notify AP we are awaked"
237  " ++++++++++ SendNullFunctionData\n");
239  spin_unlock_irqrestore(&(priv->rtllib->mgmt_tx_lock), flags);
240  }
241 
242  return true;
243 }
244 
245 void LeisurePSEnter(struct net_device *dev)
246 {
247  struct r8192_priv *priv = rtllib_priv(dev);
248  struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
249  &(priv->rtllib->PowerSaveControl);
250 
251  RT_TRACE(COMP_PS, "LeisurePSEnter()...\n");
252  RT_TRACE(COMP_PS, "pPSC->bLeisurePs = %d, ieee->ps = %d,pPSC->LpsIdle"
253  "Count is %d,RT_CHECK_FOR_HANG_PERIOD is %d\n",
254  pPSC->bLeisurePs, priv->rtllib->ps, pPSC->LpsIdleCount,
256 
257  if (!((priv->rtllib->iw_mode == IW_MODE_INFRA) &&
258  (priv->rtllib->state == RTLLIB_LINKED))
259  || (priv->rtllib->iw_mode == IW_MODE_ADHOC) ||
260  (priv->rtllib->iw_mode == IW_MODE_MASTER))
261  return;
262 
263  if (pPSC->bLeisurePs) {
264  if (pPSC->LpsIdleCount >= RT_CHECK_FOR_HANG_PERIOD) {
265 
266  if (priv->rtllib->ps == RTLLIB_PS_DISABLED) {
267 
268  RT_TRACE(COMP_LPS, "LeisurePSEnter(): Enter "
269  "802.11 power save mode...\n");
270 
271  if (!pPSC->bFwCtrlLPS) {
272  if (priv->rtllib->SetFwCmdHandler)
273  priv->rtllib->SetFwCmdHandler(
274  dev, FW_CMD_LPS_ENTER);
275  }
279  }
280  } else
281  pPSC->LpsIdleCount++;
282  }
283 }
284 
285 void LeisurePSLeave(struct net_device *dev)
286 {
287  struct r8192_priv *priv = rtllib_priv(dev);
288  struct rt_pwr_save_ctrl *pPSC = (struct rt_pwr_save_ctrl *)
289  &(priv->rtllib->PowerSaveControl);
290 
291 
292  RT_TRACE(COMP_PS, "LeisurePSLeave()...\n");
293  RT_TRACE(COMP_PS, "pPSC->bLeisurePs = %d, ieee->ps = %d\n",
294  pPSC->bLeisurePs, priv->rtllib->ps);
295 
296  if (pPSC->bLeisurePs) {
297  if (priv->rtllib->ps != RTLLIB_PS_DISABLED) {
298  RT_TRACE(COMP_LPS, "LeisurePSLeave(): Busy Traffic , "
299  "Leave 802.11 power save..\n");
302 
303  if (!pPSC->bFwCtrlLPS) {
304  if (priv->rtllib->SetFwCmdHandler)
305  priv->rtllib->SetFwCmdHandler(dev,
307  }
308  }
309  }
310 }