blob: c6f2f388cb72e24a51e4abdc3ac0ffcfa238a71c [file] [log] [blame]
Ivo van Doorncf4328c2007-05-07 00:34:20 -07001/*
Ivo van Doornfe242cf2007-09-27 14:57:05 -07002 * Copyright (C) 2006 - 2007 Ivo van Doorn
Ivo van Doorncf4328c2007-05-07 00:34:20 -07003 * Copyright (C) 2007 Dmitry Torokhov
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the
17 * Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/workqueue.h>
25#include <linux/capability.h>
26#include <linux/list.h>
27#include <linux/mutex.h>
28#include <linux/rfkill.h>
29
Michael Buesch27366222007-11-02 20:18:11 +010030/* Get declaration of rfkill_switch_all() to shut up sparse. */
31#include "rfkill-input.h"
32
33
Ivo van Doorncf4328c2007-05-07 00:34:20 -070034MODULE_AUTHOR("Ivo van Doorn <IvDoorn@gmail.com>");
35MODULE_VERSION("1.0");
36MODULE_DESCRIPTION("RF switch support");
37MODULE_LICENSE("GPL");
38
39static LIST_HEAD(rfkill_list); /* list of registered rf switches */
40static DEFINE_MUTEX(rfkill_mutex);
41
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -030042static unsigned int rfkill_default_state = RFKILL_STATE_UNBLOCKED;
Henrique de Moraes Holschuhe954b0b2008-06-23 17:22:59 -030043module_param_named(default_state, rfkill_default_state, uint, 0444);
44MODULE_PARM_DESC(default_state,
45 "Default initial state for all radio types, 0 = radio off");
46
Ivo van Doorncf4328c2007-05-07 00:34:20 -070047static enum rfkill_state rfkill_states[RFKILL_TYPE_MAX];
48
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -030049static BLOCKING_NOTIFIER_HEAD(rfkill_notifier_list);
50
51
52/**
53 * register_rfkill_notifier - Add notifier to rfkill notifier chain
54 * @nb: pointer to the new entry to add to the chain
55 *
56 * See blocking_notifier_chain_register() for return value and further
57 * observations.
58 *
59 * Adds a notifier to the rfkill notifier chain. The chain will be
60 * called with a pointer to the relevant rfkill structure as a parameter,
61 * refer to include/linux/rfkill.h for the possible events.
62 *
63 * Notifiers added to this chain are to always return NOTIFY_DONE. This
64 * chain is a blocking notifier chain: notifiers can sleep.
65 *
66 * Calls to this chain may have been done through a workqueue. One must
67 * assume unordered asynchronous behaviour, there is no way to know if
68 * actions related to the event that generated the notification have been
69 * carried out already.
70 */
71int register_rfkill_notifier(struct notifier_block *nb)
72{
73 return blocking_notifier_chain_register(&rfkill_notifier_list, nb);
74}
75EXPORT_SYMBOL_GPL(register_rfkill_notifier);
76
77/**
78 * unregister_rfkill_notifier - remove notifier from rfkill notifier chain
79 * @nb: pointer to the entry to remove from the chain
80 *
81 * See blocking_notifier_chain_unregister() for return value and further
82 * observations.
83 *
84 * Removes a notifier from the rfkill notifier chain.
85 */
86int unregister_rfkill_notifier(struct notifier_block *nb)
87{
88 return blocking_notifier_chain_unregister(&rfkill_notifier_list, nb);
89}
90EXPORT_SYMBOL_GPL(unregister_rfkill_notifier);
91
Michael Buesch135900c2007-09-27 21:33:12 +020092
93static void rfkill_led_trigger(struct rfkill *rfkill,
94 enum rfkill_state state)
95{
96#ifdef CONFIG_RFKILL_LEDS
97 struct led_trigger *led = &rfkill->led_trigger;
98
99 if (!led->name)
100 return;
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300101 if (state != RFKILL_STATE_UNBLOCKED)
Michael Buesch135900c2007-09-27 21:33:12 +0200102 led_trigger_event(led, LED_OFF);
103 else
104 led_trigger_event(led, LED_FULL);
105#endif /* CONFIG_RFKILL_LEDS */
106}
107
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300108static void notify_rfkill_state_change(struct rfkill *rfkill)
109{
110 blocking_notifier_call_chain(&rfkill_notifier_list,
111 RFKILL_STATE_CHANGED,
112 rfkill);
113}
114
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300115static void update_rfkill_state(struct rfkill *rfkill)
116{
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300117 enum rfkill_state newstate, oldstate;
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300118
119 if (rfkill->get_state) {
120 mutex_lock(&rfkill->mutex);
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300121 if (!rfkill->get_state(rfkill->data, &newstate)) {
122 oldstate = rfkill->state;
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300123 rfkill->state = newstate;
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300124 if (oldstate != newstate)
125 notify_rfkill_state_change(rfkill);
126 }
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300127 mutex_unlock(&rfkill->mutex);
128 }
129}
130
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300131/**
132 * rfkill_toggle_radio - wrapper for toggle_radio hook
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300133 * @rfkill: the rfkill struct to use
134 * @force: calls toggle_radio even if cache says it is not needed,
135 * and also makes sure notifications of the state will be
136 * sent even if it didn't change
137 * @state: the new state to call toggle_radio() with
138 *
Henrique de Moraes Holschuh0f687e92008-07-03 13:14:56 -0300139 * Calls rfkill->toggle_radio, enforcing the API for toggle_radio
140 * calls and handling all the red tape such as issuing notifications
141 * if the call is successful.
142 *
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300143 * Note that the @force parameter cannot override a (possibly cached)
144 * state of RFKILL_STATE_HARD_BLOCKED. Any device making use of
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300145 * RFKILL_STATE_HARD_BLOCKED implements either get_state() or
146 * rfkill_force_state(), so the cache either is bypassed or valid.
147 *
148 * Note that we do call toggle_radio for RFKILL_STATE_SOFT_BLOCKED
149 * even if the radio is in RFKILL_STATE_HARD_BLOCKED state, so as to
150 * give the driver a hint that it should double-BLOCK the transmitter.
151 *
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300152 * Caller must have acquired rfkill->mutex.
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300153 */
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700154static int rfkill_toggle_radio(struct rfkill *rfkill,
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300155 enum rfkill_state state,
156 int force)
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700157{
Michael Buesch7f4c5342007-11-28 17:49:34 +0100158 int retval = 0;
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300159 enum rfkill_state oldstate, newstate;
160
161 oldstate = rfkill->state;
162
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300163 if (rfkill->get_state && !force &&
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300164 !rfkill->get_state(rfkill->data, &newstate))
165 rfkill->state = newstate;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700166
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300167 switch (state) {
168 case RFKILL_STATE_HARD_BLOCKED:
169 /* typically happens when refreshing hardware state,
170 * such as on resume */
171 state = RFKILL_STATE_SOFT_BLOCKED;
172 break;
173 case RFKILL_STATE_UNBLOCKED:
174 /* force can't override this, only rfkill_force_state() can */
175 if (rfkill->state == RFKILL_STATE_HARD_BLOCKED)
176 return -EPERM;
177 break;
178 case RFKILL_STATE_SOFT_BLOCKED:
179 /* nothing to do, we want to give drivers the hint to double
180 * BLOCK even a transmitter that is already in state
181 * RFKILL_STATE_HARD_BLOCKED */
182 break;
183 }
184
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300185 if (force || state != rfkill->state) {
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700186 retval = rfkill->toggle_radio(rfkill->data, state);
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300187 /* never allow a HARD->SOFT downgrade! */
188 if (!retval && rfkill->state != RFKILL_STATE_HARD_BLOCKED)
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700189 rfkill->state = state;
190 }
191
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300192 if (force || rfkill->state != oldstate) {
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300193 rfkill_led_trigger(rfkill, rfkill->state);
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300194 notify_rfkill_state_change(rfkill);
195 }
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300196
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700197 return retval;
198}
199
200/**
201 * rfkill_switch_all - Toggle state of all switches of given type
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300202 * @type: type of interfaces to be affected
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700203 * @state: the new state
204 *
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300205 * This function toggles the state of all switches of given type,
206 * unless a specific switch is claimed by userspace (in which case,
207 * that switch is left alone).
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700208 */
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700209void rfkill_switch_all(enum rfkill_type type, enum rfkill_state state)
210{
211 struct rfkill *rfkill;
212
213 mutex_lock(&rfkill_mutex);
214
215 rfkill_states[type] = state;
216
217 list_for_each_entry(rfkill, &rfkill_list, node) {
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300218 if ((!rfkill->user_claim) && (rfkill->type == type)) {
219 mutex_lock(&rfkill->mutex);
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300220 rfkill_toggle_radio(rfkill, state, 0);
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300221 mutex_unlock(&rfkill->mutex);
222 }
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700223 }
224
225 mutex_unlock(&rfkill_mutex);
226}
227EXPORT_SYMBOL(rfkill_switch_all);
228
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300229/**
Henrique de Moraes Holschuh4081f002008-06-23 17:23:07 -0300230 * rfkill_epo - emergency power off all transmitters
231 *
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300232 * This kicks all rfkill devices to RFKILL_STATE_SOFT_BLOCKED, ignoring
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300233 * everything in its path but rfkill_mutex and rfkill->mutex.
Henrique de Moraes Holschuh4081f002008-06-23 17:23:07 -0300234 */
235void rfkill_epo(void)
236{
237 struct rfkill *rfkill;
238
239 mutex_lock(&rfkill_mutex);
240 list_for_each_entry(rfkill, &rfkill_list, node) {
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300241 mutex_lock(&rfkill->mutex);
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300242 rfkill_toggle_radio(rfkill, RFKILL_STATE_SOFT_BLOCKED, 1);
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300243 mutex_unlock(&rfkill->mutex);
Henrique de Moraes Holschuh4081f002008-06-23 17:23:07 -0300244 }
245 mutex_unlock(&rfkill_mutex);
246}
247EXPORT_SYMBOL_GPL(rfkill_epo);
248
249/**
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300250 * rfkill_force_state - Force the internal rfkill radio state
251 * @rfkill: pointer to the rfkill class to modify.
252 * @state: the current radio state the class should be forced to.
253 *
254 * This function updates the internal state of the radio cached
255 * by the rfkill class. It should be used when the driver gets
256 * a notification by the firmware/hardware of the current *real*
257 * state of the radio rfkill switch.
258 *
Henrique de Moraes Holschuh2fd9b222008-07-21 21:18:17 -0300259 * Devices which are subject to external changes on their rfkill
260 * state (such as those caused by a hardware rfkill line) MUST
261 * have their driver arrange to call rfkill_force_state() as soon
262 * as possible after such a change.
263 *
264 * This function may not be called from an atomic context.
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300265 */
266int rfkill_force_state(struct rfkill *rfkill, enum rfkill_state state)
267{
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300268 enum rfkill_state oldstate;
269
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300270 if (state != RFKILL_STATE_SOFT_BLOCKED &&
271 state != RFKILL_STATE_UNBLOCKED &&
272 state != RFKILL_STATE_HARD_BLOCKED)
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300273 return -EINVAL;
274
275 mutex_lock(&rfkill->mutex);
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300276
277 oldstate = rfkill->state;
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300278 rfkill->state = state;
Henrique de Moraes Holschuh79399a82008-06-23 17:23:03 -0300279
280 if (state != oldstate)
281 notify_rfkill_state_change(rfkill);
282
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300283 mutex_unlock(&rfkill->mutex);
284
285 return 0;
286}
287EXPORT_SYMBOL(rfkill_force_state);
288
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700289static ssize_t rfkill_name_show(struct device *dev,
290 struct device_attribute *attr,
291 char *buf)
292{
293 struct rfkill *rfkill = to_rfkill(dev);
294
295 return sprintf(buf, "%s\n", rfkill->name);
296}
297
Henrique de Moraes Holschuh99c632e2008-06-23 17:23:04 -0300298static const char *rfkill_get_type_str(enum rfkill_type type)
299{
300 switch (type) {
301 case RFKILL_TYPE_WLAN:
302 return "wlan";
303 case RFKILL_TYPE_BLUETOOTH:
304 return "bluetooth";
305 case RFKILL_TYPE_UWB:
306 return "ultrawideband";
307 case RFKILL_TYPE_WIMAX:
308 return "wimax";
309 case RFKILL_TYPE_WWAN:
310 return "wwan";
311 default:
312 BUG();
313 }
314}
315
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700316static ssize_t rfkill_type_show(struct device *dev,
317 struct device_attribute *attr,
318 char *buf)
319{
320 struct rfkill *rfkill = to_rfkill(dev);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700321
Henrique de Moraes Holschuh99c632e2008-06-23 17:23:04 -0300322 return sprintf(buf, "%s\n", rfkill_get_type_str(rfkill->type));
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700323}
324
325static ssize_t rfkill_state_show(struct device *dev,
326 struct device_attribute *attr,
327 char *buf)
328{
329 struct rfkill *rfkill = to_rfkill(dev);
330
Henrique de Moraes Holschuh801e49a2008-06-23 17:23:00 -0300331 update_rfkill_state(rfkill);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700332 return sprintf(buf, "%d\n", rfkill->state);
333}
334
335static ssize_t rfkill_state_store(struct device *dev,
336 struct device_attribute *attr,
337 const char *buf, size_t count)
338{
339 struct rfkill *rfkill = to_rfkill(dev);
340 unsigned int state = simple_strtoul(buf, NULL, 0);
341 int error;
342
343 if (!capable(CAP_NET_ADMIN))
344 return -EPERM;
345
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300346 /* RFKILL_STATE_HARD_BLOCKED is illegal here... */
347 if (state != RFKILL_STATE_UNBLOCKED &&
348 state != RFKILL_STATE_SOFT_BLOCKED)
349 return -EINVAL;
350
Michael Buesch7f4c5342007-11-28 17:49:34 +0100351 if (mutex_lock_interruptible(&rfkill->mutex))
352 return -ERESTARTSYS;
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300353 error = rfkill_toggle_radio(rfkill, state, 0);
Michael Buesch7f4c5342007-11-28 17:49:34 +0100354 mutex_unlock(&rfkill->mutex);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700355
Michael Buesch7f4c5342007-11-28 17:49:34 +0100356 return error ? error : count;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700357}
358
359static ssize_t rfkill_claim_show(struct device *dev,
360 struct device_attribute *attr,
361 char *buf)
362{
363 struct rfkill *rfkill = to_rfkill(dev);
364
365 return sprintf(buf, "%d", rfkill->user_claim);
366}
367
368static ssize_t rfkill_claim_store(struct device *dev,
369 struct device_attribute *attr,
370 const char *buf, size_t count)
371{
372 struct rfkill *rfkill = to_rfkill(dev);
373 bool claim = !!simple_strtoul(buf, NULL, 0);
374 int error;
375
376 if (!capable(CAP_NET_ADMIN))
377 return -EPERM;
378
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300379 if (rfkill->user_claim_unsupported)
380 return -EOPNOTSUPP;
381
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700382 /*
383 * Take the global lock to make sure the kernel is not in
384 * the middle of rfkill_switch_all
385 */
386 error = mutex_lock_interruptible(&rfkill_mutex);
387 if (error)
388 return error;
389
390 if (rfkill->user_claim != claim) {
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300391 if (!claim) {
392 mutex_lock(&rfkill->mutex);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700393 rfkill_toggle_radio(rfkill,
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300394 rfkill_states[rfkill->type],
395 0);
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300396 mutex_unlock(&rfkill->mutex);
397 }
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700398 rfkill->user_claim = claim;
399 }
400
401 mutex_unlock(&rfkill_mutex);
402
Michael Buesch20405c02007-09-27 21:34:23 +0200403 return error ? error : count;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700404}
405
406static struct device_attribute rfkill_dev_attrs[] = {
407 __ATTR(name, S_IRUGO, rfkill_name_show, NULL),
408 __ATTR(type, S_IRUGO, rfkill_type_show, NULL),
Ivo van Doornc81de6a2007-07-18 15:38:03 -0700409 __ATTR(state, S_IRUGO|S_IWUSR, rfkill_state_show, rfkill_state_store),
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700410 __ATTR(claim, S_IRUGO|S_IWUSR, rfkill_claim_show, rfkill_claim_store),
411 __ATTR_NULL
412};
413
414static void rfkill_release(struct device *dev)
415{
416 struct rfkill *rfkill = to_rfkill(dev);
417
418 kfree(rfkill);
419 module_put(THIS_MODULE);
420}
421
422#ifdef CONFIG_PM
423static int rfkill_suspend(struct device *dev, pm_message_t state)
424{
425 struct rfkill *rfkill = to_rfkill(dev);
426
427 if (dev->power.power_state.event != state.event) {
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100428 if (state.event & PM_EVENT_SLEEP) {
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300429 /* Stop transmitter, keep state, no notifies */
430 update_rfkill_state(rfkill);
431
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700432 mutex_lock(&rfkill->mutex);
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300433 rfkill->toggle_radio(rfkill->data,
434 RFKILL_STATE_SOFT_BLOCKED);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700435 mutex_unlock(&rfkill->mutex);
436 }
437
438 dev->power.power_state = state;
439 }
440
441 return 0;
442}
443
444static int rfkill_resume(struct device *dev)
445{
446 struct rfkill *rfkill = to_rfkill(dev);
447
448 if (dev->power.power_state.event != PM_EVENT_ON) {
449 mutex_lock(&rfkill->mutex);
450
Henrique de Moraes Holschuh526324b2008-06-23 17:23:02 -0300451 /* restore radio state AND notify everybody */
452 rfkill_toggle_radio(rfkill, rfkill->state, 1);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700453
454 mutex_unlock(&rfkill->mutex);
455 }
456
457 dev->power.power_state = PMSG_ON;
458 return 0;
459}
460#else
461#define rfkill_suspend NULL
462#define rfkill_resume NULL
463#endif
464
Henrique de Moraes Holschuhffb67c32008-06-23 17:23:05 -0300465static int rfkill_blocking_uevent_notifier(struct notifier_block *nb,
466 unsigned long eventid,
467 void *data)
468{
469 struct rfkill *rfkill = (struct rfkill *)data;
470
471 switch (eventid) {
472 case RFKILL_STATE_CHANGED:
473 kobject_uevent(&rfkill->dev.kobj, KOBJ_CHANGE);
474 break;
475 default:
476 break;
477 }
478
479 return NOTIFY_DONE;
480}
481
482static struct notifier_block rfkill_blocking_uevent_nb = {
483 .notifier_call = rfkill_blocking_uevent_notifier,
484 .priority = 0,
485};
486
487static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
488{
489 struct rfkill *rfkill = to_rfkill(dev);
490 int error;
491
492 error = add_uevent_var(env, "RFKILL_NAME=%s", rfkill->name);
493 if (error)
494 return error;
495 error = add_uevent_var(env, "RFKILL_TYPE=%s",
496 rfkill_get_type_str(rfkill->type));
497 if (error)
498 return error;
499 error = add_uevent_var(env, "RFKILL_STATE=%d", rfkill->state);
500 return error;
501}
502
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700503static struct class rfkill_class = {
504 .name = "rfkill",
505 .dev_release = rfkill_release,
506 .dev_attrs = rfkill_dev_attrs,
507 .suspend = rfkill_suspend,
508 .resume = rfkill_resume,
Henrique de Moraes Holschuhffb67c32008-06-23 17:23:05 -0300509 .dev_uevent = rfkill_dev_uevent,
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700510};
511
512static int rfkill_add_switch(struct rfkill *rfkill)
513{
Michael Buesch7319f1e2007-10-28 15:16:50 +0100514 mutex_lock(&rfkill_mutex);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700515
Henrique de Moraes Holschuhfd4484af2008-07-03 13:14:57 -0300516 rfkill_toggle_radio(rfkill, rfkill_states[rfkill->type], 0);
517
518 list_add_tail(&rfkill->node, &rfkill_list);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700519
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700520 mutex_unlock(&rfkill_mutex);
Michael Buesch7319f1e2007-10-28 15:16:50 +0100521
Henrique de Moraes Holschuhfd4484af2008-07-03 13:14:57 -0300522 return 0;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700523}
524
525static void rfkill_remove_switch(struct rfkill *rfkill)
526{
527 mutex_lock(&rfkill_mutex);
528 list_del_init(&rfkill->node);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700529 mutex_unlock(&rfkill_mutex);
Henrique de Moraes Holschuh064af112008-07-21 21:18:20 -0300530
531 mutex_lock(&rfkill->mutex);
532 rfkill_toggle_radio(rfkill, RFKILL_STATE_SOFT_BLOCKED, 1);
533 mutex_unlock(&rfkill->mutex);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700534}
535
536/**
537 * rfkill_allocate - allocate memory for rfkill structure.
538 * @parent: device that has rf switch on it
Ivo van Doorn234a0ca2007-09-13 09:20:42 +0200539 * @type: type of the switch (RFKILL_TYPE_*)
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700540 *
541 * This function should be called by the network driver when it needs
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300542 * rfkill structure. Once the structure is allocated the driver should
543 * finish its initialization by setting the name, private data, enable_radio
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700544 * and disable_radio methods and then register it with rfkill_register().
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300545 *
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700546 * NOTE: If registration fails the structure shoudl be freed by calling
547 * rfkill_free() otherwise rfkill_unregister() should be used.
548 */
549struct rfkill *rfkill_allocate(struct device *parent, enum rfkill_type type)
550{
551 struct rfkill *rfkill;
552 struct device *dev;
553
554 rfkill = kzalloc(sizeof(struct rfkill), GFP_KERNEL);
Ivo van Doornd007da12007-05-19 12:24:39 -0700555 if (!rfkill)
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700556 return NULL;
557
558 mutex_init(&rfkill->mutex);
559 INIT_LIST_HEAD(&rfkill->node);
560 rfkill->type = type;
561
562 dev = &rfkill->dev;
563 dev->class = &rfkill_class;
564 dev->parent = parent;
565 device_initialize(dev);
566
567 __module_get(THIS_MODULE);
568
569 return rfkill;
570}
571EXPORT_SYMBOL(rfkill_allocate);
572
573/**
574 * rfkill_free - Mark rfkill structure for deletion
575 * @rfkill: rfkill structure to be destroyed
576 *
Henrique de Moraes Holschuh435307a2008-07-21 21:18:22 -0300577 * Decrements reference count of the rfkill structure so it is destroyed.
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700578 * Note that rfkill_free() should _not_ be called after rfkill_unregister().
579 */
580void rfkill_free(struct rfkill *rfkill)
581{
582 if (rfkill)
583 put_device(&rfkill->dev);
584}
585EXPORT_SYMBOL(rfkill_free);
586
Michael Buesch135900c2007-09-27 21:33:12 +0200587static void rfkill_led_trigger_register(struct rfkill *rfkill)
588{
589#ifdef CONFIG_RFKILL_LEDS
590 int error;
591
592 rfkill->led_trigger.name = rfkill->dev.bus_id;
593 error = led_trigger_register(&rfkill->led_trigger);
594 if (error)
595 rfkill->led_trigger.name = NULL;
596#endif /* CONFIG_RFKILL_LEDS */
597}
598
599static void rfkill_led_trigger_unregister(struct rfkill *rfkill)
600{
601#ifdef CONFIG_RFKILL_LEDS
Henrique de Moraes Holschuh37f55e92008-07-21 21:18:18 -0300602 if (rfkill->led_trigger.name) {
Michael Buesch135900c2007-09-27 21:33:12 +0200603 led_trigger_unregister(&rfkill->led_trigger);
Henrique de Moraes Holschuh37f55e92008-07-21 21:18:18 -0300604 rfkill->led_trigger.name = NULL;
605 }
Michael Buesch135900c2007-09-27 21:33:12 +0200606#endif
607}
608
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700609/**
610 * rfkill_register - Register a rfkill structure.
611 * @rfkill: rfkill structure to be registered
612 *
613 * This function should be called by the network driver when the rfkill
614 * structure needs to be registered. Immediately from registration the
615 * switch driver should be able to service calls to toggle_radio.
616 */
617int rfkill_register(struct rfkill *rfkill)
618{
619 static atomic_t rfkill_no = ATOMIC_INIT(0);
620 struct device *dev = &rfkill->dev;
621 int error;
622
623 if (!rfkill->toggle_radio)
624 return -EINVAL;
Michael Buesch7319f1e2007-10-28 15:16:50 +0100625 if (rfkill->type >= RFKILL_TYPE_MAX)
626 return -EINVAL;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700627
Michael Buesch8a8f1c02007-10-28 13:07:54 +0100628 snprintf(dev->bus_id, sizeof(dev->bus_id),
629 "rfkill%ld", (long)atomic_inc_return(&rfkill_no) - 1);
630
631 rfkill_led_trigger_register(rfkill);
632
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700633 error = rfkill_add_switch(rfkill);
Eric Paris632041f2008-01-13 16:20:56 -0500634 if (error) {
635 rfkill_led_trigger_unregister(rfkill);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700636 return error;
Eric Paris632041f2008-01-13 16:20:56 -0500637 }
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700638
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700639 error = device_add(dev);
640 if (error) {
641 rfkill_remove_switch(rfkill);
Henrique de Moraes Holschuh37f55e92008-07-21 21:18:18 -0300642 rfkill_led_trigger_unregister(rfkill);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700643 return error;
644 }
645
646 return 0;
647}
648EXPORT_SYMBOL(rfkill_register);
649
650/**
Henrique de Moraes Holschuhc8fcd902008-06-23 17:22:57 -0300651 * rfkill_unregister - Unregister a rfkill structure.
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700652 * @rfkill: rfkill structure to be unregistered
653 *
654 * This function should be called by the network driver during device
655 * teardown to destroy rfkill structure. Note that rfkill_free() should
656 * _not_ be called after rfkill_unregister().
657 */
658void rfkill_unregister(struct rfkill *rfkill)
659{
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700660 device_del(&rfkill->dev);
661 rfkill_remove_switch(rfkill);
Michael Buesch8a8f1c02007-10-28 13:07:54 +0100662 rfkill_led_trigger_unregister(rfkill);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700663 put_device(&rfkill->dev);
664}
665EXPORT_SYMBOL(rfkill_unregister);
666
667/*
668 * Rfkill module initialization/deinitialization.
669 */
670static int __init rfkill_init(void)
671{
672 int error;
673 int i;
674
Henrique de Moraes Holschuh50056572008-06-23 17:46:42 -0300675 /* RFKILL_STATE_HARD_BLOCKED is illegal here... */
676 if (rfkill_default_state != RFKILL_STATE_SOFT_BLOCKED &&
677 rfkill_default_state != RFKILL_STATE_UNBLOCKED)
Henrique de Moraes Holschuhe954b0b2008-06-23 17:22:59 -0300678 return -EINVAL;
679
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700680 for (i = 0; i < ARRAY_SIZE(rfkill_states); i++)
Henrique de Moraes Holschuhe954b0b2008-06-23 17:22:59 -0300681 rfkill_states[i] = rfkill_default_state;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700682
683 error = class_register(&rfkill_class);
684 if (error) {
685 printk(KERN_ERR "rfkill: unable to register rfkill class\n");
686 return error;
687 }
688
Henrique de Moraes Holschuhffb67c32008-06-23 17:23:05 -0300689 register_rfkill_notifier(&rfkill_blocking_uevent_nb);
690
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700691 return 0;
692}
693
694static void __exit rfkill_exit(void)
695{
Henrique de Moraes Holschuhffb67c32008-06-23 17:23:05 -0300696 unregister_rfkill_notifier(&rfkill_blocking_uevent_nb);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700697 class_unregister(&rfkill_class);
698}
699
Michael Buesch2bf236d2007-10-28 14:39:02 +0100700subsys_initcall(rfkill_init);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700701module_exit(rfkill_exit);