aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Martin <notmart@gmail.com>2018-01-29 15:27:43 -0500
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2018-02-01 08:26:11 -0500
commit30323fb6d552c41997baca5292bf7001366cab57 (patch)
treed01ac148e778f9a6e938b582c8f6c341721ac77f
parent9862b43624a5450a097cc4122732857b869dbbca (diff)
platform/x86: intel-vbtn: Support tablet mode switch
On some laptop like the Dell Inspiron 7000 series tablet mode switch implemented in Intel ACPI, the events to enter and exit the tablet mode are 0xCC and 0xCD This initializes the tablet/laptop mode at the correct value if the system booted in tablet mode (or the intel-vbtn module loaded with the device in tablet mode) Cc: platform-driver-x86@vger.kernel.org Cc: Matthew Garrett <mjg59@srcf.ucam.org> Cc: "Pali Rohár" <pali.rohar@gmail.com> Cc: Darren Hart <dvhart@infradead.org> Cc: Mario Limonciello <mario_limonciello@dell.com> Cc: Andy Shevchenko <andy@infradead.org> Cc: Stefan Brüns<stefan.bruens@rwth-aachen.de> Signed-off-by: Marco Martin <notmart@gmail.com> Reviewed-by: Mario Limonciello <mario.limonciello@dell.com> Acked-by: Pali Rohár <pali.rohar@gmail.com> [andy: fixed style of comments, indentation, and massaged commit message] Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r--drivers/platform/x86/intel-vbtn.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/platform/x86/intel-vbtn.c b/drivers/platform/x86/intel-vbtn.c
index 5fc4315f7382..101c100a3929 100644
--- a/drivers/platform/x86/intel-vbtn.c
+++ b/drivers/platform/x86/intel-vbtn.c
@@ -26,6 +26,9 @@
26#include <linux/suspend.h> 26#include <linux/suspend.h>
27#include <acpi/acpi_bus.h> 27#include <acpi/acpi_bus.h>
28 28
29/* When NOT in tablet mode, VGBS returns with the flag 0x40 */
30#define TABLET_MODE_FLAG 0x40
31
29MODULE_LICENSE("GPL"); 32MODULE_LICENSE("GPL");
30MODULE_AUTHOR("AceLan Kao"); 33MODULE_AUTHOR("AceLan Kao");
31 34
@@ -108,6 +111,7 @@ out_unknown:
108 111
109static int intel_vbtn_probe(struct platform_device *device) 112static int intel_vbtn_probe(struct platform_device *device)
110{ 113{
114 struct acpi_buffer vgbs_output = { ACPI_ALLOCATE_BUFFER, NULL };
111 acpi_handle handle = ACPI_HANDLE(&device->dev); 115 acpi_handle handle = ACPI_HANDLE(&device->dev);
112 struct intel_vbtn_priv *priv; 116 struct intel_vbtn_priv *priv;
113 acpi_status status; 117 acpi_status status;
@@ -130,6 +134,23 @@ static int intel_vbtn_probe(struct platform_device *device)
130 return err; 134 return err;
131 } 135 }
132 136
137 /*
138 * VGBS being present and returning something means we have
139 * a tablet mode switch.
140 */
141 status = acpi_evaluate_object(handle, "VGBS", NULL, &vgbs_output);
142 if (ACPI_SUCCESS(status)) {
143 union acpi_object *obj = vgbs_output.pointer;
144
145 if (obj && obj->type == ACPI_TYPE_INTEGER) {
146 int m = !(obj->integer.value & TABLET_MODE_FLAG);
147
148 input_report_switch(priv->input_dev, SW_TABLET_MODE, m);
149 }
150 }
151
152 kfree(vgbs_output.pointer);
153
133 status = acpi_install_notify_handler(handle, 154 status = acpi_install_notify_handler(handle,
134 ACPI_DEVICE_NOTIFY, 155 ACPI_DEVICE_NOTIFY,
135 notify_handler, 156 notify_handler,