lkml.org 
[lkml]   [2015]   [May]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 3/3] Capture cable events created by Alienware GFX Amplifier.
Date
These events are outputted via the keyboard controller.
Right now the only actionable event is to restart the system
if the cable is removed, but the others are documented in
case they will be bubbled up to other parts of the kernel or
userspace later on.

Signed-off-by: Mario Limonciello <mario_limonciello@dell.com>
---
drivers/platform/x86/Kconfig | 1 +
drivers/platform/x86/alienware-wmi.c | 45 ++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index f9f205c..8a7bd7c 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -60,6 +60,7 @@ config ALIENWARE_WMI
depends on LEDS_CLASS
depends on NEW_LEDS
depends on ACPI_WMI
+ depends on SERIO_I8042
---help---
This is a driver for controlling Alienware BIOS driven
features. It exposes an interface for controlling the AlienFX
diff --git a/drivers/platform/x86/alienware-wmi.c b/drivers/platform/x86/alienware-wmi.c
index 5bd8faf..ffccbd9 100644
--- a/drivers/platform/x86/alienware-wmi.c
+++ b/drivers/platform/x86/alienware-wmi.c
@@ -23,6 +23,8 @@
#include <linux/dmi.h>
#include <linux/acpi.h>
#include <linux/leds.h>
+#include <linux/i8042.h>
+#include <linux/reboot.h>

#define LEGACY_CONTROL_GUID "A90597CE-A997-11DA-B012-B622A1EF5492"
#define LEGACY_POWER_CONTROL_GUID "A80593CE-A997-11DA-B012-B622A1EF5492"
@@ -650,6 +652,44 @@ error_create_amplifier:
return ret;
}

+static bool alienware_i8042_filter(unsigned char data, unsigned char str,
+ struct serio *port)
+{
+ static bool extended;
+
+ if (str & I8042_STR_AUXDATA)
+ return false;
+
+ if (unlikely(data == 0xe0)) {
+ extended = true;
+ return false;
+ } else if (unlikely(extended)) {
+ switch (data) {
+ /*Connect */
+ case 0x3F:
+ pr_debug("Received connect event\n");
+ break;
+ /* Disconnect by hotkey */
+ case 0x40:
+ pr_debug("Received disconnect hotkey event\n");
+ break;
+ /*disconnect by cable undock button */
+ case 0x41:
+ pr_debug("Received disconnect button event\n");
+ break;
+ /* surprise disconnect */
+ case 0x42:
+ pr_crit("Graphics amplifier removed, initiating reboot.\n");
+ emergency_restart();
+ break;
+ }
+ extended = false;
+ }
+
+ return false;
+}
+
+
static int __init alienware_wmi_init(void)
{
int ret;
@@ -689,6 +729,9 @@ static int __init alienware_wmi_init(void)
ret = create_amplifier(platform_device);
if (ret)
goto fail_prep_amplifier;
+ ret = i8042_install_filter(alienware_i8042_filter);
+ if (ret)
+ goto fail_prep_i8042;
}

ret = alienware_zone_init(platform_device);
@@ -699,6 +742,7 @@ static int __init alienware_wmi_init(void)

fail_prep_zones:
alienware_zone_exit(platform_device);
+fail_prep_i8042:
fail_prep_amplifier:
fail_prep_hdmi:
platform_device_del(platform_device);
@@ -715,6 +759,7 @@ module_init(alienware_wmi_init);
static void __exit alienware_wmi_exit(void)
{
if (platform_device) {
+ i8042_remove_filter(alienware_i8042_filter);
alienware_zone_exit(platform_device);
remove_hdmi(platform_device);
platform_device_unregister(platform_device);
--
1.9.1


\
 
 \ /
  Last update: 2015-05-27 22:21    [W:0.346 / U:0.284 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site