2 * Input layer to RF Kill interface connector
4 * Copyright (c) 2007 Dmitry Torokhov
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/input.h>
15 #include <linux/slab.h>
16 #include <linux/workqueue.h>
17 #include <linux/init.h>
18 #include <linux/rfkill.h>
20 #include "rfkill-input.h"
22 MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
23 MODULE_DESCRIPTION("Input layer to RF switch connector");
24 MODULE_LICENSE("GPL");
27 struct work_struct work
;
28 enum rfkill_type type
;
29 struct mutex mutex
; /* ensures that task is serialized */
30 spinlock_t lock
; /* for accessing last and desired state */
31 unsigned long last
; /* last schedule */
32 enum rfkill_state desired_state
; /* on/off */
33 enum rfkill_state current_state
; /* on/off */
36 static void rfkill_task_handler(struct work_struct
*work
)
38 struct rfkill_task
*task
= container_of(work
, struct rfkill_task
, work
);
39 enum rfkill_state state
;
41 mutex_lock(&task
->mutex
);
44 * Use temp variable to fetch desired state to keep it
45 * consistent even if rfkill_schedule_toggle() runs in
46 * another thread or interrupts us.
48 state
= task
->desired_state
;
50 if (state
!= task
->current_state
) {
51 rfkill_switch_all(task
->type
, state
);
52 task
->current_state
= state
;
55 mutex_unlock(&task
->mutex
);
58 static void rfkill_schedule_toggle(struct rfkill_task
*task
)
62 spin_lock_irqsave(&task
->lock
, flags
);
64 if (time_after(jiffies
, task
->last
+ msecs_to_jiffies(200))) {
65 task
->desired_state
= !task
->desired_state
;
67 schedule_work(&task
->work
);
70 spin_unlock_irqrestore(&task
->lock
, flags
);
73 #define DEFINE_RFKILL_TASK(n, t) \
74 struct rfkill_task n = { \
75 .work = __WORK_INITIALIZER(n.work, \
76 rfkill_task_handler), \
78 .mutex = __MUTEX_INITIALIZER(n.mutex), \
79 .lock = __SPIN_LOCK_UNLOCKED(n.lock), \
80 .desired_state = RFKILL_STATE_ON, \
81 .current_state = RFKILL_STATE_ON, \
84 static DEFINE_RFKILL_TASK(rfkill_wlan
, RFKILL_TYPE_WLAN
);
85 static DEFINE_RFKILL_TASK(rfkill_bt
, RFKILL_TYPE_BLUETOOTH
);
86 static DEFINE_RFKILL_TASK(rfkill_uwb
, RFKILL_TYPE_UWB
);
88 static void rfkill_event(struct input_handle
*handle
, unsigned int type
,
89 unsigned int code
, int down
)
91 if (type
== EV_KEY
&& down
== 1) {
94 rfkill_schedule_toggle(&rfkill_wlan
);
97 rfkill_schedule_toggle(&rfkill_bt
);
100 rfkill_schedule_toggle(&rfkill_uwb
);
108 static int rfkill_connect(struct input_handler
*handler
, struct input_dev
*dev
,
109 const struct input_device_id
*id
)
111 struct input_handle
*handle
;
114 handle
= kzalloc(sizeof(struct input_handle
), GFP_KERNEL
);
119 handle
->handler
= handler
;
120 handle
->name
= "rfkill";
122 error
= input_register_handle(handle
);
124 goto err_free_handle
;
126 error
= input_open_device(handle
);
128 goto err_unregister_handle
;
132 err_unregister_handle
:
133 input_unregister_handle(handle
);
139 static void rfkill_disconnect(struct input_handle
*handle
)
141 input_close_device(handle
);
142 input_unregister_handle(handle
);
146 static const struct input_device_id rfkill_ids
[] = {
148 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
,
149 .evbit
= { BIT(EV_KEY
) },
150 .keybit
= { [LONG(KEY_WLAN
)] = BIT(KEY_WLAN
) },
153 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
,
154 .evbit
= { BIT(EV_KEY
) },
155 .keybit
= { [LONG(KEY_BLUETOOTH
)] = BIT(KEY_BLUETOOTH
) },
158 .flags
= INPUT_DEVICE_ID_MATCH_EVBIT
| INPUT_DEVICE_ID_MATCH_KEYBIT
,
159 .evbit
= { BIT(EV_KEY
) },
160 .keybit
= { [LONG(KEY_UWB
)] = BIT(KEY_UWB
) },
165 static struct input_handler rfkill_handler
= {
166 .event
= rfkill_event
,
167 .connect
= rfkill_connect
,
168 .disconnect
= rfkill_disconnect
,
170 .id_table
= rfkill_ids
,
173 static int __init
rfkill_handler_init(void)
175 return input_register_handler(&rfkill_handler
);
178 static void __exit
rfkill_handler_exit(void)
180 input_unregister_handler(&rfkill_handler
);
181 flush_scheduled_work();
184 module_init(rfkill_handler_init
);
185 module_exit(rfkill_handler_exit
);