From: 廖崇榮 <kt.liao@emc.com.tw>
To: 'Kai Heng Feng' <kai.heng.feng@canonical.com>,
'Benjamin Tissoires' <benjamin.tissoires@redhat.com>
Cc: 'Dmitry Torokhov' <dmitry.torokhov@gmail.com>,
"'open list:HID CORE LAYER'" <linux-input@vger.kernel.org>,
'lkml' <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH 1/1] Input: elantech: Use SMBus based on bus info
Date: Fri, 18 Jan 2019 17:29:48 +0800 [thread overview]
Message-ID: <008c01d4af10$5b157f20$11407d60$@emc.com.tw> (raw)
In-Reply-To: <0BD3A587-B7B6-4C99-8F87-187394FF6EFC@canonical.com>
-----Original Message-----
From: Kai Heng Feng [mailto:kai.heng.feng@canonical.com]
Sent: Friday, January 18, 2019 12:15 AM
To: Benjamin Tissoires
Cc: Dmitry Torokhov; 廖崇榮; open list:HID CORE LAYER; lkml
Subject: Re: [PATCH 1/1] Input: elantech: Use SMBus based on bus info
> On Jan 17, 2019, at 10:42 PM, Benjamin Tissoires
<benjamin.tissoires@redhat.com> wrote:
>
> Hi Kai-Heng,
>
> On Thu, Jan 17, 2019 at 10:30 AM Kai-Heng Feng
> <kai.heng.feng@canonical.com> wrote:
>>
>> There are some new HP laptops with Elantech touchpad don't support
>> multitouch.
>>
>> Both ETP_BUS_SMB_HST_NTFY_ONLY and ETP_BUS_PS2_SMB_HST_NTFY devices
>> can use SMBus to support 5 fingers touch, so we need to chech them too.
>>
>> So use elantech_use_host_notify() to do a more thouroughly check.
>>
>> Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
>> ---
>> drivers/input/mouse/elantech.c | 58
>> +++++++++++++++++-----------------
>> 1 file changed, 29 insertions(+), 29 deletions(-)
>>
>> diff --git a/drivers/input/mouse/elantech.c
>> b/drivers/input/mouse/elantech.c index 9fe075c137dc..5bcf1c147eb1
>> 100644
>> --- a/drivers/input/mouse/elantech.c
>> +++ b/drivers/input/mouse/elantech.c
>> @@ -1799,6 +1799,34 @@ static int elantech_create_smbus(struct psmouse
*psmouse,
>> leave_breadcrumbs); }
>>
>> +static bool elantech_use_host_notify(struct psmouse *psmouse,
>> + struct elantech_device_info
>> +*info) {
>> + if (ETP_NEW_IC_SMBUS_HOST_NOTIFY(info->fw_version))
>> + return true;
>> +
>> + switch (info->bus) {
>> + case ETP_BUS_PS2_ONLY:
>> + /* expected case */
>> + break;
>> + case ETP_BUS_SMB_ALERT_ONLY:
>> + /* fall-through */
>> + case ETP_BUS_PS2_SMB_ALERT:
>> + psmouse_dbg(psmouse, "Ignoring SMBus provider through
alert protocol.\n");
>> + break;
>> + case ETP_BUS_SMB_HST_NTFY_ONLY:
>> + /* fall-through */
>> + case ETP_BUS_PS2_SMB_HST_NTFY:
>> + return true;
>> + default:
>> + psmouse_dbg(psmouse,
>> + "Ignoring SMBus bus provider %d.\n",
>> + info->bus);
>> + }
>> +
>> + return false;
>> +}
>> +
>> /**
>> * elantech_setup_smbus - called once the PS/2 devices are enumerated
>> * and decides to instantiate a SMBus InterTouch device.
>> @@ -1818,7 +1846,7 @@ static int elantech_setup_smbus(struct psmouse
*psmouse,
>> * i2c_blacklist_pnp_ids.
>> * Old ICs are up to the user to decide.
>> */
>> - if (!ETP_NEW_IC_SMBUS_HOST_NOTIFY(info->fw_version) ||
>> + if (!elantech_use_host_notify(psmouse, info) ||
>
> That was my initial approach of the series, but I ended up being more
> conservative as this would flip all of the existing elantech SMBUS
> capable touchpads to use elan_i2c.
> And I didn't want to deal with 4/5 year old laptops that suddenly broke.
>
> So I wonder if you can restrict this default change to the recent
> laptops (let's say 2018+). Maybe by looking at their FW version or
> something else in the DMI?
It was KT who told me that I should use ETP_BUS_PS2_SMB_HST_NTFY.
As for date, KT still knows better than me.
KT,
Can you name a year which is safe enough to enable SMBus?
I have discussed it internally.
The internal rule for FW's SMbus implementation is stable after 2018
If you meet some special case, please let me know.
BTW, The SMbus supporting is requested by HP this time, and there are plenty
of HP laptop use old IC
which doesn't meet " ETP_NEW_IC_SMBUS_HOST_NOTIFY".
Elan touchpad works well in PS/2 for HP, because it don't support
TrackPoint.
You may let old HP platform work as PS/2 for safety.
Thanks
KT
Kai-Heng
>
> Cheers,
> Benjamin
>
>> psmouse_matches_pnp_id(psmouse,
i2c_blacklist_pnp_ids))
>> return -ENXIO;
>> }
>> @@ -1838,34 +1866,6 @@ static int elantech_setup_smbus(struct psmouse
*psmouse,
>> return 0;
>> }
>>
>> -static bool elantech_use_host_notify(struct psmouse *psmouse,
>> - struct elantech_device_info *info)
>> -{
>> - if (ETP_NEW_IC_SMBUS_HOST_NOTIFY(info->fw_version))
>> - return true;
>> -
>> - switch (info->bus) {
>> - case ETP_BUS_PS2_ONLY:
>> - /* expected case */
>> - break;
>> - case ETP_BUS_SMB_ALERT_ONLY:
>> - /* fall-through */
>> - case ETP_BUS_PS2_SMB_ALERT:
>> - psmouse_dbg(psmouse, "Ignoring SMBus provider through
alert protocol.\n");
>> - break;
>> - case ETP_BUS_SMB_HST_NTFY_ONLY:
>> - /* fall-through */
>> - case ETP_BUS_PS2_SMB_HST_NTFY:
>> - return true;
>> - default:
>> - psmouse_dbg(psmouse,
>> - "Ignoring SMBus bus provider %d.\n",
>> - info->bus);
>> - }
>> -
>> - return false;
>> -}
>> -
>> int elantech_init_smbus(struct psmouse *psmouse) {
>> struct elantech_device_info info;
>> --
>> 2.17.1
next prev parent reply other threads:[~2019-01-18 9:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-17 9:29 [PATCH 1/1] Input: elantech: Use SMBus based on bus info Kai-Heng Feng
2019-01-17 14:42 ` Benjamin Tissoires
2019-01-17 16:14 ` Kai Heng Feng
2019-01-18 9:29 ` 廖崇榮 [this message]
2019-01-21 4:28 ` Kai-Heng Feng
2019-01-21 6:21 ` 廖崇榮
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='008c01d4af10$5b157f20$11407d60$@emc.com.tw' \
--to=kt.liao@emc.com.tw \
--cc=benjamin.tissoires@redhat.com \
--cc=dmitry.torokhov@gmail.com \
--cc=kai.heng.feng@canonical.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox