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.
28 #include <linux/kmod.h>
31 /* Returns TRUE, if the radio is enabled in hardware. */
32 static bool b43_is_hw_radio_enabled(struct b43_wldev *dev)
34 if (dev->phy.rev >= 3) {
35 if (!(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI)
36 & B43_MMIO_RADIO_HWENABLED_HI_MASK))
39 if (b43_read16(dev, B43_MMIO_RADIO_HWENABLED_LO)
40 & B43_MMIO_RADIO_HWENABLED_LO_MASK)
46 /* Update the rfkill state */
47 static void b43_rfkill_update_state(struct b43_wldev *dev)
49 struct b43_rfkill *rfk = &(dev->wl->rfkill);
51 if (!dev->radio_hw_enable) {
52 rfk->rfkill->state = RFKILL_STATE_HARD_BLOCKED;
56 if (!dev->phy.radio_on)
57 rfk->rfkill->state = RFKILL_STATE_SOFT_BLOCKED;
59 rfk->rfkill->state = RFKILL_STATE_UNBLOCKED;
63 /* The poll callback for the hardware button. */
64 static void b43_rfkill_poll(struct input_polled_dev *poll_dev)
66 struct b43_wldev *dev = poll_dev->private;
67 struct b43_wl *wl = dev->wl;
69 bool report_change = 0;
71 mutex_lock(&wl->mutex);
72 if (unlikely(b43_status(dev) < B43_STAT_INITIALIZED)) {
73 mutex_unlock(&wl->mutex);
76 enabled = b43_is_hw_radio_enabled(dev);
77 if (unlikely(enabled != dev->radio_hw_enable)) {
78 dev->radio_hw_enable = enabled;
80 b43_rfkill_update_state(dev);
81 b43info(wl, "Radio hardware status changed to %s\n",
82 enabled ? "ENABLED" : "DISABLED");
84 mutex_unlock(&wl->mutex);
86 /* send the radio switch event to the system - note both a key press
87 * and a release are required */
88 if (unlikely(report_change)) {
89 input_report_key(poll_dev->input, KEY_WLAN, 1);
90 input_report_key(poll_dev->input, KEY_WLAN, 0);
94 /* Called when the RFKILL toggled in software. */
95 static int b43_rfkill_soft_toggle(void *data, enum rfkill_state state)
97 struct b43_wldev *dev = data;
98 struct b43_wl *wl = dev->wl;
101 if (!wl->rfkill.registered)
104 mutex_lock(&wl->mutex);
105 if (b43_status(dev) < B43_STAT_INITIALIZED)
109 case RFKILL_STATE_UNBLOCKED:
110 if (!dev->radio_hw_enable) {
111 /* No luck. We can't toggle the hardware RF-kill
112 * button from software. */
116 if (!dev->phy.radio_on)
117 b43_radio_turn_on(dev);
119 case RFKILL_STATE_SOFT_BLOCKED:
120 if (dev->phy.radio_on)
121 b43_radio_turn_off(dev, 0);
124 b43warn(wl, "Received unexpected rfkill state %d.\n", state);
128 mutex_unlock(&wl->mutex);
133 char * b43_rfkill_led_name(struct b43_wldev *dev)
135 struct b43_rfkill *rfk = &(dev->wl->rfkill);
137 if (!rfk->registered)
139 return rfkill_get_led_name(rfk->rfkill);
142 void b43_rfkill_init(struct b43_wldev *dev)
144 struct b43_wl *wl = dev->wl;
145 struct b43_rfkill *rfk = &(wl->rfkill);
150 rfk->rfkill = rfkill_allocate(dev->dev->dev, RFKILL_TYPE_WLAN);
153 snprintf(rfk->name, sizeof(rfk->name),
154 "b43-%s", wiphy_name(wl->hw->wiphy));
155 rfk->rfkill->name = rfk->name;
156 rfk->rfkill->state = RFKILL_STATE_UNBLOCKED;
157 rfk->rfkill->data = dev;
158 rfk->rfkill->toggle_radio = b43_rfkill_soft_toggle;
159 rfk->rfkill->user_claim_unsupported = 1;
161 rfk->poll_dev = input_allocate_polled_device();
162 if (!rfk->poll_dev) {
163 rfkill_free(rfk->rfkill);
167 rfk->poll_dev->private = dev;
168 rfk->poll_dev->poll = b43_rfkill_poll;
169 rfk->poll_dev->poll_interval = 1000; /* msecs */
171 rfk->poll_dev->input->name = rfk->name;
172 rfk->poll_dev->input->id.bustype = BUS_HOST;
173 rfk->poll_dev->input->id.vendor = dev->dev->bus->boardinfo.vendor;
174 rfk->poll_dev->input->evbit[0] = BIT(EV_KEY);
175 set_bit(KEY_WLAN, rfk->poll_dev->input->keybit);
177 err = rfkill_register(rfk->rfkill);
179 goto err_free_polldev;
181 #ifdef CONFIG_RFKILL_INPUT_MODULE
182 /* B43 RF-kill isn't useful without the rfkill-input subsystem.
183 * Try to load the module. */
184 err = request_module("rfkill-input");
186 b43warn(wl, "Failed to load the rfkill-input module. "
187 "The built-in radio LED will not work.\n");
188 #endif /* CONFIG_RFKILL_INPUT */
190 err = input_register_polled_device(rfk->poll_dev);
198 rfkill_unregister(rfk->rfkill);
200 input_free_polled_device(rfk->poll_dev);
201 rfk->poll_dev = NULL;
206 b43warn(wl, "RF-kill button init failed\n");
209 void b43_rfkill_exit(struct b43_wldev *dev)
211 struct b43_rfkill *rfk = &(dev->wl->rfkill);
213 if (!rfk->registered)
217 input_unregister_polled_device(rfk->poll_dev);
218 rfkill_unregister(rfk->rfkill);
219 input_free_polled_device(rfk->poll_dev);
220 rfk->poll_dev = NULL;