3 Broadcom B43 wireless driver
6 Copyright (c) 2007 Michael Buesch <mb@bu3sch.de>
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.
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.
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.
27 #include "b43legacy.h"
29 #include <linux/kmod.h>
32 /* Returns TRUE, if the radio is enabled in hardware. */
33 static bool b43legacy_is_hw_radio_enabled(struct b43legacy_wldev *dev)
35 if (dev->phy.rev >= 3) {
36 if (!(b43legacy_read32(dev, B43legacy_MMIO_RADIO_HWENABLED_HI)
37 & B43legacy_MMIO_RADIO_HWENABLED_HI_MASK))
40 if (b43legacy_read16(dev, B43legacy_MMIO_RADIO_HWENABLED_LO)
41 & B43legacy_MMIO_RADIO_HWENABLED_LO_MASK)
47 /* Update the rfkill state */
48 static void b43legacy_rfkill_update_state(struct b43legacy_wldev *dev)
50 struct b43legacy_rfkill *rfk = &(dev->wl->rfkill);
52 if (!dev->radio_hw_enable) {
53 rfk->rfkill->state = RFKILL_STATE_HARD_BLOCKED;
57 if (!dev->phy.radio_on)
58 rfk->rfkill->state = RFKILL_STATE_SOFT_BLOCKED;
60 rfk->rfkill->state = RFKILL_STATE_UNBLOCKED;
64 /* The poll callback for the hardware button. */
65 static void b43legacy_rfkill_poll(struct input_polled_dev *poll_dev)
67 struct b43legacy_wldev *dev = poll_dev->private;
68 struct b43legacy_wl *wl = dev->wl;
70 bool report_change = 0;
72 mutex_lock(&wl->mutex);
73 if (unlikely(b43legacy_status(dev) < B43legacy_STAT_INITIALIZED)) {
74 mutex_unlock(&wl->mutex);
77 enabled = b43legacy_is_hw_radio_enabled(dev);
78 if (unlikely(enabled != dev->radio_hw_enable)) {
79 dev->radio_hw_enable = enabled;
81 b43legacy_rfkill_update_state(dev);
82 b43legacyinfo(wl, "Radio hardware status changed to %s\n",
83 enabled ? "ENABLED" : "DISABLED");
85 mutex_unlock(&wl->mutex);
87 /* send the radio switch event to the system - note both a key press
88 * and a release are required */
89 if (unlikely(report_change)) {
90 input_report_key(poll_dev->input, KEY_WLAN, 1);
91 input_report_key(poll_dev->input, KEY_WLAN, 0);
95 /* Called when the RFKILL toggled in software.
96 * This is called without locking. */
97 static int b43legacy_rfkill_soft_toggle(void *data, enum rfkill_state state)
99 struct b43legacy_wldev *dev = data;
100 struct b43legacy_wl *wl = dev->wl;
103 if (!wl->rfkill.registered)
106 mutex_lock(&wl->mutex);
107 if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED)
111 case RFKILL_STATE_UNBLOCKED:
112 if (!dev->radio_hw_enable) {
113 /* No luck. We can't toggle the hardware RF-kill
114 * button from software. */
118 if (!dev->phy.radio_on)
119 b43legacy_radio_turn_on(dev);
121 case RFKILL_STATE_SOFT_BLOCKED:
122 if (dev->phy.radio_on)
123 b43legacy_radio_turn_off(dev, 0);
126 b43legacywarn(wl, "Received unexpected rfkill state %d.\n",
132 mutex_unlock(&wl->mutex);
137 char *b43legacy_rfkill_led_name(struct b43legacy_wldev *dev)
139 struct b43legacy_rfkill *rfk = &(dev->wl->rfkill);
141 if (!rfk->registered)
143 return rfkill_get_led_name(rfk->rfkill);
146 void b43legacy_rfkill_init(struct b43legacy_wldev *dev)
148 struct b43legacy_wl *wl = dev->wl;
149 struct b43legacy_rfkill *rfk = &(wl->rfkill);
154 rfk->rfkill = rfkill_allocate(dev->dev->dev, RFKILL_TYPE_WLAN);
157 snprintf(rfk->name, sizeof(rfk->name),
158 "b43legacy-%s", wiphy_name(wl->hw->wiphy));
159 rfk->rfkill->name = rfk->name;
160 rfk->rfkill->state = RFKILL_STATE_UNBLOCKED;
161 rfk->rfkill->data = dev;
162 rfk->rfkill->toggle_radio = b43legacy_rfkill_soft_toggle;
163 rfk->rfkill->user_claim_unsupported = 1;
165 rfk->poll_dev = input_allocate_polled_device();
166 if (!rfk->poll_dev) {
167 rfkill_free(rfk->rfkill);
171 rfk->poll_dev->private = dev;
172 rfk->poll_dev->poll = b43legacy_rfkill_poll;
173 rfk->poll_dev->poll_interval = 1000; /* msecs */
175 rfk->poll_dev->input->name = rfk->name;
176 rfk->poll_dev->input->id.bustype = BUS_HOST;
177 rfk->poll_dev->input->id.vendor = dev->dev->bus->boardinfo.vendor;
178 rfk->poll_dev->input->evbit[0] = BIT(EV_KEY);
179 set_bit(KEY_WLAN, rfk->poll_dev->input->keybit);
181 err = rfkill_register(rfk->rfkill);
183 goto err_free_polldev;
185 #ifdef CONFIG_RFKILL_INPUT_MODULE
186 /* B43legacy RF-kill isn't useful without the rfkill-input subsystem.
187 * Try to load the module. */
188 err = request_module("rfkill-input");
190 b43legacywarn(wl, "Failed to load the rfkill-input module."
191 "The built-in radio LED will not work.\n");
192 #endif /* CONFIG_RFKILL_INPUT */
194 err = input_register_polled_device(rfk->poll_dev);
202 rfkill_unregister(rfk->rfkill);
204 input_free_polled_device(rfk->poll_dev);
205 rfk->poll_dev = NULL;
210 b43legacywarn(wl, "RF-kill button init failed\n");
213 void b43legacy_rfkill_exit(struct b43legacy_wldev *dev)
215 struct b43legacy_rfkill *rfk = &(dev->wl->rfkill);
217 if (!rfk->registered)
221 input_unregister_polled_device(rfk->poll_dev);
222 rfkill_unregister(rfk->rfkill);
223 input_free_polled_device(rfk->poll_dev);
224 rfk->poll_dev = NULL;