Loading...
1/*
2 Dell Airplane Mode Switch driver
3 Copyright (C) 2014-2015 Pali Rohár <pali.rohar@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14*/
15
16#include <linux/module.h>
17#include <linux/acpi.h>
18#include <linux/rfkill.h>
19#include <linux/input.h>
20
21enum rbtn_type {
22 RBTN_UNKNOWN,
23 RBTN_TOGGLE,
24 RBTN_SLIDER,
25};
26
27struct rbtn_data {
28 enum rbtn_type type;
29 struct rfkill *rfkill;
30 struct input_dev *input_dev;
31};
32
33
34/*
35 * acpi functions
36 */
37
38static enum rbtn_type rbtn_check(struct acpi_device *device)
39{
40 unsigned long long output;
41 acpi_status status;
42
43 status = acpi_evaluate_integer(device->handle, "CRBT", NULL, &output);
44 if (ACPI_FAILURE(status))
45 return RBTN_UNKNOWN;
46
47 switch (output) {
48 case 0:
49 case 1:
50 return RBTN_TOGGLE;
51 case 2:
52 case 3:
53 return RBTN_SLIDER;
54 default:
55 return RBTN_UNKNOWN;
56 }
57}
58
59static int rbtn_get(struct acpi_device *device)
60{
61 unsigned long long output;
62 acpi_status status;
63
64 status = acpi_evaluate_integer(device->handle, "GRBT", NULL, &output);
65 if (ACPI_FAILURE(status))
66 return -EINVAL;
67
68 return !output;
69}
70
71static int rbtn_acquire(struct acpi_device *device, bool enable)
72{
73 struct acpi_object_list input;
74 union acpi_object param;
75 acpi_status status;
76
77 param.type = ACPI_TYPE_INTEGER;
78 param.integer.value = enable;
79 input.count = 1;
80 input.pointer = ¶m;
81
82 status = acpi_evaluate_object(device->handle, "ARBT", &input, NULL);
83 if (ACPI_FAILURE(status))
84 return -EINVAL;
85
86 return 0;
87}
88
89
90/*
91 * rfkill device
92 */
93
94static void rbtn_rfkill_query(struct rfkill *rfkill, void *data)
95{
96 struct acpi_device *device = data;
97 int state;
98
99 state = rbtn_get(device);
100 if (state < 0)
101 return;
102
103 rfkill_set_states(rfkill, state, state);
104}
105
106static int rbtn_rfkill_set_block(void *data, bool blocked)
107{
108 /* NOTE: setting soft rfkill state is not supported */
109 return -EINVAL;
110}
111
112static struct rfkill_ops rbtn_ops = {
113 .query = rbtn_rfkill_query,
114 .set_block = rbtn_rfkill_set_block,
115};
116
117static int rbtn_rfkill_init(struct acpi_device *device)
118{
119 struct rbtn_data *rbtn_data = device->driver_data;
120 int ret;
121
122 if (rbtn_data->rfkill)
123 return 0;
124
125 /*
126 * NOTE: rbtn controls all radio devices, not only WLAN
127 * but rfkill interface does not support "ANY" type
128 * so "WLAN" type is used
129 */
130 rbtn_data->rfkill = rfkill_alloc("dell-rbtn", &device->dev,
131 RFKILL_TYPE_WLAN, &rbtn_ops, device);
132 if (!rbtn_data->rfkill)
133 return -ENOMEM;
134
135 ret = rfkill_register(rbtn_data->rfkill);
136 if (ret) {
137 rfkill_destroy(rbtn_data->rfkill);
138 rbtn_data->rfkill = NULL;
139 return ret;
140 }
141
142 return 0;
143}
144
145static void rbtn_rfkill_exit(struct acpi_device *device)
146{
147 struct rbtn_data *rbtn_data = device->driver_data;
148
149 if (!rbtn_data->rfkill)
150 return;
151
152 rfkill_unregister(rbtn_data->rfkill);
153 rfkill_destroy(rbtn_data->rfkill);
154 rbtn_data->rfkill = NULL;
155}
156
157static void rbtn_rfkill_event(struct acpi_device *device)
158{
159 struct rbtn_data *rbtn_data = device->driver_data;
160
161 if (rbtn_data->rfkill)
162 rbtn_rfkill_query(rbtn_data->rfkill, device);
163}
164
165
166/*
167 * input device
168 */
169
170static int rbtn_input_init(struct rbtn_data *rbtn_data)
171{
172 int ret;
173
174 rbtn_data->input_dev = input_allocate_device();
175 if (!rbtn_data->input_dev)
176 return -ENOMEM;
177
178 rbtn_data->input_dev->name = "DELL Wireless hotkeys";
179 rbtn_data->input_dev->phys = "dellabce/input0";
180 rbtn_data->input_dev->id.bustype = BUS_HOST;
181 rbtn_data->input_dev->evbit[0] = BIT(EV_KEY);
182 set_bit(KEY_RFKILL, rbtn_data->input_dev->keybit);
183
184 ret = input_register_device(rbtn_data->input_dev);
185 if (ret) {
186 input_free_device(rbtn_data->input_dev);
187 rbtn_data->input_dev = NULL;
188 return ret;
189 }
190
191 return 0;
192}
193
194static void rbtn_input_exit(struct rbtn_data *rbtn_data)
195{
196 input_unregister_device(rbtn_data->input_dev);
197 rbtn_data->input_dev = NULL;
198}
199
200static void rbtn_input_event(struct rbtn_data *rbtn_data)
201{
202 input_report_key(rbtn_data->input_dev, KEY_RFKILL, 1);
203 input_sync(rbtn_data->input_dev);
204 input_report_key(rbtn_data->input_dev, KEY_RFKILL, 0);
205 input_sync(rbtn_data->input_dev);
206}
207
208
209/*
210 * acpi driver
211 */
212
213static int rbtn_add(struct acpi_device *device);
214static int rbtn_remove(struct acpi_device *device);
215static void rbtn_notify(struct acpi_device *device, u32 event);
216
217static const struct acpi_device_id rbtn_ids[] = {
218 { "DELRBTN", 0 },
219 { "DELLABCE", 0 },
220
221 /*
222 * This driver can also handle the "DELLABC6" device that
223 * appears on the XPS 13 9350, but that device is disabled
224 * by the DSDT unless booted with acpi_osi="!Windows 2012"
225 * acpi_osi="!Windows 2013". Even if we boot that and bind
226 * the driver, we seem to have inconsistent behavior in
227 * which NetworkManager can get out of sync with the rfkill
228 * state.
229 *
230 * On the XPS 13 9350 and similar laptops, we're not supposed to
231 * use DELLABC6 at all. Instead, we handle the rfkill button
232 * via the intel-hid driver.
233 */
234
235 { "", 0 },
236};
237
238static struct acpi_driver rbtn_driver = {
239 .name = "dell-rbtn",
240 .ids = rbtn_ids,
241 .ops = {
242 .add = rbtn_add,
243 .remove = rbtn_remove,
244 .notify = rbtn_notify,
245 },
246 .owner = THIS_MODULE,
247};
248
249
250/*
251 * notifier export functions
252 */
253
254static bool auto_remove_rfkill = true;
255
256static ATOMIC_NOTIFIER_HEAD(rbtn_chain_head);
257
258static int rbtn_inc_count(struct device *dev, void *data)
259{
260 struct acpi_device *device = to_acpi_device(dev);
261 struct rbtn_data *rbtn_data = device->driver_data;
262 int *count = data;
263
264 if (rbtn_data->type == RBTN_SLIDER)
265 (*count)++;
266
267 return 0;
268}
269
270static int rbtn_switch_dev(struct device *dev, void *data)
271{
272 struct acpi_device *device = to_acpi_device(dev);
273 struct rbtn_data *rbtn_data = device->driver_data;
274 bool enable = data;
275
276 if (rbtn_data->type != RBTN_SLIDER)
277 return 0;
278
279 if (enable)
280 rbtn_rfkill_init(device);
281 else
282 rbtn_rfkill_exit(device);
283
284 return 0;
285}
286
287int dell_rbtn_notifier_register(struct notifier_block *nb)
288{
289 bool first;
290 int count;
291 int ret;
292
293 count = 0;
294 ret = driver_for_each_device(&rbtn_driver.drv, NULL, &count,
295 rbtn_inc_count);
296 if (ret || count == 0)
297 return -ENODEV;
298
299 first = !rbtn_chain_head.head;
300
301 ret = atomic_notifier_chain_register(&rbtn_chain_head, nb);
302 if (ret != 0)
303 return ret;
304
305 if (auto_remove_rfkill && first)
306 ret = driver_for_each_device(&rbtn_driver.drv, NULL,
307 (void *)false, rbtn_switch_dev);
308
309 return ret;
310}
311EXPORT_SYMBOL_GPL(dell_rbtn_notifier_register);
312
313int dell_rbtn_notifier_unregister(struct notifier_block *nb)
314{
315 int ret;
316
317 ret = atomic_notifier_chain_unregister(&rbtn_chain_head, nb);
318 if (ret != 0)
319 return ret;
320
321 if (auto_remove_rfkill && !rbtn_chain_head.head)
322 ret = driver_for_each_device(&rbtn_driver.drv, NULL,
323 (void *)true, rbtn_switch_dev);
324
325 return ret;
326}
327EXPORT_SYMBOL_GPL(dell_rbtn_notifier_unregister);
328
329
330/*
331 * acpi driver functions
332 */
333
334static int rbtn_add(struct acpi_device *device)
335{
336 struct rbtn_data *rbtn_data;
337 enum rbtn_type type;
338 int ret = 0;
339
340 type = rbtn_check(device);
341 if (type == RBTN_UNKNOWN) {
342 dev_info(&device->dev, "Unknown device type\n");
343 return -EINVAL;
344 }
345
346 ret = rbtn_acquire(device, true);
347 if (ret < 0) {
348 dev_err(&device->dev, "Cannot enable device\n");
349 return ret;
350 }
351
352 rbtn_data = devm_kzalloc(&device->dev, sizeof(*rbtn_data), GFP_KERNEL);
353 if (!rbtn_data)
354 return -ENOMEM;
355
356 rbtn_data->type = type;
357 device->driver_data = rbtn_data;
358
359 switch (rbtn_data->type) {
360 case RBTN_TOGGLE:
361 ret = rbtn_input_init(rbtn_data);
362 break;
363 case RBTN_SLIDER:
364 if (auto_remove_rfkill && rbtn_chain_head.head)
365 ret = 0;
366 else
367 ret = rbtn_rfkill_init(device);
368 break;
369 default:
370 ret = -EINVAL;
371 }
372
373 return ret;
374
375}
376
377static int rbtn_remove(struct acpi_device *device)
378{
379 struct rbtn_data *rbtn_data = device->driver_data;
380
381 switch (rbtn_data->type) {
382 case RBTN_TOGGLE:
383 rbtn_input_exit(rbtn_data);
384 break;
385 case RBTN_SLIDER:
386 rbtn_rfkill_exit(device);
387 break;
388 default:
389 break;
390 }
391
392 rbtn_acquire(device, false);
393 device->driver_data = NULL;
394
395 return 0;
396}
397
398static void rbtn_notify(struct acpi_device *device, u32 event)
399{
400 struct rbtn_data *rbtn_data = device->driver_data;
401
402 if (event != 0x80) {
403 dev_info(&device->dev, "Received unknown event (0x%x)\n",
404 event);
405 return;
406 }
407
408 switch (rbtn_data->type) {
409 case RBTN_TOGGLE:
410 rbtn_input_event(rbtn_data);
411 break;
412 case RBTN_SLIDER:
413 rbtn_rfkill_event(device);
414 atomic_notifier_call_chain(&rbtn_chain_head, event, device);
415 break;
416 default:
417 break;
418 }
419}
420
421
422/*
423 * module functions
424 */
425
426module_acpi_driver(rbtn_driver);
427
428module_param(auto_remove_rfkill, bool, 0444);
429
430MODULE_PARM_DESC(auto_remove_rfkill, "Automatically remove rfkill devices when "
431 "other modules start receiving events "
432 "from this module and re-add them when "
433 "the last module stops receiving events "
434 "(default true)");
435MODULE_DEVICE_TABLE(acpi, rbtn_ids);
436MODULE_DESCRIPTION("Dell Airplane Mode Switch driver");
437MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>");
438MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 Dell Airplane Mode Switch driver
4 Copyright (C) 2014-2015 Pali Rohár <pali.rohar@gmail.com>
5
6*/
7
8#include <linux/module.h>
9#include <linux/acpi.h>
10#include <linux/rfkill.h>
11#include <linux/input.h>
12
13#include "dell-rbtn.h"
14
15enum rbtn_type {
16 RBTN_UNKNOWN,
17 RBTN_TOGGLE,
18 RBTN_SLIDER,
19};
20
21struct rbtn_data {
22 enum rbtn_type type;
23 struct rfkill *rfkill;
24 struct input_dev *input_dev;
25 bool suspended;
26};
27
28
29/*
30 * acpi functions
31 */
32
33static enum rbtn_type rbtn_check(struct acpi_device *device)
34{
35 unsigned long long output;
36 acpi_status status;
37
38 status = acpi_evaluate_integer(device->handle, "CRBT", NULL, &output);
39 if (ACPI_FAILURE(status))
40 return RBTN_UNKNOWN;
41
42 switch (output) {
43 case 0:
44 case 1:
45 return RBTN_TOGGLE;
46 case 2:
47 case 3:
48 return RBTN_SLIDER;
49 default:
50 return RBTN_UNKNOWN;
51 }
52}
53
54static int rbtn_get(struct acpi_device *device)
55{
56 unsigned long long output;
57 acpi_status status;
58
59 status = acpi_evaluate_integer(device->handle, "GRBT", NULL, &output);
60 if (ACPI_FAILURE(status))
61 return -EINVAL;
62
63 return !output;
64}
65
66static int rbtn_acquire(struct acpi_device *device, bool enable)
67{
68 struct acpi_object_list input;
69 union acpi_object param;
70 acpi_status status;
71
72 param.type = ACPI_TYPE_INTEGER;
73 param.integer.value = enable;
74 input.count = 1;
75 input.pointer = ¶m;
76
77 status = acpi_evaluate_object(device->handle, "ARBT", &input, NULL);
78 if (ACPI_FAILURE(status))
79 return -EINVAL;
80
81 return 0;
82}
83
84
85/*
86 * rfkill device
87 */
88
89static void rbtn_rfkill_query(struct rfkill *rfkill, void *data)
90{
91 struct acpi_device *device = data;
92 int state;
93
94 state = rbtn_get(device);
95 if (state < 0)
96 return;
97
98 rfkill_set_states(rfkill, state, state);
99}
100
101static int rbtn_rfkill_set_block(void *data, bool blocked)
102{
103 /* NOTE: setting soft rfkill state is not supported */
104 return -EINVAL;
105}
106
107static const struct rfkill_ops rbtn_ops = {
108 .query = rbtn_rfkill_query,
109 .set_block = rbtn_rfkill_set_block,
110};
111
112static int rbtn_rfkill_init(struct acpi_device *device)
113{
114 struct rbtn_data *rbtn_data = device->driver_data;
115 int ret;
116
117 if (rbtn_data->rfkill)
118 return 0;
119
120 /*
121 * NOTE: rbtn controls all radio devices, not only WLAN
122 * but rfkill interface does not support "ANY" type
123 * so "WLAN" type is used
124 */
125 rbtn_data->rfkill = rfkill_alloc("dell-rbtn", &device->dev,
126 RFKILL_TYPE_WLAN, &rbtn_ops, device);
127 if (!rbtn_data->rfkill)
128 return -ENOMEM;
129
130 ret = rfkill_register(rbtn_data->rfkill);
131 if (ret) {
132 rfkill_destroy(rbtn_data->rfkill);
133 rbtn_data->rfkill = NULL;
134 return ret;
135 }
136
137 return 0;
138}
139
140static void rbtn_rfkill_exit(struct acpi_device *device)
141{
142 struct rbtn_data *rbtn_data = device->driver_data;
143
144 if (!rbtn_data->rfkill)
145 return;
146
147 rfkill_unregister(rbtn_data->rfkill);
148 rfkill_destroy(rbtn_data->rfkill);
149 rbtn_data->rfkill = NULL;
150}
151
152static void rbtn_rfkill_event(struct acpi_device *device)
153{
154 struct rbtn_data *rbtn_data = device->driver_data;
155
156 if (rbtn_data->rfkill)
157 rbtn_rfkill_query(rbtn_data->rfkill, device);
158}
159
160
161/*
162 * input device
163 */
164
165static int rbtn_input_init(struct rbtn_data *rbtn_data)
166{
167 int ret;
168
169 rbtn_data->input_dev = input_allocate_device();
170 if (!rbtn_data->input_dev)
171 return -ENOMEM;
172
173 rbtn_data->input_dev->name = "DELL Wireless hotkeys";
174 rbtn_data->input_dev->phys = "dellabce/input0";
175 rbtn_data->input_dev->id.bustype = BUS_HOST;
176 rbtn_data->input_dev->evbit[0] = BIT(EV_KEY);
177 set_bit(KEY_RFKILL, rbtn_data->input_dev->keybit);
178
179 ret = input_register_device(rbtn_data->input_dev);
180 if (ret) {
181 input_free_device(rbtn_data->input_dev);
182 rbtn_data->input_dev = NULL;
183 return ret;
184 }
185
186 return 0;
187}
188
189static void rbtn_input_exit(struct rbtn_data *rbtn_data)
190{
191 input_unregister_device(rbtn_data->input_dev);
192 rbtn_data->input_dev = NULL;
193}
194
195static void rbtn_input_event(struct rbtn_data *rbtn_data)
196{
197 input_report_key(rbtn_data->input_dev, KEY_RFKILL, 1);
198 input_sync(rbtn_data->input_dev);
199 input_report_key(rbtn_data->input_dev, KEY_RFKILL, 0);
200 input_sync(rbtn_data->input_dev);
201}
202
203
204/*
205 * acpi driver
206 */
207
208static int rbtn_add(struct acpi_device *device);
209static int rbtn_remove(struct acpi_device *device);
210static void rbtn_notify(struct acpi_device *device, u32 event);
211
212static const struct acpi_device_id rbtn_ids[] = {
213 { "DELRBTN", 0 },
214 { "DELLABCE", 0 },
215
216 /*
217 * This driver can also handle the "DELLABC6" device that
218 * appears on the XPS 13 9350, but that device is disabled by
219 * the DSDT unless booted with acpi_osi="!Windows 2012"
220 * acpi_osi="!Windows 2013".
221 *
222 * According to Mario at Dell:
223 *
224 * DELLABC6 is a custom interface that was created solely to
225 * have airplane mode support for Windows 7. For Windows 10
226 * the proper interface is to use that which is handled by
227 * intel-hid. A OEM airplane mode driver is not used.
228 *
229 * Since the kernel doesn't identify as Windows 7 it would be
230 * incorrect to do attempt to use that interface.
231 *
232 * Even if we override _OSI and bind to DELLABC6, we end up with
233 * inconsistent behavior in which userspace can get out of sync
234 * with the rfkill state as it conflicts with events from
235 * intel-hid.
236 *
237 * The upshot is that it is better to just ignore DELLABC6
238 * devices.
239 */
240
241 { "", 0 },
242};
243
244#ifdef CONFIG_PM_SLEEP
245static void ACPI_SYSTEM_XFACE rbtn_clear_suspended_flag(void *context)
246{
247 struct rbtn_data *rbtn_data = context;
248
249 rbtn_data->suspended = false;
250}
251
252static int rbtn_suspend(struct device *dev)
253{
254 struct acpi_device *device = to_acpi_device(dev);
255 struct rbtn_data *rbtn_data = acpi_driver_data(device);
256
257 rbtn_data->suspended = true;
258
259 return 0;
260}
261
262static int rbtn_resume(struct device *dev)
263{
264 struct acpi_device *device = to_acpi_device(dev);
265 struct rbtn_data *rbtn_data = acpi_driver_data(device);
266 acpi_status status;
267
268 /*
269 * Upon resume, some BIOSes send an ACPI notification thet triggers
270 * an unwanted input event. In order to ignore it, we use a flag
271 * that we set at suspend and clear once we have received the extra
272 * ACPI notification. Since ACPI notifications are delivered
273 * asynchronously to drivers, we clear the flag from the workqueue
274 * used to deliver the notifications. This should be enough
275 * to have the flag cleared only after we received the extra
276 * notification, if any.
277 */
278 status = acpi_os_execute(OSL_NOTIFY_HANDLER,
279 rbtn_clear_suspended_flag, rbtn_data);
280 if (ACPI_FAILURE(status))
281 rbtn_clear_suspended_flag(rbtn_data);
282
283 return 0;
284}
285#endif
286
287static SIMPLE_DEV_PM_OPS(rbtn_pm_ops, rbtn_suspend, rbtn_resume);
288
289static struct acpi_driver rbtn_driver = {
290 .name = "dell-rbtn",
291 .ids = rbtn_ids,
292 .drv.pm = &rbtn_pm_ops,
293 .ops = {
294 .add = rbtn_add,
295 .remove = rbtn_remove,
296 .notify = rbtn_notify,
297 },
298 .owner = THIS_MODULE,
299};
300
301
302/*
303 * notifier export functions
304 */
305
306static bool auto_remove_rfkill = true;
307
308static ATOMIC_NOTIFIER_HEAD(rbtn_chain_head);
309
310static int rbtn_inc_count(struct device *dev, void *data)
311{
312 struct acpi_device *device = to_acpi_device(dev);
313 struct rbtn_data *rbtn_data = device->driver_data;
314 int *count = data;
315
316 if (rbtn_data->type == RBTN_SLIDER)
317 (*count)++;
318
319 return 0;
320}
321
322static int rbtn_switch_dev(struct device *dev, void *data)
323{
324 struct acpi_device *device = to_acpi_device(dev);
325 struct rbtn_data *rbtn_data = device->driver_data;
326 bool enable = data;
327
328 if (rbtn_data->type != RBTN_SLIDER)
329 return 0;
330
331 if (enable)
332 rbtn_rfkill_init(device);
333 else
334 rbtn_rfkill_exit(device);
335
336 return 0;
337}
338
339int dell_rbtn_notifier_register(struct notifier_block *nb)
340{
341 bool first;
342 int count;
343 int ret;
344
345 count = 0;
346 ret = driver_for_each_device(&rbtn_driver.drv, NULL, &count,
347 rbtn_inc_count);
348 if (ret || count == 0)
349 return -ENODEV;
350
351 first = !rbtn_chain_head.head;
352
353 ret = atomic_notifier_chain_register(&rbtn_chain_head, nb);
354 if (ret != 0)
355 return ret;
356
357 if (auto_remove_rfkill && first)
358 ret = driver_for_each_device(&rbtn_driver.drv, NULL,
359 (void *)false, rbtn_switch_dev);
360
361 return ret;
362}
363EXPORT_SYMBOL_GPL(dell_rbtn_notifier_register);
364
365int dell_rbtn_notifier_unregister(struct notifier_block *nb)
366{
367 int ret;
368
369 ret = atomic_notifier_chain_unregister(&rbtn_chain_head, nb);
370 if (ret != 0)
371 return ret;
372
373 if (auto_remove_rfkill && !rbtn_chain_head.head)
374 ret = driver_for_each_device(&rbtn_driver.drv, NULL,
375 (void *)true, rbtn_switch_dev);
376
377 return ret;
378}
379EXPORT_SYMBOL_GPL(dell_rbtn_notifier_unregister);
380
381
382/*
383 * acpi driver functions
384 */
385
386static int rbtn_add(struct acpi_device *device)
387{
388 struct rbtn_data *rbtn_data;
389 enum rbtn_type type;
390 int ret = 0;
391
392 type = rbtn_check(device);
393 if (type == RBTN_UNKNOWN) {
394 dev_info(&device->dev, "Unknown device type\n");
395 return -EINVAL;
396 }
397
398 ret = rbtn_acquire(device, true);
399 if (ret < 0) {
400 dev_err(&device->dev, "Cannot enable device\n");
401 return ret;
402 }
403
404 rbtn_data = devm_kzalloc(&device->dev, sizeof(*rbtn_data), GFP_KERNEL);
405 if (!rbtn_data)
406 return -ENOMEM;
407
408 rbtn_data->type = type;
409 device->driver_data = rbtn_data;
410
411 switch (rbtn_data->type) {
412 case RBTN_TOGGLE:
413 ret = rbtn_input_init(rbtn_data);
414 break;
415 case RBTN_SLIDER:
416 if (auto_remove_rfkill && rbtn_chain_head.head)
417 ret = 0;
418 else
419 ret = rbtn_rfkill_init(device);
420 break;
421 default:
422 ret = -EINVAL;
423 }
424
425 return ret;
426
427}
428
429static int rbtn_remove(struct acpi_device *device)
430{
431 struct rbtn_data *rbtn_data = device->driver_data;
432
433 switch (rbtn_data->type) {
434 case RBTN_TOGGLE:
435 rbtn_input_exit(rbtn_data);
436 break;
437 case RBTN_SLIDER:
438 rbtn_rfkill_exit(device);
439 break;
440 default:
441 break;
442 }
443
444 rbtn_acquire(device, false);
445 device->driver_data = NULL;
446
447 return 0;
448}
449
450static void rbtn_notify(struct acpi_device *device, u32 event)
451{
452 struct rbtn_data *rbtn_data = device->driver_data;
453
454 /*
455 * Some BIOSes send a notification at resume.
456 * Ignore it to prevent unwanted input events.
457 */
458 if (rbtn_data->suspended) {
459 dev_dbg(&device->dev, "ACPI notification ignored\n");
460 return;
461 }
462
463 if (event != 0x80) {
464 dev_info(&device->dev, "Received unknown event (0x%x)\n",
465 event);
466 return;
467 }
468
469 switch (rbtn_data->type) {
470 case RBTN_TOGGLE:
471 rbtn_input_event(rbtn_data);
472 break;
473 case RBTN_SLIDER:
474 rbtn_rfkill_event(device);
475 atomic_notifier_call_chain(&rbtn_chain_head, event, device);
476 break;
477 default:
478 break;
479 }
480}
481
482
483/*
484 * module functions
485 */
486
487module_acpi_driver(rbtn_driver);
488
489module_param(auto_remove_rfkill, bool, 0444);
490
491MODULE_PARM_DESC(auto_remove_rfkill, "Automatically remove rfkill devices when "
492 "other modules start receiving events "
493 "from this module and re-add them when "
494 "the last module stops receiving events "
495 "(default true)");
496MODULE_DEVICE_TABLE(acpi, rbtn_ids);
497MODULE_DESCRIPTION("Dell Airplane Mode Switch driver");
498MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>");
499MODULE_LICENSE("GPL");