* [Qemu-devel] [PULL 0/3] usb patch queue
@ 2015-10-20 7:25 Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 1/3] usb-host: add wakeup call for iso xfers Gerd Hoffmann
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2015-10-20 7:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
Here is the usb patch queue with some small tweaks.
please pull,
Gerd
The following changes since commit 26c7be842637ee65a79cd77f96a99c23ddcd90ad:
Merge remote-tracking branch 'remotes/sstabellini/tags/2015-10-19-tag' into staging (2015-10-19 12:13:27 +0100)
are available in the git repository at:
git://git.kraxel.org/qemu tags/pull-usb-20151020-1
for you to fetch changes up to 37bc43f7fbfb38003550b327002e59d21b80a3e4:
usb-audio: increate default buffer size (2015-10-20 09:15:23 +0200)
----------------------------------------------------------------
usb: misc small tweaks.
----------------------------------------------------------------
Gerd Hoffmann (3):
usb-host: add wakeup call for iso xfers
usb: print device id in "info usb" monitor command
usb-audio: increate default buffer size
hw/usb/bus.c | 9 ++++++---
hw/usb/dev-audio.c | 2 +-
hw/usb/host-libusb.c | 1 +
3 files changed, 8 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 1/3] usb-host: add wakeup call for iso xfers
2015-10-20 7:25 [Qemu-devel] [PULL 0/3] usb patch queue Gerd Hoffmann
@ 2015-10-20 7:25 ` Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 2/3] usb: print device id in "info usb" monitor command Gerd Hoffmann
` (2 subsequent siblings)
3 siblings, 0 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2015-10-20 7:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/host-libusb.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c
index 5e492fd..7695a97 100644
--- a/hw/usb/host-libusb.c
+++ b/hw/usb/host-libusb.c
@@ -451,6 +451,7 @@ static void usb_host_req_complete_iso(struct libusb_transfer *transfer)
}
if (xfer->ring->ep->pid == USB_TOKEN_IN) {
QTAILQ_INSERT_TAIL(&xfer->ring->copy, xfer, next);
+ usb_wakeup(xfer->ring->ep, 0);
} else {
QTAILQ_INSERT_TAIL(&xfer->ring->unused, xfer, next);
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 2/3] usb: print device id in "info usb" monitor command
2015-10-20 7:25 [Qemu-devel] [PULL 0/3] usb patch queue Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 1/3] usb-host: add wakeup call for iso xfers Gerd Hoffmann
@ 2015-10-20 7:25 ` Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 3/3] usb-audio: increate default buffer size Gerd Hoffmann
2015-10-20 10:45 ` [Qemu-devel] [PULL 0/3] usb patch queue Peter Maydell
3 siblings, 0 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2015-10-20 7:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/bus.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
index 5f39e1e..ee6b43a 100644
--- a/hw/usb/bus.c
+++ b/hw/usb/bus.c
@@ -655,9 +655,12 @@ void hmp_info_usb(Monitor *mon, const QDict *qdict)
dev = port->dev;
if (!dev)
continue;
- monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, Product %s\n",
- bus->busnr, dev->addr, port->path, usb_speed(dev->speed),
- dev->product_desc);
+ monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, "
+ "Product %s%s%s\n",
+ bus->busnr, dev->addr, port->path,
+ usb_speed(dev->speed), dev->product_desc,
+ dev->qdev.id ? ", ID: " : "",
+ dev->qdev.id ?: "");
}
}
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 3/3] usb-audio: increate default buffer size
2015-10-20 7:25 [Qemu-devel] [PULL 0/3] usb patch queue Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 1/3] usb-host: add wakeup call for iso xfers Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 2/3] usb: print device id in "info usb" monitor command Gerd Hoffmann
@ 2015-10-20 7:25 ` Gerd Hoffmann
2015-10-20 10:45 ` [Qemu-devel] [PULL 0/3] usb patch queue Peter Maydell
3 siblings, 0 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2015-10-20 7:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/dev-audio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/usb/dev-audio.c b/hw/usb/dev-audio.c
index f092bb8..02fb110 100644
--- a/hw/usb/dev-audio.c
+++ b/hw/usb/dev-audio.c
@@ -664,7 +664,7 @@ static const VMStateDescription vmstate_usb_audio = {
static Property usb_audio_properties[] = {
DEFINE_PROP_UINT32("debug", USBAudioState, debug, 0),
DEFINE_PROP_UINT32("buffer", USBAudioState, buffer,
- 8 * USBAUDIO_PACKET_SIZE),
+ 32 * USBAUDIO_PACKET_SIZE),
DEFINE_PROP_END_OF_LIST(),
};
--
1.8.3.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [PULL 0/3] usb patch queue
2015-10-20 7:25 [Qemu-devel] [PULL 0/3] usb patch queue Gerd Hoffmann
` (2 preceding siblings ...)
2015-10-20 7:25 ` [Qemu-devel] [PULL 3/3] usb-audio: increate default buffer size Gerd Hoffmann
@ 2015-10-20 10:45 ` Peter Maydell
3 siblings, 0 replies; 11+ messages in thread
From: Peter Maydell @ 2015-10-20 10:45 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: QEMU Developers
On 20 October 2015 at 08:25, Gerd Hoffmann <kraxel@redhat.com> wrote:
> Hi,
>
> Here is the usb patch queue with some small tweaks.
>
> please pull,
> Gerd
>
> The following changes since commit 26c7be842637ee65a79cd77f96a99c23ddcd90ad:
>
> Merge remote-tracking branch 'remotes/sstabellini/tags/2015-10-19-tag' into staging (2015-10-19 12:13:27 +0100)
>
> are available in the git repository at:
>
>
> git://git.kraxel.org/qemu tags/pull-usb-20151020-1
>
> for you to fetch changes up to 37bc43f7fbfb38003550b327002e59d21b80a3e4:
>
> usb-audio: increate default buffer size (2015-10-20 09:15:23 +0200)
>
> ----------------------------------------------------------------
> usb: misc small tweaks.
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 0/3] usb patch queue
@ 2017-02-23 15:40 Gerd Hoffmann
2017-02-24 13:55 ` Peter Maydell
0 siblings, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2017-02-23 15:40 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
usb patch queue, with cleanups and a ohci fix.
please pull,
Gerd
The following changes since commit 796b288f7be875045670f963ce99991b3c8e96ac:
Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2017-02-21 15:48:22 +0000)
are available in the git repository at:
git://git.kraxel.org/qemu tags/pull-usb-20170223-1
for you to fetch changes up to 4f72b8d2a6f5777fa1af2cf5184843e4cb06f182:
xhci: properties cleanup (2017-02-23 16:18:03 +0100)
----------------------------------------------------------------
usb: ohci bugfix, switch core to unrealize, xhci property cleanup
----------------------------------------------------------------
Gerd Hoffmann (1):
xhci: properties cleanup
Li Qiang (1):
usb: ohci: fix error return code in servicing td
Marc-André Lureau (1):
usb: replace handle_destroy with unrealize
hw/usb/bus.c | 9 +++++----
hw/usb/dev-audio.c | 4 ++--
hw/usb/dev-bluetooth.c | 4 ++--
hw/usb/dev-hid.c | 4 ++--
hw/usb/dev-hub.c | 4 ++--
hw/usb/dev-network.c | 4 ++--
hw/usb/dev-smartcard-reader.c | 4 ++--
hw/usb/dev-uas.c | 4 ++--
hw/usb/dev-wacom.c | 4 ++--
hw/usb/hcd-ohci.c | 2 +-
hw/usb/hcd-xhci.c | 29 ++++++++++++++++++++++++++---
hw/usb/host-libusb.c | 4 ++--
hw/usb/redirect.c | 4 ++--
include/hw/usb.h | 5 -----
14 files changed, 52 insertions(+), 33 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [PULL 0/3] usb patch queue
2017-02-23 15:40 Gerd Hoffmann
@ 2017-02-24 13:55 ` Peter Maydell
0 siblings, 0 replies; 11+ messages in thread
From: Peter Maydell @ 2017-02-24 13:55 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: QEMU Developers
On 23 February 2017 at 15:40, Gerd Hoffmann <kraxel@redhat.com> wrote:
> Hi,
>
> usb patch queue, with cleanups and a ohci fix.
>
> please pull,
> Gerd
>
> The following changes since commit 796b288f7be875045670f963ce99991b3c8e96ac:
>
> Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2017-02-21 15:48:22 +0000)
>
> are available in the git repository at:
>
>
> git://git.kraxel.org/qemu tags/pull-usb-20170223-1
>
> for you to fetch changes up to 4f72b8d2a6f5777fa1af2cf5184843e4cb06f182:
>
> xhci: properties cleanup (2017-02-23 16:18:03 +0100)
>
> ----------------------------------------------------------------
> usb: ohci bugfix, switch core to unrealize, xhci property cleanup
>
> ----------------------------------------------------------------
> Gerd Hoffmann (1):
> xhci: properties cleanup
>
> Li Qiang (1):
> usb: ohci: fix error return code in servicing td
>
> Marc-André Lureau (1):
> usb: replace handle_destroy with unrealize
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 0/3] usb patch queue
@ 2016-05-11 11:19 Gerd Hoffmann
2016-05-12 14:06 ` Peter Maydell
0 siblings, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2016-05-11 11:19 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
Three fixes accumulated during the freeze.
please pull,
Gerd
The following changes since commit 860a3b34854d8abe9af9f1eb584691de926ce897:
Update version for v2.6.0-rc5 release (2016-05-09 14:08:12 +0100)
are available in the git repository at:
git://git.kraxel.org/qemu tags/pull-usb-20160511-1
for you to fetch changes up to a277c3e094d5e9f653ccc861f59e07c94c7fe6c7:
usb: Support compilation without poll.h (2016-05-11 10:37:39 +0200)
----------------------------------------------------------------
usb: misc fixes
----------------------------------------------------------------
Isaac Lozano (1):
usb-mtp: fix usb_mtp_get_device_info so that libmtp on the guest doesn't complain
Roman Kagan (1):
usb:xhci: no DMA on HC reset
Stefan Weil (1):
usb: Support compilation without poll.h
hw/usb/dev-mtp.c | 4 ++--
hw/usb/hcd-xhci.c | 5 ++++-
hw/usb/host-libusb.c | 13 ++++++++++++-
3 files changed, 18 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [PULL 0/3] usb patch queue
2016-05-11 11:19 Gerd Hoffmann
@ 2016-05-12 14:06 ` Peter Maydell
0 siblings, 0 replies; 11+ messages in thread
From: Peter Maydell @ 2016-05-12 14:06 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: QEMU Developers
On 11 May 2016 at 12:19, Gerd Hoffmann <kraxel@redhat.com> wrote:
> Hi,
>
> Three fixes accumulated during the freeze.
>
> please pull,
> Gerd
>
> The following changes since commit 860a3b34854d8abe9af9f1eb584691de926ce897:
>
> Update version for v2.6.0-rc5 release (2016-05-09 14:08:12 +0100)
>
> are available in the git repository at:
>
> git://git.kraxel.org/qemu tags/pull-usb-20160511-1
>
> for you to fetch changes up to a277c3e094d5e9f653ccc861f59e07c94c7fe6c7:
>
> usb: Support compilation without poll.h (2016-05-11 10:37:39 +0200)
>
> ----------------------------------------------------------------
> usb: misc fixes
>
> ----------------------------------------------------------------
> Isaac Lozano (1):
> usb-mtp: fix usb_mtp_get_device_info so that libmtp on the guest doesn't complain
>
> Roman Kagan (1):
> usb:xhci: no DMA on HC reset
>
> Stefan Weil (1):
> usb: Support compilation without poll.h
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 0/3] usb patch queue
@ 2012-10-11 11:40 Gerd Hoffmann
2012-10-12 16:17 ` Anthony Liguori
0 siblings, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2012-10-11 11:40 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
Pretty small this time with just a few bugfixes.
please pull,
Gerd
The following changes since commit b4ae3cfa57b8c1bdbbd7b7d420971e9171203ade:
ssi: Add slave autoconnect helper (2012-10-10 11:13:32 +1000)
are available in the git repository at:
git://git.kraxel.org/qemu usb.67
Hans de Goede (3):
usb-redir: Change usbredir_open_chardev into usbredir_create_parser
usb-redir: Don't make migration fail in none seamless case
uhci: Raise interrupt when requested even for non active tds
hw/usb/hcd-uhci.c | 10 +++++++++-
hw/usb/redirect.c | 24 ++++++++++++++----------
2 files changed, 23 insertions(+), 11 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [PULL 0/3] usb patch queue
2012-10-11 11:40 Gerd Hoffmann
@ 2012-10-12 16:17 ` Anthony Liguori
0 siblings, 0 replies; 11+ messages in thread
From: Anthony Liguori @ 2012-10-12 16:17 UTC (permalink / raw)
To: Gerd Hoffmann, qemu-devel
Gerd Hoffmann <kraxel@redhat.com> writes:
> Hi,
>
> Pretty small this time with just a few bugfixes.
>
> please pull,
> Gerd
>
Pulled. Thanks.
Regards,
Anthony Liguori
> The following changes since commit b4ae3cfa57b8c1bdbbd7b7d420971e9171203ade:
>
> ssi: Add slave autoconnect helper (2012-10-10 11:13:32 +1000)
>
> are available in the git repository at:
> git://git.kraxel.org/qemu usb.67
>
> Hans de Goede (3):
> usb-redir: Change usbredir_open_chardev into usbredir_create_parser
> usb-redir: Don't make migration fail in none seamless case
> uhci: Raise interrupt when requested even for non active tds
>
> hw/usb/hcd-uhci.c | 10 +++++++++-
> hw/usb/redirect.c | 24 ++++++++++++++----------
> 2 files changed, 23 insertions(+), 11 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2017-02-24 13:55 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-20 7:25 [Qemu-devel] [PULL 0/3] usb patch queue Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 1/3] usb-host: add wakeup call for iso xfers Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 2/3] usb: print device id in "info usb" monitor command Gerd Hoffmann
2015-10-20 7:25 ` [Qemu-devel] [PULL 3/3] usb-audio: increate default buffer size Gerd Hoffmann
2015-10-20 10:45 ` [Qemu-devel] [PULL 0/3] usb patch queue Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2017-02-23 15:40 Gerd Hoffmann
2017-02-24 13:55 ` Peter Maydell
2016-05-11 11:19 Gerd Hoffmann
2016-05-12 14:06 ` Peter Maydell
2012-10-11 11:40 Gerd Hoffmann
2012-10-12 16:17 ` Anthony Liguori
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).