[<prev] [next>] [day] [month] [year] [list]
Message-ID: <aJHEAHH6KCAGxs8N@fedora>
Date: Tue, 5 Aug 2025 10:42:40 +0200
From: José Expósito <jose.exposito89@...il.com>
To: 卢国宏 <luguohong@...omi.com>
Cc: "jikos@...nel.org" <jikos@...nel.org>,
"bentiss@...nel.org" <bentiss@...nel.org>,
"linux-input@...r.kernel.org" <linux-input@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Fei1 Jiang 蒋飞 <jiangfei1@...omi.com>
Subject: Re: 答复: [External Mail][PATCH 2/2] HID: input: report battery status changes immediately
Hi!
On Tue, Aug 05, 2025 at 01:43:30AM +0000, 卢国宏 wrote:
> ________________________________
> 发件人: José Expósito <jose.exposito89@...il.com>
> 发送时间: 2025年8月4日 17:11
> 收件人: jikos@...nel.org
> 抄送: bentiss@...nel.org; 卢国宏; linux-input@...r.kernel.org; linux-kernel@...r.kernel.org; José Expósito
> 主题: [External Mail][PATCH 2/2] HID: input: report battery status changes immediately
>
> [外部邮件] 此邮件来源于小米公司外部,请谨慎处理。若对邮件安全性存疑,请将邮件转发给misec@...omi.com进行反馈
>
> When the battery status changes, report the change immediately to user
> space.
>
> Fixes: a608dc1c0639 ("HID: input: map battery system charging")
> Reported-by: 卢国宏 <luguohong@...omi.com>
> Closes: https://lore.kernel.org/linux-input/aI49Im0sGb6fpgc8@fedora/T/
> Signed-off-by: José Expósito <jose.exposito89@...il.com>
> ---
> drivers/hid/hid-input.c | 17 ++++++++++-------
> 1 file changed, 10 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
> index 262787e6eb20..277538a17b57 100644
> --- a/drivers/hid/hid-input.c
> +++ b/drivers/hid/hid-input.c
> @@ -609,13 +609,19 @@ static bool hidinput_update_battery_charge_status(struct hid_device *dev,
> return false;
> }
>
> -static void hidinput_update_battery(struct hid_device *dev, int value)
> +static void hidinput_update_battery(struct hid_device *dev, unsigned int usage,
> + int value)
> {
> int capacity;
>
> if (!dev->battery)
> return;
>
> + if (hidinput_update_battery_charge_status(dev, usage, value)) {
> + power_supply_changed(dev->battery);
> + return;
> + }
> +
>
> > Hi, José. Shouldn't the return statement in this code be removed?
> > Otherwise, if both the battery level and the charging status change
> > simultaneously, the code following the if statement that updates the
> > battery level won't run, and the battery level won't be updated.
> > Thanks!
At least on the hardware I have access to, changes are reported independently.
I added a log at the beginning of this function to illustrate it.
This is the output when the battery of my device goes from 99% to 95%:
New EV_PWR report:
usage = 8716389
value = 99
New EV_PWR report:
usage = 8716356 (HID_BAT_CHARGING)
value = 0 (POWER_SUPPLY_STATUS_DISCHARGING)
[...]
New EV_PWR report:
usage = 8716389
value = 95
New EV_PWR report:
usage = 8716356 (HID_BAT_CHARGING)
value = 0 (POWER_SUPPLY_STATUS_DISCHARGING)
If we remove that return, then "value" (0 or 1) would be used as battery level,
reporting wrong battery levels to user-space.
Isn't your device reporting its battery information in a similar way?
Jose
PS - I'll fix the warning in v2 and add a Tested-by: 卢国宏 tag once
this is confirmed to work on the affected hardware.
>
>
> if (value == 0 || value < dev->battery_min || value > dev->battery_max)
> return;
>
> @@ -648,7 +654,8 @@ static bool hidinput_update_battery_charge_status(struct hid_device *dev,
> return false;
> }
>
> -static void hidinput_update_battery(struct hid_device *dev, int value)
> +static void hidinput_update_battery(struct hid_device *dev, unsigned int usage,
> + int value)
> {
> }
> #endif /* CONFIG_HID_BATTERY_STRENGTH */
> @@ -1515,11 +1522,7 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct
> return;
>
> if (usage->type == EV_PWR) {
> - bool handled = hidinput_update_battery_charge_status(hid, usage->hid, value);
> -
> - if (!handled)
> - hidinput_update_battery(hid, value);
> -
> + hidinput_update_battery(hid, usage->hid, value);
> return;
> }
>
> --
> 2.50.1
>
> #/******本邮件及其附件含有小米公司的保密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制、或散发)本邮件中的信息。如果您错收了本邮件,请您立即电话或邮件通知发件人并删除本邮件! This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
Powered by blists - more mailing lists