net: rfkill: gpio: remove rfkill_gpio_platform_data
[linux-block.git] / net / rfkill / core.c
CommitLineData
19d337df
JB
1/*
2 * Copyright (C) 2006 - 2007 Ivo van Doorn
3 * Copyright (C) 2007 Dmitry Torokhov
4 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
8232f1f3 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19d337df
JB
18 */
19
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/workqueue.h>
24#include <linux/capability.h>
25#include <linux/list.h>
26#include <linux/mutex.h>
27#include <linux/rfkill.h>
a99bbaf5 28#include <linux/sched.h>
19d337df 29#include <linux/spinlock.h>
51990e82 30#include <linux/device.h>
c64fb016
JB
31#include <linux/miscdevice.h>
32#include <linux/wait.h>
33#include <linux/poll.h>
34#include <linux/fs.h>
5a0e3ad6 35#include <linux/slab.h>
19d337df
JB
36
37#include "rfkill.h"
38
39#define POLL_INTERVAL (5 * HZ)
40
41#define RFKILL_BLOCK_HW BIT(0)
42#define RFKILL_BLOCK_SW BIT(1)
43#define RFKILL_BLOCK_SW_PREV BIT(2)
44#define RFKILL_BLOCK_ANY (RFKILL_BLOCK_HW |\
45 RFKILL_BLOCK_SW |\
46 RFKILL_BLOCK_SW_PREV)
47#define RFKILL_BLOCK_SW_SETCALL BIT(31)
48
49struct rfkill {
50 spinlock_t lock;
51
19d337df
JB
52 enum rfkill_type type;
53
54 unsigned long state;
55
c64fb016
JB
56 u32 idx;
57
19d337df 58 bool registered;
b3fa1329 59 bool persistent;
dd21dfc6
JB
60 bool polling_paused;
61 bool suspended;
19d337df
JB
62
63 const struct rfkill_ops *ops;
64 void *data;
65
66#ifdef CONFIG_RFKILL_LEDS
67 struct led_trigger led_trigger;
68 const char *ledtrigname;
69#endif
70
71 struct device dev;
72 struct list_head node;
73
74 struct delayed_work poll_work;
75 struct work_struct uevent_work;
76 struct work_struct sync_work;
b7bb1100 77 char name[];
19d337df
JB
78};
79#define to_rfkill(d) container_of(d, struct rfkill, dev)
80
c64fb016
JB
81struct rfkill_int_event {
82 struct list_head list;
83 struct rfkill_event ev;
84};
85
86struct rfkill_data {
87 struct list_head list;
88 struct list_head events;
89 struct mutex mtx;
90 wait_queue_head_t read_wait;
91 bool input_handler;
92};
19d337df
JB
93
94
95MODULE_AUTHOR("Ivo van Doorn <IvDoorn@gmail.com>");
96MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
97MODULE_DESCRIPTION("RF switch support");
98MODULE_LICENSE("GPL");
99
100
101/*
102 * The locking here should be made much smarter, we currently have
103 * a bit of a stupid situation because drivers might want to register
104 * the rfkill struct under their own lock, and take this lock during
105 * rfkill method calls -- which will cause an AB-BA deadlock situation.
106 *
107 * To fix that, we need to rework this code here to be mostly lock-free
108 * and only use the mutex for list manipulations, not to protect the
109 * various other global variables. Then we can avoid holding the mutex
110 * around driver operations, and all is happy.
111 */
112static LIST_HEAD(rfkill_list); /* list of registered rf switches */
113static DEFINE_MUTEX(rfkill_global_mutex);
c64fb016 114static LIST_HEAD(rfkill_fds); /* list of open fds of /dev/rfkill */
19d337df
JB
115
116static unsigned int rfkill_default_state = 1;
117module_param_named(default_state, rfkill_default_state, uint, 0444);
118MODULE_PARM_DESC(default_state,
119 "Default initial state for all radio types, 0 = radio off");
120
121static struct {
b3fa1329 122 bool cur, sav;
19d337df
JB
123} rfkill_global_states[NUM_RFKILL_TYPES];
124
19d337df
JB
125static bool rfkill_epo_lock_active;
126
127
128#ifdef CONFIG_RFKILL_LEDS
129static void rfkill_led_trigger_event(struct rfkill *rfkill)
130{
131 struct led_trigger *trigger;
132
133 if (!rfkill->registered)
134 return;
135
136 trigger = &rfkill->led_trigger;
137
138 if (rfkill->state & RFKILL_BLOCK_ANY)
139 led_trigger_event(trigger, LED_OFF);
140 else
141 led_trigger_event(trigger, LED_FULL);
142}
143
144static void rfkill_led_trigger_activate(struct led_classdev *led)
145{
146 struct rfkill *rfkill;
147
148 rfkill = container_of(led->trigger, struct rfkill, led_trigger);
149
150 rfkill_led_trigger_event(rfkill);
151}
152
06d7de83
AK
153const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
154{
155 return rfkill->led_trigger.name;
156}
157EXPORT_SYMBOL(rfkill_get_led_trigger_name);
158
159void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
160{
161 BUG_ON(!rfkill);
162
163 rfkill->ledtrigname = name;
164}
165EXPORT_SYMBOL(rfkill_set_led_trigger_name);
166
19d337df
JB
167static int rfkill_led_trigger_register(struct rfkill *rfkill)
168{
169 rfkill->led_trigger.name = rfkill->ledtrigname
170 ? : dev_name(&rfkill->dev);
171 rfkill->led_trigger.activate = rfkill_led_trigger_activate;
172 return led_trigger_register(&rfkill->led_trigger);
173}
174
175static void rfkill_led_trigger_unregister(struct rfkill *rfkill)
176{
177 led_trigger_unregister(&rfkill->led_trigger);
178}
179#else
180static void rfkill_led_trigger_event(struct rfkill *rfkill)
181{
182}
183
184static inline int rfkill_led_trigger_register(struct rfkill *rfkill)
185{
186 return 0;
187}
188
189static inline void rfkill_led_trigger_unregister(struct rfkill *rfkill)
190{
191}
192#endif /* CONFIG_RFKILL_LEDS */
193
c64fb016
JB
194static void rfkill_fill_event(struct rfkill_event *ev, struct rfkill *rfkill,
195 enum rfkill_operation op)
196{
197 unsigned long flags;
198
199 ev->idx = rfkill->idx;
200 ev->type = rfkill->type;
201 ev->op = op;
202
203 spin_lock_irqsave(&rfkill->lock, flags);
204 ev->hard = !!(rfkill->state & RFKILL_BLOCK_HW);
205 ev->soft = !!(rfkill->state & (RFKILL_BLOCK_SW |
206 RFKILL_BLOCK_SW_PREV));
207 spin_unlock_irqrestore(&rfkill->lock, flags);
208}
209
210static void rfkill_send_events(struct rfkill *rfkill, enum rfkill_operation op)
211{
212 struct rfkill_data *data;
213 struct rfkill_int_event *ev;
214
215 list_for_each_entry(data, &rfkill_fds, list) {
216 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
217 if (!ev)
218 continue;
219 rfkill_fill_event(&ev->ev, rfkill, op);
220 mutex_lock(&data->mtx);
221 list_add_tail(&ev->list, &data->events);
222 mutex_unlock(&data->mtx);
223 wake_up_interruptible(&data->read_wait);
224 }
225}
226
227static void rfkill_event(struct rfkill *rfkill)
19d337df 228{
06d5caf4 229 if (!rfkill->registered)
19d337df
JB
230 return;
231
232 kobject_uevent(&rfkill->dev.kobj, KOBJ_CHANGE);
c64fb016
JB
233
234 /* also send event to /dev/rfkill */
235 rfkill_send_events(rfkill, RFKILL_OP_CHANGE);
19d337df
JB
236}
237
19d337df
JB
238/**
239 * rfkill_set_block - wrapper for set_block method
240 *
241 * @rfkill: the rfkill struct to use
242 * @blocked: the new software state
243 *
244 * Calls the set_block method (when applicable) and handles notifications
245 * etc. as well.
246 */
247static void rfkill_set_block(struct rfkill *rfkill, bool blocked)
248{
249 unsigned long flags;
eab48345 250 bool prev, curr;
19d337df
JB
251 int err;
252
7fa20a7f
AJ
253 if (unlikely(rfkill->dev.power.power_state.event & PM_EVENT_SLEEP))
254 return;
255
19d337df
JB
256 /*
257 * Some platforms (...!) generate input events which affect the
258 * _hard_ kill state -- whenever something tries to change the
259 * current software state query the hardware state too.
260 */
261 if (rfkill->ops->query)
262 rfkill->ops->query(rfkill, rfkill->data);
263
264 spin_lock_irqsave(&rfkill->lock, flags);
eab48345
VW
265 prev = rfkill->state & RFKILL_BLOCK_SW;
266
f3e7fae2 267 if (prev)
19d337df
JB
268 rfkill->state |= RFKILL_BLOCK_SW_PREV;
269 else
270 rfkill->state &= ~RFKILL_BLOCK_SW_PREV;
271
272 if (blocked)
273 rfkill->state |= RFKILL_BLOCK_SW;
274 else
275 rfkill->state &= ~RFKILL_BLOCK_SW;
276
277 rfkill->state |= RFKILL_BLOCK_SW_SETCALL;
278 spin_unlock_irqrestore(&rfkill->lock, flags);
279
19d337df
JB
280 err = rfkill->ops->set_block(rfkill->data, blocked);
281
282 spin_lock_irqsave(&rfkill->lock, flags);
283 if (err) {
284 /*
285 * Failed -- reset status to _prev, this may be different
286 * from what set set _PREV to earlier in this function
287 * if rfkill_set_sw_state was invoked.
288 */
289 if (rfkill->state & RFKILL_BLOCK_SW_PREV)
290 rfkill->state |= RFKILL_BLOCK_SW;
291 else
292 rfkill->state &= ~RFKILL_BLOCK_SW;
293 }
294 rfkill->state &= ~RFKILL_BLOCK_SW_SETCALL;
295 rfkill->state &= ~RFKILL_BLOCK_SW_PREV;
eab48345 296 curr = rfkill->state & RFKILL_BLOCK_SW;
19d337df
JB
297 spin_unlock_irqrestore(&rfkill->lock, flags);
298
299 rfkill_led_trigger_event(rfkill);
eab48345
VW
300
301 if (prev != curr)
302 rfkill_event(rfkill);
19d337df
JB
303}
304
c64fb016
JB
305#ifdef CONFIG_RFKILL_INPUT
306static atomic_t rfkill_input_disabled = ATOMIC_INIT(0);
307
19d337df
JB
308/**
309 * __rfkill_switch_all - Toggle state of all switches of given type
310 * @type: type of interfaces to be affected
2f29fed3 311 * @blocked: the new state
19d337df
JB
312 *
313 * This function sets the state of all switches of given type,
e2a35e89 314 * unless a specific switch is suspended.
19d337df
JB
315 *
316 * Caller must have acquired rfkill_global_mutex.
317 */
318static void __rfkill_switch_all(const enum rfkill_type type, bool blocked)
319{
320 struct rfkill *rfkill;
321
4c077893
JPRV
322 if (type == RFKILL_TYPE_ALL) {
323 int i;
324
325 for (i = 0; i < NUM_RFKILL_TYPES; i++)
326 rfkill_global_states[i].cur = blocked;
327 } else {
328 rfkill_global_states[type].cur = blocked;
329 }
330
19d337df 331 list_for_each_entry(rfkill, &rfkill_list, node) {
27e49ca9 332 if (rfkill->type != type && type != RFKILL_TYPE_ALL)
19d337df
JB
333 continue;
334
335 rfkill_set_block(rfkill, blocked);
336 }
337}
338
339/**
340 * rfkill_switch_all - Toggle state of all switches of given type
341 * @type: type of interfaces to be affected
2f29fed3 342 * @blocked: the new state
19d337df
JB
343 *
344 * Acquires rfkill_global_mutex and calls __rfkill_switch_all(@type, @state).
345 * Please refer to __rfkill_switch_all() for details.
346 *
347 * Does nothing if the EPO lock is active.
348 */
349void rfkill_switch_all(enum rfkill_type type, bool blocked)
350{
c64fb016
JB
351 if (atomic_read(&rfkill_input_disabled))
352 return;
353
19d337df
JB
354 mutex_lock(&rfkill_global_mutex);
355
356 if (!rfkill_epo_lock_active)
357 __rfkill_switch_all(type, blocked);
358
359 mutex_unlock(&rfkill_global_mutex);
360}
361
362/**
363 * rfkill_epo - emergency power off all transmitters
364 *
365 * This kicks all non-suspended rfkill devices to RFKILL_STATE_SOFT_BLOCKED,
366 * ignoring everything in its path but rfkill_global_mutex and rfkill->mutex.
367 *
368 * The global state before the EPO is saved and can be restored later
369 * using rfkill_restore_states().
370 */
371void rfkill_epo(void)
372{
373 struct rfkill *rfkill;
374 int i;
375
c64fb016
JB
376 if (atomic_read(&rfkill_input_disabled))
377 return;
378
19d337df
JB
379 mutex_lock(&rfkill_global_mutex);
380
381 rfkill_epo_lock_active = true;
382 list_for_each_entry(rfkill, &rfkill_list, node)
383 rfkill_set_block(rfkill, true);
384
385 for (i = 0; i < NUM_RFKILL_TYPES; i++) {
b3fa1329 386 rfkill_global_states[i].sav = rfkill_global_states[i].cur;
19d337df
JB
387 rfkill_global_states[i].cur = true;
388 }
c64fb016 389
19d337df
JB
390 mutex_unlock(&rfkill_global_mutex);
391}
392
393/**
394 * rfkill_restore_states - restore global states
395 *
396 * Restore (and sync switches to) the global state from the
397 * states in rfkill_default_states. This can undo the effects of
398 * a call to rfkill_epo().
399 */
400void rfkill_restore_states(void)
401{
402 int i;
403
c64fb016
JB
404 if (atomic_read(&rfkill_input_disabled))
405 return;
406
19d337df
JB
407 mutex_lock(&rfkill_global_mutex);
408
409 rfkill_epo_lock_active = false;
410 for (i = 0; i < NUM_RFKILL_TYPES; i++)
b3fa1329 411 __rfkill_switch_all(i, rfkill_global_states[i].sav);
19d337df
JB
412 mutex_unlock(&rfkill_global_mutex);
413}
414
415/**
416 * rfkill_remove_epo_lock - unlock state changes
417 *
418 * Used by rfkill-input manually unlock state changes, when
419 * the EPO switch is deactivated.
420 */
421void rfkill_remove_epo_lock(void)
422{
c64fb016
JB
423 if (atomic_read(&rfkill_input_disabled))
424 return;
425
19d337df
JB
426 mutex_lock(&rfkill_global_mutex);
427 rfkill_epo_lock_active = false;
428 mutex_unlock(&rfkill_global_mutex);
429}
430
431/**
432 * rfkill_is_epo_lock_active - returns true EPO is active
433 *
434 * Returns 0 (false) if there is NOT an active EPO contidion,
435 * and 1 (true) if there is an active EPO contition, which
436 * locks all radios in one of the BLOCKED states.
437 *
438 * Can be called in atomic context.
439 */
440bool rfkill_is_epo_lock_active(void)
441{
442 return rfkill_epo_lock_active;
443}
444
445/**
446 * rfkill_get_global_sw_state - returns global state for a type
447 * @type: the type to get the global state of
448 *
449 * Returns the current global state for a given wireless
450 * device type.
451 */
452bool rfkill_get_global_sw_state(const enum rfkill_type type)
453{
454 return rfkill_global_states[type].cur;
455}
c64fb016 456#endif
19d337df 457
19d337df
JB
458
459bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked)
460{
1926e260
JPRV
461 unsigned long flags;
462 bool ret, prev;
463
464 BUG_ON(!rfkill);
465
466 spin_lock_irqsave(&rfkill->lock, flags);
467 prev = !!(rfkill->state & RFKILL_BLOCK_HW);
468 if (blocked)
469 rfkill->state |= RFKILL_BLOCK_HW;
470 else
471 rfkill->state &= ~RFKILL_BLOCK_HW;
472 ret = !!(rfkill->state & RFKILL_BLOCK_ANY);
473 spin_unlock_irqrestore(&rfkill->lock, flags);
19d337df 474
1926e260 475 rfkill_led_trigger_event(rfkill);
19d337df
JB
476
477 if (!rfkill->registered)
478 return ret;
479
1926e260 480 if (prev != blocked)
19d337df
JB
481 schedule_work(&rfkill->uevent_work);
482
483 return ret;
484}
485EXPORT_SYMBOL(rfkill_set_hw_state);
486
487static void __rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
488{
489 u32 bit = RFKILL_BLOCK_SW;
490
491 /* if in a ops->set_block right now, use other bit */
492 if (rfkill->state & RFKILL_BLOCK_SW_SETCALL)
493 bit = RFKILL_BLOCK_SW_PREV;
494
495 if (blocked)
496 rfkill->state |= bit;
497 else
498 rfkill->state &= ~bit;
499}
500
501bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
502{
503 unsigned long flags;
504 bool prev, hwblock;
505
506 BUG_ON(!rfkill);
507
508 spin_lock_irqsave(&rfkill->lock, flags);
509 prev = !!(rfkill->state & RFKILL_BLOCK_SW);
510 __rfkill_set_sw_state(rfkill, blocked);
511 hwblock = !!(rfkill->state & RFKILL_BLOCK_HW);
512 blocked = blocked || hwblock;
513 spin_unlock_irqrestore(&rfkill->lock, flags);
514
06d5caf4
AJ
515 if (!rfkill->registered)
516 return blocked;
19d337df 517
06d5caf4
AJ
518 if (prev != blocked && !hwblock)
519 schedule_work(&rfkill->uevent_work);
520
521 rfkill_led_trigger_event(rfkill);
19d337df
JB
522
523 return blocked;
524}
525EXPORT_SYMBOL(rfkill_set_sw_state);
526
06d5caf4
AJ
527void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked)
528{
529 unsigned long flags;
530
531 BUG_ON(!rfkill);
532 BUG_ON(rfkill->registered);
533
534 spin_lock_irqsave(&rfkill->lock, flags);
535 __rfkill_set_sw_state(rfkill, blocked);
536 rfkill->persistent = true;
537 spin_unlock_irqrestore(&rfkill->lock, flags);
538}
539EXPORT_SYMBOL(rfkill_init_sw_state);
540
19d337df
JB
541void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw)
542{
543 unsigned long flags;
544 bool swprev, hwprev;
545
546 BUG_ON(!rfkill);
547
548 spin_lock_irqsave(&rfkill->lock, flags);
549
550 /*
551 * No need to care about prev/setblock ... this is for uevent only
552 * and that will get triggered by rfkill_set_block anyway.
553 */
554 swprev = !!(rfkill->state & RFKILL_BLOCK_SW);
555 hwprev = !!(rfkill->state & RFKILL_BLOCK_HW);
556 __rfkill_set_sw_state(rfkill, sw);
48ab3578
AJ
557 if (hw)
558 rfkill->state |= RFKILL_BLOCK_HW;
559 else
560 rfkill->state &= ~RFKILL_BLOCK_HW;
19d337df
JB
561
562 spin_unlock_irqrestore(&rfkill->lock, flags);
563
b3fa1329
AJ
564 if (!rfkill->registered) {
565 rfkill->persistent = true;
566 } else {
567 if (swprev != sw || hwprev != hw)
568 schedule_work(&rfkill->uevent_work);
19d337df 569
b3fa1329
AJ
570 rfkill_led_trigger_event(rfkill);
571 }
19d337df
JB
572}
573EXPORT_SYMBOL(rfkill_set_states);
574
648b50dd
HK
575static const char * const rfkill_types[] = {
576 NULL, /* RFKILL_TYPE_ALL */
577 "wlan",
578 "bluetooth",
579 "ultrawideband",
580 "wimax",
581 "wwan",
582 "gps",
583 "fm",
584 "nfc",
585};
586
587enum rfkill_type rfkill_find_type(const char *name)
588{
589 int i;
590
591 BUILD_BUG_ON(ARRAY_SIZE(rfkill_types) != NUM_RFKILL_TYPES);
592
593 if (!name)
594 return RFKILL_TYPE_ALL;
595
596 for (i = 1; i < NUM_RFKILL_TYPES; i++)
597 if (!strcmp(name, rfkill_types[i]))
598 return i;
599 return RFKILL_TYPE_ALL;
600}
601EXPORT_SYMBOL(rfkill_find_type);
602
e49df67d
GKH
603static ssize_t name_show(struct device *dev, struct device_attribute *attr,
604 char *buf)
19d337df
JB
605{
606 struct rfkill *rfkill = to_rfkill(dev);
607
608 return sprintf(buf, "%s\n", rfkill->name);
609}
e49df67d 610static DEVICE_ATTR_RO(name);
19d337df 611
e49df67d
GKH
612static ssize_t type_show(struct device *dev, struct device_attribute *attr,
613 char *buf)
19d337df
JB
614{
615 struct rfkill *rfkill = to_rfkill(dev);
616
648b50dd 617 return sprintf(buf, "%s\n", rfkill_types[rfkill->type]);
19d337df 618}
e49df67d 619static DEVICE_ATTR_RO(type);
19d337df 620
e49df67d
GKH
621static ssize_t index_show(struct device *dev, struct device_attribute *attr,
622 char *buf)
c64fb016
JB
623{
624 struct rfkill *rfkill = to_rfkill(dev);
625
626 return sprintf(buf, "%d\n", rfkill->idx);
627}
e49df67d 628static DEVICE_ATTR_RO(index);
c64fb016 629
e49df67d
GKH
630static ssize_t persistent_show(struct device *dev,
631 struct device_attribute *attr, char *buf)
464902e8
AJ
632{
633 struct rfkill *rfkill = to_rfkill(dev);
634
635 return sprintf(buf, "%d\n", rfkill->persistent);
636}
e49df67d 637static DEVICE_ATTR_RO(persistent);
464902e8 638
e49df67d
GKH
639static ssize_t hard_show(struct device *dev, struct device_attribute *attr,
640 char *buf)
6c26361e 641{
642 struct rfkill *rfkill = to_rfkill(dev);
6c26361e 643
819bfecc 644 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_HW) ? 1 : 0 );
6c26361e 645}
e49df67d 646static DEVICE_ATTR_RO(hard);
6c26361e 647
e49df67d
GKH
648static ssize_t soft_show(struct device *dev, struct device_attribute *attr,
649 char *buf)
6c26361e 650{
651 struct rfkill *rfkill = to_rfkill(dev);
6c26361e 652
819bfecc 653 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_SW) ? 1 : 0 );
6c26361e 654}
655
e49df67d
GKH
656static ssize_t soft_store(struct device *dev, struct device_attribute *attr,
657 const char *buf, size_t count)
6c26361e 658{
659 struct rfkill *rfkill = to_rfkill(dev);
660 unsigned long state;
661 int err;
662
663 if (!capable(CAP_NET_ADMIN))
664 return -EPERM;
665
1bac92ca 666 err = kstrtoul(buf, 0, &state);
6c26361e 667 if (err)
668 return err;
669
670 if (state > 1 )
671 return -EINVAL;
672
673 mutex_lock(&rfkill_global_mutex);
674 rfkill_set_block(rfkill, state);
675 mutex_unlock(&rfkill_global_mutex);
676
6f7c962c 677 return count;
6c26361e 678}
e49df67d 679static DEVICE_ATTR_RW(soft);
6c26361e 680
19d337df
JB
681static u8 user_state_from_blocked(unsigned long state)
682{
683 if (state & RFKILL_BLOCK_HW)
684 return RFKILL_USER_STATE_HARD_BLOCKED;
685 if (state & RFKILL_BLOCK_SW)
686 return RFKILL_USER_STATE_SOFT_BLOCKED;
687
688 return RFKILL_USER_STATE_UNBLOCKED;
689}
690
e49df67d
GKH
691static ssize_t state_show(struct device *dev, struct device_attribute *attr,
692 char *buf)
19d337df
JB
693{
694 struct rfkill *rfkill = to_rfkill(dev);
19d337df 695
819bfecc 696 return sprintf(buf, "%d\n", user_state_from_blocked(rfkill->state));
19d337df
JB
697}
698
e49df67d
GKH
699static ssize_t state_store(struct device *dev, struct device_attribute *attr,
700 const char *buf, size_t count)
19d337df 701{
f54c1427
JB
702 struct rfkill *rfkill = to_rfkill(dev);
703 unsigned long state;
704 int err;
705
706 if (!capable(CAP_NET_ADMIN))
707 return -EPERM;
708
1bac92ca 709 err = kstrtoul(buf, 0, &state);
f54c1427
JB
710 if (err)
711 return err;
712
713 if (state != RFKILL_USER_STATE_SOFT_BLOCKED &&
714 state != RFKILL_USER_STATE_UNBLOCKED)
715 return -EINVAL;
716
717 mutex_lock(&rfkill_global_mutex);
718 rfkill_set_block(rfkill, state == RFKILL_USER_STATE_SOFT_BLOCKED);
719 mutex_unlock(&rfkill_global_mutex);
19d337df 720
6f7c962c 721 return count;
19d337df 722}
e49df67d 723static DEVICE_ATTR_RW(state);
19d337df 724
e49df67d
GKH
725static struct attribute *rfkill_dev_attrs[] = {
726 &dev_attr_name.attr,
727 &dev_attr_type.attr,
728 &dev_attr_index.attr,
729 &dev_attr_persistent.attr,
730 &dev_attr_state.attr,
e49df67d
GKH
731 &dev_attr_soft.attr,
732 &dev_attr_hard.attr,
733 NULL,
19d337df 734};
e49df67d 735ATTRIBUTE_GROUPS(rfkill_dev);
19d337df
JB
736
737static void rfkill_release(struct device *dev)
738{
739 struct rfkill *rfkill = to_rfkill(dev);
740
741 kfree(rfkill);
742}
743
744static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
745{
746 struct rfkill *rfkill = to_rfkill(dev);
747 unsigned long flags;
748 u32 state;
749 int error;
750
751 error = add_uevent_var(env, "RFKILL_NAME=%s", rfkill->name);
752 if (error)
753 return error;
754 error = add_uevent_var(env, "RFKILL_TYPE=%s",
648b50dd 755 rfkill_types[rfkill->type]);
19d337df
JB
756 if (error)
757 return error;
758 spin_lock_irqsave(&rfkill->lock, flags);
759 state = rfkill->state;
760 spin_unlock_irqrestore(&rfkill->lock, flags);
761 error = add_uevent_var(env, "RFKILL_STATE=%d",
762 user_state_from_blocked(state));
763 return error;
764}
765
766void rfkill_pause_polling(struct rfkill *rfkill)
767{
768 BUG_ON(!rfkill);
769
770 if (!rfkill->ops->poll)
771 return;
772
dd21dfc6 773 rfkill->polling_paused = true;
19d337df
JB
774 cancel_delayed_work_sync(&rfkill->poll_work);
775}
776EXPORT_SYMBOL(rfkill_pause_polling);
777
778void rfkill_resume_polling(struct rfkill *rfkill)
779{
780 BUG_ON(!rfkill);
781
782 if (!rfkill->ops->poll)
783 return;
784
dd21dfc6
JB
785 rfkill->polling_paused = false;
786
787 if (rfkill->suspended)
788 return;
789
67235cbc
SD
790 queue_delayed_work(system_power_efficient_wq,
791 &rfkill->poll_work, 0);
19d337df
JB
792}
793EXPORT_SYMBOL(rfkill_resume_polling);
794
28f297a7
LPC
795#ifdef CONFIG_PM_SLEEP
796static int rfkill_suspend(struct device *dev)
19d337df
JB
797{
798 struct rfkill *rfkill = to_rfkill(dev);
799
dd21dfc6
JB
800 rfkill->suspended = true;
801 cancel_delayed_work_sync(&rfkill->poll_work);
19d337df 802
19d337df
JB
803 return 0;
804}
805
806static int rfkill_resume(struct device *dev)
807{
808 struct rfkill *rfkill = to_rfkill(dev);
809 bool cur;
810
dd21dfc6
JB
811 rfkill->suspended = false;
812
06d5caf4
AJ
813 if (!rfkill->persistent) {
814 cur = !!(rfkill->state & RFKILL_BLOCK_SW);
815 rfkill_set_block(rfkill, cur);
816 }
19d337df 817
dd21dfc6
JB
818 if (rfkill->ops->poll && !rfkill->polling_paused)
819 queue_delayed_work(system_power_efficient_wq,
820 &rfkill->poll_work, 0);
19d337df
JB
821
822 return 0;
823}
824
28f297a7
LPC
825static SIMPLE_DEV_PM_OPS(rfkill_pm_ops, rfkill_suspend, rfkill_resume);
826#define RFKILL_PM_OPS (&rfkill_pm_ops)
827#else
828#define RFKILL_PM_OPS NULL
829#endif
830
19d337df
JB
831static struct class rfkill_class = {
832 .name = "rfkill",
833 .dev_release = rfkill_release,
e49df67d 834 .dev_groups = rfkill_dev_groups,
19d337df 835 .dev_uevent = rfkill_dev_uevent,
28f297a7 836 .pm = RFKILL_PM_OPS,
19d337df
JB
837};
838
6081162e
JB
839bool rfkill_blocked(struct rfkill *rfkill)
840{
841 unsigned long flags;
842 u32 state;
843
844 spin_lock_irqsave(&rfkill->lock, flags);
845 state = rfkill->state;
846 spin_unlock_irqrestore(&rfkill->lock, flags);
847
848 return !!(state & RFKILL_BLOCK_ANY);
849}
850EXPORT_SYMBOL(rfkill_blocked);
851
19d337df
JB
852
853struct rfkill * __must_check rfkill_alloc(const char *name,
854 struct device *parent,
855 const enum rfkill_type type,
856 const struct rfkill_ops *ops,
857 void *ops_data)
858{
859 struct rfkill *rfkill;
860 struct device *dev;
861
862 if (WARN_ON(!ops))
863 return NULL;
864
865 if (WARN_ON(!ops->set_block))
866 return NULL;
867
868 if (WARN_ON(!name))
869 return NULL;
870
c64fb016 871 if (WARN_ON(type == RFKILL_TYPE_ALL || type >= NUM_RFKILL_TYPES))
19d337df
JB
872 return NULL;
873
b7bb1100 874 rfkill = kzalloc(sizeof(*rfkill) + strlen(name) + 1, GFP_KERNEL);
19d337df
JB
875 if (!rfkill)
876 return NULL;
877
878 spin_lock_init(&rfkill->lock);
879 INIT_LIST_HEAD(&rfkill->node);
880 rfkill->type = type;
b7bb1100 881 strcpy(rfkill->name, name);
19d337df
JB
882 rfkill->ops = ops;
883 rfkill->data = ops_data;
884
885 dev = &rfkill->dev;
886 dev->class = &rfkill_class;
887 dev->parent = parent;
888 device_initialize(dev);
889
890 return rfkill;
891}
892EXPORT_SYMBOL(rfkill_alloc);
893
894static void rfkill_poll(struct work_struct *work)
895{
896 struct rfkill *rfkill;
897
898 rfkill = container_of(work, struct rfkill, poll_work.work);
899
900 /*
901 * Poll hardware state -- driver will use one of the
902 * rfkill_set{,_hw,_sw}_state functions and use its
903 * return value to update the current status.
904 */
905 rfkill->ops->poll(rfkill, rfkill->data);
906
67235cbc
SD
907 queue_delayed_work(system_power_efficient_wq,
908 &rfkill->poll_work,
19d337df
JB
909 round_jiffies_relative(POLL_INTERVAL));
910}
911
912static void rfkill_uevent_work(struct work_struct *work)
913{
914 struct rfkill *rfkill;
915
916 rfkill = container_of(work, struct rfkill, uevent_work);
917
c64fb016
JB
918 mutex_lock(&rfkill_global_mutex);
919 rfkill_event(rfkill);
920 mutex_unlock(&rfkill_global_mutex);
19d337df
JB
921}
922
923static void rfkill_sync_work(struct work_struct *work)
924{
925 struct rfkill *rfkill;
926 bool cur;
927
928 rfkill = container_of(work, struct rfkill, sync_work);
929
930 mutex_lock(&rfkill_global_mutex);
931 cur = rfkill_global_states[rfkill->type].cur;
932 rfkill_set_block(rfkill, cur);
933 mutex_unlock(&rfkill_global_mutex);
934}
935
936int __must_check rfkill_register(struct rfkill *rfkill)
937{
938 static unsigned long rfkill_no;
939 struct device *dev = &rfkill->dev;
940 int error;
941
942 BUG_ON(!rfkill);
943
944 mutex_lock(&rfkill_global_mutex);
945
946 if (rfkill->registered) {
947 error = -EALREADY;
948 goto unlock;
949 }
950
c64fb016 951 rfkill->idx = rfkill_no;
19d337df
JB
952 dev_set_name(dev, "rfkill%lu", rfkill_no);
953 rfkill_no++;
954
19d337df
JB
955 list_add_tail(&rfkill->node, &rfkill_list);
956
957 error = device_add(dev);
958 if (error)
959 goto remove;
960
961 error = rfkill_led_trigger_register(rfkill);
962 if (error)
963 goto devdel;
964
965 rfkill->registered = true;
966
2ec2c68c 967 INIT_DELAYED_WORK(&rfkill->poll_work, rfkill_poll);
19d337df 968 INIT_WORK(&rfkill->uevent_work, rfkill_uevent_work);
19d337df 969 INIT_WORK(&rfkill->sync_work, rfkill_sync_work);
2ec2c68c
JB
970
971 if (rfkill->ops->poll)
67235cbc
SD
972 queue_delayed_work(system_power_efficient_wq,
973 &rfkill->poll_work,
2ec2c68c 974 round_jiffies_relative(POLL_INTERVAL));
b3fa1329
AJ
975
976 if (!rfkill->persistent || rfkill_epo_lock_active) {
977 schedule_work(&rfkill->sync_work);
978 } else {
979#ifdef CONFIG_RFKILL_INPUT
980 bool soft_blocked = !!(rfkill->state & RFKILL_BLOCK_SW);
981
982 if (!atomic_read(&rfkill_input_disabled))
983 __rfkill_switch_all(rfkill->type, soft_blocked);
984#endif
985 }
2ec2c68c 986
c64fb016 987 rfkill_send_events(rfkill, RFKILL_OP_ADD);
19d337df
JB
988
989 mutex_unlock(&rfkill_global_mutex);
990 return 0;
991
992 devdel:
993 device_del(&rfkill->dev);
994 remove:
995 list_del_init(&rfkill->node);
996 unlock:
997 mutex_unlock(&rfkill_global_mutex);
998 return error;
999}
1000EXPORT_SYMBOL(rfkill_register);
1001
1002void rfkill_unregister(struct rfkill *rfkill)
1003{
1004 BUG_ON(!rfkill);
1005
1006 if (rfkill->ops->poll)
1007 cancel_delayed_work_sync(&rfkill->poll_work);
1008
1009 cancel_work_sync(&rfkill->uevent_work);
1010 cancel_work_sync(&rfkill->sync_work);
1011
1012 rfkill->registered = false;
1013
1014 device_del(&rfkill->dev);
1015
1016 mutex_lock(&rfkill_global_mutex);
c64fb016 1017 rfkill_send_events(rfkill, RFKILL_OP_DEL);
19d337df
JB
1018 list_del_init(&rfkill->node);
1019 mutex_unlock(&rfkill_global_mutex);
1020
1021 rfkill_led_trigger_unregister(rfkill);
1022}
1023EXPORT_SYMBOL(rfkill_unregister);
1024
1025void rfkill_destroy(struct rfkill *rfkill)
1026{
1027 if (rfkill)
1028 put_device(&rfkill->dev);
1029}
1030EXPORT_SYMBOL(rfkill_destroy);
1031
c64fb016
JB
1032static int rfkill_fop_open(struct inode *inode, struct file *file)
1033{
1034 struct rfkill_data *data;
1035 struct rfkill *rfkill;
1036 struct rfkill_int_event *ev, *tmp;
1037
1038 data = kzalloc(sizeof(*data), GFP_KERNEL);
1039 if (!data)
1040 return -ENOMEM;
1041
1042 INIT_LIST_HEAD(&data->events);
1043 mutex_init(&data->mtx);
1044 init_waitqueue_head(&data->read_wait);
1045
1046 mutex_lock(&rfkill_global_mutex);
1047 mutex_lock(&data->mtx);
1048 /*
1049 * start getting events from elsewhere but hold mtx to get
1050 * startup events added first
1051 */
c64fb016
JB
1052
1053 list_for_each_entry(rfkill, &rfkill_list, node) {
1054 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1055 if (!ev)
1056 goto free;
1057 rfkill_fill_event(&ev->ev, rfkill, RFKILL_OP_ADD);
1058 list_add_tail(&ev->list, &data->events);
1059 }
bd2281b8 1060 list_add(&data->list, &rfkill_fds);
c64fb016
JB
1061 mutex_unlock(&data->mtx);
1062 mutex_unlock(&rfkill_global_mutex);
1063
1064 file->private_data = data;
1065
1066 return nonseekable_open(inode, file);
1067
1068 free:
1069 mutex_unlock(&data->mtx);
1070 mutex_unlock(&rfkill_global_mutex);
1071 mutex_destroy(&data->mtx);
1072 list_for_each_entry_safe(ev, tmp, &data->events, list)
1073 kfree(ev);
1074 kfree(data);
1075 return -ENOMEM;
1076}
1077
1078static unsigned int rfkill_fop_poll(struct file *file, poll_table *wait)
1079{
1080 struct rfkill_data *data = file->private_data;
1081 unsigned int res = POLLOUT | POLLWRNORM;
1082
1083 poll_wait(file, &data->read_wait, wait);
1084
1085 mutex_lock(&data->mtx);
1086 if (!list_empty(&data->events))
1087 res = POLLIN | POLLRDNORM;
1088 mutex_unlock(&data->mtx);
1089
1090 return res;
1091}
1092
1093static bool rfkill_readable(struct rfkill_data *data)
1094{
1095 bool r;
1096
1097 mutex_lock(&data->mtx);
1098 r = !list_empty(&data->events);
1099 mutex_unlock(&data->mtx);
1100
1101 return r;
1102}
1103
1104static ssize_t rfkill_fop_read(struct file *file, char __user *buf,
1105 size_t count, loff_t *pos)
1106{
1107 struct rfkill_data *data = file->private_data;
1108 struct rfkill_int_event *ev;
1109 unsigned long sz;
1110 int ret;
1111
1112 mutex_lock(&data->mtx);
1113
1114 while (list_empty(&data->events)) {
1115 if (file->f_flags & O_NONBLOCK) {
1116 ret = -EAGAIN;
1117 goto out;
1118 }
1119 mutex_unlock(&data->mtx);
1120 ret = wait_event_interruptible(data->read_wait,
1121 rfkill_readable(data));
1122 mutex_lock(&data->mtx);
1123
1124 if (ret)
1125 goto out;
1126 }
1127
1128 ev = list_first_entry(&data->events, struct rfkill_int_event,
1129 list);
1130
1131 sz = min_t(unsigned long, sizeof(ev->ev), count);
1132 ret = sz;
1133 if (copy_to_user(buf, &ev->ev, sz))
1134 ret = -EFAULT;
1135
1136 list_del(&ev->list);
1137 kfree(ev);
1138 out:
1139 mutex_unlock(&data->mtx);
1140 return ret;
1141}
1142
1143static ssize_t rfkill_fop_write(struct file *file, const char __user *buf,
1144 size_t count, loff_t *pos)
1145{
1146 struct rfkill *rfkill;
1147 struct rfkill_event ev;
1148
1149 /* we don't need the 'hard' variable but accept it */
1be491fc 1150 if (count < RFKILL_EVENT_SIZE_V1 - 1)
c64fb016
JB
1151 return -EINVAL;
1152
1be491fc
JB
1153 /*
1154 * Copy as much data as we can accept into our 'ev' buffer,
1155 * but tell userspace how much we've copied so it can determine
1156 * our API version even in a write() call, if it cares.
1157 */
1158 count = min(count, sizeof(ev));
1159 if (copy_from_user(&ev, buf, count))
c64fb016
JB
1160 return -EFAULT;
1161
1162 if (ev.op != RFKILL_OP_CHANGE && ev.op != RFKILL_OP_CHANGE_ALL)
1163 return -EINVAL;
1164
1165 if (ev.type >= NUM_RFKILL_TYPES)
1166 return -EINVAL;
1167
1168 mutex_lock(&rfkill_global_mutex);
1169
1170 if (ev.op == RFKILL_OP_CHANGE_ALL) {
1171 if (ev.type == RFKILL_TYPE_ALL) {
1172 enum rfkill_type i;
1173 for (i = 0; i < NUM_RFKILL_TYPES; i++)
1174 rfkill_global_states[i].cur = ev.soft;
1175 } else {
1176 rfkill_global_states[ev.type].cur = ev.soft;
1177 }
1178 }
1179
1180 list_for_each_entry(rfkill, &rfkill_list, node) {
1181 if (rfkill->idx != ev.idx && ev.op != RFKILL_OP_CHANGE_ALL)
1182 continue;
1183
1184 if (rfkill->type != ev.type && ev.type != RFKILL_TYPE_ALL)
1185 continue;
1186
1187 rfkill_set_block(rfkill, ev.soft);
1188 }
1189 mutex_unlock(&rfkill_global_mutex);
1190
1191 return count;
1192}
1193
1194static int rfkill_fop_release(struct inode *inode, struct file *file)
1195{
1196 struct rfkill_data *data = file->private_data;
1197 struct rfkill_int_event *ev, *tmp;
1198
1199 mutex_lock(&rfkill_global_mutex);
1200 list_del(&data->list);
1201 mutex_unlock(&rfkill_global_mutex);
1202
1203 mutex_destroy(&data->mtx);
1204 list_for_each_entry_safe(ev, tmp, &data->events, list)
1205 kfree(ev);
1206
1207#ifdef CONFIG_RFKILL_INPUT
1208 if (data->input_handler)
207ee162
JB
1209 if (atomic_dec_return(&rfkill_input_disabled) == 0)
1210 printk(KERN_DEBUG "rfkill: input handler enabled\n");
c64fb016
JB
1211#endif
1212
1213 kfree(data);
1214
1215 return 0;
1216}
1217
1218#ifdef CONFIG_RFKILL_INPUT
1219static long rfkill_fop_ioctl(struct file *file, unsigned int cmd,
1220 unsigned long arg)
1221{
1222 struct rfkill_data *data = file->private_data;
1223
1224 if (_IOC_TYPE(cmd) != RFKILL_IOC_MAGIC)
1225 return -ENOSYS;
1226
1227 if (_IOC_NR(cmd) != RFKILL_IOC_NOINPUT)
1228 return -ENOSYS;
1229
1230 mutex_lock(&data->mtx);
1231
1232 if (!data->input_handler) {
207ee162
JB
1233 if (atomic_inc_return(&rfkill_input_disabled) == 1)
1234 printk(KERN_DEBUG "rfkill: input handler disabled\n");
c64fb016
JB
1235 data->input_handler = true;
1236 }
1237
1238 mutex_unlock(&data->mtx);
1239
1240 return 0;
1241}
1242#endif
1243
1244static const struct file_operations rfkill_fops = {
45ba564d 1245 .owner = THIS_MODULE,
c64fb016
JB
1246 .open = rfkill_fop_open,
1247 .read = rfkill_fop_read,
1248 .write = rfkill_fop_write,
1249 .poll = rfkill_fop_poll,
1250 .release = rfkill_fop_release,
1251#ifdef CONFIG_RFKILL_INPUT
1252 .unlocked_ioctl = rfkill_fop_ioctl,
1253 .compat_ioctl = rfkill_fop_ioctl,
1254#endif
6038f373 1255 .llseek = no_llseek,
c64fb016
JB
1256};
1257
1258static struct miscdevice rfkill_miscdev = {
1259 .name = "rfkill",
1260 .fops = &rfkill_fops,
1261 .minor = MISC_DYNAMIC_MINOR,
1262};
19d337df
JB
1263
1264static int __init rfkill_init(void)
1265{
1266 int error;
1267 int i;
1268
1269 for (i = 0; i < NUM_RFKILL_TYPES; i++)
b3fa1329 1270 rfkill_global_states[i].cur = !rfkill_default_state;
19d337df
JB
1271
1272 error = class_register(&rfkill_class);
1273 if (error)
1274 goto out;
1275
c64fb016
JB
1276 error = misc_register(&rfkill_miscdev);
1277 if (error) {
1278 class_unregister(&rfkill_class);
1279 goto out;
1280 }
1281
19d337df
JB
1282#ifdef CONFIG_RFKILL_INPUT
1283 error = rfkill_handler_init();
c64fb016
JB
1284 if (error) {
1285 misc_deregister(&rfkill_miscdev);
19d337df 1286 class_unregister(&rfkill_class);
c64fb016
JB
1287 goto out;
1288 }
19d337df
JB
1289#endif
1290
1291 out:
1292 return error;
1293}
1294subsys_initcall(rfkill_init);
1295
1296static void __exit rfkill_exit(void)
1297{
1298#ifdef CONFIG_RFKILL_INPUT
1299 rfkill_handler_exit();
1300#endif
c64fb016 1301 misc_deregister(&rfkill_miscdev);
19d337df
JB
1302 class_unregister(&rfkill_class);
1303}
1304module_exit(rfkill_exit);