platform/x86: touchscreen_dmi: Add info for the Viglen Connect 10 tablet
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
This commit is contained in:
parent
025a2fbd8d
commit
bf653b61cf
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue