58 lines
1.6 KiB
Diff
58 lines
1.6 KiB
Diff
From b239a7a0c2a1435aa5cbab3f233e0c37e82943dd Mon Sep 17 00:00:00 2001
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
Date: Tue, 13 Jun 2017 18:17:07 +0200
|
|
Subject: [PATCH 09/16] platform/x86: silead_dmi: Add touchscreen info for Pipo
|
|
W2S tablet
|
|
|
|
Add touchscreen info for Pipo W2S tablet.
|
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
---
|
|
drivers/platform/x86/silead_dmi.c | 23 +++++++++++++++++++++++
|
|
1 file changed, 23 insertions(+)
|
|
|
|
diff --git a/drivers/platform/x86/silead_dmi.c b/drivers/platform/x86/silead_dmi.c
|
|
index 46c5e1ebfb53..25cbea307a5e 100644
|
|
--- a/drivers/platform/x86/silead_dmi.c
|
|
+++ b/drivers/platform/x86/silead_dmi.c
|
|
@@ -107,6 +107,21 @@ static const struct silead_ts_dmi_data pov_mobii_wintab_p800w_data = {
|
|
.properties = pov_mobii_wintab_p800w_props,
|
|
};
|
|
|
|
+static const struct property_entry pipo_w2s_props[] = {
|
|
+ PROPERTY_ENTRY_U32("touchscreen-size-x", 1660),
|
|
+ PROPERTY_ENTRY_U32("touchscreen-size-y", 880),
|
|
+ PROPERTY_ENTRY_BOOL("touchscreen-inverted-x"),
|
|
+ PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"),
|
|
+ PROPERTY_ENTRY_STRING("firmware-name",
|
|
+ "gsl1680-pipo-w2s.fw"),
|
|
+ { }
|
|
+};
|
|
+
|
|
+static const struct silead_ts_dmi_data pipo_w2s_data = {
|
|
+ .acpi_name = "MSSL1680:00",
|
|
+ .properties = pipo_w2s_props,
|
|
+};
|
|
+
|
|
static const struct dmi_system_id silead_ts_dmi_table[] = {
|
|
{
|
|
/* CUBE iwork8 Air */
|
|
@@ -164,6 +179,14 @@ static const struct dmi_system_id silead_ts_dmi_table[] = {
|
|
DMI_MATCH(DMI_BIOS_DATE, "08/22/2014"),
|
|
},
|
|
},
|
|
+ {
|
|
+ /* Pipo W2S */
|
|
+ .driver_data = (void *)&pipo_w2s_data,
|
|
+ .matches = {
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "PIPO"),
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "W2S"),
|
|
+ },
|
|
+ },
|
|
{ },
|
|
};
|
|
|
|
--
|
|
2.13.0
|
|
|