2007-10-10 22:44:22 -05:00
/*
2007-10-10 22:48:17 -05:00
Broadcom B43 wireless driver
2007-10-10 22:44:22 -05:00
RFKILL support
2011-07-04 20:50:05 +02:00
Copyright ( c ) 2007 Michael Buesch < m @ bues . ch >
2007-10-10 22:44:22 -05: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 "radio.h"
# include "b43legacy.h"
2007-10-10 22:48:17 -05:00
/* Returns TRUE, if the radio is enabled in hardware. */
2009-06-07 12:30:34 -05:00
bool b43legacy_is_hw_radio_enabled ( struct b43legacy_wldev * dev )
2007-10-10 22:44:22 -05:00
{
2010-11-03 21:36:12 +01:00
if ( dev - > dev - > id . revision > = 3 ) {
2007-10-10 22:48:17 -05:00
if ( ! ( b43legacy_read32 ( dev , B43legacy_MMIO_RADIO_HWENABLED_HI )
& B43legacy_MMIO_RADIO_HWENABLED_HI_MASK ) )
2015-03-29 18:29:42 -07:00
return true ;
2007-10-10 22:48:17 -05:00
} else {
2009-11-23 18:42:36 -06:00
/* To prevent CPU fault on PPC, do not read a register
* unless the interface is started ; however , on resume
* for hibernation , this routine is entered early . When
* that happens , unconditionally return TRUE .
*/
if ( b43legacy_status ( dev ) < B43legacy_STAT_STARTED )
2015-03-29 18:29:42 -07:00
return true ;
2007-10-10 22:48:17 -05:00
if ( b43legacy_read16 ( dev , B43legacy_MMIO_RADIO_HWENABLED_LO )
& B43legacy_MMIO_RADIO_HWENABLED_LO_MASK )
2015-03-29 18:29:42 -07:00
return true ;
2007-10-10 22:44:22 -05:00
}
2015-03-29 18:29:42 -07:00
return false ;
2007-10-10 22:44:22 -05:00
}
2007-10-10 22:48:17 -05:00
/* The poll callback for the hardware button. */
2009-06-07 12:30:34 -05:00
void b43legacy_rfkill_poll ( struct ieee80211_hw * hw )
2007-10-10 22:44:22 -05:00
{
2009-06-07 12:30:34 -05:00
struct b43legacy_wl * wl = hw_to_b43legacy_wl ( hw ) ;
struct b43legacy_wldev * dev = wl - > current_dev ;
struct ssb_bus * bus = dev - > dev - > bus ;
2007-10-10 22:48:17 -05:00
bool enabled ;
2009-06-07 12:30:34 -05:00
bool brought_up = false ;
2007-10-10 22:44:22 -05:00
2007-10-10 22:48:17 -05:00
mutex_lock ( & wl - > mutex ) ;
2007-12-16 19:21:06 +01:00
if ( unlikely ( b43legacy_status ( dev ) < B43legacy_STAT_INITIALIZED ) ) {
2009-06-07 12:30:34 -05:00
if ( ssb_bus_powerup ( bus , 0 ) ) {
mutex_unlock ( & wl - > mutex ) ;
return ;
}
ssb_device_enable ( dev - > dev , 0 ) ;
brought_up = true ;
2007-12-16 19:21:06 +01:00
}
2009-06-07 12:30:34 -05:00
2007-10-10 22:48:17 -05:00
enabled = b43legacy_is_hw_radio_enabled ( dev ) ;
2009-06-07 12:30:34 -05:00
2007-10-10 22:48:17 -05:00
if ( unlikely ( enabled ! = dev - > radio_hw_enable ) ) {
dev - > radio_hw_enable = enabled ;
b43legacyinfo ( 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 ) {
if ( enabled )
b43legacy_radio_turn_on ( dev ) ;
else
b43legacy_radio_turn_off ( dev , 0 ) ;
}
2007-11-06 22:48:45 +01:00
}
2007-10-10 22:44:22 -05:00
2009-06-07 12:30:34 -05:00
if ( brought_up ) {
ssb_device_disable ( dev - > dev , 0 ) ;
ssb_bus_may_powerdown ( bus ) ;
2007-10-10 22:44:22 -05:00
}
mutex_unlock ( & wl - > mutex ) ;
}