From: Yueyao Zhu <yueyao.zhu@gmail.com>
To: Jiri Kosina <jikos@kernel.org>,
Benjamin Tissoires <benjamin.tissoires@redhat.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>
Cc: linux-usb@vger.kernel.org, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org, Andrew Chant <achant@google.com>,
Badhri Jagan Sridharan <badhri@google.com>,
Dmitry Torokhov <dtor@google.com>, Yueyao Zhu <yueyao@google.com>
Subject: [PATCH 2/3] HID: usbhid: enable autosuspend for devices whose ...
Date: Thu, 8 Jun 2017 14:58:27 -0700 [thread overview]
Message-ID: <20170608215828.130455-3-yueyao.zhu@gmail.com> (raw)
In-Reply-To: <20170608215828.130455-1-yueyao.zhu@gmail.com>
From: Yueyao Zhu <yueyao@google.com>
usage pages only points to CONSUMER. This allows autosuspend
to be enabled and thus power saved on CONSUMER hid devices.
Yet hid devices use other usage pages are not affected, e.g.
keyboard, mouse.
Signed-off-by: Yueyao Zhu <yueyao@google.com>
---
drivers/hid/usbhid/hid-core.c | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid/usbhid/hid-core.c
index 83772fa7d92a..f2696b4098b5 100644
--- a/drivers/hid/usbhid/hid-core.c
+++ b/drivers/hid/usbhid/hid-core.c
@@ -1270,6 +1270,31 @@ static struct hid_ll_driver usb_hid_driver = {
.idle = usbhid_idle,
};
+static bool usbhid_usage_is_consumer(struct hid_device *hid)
+{
+ int i;
+ struct hid_report_enum *input_report_enum =
+ hid->report_enum + HID_INPUT_REPORT;
+ struct list_head *report_list = &input_report_enum->report_list;
+ struct hid_report *report;
+ unsigned int usage_page;
+
+ if (list_empty(report_list))
+ return false;
+
+ list_for_each_entry(report, report_list, list) {
+ for (i = 0; i < report->maxfield; i++) {
+ /* only checks Application field */
+ usage_page =
+ report->field[i]->application & HID_USAGE_PAGE;
+ if (usage_page != HID_UP_CONSUMER)
+ return false;
+ }
+ }
+
+ return true;
+}
+
static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
struct usb_host_interface *interface = intf->cur_altsetting;
@@ -1363,6 +1388,18 @@ static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *
goto err_free;
}
+ /*
+ * Autosuspend interfaces which have only consumer usage page inputs.
+ * This allows autosuspending devices which adhere to the Android USB
+ * headset spec while not autosuspending general keyboards, mice, and
+ * joysticks which may misbehave.
+ */
+ if (usbhid_usage_is_consumer(hid)) {
+ intf->needs_remote_wakeup = true;
+ usb_allow_interface_autosuspend(intf);
+ hid_info(hid, "autosuspend enabled on the hid interface\n");
+ }
+
return 0;
err_free:
kfree(usbhid);
--
2.13.0.506.g27d5fe0cd-goog
next prev parent reply other threads:[~2017-06-08 21:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-08 21:58 [PATCH 0/3] USB: add API for interface driver to vote for autosuspend Yueyao Zhu
2017-06-08 21:58 ` [PATCH 1/3] " Yueyao Zhu
2017-06-10 11:50 ` kbuild test robot
2017-06-08 21:58 ` Yueyao Zhu [this message]
[not found] ` <20170608215828.130455-1-yueyao.zhu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-06-08 21:58 ` [PATCH 3/3] sound: usb: allow interfaces that the driver claims to autosuspend Yueyao Zhu
2017-06-09 14:48 ` [PATCH 0/3] USB: add API for interface driver to vote for autosuspend Alan Stern
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=20170608215828.130455-3-yueyao.zhu@gmail.com \
--to=yueyao.zhu@gmail.com \
--cc=achant@google.com \
--cc=badhri@google.com \
--cc=benjamin.tissoires@redhat.com \
--cc=dtor@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=jikos@kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=perex@perex.cz \
--cc=tiwai@suse.com \
--cc=yueyao@google.com \
/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;
as well as URLs for NNTP newsgroup(s).