Message ID | 20180701181850.8064-1-jambonmcyeah@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, On 01-07-18 20:18, Jun Bo Bi wrote: Please write a small message here describing your patch. > Signed-off-by: Jun Bo Bi <jambonmcyeah@gmail.com> Otherwise looks good, but please rebase this on top of: http://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git/shortlog/refs/heads/review-andy That branch has the latest work on silead_dmi.c, it has been sorted alphabetically and renamed to touchscreen_dmi.c (in preparation of adding info for other model touchscreens). Regards, Hans > --- > drivers/platform/x86/silead_dmi.c | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > diff --git a/drivers/platform/x86/silead_dmi.c b/drivers/platform/x86/silead_dmi.c > index 853a7ce4601c..c2d6707745f1 100644 > --- a/drivers/platform/x86/silead_dmi.c > +++ b/drivers/platform/x86/silead_dmi.c > @@ -326,6 +326,22 @@ static const struct silead_ts_dmi_data onda_v891w_v1_data = { > .properties = onda_v891w_v1_props, > }; > > +static const struct property_entry onda_v820w_32g_props[] = { > + PROPERTY_ENTRY_U32("touchscreen-size-x", 1140), > + PROPERTY_ENTRY_U32("touchscreen-size-y", 1665), > + PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"), > + PROPERTY_ENTRY_STRING("firmware-name", > + "gsl1680-onda-v820w-32g.fw"), > + PROPERTY_ENTRY_U32("silead,max-fingers", 10), > + PROPERTY_ENTRY_BOOL("silead,home-button"), > + { } > +}; > + > +static const struct silead_ts_dmi_data onda_v820w_32g_data = { > + .acpi_name = "MSSL1680:00", > + .properties = onda_v820w_32g_props, > +}; > + > static const struct dmi_system_id silead_ts_dmi_table[] = { > { > /* CUBE iwork8 Air */ > @@ -554,6 +570,14 @@ static const struct dmi_system_id silead_ts_dmi_table[] = { > DMI_EXACT_MATCH(DMI_BIOS_VERSION, "ONDA.W89EBBN08"), > }, > }, > + { > + /* ONDA V820w DualOS */ > + .driver_data = (void *)&onda_v820w_32g_data, > + .matches = { > + DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "ONDA"), > + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "V820w DualOS") > + }, > + }, > { }, > }; > > -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/platform/x86/silead_dmi.c b/drivers/platform/x86/silead_dmi.c index 853a7ce4601c..c2d6707745f1 100644 --- a/drivers/platform/x86/silead_dmi.c +++ b/drivers/platform/x86/silead_dmi.c @@ -326,6 +326,22 @@ static const struct silead_ts_dmi_data onda_v891w_v1_data = { .properties = onda_v891w_v1_props, }; +static const struct property_entry onda_v820w_32g_props[] = { + PROPERTY_ENTRY_U32("touchscreen-size-x", 1140), + PROPERTY_ENTRY_U32("touchscreen-size-y", 1665), + PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"), + PROPERTY_ENTRY_STRING("firmware-name", + "gsl1680-onda-v820w-32g.fw"), + PROPERTY_ENTRY_U32("silead,max-fingers", 10), + PROPERTY_ENTRY_BOOL("silead,home-button"), + { } +}; + +static const struct silead_ts_dmi_data onda_v820w_32g_data = { + .acpi_name = "MSSL1680:00", + .properties = onda_v820w_32g_props, +}; + static const struct dmi_system_id silead_ts_dmi_table[] = { { /* CUBE iwork8 Air */ @@ -554,6 +570,14 @@ static const struct dmi_system_id silead_ts_dmi_table[] = { DMI_EXACT_MATCH(DMI_BIOS_VERSION, "ONDA.W89EBBN08"), }, }, + { + /* ONDA V820w DualOS */ + .driver_data = (void *)&onda_v820w_32g_data, + .matches = { + DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "ONDA"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "V820w DualOS") + }, + }, { }, };
Signed-off-by: Jun Bo Bi <jambonmcyeah@gmail.com> --- drivers/platform/x86/silead_dmi.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+)