Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / rfkill / rfkill-input.c
blobe4b051dbed612bc45726328f73a18c65ad81f87b
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>
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");
26 struct 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 */
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)
60 unsigned long flags;
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;
66 task->last = jiffies;
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), \
77 .type = t, \
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) {
93 switch (code) {
94 case KEY_WLAN:
95 rfkill_schedule_toggle(&rfkill_wlan);
96 break;
97 case KEY_BLUETOOTH:
98 rfkill_schedule_toggle(&rfkill_bt);
99 break;
100 case KEY_UWB:
101 rfkill_schedule_toggle(&rfkill_uwb);
102 break;
103 case KEY_WIMAX:
104 rfkill_schedule_toggle(&rfkill_wimax);
105 break;
106 default:
107 break;
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;
116 int error;
118 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
119 if (!handle)
120 return -ENOMEM;
122 handle->dev = dev;
123 handle->handler = handler;
124 handle->name = "rfkill";
126 error = input_register_handle(handle);
127 if (error)
128 goto err_free_handle;
130 error = input_open_device(handle);
131 if (error)
132 goto err_unregister_handle;
134 return 0;
136 err_unregister_handle:
137 input_unregister_handle(handle);
138 err_free_handle:
139 kfree(handle);
140 return error;
143 static void rfkill_disconnect(struct input_handle *handle)
145 input_close_device(handle);
146 input_unregister_handle(handle);
147 kfree(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,
178 .name = "rfkill",
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);