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"
2011-06-16 11:49:33 +03:00
/* return value indicates whether the driver should be further notified */
2012-12-13 16:47:42 +01:00
static void ieee80211_quiesce ( struct ieee80211_sub_if_data * sdata )
2011-06-16 11:49:33 +03:00
{
switch ( sdata - > vif . type ) {
case NL80211_IFTYPE_STATION :
ieee80211_sta_quiesce ( sdata ) ;
2012-12-13 16:47:42 +01:00
break ;
2011-06-16 11:49:33 +03:00
case NL80211_IFTYPE_ADHOC :
ieee80211_ibss_quiesce ( sdata ) ;
2012-12-13 16:47:42 +01:00
break ;
2011-06-16 11:49:33 +03:00
case NL80211_IFTYPE_MESH_POINT :
ieee80211_mesh_quiesce ( sdata ) ;
2012-12-13 16:47:42 +01:00
break ;
2011-06-16 11:49:33 +03:00
default :
2012-12-13 16:47:42 +01:00
break ;
2011-06-16 11:49:33 +03:00
}
2012-12-13 16:47:42 +01:00
cancel_work_sync ( & sdata - > work ) ;
2011-06-16 11:49:33 +03:00
}
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 ;
2012-11-19 22:19:08 +01:00
struct ieee80211_chanctx * ctx ;
2009-01-19 11:20:53 -05:00
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
2011-04-21 13:38:00 +02:00
if ( hw - > flags & IEEE80211_HW_AMPDU_AGGREGATION ) {
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 ) ;
}
2009-03-13 11:43:36 +01:00
ieee80211_stop_queues_by_reason ( hw ,
IEEE80211_QUEUE_STOP_REASON_SUSPEND ) ;
2009-05-17 11:40:42 +02:00
/* flush out all packets */
synchronize_net ( ) ;
2011-04-21 13:38:00 +02:00
drv_flush ( local , false ) ;
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 ) ;
2011-05-04 15:37:29 +02:00
local - > wowlan = wowlan & & local - > open_count ;
if ( local - > wowlan ) {
int 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 ;
2012-06-20 13:10:14 +03:00
if ( hw - > flags & IEEE80211_HW_AMPDU_AGGREGATION ) {
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 ,
IEEE80211_QUEUE_STOP_REASON_SUSPEND ) ;
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 ) ;
local - > wowlan = false ;
} else {
2012-12-13 16:47:42 +01:00
list_for_each_entry ( sdata , & local - > interfaces , list )
if ( ieee80211_sdata_running ( sdata ) )
ieee80211_quiesce ( sdata ) ;
2011-07-02 00:02:01 +02:00
goto suspend ;
2011-05-04 15:37:29 +02:00
}
}
2009-01-19 11:20:53 -05:00
/* disable keys */
list_for_each_entry ( sdata , & local - > interfaces , list )
ieee80211_disable_keys ( sdata ) ;
2010-06-10 10:21:29 +02:00
/* tear down aggregation sessions and remove STAs */
mutex_lock ( & local - > sta_mtx ) ;
list_for_each_entry ( sta , & local - > sta_list , list ) {
2012-01-20 13:55:21 +01:00
if ( sta - > uploaded ) {
enum ieee80211_sta_state state ;
state = sta - > sta_state ;
for ( ; state > IEEE80211_STA_NOTEXIST ; state - - )
2012-02-23 02:17:48 +01:00
WARN_ON ( drv_sta_state ( local , sta - > sdata , sta ,
2012-01-20 13:55:21 +01:00
state , state - 1 ) ) ;
}
2009-05-17 11:40:42 +02:00
mesh_plink_quiesce ( sta ) ;
2009-01-19 11:20:53 -05:00
}
2010-02-03 13:59:58 +01:00
mutex_unlock ( & local - > sta_mtx ) ;
2009-01-19 11:20:53 -05:00
/* remove all interfaces */
list_for_each_entry ( sdata , & local - > interfaces , list ) {
2012-12-14 14:34:25 +01:00
static u8 zero_addr [ ETH_ALEN ] = { } ;
2012-12-14 14:22:10 +01:00
u32 changed = 0 ;
2012-12-13 17:16:45 +01:00
2012-12-13 16:47:42 +01:00
if ( ! ieee80211_sdata_running ( sdata ) )
2009-05-17 11:40:42 +02:00
continue ;
2009-01-19 11:20:53 -05:00
2012-12-13 16:47:42 +01:00
switch ( sdata - > vif . type ) {
case NL80211_IFTYPE_AP_VLAN :
case NL80211_IFTYPE_MONITOR :
/* skip these */
2009-05-17 11:40:42 +02:00
continue ;
2012-12-13 17:16:45 +01:00
case NL80211_IFTYPE_STATION :
if ( sdata - > vif . bss_conf . assoc )
changed = BSS_CHANGED_ASSOC |
BSS_CHANGED_BSSID |
BSS_CHANGED_IDLE ;
2012-12-14 14:22:10 +01:00
break ;
case NL80211_IFTYPE_AP :
case NL80211_IFTYPE_ADHOC :
case NL80211_IFTYPE_MESH_POINT :
if ( sdata - > vif . bss_conf . enable_beacon )
changed = BSS_CHANGED_BEACON_ENABLED ;
break ;
2012-12-13 16:47:42 +01:00
default :
break ;
}
2009-01-24 13:21:14 -05:00
2012-12-14 14:22:10 +01:00
ieee80211_quiesce ( sdata ) ;
2012-12-13 17:16:45 +01:00
sdata - > suspend_bss_conf = sdata - > vif . bss_conf ;
memset ( & sdata - > vif . bss_conf , 0 , sizeof ( sdata - > vif . bss_conf ) ) ;
sdata - > vif . bss_conf . idle = true ;
2012-12-14 14:34:25 +01:00
if ( sdata - > suspend_bss_conf . bssid )
sdata - > vif . bss_conf . bssid = zero_addr ;
2012-12-13 17:16:45 +01:00
/* disable beaconing or remove association */
ieee80211_bss_info_change_notify ( sdata , changed ) ;
2009-07-29 10:13:03 +02:00
2012-10-19 15:44:42 +02:00
if ( sdata - > vif . type = = NL80211_IFTYPE_AP & &
rcu_access_pointer ( sdata - > u . ap . beacon ) )
drv_stop_ap ( local , sdata ) ;
2012-11-19 22:19:08 +01:00
if ( local - > use_chanctx ) {
struct ieee80211_chanctx_conf * conf ;
mutex_lock ( & local - > chanctx_mtx ) ;
conf = rcu_dereference_protected (
sdata - > vif . chanctx_conf ,
lockdep_is_held ( & local - > chanctx_mtx ) ) ;
if ( conf ) {
ctx = container_of ( conf ,
struct ieee80211_chanctx ,
conf ) ;
drv_unassign_vif_chanctx ( local , sdata , ctx ) ;
}
mutex_unlock ( & local - > chanctx_mtx ) ;
}
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
2012-04-03 14:35:57 +02:00
sdata = rtnl_dereference ( local - > monitor_sdata ) ;
2012-11-19 22:19:08 +01:00
if ( sdata ) {
if ( local - > use_chanctx ) {
struct ieee80211_chanctx_conf * conf ;
mutex_lock ( & local - > chanctx_mtx ) ;
conf = rcu_dereference_protected (
sdata - > vif . chanctx_conf ,
lockdep_is_held ( & local - > chanctx_mtx ) ) ;
if ( conf ) {
ctx = container_of ( conf ,
struct ieee80211_chanctx ,
conf ) ;
drv_unassign_vif_chanctx ( local , sdata , ctx ) ;
}
mutex_unlock ( & local - > chanctx_mtx ) ;
}
2012-04-03 14:35:57 +02:00
drv_remove_interface ( local , sdata ) ;
2012-11-19 22:19:08 +01:00
}
mutex_lock ( & local - > chanctx_mtx ) ;
list_for_each_entry ( ctx , & local - > chanctx_list , list )
drv_remove_chanctx ( local , ctx ) ;
mutex_unlock ( & local - > chanctx_mtx ) ;
2012-04-03 14:35:57 +02:00
2009-07-28 18:10:17 +02:00
/* stop hardware - this must stop RX */
2009-08-20 20:02:20 +02:00
if ( local - > open_count )
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 ) ;