| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 |  | 
|  | 3 | Broadcom B43 wireless driver | 
|  | 4 | RFKILL support | 
|  | 5 |  | 
|  | 6 | Copyright (c) 2007 Michael Buesch <mb@bu3sch.de> | 
|  | 7 |  | 
|  | 8 | This program is free software; you can redistribute it and/or modify | 
|  | 9 | it under the terms of the GNU General Public License as published by | 
|  | 10 | the Free Software Foundation; either version 2 of the License, or | 
|  | 11 | (at your option) any later version. | 
|  | 12 |  | 
|  | 13 | This program is distributed in the hope that it will be useful, | 
|  | 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 16 | GNU General Public License for more details. | 
|  | 17 |  | 
|  | 18 | You should have received a copy of the GNU General Public License | 
|  | 19 | along with this program; see the file COPYING.  If not, write to | 
|  | 20 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, | 
|  | 21 | Boston, MA 02110-1301, USA. | 
|  | 22 |  | 
|  | 23 | */ | 
|  | 24 |  | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 25 | #include "b43.h" | 
| Larry Finger | 1a8d122 | 2007-12-14 13:59:11 +0100 | [diff] [blame] | 26 |  | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 27 |  | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 28 | /* Returns TRUE, if the radio is enabled in hardware. */ | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 29 | bool b43_is_hw_radio_enabled(struct b43_wldev *dev) | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 30 | { | 
| Rafał Miłecki | 8ce4699 | 2010-11-17 22:14:37 +0100 | [diff] [blame] | 31 | return !(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI) | 
|  | 32 | & B43_MMIO_RADIO_HWENABLED_HI_MASK); | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 33 | } | 
|  | 34 |  | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 35 | /* The poll callback for the hardware button. */ | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 36 | void b43_rfkill_poll(struct ieee80211_hw *hw) | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 37 | { | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 38 | struct b43_wl *wl = hw_to_b43_wl(hw); | 
|  | 39 | struct b43_wldev *dev = wl->current_dev; | 
|  | 40 | struct ssb_bus *bus = dev->dev->bus; | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 41 | bool enabled; | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 42 | bool brought_up = false; | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 43 |  | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 44 | mutex_lock(&wl->mutex); | 
| Larry Finger | 1a8d122 | 2007-12-14 13:59:11 +0100 | [diff] [blame] | 45 | if (unlikely(b43_status(dev) < B43_STAT_INITIALIZED)) { | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 46 | if (ssb_bus_powerup(bus, 0)) { | 
|  | 47 | mutex_unlock(&wl->mutex); | 
|  | 48 | return; | 
|  | 49 | } | 
|  | 50 | ssb_device_enable(dev->dev, 0); | 
|  | 51 | brought_up = true; | 
| Larry Finger | 1a8d122 | 2007-12-14 13:59:11 +0100 | [diff] [blame] | 52 | } | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 53 |  | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 54 | enabled = b43_is_hw_radio_enabled(dev); | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 55 |  | 
| Michael Buesch | 42bb4cd | 2007-09-28 14:22:33 +0200 | [diff] [blame] | 56 | if (unlikely(enabled != dev->radio_hw_enable)) { | 
|  | 57 | dev->radio_hw_enable = enabled; | 
|  | 58 | b43info(wl, "Radio hardware status changed to %s\n", | 
|  | 59 | enabled ? "ENABLED" : "DISABLED"); | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 60 | wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 61 | if (enabled != dev->phy.radio_on) | 
|  | 62 | b43_software_rfkill(dev, !enabled); | 
| Michael Buesch | 35c7e66 | 2007-11-03 14:34:32 +0100 | [diff] [blame] | 63 | } | 
| Johannes Berg | f41f3f3 | 2009-06-07 12:30:34 -0500 | [diff] [blame] | 64 |  | 
|  | 65 | if (brought_up) { | 
|  | 66 | ssb_device_disable(dev->dev, 0); | 
|  | 67 | ssb_bus_may_powerdown(bus); | 
|  | 68 | } | 
|  | 69 |  | 
| Michael Buesch | 35c7e66 | 2007-11-03 14:34:32 +0100 | [diff] [blame] | 70 | mutex_unlock(&wl->mutex); | 
| Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 71 | } |