|
@@ -93,6 +93,21 @@ static const struct silead_ts_dmi_data gp_electronic_t701_data = {
|
|
|
.properties = gp_electronic_t701_props,
|
|
|
};
|
|
|
|
|
|
+static const struct property_entry pipo_w2s_props[] = {
|
|
|
+ PROPERTY_ENTRY_U32("touchscreen-size-x", 1660),
|
|
|
+ PROPERTY_ENTRY_U32("touchscreen-size-y", 880),
|
|
|
+ PROPERTY_ENTRY_BOOL("touchscreen-inverted-x"),
|
|
|
+ PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"),
|
|
|
+ PROPERTY_ENTRY_STRING("firmware-name",
|
|
|
+ "gsl1680-pipo-w2s.fw"),
|
|
|
+ { }
|
|
|
+};
|
|
|
+
|
|
|
+static const struct silead_ts_dmi_data pipo_w2s_data = {
|
|
|
+ .acpi_name = "MSSL1680:00",
|
|
|
+ .properties = pipo_w2s_props,
|
|
|
+};
|
|
|
+
|
|
|
static const struct dmi_system_id silead_ts_dmi_table[] = {
|
|
|
{
|
|
|
/* CUBE iwork8 Air */
|
|
@@ -139,6 +154,14 @@ static const struct dmi_system_id silead_ts_dmi_table[] = {
|
|
|
DMI_MATCH(DMI_BIOS_VERSION, "BYT70A.YNCHENG.WIN.007"),
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ /* Pipo W2S */
|
|
|
+ .driver_data = (void *)&pipo_w2s_data,
|
|
|
+ .matches = {
|
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "PIPO"),
|
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "W2S"),
|
|
|
+ },
|
|
|
+ },
|
|
|
{ },
|
|
|
};
|
|
|
|