Skip to content

Commit 7c8639a

Browse files
hmtheboy154jwrdegoede
authored andcommitted
platform/x86: touchscreen_dmi: Add info for GlobalSpace SolT IVW 11.6" tablet
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 <[email protected]> Reviewed-by: Hans de Goede <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 0b178b0 commit 7c8639a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

drivers/platform/x86/touchscreen_dmi.c

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -900,6 +900,22 @@ static const struct ts_dmi_data schneider_sct101ctm_data = {
900900
.properties = schneider_sct101ctm_props,
901901
};
902902

903+
static const struct property_entry globalspace_solt_ivw116_props[] = {
904+
PROPERTY_ENTRY_U32("touchscreen-min-x", 7),
905+
PROPERTY_ENTRY_U32("touchscreen-min-y", 22),
906+
PROPERTY_ENTRY_U32("touchscreen-size-x", 1723),
907+
PROPERTY_ENTRY_U32("touchscreen-size-y", 1077),
908+
PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-globalspace-solt-ivw116.fw"),
909+
PROPERTY_ENTRY_U32("silead,max-fingers", 10),
910+
PROPERTY_ENTRY_BOOL("silead,home-button"),
911+
{ }
912+
};
913+
914+
static const struct ts_dmi_data globalspace_solt_ivw116_data = {
915+
.acpi_name = "MSSL1680:00",
916+
.properties = globalspace_solt_ivw116_props,
917+
};
918+
903919
static const struct property_entry techbite_arc_11_6_props[] = {
904920
PROPERTY_ENTRY_U32("touchscreen-min-x", 5),
905921
PROPERTY_ENTRY_U32("touchscreen-min-y", 7),
@@ -1627,6 +1643,15 @@ const struct dmi_system_id touchscreen_dmi_table[] = {
16271643
DMI_MATCH(DMI_PRODUCT_NAME, "SCT101CTM"),
16281644
},
16291645
},
1646+
{
1647+
/* GlobalSpace SoLT IVW 11.6" */
1648+
.driver_data = (void *)&globalspace_solt_ivw116_data,
1649+
.matches = {
1650+
DMI_MATCH(DMI_SYS_VENDOR, "Globalspace Tech Pvt Ltd"),
1651+
DMI_MATCH(DMI_PRODUCT_NAME, "SolTIVW"),
1652+
DMI_MATCH(DMI_PRODUCT_SKU, "PN20170413488"),
1653+
},
1654+
},
16301655
{
16311656
/* Techbite Arc 11.6 */
16321657
.driver_data = (void *)&techbite_arc_11_6_data,

0 commit comments

Comments
 (0)