2 * Driver for Dell laptop extras
4 * Copyright (c) Red Hat <mjg@redhat.com>
6 * Based on documentation in the libsmbios package, Copyright (C) 2005 Dell
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/backlight.h>
21 #include <linux/err.h>
22 #include <linux/dmi.h>
24 #include <linux/rfkill.h>
25 #include <linux/power_supply.h>
26 #include <linux/acpi.h>
28 #include <linux/i8042.h>
29 #include <linux/slab.h>
30 #include <linux/debugfs.h>
31 #include <linux/seq_file.h>
32 #include "../../firmware/dcdbas.h"
34 #define BRIGHTNESS_TOKEN 0x7d
36 /* This structure will be modified by the firmware when we enter
37 * system management mode, hence the volatiles */
39 struct calling_interface_buffer
{
42 volatile u32 input
[4];
43 volatile u32 output
[4];
46 struct calling_interface_token
{
55 struct calling_interface_structure
{
56 struct dmi_header header
;
60 struct calling_interface_token tokens
[];
67 static struct quirk_entry
*quirks
;
69 static struct quirk_entry quirk_dell_vostro_v130
= {
73 static int dmi_matched(const struct dmi_system_id
*dmi
)
75 quirks
= dmi
->driver_data
;
79 static int da_command_address
;
80 static int da_command_code
;
81 static int da_num_tokens
;
82 static struct calling_interface_token
*da_tokens
;
84 static struct platform_driver platform_driver
= {
86 .name
= "dell-laptop",
91 static struct platform_device
*platform_device
;
92 static struct backlight_device
*dell_backlight_device
;
93 static struct rfkill
*wifi_rfkill
;
94 static struct rfkill
*bluetooth_rfkill
;
95 static struct rfkill
*wwan_rfkill
;
97 static const struct dmi_system_id __initdata dell_device_table
[] = {
99 .ident
= "Dell laptop",
101 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
102 DMI_MATCH(DMI_CHASSIS_TYPE
, "8"),
107 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
108 DMI_MATCH(DMI_CHASSIS_TYPE
, "9"), /*Laptop*/
112 .ident
= "Dell Computer Corporation",
114 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer Corporation"),
115 DMI_MATCH(DMI_CHASSIS_TYPE
, "8"),
121 static struct dmi_system_id __devinitdata dell_blacklist
[] = {
122 /* Supported by compal-laptop */
124 .ident
= "Dell Mini 9",
126 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
127 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 910"),
131 .ident
= "Dell Mini 10",
133 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
134 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 1010"),
138 .ident
= "Dell Mini 10v",
140 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
141 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 1011"),
145 .ident
= "Dell Mini 1012",
147 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
148 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 1012"),
152 .ident
= "Dell Inspiron 11z",
154 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
155 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 1110"),
159 .ident
= "Dell Mini 12",
161 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
162 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron 1210"),
168 static struct dmi_system_id __devinitdata dell_quirks
[] = {
170 .callback
= dmi_matched
,
171 .ident
= "Dell Vostro V130",
173 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
174 DMI_MATCH(DMI_PRODUCT_NAME
, "Vostro V130"),
176 .driver_data
= &quirk_dell_vostro_v130
,
179 .callback
= dmi_matched
,
180 .ident
= "Dell Vostro V131",
182 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
183 DMI_MATCH(DMI_PRODUCT_NAME
, "Vostro V131"),
185 .driver_data
= &quirk_dell_vostro_v130
,
189 static struct calling_interface_buffer
*buffer
;
190 static struct page
*bufferpage
;
191 static DEFINE_MUTEX(buffer_mutex
);
193 static int hwswitch_state
;
195 static void get_buffer(void)
197 mutex_lock(&buffer_mutex
);
198 memset(buffer
, 0, sizeof(struct calling_interface_buffer
));
201 static void release_buffer(void)
203 mutex_unlock(&buffer_mutex
);
206 static void __init
parse_da_table(const struct dmi_header
*dm
)
208 /* Final token is a terminator, so we don't want to copy it */
209 int tokens
= (dm
->length
-11)/sizeof(struct calling_interface_token
)-1;
210 struct calling_interface_structure
*table
=
211 container_of(dm
, struct calling_interface_structure
, header
);
213 /* 4 bytes of table header, plus 7 bytes of Dell header, plus at least
219 da_command_address
= table
->cmdIOAddress
;
220 da_command_code
= table
->cmdIOCode
;
222 da_tokens
= krealloc(da_tokens
, (da_num_tokens
+ tokens
) *
223 sizeof(struct calling_interface_token
),
229 memcpy(da_tokens
+da_num_tokens
, table
->tokens
,
230 sizeof(struct calling_interface_token
) * tokens
);
232 da_num_tokens
+= tokens
;
235 static void __init
find_tokens(const struct dmi_header
*dm
, void *dummy
)
238 case 0xd4: /* Indexed IO */
240 case 0xd5: /* Protected Area Type 1 */
242 case 0xd6: /* Protected Area Type 2 */
244 case 0xda: /* Calling interface */
250 static int find_token_location(int tokenid
)
253 for (i
= 0; i
< da_num_tokens
; i
++) {
254 if (da_tokens
[i
].tokenID
== tokenid
)
255 return da_tokens
[i
].location
;
261 static struct calling_interface_buffer
*
262 dell_send_request(struct calling_interface_buffer
*buffer
, int class,
265 struct smi_cmd command
;
267 command
.magic
= SMI_CMD_MAGIC
;
268 command
.command_address
= da_command_address
;
269 command
.command_code
= da_command_code
;
270 command
.ebx
= virt_to_phys(buffer
);
271 command
.ecx
= 0x42534931;
273 buffer
->class = class;
274 buffer
->select
= select
;
276 dcdbas_smi_request(&command
);
281 /* Derived from information in DellWirelessCtl.cpp:
282 Class 17, select 11 is radio control. It returns an array of 32-bit values.
284 Input byte 0 = 0: Wireless information
286 result[0]: return code
288 Bit 0: Hardware switch supported
289 Bit 1: Wifi locator supported
290 Bit 2: Wifi is supported
291 Bit 3: Bluetooth is supported
292 Bit 4: WWAN is supported
293 Bit 5: Wireless keyboard supported
295 Bit 8: Wifi is installed
296 Bit 9: Bluetooth is installed
297 Bit 10: WWAN is installed
299 Bit 16: Hardware switch is on
300 Bit 17: Wifi is blocked
301 Bit 18: Bluetooth is blocked
302 Bit 19: WWAN is blocked
304 result[2]: NVRAM size in bytes
305 result[3]: NVRAM format version number
307 Input byte 0 = 2: Wireless switch configuration
308 result[0]: return code
310 Bit 0: Wifi controlled by switch
311 Bit 1: Bluetooth controlled by switch
312 Bit 2: WWAN controlled by switch
314 Bit 7: Wireless switch config locked
315 Bit 8: Wifi locator enabled
317 Bit 15: Wifi locator setting locked
321 static int dell_rfkill_set(void *data
, bool blocked
)
323 int disable
= blocked
? 1 : 0;
324 unsigned long radio
= (unsigned long)data
;
325 int hwswitch_bit
= (unsigned long)data
- 1;
329 dell_send_request(buffer
, 17, 11);
331 /* If the hardware switch controls this radio, and the hardware
332 switch is disabled, don't allow changing the software state */
333 if ((hwswitch_state
& BIT(hwswitch_bit
)) &&
334 !(buffer
->output
[1] & BIT(16))) {
339 buffer
->input
[0] = (1 | (radio
<<8) | (disable
<< 16));
340 dell_send_request(buffer
, 17, 11);
347 static void dell_rfkill_query(struct rfkill
*rfkill
, void *data
)
350 int bit
= (unsigned long)data
+ 16;
351 int hwswitch_bit
= (unsigned long)data
- 1;
354 dell_send_request(buffer
, 17, 11);
355 status
= buffer
->output
[1];
358 rfkill_set_sw_state(rfkill
, !!(status
& BIT(bit
)));
360 if (hwswitch_state
& (BIT(hwswitch_bit
)))
361 rfkill_set_hw_state(rfkill
, !(status
& BIT(16)));
364 static const struct rfkill_ops dell_rfkill_ops
= {
365 .set_block
= dell_rfkill_set
,
366 .query
= dell_rfkill_query
,
369 static struct dentry
*dell_laptop_dir
;
371 static int dell_debugfs_show(struct seq_file
*s
, void *data
)
376 dell_send_request(buffer
, 17, 11);
377 status
= buffer
->output
[1];
380 seq_printf(s
, "status:\t0x%X\n", status
);
381 seq_printf(s
, "Bit 0 : Hardware switch supported: %lu\n",
383 seq_printf(s
, "Bit 1 : Wifi locator supported: %lu\n",
384 (status
& BIT(1)) >> 1);
385 seq_printf(s
, "Bit 2 : Wifi is supported: %lu\n",
386 (status
& BIT(2)) >> 2);
387 seq_printf(s
, "Bit 3 : Bluetooth is supported: %lu\n",
388 (status
& BIT(3)) >> 3);
389 seq_printf(s
, "Bit 4 : WWAN is supported: %lu\n",
390 (status
& BIT(4)) >> 4);
391 seq_printf(s
, "Bit 5 : Wireless keyboard supported: %lu\n",
392 (status
& BIT(5)) >> 5);
393 seq_printf(s
, "Bit 8 : Wifi is installed: %lu\n",
394 (status
& BIT(8)) >> 8);
395 seq_printf(s
, "Bit 9 : Bluetooth is installed: %lu\n",
396 (status
& BIT(9)) >> 9);
397 seq_printf(s
, "Bit 10: WWAN is installed: %lu\n",
398 (status
& BIT(10)) >> 10);
399 seq_printf(s
, "Bit 16: Hardware switch is on: %lu\n",
400 (status
& BIT(16)) >> 16);
401 seq_printf(s
, "Bit 17: Wifi is blocked: %lu\n",
402 (status
& BIT(17)) >> 17);
403 seq_printf(s
, "Bit 18: Bluetooth is blocked: %lu\n",
404 (status
& BIT(18)) >> 18);
405 seq_printf(s
, "Bit 19: WWAN is blocked: %lu\n",
406 (status
& BIT(19)) >> 19);
408 seq_printf(s
, "\nhwswitch_state:\t0x%X\n", hwswitch_state
);
409 seq_printf(s
, "Bit 0 : Wifi controlled by switch: %lu\n",
410 hwswitch_state
& BIT(0));
411 seq_printf(s
, "Bit 1 : Bluetooth controlled by switch: %lu\n",
412 (hwswitch_state
& BIT(1)) >> 1);
413 seq_printf(s
, "Bit 2 : WWAN controlled by switch: %lu\n",
414 (hwswitch_state
& BIT(2)) >> 2);
415 seq_printf(s
, "Bit 7 : Wireless switch config locked: %lu\n",
416 (hwswitch_state
& BIT(7)) >> 7);
417 seq_printf(s
, "Bit 8 : Wifi locator enabled: %lu\n",
418 (hwswitch_state
& BIT(8)) >> 8);
419 seq_printf(s
, "Bit 15: Wifi locator setting locked: %lu\n",
420 (hwswitch_state
& BIT(15)) >> 15);
425 static int dell_debugfs_open(struct inode
*inode
, struct file
*file
)
427 return single_open(file
, dell_debugfs_show
, inode
->i_private
);
430 static const struct file_operations dell_debugfs_fops
= {
431 .owner
= THIS_MODULE
,
432 .open
= dell_debugfs_open
,
435 .release
= single_release
,
438 static void dell_update_rfkill(struct work_struct
*ignored
)
441 dell_rfkill_query(wifi_rfkill
, (void *)1);
442 if (bluetooth_rfkill
)
443 dell_rfkill_query(bluetooth_rfkill
, (void *)2);
445 dell_rfkill_query(wwan_rfkill
, (void *)3);
447 static DECLARE_DELAYED_WORK(dell_rfkill_work
, dell_update_rfkill
);
450 static int __init
dell_setup_rfkill(void)
455 if (dmi_check_system(dell_blacklist
)) {
456 pr_info("Blacklisted hardware detected - not enabling rfkill\n");
461 dell_send_request(buffer
, 17, 11);
462 status
= buffer
->output
[1];
463 buffer
->input
[0] = 0x2;
464 dell_send_request(buffer
, 17, 11);
465 hwswitch_state
= buffer
->output
[1];
468 if ((status
& (1<<2|1<<8)) == (1<<2|1<<8)) {
469 wifi_rfkill
= rfkill_alloc("dell-wifi", &platform_device
->dev
,
471 &dell_rfkill_ops
, (void *) 1);
476 ret
= rfkill_register(wifi_rfkill
);
481 if ((status
& (1<<3|1<<9)) == (1<<3|1<<9)) {
482 bluetooth_rfkill
= rfkill_alloc("dell-bluetooth",
483 &platform_device
->dev
,
484 RFKILL_TYPE_BLUETOOTH
,
485 &dell_rfkill_ops
, (void *) 2);
486 if (!bluetooth_rfkill
) {
490 ret
= rfkill_register(bluetooth_rfkill
);
495 if ((status
& (1<<4|1<<10)) == (1<<4|1<<10)) {
496 wwan_rfkill
= rfkill_alloc("dell-wwan",
497 &platform_device
->dev
,
499 &dell_rfkill_ops
, (void *) 3);
504 ret
= rfkill_register(wwan_rfkill
);
511 rfkill_destroy(wwan_rfkill
);
512 if (bluetooth_rfkill
)
513 rfkill_unregister(bluetooth_rfkill
);
515 rfkill_destroy(bluetooth_rfkill
);
517 rfkill_unregister(wifi_rfkill
);
519 rfkill_destroy(wifi_rfkill
);
524 static void dell_cleanup_rfkill(void)
527 rfkill_unregister(wifi_rfkill
);
528 rfkill_destroy(wifi_rfkill
);
530 if (bluetooth_rfkill
) {
531 rfkill_unregister(bluetooth_rfkill
);
532 rfkill_destroy(bluetooth_rfkill
);
535 rfkill_unregister(wwan_rfkill
);
536 rfkill_destroy(wwan_rfkill
);
540 static int dell_send_intensity(struct backlight_device
*bd
)
545 buffer
->input
[0] = find_token_location(BRIGHTNESS_TOKEN
);
546 buffer
->input
[1] = bd
->props
.brightness
;
548 if (buffer
->input
[0] == -1) {
553 if (power_supply_is_system_supplied() > 0)
554 dell_send_request(buffer
, 1, 2);
556 dell_send_request(buffer
, 1, 1);
563 static int dell_get_intensity(struct backlight_device
*bd
)
568 buffer
->input
[0] = find_token_location(BRIGHTNESS_TOKEN
);
570 if (buffer
->input
[0] == -1) {
575 if (power_supply_is_system_supplied() > 0)
576 dell_send_request(buffer
, 0, 2);
578 dell_send_request(buffer
, 0, 1);
580 ret
= buffer
->output
[1];
587 static const struct backlight_ops dell_ops
= {
588 .get_brightness
= dell_get_intensity
,
589 .update_status
= dell_send_intensity
,
592 static void touchpad_led_on(void)
596 i8042_command(&data
, command
| 1 << 12);
599 static void touchpad_led_off(void)
603 i8042_command(&data
, command
| 1 << 12);
606 static void touchpad_led_set(struct led_classdev
*led_cdev
,
607 enum led_brightness value
)
615 static struct led_classdev touchpad_led
= {
616 .name
= "dell-laptop::touchpad",
617 .brightness_set
= touchpad_led_set
,
620 static int __devinit
touchpad_led_init(struct device
*dev
)
622 return led_classdev_register(dev
, &touchpad_led
);
625 static void touchpad_led_exit(void)
627 led_classdev_unregister(&touchpad_led
);
630 static bool dell_laptop_i8042_filter(unsigned char data
, unsigned char str
,
633 static bool extended
;
638 if (unlikely(data
== 0xe0)) {
641 } else if (unlikely(extended
)) {
644 schedule_delayed_work(&dell_rfkill_work
,
645 round_jiffies_relative(HZ
));
654 static int __init
dell_init(void)
656 int max_intensity
= 0;
659 if (!dmi_check_system(dell_device_table
))
663 /* find if this machine support other functions */
664 dmi_check_system(dell_quirks
);
666 dmi_walk(find_tokens
, NULL
);
669 pr_info("Unable to find dmi tokens\n");
673 ret
= platform_driver_register(&platform_driver
);
675 goto fail_platform_driver
;
676 platform_device
= platform_device_alloc("dell-laptop", -1);
677 if (!platform_device
) {
679 goto fail_platform_device1
;
681 ret
= platform_device_add(platform_device
);
683 goto fail_platform_device2
;
686 * Allocate buffer below 4GB for SMI data--only 32-bit physical addr
687 * is passed to SMI handler.
689 bufferpage
= alloc_page(GFP_KERNEL
| GFP_DMA32
);
693 buffer
= page_address(bufferpage
);
695 ret
= dell_setup_rfkill();
698 pr_warn("Unable to setup rfkill\n");
702 ret
= i8042_install_filter(dell_laptop_i8042_filter
);
704 pr_warn("Unable to install key filter\n");
708 if (quirks
&& quirks
->touchpad_led
)
709 touchpad_led_init(&platform_device
->dev
);
711 dell_laptop_dir
= debugfs_create_dir("dell_laptop", NULL
);
712 if (dell_laptop_dir
!= NULL
)
713 debugfs_create_file("rfkill", 0444, dell_laptop_dir
, NULL
,
717 /* In the event of an ACPI backlight being available, don't
718 * register the platform controller.
720 if (acpi_video_backlight_support())
725 buffer
->input
[0] = find_token_location(BRIGHTNESS_TOKEN
);
726 if (buffer
->input
[0] != -1) {
727 dell_send_request(buffer
, 0, 2);
728 max_intensity
= buffer
->output
[3];
733 struct backlight_properties props
;
734 memset(&props
, 0, sizeof(struct backlight_properties
));
735 props
.type
= BACKLIGHT_PLATFORM
;
736 props
.max_brightness
= max_intensity
;
737 dell_backlight_device
= backlight_device_register("dell_backlight",
738 &platform_device
->dev
,
743 if (IS_ERR(dell_backlight_device
)) {
744 ret
= PTR_ERR(dell_backlight_device
);
745 dell_backlight_device
= NULL
;
749 dell_backlight_device
->props
.brightness
=
750 dell_get_intensity(dell_backlight_device
);
751 backlight_update_status(dell_backlight_device
);
757 i8042_remove_filter(dell_laptop_i8042_filter
);
758 cancel_delayed_work_sync(&dell_rfkill_work
);
760 dell_cleanup_rfkill();
762 free_page((unsigned long)bufferpage
);
764 platform_device_del(platform_device
);
765 fail_platform_device2
:
766 platform_device_put(platform_device
);
767 fail_platform_device1
:
768 platform_driver_unregister(&platform_driver
);
769 fail_platform_driver
:
774 static void __exit
dell_exit(void)
776 debugfs_remove_recursive(dell_laptop_dir
);
777 if (quirks
&& quirks
->touchpad_led
)
779 i8042_remove_filter(dell_laptop_i8042_filter
);
780 cancel_delayed_work_sync(&dell_rfkill_work
);
781 backlight_device_unregister(dell_backlight_device
);
782 dell_cleanup_rfkill();
783 if (platform_device
) {
784 platform_device_unregister(platform_device
);
785 platform_driver_unregister(&platform_driver
);
788 free_page((unsigned long)buffer
);
791 module_init(dell_init
);
792 module_exit(dell_exit
);
794 MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>");
795 MODULE_DESCRIPTION("Dell laptop driver");
796 MODULE_LICENSE("GPL");
797 MODULE_ALIAS("dmi:*svnDellInc.:*:ct8:*");
798 MODULE_ALIAS("dmi:*svnDellInc.:*:ct9:*");
799 MODULE_ALIAS("dmi:*svnDellComputerCorporation.:*:ct8:*");