Hi, On 10/28/21 11:48, Hans de Goede wrote: > From: Mark Stamp <stamp497@xxxxxxxxxxxxxx> > > Add touchscreen info for the Viglen Connect 10 tablet. > > Signed-off-by: Mark Stamp <stamp497@xxxxxxxxxxxxxx> > Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> I've added this to my review-hans branch now so that it can be included into the 5.16 pdx86 pull-req. Regards, Hans > --- > drivers/platform/x86/touchscreen_dmi.c | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/drivers/platform/x86/touchscreen_dmi.c b/drivers/platform/x86/touchscreen_dmi.c > index 033f797861d8..fa8812039b82 100644 > --- a/drivers/platform/x86/touchscreen_dmi.c > +++ b/drivers/platform/x86/touchscreen_dmi.c > @@ -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, >