Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.12-rc7 767 lines 20 kB view raw
1/* 2 * Dell WMI hotkeys 3 * 4 * Copyright (C) 2008 Red Hat <mjg@redhat.com> 5 * Copyright (C) 2014-2015 Pali Rohár <pali.rohar@gmail.com> 6 * 7 * Portions based on wistron_btns.c: 8 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz> 9 * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org> 10 * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru> 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License as published by 14 * the Free Software Foundation; either version 2 of the License, or 15 * (at your option) any later version. 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, write to the Free Software 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 */ 26 27#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 28 29#include <linux/kernel.h> 30#include <linux/module.h> 31#include <linux/init.h> 32#include <linux/slab.h> 33#include <linux/types.h> 34#include <linux/input.h> 35#include <linux/input/sparse-keymap.h> 36#include <linux/acpi.h> 37#include <linux/string.h> 38#include <linux/dmi.h> 39#include <acpi/video.h> 40#include "dell-smbios.h" 41 42MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>"); 43MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>"); 44MODULE_DESCRIPTION("Dell laptop WMI hotkeys driver"); 45MODULE_LICENSE("GPL"); 46 47#define DELL_EVENT_GUID "9DBB5994-A997-11DA-B012-B622A1EF5492" 48#define DELL_DESCRIPTOR_GUID "8D9DDCBC-A997-11DA-B012-B622A1EF5492" 49 50static u32 dell_wmi_interface_version; 51static bool wmi_requires_smbios_request; 52 53MODULE_ALIAS("wmi:"DELL_EVENT_GUID); 54MODULE_ALIAS("wmi:"DELL_DESCRIPTOR_GUID); 55 56static int __init dmi_matched(const struct dmi_system_id *dmi) 57{ 58 wmi_requires_smbios_request = 1; 59 return 1; 60} 61 62static const struct dmi_system_id dell_wmi_smbios_list[] __initconst = { 63 { 64 .callback = dmi_matched, 65 .ident = "Dell Inspiron M5110", 66 .matches = { 67 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 68 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron M5110"), 69 }, 70 }, 71 { 72 .callback = dmi_matched, 73 .ident = "Dell Vostro V131", 74 .matches = { 75 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 76 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"), 77 }, 78 }, 79 { } 80}; 81 82/* 83 * Keymap for WMI events of type 0x0000 84 * 85 * Certain keys are flagged as KE_IGNORE. All of these are either 86 * notifications (rather than requests for change) or are also sent 87 * via the keyboard controller so should not be sent again. 88 */ 89static const struct key_entry dell_wmi_keymap_type_0000[] __initconst = { 90 { KE_IGNORE, 0x003a, { KEY_CAPSLOCK } }, 91 92 /* Key code is followed by brightness level */ 93 { KE_KEY, 0xe005, { KEY_BRIGHTNESSDOWN } }, 94 { KE_KEY, 0xe006, { KEY_BRIGHTNESSUP } }, 95 96 /* Battery health status button */ 97 { KE_KEY, 0xe007, { KEY_BATTERY } }, 98 99 /* Radio devices state change, key code is followed by other values */ 100 { KE_IGNORE, 0xe008, { KEY_RFKILL } }, 101 102 { KE_KEY, 0xe009, { KEY_EJECTCD } }, 103 104 /* Key code is followed by: next, active and attached devices */ 105 { KE_KEY, 0xe00b, { KEY_SWITCHVIDEOMODE } }, 106 107 /* Key code is followed by keyboard illumination level */ 108 { KE_IGNORE, 0xe00c, { KEY_KBDILLUMTOGGLE } }, 109 110 /* BIOS error detected */ 111 { KE_IGNORE, 0xe00d, { KEY_RESERVED } }, 112 113 /* Battery was removed or inserted */ 114 { KE_IGNORE, 0xe00e, { KEY_RESERVED } }, 115 116 /* Wifi Catcher */ 117 { KE_KEY, 0xe011, { KEY_WLAN } }, 118 119 /* Ambient light sensor toggle */ 120 { KE_IGNORE, 0xe013, { KEY_RESERVED } }, 121 122 { KE_IGNORE, 0xe020, { KEY_MUTE } }, 123 124 /* Unknown, defined in ACPI DSDT */ 125 /* { KE_IGNORE, 0xe023, { KEY_RESERVED } }, */ 126 127 /* Untested, Dell Instant Launch key on Inspiron 7520 */ 128 /* { KE_IGNORE, 0xe024, { KEY_RESERVED } }, */ 129 130 /* Dell Instant Launch key */ 131 { KE_KEY, 0xe025, { KEY_PROG4 } }, 132 133 /* Audio panel key */ 134 { KE_IGNORE, 0xe026, { KEY_RESERVED } }, 135 136 /* LCD Display On/Off Control key */ 137 { KE_KEY, 0xe027, { KEY_DISPLAYTOGGLE } }, 138 139 /* Untested, Multimedia key on Dell Vostro 3560 */ 140 /* { KE_IGNORE, 0xe028, { KEY_RESERVED } }, */ 141 142 /* Dell Instant Launch key */ 143 { KE_KEY, 0xe029, { KEY_PROG4 } }, 144 145 /* Untested, Windows Mobility Center button on Inspiron 7520 */ 146 /* { KE_IGNORE, 0xe02a, { KEY_RESERVED } }, */ 147 148 /* Unknown, defined in ACPI DSDT */ 149 /* { KE_IGNORE, 0xe02b, { KEY_RESERVED } }, */ 150 151 /* Untested, Dell Audio With Preset Switch button on Inspiron 7520 */ 152 /* { KE_IGNORE, 0xe02c, { KEY_RESERVED } }, */ 153 154 { KE_IGNORE, 0xe02e, { KEY_VOLUMEDOWN } }, 155 { KE_IGNORE, 0xe030, { KEY_VOLUMEUP } }, 156 { KE_IGNORE, 0xe033, { KEY_KBDILLUMUP } }, 157 { KE_IGNORE, 0xe034, { KEY_KBDILLUMDOWN } }, 158 { KE_IGNORE, 0xe03a, { KEY_CAPSLOCK } }, 159 160 /* NIC Link is Up */ 161 { KE_IGNORE, 0xe043, { KEY_RESERVED } }, 162 163 /* NIC Link is Down */ 164 { KE_IGNORE, 0xe044, { KEY_RESERVED } }, 165 166 /* 167 * This entry is very suspicious! 168 * Originally Matthew Garrett created this dell-wmi driver specially for 169 * "button with a picture of a battery" which has event code 0xe045. 170 * Later Mario Limonciello from Dell told us that event code 0xe045 is 171 * reported by Num Lock and should be ignored because key is send also 172 * by keyboard controller. 173 * So for now we will ignore this event to prevent potential double 174 * Num Lock key press. 175 */ 176 { KE_IGNORE, 0xe045, { KEY_NUMLOCK } }, 177 178 /* Scroll lock and also going to tablet mode on portable devices */ 179 { KE_IGNORE, 0xe046, { KEY_SCROLLLOCK } }, 180 181 /* Untested, going from tablet mode on portable devices */ 182 /* { KE_IGNORE, 0xe047, { KEY_RESERVED } }, */ 183 184 /* Dell Support Center key */ 185 { KE_IGNORE, 0xe06e, { KEY_RESERVED } }, 186 187 { KE_IGNORE, 0xe0f7, { KEY_MUTE } }, 188 { KE_IGNORE, 0xe0f8, { KEY_VOLUMEDOWN } }, 189 { KE_IGNORE, 0xe0f9, { KEY_VOLUMEUP } }, 190}; 191 192struct dell_bios_keymap_entry { 193 u16 scancode; 194 u16 keycode; 195}; 196 197struct dell_bios_hotkey_table { 198 struct dmi_header header; 199 struct dell_bios_keymap_entry keymap[]; 200 201}; 202 203struct dell_dmi_results { 204 int err; 205 int keymap_size; 206 struct key_entry *keymap; 207}; 208 209/* Uninitialized entries here are KEY_RESERVED == 0. */ 210static const u16 bios_to_linux_keycode[256] __initconst = { 211 [0] = KEY_MEDIA, 212 [1] = KEY_NEXTSONG, 213 [2] = KEY_PLAYPAUSE, 214 [3] = KEY_PREVIOUSSONG, 215 [4] = KEY_STOPCD, 216 [5] = KEY_UNKNOWN, 217 [6] = KEY_UNKNOWN, 218 [7] = KEY_UNKNOWN, 219 [8] = KEY_WWW, 220 [9] = KEY_UNKNOWN, 221 [10] = KEY_VOLUMEDOWN, 222 [11] = KEY_MUTE, 223 [12] = KEY_VOLUMEUP, 224 [13] = KEY_UNKNOWN, 225 [14] = KEY_BATTERY, 226 [15] = KEY_EJECTCD, 227 [16] = KEY_UNKNOWN, 228 [17] = KEY_SLEEP, 229 [18] = KEY_PROG1, 230 [19] = KEY_BRIGHTNESSDOWN, 231 [20] = KEY_BRIGHTNESSUP, 232 [21] = KEY_UNKNOWN, 233 [22] = KEY_KBDILLUMTOGGLE, 234 [23] = KEY_UNKNOWN, 235 [24] = KEY_SWITCHVIDEOMODE, 236 [25] = KEY_UNKNOWN, 237 [26] = KEY_UNKNOWN, 238 [27] = KEY_SWITCHVIDEOMODE, 239 [28] = KEY_UNKNOWN, 240 [29] = KEY_UNKNOWN, 241 [30] = KEY_PROG2, 242 [31] = KEY_UNKNOWN, 243 [32] = KEY_UNKNOWN, 244 [33] = KEY_UNKNOWN, 245 [34] = KEY_UNKNOWN, 246 [35] = KEY_UNKNOWN, 247 [36] = KEY_UNKNOWN, 248 [37] = KEY_UNKNOWN, 249 [38] = KEY_MICMUTE, 250 [255] = KEY_PROG3, 251}; 252 253/* 254 * Keymap for WMI events of type 0x0010 255 * 256 * These are applied if the 0xB2 DMI hotkey table is present and doesn't 257 * override them. 258 */ 259static const struct key_entry dell_wmi_keymap_type_0010[] __initconst = { 260 /* Fn-lock */ 261 { KE_IGNORE, 0x151, { KEY_RESERVED } }, 262 263 /* Change keyboard illumination */ 264 { KE_IGNORE, 0x152, { KEY_KBDILLUMTOGGLE } }, 265 266 /* 267 * Radio disable (notify only -- there is no model for which the 268 * WMI event is supposed to trigger an action). 269 */ 270 { KE_IGNORE, 0x153, { KEY_RFKILL } }, 271 272 /* RGB keyboard backlight control */ 273 { KE_IGNORE, 0x154, { KEY_RESERVED } }, 274 275 /* Stealth mode toggle */ 276 { KE_IGNORE, 0x155, { KEY_RESERVED } }, 277 278 /* Rugged magnetic dock attach/detach events */ 279 { KE_IGNORE, 0x156, { KEY_RESERVED } }, 280 { KE_IGNORE, 0x157, { KEY_RESERVED } }, 281 282 /* Rugged programmable (P1/P2/P3 keys) */ 283 { KE_KEY, 0x850, { KEY_PROG1 } }, 284 { KE_KEY, 0x851, { KEY_PROG2 } }, 285 { KE_KEY, 0x852, { KEY_PROG3 } }, 286 287}; 288 289/* 290 * Keymap for WMI events of type 0x0011 291 */ 292static const struct key_entry dell_wmi_keymap_type_0011[] __initconst = { 293 /* Battery unplugged */ 294 { KE_IGNORE, 0xfff0, { KEY_RESERVED } }, 295 296 /* Battery inserted */ 297 { KE_IGNORE, 0xfff1, { KEY_RESERVED } }, 298 299 /* Keyboard backlight level changed */ 300 { KE_IGNORE, 0x01e1, { KEY_RESERVED } }, 301 { KE_IGNORE, 0x02ea, { KEY_RESERVED } }, 302 { KE_IGNORE, 0x02eb, { KEY_RESERVED } }, 303 { KE_IGNORE, 0x02ec, { KEY_RESERVED } }, 304 { KE_IGNORE, 0x02f6, { KEY_RESERVED } }, 305}; 306 307static struct input_dev *dell_wmi_input_dev; 308 309static void dell_wmi_process_key(int type, int code) 310{ 311 const struct key_entry *key; 312 313 key = sparse_keymap_entry_from_scancode(dell_wmi_input_dev, 314 (type << 16) | code); 315 if (!key) { 316 pr_info("Unknown key with type 0x%04x and code 0x%04x pressed\n", 317 type, code); 318 return; 319 } 320 321 pr_debug("Key with type 0x%04x and code 0x%04x pressed\n", type, code); 322 323 /* Don't report brightness notifications that will also come via ACPI */ 324 if ((key->keycode == KEY_BRIGHTNESSUP || 325 key->keycode == KEY_BRIGHTNESSDOWN) && 326 acpi_video_handles_brightness_key_presses()) 327 return; 328 329 if (type == 0x0000 && code == 0xe025 && !wmi_requires_smbios_request) 330 return; 331 332 if (key->keycode == KEY_KBDILLUMTOGGLE) 333 dell_laptop_call_notifier( 334 DELL_LAPTOP_KBD_BACKLIGHT_BRIGHTNESS_CHANGED, NULL); 335 336 sparse_keymap_report_entry(dell_wmi_input_dev, key, 1, true); 337} 338 339static void dell_wmi_notify(u32 value, void *context) 340{ 341 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; 342 union acpi_object *obj; 343 acpi_status status; 344 acpi_size buffer_size; 345 u16 *buffer_entry, *buffer_end; 346 int len, i; 347 348 status = wmi_get_event_data(value, &response); 349 if (status != AE_OK) { 350 pr_warn("bad event status 0x%x\n", status); 351 return; 352 } 353 354 obj = (union acpi_object *)response.pointer; 355 if (!obj) { 356 pr_warn("no response\n"); 357 return; 358 } 359 360 if (obj->type != ACPI_TYPE_BUFFER) { 361 pr_warn("bad response type %x\n", obj->type); 362 kfree(obj); 363 return; 364 } 365 366 pr_debug("Received WMI event (%*ph)\n", 367 obj->buffer.length, obj->buffer.pointer); 368 369 buffer_entry = (u16 *)obj->buffer.pointer; 370 buffer_size = obj->buffer.length/2; 371 buffer_end = buffer_entry + buffer_size; 372 373 /* 374 * BIOS/ACPI on devices with WMI interface version 0 does not clear 375 * buffer before filling it. So next time when BIOS/ACPI send WMI event 376 * which is smaller as previous then it contains garbage in buffer from 377 * previous event. 378 * 379 * BIOS/ACPI on devices with WMI interface version 1 clears buffer and 380 * sometimes send more events in buffer at one call. 381 * 382 * So to prevent reading garbage from buffer we will process only first 383 * one event on devices with WMI interface version 0. 384 */ 385 if (dell_wmi_interface_version == 0 && buffer_entry < buffer_end) 386 if (buffer_end > buffer_entry + buffer_entry[0] + 1) 387 buffer_end = buffer_entry + buffer_entry[0] + 1; 388 389 while (buffer_entry < buffer_end) { 390 391 len = buffer_entry[0]; 392 if (len == 0) 393 break; 394 395 len++; 396 397 if (buffer_entry + len > buffer_end) { 398 pr_warn("Invalid length of WMI event\n"); 399 break; 400 } 401 402 pr_debug("Process buffer (%*ph)\n", len*2, buffer_entry); 403 404 switch (buffer_entry[1]) { 405 case 0x0000: /* One key pressed or event occurred */ 406 if (len > 2) 407 dell_wmi_process_key(0x0000, buffer_entry[2]); 408 /* Other entries could contain additional information */ 409 break; 410 case 0x0010: /* Sequence of keys pressed */ 411 case 0x0011: /* Sequence of events occurred */ 412 for (i = 2; i < len; ++i) 413 dell_wmi_process_key(buffer_entry[1], 414 buffer_entry[i]); 415 break; 416 default: /* Unknown event */ 417 pr_info("Unknown WMI event type 0x%x\n", 418 (int)buffer_entry[1]); 419 break; 420 } 421 422 buffer_entry += len; 423 424 } 425 426 kfree(obj); 427} 428 429static bool have_scancode(u32 scancode, const struct key_entry *keymap, int len) 430{ 431 int i; 432 433 for (i = 0; i < len; i++) 434 if (keymap[i].code == scancode) 435 return true; 436 437 return false; 438} 439 440static void __init handle_dmi_entry(const struct dmi_header *dm, 441 void *opaque) 442 443{ 444 struct dell_dmi_results *results = opaque; 445 struct dell_bios_hotkey_table *table; 446 int hotkey_num, i, pos = 0; 447 struct key_entry *keymap; 448 449 if (results->err || results->keymap) 450 return; /* We already found the hotkey table. */ 451 452 if (dm->type != 0xb2) 453 return; 454 455 table = container_of(dm, struct dell_bios_hotkey_table, header); 456 457 hotkey_num = (table->header.length - 458 sizeof(struct dell_bios_hotkey_table)) / 459 sizeof(struct dell_bios_keymap_entry); 460 if (hotkey_num < 1) { 461 /* 462 * Historically, dell-wmi would ignore a DMI entry of 463 * fewer than 7 bytes. Sizes between 4 and 8 bytes are 464 * nonsensical (both the header and all entries are 4 465 * bytes), so we approximate the old behavior by 466 * ignoring tables with fewer than one entry. 467 */ 468 return; 469 } 470 471 keymap = kcalloc(hotkey_num, sizeof(struct key_entry), GFP_KERNEL); 472 if (!keymap) { 473 results->err = -ENOMEM; 474 return; 475 } 476 477 for (i = 0; i < hotkey_num; i++) { 478 const struct dell_bios_keymap_entry *bios_entry = 479 &table->keymap[i]; 480 481 /* Uninitialized entries are 0 aka KEY_RESERVED. */ 482 u16 keycode = (bios_entry->keycode < 483 ARRAY_SIZE(bios_to_linux_keycode)) ? 484 bios_to_linux_keycode[bios_entry->keycode] : 485 KEY_RESERVED; 486 487 /* 488 * Log if we find an entry in the DMI table that we don't 489 * understand. If this happens, we should figure out what 490 * the entry means and add it to bios_to_linux_keycode. 491 */ 492 if (keycode == KEY_RESERVED) { 493 pr_info("firmware scancode 0x%x maps to unrecognized keycode 0x%x\n", 494 bios_entry->scancode, bios_entry->keycode); 495 continue; 496 } 497 498 if (keycode == KEY_KBDILLUMTOGGLE) 499 keymap[pos].type = KE_IGNORE; 500 else 501 keymap[pos].type = KE_KEY; 502 keymap[pos].code = bios_entry->scancode; 503 keymap[pos].keycode = keycode; 504 505 pos++; 506 } 507 508 results->keymap = keymap; 509 results->keymap_size = pos; 510} 511 512static int __init dell_wmi_input_setup(void) 513{ 514 struct dell_dmi_results dmi_results = {}; 515 struct key_entry *keymap; 516 int err, i, pos = 0; 517 518 dell_wmi_input_dev = input_allocate_device(); 519 if (!dell_wmi_input_dev) 520 return -ENOMEM; 521 522 dell_wmi_input_dev->name = "Dell WMI hotkeys"; 523 dell_wmi_input_dev->phys = "wmi/input0"; 524 dell_wmi_input_dev->id.bustype = BUS_HOST; 525 526 if (dmi_walk(handle_dmi_entry, &dmi_results)) { 527 /* 528 * Historically, dell-wmi ignored dmi_walk errors. A failure 529 * is certainly surprising, but it probably just indicates 530 * a very old laptop. 531 */ 532 pr_warn("no DMI; using the old-style hotkey interface\n"); 533 } 534 535 if (dmi_results.err) { 536 err = dmi_results.err; 537 goto err_free_dev; 538 } 539 540 keymap = kcalloc(dmi_results.keymap_size + 541 ARRAY_SIZE(dell_wmi_keymap_type_0000) + 542 ARRAY_SIZE(dell_wmi_keymap_type_0010) + 543 ARRAY_SIZE(dell_wmi_keymap_type_0011) + 544 1, 545 sizeof(struct key_entry), GFP_KERNEL); 546 if (!keymap) { 547 kfree(dmi_results.keymap); 548 err = -ENOMEM; 549 goto err_free_dev; 550 } 551 552 /* Append table with events of type 0x0010 which comes from DMI */ 553 for (i = 0; i < dmi_results.keymap_size; i++) { 554 keymap[pos] = dmi_results.keymap[i]; 555 keymap[pos].code |= (0x0010 << 16); 556 pos++; 557 } 558 559 kfree(dmi_results.keymap); 560 561 /* Append table with extra events of type 0x0010 which are not in DMI */ 562 for (i = 0; i < ARRAY_SIZE(dell_wmi_keymap_type_0010); i++) { 563 const struct key_entry *entry = &dell_wmi_keymap_type_0010[i]; 564 565 /* 566 * Check if we've already found this scancode. This takes 567 * quadratic time, but it doesn't matter unless the list 568 * of extra keys gets very long. 569 */ 570 if (dmi_results.keymap_size && 571 have_scancode(entry->code | (0x0010 << 16), 572 keymap, dmi_results.keymap_size) 573 ) 574 continue; 575 576 keymap[pos] = *entry; 577 keymap[pos].code |= (0x0010 << 16); 578 pos++; 579 } 580 581 /* Append table with events of type 0x0011 */ 582 for (i = 0; i < ARRAY_SIZE(dell_wmi_keymap_type_0011); i++) { 583 keymap[pos] = dell_wmi_keymap_type_0011[i]; 584 keymap[pos].code |= (0x0011 << 16); 585 pos++; 586 } 587 588 /* 589 * Now append also table with "legacy" events of type 0x0000. Some of 590 * them are reported also on laptops which have scancodes in DMI. 591 */ 592 for (i = 0; i < ARRAY_SIZE(dell_wmi_keymap_type_0000); i++) { 593 keymap[pos] = dell_wmi_keymap_type_0000[i]; 594 pos++; 595 } 596 597 keymap[pos].type = KE_END; 598 599 err = sparse_keymap_setup(dell_wmi_input_dev, keymap, NULL); 600 /* 601 * Sparse keymap library makes a copy of keymap so we don't need the 602 * original one that was allocated. 603 */ 604 kfree(keymap); 605 if (err) 606 goto err_free_dev; 607 608 err = input_register_device(dell_wmi_input_dev); 609 if (err) 610 goto err_free_dev; 611 612 return 0; 613 614 err_free_dev: 615 input_free_device(dell_wmi_input_dev); 616 return err; 617} 618 619/* 620 * Descriptor buffer is 128 byte long and contains: 621 * 622 * Name Offset Length Value 623 * Vendor Signature 0 4 "DELL" 624 * Object Signature 4 4 " WMI" 625 * WMI Interface Version 8 4 <version> 626 * WMI buffer length 12 4 4096 627 */ 628static int __init dell_wmi_check_descriptor_buffer(void) 629{ 630 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL }; 631 union acpi_object *obj; 632 acpi_status status; 633 u32 *buffer; 634 635 status = wmi_query_block(DELL_DESCRIPTOR_GUID, 0, &out); 636 if (ACPI_FAILURE(status)) { 637 pr_err("Cannot read Dell descriptor buffer - %d\n", status); 638 return status; 639 } 640 641 obj = (union acpi_object *)out.pointer; 642 if (!obj) { 643 pr_err("Dell descriptor buffer is empty\n"); 644 return -EINVAL; 645 } 646 647 if (obj->type != ACPI_TYPE_BUFFER) { 648 pr_err("Cannot read Dell descriptor buffer\n"); 649 kfree(obj); 650 return -EINVAL; 651 } 652 653 if (obj->buffer.length != 128) { 654 pr_err("Dell descriptor buffer has invalid length (%d)\n", 655 obj->buffer.length); 656 if (obj->buffer.length < 16) { 657 kfree(obj); 658 return -EINVAL; 659 } 660 } 661 662 buffer = (u32 *)obj->buffer.pointer; 663 664 if (buffer[0] != 0x4C4C4544 && buffer[1] != 0x494D5720) 665 pr_warn("Dell descriptor buffer has invalid signature (%*ph)\n", 666 8, buffer); 667 668 if (buffer[2] != 0 && buffer[2] != 1) 669 pr_warn("Dell descriptor buffer has unknown version (%d)\n", 670 buffer[2]); 671 672 if (buffer[3] != 4096) 673 pr_warn("Dell descriptor buffer has invalid buffer length (%d)\n", 674 buffer[3]); 675 676 dell_wmi_interface_version = buffer[2]; 677 678 pr_info("Detected Dell WMI interface version %u\n", 679 dell_wmi_interface_version); 680 681 kfree(obj); 682 return 0; 683} 684 685/* 686 * According to Dell SMBIOS documentation: 687 * 688 * 17 3 Application Program Registration 689 * 690 * cbArg1 Application ID 1 = 0x00010000 691 * cbArg2 Application ID 2 692 * QUICKSET/DCP = 0x51534554 "QSET" 693 * ALS Driver = 0x416c7353 "AlsS" 694 * Latitude ON = 0x4c6f6e52 "LonR" 695 * cbArg3 Application version or revision number 696 * cbArg4 0 = Unregister application 697 * 1 = Register application 698 * cbRes1 Standard return codes (0, -1, -2) 699 */ 700 701static int dell_wmi_events_set_enabled(bool enable) 702{ 703 struct calling_interface_buffer *buffer; 704 int ret; 705 706 buffer = dell_smbios_get_buffer(); 707 buffer->input[0] = 0x10000; 708 buffer->input[1] = 0x51534554; 709 buffer->input[3] = enable; 710 dell_smbios_send_request(17, 3); 711 ret = buffer->output[0]; 712 dell_smbios_release_buffer(); 713 714 return dell_smbios_error(ret); 715} 716 717static int __init dell_wmi_init(void) 718{ 719 int err; 720 acpi_status status; 721 722 if (!wmi_has_guid(DELL_EVENT_GUID) || 723 !wmi_has_guid(DELL_DESCRIPTOR_GUID)) { 724 pr_warn("Dell WMI GUID were not found\n"); 725 return -ENODEV; 726 } 727 728 err = dell_wmi_check_descriptor_buffer(); 729 if (err) 730 return err; 731 732 err = dell_wmi_input_setup(); 733 if (err) 734 return err; 735 736 status = wmi_install_notify_handler(DELL_EVENT_GUID, 737 dell_wmi_notify, NULL); 738 if (ACPI_FAILURE(status)) { 739 input_unregister_device(dell_wmi_input_dev); 740 pr_err("Unable to register notify handler - %d\n", status); 741 return -ENODEV; 742 } 743 744 dmi_check_system(dell_wmi_smbios_list); 745 746 if (wmi_requires_smbios_request) { 747 err = dell_wmi_events_set_enabled(true); 748 if (err) { 749 pr_err("Failed to enable WMI events\n"); 750 wmi_remove_notify_handler(DELL_EVENT_GUID); 751 input_unregister_device(dell_wmi_input_dev); 752 return err; 753 } 754 } 755 756 return 0; 757} 758module_init(dell_wmi_init); 759 760static void __exit dell_wmi_exit(void) 761{ 762 if (wmi_requires_smbios_request) 763 dell_wmi_events_set_enabled(false); 764 wmi_remove_notify_handler(DELL_EVENT_GUID); 765 input_unregister_device(dell_wmi_input_dev); 766} 767module_exit(dell_wmi_exit);