From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vj8so-0002d6-F8 for qemu-devel@nongnu.org; Wed, 20 Nov 2013 09:36:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vj8sc-0002Zg-FS for qemu-devel@nongnu.org; Wed, 20 Nov 2013 09:35:58 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vj8sa-0002Yx-FL for qemu-devel@nongnu.org; Wed, 20 Nov 2013 09:35:46 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rAKEZhLh003873 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 20 Nov 2013 09:35:43 -0500 From: Gerd Hoffmann Date: Wed, 20 Nov 2013 15:35:21 +0100 Message-Id: <1384958128-22878-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/6] usb: remote wakeup improvements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, USB patch series from the ReduceWakeupRate department. Patch #1 implements remote wakeup support to the ehci emulation. Patch #2 reverts a workaround for lacking ehci remote wakeup support in the highspeed version of the usb tablet. Patches #3 + #4 are small preparations for #5. Patch #5 adds support for microsoft os descriptors. Patch #6 puts them into use to set registry keys for the usb tablet. This series brings windows guests on par with what we have in Linux for quite a while already: Remote wakeup is used by default, without manual configuration. Gerd Hoffmann (6): ehci: implement port wakeup Revert "usb-tablet: Don't claim wakeup capability for USB-2 version" usb: add vendor request defines usb: move usb_{hi,lo} helpers to header file. usb: add support for microsoft os descriptors usb-tablet: add microsoft os descriptor support hw/usb/Makefile.objs | 2 +- hw/usb/desc-msos.c | 234 +++++++++++++++++++++++++++++++++++++++++++++++++++ hw/usb/desc.c | 22 ++--- hw/usb/desc.h | 20 +++++ hw/usb/dev-hid.c | 10 ++- hw/usb/hcd-ehci.c | 18 +++- include/hw/usb.h | 18 +++- trace-events | 4 + 8 files changed, 309 insertions(+), 19 deletions(-) create mode 100644 hw/usb/desc-msos.c -- 1.8.3.1