blob: 9d6c9255bf2cfe9ebd8dfc125a37091d4bb4cda0 [file] [log] [blame]
Ivo van Doorncf4328c2007-05-07 00:34:20 -07001/*
2 * Input layer to RF Kill interface connector
3 *
4 * Copyright (c) 2007 Dmitry Torokhov
5 */
6
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.
11 */
12
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
Ivo van Doornfe242cf2007-09-27 14:57:05 -070020#include "rfkill-input.h"
21
Ivo van Doorncf4328c2007-05-07 00:34:20 -070022MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
23MODULE_DESCRIPTION("Input layer to RF switch connector");
24MODULE_LICENSE("GPL");
25
26struct rfkill_task {
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 */
34};
35
36static void rfkill_task_handler(struct work_struct *work)
37{
38 struct rfkill_task *task = container_of(work, struct rfkill_task, work);
39 enum rfkill_state state;
40
41 mutex_lock(&task->mutex);
42
43 /*
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.
47 */
48 state = task->desired_state;
49
50 if (state != task->current_state) {
51 rfkill_switch_all(task->type, state);
52 task->current_state = state;
53 }
54
55 mutex_unlock(&task->mutex);
56}
57
Henrique de Moraes Holschuh28f089c2008-06-23 17:22:58 -030058static void rfkill_schedule_set(struct rfkill_task *task,
59 enum rfkill_state desired_state)
60{
61 unsigned long flags;
62
63 spin_lock_irqsave(&task->lock, flags);
64
65 if (time_after(jiffies, task->last + msecs_to_jiffies(200))) {
66 task->desired_state = desired_state;
67 task->last = jiffies;
68 schedule_work(&task->work);
69 }
70
71 spin_unlock_irqrestore(&task->lock, flags);
72}
73
Ivo van Doorncf4328c2007-05-07 00:34:20 -070074static void rfkill_schedule_toggle(struct rfkill_task *task)
75{
Ingo Molnare6c91162007-07-14 18:50:15 -070076 unsigned long flags;
Ivo van Doorncf4328c2007-05-07 00:34:20 -070077
78 spin_lock_irqsave(&task->lock, flags);
79
80 if (time_after(jiffies, task->last + msecs_to_jiffies(200))) {
81 task->desired_state = !task->desired_state;
82 task->last = jiffies;
83 schedule_work(&task->work);
84 }
85
86 spin_unlock_irqrestore(&task->lock, flags);
87}
88
89#define DEFINE_RFKILL_TASK(n, t) \
90 struct rfkill_task n = { \
91 .work = __WORK_INITIALIZER(n.work, \
92 rfkill_task_handler), \
93 .type = t, \
94 .mutex = __MUTEX_INITIALIZER(n.mutex), \
95 .lock = __SPIN_LOCK_UNLOCKED(n.lock), \
96 .desired_state = RFKILL_STATE_ON, \
97 .current_state = RFKILL_STATE_ON, \
98 }
99
100static DEFINE_RFKILL_TASK(rfkill_wlan, RFKILL_TYPE_WLAN);
101static DEFINE_RFKILL_TASK(rfkill_bt, RFKILL_TYPE_BLUETOOTH);
Ivo van Doorne06654862007-09-13 09:21:31 +0200102static DEFINE_RFKILL_TASK(rfkill_uwb, RFKILL_TYPE_UWB);
Iñaky Pérez-González303d9bf2008-01-23 13:40:27 -0800103static DEFINE_RFKILL_TASK(rfkill_wimax, RFKILL_TYPE_WIMAX);
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700104
105static void rfkill_event(struct input_handle *handle, unsigned int type,
Henrique de Moraes Holschuh28f089c2008-06-23 17:22:58 -0300106 unsigned int code, int data)
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700107{
Henrique de Moraes Holschuh28f089c2008-06-23 17:22:58 -0300108 if (type == EV_KEY && data == 1) {
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700109 switch (code) {
110 case KEY_WLAN:
111 rfkill_schedule_toggle(&rfkill_wlan);
112 break;
113 case KEY_BLUETOOTH:
114 rfkill_schedule_toggle(&rfkill_bt);
115 break;
Ivo van Doorne06654862007-09-13 09:21:31 +0200116 case KEY_UWB:
117 rfkill_schedule_toggle(&rfkill_uwb);
118 break;
Iñaky Pérez-González303d9bf2008-01-23 13:40:27 -0800119 case KEY_WIMAX:
120 rfkill_schedule_toggle(&rfkill_wimax);
121 break;
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700122 default:
123 break;
124 }
Henrique de Moraes Holschuh28f089c2008-06-23 17:22:58 -0300125 } else if (type == EV_SW) {
126 switch (code) {
127 case SW_RFKILL_ALL:
128 /* EVERY radio type. data != 0 means radios ON */
129 rfkill_schedule_set(&rfkill_wimax,
130 (data)? RFKILL_STATE_ON:
131 RFKILL_STATE_OFF);
132 rfkill_schedule_set(&rfkill_uwb,
133 (data)? RFKILL_STATE_ON:
134 RFKILL_STATE_OFF);
135 rfkill_schedule_set(&rfkill_bt,
136 (data)? RFKILL_STATE_ON:
137 RFKILL_STATE_OFF);
138 rfkill_schedule_set(&rfkill_wlan,
139 (data)? RFKILL_STATE_ON:
140 RFKILL_STATE_OFF);
141 break;
142 default:
143 break;
144 }
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700145 }
146}
147
148static int rfkill_connect(struct input_handler *handler, struct input_dev *dev,
149 const struct input_device_id *id)
150{
151 struct input_handle *handle;
152 int error;
153
154 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
155 if (!handle)
156 return -ENOMEM;
157
158 handle->dev = dev;
159 handle->handler = handler;
160 handle->name = "rfkill";
161
162 error = input_register_handle(handle);
163 if (error)
164 goto err_free_handle;
165
166 error = input_open_device(handle);
167 if (error)
168 goto err_unregister_handle;
169
170 return 0;
171
172 err_unregister_handle:
173 input_unregister_handle(handle);
174 err_free_handle:
175 kfree(handle);
176 return error;
177}
178
179static void rfkill_disconnect(struct input_handle *handle)
180{
181 input_close_device(handle);
182 input_unregister_handle(handle);
183 kfree(handle);
184}
185
186static const struct input_device_id rfkill_ids[] = {
187 {
188 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700189 .evbit = { BIT_MASK(EV_KEY) },
190 .keybit = { [BIT_WORD(KEY_WLAN)] = BIT_MASK(KEY_WLAN) },
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700191 },
192 {
193 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700194 .evbit = { BIT_MASK(EV_KEY) },
195 .keybit = { [BIT_WORD(KEY_BLUETOOTH)] = BIT_MASK(KEY_BLUETOOTH) },
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700196 },
Ivo van Doorne06654862007-09-13 09:21:31 +0200197 {
198 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700199 .evbit = { BIT_MASK(EV_KEY) },
200 .keybit = { [BIT_WORD(KEY_UWB)] = BIT_MASK(KEY_UWB) },
Ivo van Doorne06654862007-09-13 09:21:31 +0200201 },
Iñaky Pérez-González303d9bf2008-01-23 13:40:27 -0800202 {
203 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT,
204 .evbit = { BIT_MASK(EV_KEY) },
205 .keybit = { [BIT_WORD(KEY_WIMAX)] = BIT_MASK(KEY_WIMAX) },
206 },
Henrique de Moraes Holschuh28f089c2008-06-23 17:22:58 -0300207 {
208 .flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_SWBIT,
209 .evbit = { BIT(EV_SW) },
210 .swbit = { [BIT_WORD(SW_RFKILL_ALL)] = BIT_MASK(SW_RFKILL_ALL) },
211 },
Ivo van Doorncf4328c2007-05-07 00:34:20 -0700212 { }
213};
214
215static struct input_handler rfkill_handler = {
216 .event = rfkill_event,
217 .connect = rfkill_connect,
218 .disconnect = rfkill_disconnect,
219 .name = "rfkill",
220 .id_table = rfkill_ids,
221};
222
223static int __init rfkill_handler_init(void)
224{
225 return input_register_handler(&rfkill_handler);
226}
227
228static void __exit rfkill_handler_exit(void)
229{
230 input_unregister_handler(&rfkill_handler);
231 flush_scheduled_work();
232}
233
234module_init(rfkill_handler_init);
235module_exit(rfkill_handler_exit);