From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39269) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScZ4F-0000SO-4D for qemu-devel@nongnu.org; Thu, 07 Jun 2012 05:31:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScZ44-0004JK-Uj for qemu-devel@nongnu.org; Thu, 07 Jun 2012 05:31:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60889) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScZ44-0004Ij-MK for qemu-devel@nongnu.org; Thu, 07 Jun 2012 05:31:36 -0400 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 q579VZHn016917 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 7 Jun 2012 05:31:35 -0400 From: Gerd Hoffmann Date: Thu, 7 Jun 2012 11:31:24 +0200 Message-Id: <1339061486-28513-36-git-send-email-kraxel@redhat.com> In-Reply-To: <1339061486-28513-1-git-send-email-kraxel@redhat.com> References: <1339061486-28513-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 35/37] ehci: create ehci_update_frindex List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Factor out code from ehci_frame_timer. Signed-off-by: Gerd Hoffmann --- hw/usb/hcd-ehci.c | 35 +++++++++++++++++++++++------------ 1 files changed, 23 insertions(+), 12 deletions(-) diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index ee7420f..c15dbee 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -2280,6 +2280,28 @@ static void ehci_advance_periodic_state(EHCIState *ehci) } } +static void ehci_update_frindex(EHCIState *ehci, int frames) +{ + int i; + + if (!ehci_enabled(ehci)) { + return; + } + + for (i = 0; i < frames; i++) { + ehci->frindex += 8; + + if (ehci->frindex == 0x00002000) { + ehci_set_interrupt(ehci, USBSTS_FLR); + } + + if (ehci->frindex == 0x00004000) { + ehci_set_interrupt(ehci, USBSTS_FLR); + ehci->frindex = 0; + } + } +} + static void ehci_frame_timer(void *opaque) { EHCIState *ehci = opaque; @@ -2296,18 +2318,7 @@ static void ehci_frame_timer(void *opaque) frames = ns_elapsed / FRAME_TIMER_NS; for (i = 0; i < frames; i++) { - if (ehci_enabled(ehci)) { - ehci->frindex += 8; - - if (ehci->frindex == 0x00002000) { - ehci_set_interrupt(ehci, USBSTS_FLR); - } - - if (ehci->frindex == 0x00004000) { - ehci_set_interrupt(ehci, USBSTS_FLR); - ehci->frindex = 0; - } - } + ehci_update_frindex(ehci, 1); if (frames - i > ehci->maxframes) { skipped_frames++; -- 1.7.1