Skip to content

Commit ed4daf6

Browse files
hmtheboy154gregkh
authored andcommitted
platform/x86: touchscreen_dmi: Add info for GlobalSpace SolT IVW 11.6" tablet
[ Upstream commit 7c8639a ] This is a tablet created by GlobalSpace Technologies Limited which uses an Intel Atom x5-Z8300, 4GB of RAM & 64GB of storage. Link: https://web.archive.org/web/20171102141952/http://globalspace.in/11.6-device.html Signed-off-by: hmtheboy154 <buingoc67@gmail.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20240527091447.248849-2-hdegoede@redhat.com Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 010c0de commit ed4daf6

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

drivers/platform/x86/touchscreen_dmi.c

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,22 @@ static const struct ts_dmi_data schneider_sct101ctm_data = {
897897
.properties = schneider_sct101ctm_props,
898898
};
899899

900+
static const struct property_entry globalspace_solt_ivw116_props[] = {
901+
PROPERTY_ENTRY_U32("touchscreen-min-x", 7),
902+
PROPERTY_ENTRY_U32("touchscreen-min-y", 22),
903+
PROPERTY_ENTRY_U32("touchscreen-size-x", 1723),
904+
PROPERTY_ENTRY_U32("touchscreen-size-y", 1077),
905+
PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-globalspace-solt-ivw116.fw"),
906+
PROPERTY_ENTRY_U32("silead,max-fingers", 10),
907+
PROPERTY_ENTRY_BOOL("silead,home-button"),
908+
{ }
909+
};
910+
911+
static const struct ts_dmi_data globalspace_solt_ivw116_data = {
912+
.acpi_name = "MSSL1680:00",
913+
.properties = globalspace_solt_ivw116_props,
914+
};
915+
900916
static const struct property_entry techbite_arc_11_6_props[] = {
901917
PROPERTY_ENTRY_U32("touchscreen-min-x", 5),
902918
PROPERTY_ENTRY_U32("touchscreen-min-y", 7),
@@ -1624,6 +1640,15 @@ const struct dmi_system_id touchscreen_dmi_table[] = {
16241640
DMI_MATCH(DMI_PRODUCT_NAME, "SCT101CTM"),
16251641
},
16261642
},
1643+
{
1644+
/* GlobalSpace SoLT IVW 11.6" */
1645+
.driver_data = (void *)&globalspace_solt_ivw116_data,
1646+
.matches = {
1647+
DMI_MATCH(DMI_SYS_VENDOR, "Globalspace Tech Pvt Ltd"),
1648+
DMI_MATCH(DMI_PRODUCT_NAME, "SolTIVW"),
1649+
DMI_MATCH(DMI_PRODUCT_SKU, "PN20170413488"),
1650+
},
1651+
},
16271652
{
16281653
/* Techbite Arc 11.6 */
16291654
.driver_data = (void *)&techbite_arc_11_6_data,

0 commit comments

Comments
 (0)