From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:44651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpLIv-0007cG-CK for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpLIp-0004T8-9s for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:29 -0500 Received: from mx1.redhat.com ([209.132.183.28]:7982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpLIp-0004SX-1B for qemu-devel@nongnu.org; Mon, 23 Jan 2012 09:55:23 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q0NEtMIk012668 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 Jan 2012 09:55:22 -0500 From: Gerd Hoffmann Date: Mon, 23 Jan 2012 15:54:59 +0100 Message-Id: <1327330511-16307-14-git-send-email-kraxel@redhat.com> In-Reply-To: <1327330511-16307-1-git-send-email-kraxel@redhat.com> References: <1327330511-16307-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 13/25] usb: fold usb_generic_handle_packet into usb_handle_packet List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann There is no reason to have a separate usb_generic_handle_packet function any more, fold it into usb_handle_packet(). Also call the do_token_* functions which handle control transfer emulation for control pipe packets only. Signed-off-by: Gerd Hoffmann --- hw/usb.c | 58 +++++++++++++++++++++++++--------------------------------- 1 files changed, 25 insertions(+), 33 deletions(-) diff --git a/hw/usb.c b/hw/usb.c index 70a4bc5..0bf98a0 100644 --- a/hw/usb.c +++ b/hw/usb.c @@ -144,8 +144,7 @@ static int do_token_in(USBDevice *s, USBPacket *p) int request, value, index; int ret = 0; - if (p->devep != 0) - return s->info->handle_data(s, p); + assert(p->devep == 0); request = (s->setup_buf[0] << 8) | s->setup_buf[1]; value = (s->setup_buf[3] << 8) | s->setup_buf[2]; @@ -191,8 +190,7 @@ static int do_token_in(USBDevice *s, USBPacket *p) static int do_token_out(USBDevice *s, USBPacket *p) { - if (p->devep != 0) - return s->info->handle_data(s, p); + assert(p->devep == 0); switch(s->setup_state) { case SETUP_STATE_ACK: @@ -225,33 +223,6 @@ static int do_token_out(USBDevice *s, USBPacket *p) } } -/* - * Generic packet handler. - * Called by the HC (host controller). - * - * Returns length of the transaction or one of the USB_RET_XXX codes. - */ -static int usb_generic_handle_packet(USBDevice *s, USBPacket *p) -{ - /* Rest of the PIDs must match our address */ - if (s->state < USB_STATE_DEFAULT || p->devaddr != s->addr) - return USB_RET_NODEV; - - switch (p->pid) { - case USB_TOKEN_SETUP: - return do_token_setup(s, p); - - case USB_TOKEN_IN: - return do_token_in(s, p); - - case USB_TOKEN_OUT: - return do_token_out(s, p); - - default: - return USB_RET_STALL; - } -} - /* ctrl complete function for devices which use usb_generic_handle_packet and may return USB_RET_ASYNC from their handle_control callback. Device code which does this *must* call this function instead of the normal @@ -326,9 +297,30 @@ int usb_handle_packet(USBDevice *dev, USBPacket *p) return USB_RET_NODEV; } assert(dev->addr == p->devaddr); - + assert(dev->state == USB_STATE_DEFAULT); assert(p->owner == NULL); - ret = usb_generic_handle_packet(dev, p); + + if (p->devep == 0) { + /* control pipe */ + switch (p->pid) { + case USB_TOKEN_SETUP: + ret = do_token_setup(dev, p); + break; + case USB_TOKEN_IN: + ret = do_token_in(dev, p); + break; + case USB_TOKEN_OUT: + ret = do_token_out(dev, p); + break; + default: + ret = USB_RET_STALL; + break; + } + } else { + /* data pipe */ + ret = dev->info->handle_data(dev, p); + } + if (ret == USB_RET_ASYNC) { p->owner = usb_ep_get(dev, p->pid, p->devep); } -- 1.7.1