Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[firewire-audio.git] / net / rfkill / rfkill-input.c
blobbfdade72e066f65c52a3bd82a70807b51de6a3f0
1 /*
2 * Input layer to RF Kill interface connector
4 * Copyright (c) 2007 Dmitry Torokhov
5 */
7 /*
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>
19 #include <linux/sched.h>
21 #include "rfkill-input.h"
23 MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
24 MODULE_DESCRIPTION("Input layer to RF switch connector");
25 MODULE_LICENSE("GPL");
27 struct rfkill_task {
28 struct work_struct work;
29 enum rfkill_type type;
30 struct mutex mutex; /* ensures that task is serialized */
31 spinlock_t lock; /* for accessing last and desired state */
32 unsigned long last; /* last schedule */
33 enum rfkill_state desired_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);
40 mutex_lock(&task->mutex);
42 rfkill_switch_all(task->type, task->desired_state);
44 mutex_unlock(&task->mutex);
47 static void rfkill_task_epo_handler(struct work_struct *work)
49 rfkill_epo();
52 static DECLARE_WORK(epo_work, rfkill_task_epo_handler);
54 static void rfkill_schedule_epo(void)
56 schedule_work(&epo_work);
59 static void rfkill_schedule_set(struct rfkill_task *task,
60 enum rfkill_state desired_state)
62 unsigned long flags;
64 if (unlikely(work_pending(&epo_work)))
65 return;
67 spin_lock_irqsave(&task->lock, flags);
69 if (time_after(jiffies, task->last + msecs_to_jiffies(200))) {
70 task->desired_state = desired_state;
71 task->last = jiffies;
72 schedule_work(&task->work);
75 spin_unlock_irqrestore(&task->lock, flags);
78 static void rfkill_schedule_toggle(struct rfkill_task *task)
80 unsigned long flags;
82 if (unlikely(work_pending(&epo_work)))
83 return;
85 spin_lock_irqsave(&task->lock, flags);
87 if (time_after(jiffies, task->last + msecs_to_jiffies(200))) {
88 task->desired_state =
89 rfkill_state_complement(task->desired_state);
90 task->last = jiffies;
91 schedule_work(&task->work);
94 spin_unlock_irqrestore(&task->lock, flags);
97 #define DEFINE_RFKILL_TASK(n, t) \
98 struct rfkill_task n = { \
99 .work = __WORK_INITIALIZER(n.work, \
100 rfkill_task_handler), \
101 .type = t, \
102 .mutex = __MUTEX_INITIALIZER(n.mutex), \
103 .lock = __SPIN_LOCK_UNLOCKED(n.lock), \
104 .desired_state = RFKILL_STATE_UNBLOCKED, \
107 static DEFINE_RFKILL_TASK(rfkill_wlan, RFKILL_TYPE_WLAN);
108 static DEFINE_RFKILL_TASK(rfkill_bt, RFKILL_TYPE_BLUETOOTH);
109 static DEFINE_RFKILL_TASK(rfkill_uwb, RFKILL_TYPE_UWB);
110 static DEFINE_RFKILL_TASK(rfkill_wimax, RFKILL_TYPE_WIMAX);
111 static DEFINE_RFKILL_TASK(rfkill_wwan, RFKILL_TYPE_WWAN);
113 static void rfkill_schedule_evsw_rfkillall(int state)
115 /* EVERY radio type. state != 0 means radios ON */
116 /* handle EPO (emergency power off) through shortcut */
117 if (state) {
118 rfkill_schedule_set(&rfkill_wwan,
119 RFKILL_STATE_UNBLOCKED);
120 rfkill_schedule_set(&rfkill_wimax,
121 RFKILL_STATE_UNBLOCKED);
122 rfkill_schedule_set(&rfkill_uwb,
123 RFKILL_STATE_UNBLOCKED);
124 rfkill_schedule_set(&rfkill_bt,
125 RFKILL_STATE_UNBLOCKED);
126 rfkill_schedule_set(&rfkill_wlan,
127 RFKILL_STATE_UNBLOCKED);
128 } else
129 rfkill_schedule_epo();
132 static void rfkill_event(struct input_handle *handle, unsigned int type,
133 unsigned int code, int data)
135 if (type == EV_KEY && data == 1) {
136 switch (code) {
137 case KEY_WLAN:
138 rfkill_schedule_toggle(&rfkill_wlan);
139 break;
140 case KEY_BLUETOOTH:
141 rfkill_schedule_toggle(&rfkill_bt);
142 break;
143 case KEY_UWB:
144 rfkill_schedule_toggle(&rfkill_uwb);
145 break;
146 case KEY_WIMAX:
147 rfkill_schedule_toggle(&rfkill_wimax);
148 break;
149 default:
150 break;
152 } else if (type == EV_SW) {
153 switch (code) {
154 case SW_RFKILL_ALL:
155 rfkill_schedule_evsw_rfkillall(data);
156 break;
157 default:
158 break;
163 static int rfkill_connect(struct input_handler *handler, struct input_dev *dev,
164 const struct input_device_id *id)
166 struct input_handle *handle;
167 int error;
169 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
170 if (!handle)
171 return -ENOMEM;
173 handle->dev = dev;
174 handle->handler = handler;
175 handle->name = "rfkill";
177 /* causes rfkill_start() to be called */
178 error = input_register_handle(handle);
179 if (error)
180 goto err_free_handle;
182 error = input_open_device(handle);
183 if (error)
184 goto err_unregister_handle;
186 return 0;
188 err_unregister_handle:
189 input_unregister_handle(handle);
190 err_free_handle:
191 kfree(handle);
192 return error;
195 static void rfkill_start(struct input_handle *handle)
197 /* Take event_lock to guard against configuration changes, we
198 * should be able to deal with concurrency with rfkill_event()
199 * just fine (which event_lock will also avoid). */
200 spin_lock_irq(&handle->dev->event_lock);
202 if (test_bit(EV_SW, handle->dev->evbit)) {
203 if (test_bit(SW_RFKILL_ALL, handle->dev->swbit))
204 rfkill_schedule_evsw_rfkillall(test_bit(SW_RFKILL_ALL,
205 handle->dev->sw));
206 /* add resync for further EV_SW events here */
209 spin_unlock_irq(&handle->dev->event_lock);
212 static void rfkill_disconnect(struct input_handle *handle)
214 input_close_device(handle);
215 input_unregister_handle(handle);
216 kfree(handle);
219 static const struct input_device_id rfkill_ids[] = {
221 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
222 .evbit = { BIT_MASK(EV_KEY) },
223 .keybit = { [BIT_WORD(KEY_WLAN)] = BIT_MASK(KEY_WLAN) },
226 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
227 .evbit = { BIT_MASK(EV_KEY) },
228 .keybit = { [BIT_WORD(KEY_BLUETOOTH)] = BIT_MASK(KEY_BLUETOOTH) },
231 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
232 .evbit = { BIT_MASK(EV_KEY) },
233 .keybit = { [BIT_WORD(KEY_UWB)] = BIT_MASK(KEY_UWB) },
236 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
237 .evbit = { BIT_MASK(EV_KEY) },
238 .keybit = { [BIT_WORD(KEY_WIMAX)] = BIT_MASK(KEY_WIMAX) },
241 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_SWBIT,
242 .evbit = { BIT(EV_SW) },
243 .swbit = { [BIT_WORD(SW_RFKILL_ALL)] = BIT_MASK(SW_RFKILL_ALL) },
248 static struct input_handler rfkill_handler = {
249 .event = rfkill_event,
250 .connect = rfkill_connect,
251 .disconnect = rfkill_disconnect,
252 .start = rfkill_start,
253 .name = "rfkill",
254 .id_table = rfkill_ids,
257 static int __init rfkill_handler_init(void)
259 unsigned long last_run = jiffies - msecs_to_jiffies(500);
260 rfkill_wlan.last = last_run;
261 rfkill_bt.last = last_run;
262 rfkill_uwb.last = last_run;
263 rfkill_wimax.last = last_run;
264 return input_register_handler(&rfkill_handler);
267 static void __exit rfkill_handler_exit(void)
269 input_unregister_handler(&rfkill_handler);
270 flush_scheduled_work();
273 module_init(rfkill_handler_init);
274 module_exit(rfkill_handler_exit);