x86: rename all fields of mpc_intsrc mpc_X to X
[linux-2.6/kvm.git] / net / rfkill / rfkill.c
blob3c94f76d5525565f7cbb95372099ca9768d72a75
1 /*
2 * Copyright (C) 2006 - 2007 Ivo van Doorn
3 * Copyright (C) 2007 Dmitry Torokhov
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.
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.
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.
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>
30 /* Get declaration of rfkill_switch_all() to shut up sparse. */
31 #include "rfkill-input.h"
34 MODULE_AUTHOR("Ivo van Doorn <IvDoorn@gmail.com>");
35 MODULE_VERSION("1.0");
36 MODULE_DESCRIPTION("RF switch support");
37 MODULE_LICENSE("GPL");
39 static LIST_HEAD(rfkill_list); /* list of registered rf switches */
40 static DEFINE_MUTEX(rfkill_global_mutex);
42 static unsigned int rfkill_default_state = RFKILL_STATE_UNBLOCKED;
43 module_param_named(default_state, rfkill_default_state, uint, 0444);
44 MODULE_PARM_DESC(default_state,
45 "Default initial state for all radio types, 0 = radio off");
47 struct rfkill_gsw_state {
48 enum rfkill_state current_state;
49 enum rfkill_state default_state;
52 static struct rfkill_gsw_state rfkill_global_states[RFKILL_TYPE_MAX];
53 static unsigned long rfkill_states_lockdflt[BITS_TO_LONGS(RFKILL_TYPE_MAX)];
54 static bool rfkill_epo_lock_active;
57 static void rfkill_led_trigger(struct rfkill *rfkill,
58 enum rfkill_state state)
60 #ifdef CONFIG_RFKILL_LEDS
61 struct led_trigger *led = &rfkill->led_trigger;
63 if (!led->name)
64 return;
65 if (state != RFKILL_STATE_UNBLOCKED)
66 led_trigger_event(led, LED_OFF);
67 else
68 led_trigger_event(led, LED_FULL);
69 #endif /* CONFIG_RFKILL_LEDS */
72 #ifdef CONFIG_RFKILL_LEDS
73 static void rfkill_led_trigger_activate(struct led_classdev *led)
75 struct rfkill *rfkill = container_of(led->trigger,
76 struct rfkill, led_trigger);
78 rfkill_led_trigger(rfkill, rfkill->state);
80 #endif /* CONFIG_RFKILL_LEDS */
82 static void rfkill_uevent(struct rfkill *rfkill)
84 kobject_uevent(&rfkill->dev.kobj, KOBJ_CHANGE);
87 static void update_rfkill_state(struct rfkill *rfkill)
89 enum rfkill_state newstate, oldstate;
91 if (rfkill->get_state) {
92 mutex_lock(&rfkill->mutex);
93 if (!rfkill->get_state(rfkill->data, &newstate)) {
94 oldstate = rfkill->state;
95 rfkill->state = newstate;
96 if (oldstate != newstate)
97 rfkill_uevent(rfkill);
99 mutex_unlock(&rfkill->mutex);
104 * rfkill_toggle_radio - wrapper for toggle_radio hook
105 * @rfkill: the rfkill struct to use
106 * @force: calls toggle_radio even if cache says it is not needed,
107 * and also makes sure notifications of the state will be
108 * sent even if it didn't change
109 * @state: the new state to call toggle_radio() with
111 * Calls rfkill->toggle_radio, enforcing the API for toggle_radio
112 * calls and handling all the red tape such as issuing notifications
113 * if the call is successful.
115 * Suspended devices are not touched at all, and -EAGAIN is returned.
117 * Note that the @force parameter cannot override a (possibly cached)
118 * state of RFKILL_STATE_HARD_BLOCKED. Any device making use of
119 * RFKILL_STATE_HARD_BLOCKED implements either get_state() or
120 * rfkill_force_state(), so the cache either is bypassed or valid.
122 * Note that we do call toggle_radio for RFKILL_STATE_SOFT_BLOCKED
123 * even if the radio is in RFKILL_STATE_HARD_BLOCKED state, so as to
124 * give the driver a hint that it should double-BLOCK the transmitter.
126 * Caller must have acquired rfkill->mutex.
128 static int rfkill_toggle_radio(struct rfkill *rfkill,
129 enum rfkill_state state,
130 int force)
132 int retval = 0;
133 enum rfkill_state oldstate, newstate;
135 if (unlikely(rfkill->dev.power.power_state.event & PM_EVENT_SLEEP))
136 return -EBUSY;
138 oldstate = rfkill->state;
140 if (rfkill->get_state && !force &&
141 !rfkill->get_state(rfkill->data, &newstate))
142 rfkill->state = newstate;
144 switch (state) {
145 case RFKILL_STATE_HARD_BLOCKED:
146 /* typically happens when refreshing hardware state,
147 * such as on resume */
148 state = RFKILL_STATE_SOFT_BLOCKED;
149 break;
150 case RFKILL_STATE_UNBLOCKED:
151 /* force can't override this, only rfkill_force_state() can */
152 if (rfkill->state == RFKILL_STATE_HARD_BLOCKED)
153 return -EPERM;
154 break;
155 case RFKILL_STATE_SOFT_BLOCKED:
156 /* nothing to do, we want to give drivers the hint to double
157 * BLOCK even a transmitter that is already in state
158 * RFKILL_STATE_HARD_BLOCKED */
159 break;
160 default:
161 WARN(1, KERN_WARNING
162 "rfkill: illegal state %d passed as parameter "
163 "to rfkill_toggle_radio\n", state);
164 return -EINVAL;
167 if (force || state != rfkill->state) {
168 retval = rfkill->toggle_radio(rfkill->data, state);
169 /* never allow a HARD->SOFT downgrade! */
170 if (!retval && rfkill->state != RFKILL_STATE_HARD_BLOCKED)
171 rfkill->state = state;
174 if (force || rfkill->state != oldstate)
175 rfkill_uevent(rfkill);
177 return retval;
181 * __rfkill_switch_all - Toggle state of all switches of given type
182 * @type: type of interfaces to be affected
183 * @state: the new state
185 * This function toggles the state of all switches of given type,
186 * unless a specific switch is claimed by userspace (in which case,
187 * that switch is left alone) or suspended.
189 * Caller must have acquired rfkill_global_mutex.
191 static void __rfkill_switch_all(const enum rfkill_type type,
192 const enum rfkill_state state)
194 struct rfkill *rfkill;
196 if (WARN((state >= RFKILL_STATE_MAX || type >= RFKILL_TYPE_MAX),
197 KERN_WARNING
198 "rfkill: illegal state %d or type %d "
199 "passed as parameter to __rfkill_switch_all\n",
200 state, type))
201 return;
203 rfkill_global_states[type].current_state = state;
204 list_for_each_entry(rfkill, &rfkill_list, node) {
205 if ((!rfkill->user_claim) && (rfkill->type == type)) {
206 mutex_lock(&rfkill->mutex);
207 rfkill_toggle_radio(rfkill, state, 0);
208 mutex_unlock(&rfkill->mutex);
214 * rfkill_switch_all - Toggle state of all switches of given type
215 * @type: type of interfaces to be affected
216 * @state: the new state
218 * Acquires rfkill_global_mutex and calls __rfkill_switch_all(@type, @state).
219 * Please refer to __rfkill_switch_all() for details.
221 * Does nothing if the EPO lock is active.
223 void rfkill_switch_all(enum rfkill_type type, enum rfkill_state state)
225 mutex_lock(&rfkill_global_mutex);
226 if (!rfkill_epo_lock_active)
227 __rfkill_switch_all(type, state);
228 mutex_unlock(&rfkill_global_mutex);
230 EXPORT_SYMBOL(rfkill_switch_all);
233 * rfkill_epo - emergency power off all transmitters
235 * This kicks all non-suspended rfkill devices to RFKILL_STATE_SOFT_BLOCKED,
236 * ignoring everything in its path but rfkill_global_mutex and rfkill->mutex.
238 * The global state before the EPO is saved and can be restored later
239 * using rfkill_restore_states().
241 void rfkill_epo(void)
243 struct rfkill *rfkill;
244 int i;
246 mutex_lock(&rfkill_global_mutex);
248 rfkill_epo_lock_active = true;
249 list_for_each_entry(rfkill, &rfkill_list, node) {
250 mutex_lock(&rfkill->mutex);
251 rfkill_toggle_radio(rfkill, RFKILL_STATE_SOFT_BLOCKED, 1);
252 mutex_unlock(&rfkill->mutex);
254 for (i = 0; i < RFKILL_TYPE_MAX; i++) {
255 rfkill_global_states[i].default_state =
256 rfkill_global_states[i].current_state;
257 rfkill_global_states[i].current_state =
258 RFKILL_STATE_SOFT_BLOCKED;
260 mutex_unlock(&rfkill_global_mutex);
262 EXPORT_SYMBOL_GPL(rfkill_epo);
265 * rfkill_restore_states - restore global states
267 * Restore (and sync switches to) the global state from the
268 * states in rfkill_default_states. This can undo the effects of
269 * a call to rfkill_epo().
271 void rfkill_restore_states(void)
273 int i;
275 mutex_lock(&rfkill_global_mutex);
277 rfkill_epo_lock_active = false;
278 for (i = 0; i < RFKILL_TYPE_MAX; i++)
279 __rfkill_switch_all(i, rfkill_global_states[i].default_state);
280 mutex_unlock(&rfkill_global_mutex);
282 EXPORT_SYMBOL_GPL(rfkill_restore_states);
285 * rfkill_remove_epo_lock - unlock state changes
287 * Used by rfkill-input manually unlock state changes, when
288 * the EPO switch is deactivated.
290 void rfkill_remove_epo_lock(void)
292 mutex_lock(&rfkill_global_mutex);
293 rfkill_epo_lock_active = false;
294 mutex_unlock(&rfkill_global_mutex);
296 EXPORT_SYMBOL_GPL(rfkill_remove_epo_lock);
299 * rfkill_is_epo_lock_active - returns true EPO is active
301 * Returns 0 (false) if there is NOT an active EPO contidion,
302 * and 1 (true) if there is an active EPO contition, which
303 * locks all radios in one of the BLOCKED states.
305 * Can be called in atomic context.
307 bool rfkill_is_epo_lock_active(void)
309 return rfkill_epo_lock_active;
311 EXPORT_SYMBOL_GPL(rfkill_is_epo_lock_active);
314 * rfkill_get_global_state - returns global state for a type
315 * @type: the type to get the global state of
317 * Returns the current global state for a given wireless
318 * device type.
320 enum rfkill_state rfkill_get_global_state(const enum rfkill_type type)
322 return rfkill_global_states[type].current_state;
324 EXPORT_SYMBOL_GPL(rfkill_get_global_state);
327 * rfkill_force_state - Force the internal rfkill radio state
328 * @rfkill: pointer to the rfkill class to modify.
329 * @state: the current radio state the class should be forced to.
331 * This function updates the internal state of the radio cached
332 * by the rfkill class. It should be used when the driver gets
333 * a notification by the firmware/hardware of the current *real*
334 * state of the radio rfkill switch.
336 * Devices which are subject to external changes on their rfkill
337 * state (such as those caused by a hardware rfkill line) MUST
338 * have their driver arrange to call rfkill_force_state() as soon
339 * as possible after such a change.
341 * This function may not be called from an atomic context.
343 int rfkill_force_state(struct rfkill *rfkill, enum rfkill_state state)
345 enum rfkill_state oldstate;
347 BUG_ON(!rfkill);
348 if (WARN((state >= RFKILL_STATE_MAX),
349 KERN_WARNING
350 "rfkill: illegal state %d passed as parameter "
351 "to rfkill_force_state\n", state))
352 return -EINVAL;
354 mutex_lock(&rfkill->mutex);
356 oldstate = rfkill->state;
357 rfkill->state = state;
359 if (state != oldstate)
360 rfkill_uevent(rfkill);
362 mutex_unlock(&rfkill->mutex);
364 return 0;
366 EXPORT_SYMBOL(rfkill_force_state);
368 static ssize_t rfkill_name_show(struct device *dev,
369 struct device_attribute *attr,
370 char *buf)
372 struct rfkill *rfkill = to_rfkill(dev);
374 return sprintf(buf, "%s\n", rfkill->name);
377 static const char *rfkill_get_type_str(enum rfkill_type type)
379 switch (type) {
380 case RFKILL_TYPE_WLAN:
381 return "wlan";
382 case RFKILL_TYPE_BLUETOOTH:
383 return "bluetooth";
384 case RFKILL_TYPE_UWB:
385 return "ultrawideband";
386 case RFKILL_TYPE_WIMAX:
387 return "wimax";
388 case RFKILL_TYPE_WWAN:
389 return "wwan";
390 default:
391 BUG();
395 static ssize_t rfkill_type_show(struct device *dev,
396 struct device_attribute *attr,
397 char *buf)
399 struct rfkill *rfkill = to_rfkill(dev);
401 return sprintf(buf, "%s\n", rfkill_get_type_str(rfkill->type));
404 static ssize_t rfkill_state_show(struct device *dev,
405 struct device_attribute *attr,
406 char *buf)
408 struct rfkill *rfkill = to_rfkill(dev);
410 update_rfkill_state(rfkill);
411 return sprintf(buf, "%d\n", rfkill->state);
414 static ssize_t rfkill_state_store(struct device *dev,
415 struct device_attribute *attr,
416 const char *buf, size_t count)
418 struct rfkill *rfkill = to_rfkill(dev);
419 unsigned long state;
420 int error;
422 if (!capable(CAP_NET_ADMIN))
423 return -EPERM;
425 error = strict_strtoul(buf, 0, &state);
426 if (error)
427 return error;
429 /* RFKILL_STATE_HARD_BLOCKED is illegal here... */
430 if (state != RFKILL_STATE_UNBLOCKED &&
431 state != RFKILL_STATE_SOFT_BLOCKED)
432 return -EINVAL;
434 error = mutex_lock_killable(&rfkill->mutex);
435 if (error)
436 return error;
438 if (!rfkill_epo_lock_active)
439 error = rfkill_toggle_radio(rfkill, state, 0);
440 else
441 error = -EPERM;
443 mutex_unlock(&rfkill->mutex);
445 return error ? error : count;
448 static ssize_t rfkill_claim_show(struct device *dev,
449 struct device_attribute *attr,
450 char *buf)
452 struct rfkill *rfkill = to_rfkill(dev);
454 return sprintf(buf, "%d\n", rfkill->user_claim);
457 static ssize_t rfkill_claim_store(struct device *dev,
458 struct device_attribute *attr,
459 const char *buf, size_t count)
461 struct rfkill *rfkill = to_rfkill(dev);
462 unsigned long claim_tmp;
463 bool claim;
464 int error;
466 if (!capable(CAP_NET_ADMIN))
467 return -EPERM;
469 if (rfkill->user_claim_unsupported)
470 return -EOPNOTSUPP;
472 error = strict_strtoul(buf, 0, &claim_tmp);
473 if (error)
474 return error;
475 claim = !!claim_tmp;
478 * Take the global lock to make sure the kernel is not in
479 * the middle of rfkill_switch_all
481 error = mutex_lock_killable(&rfkill_global_mutex);
482 if (error)
483 return error;
485 if (rfkill->user_claim != claim) {
486 if (!claim && !rfkill_epo_lock_active) {
487 mutex_lock(&rfkill->mutex);
488 rfkill_toggle_radio(rfkill,
489 rfkill_global_states[rfkill->type].current_state,
491 mutex_unlock(&rfkill->mutex);
493 rfkill->user_claim = claim;
496 mutex_unlock(&rfkill_global_mutex);
498 return error ? error : count;
501 static struct device_attribute rfkill_dev_attrs[] = {
502 __ATTR(name, S_IRUGO, rfkill_name_show, NULL),
503 __ATTR(type, S_IRUGO, rfkill_type_show, NULL),
504 __ATTR(state, S_IRUGO|S_IWUSR, rfkill_state_show, rfkill_state_store),
505 __ATTR(claim, S_IRUGO|S_IWUSR, rfkill_claim_show, rfkill_claim_store),
506 __ATTR_NULL
509 static void rfkill_release(struct device *dev)
511 struct rfkill *rfkill = to_rfkill(dev);
513 kfree(rfkill);
514 module_put(THIS_MODULE);
517 #ifdef CONFIG_PM
518 static int rfkill_suspend(struct device *dev, pm_message_t state)
520 struct rfkill *rfkill = to_rfkill(dev);
522 /* mark class device as suspended */
523 if (dev->power.power_state.event != state.event)
524 dev->power.power_state = state;
526 /* store state for the resume handler */
527 rfkill->state_for_resume = rfkill->state;
529 return 0;
532 static int rfkill_resume(struct device *dev)
534 struct rfkill *rfkill = to_rfkill(dev);
535 enum rfkill_state newstate;
537 if (dev->power.power_state.event != PM_EVENT_ON) {
538 mutex_lock(&rfkill->mutex);
540 dev->power.power_state.event = PM_EVENT_ON;
543 * rfkill->state could have been modified before we got
544 * called, and won't be updated by rfkill_toggle_radio()
545 * in force mode. Sync it FIRST.
547 if (rfkill->get_state &&
548 !rfkill->get_state(rfkill->data, &newstate))
549 rfkill->state = newstate;
552 * If we are under EPO, kick transmitter offline,
553 * otherwise restore to pre-suspend state.
555 * Issue a notification in any case
557 rfkill_toggle_radio(rfkill,
558 rfkill_epo_lock_active ?
559 RFKILL_STATE_SOFT_BLOCKED :
560 rfkill->state_for_resume,
563 mutex_unlock(&rfkill->mutex);
566 return 0;
568 #else
569 #define rfkill_suspend NULL
570 #define rfkill_resume NULL
571 #endif
573 static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
575 struct rfkill *rfkill = to_rfkill(dev);
576 int error;
578 error = add_uevent_var(env, "RFKILL_NAME=%s", rfkill->name);
579 if (error)
580 return error;
581 error = add_uevent_var(env, "RFKILL_TYPE=%s",
582 rfkill_get_type_str(rfkill->type));
583 if (error)
584 return error;
585 error = add_uevent_var(env, "RFKILL_STATE=%d", rfkill->state);
586 return error;
589 static struct class rfkill_class = {
590 .name = "rfkill",
591 .dev_release = rfkill_release,
592 .dev_attrs = rfkill_dev_attrs,
593 .suspend = rfkill_suspend,
594 .resume = rfkill_resume,
595 .dev_uevent = rfkill_dev_uevent,
598 static int rfkill_check_duplicity(const struct rfkill *rfkill)
600 struct rfkill *p;
601 unsigned long seen[BITS_TO_LONGS(RFKILL_TYPE_MAX)];
603 memset(seen, 0, sizeof(seen));
605 list_for_each_entry(p, &rfkill_list, node) {
606 if (WARN((p == rfkill), KERN_WARNING
607 "rfkill: illegal attempt to register "
608 "an already registered rfkill struct\n"))
609 return -EEXIST;
610 set_bit(p->type, seen);
613 /* 0: first switch of its kind */
614 return (test_bit(rfkill->type, seen)) ? 1 : 0;
617 static int rfkill_add_switch(struct rfkill *rfkill)
619 int error;
621 mutex_lock(&rfkill_global_mutex);
623 error = rfkill_check_duplicity(rfkill);
624 if (error < 0)
625 goto unlock_out;
627 if (!error) {
628 /* lock default after first use */
629 set_bit(rfkill->type, rfkill_states_lockdflt);
630 rfkill_global_states[rfkill->type].current_state =
631 rfkill_global_states[rfkill->type].default_state;
634 rfkill_toggle_radio(rfkill,
635 rfkill_global_states[rfkill->type].current_state,
638 list_add_tail(&rfkill->node, &rfkill_list);
640 error = 0;
641 unlock_out:
642 mutex_unlock(&rfkill_global_mutex);
644 return error;
647 static void rfkill_remove_switch(struct rfkill *rfkill)
649 mutex_lock(&rfkill_global_mutex);
650 list_del_init(&rfkill->node);
651 mutex_unlock(&rfkill_global_mutex);
653 mutex_lock(&rfkill->mutex);
654 rfkill_toggle_radio(rfkill, RFKILL_STATE_SOFT_BLOCKED, 1);
655 mutex_unlock(&rfkill->mutex);
659 * rfkill_allocate - allocate memory for rfkill structure.
660 * @parent: device that has rf switch on it
661 * @type: type of the switch (RFKILL_TYPE_*)
663 * This function should be called by the network driver when it needs
664 * rfkill structure. Once the structure is allocated the driver should
665 * finish its initialization by setting the name, private data, enable_radio
666 * and disable_radio methods and then register it with rfkill_register().
668 * NOTE: If registration fails the structure shoudl be freed by calling
669 * rfkill_free() otherwise rfkill_unregister() should be used.
671 struct rfkill * __must_check rfkill_allocate(struct device *parent,
672 enum rfkill_type type)
674 struct rfkill *rfkill;
675 struct device *dev;
677 if (WARN((type >= RFKILL_TYPE_MAX),
678 KERN_WARNING
679 "rfkill: illegal type %d passed as parameter "
680 "to rfkill_allocate\n", type))
681 return NULL;
683 rfkill = kzalloc(sizeof(struct rfkill), GFP_KERNEL);
684 if (!rfkill)
685 return NULL;
687 mutex_init(&rfkill->mutex);
688 INIT_LIST_HEAD(&rfkill->node);
689 rfkill->type = type;
691 dev = &rfkill->dev;
692 dev->class = &rfkill_class;
693 dev->parent = parent;
694 device_initialize(dev);
696 __module_get(THIS_MODULE);
698 return rfkill;
700 EXPORT_SYMBOL(rfkill_allocate);
703 * rfkill_free - Mark rfkill structure for deletion
704 * @rfkill: rfkill structure to be destroyed
706 * Decrements reference count of the rfkill structure so it is destroyed.
707 * Note that rfkill_free() should _not_ be called after rfkill_unregister().
709 void rfkill_free(struct rfkill *rfkill)
711 if (rfkill)
712 put_device(&rfkill->dev);
714 EXPORT_SYMBOL(rfkill_free);
716 static void rfkill_led_trigger_register(struct rfkill *rfkill)
718 #ifdef CONFIG_RFKILL_LEDS
719 int error;
721 if (!rfkill->led_trigger.name)
722 rfkill->led_trigger.name = dev_name(&rfkill->dev);
723 if (!rfkill->led_trigger.activate)
724 rfkill->led_trigger.activate = rfkill_led_trigger_activate;
725 error = led_trigger_register(&rfkill->led_trigger);
726 if (error)
727 rfkill->led_trigger.name = NULL;
728 #endif /* CONFIG_RFKILL_LEDS */
731 static void rfkill_led_trigger_unregister(struct rfkill *rfkill)
733 #ifdef CONFIG_RFKILL_LEDS
734 if (rfkill->led_trigger.name) {
735 led_trigger_unregister(&rfkill->led_trigger);
736 rfkill->led_trigger.name = NULL;
738 #endif
742 * rfkill_register - Register a rfkill structure.
743 * @rfkill: rfkill structure to be registered
745 * This function should be called by the network driver when the rfkill
746 * structure needs to be registered. Immediately from registration the
747 * switch driver should be able to service calls to toggle_radio.
749 int __must_check rfkill_register(struct rfkill *rfkill)
751 static atomic_t rfkill_no = ATOMIC_INIT(0);
752 struct device *dev = &rfkill->dev;
753 int error;
755 if (WARN((!rfkill || !rfkill->toggle_radio ||
756 rfkill->type >= RFKILL_TYPE_MAX ||
757 rfkill->state >= RFKILL_STATE_MAX),
758 KERN_WARNING
759 "rfkill: attempt to register a "
760 "badly initialized rfkill struct\n"))
761 return -EINVAL;
763 dev_set_name(dev, "rfkill%ld", (long)atomic_inc_return(&rfkill_no) - 1);
765 rfkill_led_trigger_register(rfkill);
767 error = rfkill_add_switch(rfkill);
768 if (error) {
769 rfkill_led_trigger_unregister(rfkill);
770 return error;
773 error = device_add(dev);
774 if (error) {
775 rfkill_remove_switch(rfkill);
776 rfkill_led_trigger_unregister(rfkill);
777 return error;
780 return 0;
782 EXPORT_SYMBOL(rfkill_register);
785 * rfkill_unregister - Unregister a rfkill structure.
786 * @rfkill: rfkill structure to be unregistered
788 * This function should be called by the network driver during device
789 * teardown to destroy rfkill structure. Note that rfkill_free() should
790 * _not_ be called after rfkill_unregister().
792 void rfkill_unregister(struct rfkill *rfkill)
794 BUG_ON(!rfkill);
795 device_del(&rfkill->dev);
796 rfkill_remove_switch(rfkill);
797 rfkill_led_trigger_unregister(rfkill);
798 put_device(&rfkill->dev);
800 EXPORT_SYMBOL(rfkill_unregister);
803 * rfkill_set_default - set initial value for a switch type
804 * @type - the type of switch to set the default state of
805 * @state - the new default state for that group of switches
807 * Sets the initial state rfkill should use for a given type.
808 * The following initial states are allowed: RFKILL_STATE_SOFT_BLOCKED
809 * and RFKILL_STATE_UNBLOCKED.
811 * This function is meant to be used by platform drivers for platforms
812 * that can save switch state across power down/reboot.
814 * The default state for each switch type can be changed exactly once.
815 * After a switch of that type is registered, the default state cannot
816 * be changed anymore. This guards against multiple drivers it the
817 * same platform trying to set the initial switch default state, which
818 * is not allowed.
820 * Returns -EPERM if the state has already been set once or is in use,
821 * so drivers likely want to either ignore or at most printk(KERN_NOTICE)
822 * if this function returns -EPERM.
824 * Returns 0 if the new default state was set, or an error if it
825 * could not be set.
827 int rfkill_set_default(enum rfkill_type type, enum rfkill_state state)
829 int error;
831 if (WARN((type >= RFKILL_TYPE_MAX ||
832 (state != RFKILL_STATE_SOFT_BLOCKED &&
833 state != RFKILL_STATE_UNBLOCKED)),
834 KERN_WARNING
835 "rfkill: illegal state %d or type %d passed as "
836 "parameter to rfkill_set_default\n", state, type))
837 return -EINVAL;
839 mutex_lock(&rfkill_global_mutex);
841 if (!test_and_set_bit(type, rfkill_states_lockdflt)) {
842 rfkill_global_states[type].default_state = state;
843 rfkill_global_states[type].current_state = state;
844 error = 0;
845 } else
846 error = -EPERM;
848 mutex_unlock(&rfkill_global_mutex);
849 return error;
851 EXPORT_SYMBOL_GPL(rfkill_set_default);
854 * Rfkill module initialization/deinitialization.
856 static int __init rfkill_init(void)
858 int error;
859 int i;
861 /* RFKILL_STATE_HARD_BLOCKED is illegal here... */
862 if (rfkill_default_state != RFKILL_STATE_SOFT_BLOCKED &&
863 rfkill_default_state != RFKILL_STATE_UNBLOCKED)
864 return -EINVAL;
866 for (i = 0; i < RFKILL_TYPE_MAX; i++)
867 rfkill_global_states[i].default_state = rfkill_default_state;
869 error = class_register(&rfkill_class);
870 if (error) {
871 printk(KERN_ERR "rfkill: unable to register rfkill class\n");
872 return error;
875 return 0;
878 static void __exit rfkill_exit(void)
880 class_unregister(&rfkill_class);
883 subsys_initcall(rfkill_init);
884 module_exit(rfkill_exit);