gma500: begin the config based split
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / vt6656 / power.c
blobb3136773b5da694693d022c154d4a82164d73730
1 /*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 * File: power.c
22 * Purpose: Handles 802.11 power management functions
24 * Author: Lyndon Chen
26 * Date: July 17, 2002
28 * Functions:
29 * PSvEnablePowerSaving - Enable Power Saving Mode
30 * PSvDiasblePowerSaving - Disable Power Saving Mode
31 * PSbConsiderPowerDown - Decide if we can Power Down
32 * PSvSendPSPOLL - Send PS-POLL packet
33 * PSbSendNullPacket - Send Null packet
34 * PSbIsNextTBTTWakeUp - Decide if we need to wake up at next Beacon
36 * Revision History:
40 #include "ttype.h"
41 #include "mac.h"
42 #include "device.h"
43 #include "wmgr.h"
44 #include "power.h"
45 #include "wcmd.h"
46 #include "rxtx.h"
47 #include "card.h"
48 #include "control.h"
49 #include "rndis.h"
51 /*--------------------- Static Definitions -------------------------*/
53 /*--------------------- Static Classes ----------------------------*/
55 /*--------------------- Static Variables --------------------------*/
56 static int msglevel = MSG_LEVEL_INFO;
57 /*--------------------- Static Functions --------------------------*/
59 /*--------------------- Export Variables --------------------------*/
61 /*--------------------- Export Functions --------------------------*/
65 * Routine Description:
66 * Enable hw power saving functions
68 * Return Value:
69 * None.
73 void PSvEnablePowerSaving(void *hDeviceContext,
74 WORD wListenInterval)
76 PSDevice pDevice = (PSDevice)hDeviceContext;
77 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
78 WORD wAID = pMgmt->wCurrAID | BIT14 | BIT15;
80 /* set period of power up before TBTT */
81 MACvWriteWord(pDevice, MAC_REG_PWBT, C_PWBT);
83 if (pDevice->eOPMode != OP_MODE_ADHOC) {
84 /* set AID */
85 MACvWriteWord(pDevice, MAC_REG_AIDATIM, wAID);
86 } else {
87 /* set ATIM Window */
88 /* MACvWriteATIMW(pDevice->PortOffset, pMgmt->wCurrATIMWindow); */
91 /* Warren:06-18-2004,the sequence must follow PSEN->AUTOSLEEP->GO2DOZE */
92 /* enable power saving hw function */
93 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_PSEN);
95 /* Set AutoSleep */
96 MACvRegBitsOn(pDevice, MAC_REG_PSCFG, PSCFG_AUTOSLEEP);
98 /* Warren:MUST turn on this once before turn on AUTOSLEEP ,or the AUTOSLEEP doesn't work */
99 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_GO2DOZE);
101 if (wListenInterval >= 2) {
103 /* clear always listen beacon */
104 MACvRegBitsOff(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN);
106 /* first time set listen next beacon */
107 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_LNBCN);
109 pMgmt->wCountToWakeUp = wListenInterval;
111 } else {
113 /* always listen beacon */
114 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN);
116 pMgmt->wCountToWakeUp = 0;
119 pDevice->bEnablePSMode = TRUE;
121 /* We don't send null pkt in ad hoc mode since beacon will handle this. */
122 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE)
123 PSbSendNullPacket(pDevice);
125 pDevice->bPWBitOn = TRUE;
126 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "PS:Power Saving Mode Enable...\n");
131 * Routine Description:
132 * Disable hw power saving functions
134 * Return Value:
135 * None.
139 void PSvDisablePowerSaving(void *hDeviceContext)
141 PSDevice pDevice = (PSDevice)hDeviceContext;
142 /* PSMgmtObject pMgmt = &(pDevice->sMgmtObj); */
144 /* disable power saving hw function */
145 CONTROLnsRequestOut(pDevice, MESSAGE_TYPE_DISABLE_PS, 0,
146 0, 0, NULL);
148 /* clear AutoSleep */
149 MACvRegBitsOff(pDevice, MAC_REG_PSCFG, PSCFG_AUTOSLEEP);
151 /* set always listen beacon */
152 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN);
153 pDevice->bEnablePSMode = FALSE;
155 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE)
156 PSbSendNullPacket(pDevice);
158 pDevice->bPWBitOn = FALSE;
163 * Routine Description:
164 * Consider to power down when no more packets to tx or rx.
166 * Return Value:
167 * TRUE, if power down success
168 * FALSE, if fail
171 BOOL PSbConsiderPowerDown(void *hDeviceContext,
172 BOOL bCheckRxDMA,
173 BOOL bCheckCountToWakeUp)
175 PSDevice pDevice = (PSDevice)hDeviceContext;
176 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
177 BYTE byData;
179 /* check if already in Doze mode */
180 ControlvReadByte(pDevice, MESSAGE_REQUEST_MACREG,
181 MAC_REG_PSCTL, &byData);
183 if ((byData & PSCTL_PS) != 0)
184 return TRUE;
186 if (pMgmt->eCurrMode != WMAC_MODE_IBSS_STA) {
187 /* check if in TIM wake period */
188 if (pMgmt->bInTIMWake)
189 return FALSE;
192 /* check scan state */
193 if (pDevice->bCmdRunning)
194 return FALSE;
196 /* Tx Burst */
197 if (pDevice->bPSModeTxBurst)
198 return FALSE;
200 /* Froce PSEN on */
201 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_PSEN);
203 if (pMgmt->eCurrMode != WMAC_MODE_IBSS_STA) {
204 if (bCheckCountToWakeUp && (pMgmt->wCountToWakeUp == 0
205 || pMgmt->wCountToWakeUp == 1)) {
206 return FALSE;
210 pDevice->bPSRxBeacon = TRUE;
212 /* no Tx, no Rx isr, now go to Doze */
213 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_GO2DOZE);
214 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Go to Doze ZZZZZZZZZZZZZZZ\n");
215 return TRUE;
220 * Routine Description:
221 * Send PS-POLL packet
223 * Return Value:
224 * None.
228 void PSvSendPSPOLL(void *hDeviceContext)
230 PSDevice pDevice = (PSDevice)hDeviceContext;
231 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
232 PSTxMgmtPacket pTxPacket = NULL;
234 memset(pMgmt->pbyPSPacketPool, 0, sizeof(STxMgmtPacket) + WLAN_HDR_ADDR2_LEN);
235 pTxPacket = (PSTxMgmtPacket)pMgmt->pbyPSPacketPool;
236 pTxPacket->p80211Header = (PUWLAN_80211HDR)((PBYTE)pTxPacket + sizeof(STxMgmtPacket));
237 pTxPacket->p80211Header->sA2.wFrameCtl = cpu_to_le16(
239 WLAN_SET_FC_FTYPE(WLAN_TYPE_CTL) |
240 WLAN_SET_FC_FSTYPE(WLAN_FSTYPE_PSPOLL) |
241 WLAN_SET_FC_PWRMGT(0)
244 pTxPacket->p80211Header->sA2.wDurationID = pMgmt->wCurrAID | BIT14 | BIT15;
245 memcpy(pTxPacket->p80211Header->sA2.abyAddr1, pMgmt->abyCurrBSSID, WLAN_ADDR_LEN);
246 memcpy(pTxPacket->p80211Header->sA2.abyAddr2, pMgmt->abyMACAddr, WLAN_ADDR_LEN);
247 pTxPacket->cbMPDULen = WLAN_HDR_ADDR2_LEN;
248 pTxPacket->cbPayloadLen = 0;
250 /* log failure if sending failed */
251 if (csMgmt_xmit(pDevice, pTxPacket) != CMD_STATUS_PENDING) {
252 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Send PS-Poll packet failed..\n");
258 * Routine Description:
259 * Send NULL packet to AP for notification power state of STA
261 * Return Value:
262 * None.
266 BOOL PSbSendNullPacket(void *hDeviceContext)
268 PSDevice pDevice = (PSDevice)hDeviceContext;
269 PSTxMgmtPacket pTxPacket = NULL;
270 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
271 u16 flags = 0;
273 if (pDevice->bLinkPass == FALSE)
274 return FALSE;
276 if ((pDevice->bEnablePSMode == FALSE) &&
277 (pDevice->fTxDataInSleep == FALSE)) {
278 return FALSE;
281 memset(pMgmt->pbyPSPacketPool, 0, sizeof(STxMgmtPacket) + WLAN_NULLDATA_FR_MAXLEN);
282 pTxPacket = (PSTxMgmtPacket)pMgmt->pbyPSPacketPool;
283 pTxPacket->p80211Header = (PUWLAN_80211HDR)((PBYTE)pTxPacket + sizeof(STxMgmtPacket));
285 flags = WLAN_SET_FC_FTYPE(WLAN_TYPE_DATA) |
286 WLAN_SET_FC_FSTYPE(WLAN_FSTYPE_NULL);
288 if (pDevice->bEnablePSMode)
289 flags |= WLAN_SET_FC_PWRMGT(1);
290 else
291 flags |= WLAN_SET_FC_PWRMGT(0);
293 pTxPacket->p80211Header->sA3.wFrameCtl = cpu_to_le16(flags);
295 if (pMgmt->eCurrMode != WMAC_MODE_IBSS_STA)
296 pTxPacket->p80211Header->sA3.wFrameCtl |= cpu_to_le16((WORD)WLAN_SET_FC_TODS(1));
298 memcpy(pTxPacket->p80211Header->sA3.abyAddr1, pMgmt->abyCurrBSSID, WLAN_ADDR_LEN);
299 memcpy(pTxPacket->p80211Header->sA3.abyAddr2, pMgmt->abyMACAddr, WLAN_ADDR_LEN);
300 memcpy(pTxPacket->p80211Header->sA3.abyAddr3, pMgmt->abyCurrBSSID, WLAN_BSSID_LEN);
301 pTxPacket->cbMPDULen = WLAN_HDR_ADDR3_LEN;
302 pTxPacket->cbPayloadLen = 0;
303 /* log error if sending failed */
304 if (csMgmt_xmit(pDevice, pTxPacket) != CMD_STATUS_PENDING) {
305 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Send Null Packet failed !\n");
306 return FALSE;
308 return TRUE;
313 * Routine Description:
314 * Check if Next TBTT must wake up
316 * Return Value:
317 * None.
321 BOOL PSbIsNextTBTTWakeUp(void *hDeviceContext)
323 PSDevice pDevice = (PSDevice)hDeviceContext;
324 PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
325 BOOL bWakeUp = FALSE;
327 if (pMgmt->wListenInterval >= 2) {
328 if (pMgmt->wCountToWakeUp == 0)
329 pMgmt->wCountToWakeUp = pMgmt->wListenInterval;
331 pMgmt->wCountToWakeUp--;
333 if (pMgmt->wCountToWakeUp == 1) {
334 /* Turn on wake up to listen next beacon */
335 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_LNBCN);
336 pDevice->bPSRxBeacon = FALSE;
337 bWakeUp = TRUE;
338 } else if (!pDevice->bPSRxBeacon) {
339 /* Listen until RxBeacon */
340 MACvRegBitsOn(pDevice, MAC_REG_PSCTL, PSCTL_LNBCN);
343 return bWakeUp;