2 * Driver for Dell laptop extras
8 * Based on documentation in the libsmbios package:
9 * Copyright (C) 2005-2014 Dell Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/backlight.h>
23 #include <linux/err.h>
24 #include <linux/dmi.h>
26 #include <linux/rfkill.h>
27 #include <linux/power_supply.h>
28 #include <linux/acpi.h>
30 #include <linux/i8042.h>
31 #include <linux/debugfs.h>
32 #include <linux/seq_file.h>
33 #include <acpi/video.h>
34 #include "dell-rbtn.h"
35 #include "dell-smbios.h"
37 #define BRIGHTNESS_TOKEN 0x7d
38 #define KBD_LED_OFF_TOKEN 0x01E1
39 #define KBD_LED_ON_TOKEN 0x01E2
40 #define KBD_LED_AUTO_TOKEN 0x01E3
41 #define KBD_LED_AUTO_25_TOKEN 0x02EA
42 #define KBD_LED_AUTO_50_TOKEN 0x02EB
43 #define KBD_LED_AUTO_75_TOKEN 0x02EC
44 #define KBD_LED_AUTO_100_TOKEN 0x02F6
49 int needs_kbd_timeouts;
51 * Ordered list of timeouts expressed in seconds.
52 * The list must end with -1
57 static struct quirk_entry *quirks;
59 static struct quirk_entry quirk_dell_vostro_v130 = {
63 static int __init dmi_matched(const struct dmi_system_id *dmi)
65 quirks = dmi->driver_data;
70 * These values come from Windows utility provided by Dell. If any other value
71 * is used then BIOS silently set timeout to 0 without any error message.
73 static struct quirk_entry quirk_dell_xps13_9333 = {
74 .needs_kbd_timeouts = 1,
75 .kbd_timeouts = { 0, 5, 15, 60, 5 * 60, 15 * 60, -1 },
78 static struct platform_driver platform_driver = {
80 .name = "dell-laptop",
84 static struct platform_device *platform_device;
85 static struct backlight_device *dell_backlight_device;
86 static struct rfkill *wifi_rfkill;
87 static struct rfkill *bluetooth_rfkill;
88 static struct rfkill *wwan_rfkill;
89 static bool force_rfkill;
91 module_param(force_rfkill, bool, 0444);
92 MODULE_PARM_DESC(force_rfkill, "enable rfkill on non whitelisted models");
94 static const struct dmi_system_id dell_device_table[] __initconst = {
96 .ident = "Dell laptop",
98 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
99 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
104 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
105 DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /*Laptop*/
109 .ident = "Dell Computer Corporation",
111 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
112 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
117 MODULE_DEVICE_TABLE(dmi, dell_device_table);
119 static const struct dmi_system_id dell_quirks[] __initconst = {
121 .callback = dmi_matched,
122 .ident = "Dell Vostro V130",
124 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
125 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V130"),
127 .driver_data = &quirk_dell_vostro_v130,
130 .callback = dmi_matched,
131 .ident = "Dell Vostro V131",
133 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
134 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
136 .driver_data = &quirk_dell_vostro_v130,
139 .callback = dmi_matched,
140 .ident = "Dell Vostro 3350",
142 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
143 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"),
145 .driver_data = &quirk_dell_vostro_v130,
148 .callback = dmi_matched,
149 .ident = "Dell Vostro 3555",
151 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
152 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3555"),
154 .driver_data = &quirk_dell_vostro_v130,
157 .callback = dmi_matched,
158 .ident = "Dell Inspiron N311z",
160 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
161 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron N311z"),
163 .driver_data = &quirk_dell_vostro_v130,
166 .callback = dmi_matched,
167 .ident = "Dell Inspiron M5110",
169 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
170 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron M5110"),
172 .driver_data = &quirk_dell_vostro_v130,
175 .callback = dmi_matched,
176 .ident = "Dell Vostro 3360",
178 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
179 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3360"),
181 .driver_data = &quirk_dell_vostro_v130,
184 .callback = dmi_matched,
185 .ident = "Dell Vostro 3460",
187 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
188 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3460"),
190 .driver_data = &quirk_dell_vostro_v130,
193 .callback = dmi_matched,
194 .ident = "Dell Vostro 3560",
196 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
197 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3560"),
199 .driver_data = &quirk_dell_vostro_v130,
202 .callback = dmi_matched,
203 .ident = "Dell Vostro 3450",
205 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
206 DMI_MATCH(DMI_PRODUCT_NAME, "Dell System Vostro 3450"),
208 .driver_data = &quirk_dell_vostro_v130,
211 .callback = dmi_matched,
212 .ident = "Dell Inspiron 5420",
214 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
215 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5420"),
217 .driver_data = &quirk_dell_vostro_v130,
220 .callback = dmi_matched,
221 .ident = "Dell Inspiron 5520",
223 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
224 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5520"),
226 .driver_data = &quirk_dell_vostro_v130,
229 .callback = dmi_matched,
230 .ident = "Dell Inspiron 5720",
232 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
233 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5720"),
235 .driver_data = &quirk_dell_vostro_v130,
238 .callback = dmi_matched,
239 .ident = "Dell Inspiron 7420",
241 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
242 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7420"),
244 .driver_data = &quirk_dell_vostro_v130,
247 .callback = dmi_matched,
248 .ident = "Dell Inspiron 7520",
250 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
251 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7520"),
253 .driver_data = &quirk_dell_vostro_v130,
256 .callback = dmi_matched,
257 .ident = "Dell Inspiron 7720",
259 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
260 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7720"),
262 .driver_data = &quirk_dell_vostro_v130,
265 .callback = dmi_matched,
266 .ident = "Dell XPS13 9333",
268 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
269 DMI_MATCH(DMI_PRODUCT_NAME, "XPS13 9333"),
271 .driver_data = &quirk_dell_xps13_9333,
277 * Derived from information in smbios-wireless-ctl:
279 * cbSelect 17, Value 11
281 * Return Wireless Info
282 * cbArg1, byte0 = 0x00
284 * cbRes1 Standard return codes (0, -1, -2)
285 * cbRes2 Info bit flags:
287 * 0 Hardware switch supported (1)
288 * 1 WiFi locator supported (1)
289 * 2 WLAN supported (1)
290 * 3 Bluetooth (BT) supported (1)
291 * 4 WWAN supported (1)
292 * 5 Wireless KBD supported (1)
293 * 6 Uw b supported (1)
294 * 7 WiGig supported (1)
295 * 8 WLAN installed (1)
297 * 10 WWAN installed (1)
298 * 11 Uw b installed (1)
299 * 12 WiGig installed (1)
301 * 16 Hardware (HW) switch is On (1)
302 * 17 WLAN disabled (1)
304 * 19 WWAN disabled (1)
305 * 20 Uw b disabled (1)
306 * 21 WiGig disabled (1)
309 * cbRes3 NVRAM size in bytes
310 * cbRes4, byte 0 NVRAM format version number
313 * Set QuickSet Radio Disable Flag
314 * cbArg1, byte0 = 0x01
323 * cbArg1, byte2 Flag bits:
324 * 0 QuickSet disables radio (1)
327 * cbRes1 Standard return codes (0, -1, -2)
328 * cbRes2 QuickSet (QS) radio disable bit map:
333 * 4 QS disables WIGIG
336 * Wireless Switch Configuration
337 * cbArg1, byte0 = 0x02
343 * 2 Set WiFi locator enable/disable
345 * Switch settings (if byte 1==1):
346 * 0 WLAN sw itch control (1)
347 * 1 BT sw itch control (1)
348 * 2 WWAN sw itch control (1)
349 * 3 UWB sw itch control (1)
350 * 4 WiGig sw itch control (1)
352 * cbArg1, byte2 Enable bits (if byte 1==2):
353 * 0 Enable WiFi locator (1)
355 * cbRes1 Standard return codes (0, -1, -2)
356 * cbRes2 QuickSet radio disable bit map:
357 * 0 WLAN controlled by sw itch (1)
358 * 1 BT controlled by sw itch (1)
359 * 2 WWAN controlled by sw itch (1)
360 * 3 UWB controlled by sw itch (1)
361 * 4 WiGig controlled by sw itch (1)
363 * 7 Wireless sw itch config locked (1)
364 * 8 WiFi locator enabled (1)
366 * 15 WiFi locator setting locked (1)
369 * Read Local Config Data (LCD)
370 * cbArg1, byte0 = 0x10
371 * cbArg1, byte1 NVRAM index low byte
372 * cbArg1, byte2 NVRAM index high byte
373 * cbRes1 Standard return codes (0, -1, -2)
374 * cbRes2 4 bytes read from LCD[index]
375 * cbRes3 4 bytes read from LCD[index+4]
376 * cbRes4 4 bytes read from LCD[index+8]
378 * Write Local Config Data (LCD)
379 * cbArg1, byte0 = 0x11
380 * cbArg1, byte1 NVRAM index low byte
381 * cbArg1, byte2 NVRAM index high byte
382 * cbArg2 4 bytes to w rite at LCD[index]
383 * cbArg3 4 bytes to w rite at LCD[index+4]
384 * cbArg4 4 bytes to w rite at LCD[index+8]
385 * cbRes1 Standard return codes (0, -1, -2)
387 * Populate Local Config Data from NVRAM
388 * cbArg1, byte0 = 0x12
389 * cbRes1 Standard return codes (0, -1, -2)
391 * Commit Local Config Data to NVRAM
392 * cbArg1, byte0 = 0x13
393 * cbRes1 Standard return codes (0, -1, -2)
396 static int dell_rfkill_set(void *data, bool blocked)
398 struct calling_interface_buffer *buffer;
399 int disable = blocked ? 1 : 0;
400 unsigned long radio = (unsigned long)data;
401 int hwswitch_bit = (unsigned long)data - 1;
406 buffer = dell_smbios_get_buffer();
408 dell_smbios_send_request(17, 11);
409 ret = buffer->output[0];
410 status = buffer->output[1];
415 dell_smbios_clear_buffer();
417 buffer->input[0] = 0x2;
418 dell_smbios_send_request(17, 11);
419 ret = buffer->output[0];
420 hwswitch = buffer->output[1];
422 /* If the hardware switch controls this radio, and the hardware
423 switch is disabled, always disable the radio */
424 if (ret == 0 && (hwswitch & BIT(hwswitch_bit)) &&
425 (status & BIT(0)) && !(status & BIT(16)))
428 dell_smbios_clear_buffer();
430 buffer->input[0] = (1 | (radio<<8) | (disable << 16));
431 dell_smbios_send_request(17, 11);
432 ret = buffer->output[0];
435 dell_smbios_release_buffer();
436 return dell_smbios_error(ret);
439 /* Must be called with the buffer held */
440 static void dell_rfkill_update_sw_state(struct rfkill *rfkill, int radio,
442 struct calling_interface_buffer *buffer)
444 if (status & BIT(0)) {
445 /* Has hw-switch, sync sw_state to BIOS */
446 int block = rfkill_blocked(rfkill);
447 dell_smbios_clear_buffer();
448 buffer->input[0] = (1 | (radio << 8) | (block << 16));
449 dell_smbios_send_request(17, 11);
451 /* No hw-switch, sync BIOS state to sw_state */
452 rfkill_set_sw_state(rfkill, !!(status & BIT(radio + 16)));
456 static void dell_rfkill_update_hw_state(struct rfkill *rfkill, int radio,
457 int status, int hwswitch)
459 if (hwswitch & (BIT(radio - 1)))
460 rfkill_set_hw_state(rfkill, !(status & BIT(16)));
463 static void dell_rfkill_query(struct rfkill *rfkill, void *data)
465 struct calling_interface_buffer *buffer;
466 int radio = ((unsigned long)data & 0xF);
471 buffer = dell_smbios_get_buffer();
473 dell_smbios_send_request(17, 11);
474 ret = buffer->output[0];
475 status = buffer->output[1];
477 if (ret != 0 || !(status & BIT(0))) {
478 dell_smbios_release_buffer();
482 dell_smbios_clear_buffer();
484 buffer->input[0] = 0x2;
485 dell_smbios_send_request(17, 11);
486 ret = buffer->output[0];
487 hwswitch = buffer->output[1];
489 dell_smbios_release_buffer();
494 dell_rfkill_update_hw_state(rfkill, radio, status, hwswitch);
497 static const struct rfkill_ops dell_rfkill_ops = {
498 .set_block = dell_rfkill_set,
499 .query = dell_rfkill_query,
502 static struct dentry *dell_laptop_dir;
504 static int dell_debugfs_show(struct seq_file *s, void *data)
506 struct calling_interface_buffer *buffer;
512 buffer = dell_smbios_get_buffer();
514 dell_smbios_send_request(17, 11);
515 ret = buffer->output[0];
516 status = buffer->output[1];
518 dell_smbios_clear_buffer();
520 buffer->input[0] = 0x2;
521 dell_smbios_send_request(17, 11);
522 hwswitch_ret = buffer->output[0];
523 hwswitch_state = buffer->output[1];
525 dell_smbios_release_buffer();
527 seq_printf(s, "return:\t%d\n", ret);
528 seq_printf(s, "status:\t0x%X\n", status);
529 seq_printf(s, "Bit 0 : Hardware switch supported: %lu\n",
531 seq_printf(s, "Bit 1 : Wifi locator supported: %lu\n",
532 (status & BIT(1)) >> 1);
533 seq_printf(s, "Bit 2 : Wifi is supported: %lu\n",
534 (status & BIT(2)) >> 2);
535 seq_printf(s, "Bit 3 : Bluetooth is supported: %lu\n",
536 (status & BIT(3)) >> 3);
537 seq_printf(s, "Bit 4 : WWAN is supported: %lu\n",
538 (status & BIT(4)) >> 4);
539 seq_printf(s, "Bit 5 : Wireless keyboard supported: %lu\n",
540 (status & BIT(5)) >> 5);
541 seq_printf(s, "Bit 6 : UWB supported: %lu\n",
542 (status & BIT(6)) >> 6);
543 seq_printf(s, "Bit 7 : WiGig supported: %lu\n",
544 (status & BIT(7)) >> 7);
545 seq_printf(s, "Bit 8 : Wifi is installed: %lu\n",
546 (status & BIT(8)) >> 8);
547 seq_printf(s, "Bit 9 : Bluetooth is installed: %lu\n",
548 (status & BIT(9)) >> 9);
549 seq_printf(s, "Bit 10: WWAN is installed: %lu\n",
550 (status & BIT(10)) >> 10);
551 seq_printf(s, "Bit 11: UWB installed: %lu\n",
552 (status & BIT(11)) >> 11);
553 seq_printf(s, "Bit 12: WiGig installed: %lu\n",
554 (status & BIT(12)) >> 12);
556 seq_printf(s, "Bit 16: Hardware switch is on: %lu\n",
557 (status & BIT(16)) >> 16);
558 seq_printf(s, "Bit 17: Wifi is blocked: %lu\n",
559 (status & BIT(17)) >> 17);
560 seq_printf(s, "Bit 18: Bluetooth is blocked: %lu\n",
561 (status & BIT(18)) >> 18);
562 seq_printf(s, "Bit 19: WWAN is blocked: %lu\n",
563 (status & BIT(19)) >> 19);
564 seq_printf(s, "Bit 20: UWB is blocked: %lu\n",
565 (status & BIT(20)) >> 20);
566 seq_printf(s, "Bit 21: WiGig is blocked: %lu\n",
567 (status & BIT(21)) >> 21);
569 seq_printf(s, "\nhwswitch_return:\t%d\n", hwswitch_ret);
570 seq_printf(s, "hwswitch_state:\t0x%X\n", hwswitch_state);
571 seq_printf(s, "Bit 0 : Wifi controlled by switch: %lu\n",
572 hwswitch_state & BIT(0));
573 seq_printf(s, "Bit 1 : Bluetooth controlled by switch: %lu\n",
574 (hwswitch_state & BIT(1)) >> 1);
575 seq_printf(s, "Bit 2 : WWAN controlled by switch: %lu\n",
576 (hwswitch_state & BIT(2)) >> 2);
577 seq_printf(s, "Bit 3 : UWB controlled by switch: %lu\n",
578 (hwswitch_state & BIT(3)) >> 3);
579 seq_printf(s, "Bit 4 : WiGig controlled by switch: %lu\n",
580 (hwswitch_state & BIT(4)) >> 4);
581 seq_printf(s, "Bit 7 : Wireless switch config locked: %lu\n",
582 (hwswitch_state & BIT(7)) >> 7);
583 seq_printf(s, "Bit 8 : Wifi locator enabled: %lu\n",
584 (hwswitch_state & BIT(8)) >> 8);
585 seq_printf(s, "Bit 15: Wifi locator setting locked: %lu\n",
586 (hwswitch_state & BIT(15)) >> 15);
591 static int dell_debugfs_open(struct inode *inode, struct file *file)
593 return single_open(file, dell_debugfs_show, inode->i_private);
596 static const struct file_operations dell_debugfs_fops = {
597 .owner = THIS_MODULE,
598 .open = dell_debugfs_open,
601 .release = single_release,
604 static void dell_update_rfkill(struct work_struct *ignored)
606 struct calling_interface_buffer *buffer;
611 buffer = dell_smbios_get_buffer();
613 dell_smbios_send_request(17, 11);
614 ret = buffer->output[0];
615 status = buffer->output[1];
620 dell_smbios_clear_buffer();
622 buffer->input[0] = 0x2;
623 dell_smbios_send_request(17, 11);
624 ret = buffer->output[0];
626 if (ret == 0 && (status & BIT(0)))
627 hwswitch = buffer->output[1];
630 dell_rfkill_update_hw_state(wifi_rfkill, 1, status, hwswitch);
631 dell_rfkill_update_sw_state(wifi_rfkill, 1, status, buffer);
633 if (bluetooth_rfkill) {
634 dell_rfkill_update_hw_state(bluetooth_rfkill, 2, status,
636 dell_rfkill_update_sw_state(bluetooth_rfkill, 2, status,
640 dell_rfkill_update_hw_state(wwan_rfkill, 3, status, hwswitch);
641 dell_rfkill_update_sw_state(wwan_rfkill, 3, status, buffer);
645 dell_smbios_release_buffer();
647 static DECLARE_DELAYED_WORK(dell_rfkill_work, dell_update_rfkill);
649 static bool dell_laptop_i8042_filter(unsigned char data, unsigned char str,
652 static bool extended;
654 if (str & I8042_STR_AUXDATA)
657 if (unlikely(data == 0xe0)) {
660 } else if (unlikely(extended)) {
663 schedule_delayed_work(&dell_rfkill_work,
664 round_jiffies_relative(HZ / 4));
673 static int (*dell_rbtn_notifier_register_func)(struct notifier_block *);
674 static int (*dell_rbtn_notifier_unregister_func)(struct notifier_block *);
676 static int dell_laptop_rbtn_notifier_call(struct notifier_block *nb,
677 unsigned long action, void *data)
679 schedule_delayed_work(&dell_rfkill_work, 0);
683 static struct notifier_block dell_laptop_rbtn_notifier = {
684 .notifier_call = dell_laptop_rbtn_notifier_call,
687 static int __init dell_setup_rfkill(void)
689 struct calling_interface_buffer *buffer;
690 int status, ret, whitelisted;
694 * rfkill support causes trouble on various models, mostly Inspirons.
695 * So we whitelist certain series, and don't support rfkill on others.
698 product = dmi_get_system_info(DMI_PRODUCT_NAME);
699 if (product && (strncmp(product, "Latitude", 8) == 0 ||
700 strncmp(product, "Precision", 9) == 0))
702 if (!force_rfkill && !whitelisted)
705 buffer = dell_smbios_get_buffer();
706 dell_smbios_send_request(17, 11);
707 ret = buffer->output[0];
708 status = buffer->output[1];
709 dell_smbios_release_buffer();
711 /* dell wireless info smbios call is not supported */
715 /* rfkill is only tested on laptops with a hwswitch */
716 if (!(status & BIT(0)) && !force_rfkill)
719 if ((status & (1<<2|1<<8)) == (1<<2|1<<8)) {
720 wifi_rfkill = rfkill_alloc("dell-wifi", &platform_device->dev,
722 &dell_rfkill_ops, (void *) 1);
727 ret = rfkill_register(wifi_rfkill);
732 if ((status & (1<<3|1<<9)) == (1<<3|1<<9)) {
733 bluetooth_rfkill = rfkill_alloc("dell-bluetooth",
734 &platform_device->dev,
735 RFKILL_TYPE_BLUETOOTH,
736 &dell_rfkill_ops, (void *) 2);
737 if (!bluetooth_rfkill) {
741 ret = rfkill_register(bluetooth_rfkill);
746 if ((status & (1<<4|1<<10)) == (1<<4|1<<10)) {
747 wwan_rfkill = rfkill_alloc("dell-wwan",
748 &platform_device->dev,
750 &dell_rfkill_ops, (void *) 3);
755 ret = rfkill_register(wwan_rfkill);
761 * Dell Airplane Mode Switch driver (dell-rbtn) supports ACPI devices
762 * which can receive events from HW slider switch.
764 * Dell SMBIOS on whitelisted models supports controlling radio devices
765 * but does not support receiving HW button switch events. We can use
766 * i8042 filter hook function to receive keyboard data and handle
767 * keycode for HW button.
769 * So if it is possible we will use Dell Airplane Mode Switch ACPI
770 * driver for receiving HW events and Dell SMBIOS for setting rfkill
771 * states. If ACPI driver or device is not available we will fallback to
772 * i8042 filter hook function.
774 * To prevent duplicate rfkill devices which control and do same thing,
775 * dell-rbtn driver will automatically remove its own rfkill devices
776 * once function dell_rbtn_notifier_register() is called.
779 dell_rbtn_notifier_register_func =
780 symbol_request(dell_rbtn_notifier_register);
781 if (dell_rbtn_notifier_register_func) {
782 dell_rbtn_notifier_unregister_func =
783 symbol_request(dell_rbtn_notifier_unregister);
784 if (!dell_rbtn_notifier_unregister_func) {
785 symbol_put(dell_rbtn_notifier_register);
786 dell_rbtn_notifier_register_func = NULL;
790 if (dell_rbtn_notifier_register_func) {
791 ret = dell_rbtn_notifier_register_func(
792 &dell_laptop_rbtn_notifier);
793 symbol_put(dell_rbtn_notifier_register);
794 dell_rbtn_notifier_register_func = NULL;
796 symbol_put(dell_rbtn_notifier_unregister);
797 dell_rbtn_notifier_unregister_func = NULL;
800 pr_info("Symbols from dell-rbtn acpi driver are not available\n");
805 pr_info("Using dell-rbtn acpi driver for receiving events\n");
806 } else if (ret != -ENODEV) {
807 pr_warn("Unable to register dell rbtn notifier\n");
810 ret = i8042_install_filter(dell_laptop_i8042_filter);
812 pr_warn("Unable to install key filter\n");
815 pr_info("Using i8042 filter function for receiving events\n");
821 rfkill_unregister(wwan_rfkill);
823 rfkill_destroy(wwan_rfkill);
824 if (bluetooth_rfkill)
825 rfkill_unregister(bluetooth_rfkill);
827 rfkill_destroy(bluetooth_rfkill);
829 rfkill_unregister(wifi_rfkill);
831 rfkill_destroy(wifi_rfkill);
836 static void dell_cleanup_rfkill(void)
838 if (dell_rbtn_notifier_unregister_func) {
839 dell_rbtn_notifier_unregister_func(&dell_laptop_rbtn_notifier);
840 symbol_put(dell_rbtn_notifier_unregister);
841 dell_rbtn_notifier_unregister_func = NULL;
843 i8042_remove_filter(dell_laptop_i8042_filter);
845 cancel_delayed_work_sync(&dell_rfkill_work);
847 rfkill_unregister(wifi_rfkill);
848 rfkill_destroy(wifi_rfkill);
850 if (bluetooth_rfkill) {
851 rfkill_unregister(bluetooth_rfkill);
852 rfkill_destroy(bluetooth_rfkill);
855 rfkill_unregister(wwan_rfkill);
856 rfkill_destroy(wwan_rfkill);
860 static int dell_send_intensity(struct backlight_device *bd)
862 struct calling_interface_buffer *buffer;
863 struct calling_interface_token *token;
866 token = dell_smbios_find_token(BRIGHTNESS_TOKEN);
870 buffer = dell_smbios_get_buffer();
871 buffer->input[0] = token->location;
872 buffer->input[1] = bd->props.brightness;
874 if (power_supply_is_system_supplied() > 0)
875 dell_smbios_send_request(1, 2);
877 dell_smbios_send_request(1, 1);
879 ret = dell_smbios_error(buffer->output[0]);
881 dell_smbios_release_buffer();
885 static int dell_get_intensity(struct backlight_device *bd)
887 struct calling_interface_buffer *buffer;
888 struct calling_interface_token *token;
891 token = dell_smbios_find_token(BRIGHTNESS_TOKEN);
895 buffer = dell_smbios_get_buffer();
896 buffer->input[0] = token->location;
898 if (power_supply_is_system_supplied() > 0)
899 dell_smbios_send_request(0, 2);
901 dell_smbios_send_request(0, 1);
903 if (buffer->output[0])
904 ret = dell_smbios_error(buffer->output[0]);
906 ret = buffer->output[1];
908 dell_smbios_release_buffer();
912 static const struct backlight_ops dell_ops = {
913 .get_brightness = dell_get_intensity,
914 .update_status = dell_send_intensity,
917 static void touchpad_led_on(void)
921 i8042_command(&data, command | 1 << 12);
924 static void touchpad_led_off(void)
928 i8042_command(&data, command | 1 << 12);
931 static void touchpad_led_set(struct led_classdev *led_cdev,
932 enum led_brightness value)
940 static struct led_classdev touchpad_led = {
941 .name = "dell-laptop::touchpad",
942 .brightness_set = touchpad_led_set,
943 .flags = LED_CORE_SUSPENDRESUME,
946 static int __init touchpad_led_init(struct device *dev)
948 return led_classdev_register(dev, &touchpad_led);
951 static void touchpad_led_exit(void)
953 led_classdev_unregister(&touchpad_led);
957 * Derived from information in smbios-keyboard-ctl:
961 * Keyboard illumination
962 * cbArg1 determines the function to be performed
964 * cbArg1 0x0 = Get Feature Information
965 * cbRES1 Standard return codes (0, -1, -2)
966 * cbRES2, word0 Bitmap of user-selectable modes
967 * bit 0 Always off (All systems)
968 * bit 1 Always on (Travis ATG, Siberia)
969 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
970 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
971 * bit 4 Auto: Input-activity-based On; input-activity based Off
972 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
973 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
974 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
975 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
976 * bits 9-15 Reserved for future use
977 * cbRES2, byte2 Reserved for future use
978 * cbRES2, byte3 Keyboard illumination type
982 * 3-255 Reserved for future use
983 * cbRES3, byte0 Supported auto keyboard illumination trigger bitmap.
984 * bit 0 Any keystroke
985 * bit 1 Touchpad activity
986 * bit 2 Pointing stick
988 * bits 4-7 Reserved for future use
989 * cbRES3, byte1 Supported timeout unit bitmap
994 * bits 4-7 Reserved for future use
995 * cbRES3, byte2 Number of keyboard light brightness levels
996 * cbRES4, byte0 Maximum acceptable seconds value (0 if seconds not supported).
997 * cbRES4, byte1 Maximum acceptable minutes value (0 if minutes not supported).
998 * cbRES4, byte2 Maximum acceptable hours value (0 if hours not supported).
999 * cbRES4, byte3 Maximum acceptable days value (0 if days not supported)
1001 * cbArg1 0x1 = Get Current State
1002 * cbRES1 Standard return codes (0, -1, -2)
1003 * cbRES2, word0 Bitmap of current mode state
1004 * bit 0 Always off (All systems)
1005 * bit 1 Always on (Travis ATG, Siberia)
1006 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
1007 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
1008 * bit 4 Auto: Input-activity-based On; input-activity based Off
1009 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
1010 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
1011 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
1012 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
1013 * bits 9-15 Reserved for future use
1014 * Note: Only One bit can be set
1015 * cbRES2, byte2 Currently active auto keyboard illumination triggers.
1016 * bit 0 Any keystroke
1017 * bit 1 Touchpad activity
1018 * bit 2 Pointing stick
1020 * bits 4-7 Reserved for future use
1021 * cbRES2, byte3 Current Timeout
1022 * bits 7:6 Timeout units indicator:
1027 * bits 5:0 Timeout value (0-63) in sec/min/hr/day
1028 * NOTE: A value of 0 means always on (no timeout) if any bits of RES3 byte
1029 * are set upon return from the [Get feature information] call.
1030 * cbRES3, byte0 Current setting of ALS value that turns the light on or off.
1031 * cbRES3, byte1 Current ALS reading
1032 * cbRES3, byte2 Current keyboard light level.
1034 * cbArg1 0x2 = Set New State
1035 * cbRES1 Standard return codes (0, -1, -2)
1036 * cbArg2, word0 Bitmap of current mode state
1037 * bit 0 Always off (All systems)
1038 * bit 1 Always on (Travis ATG, Siberia)
1039 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
1040 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
1041 * bit 4 Auto: Input-activity-based On; input-activity based Off
1042 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
1043 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
1044 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
1045 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
1046 * bits 9-15 Reserved for future use
1047 * Note: Only One bit can be set
1048 * cbArg2, byte2 Desired auto keyboard illumination triggers. Must remain inactive to allow
1049 * keyboard to turn off automatically.
1050 * bit 0 Any keystroke
1051 * bit 1 Touchpad activity
1052 * bit 2 Pointing stick
1054 * bits 4-7 Reserved for future use
1055 * cbArg2, byte3 Desired Timeout
1056 * bits 7:6 Timeout units indicator:
1061 * bits 5:0 Timeout value (0-63) in sec/min/hr/day
1062 * cbArg3, byte0 Desired setting of ALS value that turns the light on or off.
1063 * cbArg3, byte2 Desired keyboard light level.
1067 enum kbd_timeout_unit {
1068 KBD_TIMEOUT_SECONDS = 0,
1069 KBD_TIMEOUT_MINUTES,
1075 KBD_MODE_BIT_OFF = 0,
1078 KBD_MODE_BIT_TRIGGER_ALS,
1079 KBD_MODE_BIT_TRIGGER,
1080 KBD_MODE_BIT_TRIGGER_25,
1081 KBD_MODE_BIT_TRIGGER_50,
1082 KBD_MODE_BIT_TRIGGER_75,
1083 KBD_MODE_BIT_TRIGGER_100,
1086 #define kbd_is_als_mode_bit(bit) \
1087 ((bit) == KBD_MODE_BIT_ALS || (bit) == KBD_MODE_BIT_TRIGGER_ALS)
1088 #define kbd_is_trigger_mode_bit(bit) \
1089 ((bit) >= KBD_MODE_BIT_TRIGGER_ALS && (bit) <= KBD_MODE_BIT_TRIGGER_100)
1090 #define kbd_is_level_mode_bit(bit) \
1091 ((bit) >= KBD_MODE_BIT_TRIGGER_25 && (bit) <= KBD_MODE_BIT_TRIGGER_100)
1114 static const int kbd_tokens[] = {
1116 KBD_LED_AUTO_25_TOKEN,
1117 KBD_LED_AUTO_50_TOKEN,
1118 KBD_LED_AUTO_75_TOKEN,
1119 KBD_LED_AUTO_100_TOKEN,
1123 static u16 kbd_token_bits;
1125 static struct kbd_info kbd_info;
1126 static bool kbd_als_supported;
1127 static bool kbd_triggers_supported;
1129 static u8 kbd_mode_levels[16];
1130 static int kbd_mode_levels_count;
1132 static u8 kbd_previous_level;
1133 static u8 kbd_previous_mode_bit;
1135 static bool kbd_led_present;
1138 * NOTE: there are three ways to set the keyboard backlight level.
1139 * First, via kbd_state.mode_bit (assigning KBD_MODE_BIT_TRIGGER_* value).
1140 * Second, via kbd_state.level (assigning numerical value <= kbd_info.levels).
1141 * Third, via SMBIOS tokens (KBD_LED_* in kbd_tokens)
1143 * There are laptops which support only one of these methods. If we want to
1144 * support as many machines as possible we need to implement all three methods.
1145 * The first two methods use the kbd_state structure. The third uses SMBIOS
1146 * tokens. If kbd_info.levels == 0, the machine does not support setting the
1147 * keyboard backlight level via kbd_state.level.
1150 static int kbd_get_info(struct kbd_info *info)
1152 struct calling_interface_buffer *buffer;
1156 buffer = dell_smbios_get_buffer();
1158 buffer->input[0] = 0x0;
1159 dell_smbios_send_request(4, 11);
1160 ret = buffer->output[0];
1163 ret = dell_smbios_error(ret);
1167 info->modes = buffer->output[1] & 0xFFFF;
1168 info->type = (buffer->output[1] >> 24) & 0xFF;
1169 info->triggers = buffer->output[2] & 0xFF;
1170 units = (buffer->output[2] >> 8) & 0xFF;
1171 info->levels = (buffer->output[2] >> 16) & 0xFF;
1174 info->seconds = (buffer->output[3] >> 0) & 0xFF;
1176 info->minutes = (buffer->output[3] >> 8) & 0xFF;
1178 info->hours = (buffer->output[3] >> 16) & 0xFF;
1180 info->days = (buffer->output[3] >> 24) & 0xFF;
1183 dell_smbios_release_buffer();
1187 static unsigned int kbd_get_max_level(void)
1189 if (kbd_info.levels != 0)
1190 return kbd_info.levels;
1191 if (kbd_mode_levels_count > 0)
1192 return kbd_mode_levels_count - 1;
1196 static int kbd_get_level(struct kbd_state *state)
1200 if (kbd_info.levels != 0)
1201 return state->level;
1203 if (kbd_mode_levels_count > 0) {
1204 for (i = 0; i < kbd_mode_levels_count; ++i)
1205 if (kbd_mode_levels[i] == state->mode_bit)
1213 static int kbd_set_level(struct kbd_state *state, u8 level)
1215 if (kbd_info.levels != 0) {
1217 kbd_previous_level = level;
1218 if (state->level == level)
1220 state->level = level;
1221 if (level != 0 && state->mode_bit == KBD_MODE_BIT_OFF)
1222 state->mode_bit = kbd_previous_mode_bit;
1223 else if (level == 0 && state->mode_bit != KBD_MODE_BIT_OFF) {
1224 kbd_previous_mode_bit = state->mode_bit;
1225 state->mode_bit = KBD_MODE_BIT_OFF;
1230 if (kbd_mode_levels_count > 0 && level < kbd_mode_levels_count) {
1232 kbd_previous_level = level;
1233 state->mode_bit = kbd_mode_levels[level];
1240 static int kbd_get_state(struct kbd_state *state)
1242 struct calling_interface_buffer *buffer;
1245 buffer = dell_smbios_get_buffer();
1247 buffer->input[0] = 0x1;
1248 dell_smbios_send_request(4, 11);
1249 ret = buffer->output[0];
1252 ret = dell_smbios_error(ret);
1256 state->mode_bit = ffs(buffer->output[1] & 0xFFFF);
1257 if (state->mode_bit != 0)
1260 state->triggers = (buffer->output[1] >> 16) & 0xFF;
1261 state->timeout_value = (buffer->output[1] >> 24) & 0x3F;
1262 state->timeout_unit = (buffer->output[1] >> 30) & 0x3;
1263 state->als_setting = buffer->output[2] & 0xFF;
1264 state->als_value = (buffer->output[2] >> 8) & 0xFF;
1265 state->level = (buffer->output[2] >> 16) & 0xFF;
1268 dell_smbios_release_buffer();
1272 static int kbd_set_state(struct kbd_state *state)
1274 struct calling_interface_buffer *buffer;
1277 buffer = dell_smbios_get_buffer();
1278 buffer->input[0] = 0x2;
1279 buffer->input[1] = BIT(state->mode_bit) & 0xFFFF;
1280 buffer->input[1] |= (state->triggers & 0xFF) << 16;
1281 buffer->input[1] |= (state->timeout_value & 0x3F) << 24;
1282 buffer->input[1] |= (state->timeout_unit & 0x3) << 30;
1283 buffer->input[2] = state->als_setting & 0xFF;
1284 buffer->input[2] |= (state->level & 0xFF) << 16;
1285 dell_smbios_send_request(4, 11);
1286 ret = buffer->output[0];
1287 dell_smbios_release_buffer();
1289 return dell_smbios_error(ret);
1292 static int kbd_set_state_safe(struct kbd_state *state, struct kbd_state *old)
1296 ret = kbd_set_state(state);
1301 * When setting the new state fails,try to restore the previous one.
1302 * This is needed on some machines where BIOS sets a default state when
1303 * setting a new state fails. This default state could be all off.
1306 if (kbd_set_state(old))
1307 pr_err("Setting old previous keyboard state failed\n");
1312 static int kbd_set_token_bit(u8 bit)
1314 struct calling_interface_buffer *buffer;
1315 struct calling_interface_token *token;
1318 if (bit >= ARRAY_SIZE(kbd_tokens))
1321 token = dell_smbios_find_token(kbd_tokens[bit]);
1325 buffer = dell_smbios_get_buffer();
1326 buffer->input[0] = token->location;
1327 buffer->input[1] = token->value;
1328 dell_smbios_send_request(1, 0);
1329 ret = buffer->output[0];
1330 dell_smbios_release_buffer();
1332 return dell_smbios_error(ret);
1335 static int kbd_get_token_bit(u8 bit)
1337 struct calling_interface_buffer *buffer;
1338 struct calling_interface_token *token;
1342 if (bit >= ARRAY_SIZE(kbd_tokens))
1345 token = dell_smbios_find_token(kbd_tokens[bit]);
1349 buffer = dell_smbios_get_buffer();
1350 buffer->input[0] = token->location;
1351 dell_smbios_send_request(0, 0);
1352 ret = buffer->output[0];
1353 val = buffer->output[1];
1354 dell_smbios_release_buffer();
1357 return dell_smbios_error(ret);
1359 return (val == token->value);
1362 static int kbd_get_first_active_token_bit(void)
1367 for (i = 0; i < ARRAY_SIZE(kbd_tokens); ++i) {
1368 ret = kbd_get_token_bit(i);
1376 static int kbd_get_valid_token_counts(void)
1378 return hweight16(kbd_token_bits);
1381 static inline int kbd_init_info(void)
1383 struct kbd_state state;
1387 ret = kbd_get_info(&kbd_info);
1391 kbd_get_state(&state);
1393 /* NOTE: timeout value is stored in 6 bits so max value is 63 */
1394 if (kbd_info.seconds > 63)
1395 kbd_info.seconds = 63;
1396 if (kbd_info.minutes > 63)
1397 kbd_info.minutes = 63;
1398 if (kbd_info.hours > 63)
1399 kbd_info.hours = 63;
1400 if (kbd_info.days > 63)
1403 /* NOTE: On tested machines ON mode did not work and caused
1404 * problems (turned backlight off) so do not use it
1406 kbd_info.modes &= ~BIT(KBD_MODE_BIT_ON);
1408 kbd_previous_level = kbd_get_level(&state);
1409 kbd_previous_mode_bit = state.mode_bit;
1411 if (kbd_previous_level == 0 && kbd_get_max_level() != 0)
1412 kbd_previous_level = 1;
1414 if (kbd_previous_mode_bit == KBD_MODE_BIT_OFF) {
1415 kbd_previous_mode_bit =
1416 ffs(kbd_info.modes & ~BIT(KBD_MODE_BIT_OFF));
1417 if (kbd_previous_mode_bit != 0)
1418 kbd_previous_mode_bit--;
1421 if (kbd_info.modes & (BIT(KBD_MODE_BIT_ALS) |
1422 BIT(KBD_MODE_BIT_TRIGGER_ALS)))
1423 kbd_als_supported = true;
1425 if (kbd_info.modes & (
1426 BIT(KBD_MODE_BIT_TRIGGER_ALS) | BIT(KBD_MODE_BIT_TRIGGER) |
1427 BIT(KBD_MODE_BIT_TRIGGER_25) | BIT(KBD_MODE_BIT_TRIGGER_50) |
1428 BIT(KBD_MODE_BIT_TRIGGER_75) | BIT(KBD_MODE_BIT_TRIGGER_100)
1430 kbd_triggers_supported = true;
1432 /* kbd_mode_levels[0] is reserved, see below */
1433 for (i = 0; i < 16; ++i)
1434 if (kbd_is_level_mode_bit(i) && (BIT(i) & kbd_info.modes))
1435 kbd_mode_levels[1 + kbd_mode_levels_count++] = i;
1438 * Find the first supported mode and assign to kbd_mode_levels[0].
1439 * This should be 0 (off), but we cannot depend on the BIOS to
1442 if (kbd_mode_levels_count > 0) {
1443 for (i = 0; i < 16; ++i) {
1444 if (BIT(i) & kbd_info.modes) {
1445 kbd_mode_levels[0] = i;
1449 kbd_mode_levels_count++;
1456 static inline void kbd_init_tokens(void)
1460 for (i = 0; i < ARRAY_SIZE(kbd_tokens); ++i)
1461 if (dell_smbios_find_token(kbd_tokens[i]))
1462 kbd_token_bits |= BIT(i);
1465 static void kbd_init(void)
1469 ret = kbd_init_info();
1472 if (kbd_token_bits != 0 || ret == 0)
1473 kbd_led_present = true;
1476 static ssize_t kbd_led_timeout_store(struct device *dev,
1477 struct device_attribute *attr,
1478 const char *buf, size_t count)
1480 struct kbd_state new_state;
1481 struct kbd_state state;
1489 ret = sscanf(buf, "%d %c", &value, &ch);
1502 if (value > kbd_info.seconds)
1504 unit = KBD_TIMEOUT_SECONDS;
1507 if (value > kbd_info.minutes)
1509 unit = KBD_TIMEOUT_MINUTES;
1512 if (value > kbd_info.hours)
1514 unit = KBD_TIMEOUT_HOURS;
1517 if (value > kbd_info.days)
1519 unit = KBD_TIMEOUT_DAYS;
1525 if (quirks && quirks->needs_kbd_timeouts)
1529 /* Convert value from current units to seconds */
1531 case KBD_TIMEOUT_DAYS:
1533 case KBD_TIMEOUT_HOURS:
1535 case KBD_TIMEOUT_MINUTES:
1537 unit = KBD_TIMEOUT_SECONDS;
1540 if (quirks && quirks->needs_kbd_timeouts) {
1541 for (i = 0; quirks->kbd_timeouts[i] != -1; i++) {
1542 if (value <= quirks->kbd_timeouts[i]) {
1543 value = quirks->kbd_timeouts[i];
1549 if (value <= kbd_info.seconds && kbd_info.seconds) {
1550 unit = KBD_TIMEOUT_SECONDS;
1551 } else if (value / 60 <= kbd_info.minutes && kbd_info.minutes) {
1553 unit = KBD_TIMEOUT_MINUTES;
1554 } else if (value / (60 * 60) <= kbd_info.hours && kbd_info.hours) {
1556 unit = KBD_TIMEOUT_HOURS;
1557 } else if (value / (60 * 60 * 24) <= kbd_info.days && kbd_info.days) {
1558 value /= (60 * 60 * 24);
1559 unit = KBD_TIMEOUT_DAYS;
1565 ret = kbd_get_state(&state);
1570 new_state.timeout_value = value;
1571 new_state.timeout_unit = unit;
1573 ret = kbd_set_state_safe(&new_state, &state);
1580 static ssize_t kbd_led_timeout_show(struct device *dev,
1581 struct device_attribute *attr, char *buf)
1583 struct kbd_state state;
1587 ret = kbd_get_state(&state);
1591 len = sprintf(buf, "%d", state.timeout_value);
1593 switch (state.timeout_unit) {
1594 case KBD_TIMEOUT_SECONDS:
1595 return len + sprintf(buf+len, "s\n");
1596 case KBD_TIMEOUT_MINUTES:
1597 return len + sprintf(buf+len, "m\n");
1598 case KBD_TIMEOUT_HOURS:
1599 return len + sprintf(buf+len, "h\n");
1600 case KBD_TIMEOUT_DAYS:
1601 return len + sprintf(buf+len, "d\n");
1609 static DEVICE_ATTR(stop_timeout, S_IRUGO | S_IWUSR,
1610 kbd_led_timeout_show, kbd_led_timeout_store);
1612 static const char * const kbd_led_triggers[] = {
1615 /*"trackstick"*/ NULL, /* NOTE: trackstick is just alias for touchpad */
1619 static ssize_t kbd_led_triggers_store(struct device *dev,
1620 struct device_attribute *attr,
1621 const char *buf, size_t count)
1623 struct kbd_state new_state;
1624 struct kbd_state state;
1625 bool triggers_enabled = false;
1626 int trigger_bit = -1;
1630 ret = sscanf(buf, "%20s", trigger);
1634 if (trigger[0] != '+' && trigger[0] != '-')
1637 ret = kbd_get_state(&state);
1641 if (kbd_triggers_supported)
1642 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1644 if (kbd_triggers_supported) {
1645 for (i = 0; i < ARRAY_SIZE(kbd_led_triggers); ++i) {
1646 if (!(kbd_info.triggers & BIT(i)))
1648 if (!kbd_led_triggers[i])
1650 if (strcmp(trigger+1, kbd_led_triggers[i]) != 0)
1652 if (trigger[0] == '+' &&
1653 triggers_enabled && (state.triggers & BIT(i)))
1655 if (trigger[0] == '-' &&
1656 (!triggers_enabled || !(state.triggers & BIT(i))))
1663 if (trigger_bit != -1) {
1665 if (trigger[0] == '+')
1666 new_state.triggers |= BIT(trigger_bit);
1668 new_state.triggers &= ~BIT(trigger_bit);
1669 /* NOTE: trackstick bit (2) must be disabled when
1670 * disabling touchpad bit (1), otherwise touchpad
1671 * bit (1) will not be disabled */
1672 if (trigger_bit == 1)
1673 new_state.triggers &= ~BIT(2);
1675 if ((kbd_info.triggers & new_state.triggers) !=
1678 if (new_state.triggers && !triggers_enabled) {
1679 new_state.mode_bit = KBD_MODE_BIT_TRIGGER;
1680 kbd_set_level(&new_state, kbd_previous_level);
1681 } else if (new_state.triggers == 0) {
1682 kbd_set_level(&new_state, 0);
1684 if (!(kbd_info.modes & BIT(new_state.mode_bit)))
1686 ret = kbd_set_state_safe(&new_state, &state);
1689 if (new_state.mode_bit != KBD_MODE_BIT_OFF)
1690 kbd_previous_mode_bit = new_state.mode_bit;
1697 static ssize_t kbd_led_triggers_show(struct device *dev,
1698 struct device_attribute *attr, char *buf)
1700 struct kbd_state state;
1701 bool triggers_enabled;
1705 ret = kbd_get_state(&state);
1711 if (kbd_triggers_supported) {
1712 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1713 level = kbd_get_level(&state);
1714 for (i = 0; i < ARRAY_SIZE(kbd_led_triggers); ++i) {
1715 if (!(kbd_info.triggers & BIT(i)))
1717 if (!kbd_led_triggers[i])
1719 if ((triggers_enabled || level <= 0) &&
1720 (state.triggers & BIT(i)))
1724 len += sprintf(buf+len, "%s ", kbd_led_triggers[i]);
1729 buf[len - 1] = '\n';
1734 static DEVICE_ATTR(start_triggers, S_IRUGO | S_IWUSR,
1735 kbd_led_triggers_show, kbd_led_triggers_store);
1737 static ssize_t kbd_led_als_enabled_store(struct device *dev,
1738 struct device_attribute *attr,
1739 const char *buf, size_t count)
1741 struct kbd_state new_state;
1742 struct kbd_state state;
1743 bool triggers_enabled = false;
1747 ret = kstrtoint(buf, 0, &enable);
1751 ret = kbd_get_state(&state);
1755 if (enable == kbd_is_als_mode_bit(state.mode_bit))
1760 if (kbd_triggers_supported)
1761 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1764 if (triggers_enabled)
1765 new_state.mode_bit = KBD_MODE_BIT_TRIGGER_ALS;
1767 new_state.mode_bit = KBD_MODE_BIT_ALS;
1769 if (triggers_enabled) {
1770 new_state.mode_bit = KBD_MODE_BIT_TRIGGER;
1771 kbd_set_level(&new_state, kbd_previous_level);
1773 new_state.mode_bit = KBD_MODE_BIT_ON;
1776 if (!(kbd_info.modes & BIT(new_state.mode_bit)))
1779 ret = kbd_set_state_safe(&new_state, &state);
1782 kbd_previous_mode_bit = new_state.mode_bit;
1787 static ssize_t kbd_led_als_enabled_show(struct device *dev,
1788 struct device_attribute *attr,
1791 struct kbd_state state;
1792 bool enabled = false;
1795 ret = kbd_get_state(&state);
1798 enabled = kbd_is_als_mode_bit(state.mode_bit);
1800 return sprintf(buf, "%d\n", enabled ? 1 : 0);
1803 static DEVICE_ATTR(als_enabled, S_IRUGO | S_IWUSR,
1804 kbd_led_als_enabled_show, kbd_led_als_enabled_store);
1806 static ssize_t kbd_led_als_setting_store(struct device *dev,
1807 struct device_attribute *attr,
1808 const char *buf, size_t count)
1810 struct kbd_state state;
1811 struct kbd_state new_state;
1815 ret = kstrtou8(buf, 10, &setting);
1819 ret = kbd_get_state(&state);
1824 new_state.als_setting = setting;
1826 ret = kbd_set_state_safe(&new_state, &state);
1833 static ssize_t kbd_led_als_setting_show(struct device *dev,
1834 struct device_attribute *attr,
1837 struct kbd_state state;
1840 ret = kbd_get_state(&state);
1844 return sprintf(buf, "%d\n", state.als_setting);
1847 static DEVICE_ATTR(als_setting, S_IRUGO | S_IWUSR,
1848 kbd_led_als_setting_show, kbd_led_als_setting_store);
1850 static struct attribute *kbd_led_attrs[] = {
1851 &dev_attr_stop_timeout.attr,
1852 &dev_attr_start_triggers.attr,
1856 static const struct attribute_group kbd_led_group = {
1857 .attrs = kbd_led_attrs,
1860 static struct attribute *kbd_led_als_attrs[] = {
1861 &dev_attr_als_enabled.attr,
1862 &dev_attr_als_setting.attr,
1866 static const struct attribute_group kbd_led_als_group = {
1867 .attrs = kbd_led_als_attrs,
1870 static const struct attribute_group *kbd_led_groups[] = {
1876 static enum led_brightness kbd_led_level_get(struct led_classdev *led_cdev)
1880 struct kbd_state state;
1882 if (kbd_get_max_level()) {
1883 ret = kbd_get_state(&state);
1886 ret = kbd_get_level(&state);
1892 if (kbd_get_valid_token_counts()) {
1893 ret = kbd_get_first_active_token_bit();
1896 for (num = kbd_token_bits; num != 0 && ret > 0; --ret)
1897 num &= num - 1; /* clear the first bit set */
1900 return ffs(num) - 1;
1903 pr_warn("Keyboard brightness level control not supported\n");
1907 static void kbd_led_level_set(struct led_classdev *led_cdev,
1908 enum led_brightness value)
1910 struct kbd_state state;
1911 struct kbd_state new_state;
1914 if (kbd_get_max_level()) {
1915 if (kbd_get_state(&state))
1918 if (kbd_set_level(&new_state, value))
1920 kbd_set_state_safe(&new_state, &state);
1924 if (kbd_get_valid_token_counts()) {
1925 for (num = kbd_token_bits; num != 0 && value > 0; --value)
1926 num &= num - 1; /* clear the first bit set */
1929 kbd_set_token_bit(ffs(num) - 1);
1933 pr_warn("Keyboard brightness level control not supported\n");
1936 static struct led_classdev kbd_led = {
1937 .name = "dell::kbd_backlight",
1938 .brightness_set = kbd_led_level_set,
1939 .brightness_get = kbd_led_level_get,
1940 .groups = kbd_led_groups,
1943 static int __init kbd_led_init(struct device *dev)
1946 if (!kbd_led_present)
1948 if (!kbd_als_supported)
1949 kbd_led_groups[1] = NULL;
1950 kbd_led.max_brightness = kbd_get_max_level();
1951 if (!kbd_led.max_brightness) {
1952 kbd_led.max_brightness = kbd_get_valid_token_counts();
1953 if (kbd_led.max_brightness)
1954 kbd_led.max_brightness--;
1956 return led_classdev_register(dev, &kbd_led);
1959 static void brightness_set_exit(struct led_classdev *led_cdev,
1960 enum led_brightness value)
1962 /* Don't change backlight level on exit */
1965 static void kbd_led_exit(void)
1967 if (!kbd_led_present)
1969 kbd_led.brightness_set = brightness_set_exit;
1970 led_classdev_unregister(&kbd_led);
1973 static int __init dell_init(void)
1975 struct calling_interface_buffer *buffer;
1976 struct calling_interface_token *token;
1977 int max_intensity = 0;
1980 if (!dmi_check_system(dell_device_table))
1984 /* find if this machine support other functions */
1985 dmi_check_system(dell_quirks);
1987 ret = platform_driver_register(&platform_driver);
1989 goto fail_platform_driver;
1990 platform_device = platform_device_alloc("dell-laptop", -1);
1991 if (!platform_device) {
1993 goto fail_platform_device1;
1995 ret = platform_device_add(platform_device);
1997 goto fail_platform_device2;
1999 ret = dell_setup_rfkill();
2002 pr_warn("Unable to setup rfkill\n");
2006 if (quirks && quirks->touchpad_led)
2007 touchpad_led_init(&platform_device->dev);
2009 kbd_led_init(&platform_device->dev);
2011 dell_laptop_dir = debugfs_create_dir("dell_laptop", NULL);
2012 if (dell_laptop_dir != NULL)
2013 debugfs_create_file("rfkill", 0444, dell_laptop_dir, NULL,
2014 &dell_debugfs_fops);
2016 if (acpi_video_get_backlight_type() != acpi_backlight_vendor)
2019 token = dell_smbios_find_token(BRIGHTNESS_TOKEN);
2021 buffer = dell_smbios_get_buffer();
2022 buffer->input[0] = token->location;
2023 dell_smbios_send_request(0, 2);
2024 if (buffer->output[0] == 0)
2025 max_intensity = buffer->output[3];
2026 dell_smbios_release_buffer();
2029 if (max_intensity) {
2030 struct backlight_properties props;
2031 memset(&props, 0, sizeof(struct backlight_properties));
2032 props.type = BACKLIGHT_PLATFORM;
2033 props.max_brightness = max_intensity;
2034 dell_backlight_device = backlight_device_register("dell_backlight",
2035 &platform_device->dev,
2040 if (IS_ERR(dell_backlight_device)) {
2041 ret = PTR_ERR(dell_backlight_device);
2042 dell_backlight_device = NULL;
2043 goto fail_backlight;
2046 dell_backlight_device->props.brightness =
2047 dell_get_intensity(dell_backlight_device);
2048 backlight_update_status(dell_backlight_device);
2054 dell_cleanup_rfkill();
2056 platform_device_del(platform_device);
2057 fail_platform_device2:
2058 platform_device_put(platform_device);
2059 fail_platform_device1:
2060 platform_driver_unregister(&platform_driver);
2061 fail_platform_driver:
2065 static void __exit dell_exit(void)
2067 debugfs_remove_recursive(dell_laptop_dir);
2068 if (quirks && quirks->touchpad_led)
2069 touchpad_led_exit();
2071 backlight_device_unregister(dell_backlight_device);
2072 dell_cleanup_rfkill();
2073 if (platform_device) {
2074 platform_device_unregister(platform_device);
2075 platform_driver_unregister(&platform_driver);
2079 /* dell-rbtn.c driver export functions which will not work correctly (and could
2080 * cause kernel crash) if they are called before dell-rbtn.c init code. This is
2081 * not problem when dell-rbtn.c is compiled as external module. When both files
2082 * (dell-rbtn.c and dell-laptop.c) are compiled statically into kernel, then we
2083 * need to ensure that dell_init() will be called after initializing dell-rbtn.
2084 * This can be achieved by late_initcall() instead module_init().
2086 late_initcall(dell_init);
2087 module_exit(dell_exit);
2092 MODULE_DESCRIPTION("Dell laptop driver");
2093 MODULE_LICENSE("GPL");