2009-01-19 11:20:53 -05:00
# include <net/mac80211.h>
# include <net/rtnetlink.h>
# include "ieee80211_i.h"
2009-05-17 11:40:42 +02:00
# include "mesh.h"
2009-04-23 18:52:52 +02:00
# include "driver-ops.h"
2009-01-19 11:20:53 -05:00
# include "led.h"
2015-10-25 10:59:33 +02:00
static void ieee80211_sched_scan_cancel ( struct ieee80211_local * local )
{
if ( ieee80211_request_sched_scan_stop ( local ) )
return ;
cfg80211_sched_scan_stopped_rtnl ( local - > hw . wiphy ) ;
}
2011-05-04 15:37:29 +02:00
int __ieee80211_suspend ( struct ieee80211_hw * hw , struct cfg80211_wowlan * wowlan )
2009-01-19 11:20:53 -05:00
{
struct ieee80211_local * local = hw_to_local ( hw ) ;
struct ieee80211_sub_if_data * sdata ;
struct sta_info * sta ;
2011-07-14 16:48:54 +02:00
if ( ! local - > open_count )
goto suspend ;
2010-10-06 11:22:10 +02:00
ieee80211_scan_cancel ( local ) ;
2009-05-17 11:40:42 +02:00
2013-02-08 18:16:20 +01:00
ieee80211_dfs_cac_cancel ( local ) ;
2013-03-27 22:49:19 +01:00
ieee80211_roc_purge ( local , NULL ) ;
2013-03-27 23:20:27 +01:00
ieee80211_del_virtual_monitor ( local ) ;
2015-09-21 15:50:26 +03:00
if ( ieee80211_hw_check ( hw , AMPDU_AGGREGATION ) & &
! ( wowlan & & wowlan - > any ) ) {
2011-04-21 13:38:00 +02:00
mutex_lock ( & local - > sta_mtx ) ;
list_for_each_entry ( sta , & local - > sta_list , list ) {
2011-09-29 16:04:36 +02:00
set_sta_flag ( sta , WLAN_STA_BLOCK_BA ) ;
2012-07-18 13:31:31 +02:00
ieee80211_sta_tear_down_BA_sessions (
sta , AGG_STOP_LOCAL_REQUEST ) ;
2011-04-21 13:38:00 +02:00
}
mutex_unlock ( & local - > sta_mtx ) ;
}
2015-10-25 10:59:33 +02:00
/* keep sched_scan only in case of 'any' trigger */
if ( ! ( wowlan & & wowlan - > any ) )
ieee80211_sched_scan_cancel ( local ) ;
2009-03-13 11:43:36 +01:00
ieee80211_stop_queues_by_reason ( hw ,
2013-02-13 12:25:28 +01:00
IEEE80211_MAX_QUEUE_MAP ,
2014-06-13 16:30:05 +03:00
IEEE80211_QUEUE_STOP_REASON_SUSPEND ,
false ) ;
2009-03-13 11:43:36 +01:00
2013-12-04 22:46:11 +01:00
/* flush out all packets */
2013-04-18 18:26:49 -04:00
synchronize_net ( ) ;
2009-05-17 11:40:42 +02:00
2015-01-07 15:42:39 +02:00
ieee80211_flush_queues ( local , NULL , true ) ;
2011-04-21 13:38:00 +02:00
2009-05-17 11:40:42 +02:00
local - > quiescing = true ;
/* make quiescing visible to timers everywhere */
mb ( ) ;
2009-07-29 20:08:07 -04:00
flush_workqueue ( local - > workqueue ) ;
2009-01-19 11:20:53 -05:00
2009-05-17 11:40:42 +02:00
/* Don't try to run timers while suspended. */
del_timer_sync ( & local - > sta_cleanup ) ;
/*
* Note that this particular timer doesn ' t need to be
* restarted at resume .
*/
cancel_work_sync ( & local - > dynamic_ps_enable_work ) ;
del_timer_sync ( & local - > dynamic_ps_timer ) ;
2015-03-01 09:10:07 +02:00
local - > wowlan = wowlan ;
2011-05-04 15:37:29 +02:00
if ( local - > wowlan ) {
2015-03-01 09:10:06 +02:00
int err ;
/* Drivers don't expect to suspend while some operations like
* authenticating or associating are in progress . It doesn ' t
* make sense anyway to accept that , since the authentication
* or association would never finish since the driver can ' t do
* that on its own .
* Thus , clean up in - progress auth / assoc first .
*/
list_for_each_entry ( sdata , & local - > interfaces , list ) {
if ( ! ieee80211_sdata_running ( sdata ) )
continue ;
if ( sdata - > vif . type ! = NL80211_IFTYPE_STATION )
continue ;
ieee80211_mgd_quiesce ( sdata ) ;
2015-06-10 19:12:31 +05:30
/* If suspended during TX in progress, and wowlan
* is enabled ( connection will be active ) there
* can be a race where the driver is put out
* of power - save due to TX and during suspend
* dynamic_ps_timer is cancelled and TX packet
* is flushed , leaving the driver in ACTIVE even
* after resuming until dynamic_ps_timer puts
* driver back in DOZE .
*/
if ( sdata - > u . mgd . associated & &
sdata - > u . mgd . powersave & &
! ( local - > hw . conf . flags & IEEE80211_CONF_PS ) ) {
local - > hw . conf . flags | = IEEE80211_CONF_PS ;
ieee80211_hw_config ( local ,
IEEE80211_CONF_CHANGE_PS ) ;
}
2015-03-01 09:10:06 +02:00
}
err = drv_suspend ( local , wowlan ) ;
2011-07-02 00:02:01 +02:00
if ( err < 0 ) {
2011-05-04 15:37:29 +02:00
local - > quiescing = false ;
2012-05-31 12:34:47 +02:00
local - > wowlan = false ;
2015-06-02 21:39:54 +02:00
if ( ieee80211_hw_check ( hw , AMPDU_AGGREGATION ) ) {
2012-06-20 13:10:14 +03:00
mutex_lock ( & local - > sta_mtx ) ;
list_for_each_entry ( sta ,
& local - > sta_list , list ) {
clear_sta_flag ( sta , WLAN_STA_BLOCK_BA ) ;
}
mutex_unlock ( & local - > sta_mtx ) ;
}
ieee80211_wake_queues_by_reason ( hw ,
2013-02-13 12:25:28 +01:00
IEEE80211_MAX_QUEUE_MAP ,
2014-06-13 16:30:05 +03:00
IEEE80211_QUEUE_STOP_REASON_SUSPEND ,
false ) ;
2011-05-04 15:37:29 +02:00
return err ;
2011-07-02 00:02:01 +02:00
} else if ( err > 0 ) {
WARN_ON ( err ! = 1 ) ;
2015-03-01 09:10:08 +02:00
/* cfg80211 will call back into mac80211 to disconnect
* all interfaces , allow that to proceed properly
*/
ieee80211_wake_queues_by_reason ( hw ,
IEEE80211_MAX_QUEUE_MAP ,
IEEE80211_QUEUE_STOP_REASON_SUSPEND ,
false ) ;
2013-02-28 10:55:25 +01:00
return err ;
2011-07-02 00:02:01 +02:00
} else {
goto suspend ;
2011-05-04 15:37:29 +02:00
}
}
2013-07-23 13:56:50 +02:00
/* remove all interfaces that were created in the driver */
2009-01-19 11:20:53 -05:00
list_for_each_entry ( sdata , & local - > interfaces , list ) {
2014-03-19 09:55:55 +01:00
if ( ! ieee80211_sdata_running ( sdata ) )
2009-05-17 11:40:42 +02:00
continue ;
2014-03-19 09:55:55 +01:00
switch ( sdata - > vif . type ) {
case NL80211_IFTYPE_AP_VLAN :
case NL80211_IFTYPE_MONITOR :
continue ;
case NL80211_IFTYPE_STATION :
ieee80211_mgd_quiesce ( sdata ) ;
break ;
2015-01-21 22:19:34 +02:00
case NL80211_IFTYPE_WDS :
/* tear down aggregation sessions and remove STAs */
mutex_lock ( & local - > sta_mtx ) ;
sta = sdata - > u . wds . sta ;
if ( sta & & sta - > uploaded ) {
enum ieee80211_sta_state state ;
state = sta - > sta_state ;
for ( ; state > IEEE80211_STA_NOTEXIST ; state - - )
WARN_ON ( drv_sta_state ( local , sta - > sdata ,
sta , state ,
state - 1 ) ) ;
}
mutex_unlock ( & local - > sta_mtx ) ;
break ;
2014-03-19 09:55:55 +01:00
default :
break ;
}
2013-07-23 13:56:50 +02:00
2011-11-03 14:41:13 +01:00
drv_remove_interface ( local , sdata ) ;
2009-01-19 11:20:53 -05:00
}
2009-05-17 11:40:42 +02:00
2013-02-28 10:55:26 +01:00
/*
* We disconnected on all interfaces before suspend , all channel
* contexts should be released .
*/
WARN_ON ( ! list_empty ( & local - > chanctx_list ) ) ;
2012-04-03 14:35:57 +02:00
2009-07-28 18:10:17 +02:00
/* stop hardware - this must stop RX */
2016-09-13 15:39:29 +02:00
ieee80211_stop_device ( local ) ;
2009-07-28 18:10:17 +02:00
2011-05-04 15:37:29 +02:00
suspend :
2009-05-17 11:40:42 +02:00
local - > suspended = true ;
2009-07-28 18:10:17 +02:00
/* need suspended to be visible before quiescing is false */
barrier ( ) ;
2009-05-17 11:40:42 +02:00
local - > quiescing = false ;
2009-01-19 11:20:53 -05:00
return 0 ;
}
2009-04-14 10:09:24 +02:00
/*
* __ieee80211_resume ( ) is a static inline which just calls
* ieee80211_reconfig ( ) , which is also needed for hardware
* hang / firmware failure / etc . recovery .
*/
2013-01-22 12:34:29 +01:00
void ieee80211_report_wowlan_wakeup ( struct ieee80211_vif * vif ,
struct cfg80211_wowlan_wakeup * wakeup ,
gfp_t gfp )
{
struct ieee80211_sub_if_data * sdata = vif_to_sdata ( vif ) ;
cfg80211_report_wowlan_wakeup ( & sdata - > wdev , wakeup , gfp ) ;
}
EXPORT_SYMBOL ( ieee80211_report_wowlan_wakeup ) ;