platform/x86: touchscreen_dmi: Add info for the Viglen Connect 10 tablet
authorMark Stamp <stamp497@googlemail.com>
Thu, 28 Oct 2021 09:48:24 +0000 (11:48 +0200)
committerHans de Goede <hdegoede@redhat.com>
Thu, 28 Oct 2021 09:48:52 +0000 (11:48 +0200)
Add touchscreen info for the Viglen Connect 10 tablet.

Signed-off-by: Mark Stamp <stamp497@googlemail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20211028094824.84292-1-hdegoede@redhat.com
drivers/platform/x86/touchscreen_dmi.c

index 033f797..fa88120 100644 (file)
@@ -938,6 +938,23 @@ static const struct ts_dmi_data trekstor_surftab_wintron70_data = {
        .properties     = trekstor_surftab_wintron70_props,
 };
 
+static const struct property_entry viglen_connect_10_props[] = {
+       PROPERTY_ENTRY_U32("touchscreen-size-x", 1890),
+       PROPERTY_ENTRY_U32("touchscreen-size-y", 1280),
+       PROPERTY_ENTRY_U32("touchscreen-fuzz-x", 6),
+       PROPERTY_ENTRY_U32("touchscreen-fuzz-y", 6),
+       PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"),
+       PROPERTY_ENTRY_STRING("firmware-name", "gsl3680-viglen-connect-10.fw"),
+       PROPERTY_ENTRY_U32("silead,max-fingers", 10),
+       PROPERTY_ENTRY_BOOL("silead,home-button"),
+       { }
+};
+
+static const struct ts_dmi_data viglen_connect_10_data = {
+       .acpi_name      = "MSSL1680:00",
+       .properties     = viglen_connect_10_props,
+};
+
 static const struct property_entry vinga_twizzle_j116_props[] = {
        PROPERTY_ENTRY_U32("touchscreen-size-x", 1920),
        PROPERTY_ENTRY_U32("touchscreen-size-y", 1280),
@@ -1521,6 +1538,14 @@ const struct dmi_system_id touchscreen_dmi_table[] = {
                        DMI_MATCH(DMI_PRODUCT_NAME, "YOURBOOK C11B"),
                },
        },
+       {
+               /* Viglen Connect 10 */
+               .driver_data = (void *)&viglen_connect_10_data,
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Viglen Ltd."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Connect 10'' Tablet PC"),
+               },
+       },
        {
                /* Vinga Twizzle J116 */
                .driver_data = (void *)&vinga_twizzle_j116_data,