2007-09-27 21:35:34 +02:00
/*
Broadcom B43 wireless driver
RFKILL support
2011-07-04 20:50:05 +02:00
Copyright ( c ) 2007 Michael Buesch < m @ bues . ch >
2007-09-27 21:35:34 +02:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; see the file COPYING . If not , write to
the Free Software Foundation , Inc . , 51 Franklin Steet , Fifth Floor ,
Boston , MA 02110 - 1301 , USA .
*/
# include "b43.h"
2007-12-14 13:59:11 +01:00
2007-09-27 21:35:34 +02:00
2007-09-28 14:22:33 +02:00
/* Returns TRUE, if the radio is enabled in hardware. */
2009-06-07 12:30:34 -05:00
bool b43_is_hw_radio_enabled ( struct b43_wldev * dev )
2007-09-27 21:35:34 +02:00
{
2010-11-17 22:14:37 +01:00
return ! ( b43_read32 ( dev , B43_MMIO_RADIO_HWENABLED_HI )
& B43_MMIO_RADIO_HWENABLED_HI_MASK ) ;
2007-09-27 21:35:34 +02:00
}
2007-09-28 14:22:33 +02:00
/* The poll callback for the hardware button. */
2009-06-07 12:30:34 -05:00
void b43_rfkill_poll ( struct ieee80211_hw * hw )
2007-09-27 21:35:34 +02:00
{
2009-06-07 12:30:34 -05:00
struct b43_wl * wl = hw_to_b43_wl ( hw ) ;
struct b43_wldev * dev = wl - > current_dev ;
2007-09-28 14:22:33 +02:00
bool enabled ;
2009-06-07 12:30:34 -05:00
bool brought_up = false ;
2007-09-27 21:35:34 +02:00
2007-09-28 14:22:33 +02:00
mutex_lock ( & wl - > mutex ) ;
2007-12-14 13:59:11 +01:00
if ( unlikely ( b43_status ( dev ) < B43_STAT_INITIALIZED ) ) {
2011-05-18 02:06:43 +02:00
if ( b43_bus_powerup ( dev , 0 ) ) {
2009-06-07 12:30:34 -05:00
mutex_unlock ( & wl - > mutex ) ;
return ;
}
2011-05-18 02:06:43 +02:00
b43_device_enable ( dev , 0 ) ;
2009-06-07 12:30:34 -05:00
brought_up = true ;
2007-12-14 13:59:11 +01:00
}
2009-06-07 12:30:34 -05:00
2007-09-28 14:22:33 +02:00
enabled = b43_is_hw_radio_enabled ( dev ) ;
2009-06-07 12:30:34 -05:00
2007-09-28 14:22:33 +02:00
if ( unlikely ( enabled ! = dev - > radio_hw_enable ) ) {
dev - > radio_hw_enable = enabled ;
b43info ( wl , " Radio hardware status changed to %s \n " ,
enabled ? " ENABLED " : " DISABLED " ) ;
2009-06-07 12:30:34 -05:00
wiphy_rfkill_set_hw_state ( hw - > wiphy , ! enabled ) ;
2009-06-02 13:01:37 +02:00
if ( enabled ! = dev - > phy . radio_on )
b43_software_rfkill ( dev , ! enabled ) ;
2007-11-03 14:34:32 +01:00
}
2007-09-27 21:35:34 +02:00
2009-06-07 12:30:34 -05:00
if ( brought_up ) {
2011-05-18 02:06:43 +02:00
b43_device_disable ( dev , 0 ) ;
b43_bus_may_powerdown ( dev ) ;
2009-06-07 12:30:34 -05:00
}
2009-06-02 13:01:37 +02:00
2007-09-27 21:35:34 +02:00
mutex_unlock ( & wl - > mutex ) ;
}