]> git.baikalelectronics.ru Git - kernel.git/commit
HID: input: fix battery level reporting on BT mice
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 3 Apr 2018 17:52:20 +0000 (10:52 -0700)
committerJiri Kosina <jkosina@suse.cz>
Mon, 9 Apr 2018 07:26:12 +0000 (09:26 +0200)
commit99b4d203ec19b7cd9d289559b1c4ce237d5810cf
tree36ea9b6ca35b836bf7d78f945a7f46d56ca97823
parentdd2f097c8b990fdd244e4534d477c493d0c2e7da
HID: input: fix battery level reporting on BT mice

The commit a0a85d8d4c64 ("HID: input: map digitizer battery usage")
assumed that devices having input (qas opposed to feature) report for
battery strength would report the data on their own, without the need to
be polled by the kernel; unfortunately it is not so. Many wireless mice
do not send unsolicited reports with battery strength data and have to
be polled explicitly. As a complication, stylus devices on digitizers
are not normally connected to the base and thus can not be polled - the
base can only determine battery strength in the stylus when it is in
proximity.

To solve this issue, we add a special flag that tells the kernel
to avoid polling the device (and expect unsolicited reports) and set it
when report field with physical usage of digitizer stylus (HID_DG_STYLUS).
Unless this flag is set, and we have not seen the unsolicited reports,
the kernel will attempt to poll the device when userspace attempts to
read "capacity" and "state" attributes of power_supply object
corresponding to the devices battery.

Fixes: a0a85d8d4c64 ("HID: input: map digitizer battery usage")
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=198095
Cc: stable@vger.kernel.org
Reported-and-tested-by: Martin van Es <martin@mrvanes.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-input.c
include/linux/hid.h