2 * This file is part of wl1271
4 * Copyright (C) 2008-2009 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
29 #define WL1271_WAKEUP_TIMEOUT 500
31 #define ELP_ENTRY_DELAY 30
32 #define ELP_ENTRY_DELAY_FORCE_PS 5
34 void wl1271_elp_work(struct work_struct
*work
)
36 struct delayed_work
*dwork
;
38 struct wl12xx_vif
*wlvif
;
41 dwork
= container_of(work
, struct delayed_work
, work
);
42 wl
= container_of(dwork
, struct wl1271
, elp_work
);
44 wl1271_debug(DEBUG_PSM
, "elp work");
46 mutex_lock(&wl
->mutex
);
48 if (unlikely(wl
->state
!= WLCORE_STATE_ON
))
51 /* our work might have been already cancelled */
52 if (unlikely(!test_bit(WL1271_FLAG_ELP_REQUESTED
, &wl
->flags
)))
55 if (test_bit(WL1271_FLAG_IN_ELP
, &wl
->flags
))
58 wl12xx_for_each_wlvif(wl
, wlvif
) {
59 if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
)
62 if (!test_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
) &&
63 test_bit(WLVIF_FLAG_IN_USE
, &wlvif
->flags
))
67 wl1271_debug(DEBUG_PSM
, "chip to elp");
68 ret
= wlcore_raw_write32(wl
, HW_ACCESS_ELP_CTRL_REG
, ELPCTRL_SLEEP
);
70 wl12xx_queue_recovery_work(wl
);
74 set_bit(WL1271_FLAG_IN_ELP
, &wl
->flags
);
77 mutex_unlock(&wl
->mutex
);
80 /* Routines to toggle sleep mode while in ELP */
81 void wl1271_ps_elp_sleep(struct wl1271
*wl
)
83 struct wl12xx_vif
*wlvif
;
86 /* We do not enter elp sleep in PLT mode */
90 if (wl
->sleep_auth
!= WL1271_PSM_ELP
)
93 /* we shouldn't get consecutive sleep requests */
94 if (WARN_ON(test_and_set_bit(WL1271_FLAG_ELP_REQUESTED
, &wl
->flags
)))
97 wl12xx_for_each_wlvif(wl
, wlvif
) {
98 if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
)
101 if (!test_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
) &&
102 test_bit(WLVIF_FLAG_IN_USE
, &wlvif
->flags
))
106 timeout
= wl
->conf
.conn
.forced_ps
?
107 ELP_ENTRY_DELAY_FORCE_PS
: ELP_ENTRY_DELAY
;
108 ieee80211_queue_delayed_work(wl
->hw
, &wl
->elp_work
,
109 msecs_to_jiffies(timeout
));
112 int wl1271_ps_elp_wakeup(struct wl1271
*wl
)
114 DECLARE_COMPLETION_ONSTACK(compl);
117 unsigned long start_time
= jiffies
;
118 bool pending
= false;
121 * we might try to wake up even if we didn't go to sleep
122 * before (e.g. on boot)
124 if (!test_and_clear_bit(WL1271_FLAG_ELP_REQUESTED
, &wl
->flags
))
127 /* don't cancel_sync as it might contend for a mutex and deadlock */
128 cancel_delayed_work(&wl
->elp_work
);
130 if (!test_bit(WL1271_FLAG_IN_ELP
, &wl
->flags
))
133 wl1271_debug(DEBUG_PSM
, "waking up chip from elp");
136 * The spinlock is required here to synchronize both the work and
137 * the completion variable in one entity.
139 spin_lock_irqsave(&wl
->wl_lock
, flags
);
140 if (test_bit(WL1271_FLAG_IRQ_RUNNING
, &wl
->flags
))
143 wl
->elp_compl
= &compl;
144 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
146 ret
= wlcore_raw_write32(wl
, HW_ACCESS_ELP_CTRL_REG
, ELPCTRL_WAKE_UP
);
148 wl12xx_queue_recovery_work(wl
);
153 ret
= wait_for_completion_timeout(
154 &compl, msecs_to_jiffies(WL1271_WAKEUP_TIMEOUT
));
156 wl1271_error("ELP wakeup timeout!");
157 wl12xx_queue_recovery_work(wl
);
163 clear_bit(WL1271_FLAG_IN_ELP
, &wl
->flags
);
165 wl1271_debug(DEBUG_PSM
, "wakeup time: %u ms",
166 jiffies_to_msecs(jiffies
- start_time
));
170 spin_lock_irqsave(&wl
->wl_lock
, flags
);
171 wl
->elp_compl
= NULL
;
172 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
179 int wl1271_ps_set_mode(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
180 enum wl1271_cmd_ps_mode mode
)
183 u16 timeout
= wl
->conf
.conn
.dynamic_ps_timeout
;
186 case STATION_AUTO_PS_MODE
:
187 case STATION_POWER_SAVE_MODE
:
188 wl1271_debug(DEBUG_PSM
, "entering psm (mode=%d,timeout=%u)",
191 ret
= wl1271_acx_wake_up_conditions(wl
, wlvif
,
192 wl
->conf
.conn
.wake_up_event
,
193 wl
->conf
.conn
.listen_interval
);
195 wl1271_error("couldn't set wake up conditions");
199 ret
= wl1271_cmd_ps_mode(wl
, wlvif
, mode
, timeout
);
203 set_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
);
206 * enable beacon early termination.
207 * Not relevant for 5GHz and for high rates.
209 if ((wlvif
->band
== IEEE80211_BAND_2GHZ
) &&
210 (wlvif
->basic_rate
< CONF_HW_BIT_RATE_9MBPS
)) {
211 ret
= wl1271_acx_bet_enable(wl
, wlvif
, true);
216 case STATION_ACTIVE_MODE
:
217 wl1271_debug(DEBUG_PSM
, "leaving psm");
219 /* disable beacon early termination */
220 if ((wlvif
->band
== IEEE80211_BAND_2GHZ
) &&
221 (wlvif
->basic_rate
< CONF_HW_BIT_RATE_9MBPS
)) {
222 ret
= wl1271_acx_bet_enable(wl
, wlvif
, false);
227 ret
= wl1271_cmd_ps_mode(wl
, wlvif
, mode
, 0);
231 clear_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
);
234 wl1271_warning("trying to set ps to unsupported mode %d", mode
);
241 static void wl1271_ps_filter_frames(struct wl1271
*wl
, u8 hlid
)
245 struct ieee80211_tx_info
*info
;
247 int filtered
[NUM_TX_QUEUES
];
248 struct wl1271_link
*lnk
= &wl
->links
[hlid
];
250 /* filter all frames currently in the low level queues for this hlid */
251 for (i
= 0; i
< NUM_TX_QUEUES
; i
++) {
253 while ((skb
= skb_dequeue(&lnk
->tx_queue
[i
]))) {
256 if (WARN_ON(wl12xx_is_dummy_packet(wl
, skb
)))
259 info
= IEEE80211_SKB_CB(skb
);
260 info
->flags
|= IEEE80211_TX_STAT_TX_FILTERED
;
261 info
->status
.rates
[0].idx
= -1;
262 ieee80211_tx_status_ni(wl
->hw
, skb
);
266 spin_lock_irqsave(&wl
->wl_lock
, flags
);
267 for (i
= 0; i
< NUM_TX_QUEUES
; i
++) {
268 wl
->tx_queue_count
[i
] -= filtered
[i
];
270 lnk
->wlvif
->tx_queue_count
[i
] -= filtered
[i
];
272 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
274 wl1271_handle_tx_low_watermark(wl
);
277 void wl12xx_ps_link_start(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
278 u8 hlid
, bool clean_queues
)
280 struct ieee80211_sta
*sta
;
281 struct ieee80211_vif
*vif
= wl12xx_wlvif_to_vif(wlvif
);
283 if (WARN_ON_ONCE(wlvif
->bss_type
!= BSS_TYPE_AP_BSS
))
286 if (!test_bit(hlid
, wlvif
->ap
.sta_hlid_map
) ||
287 test_bit(hlid
, &wl
->ap_ps_map
))
290 wl1271_debug(DEBUG_PSM
, "start mac80211 PSM on hlid %d pkts %d "
291 "clean_queues %d", hlid
, wl
->links
[hlid
].allocated_pkts
,
295 sta
= ieee80211_find_sta(vif
, wl
->links
[hlid
].addr
);
297 wl1271_error("could not find sta %pM for starting ps",
298 wl
->links
[hlid
].addr
);
303 ieee80211_sta_ps_transition_ni(sta
, true);
306 /* do we want to filter all frames from this link's queues? */
308 wl1271_ps_filter_frames(wl
, hlid
);
310 __set_bit(hlid
, &wl
->ap_ps_map
);
313 void wl12xx_ps_link_end(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
, u8 hlid
)
315 struct ieee80211_sta
*sta
;
316 struct ieee80211_vif
*vif
= wl12xx_wlvif_to_vif(wlvif
);
318 if (!test_bit(hlid
, &wl
->ap_ps_map
))
321 wl1271_debug(DEBUG_PSM
, "end mac80211 PSM on hlid %d", hlid
);
323 __clear_bit(hlid
, &wl
->ap_ps_map
);
326 sta
= ieee80211_find_sta(vif
, wl
->links
[hlid
].addr
);
328 wl1271_error("could not find sta %pM for ending ps",
329 wl
->links
[hlid
].addr
);
333 ieee80211_sta_ps_transition_ni(sta
, false);