blob: afad423586931ed618c6ea32445c4df17987b0e2 [file] [log] [blame]
Michael Buesch8e9f7522007-09-27 21:35:34 +02001/*
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
25#include "rfkill.h"
26#include "b43.h"
Michael Bueschef1a6282008-08-27 18:53:02 +020027#include "phy_common.h"
Michael Buesch8e9f7522007-09-27 21:35:34 +020028
Larry Finger1a8d1222007-12-14 13:59:11 +010029#include <linux/kmod.h>
30
Michael Buesch8e9f7522007-09-27 21:35:34 +020031
Michael Buesch42bb4cd2007-09-28 14:22:33 +020032/* Returns TRUE, if the radio is enabled in hardware. */
33static bool b43_is_hw_radio_enabled(struct b43_wldev *dev)
Michael Buesch8e9f7522007-09-27 21:35:34 +020034{
Michael Buesch42bb4cd2007-09-28 14:22:33 +020035 if (dev->phy.rev >= 3) {
36 if (!(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI)
37 & B43_MMIO_RADIO_HWENABLED_HI_MASK))
38 return 1;
39 } else {
40 if (b43_read16(dev, B43_MMIO_RADIO_HWENABLED_LO)
41 & B43_MMIO_RADIO_HWENABLED_LO_MASK)
42 return 1;
Michael Buesch8e9f7522007-09-27 21:35:34 +020043 }
Michael Buesch42bb4cd2007-09-28 14:22:33 +020044 return 0;
Michael Buesch8e9f7522007-09-27 21:35:34 +020045}
46
Michael Buesch42bb4cd2007-09-28 14:22:33 +020047/* The poll callback for the hardware button. */
48static void b43_rfkill_poll(struct input_polled_dev *poll_dev)
Michael Buesch8e9f7522007-09-27 21:35:34 +020049{
Michael Buesch42bb4cd2007-09-28 14:22:33 +020050 struct b43_wldev *dev = poll_dev->private;
Michael Buesch8e9f7522007-09-27 21:35:34 +020051 struct b43_wl *wl = dev->wl;
Michael Buesch42bb4cd2007-09-28 14:22:33 +020052 bool enabled;
Michael Buesch35c7e662007-11-03 14:34:32 +010053 bool report_change = 0;
Michael Buesch8e9f7522007-09-27 21:35:34 +020054
Michael Buesch42bb4cd2007-09-28 14:22:33 +020055 mutex_lock(&wl->mutex);
Larry Finger1a8d1222007-12-14 13:59:11 +010056 if (unlikely(b43_status(dev) < B43_STAT_INITIALIZED)) {
57 mutex_unlock(&wl->mutex);
58 return;
59 }
Michael Buesch42bb4cd2007-09-28 14:22:33 +020060 enabled = b43_is_hw_radio_enabled(dev);
61 if (unlikely(enabled != dev->radio_hw_enable)) {
62 dev->radio_hw_enable = enabled;
Michael Buesch35c7e662007-11-03 14:34:32 +010063 report_change = 1;
Michael Buesch42bb4cd2007-09-28 14:22:33 +020064 b43info(wl, "Radio hardware status changed to %s\n",
65 enabled ? "ENABLED" : "DISABLED");
Michael Buesch35c7e662007-11-03 14:34:32 +010066 }
67 mutex_unlock(&wl->mutex);
68
Larry Finger1a8d1222007-12-14 13:59:11 +010069 /* send the radio switch event to the system - note both a key press
70 * and a release are required */
71 if (unlikely(report_change)) {
72 input_report_key(poll_dev->input, KEY_WLAN, 1);
73 input_report_key(poll_dev->input, KEY_WLAN, 0);
74 }
Michael Buesch8e9f7522007-09-27 21:35:34 +020075}
76
Michael Buesch80fda032007-10-28 17:27:10 +010077/* Called when the RFKILL toggled in software. */
Michael Buesch8e9f7522007-09-27 21:35:34 +020078static int b43_rfkill_soft_toggle(void *data, enum rfkill_state state)
79{
80 struct b43_wldev *dev = data;
81 struct b43_wl *wl = dev->wl;
Larry Finger1a8d1222007-12-14 13:59:11 +010082 int err = -EBUSY;
Michael Buesch8e9f7522007-09-27 21:35:34 +020083
Michael Buesch35c7e662007-11-03 14:34:32 +010084 if (!wl->rfkill.registered)
85 return 0;
Michael Buesch8e9f7522007-09-27 21:35:34 +020086
Michael Buesch35c7e662007-11-03 14:34:32 +010087 mutex_lock(&wl->mutex);
Larry Finger1a8d1222007-12-14 13:59:11 +010088 if (b43_status(dev) < B43_STAT_INITIALIZED)
89 goto out_unlock;
90 err = 0;
Michael Buesch8e9f7522007-09-27 21:35:34 +020091 switch (state) {
John W. Linvilleff28bd92008-06-27 10:27:47 -040092 case RFKILL_STATE_UNBLOCKED:
Michael Buesch8e9f7522007-09-27 21:35:34 +020093 if (!dev->radio_hw_enable) {
94 /* No luck. We can't toggle the hardware RF-kill
95 * button from software. */
96 err = -EBUSY;
97 goto out_unlock;
98 }
99 if (!dev->phy.radio_on)
Michael Bueschef1a6282008-08-27 18:53:02 +0200100 b43_software_rfkill(dev, state);
Michael Buesch8e9f7522007-09-27 21:35:34 +0200101 break;
John W. Linvilleff28bd92008-06-27 10:27:47 -0400102 case RFKILL_STATE_SOFT_BLOCKED:
Michael Buesch8e9f7522007-09-27 21:35:34 +0200103 if (dev->phy.radio_on)
Michael Bueschef1a6282008-08-27 18:53:02 +0200104 b43_software_rfkill(dev, state);
Michael Buesch8e9f7522007-09-27 21:35:34 +0200105 break;
John W. Linvilleff28bd92008-06-27 10:27:47 -0400106 default:
107 b43warn(wl, "Received unexpected rfkill state %d.\n", state);
108 break;
Michael Buesch8e9f7522007-09-27 21:35:34 +0200109 }
Michael Buesch8e9f7522007-09-27 21:35:34 +0200110out_unlock:
111 mutex_unlock(&wl->mutex);
112
113 return err;
114}
115
John Daiker99da1852009-02-24 02:16:42 -0800116char *b43_rfkill_led_name(struct b43_wldev *dev)
Michael Buesch8e9f7522007-09-27 21:35:34 +0200117{
Michael Buesch35c7e662007-11-03 14:34:32 +0100118 struct b43_rfkill *rfk = &(dev->wl->rfkill);
Michael Buesch8e9f7522007-09-27 21:35:34 +0200119
Michael Buesch35c7e662007-11-03 14:34:32 +0100120 if (!rfk->registered)
Michael Buesch8e9f7522007-09-27 21:35:34 +0200121 return NULL;
Michael Buesch35c7e662007-11-03 14:34:32 +0100122 return rfkill_get_led_name(rfk->rfkill);
Michael Buesch8e9f7522007-09-27 21:35:34 +0200123}
124
125void b43_rfkill_init(struct b43_wldev *dev)
126{
127 struct b43_wl *wl = dev->wl;
128 struct b43_rfkill *rfk = &(wl->rfkill);
129 int err;
130
Michael Buesch35c7e662007-11-03 14:34:32 +0100131 rfk->registered = 0;
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200132
133 rfk->rfkill = rfkill_allocate(dev->dev->dev, RFKILL_TYPE_WLAN);
Michael Buesch35c7e662007-11-03 14:34:32 +0100134 if (!rfk->rfkill)
135 goto out_error;
136 snprintf(rfk->name, sizeof(rfk->name),
137 "b43-%s", wiphy_name(wl->hw->wiphy));
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200138 rfk->rfkill->name = rfk->name;
Adel Gadllahf97d1f42008-06-28 14:20:40 +0200139 rfk->rfkill->state = RFKILL_STATE_UNBLOCKED;
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200140 rfk->rfkill->data = dev;
141 rfk->rfkill->toggle_radio = b43_rfkill_soft_toggle;
142 rfk->rfkill->user_claim_unsupported = 1;
143
144 rfk->poll_dev = input_allocate_polled_device();
Stefano Brivioa38db5b2008-01-13 18:30:14 +0100145 if (!rfk->poll_dev) {
146 rfkill_free(rfk->rfkill);
147 goto err_freed_rfk;
148 }
149
Michael Buesch35c7e662007-11-03 14:34:32 +0100150 rfk->poll_dev->private = dev;
151 rfk->poll_dev->poll = b43_rfkill_poll;
152 rfk->poll_dev->poll_interval = 1000; /* msecs */
153
Larry Finger1a8d1222007-12-14 13:59:11 +0100154 rfk->poll_dev->input->name = rfk->name;
155 rfk->poll_dev->input->id.bustype = BUS_HOST;
156 rfk->poll_dev->input->id.vendor = dev->dev->bus->boardinfo.vendor;
157 rfk->poll_dev->input->evbit[0] = BIT(EV_KEY);
158 set_bit(KEY_WLAN, rfk->poll_dev->input->keybit);
159
Michael Buesch35c7e662007-11-03 14:34:32 +0100160 err = rfkill_register(rfk->rfkill);
161 if (err)
162 goto err_free_polldev;
Larry Finger1a8d1222007-12-14 13:59:11 +0100163
164#ifdef CONFIG_RFKILL_INPUT_MODULE
165 /* B43 RF-kill isn't useful without the rfkill-input subsystem.
166 * Try to load the module. */
167 err = request_module("rfkill-input");
168 if (err)
169 b43warn(wl, "Failed to load the rfkill-input module. "
170 "The built-in radio LED will not work.\n");
171#endif /* CONFIG_RFKILL_INPUT */
172
Larry Fingerfdd10972008-09-16 14:56:49 -0500173#if !defined(CONFIG_RFKILL_INPUT) && !defined(CONFIG_RFKILL_INPUT_MODULE)
174 b43warn(wl, "The rfkill-input subsystem is not available. "
175 "The built-in radio LED will not work.\n");
176#endif
177
Michael Buesch35c7e662007-11-03 14:34:32 +0100178 err = input_register_polled_device(rfk->poll_dev);
179 if (err)
180 goto err_unreg_rfk;
181
182 rfk->registered = 1;
183
184 return;
185err_unreg_rfk:
186 rfkill_unregister(rfk->rfkill);
187err_free_polldev:
188 input_free_polled_device(rfk->poll_dev);
189 rfk->poll_dev = NULL;
Stefano Brivioa38db5b2008-01-13 18:30:14 +0100190err_freed_rfk:
Michael Buesch35c7e662007-11-03 14:34:32 +0100191 rfk->rfkill = NULL;
192out_error:
193 rfk->registered = 0;
194 b43warn(wl, "RF-kill button init failed\n");
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200195}
196
Michael Buesch35c7e662007-11-03 14:34:32 +0100197void b43_rfkill_exit(struct b43_wldev *dev)
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200198{
199 struct b43_rfkill *rfk = &(dev->wl->rfkill);
200
Michael Buesch35c7e662007-11-03 14:34:32 +0100201 if (!rfk->registered)
202 return;
203 rfk->registered = 0;
204
205 input_unregister_polled_device(rfk->poll_dev);
206 rfkill_unregister(rfk->rfkill);
Michael Buesch42bb4cd2007-09-28 14:22:33 +0200207 input_free_polled_device(rfk->poll_dev);
208 rfk->poll_dev = NULL;
Michael Buesch8e9f7522007-09-27 21:35:34 +0200209 rfk->rfkill = NULL;
210}