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);
87 static DEFINE_RFKILL_TASK(rfkill_wimax, RFKILL_TYPE_WIMAX);
89 static void rfkill_event(struct input_handle *handle, unsigned int type,
90 unsigned int code, int down)
92 if (type == EV_KEY && down == 1) {
95 rfkill_schedule_toggle(&rfkill_wlan);
98 rfkill_schedule_toggle(&rfkill_bt);
101 rfkill_schedule_toggle(&rfkill_uwb);
104 rfkill_schedule_toggle(&rfkill_wimax);
112 static int rfkill_connect(struct input_handler *handler, struct input_dev *dev,
113 const struct input_device_id *id)
115 struct input_handle *handle;
118 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
123 handle->handler = handler;
124 handle->name = "rfkill";
126 error = input_register_handle(handle);
128 goto err_free_handle;
130 error = input_open_device(handle);
132 goto err_unregister_handle;
136 err_unregister_handle:
137 input_unregister_handle(handle);
143 static void rfkill_disconnect(struct input_handle *handle)
145 input_close_device(handle);
146 input_unregister_handle(handle);
150 static const struct input_device_id rfkill_ids[] = {
152 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
153 .evbit = { BIT_MASK(EV_KEY) },
154 .keybit = { [BIT_WORD(KEY_WLAN)] = BIT_MASK(KEY_WLAN) },
157 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
158 .evbit = { BIT_MASK(EV_KEY) },
159 .keybit = { [BIT_WORD(KEY_BLUETOOTH)] = BIT_MASK(KEY_BLUETOOTH) },
162 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
163 .evbit = { BIT_MASK(EV_KEY) },
164 .keybit = { [BIT_WORD(KEY_UWB)] = BIT_MASK(KEY_UWB) },
167 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
168 .evbit = { BIT_MASK(EV_KEY) },
169 .keybit = { [BIT_WORD(KEY_WIMAX)] = BIT_MASK(KEY_WIMAX) },
174 static struct input_handler rfkill_handler = {
175 .event = rfkill_event,
176 .connect = rfkill_connect,
177 .disconnect = rfkill_disconnect,
179 .id_table = rfkill_ids,
182 static int __init rfkill_handler_init(void)
184 return input_register_handler(&rfkill_handler);
187 static void __exit rfkill_handler_exit(void)
189 input_unregister_handler(&rfkill_handler);
190 flush_scheduled_work();
193 module_init(rfkill_handler_init);
194 module_exit(rfkill_handler_exit);