From: Hans de Goede <hdegoede@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Hans de Goede <hdegoede@redhat.com>, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 2/9] usb: Add usb_device_alloc/free_streams
Date: Tue, 19 Nov 2013 14:36:57 +0100 [thread overview]
Message-ID: <1384868224-15389-3-git-send-email-hdegoede@redhat.com> (raw)
In-Reply-To: <1384868224-15389-1-git-send-email-hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
hw/usb/bus.c | 18 ++++++++++++++++++
include/hw/usb.h | 12 ++++++++++++
2 files changed, 30 insertions(+)
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
index ca329be..09848c6 100644
--- a/hw/usb/bus.c
+++ b/hw/usb/bus.c
@@ -203,6 +203,24 @@ void usb_device_ep_stopped(USBDevice *dev, USBEndpoint *ep)
}
}
+int usb_device_alloc_streams(USBDevice *dev, USBEndpoint **eps, int nr_eps,
+ int streams)
+{
+ USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev);
+ if (klass->alloc_streams) {
+ return klass->alloc_streams(dev, eps, nr_eps, streams);
+ }
+ return 0;
+}
+
+void usb_device_free_streams(USBDevice *dev, USBEndpoint **eps, int nr_eps)
+{
+ USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev);
+ if (klass->free_streams) {
+ klass->free_streams(dev, eps, nr_eps);
+ }
+}
+
static int usb_qdev_init(DeviceState *qdev)
{
USBDevice *dev = USB_DEVICE(qdev);
diff --git a/include/hw/usb.h b/include/hw/usb.h
index e9d96ba..0a6ef4a 100644
--- a/include/hw/usb.h
+++ b/include/hw/usb.h
@@ -315,6 +315,14 @@ typedef struct USBDeviceClass {
*/
void (*ep_stopped)(USBDevice *dev, USBEndpoint *ep);
+ /*
+ * Called by the hcd to alloc / free streams on a bulk endpoint.
+ * Optional may be NULL.
+ */
+ int (*alloc_streams)(USBDevice *dev, USBEndpoint **eps, int nr_eps,
+ int streams);
+ void (*free_streams)(USBDevice *dev, USBEndpoint **eps, int nr_eps);
+
const char *product_desc;
const USBDesc *usb_desc;
} USBDeviceClass;
@@ -553,6 +561,10 @@ void usb_device_flush_ep_queue(USBDevice *dev, USBEndpoint *ep);
void usb_device_ep_stopped(USBDevice *dev, USBEndpoint *ep);
+int usb_device_alloc_streams(USBDevice *dev, USBEndpoint **eps, int nr_eps,
+ int streams);
+void usb_device_free_streams(USBDevice *dev, USBEndpoint **eps, int nr_eps);
+
const char *usb_device_get_product_desc(USBDevice *dev);
const USBDesc *usb_device_get_usb_desc(USBDevice *dev);
--
1.8.4.2
next prev parent reply other threads:[~2013-11-19 13:37 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-19 13:36 [Qemu-devel] [PATCH 0/9] usb: redirection streams support + small fixes Hans de Goede
2013-11-19 13:36 ` [Qemu-devel] [PATCH 1/9] usb: Add max_streams attribute to endpoint info Hans de Goede
2013-11-19 13:36 ` Hans de Goede [this message]
2013-11-19 13:36 ` [Qemu-devel] [PATCH 3/9] xhci: Call usb_device_alloc/free_streams Hans de Goede
2013-11-19 13:36 ` [Qemu-devel] [PATCH 4/9] xhci: Add a few missing checks for disconnected devices Hans de Goede
2013-11-19 13:37 ` [Qemu-devel] [PATCH 5/9] usb-host-libusb: Fill in endpoint max_streams when available Hans de Goede
2013-11-19 13:37 ` [Qemu-devel] [PATCH 6/9] usb-host-libusb: Add alloc / free streams ops Hans de Goede
2013-11-19 13:37 ` [Qemu-devel] [PATCH 7/9] usb-host-libusb: Set stream id when submitting bulk-stream transfers Hans de Goede
2013-11-19 13:37 ` [Qemu-devel] [PATCH 8/9] usb-redir: Add support for bulk streams Hans de Goede
2013-11-19 13:37 ` [Qemu-devel] [PATCH 9/9] uas: s/ui/iu/ Hans de Goede
2013-11-20 9:20 ` [Qemu-devel] [PATCH 0/9] usb: redirection streams support + small fixes Gerd Hoffmann
2013-11-21 10:45 ` Gerd Hoffmann
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=1384868224-15389-3-git-send-email-hdegoede@redhat.com \
--to=hdegoede@redhat.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).